diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh index 0601c90688..fe4af3d924 100644 --- a/extras/deploy-scripts/pandora_deploy_community.sh +++ b/extras/deploy-scripts/pandora_deploy_community.sh @@ -170,7 +170,7 @@ http://rpms.remirepo.net/enterprise/remi-release-7.rpm \ https://repo.percona.com/yum/percona-release-latest.noarch.rpm" execute_cmd "yum install -y $extra_repos" "Installing extra repositories" -execute_cmd "yum-config-manager --enable remi-php74" "Configuring PHP" +execute_cmd "yum-config-manager --enable remi-php80" "Configuring PHP" # Install percona Database #[ -f /etc/my.cnf ] && rm -rf /etc/my.cnf diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh index 7c55b91ed2..fd4855f67b 100644 --- a/extras/deploy-scripts/pandora_deploy_community_el8.sh +++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh @@ -20,7 +20,7 @@ LOGFILE="/tmp/pandora-deploy-community-$(date +%F).log" # define default variables [ "$TZ" ] || TZ="Europe/Madrid" [ "$MYVER" ] || MYVER=57 -[ "$PHPVER" ] || PHPVER=7 +[ "$PHPVER" ] || PHPVER=8 [ "$DBHOST" ] || DBHOST=127.0.0.1 [ "$DBNAME" ] || DBNAME=pandora [ "$DBUSER" ] || DBUSER=pandora diff --git a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh index 7c78908878..feced2cbe7 100644 --- a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh +++ b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh @@ -21,7 +21,7 @@ LOGFILE="/tmp/pandora-deploy-community-$(date +%F).log" # define default variables [ "$TZ" ] || TZ="Europe/Madrid" -[ "$PHPVER" ] || PHPVER=7.4 +[ "$PHPVER" ] || PHPVER=8.0 [ "$DBHOST" ] || DBHOST=127.0.0.1 [ "$DBNAME" ] || DBNAME=pandora [ "$DBUSER" ] || DBUSER=pandora @@ -138,6 +138,9 @@ check_root_permissions # Connectivity check_repo_connection +#Install awk, sed, grep if not present +execute_cmd "apt install -y gawk sed grep" 'Installing needed tools' + # Systemd execute_cmd "systemctl --version" "Checking SystemD" 'This is not a SystemD enable system, if tryng to use in a docker env please check: https://github.com/pandorafms/pandorafms/tree/develop/extras/docker/centos8' @@ -155,7 +158,7 @@ execute_cmd "timedatectl set-timezone $TZ" "Setting Timezone $TZ" execute_cmd "awk --version" 'Checking needed tools: awk' execute_cmd "grep --version" 'Checking needed tools: grep' execute_cmd "sed --version" 'Checking needed tools: sed' -execute_cmd "apt --version" 'Checking needed tools: dnf' +execute_cmd "apt --version" 'Checking needed tools: apt' # Creating working directory rm -rf "$WORKDIR" &>> "$LOGFILE" diff --git a/pandora_agents/pc/tentacle_server b/pandora_agents/pc/tentacle_server index d945a134e8..4458237003 100755 --- a/pandora_agents/pc/tentacle_server +++ b/pandora_agents/pc/tentacle_server @@ -5,7 +5,7 @@ # Tentacle have IANA assigned port tpc/41121 as official port. ########################################################################## # Copyright (c) 2007-2008 Ramon Novoa -# Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2005-2022 Artica Soluciones Tecnologicas S.L # # tentacle_server.pl Tentacle Server. See https://pandorafms.com/docs/ for # protocol description. @@ -1740,6 +1740,19 @@ sub callback_stop { Win32::Daemon::StopService(); } + +################################################################################ +## SUB check_ssleay_version +## Print a message if the installed version of Net::SSLeay may leak memory. +################################################################################ +sub check_ssleay_version { + eval { + require Net::SSLeay; + return unless defined($Net::SSLeay::VERSION) && $Net::SSLeay::VERSION =~ m/^(\d+)\.(\d+)/ && $1 <= 1 && $2 < 88; + print_log ("Net::SSLeay version $Net::SSLeay::VERSION detected. Versions prior to 1.88 may leak memory. To upgrade it see: https://metacpan.org/pod/Net::SSLeay"); + }; +} + ################################################################################ # Main ################################################################################ @@ -1753,12 +1766,20 @@ if ($> == 0 && $^O ne 'MSWin32') { # Parse command line options parse_options (); +# Try to open the log file. +if (defined($log_file)) { + open(my $fh, ">>", $log_file) || die("Error opening the log file '$log_file': $!.\n"); + close($fh); +} + # Check command line arguments if ($#ARGV != -1) { print_help (); exit 1; } +check_ssleay_version() if $t_ssl == 1; + # Show IPv6 status if ($SOCKET_MODULE eq 'IO::Socket::INET') { print_log ("IO::Socket::INET6 is not found. IPv6 is disabled."); diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index eec5ecd976..4e639416be 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.765-221021 +Version: 7.0NG.765-221102 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 14364bf96c..28de5d9b56 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.765-221021" +pandora_version="7.0NG.765-221102" 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 45d3a02f54..90be56ff87 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.765'; -use constant AGENT_BUILD => '221021'; +use constant AGENT_BUILD => '221102'; # 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 a7b0a826e2..b0015ae550 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.765 -%define release 221021 +%define release 221102 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 1322e44c56..ad8db52707 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.765 -%define release 221021 +%define release 221102 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 20a4e8d08a..1d2c20d79b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221021" +PI_BUILD="221102" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/unix/tentacle_server b/pandora_agents/unix/tentacle_server index d945a134e8..4458237003 100755 --- a/pandora_agents/unix/tentacle_server +++ b/pandora_agents/unix/tentacle_server @@ -5,7 +5,7 @@ # Tentacle have IANA assigned port tpc/41121 as official port. ########################################################################## # Copyright (c) 2007-2008 Ramon Novoa -# Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2005-2022 Artica Soluciones Tecnologicas S.L # # tentacle_server.pl Tentacle Server. See https://pandorafms.com/docs/ for # protocol description. @@ -1740,6 +1740,19 @@ sub callback_stop { Win32::Daemon::StopService(); } + +################################################################################ +## SUB check_ssleay_version +## Print a message if the installed version of Net::SSLeay may leak memory. +################################################################################ +sub check_ssleay_version { + eval { + require Net::SSLeay; + return unless defined($Net::SSLeay::VERSION) && $Net::SSLeay::VERSION =~ m/^(\d+)\.(\d+)/ && $1 <= 1 && $2 < 88; + print_log ("Net::SSLeay version $Net::SSLeay::VERSION detected. Versions prior to 1.88 may leak memory. To upgrade it see: https://metacpan.org/pod/Net::SSLeay"); + }; +} + ################################################################################ # Main ################################################################################ @@ -1753,12 +1766,20 @@ if ($> == 0 && $^O ne 'MSWin32') { # Parse command line options parse_options (); +# Try to open the log file. +if (defined($log_file)) { + open(my $fh, ">>", $log_file) || die("Error opening the log file '$log_file': $!.\n"); + close($fh); +} + # Check command line arguments if ($#ARGV != -1) { print_help (); exit 1; } +check_ssleay_version() if $t_ssl == 1; + # Show IPv6 status if ($SOCKET_MODULE eq 'IO::Socket::INET') { print_log ("IO::Socket::INET6 is not found. IPv6 is disabled."); diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index bcd15bf4ce..ee97698f1c 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{221021} +{221102} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6533e881df..f77dc7dfaa 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.765 Build 221021") +#define PANDORA_VERSION ("7.0NG.765 Build 221102") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 47970d4802..628e7cbf79 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.765(Build 221021))" + VALUE "ProductVersion", "(7.0NG.765(Build 221102))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a380cabfce..6d7d4e45f9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.765-221021 +Version: 7.0NG.765-221102 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 525832db0f..c47f55275b 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.765-221021" +pandora_version="7.0NG.765-221102" package_pear=0 package_pandora=1 diff --git a/pandora_console/extras/mr/58.sql b/pandora_console/extras/mr/58.sql index f844c4d15d..31807018ef 100644 --- a/pandora_console/extras/mr/58.sql +++ b/pandora_console/extras/mr/58.sql @@ -1,5 +1,9 @@ START TRANSACTION; +ALTER TABLE `trecon_task` ADD COLUMN `snmp_skip_non_enabled_ifs` TINYINT UNSIGNED DEFAULT 1; + +ALTER TABLE `tlayout` ADD COLUMN `maintenance_mode` TEXT; + ALTER TABLE `tusuario` ADD COLUMN `auth_token_secret` VARCHAR(45) DEFAULT NULL; ALTER TABLE `tmodule_inventory` ADD COLUMN `script_mode` INT NOT NULL DEFAULT 2; @@ -7,11 +11,15 @@ ALTER TABLE `tmodule_inventory` ADD COLUMN `script_path` VARCHAR(1000) DEFAULT ' ALTER TABLE `tevent_filter` ADD COLUMN `search_recursive_groups` INT NOT NULL DEFAULT 0; +<<<<<<< HEAD ALTER TABLE `tagente_modulo` ADD COLUMN `warning_time` int(10) UNSIGNED DEFAULT 0; ALTER TABLE `tnetwork_component` ADD COLUMN `warning_time` int(10) UNSIGNED DEFAULT 0; ALTER TABLE `tlocal_component` ADD COLUMN `warning_time` int(10) UNSIGNED DEFAULT 0; ALTER TABLE `tpolicy_modules` ADD COLUMN `warning_time` int(10) UNSIGNED DEFAULT 0; ALTER TABLE `tagente_estado` ADD COLUMN `warning_count` int(10) UNSIGNED DEFAULT 0; +======= +ALTER TABLE `tcredential_store` MODIFY COLUMN `product` ENUM('CUSTOM', 'AWS', 'AZURE', 'GOOGLE', 'SAP', 'WMI', 'SNMP') DEFAULT 'CUSTOM'; +>>>>>>> develop COMMIT; diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php index e71c96fb0f..1c8249ddf5 100644 --- a/pandora_console/general/register.php +++ b/pandora_console/general/register.php @@ -167,7 +167,7 @@ if (!$double_auth_enabled resizable: true, draggable: true, modal: true, - title: "", + title: "", overlay: { opacity: 0.5, background: "black" diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 6cfa2685b4..b63392ac4c 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -40,16 +40,7 @@ require_once $config['homedir'].'/include/functions_modules.php'; require_once $config['homedir'].'/include/functions_agents.php'; require_once $config['homedir'].'/include/functions_servers.php'; -$search_string = io_safe_output( - urldecode( - trim( - get_parameter( - 'search_string', - '' - ) - ) - ) -); +$search_string = get_parameter('search_string'); global $policy_page; diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 6109445d29..4a39db6d75 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -140,6 +140,49 @@ if ($id_module_type >= 6 && $id_module_type <= 7) { push_table_simple($data, 'target_ip'); +$user_groups = users_get_groups(false, 'AR'); +if (users_is_admin() === true || isset($user_groups[0]) === true) { + $credentials = db_get_all_rows_sql( + 'SELECT identifier FROM tcredential_store WHERE product LIKE "SNMP"' + ); +} else { + $credentials = db_get_all_rows_sql( + sprintf( + 'SELECT identifier FROM tcredential_store WHERE product LIKE "SNMP" AND id_group IN (%s)', + implode(',', array_keys($user_groups)) + ) + ); +} + +if (empty($credentials) === false) { + $fields = []; + foreach ($credentials as $key => $value) { + $fields[$value['identifier']] = $value['identifier']; + } + + $data = []; + $data[0] = __('Credential store'); + $data[1] = html_print_select( + $fields, + 'credentials', + 0, + '', + __('None'), + 0, + true, + false, + false, + '', + false, + false, + '', + false + ); + + push_table_simple($data, 'snmp_credentials'); +} + + $snmp_versions['1'] = 'v. 1'; $snmp_versions['2'] = 'v. 2'; $snmp_versions['2c'] = 'v. 2c'; @@ -316,6 +359,7 @@ if ($id_module_type < 15 || $id_module_type > 18) { // NOT SNMP. $table_simple->rowstyle['snmp_1'] = 'display: none'; $table_simple->rowstyle['snmp_2'] = 'display: none'; + $table_simple->rowstyle['snmp_credentials'] = 'display: none'; } // For a policy. @@ -569,6 +613,49 @@ $(document).ready (function () { $(this).css ("width", "180px"); }); + $("#credentials").change (function() { + if ($('#credentials').val() !== '0') { + $.ajax({ + method: "post", + url: "", + data: { + page: "godmode/agentes/agent_wizard", + method: "getCredentials", + identifier: $('#credentials').val() + }, + datatype: "json", + success: function(data) { + data = JSON.parse(data); + extra = JSON.parse(data['extra_1']); + $('#snmp_version').val(extra['version']); + $('#snmp_version').trigger('change'); + $('#text-snmp_community').val(extra['community']); + + if (extra['version'] === '3') { + $('#snmp3_security_level').val(extra['securityLevelV3']); + $('#snmp3_security_level').trigger('change'); + $('#text-snmp3_auth_user').val(extra['authUserV3']); + + if (extra['securityLevelV3'] === 'authNoPriv' || extra['securityLevelV3'] === 'authPriv') { + $('#snmp3_auth_method').val(extra['authMethodV3']); + $('#snmp3_auth_method').trigger('change'); + $('#password-snmp3_auth_pass').val(extra['authPassV3']); + + if (extra['securityLevelV3'] === 'authPriv') { + $('#snmp3_privacy_method').val(extra['privacyMethodV3']); + $('#snmp3_privacy_method').trigger('change'); + $('#password-snmp3_privacy_pass').val(extra['privacyPassV3']); + } + } + } + }, + error: function(e) { + console.error(e); + } + }); + } + }); + $("#id_module_type").click ( function () { $(this).css ("width", "auto"); diff --git a/pandora_console/godmode/events/event_edit_filter.php b/pandora_console/godmode/events/event_edit_filter.php index 2e7e009686..af086d55d7 100644 --- a/pandora_console/godmode/events/event_edit_filter.php +++ b/pandora_console/godmode/events/event_edit_filter.php @@ -442,8 +442,12 @@ $table->data[10][1] = html_print_select( true ); -$repeated_sel[0] = __('All events'); -$repeated_sel[1] = __('Group events'); +$repeated_sel = [ + EVENT_GROUP_REP_ALL => __('All events'), + EVENT_GROUP_REP_EVENTS => __('Group events'), + EVENT_GROUP_REP_AGENTS => __('Group agents'), + EVENT_GROUP_REP_EXTRAIDS => __('Group extra id'), +]; $table->data[11][0] = ''.__('Repeated').''; $table->data[11][1] = html_print_select( $repeated_sel, diff --git a/pandora_console/godmode/massive/massive_delete_profiles.php b/pandora_console/godmode/massive/massive_delete_profiles.php index 3a8611f3c7..7c45b2a285 100644 --- a/pandora_console/godmode/massive/massive_delete_profiles.php +++ b/pandora_console/godmode/massive/massive_delete_profiles.php @@ -141,6 +141,7 @@ if ($table !== null) { unset($table); +$table = new stdClass(); $table->width = '100%'; $table->class = 'databox filters'; $table->data = []; diff --git a/pandora_console/godmode/massive/massive_edit_users.php b/pandora_console/godmode/massive/massive_edit_users.php new file mode 100644 index 0000000000..2f1cbeb4fe --- /dev/null +++ b/pandora_console/godmode/massive/massive_edit_users.php @@ -0,0 +1,717 @@ +'.__('metaconsole').''; + } else { + $url = __('any node'); + } + + ui_print_warning_message( + __( + 'This node is configured with centralized mode. All profiles user information is read only. Go to %s to manage it.', + $url + ) + ); + + return; +} + +if (is_metaconsole() === true) { + include_once $config['homedir'].'/include/functions_visual_map.php'; + open_meta_frame(); +} + +$edit_users = (int) get_parameter('edit_users'); +if ($edit_users === 1) { + $users = get_parameter('id_users', false, false); + if ($users !== false) { + $update = []; + + $language = (string) get_parameter('language', '-1'); + if ($language !== '-1') { + $update['language'] = $language; + } + + $block_size_change = (int) get_parameter('block_size_change'); + if ($block_size_change === 0) { + $block_size = (int) get_parameter('block_size', -1); + if ($block_size !== -1) { + $update['block_size'] = $block_size; + } + } + + $section = get_parameter('section', '-1'); + if ($section !== '-1') { + $update['section'] = $section; + } + + $data_section = get_parameter('data_section', ''); + $dashboard = get_parameter('dashboard', ''); + $visual_console = get_parameter('visual_console', ''); + $section = io_safe_output($section); + + if (($section === 'Event list') || ($section === 'Group view') + || ($section === 'Alert detail') || ($section === 'Tactical view') + || ($section === 'Default') + ) { + $update['data_section'] = ''; + } else if ($section === 'Dashboard') { + $update['data_section'] = $dashboard; + } else if ($section === 'Visual console') { + $update['data_section'] = $visual_console; + } + + $event = (int) get_parameter('event_filter', -1); + if ($event !== -1) { + $update['default_event_filter'] = $event; + } + + $autorefresh_list = get_parameter_post('autorefresh_list', [0 => '-1']); + if ($autorefresh_list[0] !== '-1') { + if (($autorefresh_list[0] === '') || ($autorefresh_list[0] === '0')) { + $update['autorefresh_white_list'] = ''; + } else { + $update['autorefresh_white_list'] = json_encode($autorefresh_list); + } + } + + $time_autorefresh = (int) get_parameter('time_autorefresh', -1); + if ($time_autorefresh !== -1) { + $update['time_autorefresh'] = $time_autorefresh; + } + + $timezone = (string) get_parameter('timezone', '-1'); + if ($timezone !== '-1') { + $update['timezone'] = $timezone; + } + + $disabled = (int) get_parameter('disabled', -1); + if ($disabled !== -1) { + $update['disabled'] = $disabled; + } + + $error = []; + $success = []; + foreach ($users as $key => $user) { + if (empty($update) === false) { + $result = update_user($user, $update); + if ($result === false) { + $error[] = $user; + } else { + $success[] = $user; + } + } else { + $error[] = $user; + } + } + + if (empty($success) === false) { + ui_print_success_message( + __( + 'Users updated successfully (%s)', + implode( + ',', + $success + ) + ) + ); + } + + if (empty($error) === false) { + ui_print_error_message( + __( + 'Users cannot be updated (%s)', + implode(',', $error) + ) + ); + } + } +} + +if (is_metaconsole() === false) { + 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' + ); +} + + +$get_users = get_users(); +$users = []; +if (empty($get_users) === false) { + foreach ($get_users as $key => $value) { + $users[$key] = $key; + } +} + +$users_div = '

'.__('Users').'

'; +$users_div .= html_print_select( + $users, + 'id_users[]', + 0, + false, + '', + '', + true, + true, + true, + '', + false, + '', + false, + false, + false, + '', + false, + false, + false, + false, + true, + true, + true +).'
'; +echo '
'; +echo '
'; +echo '
'.$users_div.'
'; +echo '
'; + +// Language. +$language_db = db_get_all_rows_sql('SELECT id_language, name FROM tlanguage'); +array_unshift($language_db, ['id_language' => 'default', 'name' => __('Default')]); +$language_list = []; +foreach ($language_db as $key => $value) { + $language_list[$value['id_language']] = $value['name']; +} + +$language = '

'.__('Language').'

'; +$language .= html_print_select( + $language_list, + 'language', + '', + '', + __('No change'), + -1, + true, + false, + false +).'
'; + +// Pagination. +$block_size = $config['global_block_size']; +$size_pagination = '

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

'; +$size_pagination .= html_print_input_text('block_size', $block_size, '', 5, 5, true); +$size_pagination .= html_print_checkbox_switch('block_size_change', 1, 1, true); +$size_pagination .= ''.__('No change').''; +$size_pagination .= '
'; + +// Home screen. +$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 = [ + '-1' => __('No change'), + 'Default' => __('Default'), + 'Visual console' => __('Visual console'), + 'Event list' => __('Event list'), + 'Group view' => __('Group view'), + 'Tactical view' => __('Tactical view'), + 'Alert detail' => __('Alert detail'), + 'Other' => __('Other'), + 'Dashboard' => __('Dashboard'), +]; + +$home_screen .= html_print_select( + $values, + 'section', + '', + 'show_data_section();', + '', + -1, + true, + false, + false, + '', + false, + '', + '', + 10 +).'
'; + +$dashboards = get_user_dashboards($config['id_user']); + +$dashboards_aux = []; +if ($dashboards === false) { + $dashboards = ['None' => 'None']; +} else { + foreach ($dashboards as $key => $dashboard) { + $dashboards_aux[$dashboard['id']] = $dashboard['name']; + } +} + +$home_screen .= ''; + +$layouts = visual_map_get_user_layouts($config['id_user'], true); +$layouts_aux = []; +if (empty($layouts) === true) { + $layouts_aux = ['None' => 'None']; +} else { + foreach ($layouts as $layout) { + $layouts_aux[$layout] = $layout; + } +} + +$home_screen .= ''; +$home_screen .= html_print_input_text('data_section', '', '', 60, 255, true, false); + + +// Event filter. +$user_groups = implode(',', array_keys((users_get_groups($config['id_user'], 'AR', true)))); +$event_list = db_get_all_rows_sql('SELECT id_filter, id_name AS name FROM tevent_filter WHERE id_group_filter IN ('.$user_groups.')'); +if (empty($event_list) === true) { + $event_list = []; +} + +array_unshift($event_list, ['id_filter' => 'none', 'name' => __('None')]); + +$event_filter = '

'.__('Event filter').'

'; +$event_filter .= html_print_select( + $event_list, + 'event_filter', + '', + '', + __('No change'), + -1, + true, + false, + false +).'
'; + +// Autorefresh. +$autorefresh_list_out = []; +if (is_metaconsole() === false || is_centralized() === true) { + $autorefresh_list_out['operation/agentes/estado_agente'] = 'Agent detail'; + $autorefresh_list_out['operation/agentes/alerts_status'] = 'Alert detail'; + $autorefresh_list_out['enterprise/operation/cluster/cluster'] = 'Cluster view'; + $autorefresh_list_out['operation/gis_maps/render_view'] = 'Gis Map'; + $autorefresh_list_out['operation/reporting/graph_viewer'] = 'Graph Viewer'; + $autorefresh_list_out['operation/snmpconsole/snmp_view'] = 'SNMP console'; + + if (enterprise_installed()) { + $autorefresh_list_out['general/sap_view'] = 'SAP view'; + } +} + +$autorefresh_list_out['operation/agentes/tactical'] = 'Tactical view'; +$autorefresh_list_out['operation/agentes/group_view'] = 'Group view'; +$autorefresh_list_out['operation/agentes/status_monitor'] = 'Monitor detail'; +$autorefresh_list_out['enterprise/operation/services/services'] = 'Services'; +$autorefresh_list_out['operation/dashboard/dashboard'] = 'Dashboard'; + +$autorefresh_list_out['operation/agentes/pandora_networkmap'] = 'Network map'; +$autorefresh_list_out['operation/visual_console/render_view'] = 'Visual console'; +$autorefresh_list_out['operation/events/events'] = 'Events'; + +$autorefresh_show = '

'._('Autorefresh').ui_print_help_tip( + __('This will activate autorefresh in selected pages'), + true +).'

'; +$select_out = html_print_select( + $autorefresh_list_out, + 'autorefresh_list_out[]', + '', + '', + '', + '', + true, + true, + true, + '', + false, + 'width:100%;min-height: 150px;' +); +$arrows = ' '; +$autorefresh_list = []; +$autorefresh_list['-1'] = __('No change'); +$autorefresh_list[] = __('None'); + +$select_in = html_print_select( + $autorefresh_list, + 'autorefresh_list[]', + '-1', + '', + '', + '', + true, + true, + true, + '', + false, + 'width:100%;min-height: 150px;' +); + +$table_ichanges = ''; + +$autorefresh_show .= $table_ichanges; + +// Time autorefresh. +$times = get_refresh_time_array(); +$time_autorefresh = '

'.__('Time autorefresh'); +$time_autorefresh .= ui_print_help_tip( + __('Interval of autorefresh of the elements, by default they are 30 seconds, needing to enable the autorefresh first'), + true +).'

'; +$time_autorefresh .= html_print_select( + $times, + 'time_autorefresh', + '', + '', + __('No change'), + '-1', + true, + false, + false +).'
'; + +$timezone = '

'.__('Timezone').ui_print_help_tip(__('The timezone must be that of the associated server.'), true).'

'; +$timezone .= html_print_timezone_select('timezone', '-1', __('No change'), '-1').'
'; +$timezone_map = ''; + +if (is_metaconsole() === false) { + 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 .= ''; + } + } + + $timezone_map = '
+ + + '.$area_data_timezone_polys.$area_data_timezone_rects.' +
'; +} + +// Status (Disable / Enable). +$status = '
'; +$status .= '

'.__('Status').'

'; + +$table = new StdClass(); +$table->width = '100%'; +$table->class = 'databox filters'; + +$table->data[0][0] = __('No change'); +$table->data[0][0] .= html_print_radio_button_extended( + 'disabled', + -1, + '', + -1, + false, + '', + 'class="mrgn_right_40px"', + true +); +$table->data[0][0] .= __('Disable'); +$table->data[0][0] .= html_print_radio_button_extended( + 'disabled', + 1, + '', + '', + false, + '', + 'class="mrgn_right_40px"', + true +); +$table->data[0][0] .= __('Enable'); +$table->data[0][0] .= html_print_radio_button_extended( + 'disabled', + 0, + '', + '', + false, + '', + 'class="mrgn_right_40px"', + true +); + +$status .= html_print_table($table, true); + +echo ''; + +attachActionButton('edit_users', 'update', '100%'); + +echo ''; + +if (is_metaconsole() === false) { + // Include OpenLayers and timezone user map library. + echo ''."\n\t"; + echo ''."\n\t"; + // Closes no meta condition. + ?> + + + + + + \ No newline at end of file diff --git a/pandora_console/godmode/massive/massive_operations.php b/pandora_console/godmode/massive/massive_operations.php index 49b151b7d4..1bc1d60e85 100755 --- a/pandora_console/godmode/massive/massive_operations.php +++ b/pandora_console/godmode/massive/massive_operations.php @@ -70,10 +70,16 @@ $options_agents = [ ]; if (check_acl($config['id_user'], 0, 'UM')) { - $options_users = [ - 'add_profiles' => __('Bulk profile add'), - 'delete_profiles' => __('Bulk profile delete'), - ]; + if (is_metaconsole() === false) { + $options_users = [ + 'add_profiles' => __('Bulk profile add'), + 'delete_profiles' => __('Bulk profile delete'), + ]; + } + + if (users_is_admin() === true) { + $options_users['edit_users'] = __('Edit users in bulk'); + } } else { $options_users = []; } @@ -479,6 +485,10 @@ switch ($option) { include_once $config['homedir'].'/godmode/massive/massive_edit_plugins.php'; break; + case 'edit_users': + include_once $config['homedir'].'/godmode/massive/massive_edit_users.php'; + break; + default: if (!enterprise_hook('massive_operations', [$option])) { include_once $config['homedir'].'/godmode/massive/massive_config.php'; diff --git a/pandora_console/godmode/snmpconsole/snmp_trap_generator.php b/pandora_console/godmode/snmpconsole/snmp_trap_generator.php index 72578868e7..e03cfa9bb9 100755 --- a/pandora_console/godmode/snmpconsole/snmp_trap_generator.php +++ b/pandora_console/godmode/snmpconsole/snmp_trap_generator.php @@ -76,6 +76,7 @@ if ($generate_trap) { ); } +$table = new stdClass(); $traps_generator = '
'; $table->width = '100%'; $table->class = 'databox filters'; diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 355d93abff..b0dd7da0e3 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -442,6 +442,13 @@ if ($create_user) { $password_new = ''; $password_confirm = ''; $new_user = true; + } else if (excludedPassword($password_new) === true) { + $is_err = true; + ui_print_error_message(__('The password provided is not valid. Please set another one.')); + $user_info = $values; + $password_new = ''; + $password_confirm = ''; + $new_user = true; } else { if ((!is_user_admin($config['id_user']) || $config['enable_pass_policy_admin']) && $config['enable_pass_policy']) { $pass_ok = login_validate_pass($password_new, $id, true); @@ -1964,7 +1971,7 @@ function show_double_auth_activation () { resizable: true, draggable: true, modal: true, - title: "", + title: "", overlay: { opacity: 0.5, background: "black" @@ -2042,7 +2049,7 @@ function show_double_auth_deactivation () { resizable: true, draggable: true, modal: true, - title: "", + title: "", overlay: { opacity: 0.5, background: "black" diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index a851c62c8c..e9f9eb9808 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -509,6 +509,7 @@ class HostDevices extends Wizard $snmp_privacy_pass = get_parameter('snmp_privacy_pass', null); $snmp_auth_method = get_parameter('snmp_auth_method', null); $snmp_security_level = get_parameter('snmp_security_level', null); + $snmp_skip_non_enabled_ifs = get_parameter_switch('snmp_skip_non_enabled_ifs'); $auth_strings = get_parameter('auth_strings', []); if ($snmp_version == 3) { @@ -556,6 +557,7 @@ class HostDevices extends Wizard $this->task['snmp_privacy_pass'] = $snmp_privacy_pass; $this->task['snmp_auth_method'] = $snmp_auth_method; $this->task['snmp_security_level'] = $snmp_security_level; + $this->task['snmp_skip_non_enabled_ifs'] = $snmp_skip_non_enabled_ifs; $this->task['auth_strings'] = ''; if (is_array($auth_strings) === true) { $this->task['auth_strings'] = join( @@ -1215,6 +1217,24 @@ class HostDevices extends Wizard ], ]; + $form['inputs'][] = [ + 'hidden' => 1, + 'block_id' => 'snmp_options_skip_non_enabled_ifs', + 'class' => 'indented', + 'block_content' => [ + [ + 'label' => __('Skip non-enabled interfaces'), + 'arguments' => [ + 'name' => 'snmp_skip_non_enabled_ifs', + 'type' => 'switch', + 'value' => (isset($this->task['snmp_enabled']) === true) ? $this->task['snmp_skip_non_enabled_ifs'] : 1, + 'size' => 25, + 'return' => true, + ], + ], + ], + ]; + // SNMP Options pack v1. $form['inputs'][] = [ 'hidden' => 1, @@ -1487,6 +1507,7 @@ class HostDevices extends Wizard function SNMPExtraShow(target) { $("#snmp_options_basic").hide(); + $("#snmp_options_skip_non_enabled_ifs").hide(); $("#snmp_options_v3").hide(); if (document.getElementsByName("snmp_enabled")[0].checked) { $("#snmp_extra").show(); @@ -1494,6 +1515,7 @@ class HostDevices extends Wizard $("#snmp_options_v3").show(); } else { $("#snmp_options_basic").show(); + $("#snmp_options_skip_non_enabled_ifs").show(); } } } @@ -1519,6 +1541,7 @@ class HostDevices extends Wizard // Hide unusable sections $("#snmp_extra").hide(); $("#snmp_options_basic").hide(); + $("#snmp_options_skip_non_enabled_ifs").hide(); $("#snmp_options_v3").hide(); // Disable snmp dependant checks diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index 8b20e93736..5cb86d027e 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -90,7 +90,7 @@ $node_id = (int) get_parameter('node_id', 0); if ($get_comments === true) { $event = get_parameter('event', false); - $event_rep = get_parameter('event_rep', false); + $event_rep = (int) get_parameter('event_rep', 0); if ($event === false) { return __('Failed to retrieve comments'); } @@ -98,7 +98,7 @@ if ($get_comments === true) { $eventsGrouped = []; // Consider if the event is grouped. $whereGrouped = '1=1'; - if (isset($event_rep) === true && $event_rep > 0) { + if ($event_rep === EVENT_GROUP_REP_EVENTS) { // Default grouped message filtering (evento and estado). $whereGrouped = sprintf( '`evento` = "%s"', @@ -119,6 +119,11 @@ if ($get_comments === true) { (int) $event['id_agentmodule'] ); } + } else if ($event_rep === EVENT_GROUP_REP_EXTRAIDS) { + $whereGrouped = sprintf( + '`id_extra` = "%s"', + $event['id_extra'] + ); } else { $whereGrouped = sprintf('`id_evento` = %d', $event['id_evento']); } @@ -175,7 +180,7 @@ if ($delete_event === true) { $filter = get_parameter('filter', []); $id_evento = (int) get_parameter('id_evento', 0); $server_id = (int) get_parameter('server_id', 0); - $event_rep = get_parameter('event_rep', 0); + $event_rep = (int) get_parameter('event_rep', 0); try { if (is_metaconsole() === true @@ -228,7 +233,7 @@ if ($validate_event === true) { $filter = get_parameter('filter', []); $id_evento = (int) get_parameter('id_evento', 0); $server_id = (int) get_parameter('server_id', 0); - $event_rep = get_parameter('event_rep', 0); + $event_rep = (int) get_parameter('event_rep', 0); try { if (is_metaconsole() === true @@ -240,7 +245,7 @@ if ($validate_event === true) { if ($event_rep === 0) { // Disable group by when there're result is unique. - $filter['group_rep'] = 0; + $filter['group_rep'] = EVENT_GROUP_REP_ALL; } // Check acl. @@ -285,7 +290,7 @@ if ($in_process_event === true) { $filter = get_parameter('filter', []); $id_evento = (int) get_parameter('id_evento', 0); $server_id = (int) get_parameter('server_id', 0); - $event_rep = get_parameter('event_rep', 0); + $event_rep = (int) get_parameter('event_rep', 0); try { if (is_metaconsole() === true @@ -297,7 +302,7 @@ if ($in_process_event === true) { if ($event_rep === 0) { // Disable group by when there're result is unique. - $filter['group_rep'] = 0; + $filter['group_rep'] = EVENT_GROUP_REP_ALL; } // Check acl. @@ -466,7 +471,6 @@ if ($get_filter_values) { $event_filter = [ 'status' => EVENT_NO_VALIDATED, 'event_view_hr' => $config['event_view_hr'], - 'group_rep' => 1, 'tag_with' => [], 'tag_without' => [], 'history' => false, @@ -483,7 +487,7 @@ if ($get_filter_values) { 'time_to' => '', 'severity' => '', 'event_type' => '', - 'group_rep' => 0, + 'group_rep' => EVENT_GROUP_REP_ALL, 'id_group' => 0, 'id_group_filter' => 0, 'group_name' => 'All', @@ -2418,7 +2422,7 @@ if ($get_events_fired) { 'id_agent_module' => 0, 'pagination' => 0, 'id_user_ack' => 0, - 'group_rep' => 0, + 'group_rep' => EVENT_GROUP_REP_ALL, 'tag_with' => [], 'tag_without' => [], 'filter_only_alert' => -1, diff --git a/pandora_console/include/ajax/visual_console.ajax.php b/pandora_console/include/ajax/visual_console.ajax.php index 316d5ff022..cd4dde48e1 100644 --- a/pandora_console/include/ajax/visual_console.ajax.php +++ b/pandora_console/include/ajax/visual_console.ajax.php @@ -37,6 +37,7 @@ $ajax = true; $render_map = (bool) get_parameter('render_map', false); $graph_javascript = (bool) get_parameter('graph_javascript', false); $force_remote_check = (bool) get_parameter('force_remote_check', false); +$update_maintanance_mode = (bool) get_parameter('update_maintanance_mode', false); $load_css_cv = (bool) get_parameter('load_css_cv', false); if ($render_map) { @@ -99,3 +100,29 @@ if ($load_css_cv === true) { echo $output; return; } + +if ($update_maintanance_mode === true) { + $idVisualConsole = (int) get_parameter('idVisualConsole', 0); + $mode = (bool) get_parameter('mode', false); + + $values = []; + if ($mode === true) { + $values['maintenance_mode'] = json_encode( + [ + 'user' => $config['id_user'], + 'timestamp' => time(), + ] + ); + } else { + $values['maintenance_mode'] = null; + } + + $result = db_process_sql_update( + 'tlayout', + $values, + ['id' => $idVisualConsole] + ); + + echo json_encode(['result' => $result]); + return; +} diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index bb977207f0..13bd0428a0 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -305,7 +305,7 @@ function process_user_login_remote($login, $pass, $api=false) // Authentication ok, check if the user exists in the local database if (is_user($login)) { - if (!user_can_login($login)) { + if (!user_can_login($login) && $api === false) { return false; } @@ -758,6 +758,12 @@ function delete_user(string $id_user) function update_user_password(string $user, string $password_new) { global $config; + + if (excludedPassword($password_new) === true) { + $config['auth_error'] = __('The password provided is not valid. Please, set another one.'); + return false; + } + if (isset($config['auth']) === true && $config['auth'] === 'pandora') { $sql = sprintf( "UPDATE tusuario SET password = '".md5($password_new)."', last_pass_change = '".date('Y-m-d H:i:s', get_system_time())."' WHERE id_user = '".$user."'" @@ -840,6 +846,9 @@ function ldap_process_user_login($login, $password, $secondary_server=false) $ldap[$token] = $secondary_server === true ? $config[$token.'_secondary'] : $config[$token]; } + // Remove entities ldap admin pass. + $ldap['ldap_admin_pass'] = io_safe_output($ldap['ldap_admin_pass']); + // Connect to the LDAP server if (stripos($ldap['ldap_server'], 'ldap://') !== false || stripos($ldap['ldap_server'], 'ldaps://') !== false diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index dc6bd5df5f..5dad75e5ad 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -33,6 +33,7 @@ global $config; require_once $config['homedir'].'/include/class/HTML.class.php'; require_once $config['homedir'].'/include/functions_snmp_browser.php'; require_once $config['homedir'].'/include/functions_wmi.php'; +require_once $config['homedir'].'/include/class/CredentialStore.class.php'; use PandoraFMS\Module; @@ -696,6 +697,43 @@ class AgentWizard extends HTML 'return' => true, ], ]; + + $user_groups = users_get_groups(false, 'AR'); + if (users_is_admin() === true || isset($user_groups[0]) === true) { + $credentials = db_get_all_rows_sql( + 'SELECT identifier FROM tcredential_store WHERE product LIKE "WMI"' + ); + } else { + $credentials = db_get_all_rows_sql( + sprintf( + 'SELECT identifier FROM tcredential_store WHERE product LIKE "WMI" AND id_group IN (%s)', + implode(',', array_keys($user_groups)) + ) + ); + } + + if (empty($credentials) === false) { + $fields = []; + foreach ($credentials as $key => $value) { + $fields[$value['identifier']] = $value['identifier']; + } + + $inputs[] = [ + 'label' => __('Credential store'), + 'id' => 'slc-credential', + 'arguments' => [ + 'name' => 'credential', + 'input_class' => 'flex-row', + 'type' => 'select', + 'nothing' => __('None'), + 'nothing_value' => 0, + 'fields' => $fields, + 'class' => '', + 'return' => true, + 'sort' => true, + ], + ]; + } } $hint_server = ' '; @@ -716,6 +754,43 @@ class AgentWizard extends HTML ]; if ($this->actionType === 'snmp') { + $user_groups = users_get_groups(false, 'AR'); + if (users_is_admin() === true || isset($user_groups[0]) === true) { + $credentials = db_get_all_rows_sql( + 'SELECT identifier FROM tcredential_store WHERE product LIKE "SNMP"' + ); + } else { + $credentials = db_get_all_rows_sql( + sprintf( + 'SELECT identifier FROM tcredential_store WHERE product LIKE "SNMP" AND id_group IN (%s)', + implode(',', array_keys($user_groups)) + ) + ); + } + + if (empty($credentials) === false) { + $fields = []; + foreach ($credentials as $key => $value) { + $fields[$value['identifier']] = $value['identifier']; + } + + $inputs[] = [ + 'label' => __('Credential store'), + 'id' => 'slc-credential', + 'arguments' => [ + 'name' => 'credential', + 'input_class' => 'flex-row', + 'type' => 'select', + 'nothing' => __('None'), + 'nothing_value' => 0, + 'fields' => $fields, + 'class' => '', + 'return' => true, + 'sort' => true, + ], + ]; + } + $inputs[] = [ 'label' => __('SNMP community'), 'id' => 'txt-community', @@ -1336,6 +1411,21 @@ class AgentWizard extends HTML } + /** + * Build an array with Product credentials. + * + * @return array with credentials (pass and id). + */ + public function getCredentials(string $identifier='') + { + if (empty($identifier) === true) { + $identifier = get_parameter('identifier', ''); + } + + echo json_encode(credentialStore::getKey($identifier)); + } + + /** * Prepare data module to create. * @@ -5813,6 +5903,58 @@ class AgentWizard extends HTML filterInterfaces(); }); + $('#credential').change(function() { + if ($('#credential').val() !== '0') { + $.ajax({ + method: "post", + url: "", + data: { + page: "ajaxController; ?>", + method: "getCredentials", + identifier: $('#credential').val() + }, + datatype: "json", + success: function(data) { + data = JSON.parse(data); + + if ($('#text-namespaceWMI').length > 0) { + // WMI. + $('#text-namespaceWMI').val(data['extra_1']); + $('#text-usernameWMI').val(data['username']); + $('#password-passwordWMI').val(data['password']); + } else { + // SNMP. + extra = JSON.parse(data['extra_1']); + $('#version').val(extra['version']); + $('#version').trigger('change'); + $('#text-community').val(extra['community']); + + if (extra['version'] === '3') { + $('#securityLevelV3').val(extra['securityLevelV3']); + $('#securityLevelV3').trigger('change'); + $('#text-authUserV3').val(extra['authUserV3']); + + if (extra['securityLevelV3'] === 'authNoPriv' || extra['securityLevelV3'] === 'authPriv') { + $('#authMethodV3').val(extra['authMethodV3']); + $('#authMethodV3').trigger('change'); + $('#password-authPassV3').val(extra['authPassV3']); + + if (extra['securityLevelV3'] === 'authPriv') { + $('#privacyMethodV3').val(extra['privacyMethodV3']); + $('#privacyMethodV3').trigger('change'); + $('#password-privacyPassV3').val(extra['privacyPassV3']); + } + } + } + } + }, + error: function(e) { + showMsg(e); + } + }); + } + }); + // Loading. $('#submit-sub-protocol').click(function() { $('.wizard-result').remove(); diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php index 27486433ee..a134f999b8 100644 --- a/pandora_console/include/class/CredentialStore.class.php +++ b/pandora_console/include/class/CredentialStore.class.php @@ -617,33 +617,71 @@ class CredentialStore extends Wizard $password = $google_creds->private_key_id; } - if (empty($identifier) === true) { - $error = __('Key identifier is required'); - } else if ($id_group === null) { - $error = __('You must select a group where store this key!'); - } else if (empty($product) === true) { - $error = __('You must specify a product type'); - } else if (empty($username) === true || (empty($password) === true)) { - $error = __('You must specify a username and/or password'); - } else if (evaluate_ascii_valid_string(io_safe_output($identifier)) === false) { - $error = __('Identifier with forbidden characters. Check the documentation.'); - } + if ($product !== 'SNMP') { + if (empty($identifier) === true) { + $error = __('Key identifier is required'); + } else if ($id_group === null) { + $error = __('You must select a group where store this key!'); + } else if (empty($product) === true) { + $error = __('You must specify a product type'); + } else if (empty($username) === true || (empty($password) === true)) { + $error = __('You must specify a username and/or password'); + } else if (evaluate_ascii_valid_string(io_safe_output($identifier)) === false) { + $error = __('Identifier with forbidden characters. Check the documentation.'); + } - if (isset($error) === true) { - $this->ajaxMsg('error', $error); - exit; - } + if (isset($error) === true) { + $this->ajaxMsg('error', $error); + exit; + } - // Encrypt content (if needed). - $values = [ - 'identifier' => $identifier, - 'id_group' => $id_group, - 'product' => $product, - 'username' => io_input_password(io_safe_output($username)), - 'password' => io_input_password(io_safe_output($password)), - 'extra_1' => io_input_password(io_safe_output($extra_1)), - 'extra_2' => io_input_password(io_safe_output($extra_2)), - ]; + // Encrypt content (if needed). + $values = [ + 'identifier' => $identifier, + 'id_group' => $id_group, + 'product' => $product, + 'username' => io_input_password(io_safe_output($username)), + 'password' => io_input_password(io_safe_output($password)), + 'extra_1' => io_input_password(io_safe_output($extra_1)), + 'extra_2' => io_input_password(io_safe_output($extra_2)), + ]; + } else { + $values = [ + 'identifier' => $identifier, + 'id_group' => $id_group, + 'product' => $product, + ]; + + $community = (string) get_parameter('community', ''); + $version = (string) get_parameter('version', '1'); + $extra_json = [ + 'community' => $community, + 'version' => $version, + ]; + if ($version === '3') { + $securityLevelV3 = (string) get_parameter('securityLevelV3', 'authNoPriv'); + $extra_json['securityLevelV3'] = $securityLevelV3; + $authUserV3 = (string) get_parameter('authUserV3', ''); + $extra_json['authUserV3'] = $authUserV3; + if ($securityLevelV3 === 'authNoPriv' || $securityLevelV3 === 'authPriv') { + $authUserV3 = (string) get_parameter('authUserV3', ''); + $extra_json['authUserV3'] = $authUserV3; + $authMethodV3 = (string) get_parameter('authMethodV3', 'MD5'); + $extra_json['authMethodV3'] = $authMethodV3; + $authPassV3 = (string) get_parameter('authPassV3', ''); + $extra_json['authPassV3'] = $authPassV3; + + if ($securityLevelV3 === 'authPriv') { + $privacyMethodV3 = (string) get_parameter('privacyMethodV3', 'AES'); + $extra_json['privacyMethodV3'] = $privacyMethodV3; + $privacyPassV3 = (string) get_parameter('privacyPassV3', ''); + $extra_json['privacyPassV3'] = $privacyPassV3; + } + } + } + + $values['extra_1'] = json_encode($extra_json); + } // Spaces are not allowed. $values['identifier'] = \io_safe_input( @@ -947,6 +985,8 @@ class CredentialStore extends Wizard 'AZURE' => __('Azure'), 'SAP' => __('SAP'), 'GOOGLE' => __('Google'), + 'WMI' => __('WMI'), + 'SNMP' => __('SNMP'), ], 'selected' => (isset($values['product']) ? $values['product'] : 'CUSTOM'), 'disabled' => (bool) $values['product'], @@ -989,6 +1029,19 @@ class CredentialStore extends Wizard $extra1_type = 'textarea'; break; + case 'WMI': + $extra_1_label = __('Namespace'); + $extra1 = true; + $extra2 = false; + break; + + case 'SNMP': + $user = false; + $pass = false; + $extra1 = false; + $extra2 = false; + break; + case 'CUSTOM': case 'SAP': $user_label = __('Account ID'); @@ -1059,6 +1112,141 @@ class CredentialStore extends Wizard ]; } + if ($values['product'] === 'SNMP') { + $json_values = json_decode($values['extra_1'], true); + $inputs[] = [ + 'label' => __('SNMP community'), + 'id' => 'li_snmp_1', + 'arguments' => [ + 'name' => 'community', + 'input_class' => 'flex-row', + 'type' => 'text', + 'value' => $json_values['community'], + 'return' => true, + ], + ]; + + $inputs[] = [ + 'label' => __('SNMP version'), + 'id' => 'li_snmp_2', + 'arguments' => [ + 'name' => 'version', + 'input_class' => 'flex-row', + 'type' => 'select', + 'script' => 'showVersion()', + 'fields' => [ + '1' => __('1'), + '2' => __('2'), + '2c' => __('2c'), + '3' => __('3'), + ], + 'selected' => (isset($json_values['version']) ? $json_values['version'] : '1'), + 'return' => true, + ], + ]; + + $inputs[] = [ + 'label' => __('Security level'), + 'id' => 'li_snmp_3', + 'style' => ($json_values['version'] !== '3') ? 'display: none;' : '', + 'arguments' => [ + 'name' => 'securityLevelV3', + 'input_class' => 'flex-row', + 'type' => 'select', + 'script' => 'showSecurity()', + 'fields' => [ + 'authNoPriv' => __('Authenticated and non-private method'), + 'authPriv' => __('Authenticated and private method'), + 'noAuthNoPriv' => __('Non-authenticated and non-private method'), + ], + 'selected' => (isset($json_values['securityLevelV3']) ? $json_values['securityLevelV3'] : 'authNoPriv'), + 'return' => true, + ], + ]; + + $inputs[] = [ + 'label' => __('User authentication'), + 'id' => 'li_snmp_4', + 'style' => ($json_values['version'] !== '3') ? 'display: none;' : '', + 'arguments' => [ + 'name' => 'authUserV3', + 'input_class' => 'flex-row', + 'type' => 'text', + 'value' => $json_values['authUserV3'], + 'return' => true, + ], + ]; + + $authNoPrivate = ( + isset($json_values['securityLevelV3']) && + ($json_values['securityLevelV3'] === 'authNoPriv' || $json_values['securityLevelV3'] === 'authPriv') + ) ? '' : 'display: none;'; + + $inputs[] = [ + 'label' => __('Authentication method'), + 'id' => 'li_snmp_5', + 'style' => $authNoPrivate, + 'arguments' => [ + 'name' => 'authMethodV3', + 'input_class' => 'flex-row', + 'type' => 'select', + 'fields' => [ + 'MD5' => __('MD5'), + 'SHA' => __('SHA'), + ], + 'selected' => (isset($json_values['authMethodV3']) ? $json_values['authMethodV3'] : 'MD5'), + 'return' => true, + ], + ]; + + $inputs[] = [ + 'label' => __('Password authentication'), + 'id' => 'li_snmp_6', + 'style' => $authNoPrivate, + 'arguments' => [ + 'name' => 'authPassV3', + 'input_class' => 'flex-row', + 'type' => 'password', + 'value' => $json_values['authPassV3'], + 'return' => true, + ], + ]; + + $authPrivate = (isset($json_values['securityLevelV3']) && $json_values['securityLevelV3'] === 'authPriv') + ? '' + : 'display: none;'; + + $inputs[] = [ + 'label' => __('Privacy method'), + 'id' => 'li_snmp_7', + 'style' => $authPrivate, + 'arguments' => [ + 'name' => 'privacyMethodV3', + 'input_class' => 'flex-row', + 'type' => 'select', + 'fields' => [ + 'AES' => __('AES'), + 'DES' => __('DES'), + ], + 'selected' => (isset($json_values['privacyMethodV3']) ? $json_values['privacyMethodV3'] : 'AES'), + 'return' => true, + ], + ]; + + $inputs[] = [ + 'label' => __('Privacy pass'), + 'id' => 'li_snmp_8', + 'style' => $authPrivate, + 'arguments' => [ + 'name' => 'privacyPassV3', + 'input_class' => 'flex-row', + 'type' => 'password', + 'value' => $json_values['privacyPassV3'], + 'return' => true, + ], + ]; + } + return $this->printForm( [ 'form' => $form, @@ -1175,9 +1363,248 @@ class CredentialStore extends Wizard $('') ); $('#div-extra_1').show(); + } else if ($('#product :selected').val() == "WMI") { + $('#div-username label').text(''); + $('#div-password label').text(''); + $('#div-extra_1 label').text(''); + $('#div-username').show(); + $('#div-password').show(); + $('#div-extra_1').show(); + $('#div-extra_2').hide(); + } else if ($('#product :selected').val() == "SNMP") { + $('#div-username').hide(); + $('#div-password').hide(); + $('#div-extra_1').hide(); + $('#div-extra_2').hide(); + + if ($('#li_snmp_1').length > 0) { + console.log($('#li_snmp_1').length); + const test = ''; + console.log(test); + } else { + const ul = $('#modal_form').children('ul')[0]; + + // SNMP community. + const li_community = document.createElement("li"); + li_community.id = 'li_snmp_1'; + const label_community = document.createElement("label"); + label_community.textContent = ''; + const input_community = document.createElement("input"); + input_community.type = 'text'; + input_community.className = 'text_input'; + input_community.name = 'community'; + li_community.append(label_community); + li_community.append(input_community); + ul.append(li_community); + + // SNMP version. + const li_version = document.createElement("li"); + li_version.id = 'li_snmp_2'; + const label_version = document.createElement("label"); + label_version.textContent = ''; + const select_version = document.createElement("select"); + select_version.name = 'version'; + select_version.id = 'version'; + select_version.onchange = function() { + showVersion(); + }; + let option1 = document.createElement("option"); + let option2 = document.createElement("option"); + let option2c = document.createElement("option"); + let option3 = document.createElement("option"); + option1.value = '1'; + option1.text = '1'; + option2.value = '2'; + option2.text = '2'; + option2c.value = '2c'; + option2c.text = '2c'; + option3.value = '3'; + option3.text = '3'; + select_version.appendChild(option1); + select_version.appendChild(option2); + select_version.appendChild(option2c); + select_version.appendChild(option3); + li_version.append(label_version); + li_version.append(select_version); + ul.append(li_version); + $("#version").select2(); + + // Security. + const li_security = document.createElement("li"); + li_security.id = 'li_snmp_3'; + const label_security = document.createElement("label"); + label_security.textContent = ''; + const select_security = document.createElement("select"); + select_security.name = 'securityLevelV3'; + select_security.id = 'securityLevelV3'; + select_security.onchange = function() { + showSecurity(); + } + option1 = document.createElement("option"); + option2 = document.createElement("option"); + option3 = document.createElement("option"); + option1.value = 'authNoPriv'; + option1.text = ''; + option2.value = 'authPriv'; + option2.text = ''; + option3.value = 'noAuthNoPriv'; + option3.text = ''; + select_security.appendChild(option1); + select_security.appendChild(option2); + select_security.appendChild(option3); + li_security.append(label_security); + li_security.append(select_security); + ul.append(li_security); + $("#securityLevelV3").select2(); + + // User. + const li_user = document.createElement("li"); + li_user.id = 'li_snmp_4'; + const label_user = document.createElement("label"); + label_user.textContent = ''; + const input_user = document.createElement("input"); + input_user.type = 'text'; + input_user.className = 'text_input'; + input_user.name = 'authUserV3'; + li_user.append(label_user); + li_user.append(input_user); + ul.append(li_user); + + // Authentication method. + const li_method = document.createElement("li"); + li_method.id = 'li_snmp_5'; + const label_method = document.createElement("label"); + label_method.textContent = ''; + const select_method = document.createElement("select"); + select_method.name = 'authMethodV3'; + select_method.id = 'method'; + option1 = document.createElement("option"); + option2 = document.createElement("option"); + option1.value = 'MD5'; + option1.text = ''; + option2.value = 'SHA'; + option2.text = ''; + select_method.appendChild(option1); + select_method.appendChild(option2); + li_method.append(label_method); + li_method.append(select_method); + ul.append(li_method); + $("#method").select2(); + + // Password. + const li_password = document.createElement("li"); + li_password.id = 'li_snmp_6'; + const label_password = document.createElement("label"); + label_password.textContent = ''; + const input_password = document.createElement("input"); + input_password.type = 'password'; + input_password.className = 'text_input'; + input_password.name = 'authPassV3'; + li_password.append(label_password); + li_password.append(input_password); + ul.append(li_password); + + // Privacy method. + const li_privacy = document.createElement("li"); + li_privacy.id = 'li_snmp_7'; + const label_privacy = document.createElement("label"); + label_privacy.textContent = ''; + const select_privacy = document.createElement("select"); + select_privacy.name = 'privacyMethodV3'; + select_privacy.id = 'privacy'; + option1 = document.createElement("option"); + option2 = document.createElement("option"); + option1.value = 'AES'; + option1.text = ''; + option2.value = 'DES'; + option2.text = ''; + select_privacy.appendChild(option1); + select_privacy.appendChild(option2); + li_privacy.append(label_privacy); + li_privacy.append(select_privacy); + ul.append(li_privacy); + $("#privacy").select2(); + + // Privacy pass. + const li_privacyPassV3 = document.createElement("li"); + li_privacyPassV3.id = 'li_snmp_8'; + const label_privacyPassV3 = document.createElement("label"); + label_privacyPassV3.textContent = ''; + const input_privacyPassV3 = document.createElement("input"); + input_privacyPassV3.type = 'password'; + input_privacyPassV3.className = 'text_input'; + input_privacyPassV3.name = 'privacyPassV3'; + li_privacyPassV3.append(label_privacyPassV3); + li_privacyPassV3.append(input_privacyPassV3); + ul.append(li_privacyPassV3); + + $('#li_snmp_3').hide(); + $('#li_snmp_4').hide(); + $('#li_snmp_5').hide(); + $('#li_snmp_6').hide(); + $('#li_snmp_7').hide(); + $('#li_snmp_8').hide(); + } } } + function showVersion() { + if ($('#version').val() === '3') { + $('#li_snmp_3').show(); + $('#li_snmp_4').show(); + $('#li_snmp_5').show(); + $('#li_snmp_6').show(); + } else { + $('#li_snmp_3').hide(); + $('#li_snmp_4').hide(); + $('#li_snmp_5').hide(); + $('#li_snmp_6').hide(); + $('#li_snmp_7').hide(); + $('#li_snmp_8').hide(); + } + } + + function showSecurity() { + const value = $('#securityLevelV3').val(); + switch (value) { + case 'noAuthNoPriv': + $('#li_snmp_4').show(); + $('#li_snmp_5').hide(); + $('#li_snmp_6').hide(); + $('#li_snmp_7').hide(); + $('#li_snmp_8').hide(); + break; + + case 'authPriv': + $('#li_snmp_4').show(); + $('#li_snmp_5').show(); + $('#li_snmp_6').show(); + $('#li_snmp_7').show(); + $('#li_snmp_8').show(); + break; + + case 'authNoPriv': + default: + $('#li_snmp_4').show(); + $('#li_snmp_5').show(); + $('#li_snmp_6').show(); + $('#li_snmp_7').hide(); + $('#li_snmp_8').hide(); + break; + } + } + + function hideSNMP() { + $('#li_snmp_1').hide(); + $('#li_snmp_2').hide(); + $('#li_snmp_3').hide(); + $('#li_snmp_4').hide(); + $('#li_snmp_5').hide(); + $('#li_snmp_6').hide(); + $('#li_snmp_7').hide(); + $('#li_snmp_8').hide(); + } + /** * Process ajax responses and shows a dialog with results. */ diff --git a/pandora_console/include/class/HTML.class.php b/pandora_console/include/class/HTML.class.php index e47aa40b7c..f2b6ed3630 100644 --- a/pandora_console/include/class/HTML.class.php +++ b/pandora_console/include/class/HTML.class.php @@ -485,6 +485,10 @@ class HTML $class = ''; } + if (empty($input['style']) === false) { + $style_li = $input['style']; + } + if (isset($input['class']) === true) { $class = $input['class'].$class; } @@ -498,7 +502,7 @@ class HTML } // Print independent block of inputs. - $output .= '
  • '; + $output .= '
  • '; if (isset($input['wrapper']) === true) { $output .= '<'.$input['wrapper'].' id="'.($input['block_id'] ?? '').'" class="'.$class.'">'; @@ -562,7 +566,7 @@ class HTML } if (!$direct) { - $output .= '
  • '; + $output .= '
  • '; } if (isset($input['label']) === true) { diff --git a/pandora_console/include/class/SatelliteAgent.class.php b/pandora_console/include/class/SatelliteAgent.class.php index a6026da751..72c15795a4 100644 --- a/pandora_console/include/class/SatelliteAgent.class.php +++ b/pandora_console/include/class/SatelliteAgent.class.php @@ -223,8 +223,9 @@ class SatelliteAgent extends HTML echo $modal.$msg.$aux; - echo '
    '; + echo '
    '; + echo '
    '; html_print_select( [ '0' => 'Disable / Enable selected agents', @@ -248,18 +249,18 @@ class SatelliteAgent extends HTML ); echo '
    '; - echo '

    '; - - // Create button. - echo '
    '; + // Create button add host. + echo '
    '; html_print_submit_button( __('Add host'), 'create', false, 'class="sub next"' ); + echo '
    '; echo '
    '; + // Load own javascript file. echo $this->loadJS(); } @@ -1255,6 +1256,8 @@ class SatelliteAgent extends HTML $(document).ready(function() { + $('body').append('
    '); + $("#submit-create").on('click', function() { show_form(); }); @@ -1267,61 +1270,140 @@ class SatelliteAgent extends HTML $('#submit-submit_satellite_action').click(function() { const checks = $('input[name*=check_]:checked'); const action = $('#satellite_action').val(); - $.each(checks, function(i, val) { - const params = val.value.split(","); - if (action === '0') { - if (params[2] === '0') { - $.ajax({ - method: 'post', - async: false, - url: '', - data: { - page: 'enterprise/godmode/servers/agents_satellite', - method: 'disableAgent', - address: params[0], - disable: params[3], - id: params[4], - name: params[1], - no_msg: 1, - server_remote: satellite_server; ?>, - }, - datatype: "json", - success: function (data) { - }, - error: function(e) { - console.error(e); - } - }); - } - } else { - if (params[3] === '0') { - $.ajax({ - method: 'post', - async: false, - url: '', - data: { - page: 'enterprise/godmode/servers/agents_satellite', - method: 'deleteAgent', - address: params[0], - name: params[1], - id: params[4], - delete: params[2], - no_msg: 1, - server_remote: satellite_server; ?>, - }, - datatype: "json", - success: function (data) { - }, - error: function(e) { - console.error(e); - } - }); - } - } - }); + let agent_delete_error = []; + let agent_disable_error = []; + $('#aux').empty(); + $('#aux').text(''); + $('#aux').dialog({ + title: (action === '0') ? '' : '', + buttons: [ + { + class: 'ui-widget ui-state-default ui-corner-all ui-button-text-only sub upd submit-cancel', + text: '', + click: function(e) { + $(this).dialog('close'); + cleanupDOM(); - var dt_satellite_agents = $("#satellite_agents").DataTable(); - dt_satellite_agents.draw(); + } + }, + { + text: '', + class: 'ui-widget ui-state-default ui-corner-all ui-button-text-only sub ok submit-next', + click: function(e) { + $(this).dialog('close'); + $.each(checks, function(i, val) { + const params = val.value.split(","); + if (action === '0') { + if (params[2] === '0') { + $.ajax({ + method: 'post', + async: false, + url: '', + data: { + page: 'enterprise/godmode/servers/agents_satellite', + method: 'disableAgent', + address: params[0], + disable: params[3], + id: params[4], + name: params[1], + no_msg: 1, + server_remote: satellite_server; ?>, + }, + datatype: "json", + success: function (data) { + }, + error: function(e) { + console.error(e); + } + }); + } else { + agent_disable_error.push(params[0]); + } + } else { + if (params[3] === '0') { + $.ajax({ + method: 'post', + async: false, + url: '', + data: { + page: 'enterprise/godmode/servers/agents_satellite', + method: 'deleteAgent', + address: params[0], + name: params[1], + id: params[4], + delete: params[2], + no_msg: 1, + server_remote: satellite_server; ?>, + }, + datatype: "json", + success: function (data) { + }, + error: function(e) { + console.error(e); + } + }); + } else { + agent_delete_error.push(params[0]); + } + } + }); + + if (agent_delete_error.length > 0) { + $("#dialog").dialog({ + resizable: true, + draggable: true, + modal: true, + height: 240, + width: 600, + title: '', + open: function(){ + let text = ''; + text += ` (${agent_delete_error.join()})`; + $('#dialog').html(`

    ${text}

    `); + }, + buttons: [ + { + text: "Ok", + click: function() { + $( this ).dialog( "close" ); + return false; + } + } + ] + }); + } + + if (agent_disable_error.length > 0) { + $("#dialog").dialog({ + resizable: true, + draggable: true, + modal: true, + height: 240, + width: 600, + title: '', + open: function(){ + let text = ''; + text += ` (${agent_disable_error.join()})`; + $('#dialog').html(`

    ${text}

    `); + }, + buttons: [ + { + text: "Ok", + click: function() { + $( this ).dialog( "close" ); + return false; + } + } + ] + }); + } + + var dt_satellite_agents = $("#satellite_agents").DataTable(); + dt_satellite_agents.draw(); + } + } + ] + }); }); }); diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 3984581598..2080b42c4d 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 = 'PC221021'; +$build_version = 'PC221102'; $pandora_version = 'v7.0NG.765'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index 64be59b7aa..6688a91d78 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -45,6 +45,11 @@ define('EVENT_VALIDATE', 1); define('EVENT_PROCESS', 2); define('EVENT_NO_VALIDATED', 3); +// Events group by constants. +define('EVENT_GROUP_REP_ALL', 0); +define('EVENT_GROUP_REP_EVENTS', 1); +define('EVENT_GROUP_REP_AGENTS', 2); +define('EVENT_GROUP_REP_EXTRAIDS', 3); // Agents disabled status. define('AGENT_ENABLED', 0); diff --git a/pandora_console/include/db/mysql.php b/pandora_console/include/db/mysql.php index 40eae95573..82f7ec7dad 100644 --- a/pandora_console/include/db/mysql.php +++ b/pandora_console/include/db/mysql.php @@ -359,10 +359,12 @@ function mysql_db_get_all_rows_in_table($table, $order_field='', $order='ASC') * * @return mixed False in case of error or invalid values passed. Affected rows otherwise */ -function mysql_db_process_sql_insert($table, $values) +function mysql_db_process_sql_insert($table, $values, $sqltostring=false) { - // Empty rows or values not processed - if (empty($values)) { + global $config; + + // Empty rows or values not processed. + if (empty($values) === true) { return false; } @@ -374,7 +376,7 @@ function mysql_db_process_sql_insert($table, $values) $i = 1; $max = count($values); foreach ($values as $field => $value) { - // Add the correct escaping to values + // Add the correct escaping to values. if ($field[0] != '`') { $field = '`'.$field.'`'; } @@ -402,7 +404,30 @@ function mysql_db_process_sql_insert($table, $values) $query .= ' VALUES ('.$values_str.')'; - return db_process_sql($query, 'insert_id'); + $values_insert = []; + if (enterprise_hook('is_metaconsole') === true + && isset($config['centralized_management']) === true + && (bool) $config['centralized_management'] === true + ) { + $values_insert = [ + 'table' => $table, + 'values' => $values, + ]; + } + + if ($sqltostring === true) { + return $query; + } + + return db_process_sql( + $query, + 'insert_id', + '', + true, + $status, + true, + $values_insert + ); } diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index 90935bbc6d..0f5f01590d 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -11246,7 +11246,7 @@ function get_events_with_user($trash1, $trash2, $other, $returnType, $user_in_db $id_user_ack = 0; $event_view_hr = 0; $tag = ''; - $group_rep = 0; + $group_rep = EVENT_GROUP_REP_ALL; $utimestamp_upper = 0; $utimestamp_bottom = 0; $id_alert_template = -1; @@ -11449,7 +11449,7 @@ function get_events_with_user($trash1, $trash2, $other, $returnType, $user_in_db $alert_join = ' INNER JOIN talert_template_modules ON '.$table_events.'.id_alert_am=talert_template_modules.id'; } - if ($group_rep == 0) { + if ($group_rep == EVENT_GROUP_REP_ALL) { if ($filter['total']) { $sql = 'SELECT COUNT(*) FROM '.$table_events.' @@ -13171,7 +13171,7 @@ function api_set_create_event($id, $trash1, $other, $returnType) if ($other['data'][7] != '') { $values['id_agentmodule'] = $other['data'][7]; } else { - $value['id_agentmodule'] = 0; + $values['id_agentmodule'] = 0; } if ($other['data'][8] != '') { @@ -15922,7 +15922,7 @@ function api_set_create_event_filter($name, $thrash1, $other, $thrash3) $id_user_ack = (in_array($other['data'][9], $users)) ? $other['data'][9] : 0; - $group_rep = ($other['data'][10] == 0 || $other['data'][10] == 1) ? $other['data'][10] : 0; + $group_rep = ($other['data'][10] == EVENT_GROUP_REP_ALL || $other['data'][10] == EVENT_GROUP_REP_EVENTS) ? $other['data'][10] : EVENT_GROUP_REP_ALL; $date_from = (preg_match('/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/', $other['data'][11])) ? $other['data'][11] : '0000-00-00'; @@ -16149,7 +16149,7 @@ function api_set_update_event_filter($id_event_filter, $thrash1, $other, $thrash break; case 11: - $values['group_rep'] = ($other['data'][11] == 0 || $other['data'][11] == 1) ? $other['data'][11] : 0; + $values['group_rep'] = ($other['data'][11] == EVENT_GROUP_REP_ALL || $other['data'][11] == EVENT_GROUP_REP_EVENTS) ? $other['data'][11] : EVENT_GROUP_REP_ALL; break; case 12: diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index e085604a56..6870f9ae30 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -515,6 +515,10 @@ function config_update_config() if (config_update_value('reset_pass_option', (bool) get_parameter('reset_pass_option'), true) === false) { $error_update[] = __('Activate reset password'); } + + if (config_update_value('exclusion_word_list', (string) get_parameter('exclusion_word_list'), true) === false) { + $error_update[] = __('Exclusion word list for passwords'); + } } break; @@ -608,7 +612,7 @@ function config_update_config() $error_update[] = __('Admin LDAP login'); } - if (config_update_value('ldap_admin_pass', io_input_password(io_safe_output(get_parameter('ldap_admin_pass'))), true) === false) { + if (config_update_value('ldap_admin_pass', io_input_password(get_parameter('ldap_admin_pass')), true) === false) { $error_update[] = __('Admin LDAP password'); } @@ -644,7 +648,7 @@ function config_update_config() $error_update[] = __('Admin secondary LDAP login'); } - if (config_update_value('ldap_admin_pass_secondary', io_input_password(io_safe_output(get_parameter('ldap_admin_pass_secondary'))), true) === false) { + if (config_update_value('ldap_admin_pass_secondary', io_input_password(get_parameter('ldap_admin_pass_secondary')), true) === false) { $error_update[] = __('Admin secondary LDAP password'); } @@ -1563,6 +1567,10 @@ function config_update_config() $error_update[] = __('Enable history event'); } + if (config_update_value('history_trap_enabled', get_parameter('history_trap_enabled'), true) === false) { + $error_update[] = __('Enable history trap'); + } + if (config_update_value('history_db_user', get_parameter('history_db_user'), true) === false) { $error_update[] = __('Database user'); } @@ -1600,6 +1608,22 @@ function config_update_config() $error_update[] = __('Event Days'); } + $history_trap_days = get_parameter('history_trap_days'); + if (is_numeric($history_trap_days) === false + || $history_trap_days <= 0 + || config_update_value('history_trap_days', $history_trap_days) === false + ) { + $error_update[] = __('Trap Days'); + } + + $trap_history_purge = get_parameter('history_traps_days_purge'); + if (is_numeric($trap_history_purge) === false + || $trap_history_purge <= 0 + || config_update_value('trap_history_purge', $trap_history_purge) === false + ) { + $error_update[] = __('Trap history purge'); + } + $history_db_step = get_parameter('history_db_step'); if (!is_numeric($history_db_step) || $history_db_step <= 0 @@ -1664,6 +1688,14 @@ function config_update_config() $error_update[] = __('Historical database events purge'); } + if ($dbm->setConfigToken( + 'trap_history_purge', + get_parameter('history_traps_days_purge') + ) !== true + ) { + $error_update[] = __('Historical database traps purge'); + } + if ($dbm->setConfigToken( 'string_purge', get_parameter('history_dbh_string_purge') @@ -2199,6 +2231,10 @@ function config_process_config() config_update_value('reset_pass_option', 0); } + if (isset($config['exclusion_word_list']) === false) { + config_update_value('exclusion_word_list', ''); + } + if (!isset($config['include_agents'])) { config_update_value('include_agents', 0); } @@ -2520,6 +2556,10 @@ function config_process_config() config_update_value('history_event_enabled', false); } + if (!isset($config['history_trap_enabled'])) { + config_update_value('history_trap_enabled', false); + } + if (!isset($config['history_db_host'])) { config_update_value('history_db_host', ''); } @@ -2556,6 +2596,14 @@ function config_process_config() config_update_value('history_event_days', 90); } + if (!isset($config['history_trap_days'])) { + config_update_value('history_trap_days', 90); + } + + if (!isset($config['trap_history_purge'])) { + config_update_value('trap_history_purge', 180); + } + if (!isset($config['history_db_step'])) { config_update_value('history_db_step', 0); } diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 2d8525a412..a519c317c2 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -1338,30 +1338,42 @@ function db_get_cached_queries() * This function comes back with an array in case of SELECT * in case of UPDATE, DELETE etc. with affected rows * an empty array in case of SELECT without results - * Queries that return data will be cached so queries don't get repeated + * Queries that return data will be cached so queries don't get repeated. * - * @param string SQL statement to execute + * @param string $sql SQL statement to execute. + * @param string $rettype What type of info to return in case of INSERT/UPDATE. + * 'affected_rows' will return mysql_affected_rows (default value) + * 'insert_id' will return the ID of an autoincrement value + * 'info' will return the full (debug) information of a query. + * @param string $dbconnection Info conecction. + * @param boolean $cache Cache. + * @param string $status The status and type of query (support only postgreSQL). + * @param boolean $autocommit Set autocommit transaction mode true/false (Only oracle). + * @param array $values Values (Only type insert). * - * @param string What type of info to return in case of INSERT/UPDATE. - * 'affected_rows' will return mysql_affected_rows (default value) - * 'insert_id' will return the ID of an autoincrement value - * 'info' will return the full (debug) information of a query - * - * @param string $status The status and type of query (support only postgreSQL). - * - * @param boolean $autocommit (Only oracle) Set autocommit transaction mode true/false - * - * @return mixed An array with the rows, columns and values in a multidimensional array or false in error + * @return mixed An array with the rows, columns and values in a multidimensional array or false in error. */ -function db_process_sql($sql, $rettype='affected_rows', $dbconnection='', $cache=true, &$status=null, $autocommit=true) -{ +function db_process_sql( + $sql, + $rettype='affected_rows', + $dbconnection='', + $cache=true, + &$status=null, + $autocommit=true, + $values_insert=[] +) { global $config; $rc = false; switch ($config['dbtype']) { case 'mysql': default: - $rc = @mysql_db_process_sql($sql, $rettype, $dbconnection, $cache); + $rc = @mysql_db_process_sql( + $sql, + $rettype, + $dbconnection, + $cache + ); break; case 'postgresql': @@ -1373,7 +1385,13 @@ function db_process_sql($sql, $rettype='affected_rows', $dbconnection='', $cache break; } - db_sync($dbconnection, $sql, $rc); + db_sync( + $dbconnection, + $sql, + $rc, + $rettype, + $values_insert + ); return $rc; } @@ -1388,8 +1406,13 @@ function db_process_sql($sql, $rettype='affected_rows', $dbconnection='', $cache * * @return void */ -function db_sync($dbconnection, $sql, $rc) -{ +function db_sync( + $dbconnection, + $sql, + $rc, + $rettype='affected_rows', + $values_insert=[] +) { global $config; if (enterprise_hook('is_metaconsole') === true && isset($config['centralized_management']) === true @@ -1401,6 +1424,16 @@ function db_sync($dbconnection, $sql, $rc) // Synchronize changes to nodes if needed. $sync = new Synchronizer(); if ($sync !== null) { + if ($rettype === 'insert_id') { + $forceSql = $sync->updateInsertQueryAddPrimaryKey( + $values_insert, + $rc + ); + if (empty($forceSql) === false) { + $sql = $forceSql; + } + } + if ($sync->queue($sql, $rc) === false) { // Launch events per failed query. $errors = $sync->getLatestErrors(); @@ -1696,13 +1729,13 @@ function db_process_delete_temp($table, $row, $value, $custom_value=false) * * @return mixed False in case of error or invalid values passed. Affected rows otherwise */ -function db_process_sql_insert($table, $values, $autocommit=true) +function db_process_sql_insert($table, $values, $autocommit=true, $sqltostring=false) { global $config; switch ($config['dbtype']) { case 'mysql': - return mysql_db_process_sql_insert($table, $values); + return mysql_db_process_sql_insert($table, $values, $sqltostring); break; case 'postgresql': diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index 9e0a3650d6..3aa121ec6a 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -382,14 +382,14 @@ function events_delete($id_evento, $filter=null, $history=false, $force_node=fal } if (isset($filter) === false - || is_array($filter) === true + || is_array($filter) === false ) { - $filter = ['group_rep' => 0]; + $filter = ['group_rep' => EVENT_GROUP_REP_ALL]; } switch ($filter['group_rep']) { - case '0': - case '2': + case EVENT_GROUP_REP_ALL: + case EVENT_GROUP_REP_AGENTS: default: // No groups option direct update. $delete_sql = sprintf( @@ -399,7 +399,8 @@ function events_delete($id_evento, $filter=null, $history=false, $force_node=fal ); break; - case '1': + case EVENT_GROUP_REP_EVENTS: + case EVENT_GROUP_REP_EXTRAIDS: // Group by events. $sql = events_get_all( ['te.*'], @@ -418,8 +419,16 @@ function events_delete($id_evento, $filter=null, $history=false, $force_node=fal true ); - $target_ids = db_get_all_rows_sql( - sprintf( + if ((int) $filter['group_rep'] === EVENT_GROUP_REP_EXTRAIDS) { + $sql = sprintf( + 'SELECT tu.id_evento FROM tevento tu INNER JOIN ( %s ) tf + ON tu.id_extra = tf.id_extra + AND tf.max_id_evento = %d', + $sql, + $id_evento + ); + } else { + $sql = sprintf( 'SELECT tu.id_evento FROM tevento tu INNER JOIN ( %s ) tf ON tu.estado = tf.estado AND tu.evento = tf.evento @@ -428,8 +437,10 @@ function events_delete($id_evento, $filter=null, $history=false, $force_node=fal AND tf.max_id_evento = %d', $sql, $id_evento - ) - ); + ); + } + + $target_ids = db_get_all_rows_sql($sql); // Try to avoid deadlock while updating full set. if ($target_ids !== false && count($target_ids) > 0) { @@ -475,12 +486,12 @@ function events_update_status($id_evento, $status, $filter=null) } if (isset($filter) === false || is_array($filter) === false) { - $filter = ['group_rep' => 0]; + $filter = ['group_rep' => EVENT_GROUP_REP_ALL]; } switch ($filter['group_rep']) { - case '0': - case '2': + case EVENT_GROUP_REP_ALL: + case EVENT_GROUP_REP_AGENTS: default: // No groups option direct update. $update_sql = sprintf( @@ -492,7 +503,8 @@ function events_update_status($id_evento, $status, $filter=null) ); break; - case '1': + case EVENT_GROUP_REP_EVENTS: + case EVENT_GROUP_REP_EXTRAIDS: // Group by events. $sql = events_get_all( ['te.*'], @@ -511,8 +523,16 @@ function events_update_status($id_evento, $status, $filter=null) true ); - $target_ids = db_get_all_rows_sql( - sprintf( + if ((int) $filter['group_rep'] === EVENT_GROUP_REP_EXTRAIDS) { + $sql = sprintf( + 'SELECT tu.id_evento FROM tevento tu INNER JOIN ( %s ) tf + ON tu.id_extra = tf.id_extra + AND tf.max_id_evento = %d', + $sql, + $id_evento + ); + } else { + $sql = sprintf( 'SELECT tu.id_evento FROM tevento tu INNER JOIN ( %s ) tf ON tu.estado = tf.estado AND tu.evento = tf.evento @@ -521,8 +541,10 @@ function events_update_status($id_evento, $status, $filter=null) AND tf.max_id_evento = %d', $sql, $id_evento - ) - ); + ); + } + + $target_ids = db_get_all_rows_sql($sql); // Try to avoid deadlock while updating full set. if ($target_ids !== false && count($target_ids) > 0) { @@ -1367,7 +1389,10 @@ function events_get_all( // Order. $order_by = ''; if (isset($order, $sort_field) === true) { - if (isset($filter['group_rep']) === true && $filter['group_rep'] == 1) { + if (isset($filter['group_rep']) === true + && $filter['group_rep'] === EVENT_GROUP_REP_EVENTS + && $filter['group_rep'] === EVENT_GROUP_REP_EXTRAIDS + ) { $order_by = events_get_sql_order('MAX('.$sort_field.')', $order); } else { $order_by = events_get_sql_order($sort_field, $order); @@ -1401,22 +1426,22 @@ function events_get_all( $group_by = 'GROUP BY '; $tagente_join = 'LEFT'; if (isset($filter['group_rep']) === false) { - $filter['group_rep'] = 0; + $filter['group_rep'] = EVENT_GROUP_REP_ALL; } switch ($filter['group_rep']) { - case '0': + case EVENT_GROUP_REP_ALL: default: // All events. $group_by = ''; break; - case '1': + case EVENT_GROUP_REP_EVENTS: // Group by events. $group_by .= 'te.evento, te.id_agente, te.id_agentmodule'; break; - case '2': + case EVENT_GROUP_REP_AGENTS: // Group by agents. $tagente_join = 'INNER'; $group_by = ''; @@ -1430,6 +1455,11 @@ function events_get_all( ); } break; + + case EVENT_GROUP_REP_EXTRAIDS: + // Group by events. + $group_by .= 'te.id_extra'; + break; } $tgrupo_join = 'LEFT'; @@ -1516,7 +1546,9 @@ function events_get_all( } } - if ((int) $filter['group_rep'] === 1 && $count === false) { + if (((int) $filter['group_rep'] === EVENT_GROUP_REP_EVENTS + || (int) $filter['group_rep'] === EVENT_GROUP_REP_EXTRAIDS) && $count === false + ) { $sql = sprintf( 'SELECT %s %s @@ -1547,7 +1579,9 @@ function events_get_all( %s %s %s JOIN tgrupo tg - ON %s', + ON %s + %s + %s', join(',', $fields), $group_selects_trans, $tevento, @@ -1576,7 +1610,8 @@ function events_get_all( join(' ', $agent_join_filters), $tgrupo_join, join(' ', $tgrupo_join_filters), - join(' ', $sql_filters) + join(' ', $sql_filters), + $order_by ); } else { $sql = sprintf( @@ -2900,9 +2935,9 @@ function events_get_agent( // Group by agent. if ((bool) $show_summary_group === true) { - $filters['group_rep'] = 1; + $filters['group_rep'] = EVENT_GROUP_REP_EVENTS; } else { - $filters['group_rep'] = 2; + $filters['group_rep'] = EVENT_GROUP_REP_AGENTS; } $events = Event::search( @@ -5153,7 +5188,7 @@ function events_get_count_events_validated_by_user($data) * * @return string SQL. */ -function events_get_sql_order($sort_field='timestamp', $sort='DESC', $group_rep=0, $only_fields=false) +function events_get_sql_order($sort_field='timestamp', $sort='DESC', $group_rep=EVENT_GROUP_REP_ALL, $only_fields=false) { $sort_field_translated = $sort_field; switch ($sort_field) { @@ -5174,7 +5209,7 @@ function events_get_sql_order($sort_field='timestamp', $sort='DESC', $group_rep= break; case 'timestamp': - $sort_field_translated = ($group_rep == 0) ? 'timestamp' : 'timestamp_last'; + $sort_field_translated = ($group_rep == EVENT_GROUP_REP_ALL) ? 'timestamp' : 'timestamp_last'; break; case 'user_id': @@ -5201,6 +5236,14 @@ function events_get_sql_order($sort_field='timestamp', $sort='DESC', $group_rep= $sort_field_translated = 'id_extra'; break; + case 'agent_name': + $sort_field_translated = 'ta.nombre'; + break; + + case 'module_custom_id': + $sort_field_translated = 'am.custom_id'; + break; + default: $sort_field_translated = $sort_field; break; diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index ef41904c38..9e0333965d 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4735,12 +4735,12 @@ function html_print_autocomplete_modules( * * @return string HTML code */ -function html_print_timezone_select($name, $selected='') +function html_print_timezone_select($name, $selected='', $nothing='', $nothing_value='') { - $timezones_index = timezone_identifiers_list(); $timezones = timezone_identifiers_list(); - $timezones = array_combine($timezones_index, $timezones); - return html_print_select($timezones, $name, $selected, '', __('None'), '', true, false, false); + $timezones = array_combine($timezones, $timezones); + $timezones = (['' => __('none')] + $timezones); + return html_print_select($timezones, $name, $selected, '', $nothing, $nothing_value, true, false, false); } diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index ab1e64cfcf..54e0173fa2 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -4011,7 +4011,7 @@ function reporting_groups_nodes($content) } // Grouped. - $filters['group_rep'] = 1; + $filters['group_rep'] = EVENT_GROUP_REP_EVENTS; $events = Event::search( [ diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 1e9d9f8dd7..6ae90f29ef 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -6513,7 +6513,7 @@ function ui_print_breadcrums($tab_name) /** * Show last comment * - * @param array $comments array with comments + * @param string $comments String with comments. * * @return string HTML string with the last comment of the events. */ @@ -6537,31 +6537,45 @@ function ui_print_comments($comments) foreach ($comments_array as $comm) { // Show the comments more recent first. if (is_array($comm)) { - $last_comment[] = array_reverse($comm); + $order_utimestamp = array_reduce( + $comm, + function ($carry, $item) { + $carry[$item['utimestamp']] = $item; + return $carry; + } + ); + + $key_max_utimestamp = max(array_keys($order_utimestamp)); + + $last_comment = $order_utimestamp[$key_max_utimestamp]; } } + if (empty($last_comment) === true) { + return ''; + } + // Only show the last comment. If commment its too long,the comment will short with ... // If $config['prominent_time'] is timestamp the date show Month, day, hour and minutes. // Else show comments hours ago - if ($last_comment[0][0]['action'] != 'Added comment') { - $last_comment[0][0]['comment'] = $last_comment[0][0]['action']; + if ($last_comment['action'] != 'Added comment') { + $last_comment['comment'] = $last_comment['action']; } - $short_comment = substr($last_comment[0][0]['comment'], 0, 20); + $short_comment = substr($last_comment['comment'], 0, 20); if ($config['prominent_time'] == 'timestamp') { - $comentario = ''.date($config['date_format'], $last_comment[0][0]['utimestamp']).' ('.$last_comment[0][0]['id_user'].'): '.$last_comment[0][0]['comment'].''; + $comentario = ''.date($config['date_format'], $last_comment['utimestamp']).' ('.$last_comment['id_user'].'): '.$last_comment['comment'].''; if (strlen($comentario) > '200px') { - $comentario = ''.date($config['date_format'], $last_comment[0][0]['utimestamp']).' ('.$last_comment[0][0]['id_user'].'): '.$short_comment.'...'; + $comentario = ''.date($config['date_format'], $last_comment['utimestamp']).' ('.$last_comment['id_user'].'): '.$short_comment.'...'; } } else { - $rest_time = (time() - $last_comment[0][0]['utimestamp']); + $rest_time = (time() - $last_comment['utimestamp']); $time_last = (($rest_time / 60) / 60); - $comentario = ''.number_format($time_last, 0).'  Hours  ('.$last_comment[0][0]['id_user'].'): '.$last_comment[0][0]['comment'].''; + $comentario = ''.number_format($time_last, 0).'  Hours  ('.$last_comment['id_user'].'): '.$last_comment['comment'].''; if (strlen($comentario) > '200px') { - $comentario = ''.number_format($time_last, 0).'  Hours  ('.$last_comment[0][0]['id_user'].'): '.$short_comment.'...'; + $comentario = ''.number_format($time_last, 0).'  Hours  ('.$last_comment['id_user'].'): '.$short_comment.'...'; } } diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index fce3aabe2d..9b1454ab4b 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -3708,6 +3708,8 @@ function visual_map_print_visual_map( // End function // Start function + + /** * Get a list with the layouts for a user. * @@ -3719,8 +3721,6 @@ function visual_map_print_visual_map( * * @return array A list of layouts the user can see. */ - - function visual_map_get_user_layouts( $id_user=0, $only_names=false, @@ -3729,6 +3729,7 @@ function visual_map_get_user_layouts( $favourite=false, $check_user_groups=true ) { + $where = ''; if (! is_array($filter)) { $filter = []; } else { @@ -3819,17 +3820,19 @@ function visual_map_get_user_layouts( $retval[$layout['id']] = $layout; } - // add_perms - if (isset($groups[$layout['id_group']]['vconsole_view'])) { - $retval[$layout['id']]['vr'] = $groups[$layout['id_group']]['vconsole_view']; - } + if ($only_names === false) { + // Aad_perms. + if (isset($groups[$layout['id_group']]['vconsole_view'])) { + $retval[$layout['id']]['vr'] = $groups[$layout['id_group']]['vconsole_view']; + } - if (isset($groups[$layout['id_group']]['vconsole_edit'])) { - $retval[$layout['id']]['vw'] = $groups[$layout['id_group']]['vconsole_edit']; - } + if (isset($groups[$layout['id_group']]['vconsole_edit'])) { + $retval[$layout['id']]['vw'] = $groups[$layout['id_group']]['vconsole_edit']; + } - if (isset($groups[$layout['id_group']]['vconsole_management'])) { - $retval[$layout['id']]['vm'] = $groups[$layout['id_group']]['vconsole_management']; + if (isset($groups[$layout['id_group']]['vconsole_management'])) { + $retval[$layout['id']]['vm'] = $groups[$layout['id_group']]['vconsole_management']; + } } } diff --git a/pandora_console/include/javascript/module_library.js b/pandora_console/include/javascript/module_library.js index 6a36575568..e0637ba88e 100644 --- a/pandora_console/include/javascript/module_library.js +++ b/pandora_console/include/javascript/module_library.js @@ -154,8 +154,10 @@ $(document).ready(function() { if (selector == "search") { $("#search_title_result h2").append( - "" + search_modules + "" + "" ); + + $("#search_string").text(search_modules); } if (total_posts < 1) { diff --git a/pandora_console/include/javascript/pandora_dashboards.js b/pandora_console/include/javascript/pandora_dashboards.js index c08e6bdbf7..374af546de 100644 --- a/pandora_console/include/javascript/pandora_dashboards.js +++ b/pandora_console/include/javascript/pandora_dashboards.js @@ -1386,6 +1386,12 @@ function dashboardLoadVC(settings) { : "dashboard" ); + if (settings.props.maintenanceMode != null) { + if (settings.props.maintenanceMode.user !== settings.id_user) { + visualConsoleManager.visualConsole.enableMaintenanceMode(); + } + } + if (settings.mobile_view_orientation_vc === true) { $(window).on("orientationchange", function() { $(container).width($(window).height()); diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index f4cd5f6e2b..df84985a37 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -707,7 +707,7 @@ function execute_event_response(event_list_btn) { } in_process_event( - "events", + "table_events", event_id, $(this).attr("event_rep"), this.parentElement.parentElement, @@ -727,7 +727,7 @@ function execute_event_response(event_list_btn) { } validate_event( - "events", + "table_events", event_id, $(this).attr("event_rep"), this.parentElement.parentElement, @@ -747,7 +747,7 @@ function execute_event_response(event_list_btn) { } execute_delete_event_reponse( - "events", + "table_events", event_id, $(this).attr("event_rep"), this.parentElement.parentElement, diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 28083ec166..cbacab3f51 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -13,20 +13,26 @@ function configure_modules_form() { $("#id_module_type").change(function() { if (id_modules_icmp.in_array(this.value)) { $( - "tr#simple-snmp_1, tr#simple-snmp_2, tr#simple-tcp_send, tr#simple-tcp_receive" + "tr#simple-snmp_1, tr#simple-snmp_2, tr#simple-snmp_credentials, tr#simple-tcp_send, tr#simple-tcp_receive" ).hide(); $("#text-tcp_port").attr("disabled", "1"); } else if (id_modules_snmp.in_array(this.value)) { - $("tr#simple-snmp_1, tr#simple-snmp_2").show(); + $( + "tr#simple-snmp_1, tr#simple-snmp_2, tr#simple-snmp_credentials" + ).show(); $("tr#simple-tcp_send, tr#simple-tcp_receive").hide(); $("#text-tcp_port").removeAttr("disabled"); } else if (id_modules_tcp.in_array(this.value)) { - $("tr#simple-snmp_1, tr#simple-snmp_2").hide(); + $( + "tr#simple-snmp_1, tr#simple-snmp_2, tr#simple-snmp_credentials" + ).hide(); $("tr#simple-tcp_send, tr#simple-tcp_receive").show(); $("#text-tcp_port").removeAttr("disabled"); } else if (id_modules_exec.in_array(this.value)) { $("tr#simple-tcp_send, tr#simple-tcp_receive").hide(); - $("tr#simple-snmp_1, tr#simple-snmp_2").hide(); + $( + "tr#simple-snmp_1, tr#simple-snmp_2, tr#simple-snmp_credentials" + ).hide(); $("#text-tcp_port").attr("disabled", false); } }); diff --git a/pandora_console/include/javascript/pandora_visual_console.js b/pandora_console/include/javascript/pandora_visual_console.js index a37922a63c..20d5fa1979 100755 --- a/pandora_console/include/javascript/pandora_visual_console.js +++ b/pandora_console/include/javascript/pandora_visual_console.js @@ -117,6 +117,15 @@ function createVisualConsole( visualConsole.updateElements(items); } + if ( + visualConsole.props.maintenanceMode != null && + visualConsole.props.maintenanceMode.user !== id_user + ) { + visualConsole.enableMaintenanceMode(); + } else { + visualConsole.disableMaintenanceMode(); + } + // Emit the VC update event. if (onUpdate) onUpdate(prevProps, visualConsole.props); } catch (ignored) {} // eslint-disable-line no-empty @@ -159,6 +168,7 @@ function createVisualConsole( // Initialize the Visual Console. try { visualConsole = new VisualConsole(container, props, items); + // VC Item clicked. visualConsole.onItemClick(function(e) { var data = e.item.props || {}; @@ -357,7 +367,6 @@ function createVisualConsole( }) .init(); }); - // VC Item resized. visualConsole.onItemResized(function(e) { var item = e.item; @@ -473,6 +482,11 @@ function createVisualConsole( updateVisualConsole(visualConsole.props.id, interval, null, dimensions); } }, + forceUpdateVisualConsole: function() { + asyncTaskManager.cancel("visual-console"); + asyncTaskManager.cancel("visual-console-start"); + updateVisualConsole(visualConsole.props.id); + }, createItem: function(typeString) { var type; switch (typeString) { diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 7beac92ab9..8c0a60b47c 100644 Binary files a/pandora_console/include/languages/ja.mo and b/pandora_console/include/languages/ja.mo differ diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 78d73a4e9f..163f9bcefe 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-05-27 13:07+0200\n" -"PO-Revision-Date: 2022-06-24 13:47+0900\n" +"POT-Creation-Date: 2022-09-28 08:55+0200\n" +"PO-Revision-Date: 2022-11-02 12:13+0900\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -16,113 +16,113 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2021-09-10 08:44+0000\n" -"X-Generator: Poedit 3.1\n" +"X-Generator: Poedit 3.2\n" -#: ../../views/calendar/edit.php:40 -msgid "Calendars Edit" -msgstr "カレンダー編集" +#: ../../views/calendar/list.php:39 +msgid "Calendars" +msgstr "カレンダー" +#: ../../views/calendar/list.php:57 ../../views/calendar/special_days_edit.php:58 #: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59 -#: ../../views/calendar/special_days_edit.php:58 ../../views/calendar/list.php:57 -#: ../../operation/users/user_edit.php:244 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 -#: ../../enterprise/include/lib/Policy/Queue.php:162 -#: ../../enterprise/include/lib/Policy/Queue.php:163 -#: ../../enterprise/include/lib/Policy/Queue.php:406 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/local_components.php:256 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/modules/local_components.php:256 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 +#: ../../enterprise/godmode/agentes/collections.data.php:398 +#: ../../enterprise/godmode/agentes/collections.editor.php:112 +#: ../../enterprise/godmode/agentes/collections.php:95 +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../enterprise/godmode/policies/policy_alerts.php:57 +#: ../../enterprise/godmode/policies/configure_policy.php:76 +#: ../../enterprise/godmode/policies/policy_modules.php:469 +#: ../../enterprise/godmode/policies/policy_queue.php:211 +#: ../../enterprise/godmode/policies/policies.php:265 +#: ../../enterprise/godmode/policies/policy_linking.php:110 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 +#: ../../enterprise/godmode/policies/policy_collections.php:43 +#: ../../enterprise/godmode/policies/policy_agents.php:319 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:122 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:316 -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.data.php:398 -#: ../../enterprise/godmode/agentes/collections.php:95 -#: ../../enterprise/godmode/policies/policy_agents.php:319 -#: ../../enterprise/godmode/policies/policy_queue.php:211 -#: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_modules.php:469 -#: ../../enterprise/godmode/policies/policies.php:261 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 -#: ../../enterprise/godmode/policies/configure_policy.php:74 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 -#: ../../enterprise/godmode/policies/policy_alerts.php:57 -#: ../../enterprise/godmode/policies/policy_collections.php:43 -#: ../../enterprise/godmode/policies/policy_plugins.php:31 -#: ../../extensions/resource_registration.php:1107 ../../godmode/setup/os.list.php:49 -#: ../../godmode/servers/plugin_registration.php:79 -#: ../../godmode/modules/manage_network_components.php:306 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 +#: ../../enterprise/include/lib/Policy/Queue.php:162 +#: ../../enterprise/include/lib/Policy/Queue.php:163 +#: ../../enterprise/include/lib/Policy/Queue.php:406 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:286 -#: ../../godmode/category/category.php:101 ../../godmode/tag/tag.php:188 -#: ../../godmode/massive/massive_operations.php:410 -#: ../../godmode/massive/massive_add_profiles.php:45 -#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../godmode/modules/manage_network_components.php:306 +#: ../../godmode/groups/group_list.php:396 ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:425 #: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/alerts/configure_alert_template.php:412 -#: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_templates.php:261 -#: ../../godmode/alerts/alert_commands.php:636 +#: ../../godmode/massive/massive_operations.php:388 +#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../godmode/massive/massive_add_profiles.php:45 #: ../../godmode/alerts/configure_alert_command.php:189 +#: ../../godmode/alerts/alert_actions.php:215 +#: ../../godmode/alerts/alert_commands.php:722 +#: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/configure_alert_action.php:113 -#: ../../godmode/users/user_list.php:425 ../../godmode/users/profile_list.php:108 -#: ../../godmode/groups/modu_group_list.php:85 ../../godmode/groups/group_list.php:396 +#: ../../godmode/alerts/configure_alert_template.php:412 +#: ../../godmode/setup/os.list.php:49 ../../godmode/servers/plugin_registration.php:79 +#: ../../godmode/tag/tag.php:188 ../../godmode/category/category.php:101 +#: ../../operation/users/user_edit.php:247 msgid "metaconsole" msgstr "メタコンソール" +#: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:61 #: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 -#: ../../views/calendar/special_days_edit.php:61 ../../views/calendar/list.php:60 -#: ../../operation/users/user_edit.php:246 -#: ../../enterprise/operation/agentes/policy_view.php:53 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/local_components.php:258 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/modules/local_components.php:258 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/policies/policy_alerts.php:59 +#: ../../enterprise/godmode/policies/configure_policy.php:78 +#: ../../enterprise/godmode/policies/policy_modules.php:471 +#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policies.php:267 +#: ../../enterprise/godmode/policies/policy_linking.php:112 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 +#: ../../enterprise/godmode/policies/policy_collections.php:45 +#: ../../enterprise/godmode/policies/policy_agents.php:321 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:318 -#: ../../enterprise/godmode/policies/policy_agents.php:321 -#: ../../enterprise/godmode/policies/policy_queue.php:213 -#: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:471 -#: ../../enterprise/godmode/policies/policies.php:263 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:304 -#: ../../enterprise/godmode/policies/configure_policy.php:76 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 -#: ../../enterprise/godmode/policies/policy_alerts.php:59 -#: ../../enterprise/godmode/policies/policy_collections.php:45 -#: ../../enterprise/godmode/policies/policy_plugins.php:33 -#: ../../extensions/resource_registration.php:1109 ../../godmode/setup/os.list.php:51 -#: ../../godmode/modules/manage_network_components.php:308 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../extensions/resource_registration.php:1109 #: ../../godmode/modules/manage_nc_groups.php:288 -#: ../../godmode/category/category.php:103 ../../godmode/tag/tag.php:190 -#: ../../godmode/massive/massive_operations.php:412 -#: ../../godmode/massive/massive_add_profiles.php:47 -#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../godmode/modules/manage_network_components.php:308 +#: ../../godmode/groups/group_list.php:398 ../../godmode/groups/modu_group_list.php:87 +#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:427 #: ../../godmode/agentes/modificar_agente.php:119 -#: ../../godmode/alerts/configure_alert_template.php:414 -#: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_templates.php:263 -#: ../../godmode/alerts/alert_commands.php:638 +#: ../../godmode/massive/massive_operations.php:390 +#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../godmode/massive/massive_add_profiles.php:47 #: ../../godmode/alerts/configure_alert_command.php:191 +#: ../../godmode/alerts/alert_actions.php:217 +#: ../../godmode/alerts/alert_commands.php:724 +#: ../../godmode/alerts/alert_templates.php:263 #: ../../godmode/alerts/configure_alert_action.php:115 -#: ../../godmode/users/user_list.php:427 ../../godmode/users/profile_list.php:110 -#: ../../godmode/groups/modu_group_list.php:87 ../../godmode/groups/group_list.php:398 +#: ../../godmode/alerts/configure_alert_template.php:414 +#: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:190 +#: ../../godmode/category/category.php:103 ../../operation/users/user_edit.php:249 msgid "any node" msgstr "任意のノード" +#: ../../views/calendar/list.php:65 ../../views/calendar/special_days_edit.php:66 #: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67 -#: ../../views/calendar/special_days_edit.php:66 ../../views/calendar/list.php:65 #, php-format msgid "" "This node is configured with centralized mode. All alert calendar information is read " @@ -131,698 +131,749 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は読み取" "り専用です。管理するには %s に移動します。" -#: ../../views/calendar/edit.php:80 ../../views/calendar/list.php:93 -#: ../../views/dashboard/formDashboard.php:77 ../../views/dashboard/list.php:95 -#: ../../operation/search_policies.php:35 ../../operation/gis_maps/gis_map.php:102 -#: ../../operation/search_users.php:44 ../../operation/search_maps.php:28 -#: ../../operation/netflow/nf_live_view.php:362 -#: ../../operation/agentes/pandora_networkmap.php:707 -#: ../../operation/agentes/pandora_networkmap.editor.php:273 -#: ../../operation/agentes/pandora_networkmap.view.php:100 -#: ../../operation/search_helps.php:31 -#: ../../operation/incidents/configure_integriaims_incident.php:217 -#: ../../include/class/ModuleTemplates.class.php:892 -#: ../../include/class/ModuleTemplates.class.php:1050 -#: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:545 -#: ../../include/class/CalendarManager.class.php:975 -#: ../../include/class/NetworkMap.class.php:2906 -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2965 -#: ../../include/class/NetworkMap.class.php:3268 ../../include/functions_events.php:4451 -#: ../../include/functions_events.php:4540 ../../include/functions_filemanager.php:604 -#: ../../include/functions_treeview.php:78 ../../include/functions_snmp_browser.php:1662 -#: ../../include/functions_reporting_html.php:1047 -#: ../../include/functions_reporting_html.php:1055 -#: ../../include/functions_reporting_html.php:2353 -#: ../../include/functions_reporting_html.php:2690 -#: ../../include/functions_reporting_html.php:3387 -#: ../../include/functions_reporting_html.php:6101 -#: ../../enterprise/tools/ipam/ipam_excel.php:131 -#: ../../enterprise/tools/ipam/ipam_excel.php:200 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 -#: ../../enterprise/tools/ipam/ipam_list.php:576 -#: ../../enterprise/tools/ipam/ipam_editor.php:140 -#: ../../enterprise/views/ncm/snippets/edit.php:81 +#: ../../views/calendar/list.php:92 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../enterprise/tools/ipam/ipam_list.php:587 +#: ../../enterprise/tools/ipam/ipam_excel.php:130 +#: ../../enterprise/tools/ipam/ipam_excel.php:199 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 +#: ../../extensions/api_checker.php:161 ../../godmode/modules/module_list.php:61 +#: ../../godmode/groups/group_list.php:840 ../../godmode/groups/modu_group_list.php:251 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../godmode/agentes/agent_manager.php:219 +#: ../../godmode/agentes/agent_incidents.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:230 +#: ../../godmode/alerts/alert_commands.php:742 ../../godmode/setup/os.list.php:68 +#: ../../operation/incidents/list_integriaims_incidents.php:515 +msgid "ID" +msgstr "ID" + +#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:86 +#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77 #: ../../enterprise/views/ncm/snippets/list.php:70 -#: ../../enterprise/views/ncm/firmwares/edit.php:80 -#: ../../enterprise/views/ncm/firmwares/list.php:73 -#: ../../enterprise/views/ncm/vendors/edit.php:67 -#: ../../enterprise/views/ncm/vendors/list.php:70 -#: ../../enterprise/views/ncm/devices/list.php:114 -#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/snippets/edit.php:81 #: ../../enterprise/views/ncm/templates/list.php:73 -#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/devices/list.php:114 +#: ../../enterprise/views/ncm/firmwares/list.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:80 #: ../../enterprise/views/ncm/models/list.php:71 -#: ../../enterprise/views/ipam/sites/edit.php:40 -#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/vendors/list.php:70 +#: ../../enterprise/views/ncm/vendors/edit.php:67 #: ../../enterprise/views/cluster/list.php:58 -#: ../../enterprise/operation/services/services.service.php:118 -#: ../../enterprise/operation/services/services.list.php:497 -#: ../../enterprise/operation/agentes/tag_view.php:677 -#: ../../enterprise/operation/agentes/policy_view.php:163 -#: ../../enterprise/operation/agentes/policy_view.php:395 -#: ../../enterprise/operation/agentes/collection_view.php:75 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 -#: ../../enterprise/include/ajax/servers.ajax.php:100 -#: ../../enterprise/include/ajax/servers.ajax.php:158 -#: ../../enterprise/include/ajax/servers.ajax.php:284 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:393 -#: ../../enterprise/include/class/Omnishell.class.php:668 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:763 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2901 -#: ../../enterprise/include/functions_services.php:1603 -#: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1981 -#: ../../enterprise/meta/include/functions_autoprovision.php:474 -#: ../../enterprise/meta/include/functions_wizard_meta.php:466 -#: ../../enterprise/meta/include/functions_wizard_meta.php:584 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1134 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1582 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/views/ipam/sites/list.php:46 +#: ../../enterprise/views/ipam/sites/edit.php:40 #: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/include/functions_autoprovision.php:474 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:581 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1457 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1682 #: ../../enterprise/meta/agentsearch.php:327 -#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/godmode/modules/configure_local_component.php:156 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 +#: ../../enterprise/godmode/modules/local_components.php:621 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:371 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:751 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 +#: ../../enterprise/godmode/agentes/collection_manager.php:109 +#: ../../enterprise/godmode/agentes/collection_manager.php:206 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:579 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 +#: ../../enterprise/godmode/policies/configure_policy.php:102 +#: ../../enterprise/godmode/policies/policy_modules.php:1464 +#: ../../enterprise/godmode/policies/policies.php:410 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 +#: ../../enterprise/godmode/policies/policy_collections.php:169 +#: ../../enterprise/godmode/policies/policy_collections.php:263 +#: ../../enterprise/godmode/policies/policy_agents.php:847 +#: ../../enterprise/godmode/policies/policy_agents.php:1367 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 +#: ../../enterprise/godmode/services/services.service.php:579 +#: ../../enterprise/godmode/setup/setup_skins.php:87 #: ../../enterprise/godmode/setup/setup_auth.php:102 #: ../../enterprise/godmode/setup/edit_skin.php:233 -#: ../../enterprise/godmode/setup/setup_skins.php:87 -#: ../../enterprise/godmode/servers/manage_export_form.php:75 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 -#: ../../enterprise/godmode/servers/manage_export.php:137 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:156 -#: ../../enterprise/godmode/modules/local_components.php:621 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 -#: ../../enterprise/godmode/services/services.service.php:538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 #: ../../enterprise/godmode/reporting/visual_console_template.php:203 #: ../../enterprise/godmode/reporting/visual_console_template.php:270 #: ../../enterprise/godmode/reporting/mysql_builder.php:96 #: ../../enterprise/godmode/reporting/mysql_builder.php:227 #: ../../enterprise/godmode/reporting/mysql_builder.php:228 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107 -#: ../../enterprise/godmode/massive/massive_create_services.php:636 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:140 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:344 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:631 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 -#: ../../enterprise/godmode/policies/policy_modules.php:1464 -#: ../../enterprise/godmode/policies/policies.php:406 -#: ../../enterprise/godmode/policies/configure_policy.php:100 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 -#: ../../enterprise/godmode/policies/policy_collections.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:263 -#: ../../extensions/files_repo/files_repo_list.php:55 ../../godmode/setup/os.list.php:69 -#: ../../godmode/setup/setup_integria.php:337 ../../godmode/setup/setup_integria.php:458 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/servers/plugin.php:339 -#: ../../godmode/servers/plugin.php:815 ../../godmode/servers/modificar_server.php:58 -#: ../../godmode/servers/servers.build_table.php:79 -#: ../../godmode/modules/module_list.php:62 -#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1677 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/mobile/include/enterprise.class.php:86 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +#: ../../enterprise/include/ajax/servers.ajax.php:100 +#: ../../enterprise/include/ajax/servers.ajax.php:158 +#: ../../enterprise/include/ajax/servers.ajax.php:284 +#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:764 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2945 +#: ../../enterprise/include/functions_services.php:1603 +#: ../../enterprise/include/functions_ipam.php:1348 +#: ../../enterprise/include/functions_ipam.php:1987 +#: ../../enterprise/operation/agentes/policy_view.php:163 +#: ../../enterprise/operation/agentes/policy_view.php:395 +#: ../../enterprise/operation/agentes/tag_view.php:677 +#: ../../enterprise/operation/agentes/collection_view.php:75 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 +#: ../../enterprise/operation/services/services.service.php:118 +#: ../../enterprise/operation/services/massive/services.create.php:660 +#: ../../enterprise/operation/services/services.list.php:497 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 +#: ../../enterprise/tools/ipam/ipam_list.php:600 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 +#: ../../enterprise/tools/ipam/ipam_excel.php:131 +#: ../../enterprise/tools/ipam/ipam_excel.php:200 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 +#: ../../enterprise/tools/ipam/ipam_editor.php:140 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/modules/manage_nc_groups_form.php:68 #: ../../godmode/modules/manage_network_templates_form.php:168 #: ../../godmode/modules/manage_nc_groups.php:241 #: ../../godmode/modules/manage_network_components_form_common.php:46 -#: ../../godmode/modules/manage_nc_groups_form.php:68 -#: ../../godmode/category/edit_category.php:180 -#: ../../godmode/reporting/reporting_builder.main.php:89 -#: ../../godmode/reporting/reporting_builder.main.php:93 -#: ../../godmode/reporting/create_container.php:223 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1011 -#: ../../godmode/reporting/graph_builder.main.php:125 ../../godmode/tag/edit_tag.php:211 -#: ../../godmode/tag/tag.php:228 ../../godmode/events/event_responses.editor.php:86 -#: ../../godmode/events/event_responses.list.php:50 -#: ../../godmode/events/event_filter.php:136 ../../godmode/netflow/nf_edit.php:159 -#: ../../godmode/netflow/nf_edit_form.php:199 -#: ../../godmode/agentes/module_manager.php:827 +#: ../../godmode/modules/module_list.php:62 +#: ../../godmode/modules/manage_network_templates.php:246 +#: ../../godmode/groups/configure_group.php:150 ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/groups/modu_group_list.php:252 ../../godmode/users/user_list.php:480 +#: ../../godmode/agentes/planned_downtime.editor.php:820 +#: ../../godmode/agentes/planned_downtime.editor.php:1218 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 #: ../../godmode/agentes/configure_field.php:74 #: ../../godmode/agentes/module_manager_editor_common.php:215 #: ../../godmode/agentes/module_manager_editor_common.php:1212 -#: ../../godmode/agentes/planned_downtime.editor.php:546 -#: ../../godmode/agentes/planned_downtime.editor.php:914 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 -#: ../../godmode/alerts/configure_alert_template.php:1052 -#: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_templates.php:383 -#: ../../godmode/alerts/alert_commands.php:655 +#: ../../godmode/agentes/module_manager.php:834 ../../godmode/netflow/nf_edit.php:159 +#: ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:224 +#: ../../godmode/alerts/alert_actions.php:326 +#: ../../godmode/alerts/alert_commands.php:741 +#: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 -#: ../../godmode/users/user_list.php:480 ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/modu_group_list.php:252 ../../godmode/groups/group_list.php:842 -#: ../../godmode/groups/configure_modu_group.php:67 +#: ../../godmode/alerts/configure_alert_template.php:1052 +#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:69 +#: ../../godmode/setup/setup_integria.php:337 ../../godmode/setup/setup_integria.php:458 +#: ../../godmode/reporting/create_container.php:223 +#: ../../godmode/reporting/reporting_builder.item_editor.php:83 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1080 +#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:93 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_filter.php:136 +#: ../../godmode/events/event_responses.editor.php:86 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:79 +#: ../../godmode/servers/modificar_server.php:58 ../../godmode/servers/plugin.php:339 +#: ../../godmode/servers/plugin.php:815 ../../godmode/tag/tag.php:228 +#: ../../godmode/tag/edit_tag.php:211 ../../godmode/category/edit_category.php:180 +#: ../../include/functions_reporting_html.php:1052 +#: ../../include/functions_reporting_html.php:1060 +#: ../../include/functions_reporting_html.php:1715 +#: ../../include/functions_reporting_html.php:2540 +#: ../../include/functions_reporting_html.php:2899 +#: ../../include/functions_reporting_html.php:3596 +#: ../../include/functions_reporting_html.php:6285 +#: ../../include/functions_treeview.php:78 ../../include/class/NetworkMap.class.php:2906 +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2965 +#: ../../include/class/NetworkMap.class.php:3268 +#: ../../include/class/ManageNetScanScripts.class.php:403 +#: ../../include/class/ManageNetScanScripts.class.php:545 +#: ../../include/class/ModuleTemplates.class.php:892 +#: ../../include/class/ModuleTemplates.class.php:1050 +#: ../../include/class/CalendarManager.class.php:1026 +#: ../../include/functions_filemanager.php:604 +#: ../../include/functions_snmp_browser.php:1670 ../../include/functions_events.php:4073 +#: ../../include/functions_events.php:4162 ../../operation/search_users.php:44 +#: ../../operation/search_helps.php:31 +#: ../../operation/agentes/pandora_networkmap.editor.php:273 +#: ../../operation/agentes/pandora_networkmap.php:707 +#: ../../operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/netflow/nf_live_view.php:370 ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:217 +#: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 msgid "Name" msgstr "名前" -#: ../../views/calendar/edit.php:91 ../../views/calendar/special_days.php:112 -#: ../../views/calendar/special_days_edit.php:106 ../../views/calendar/list.php:94 -#: ../../views/dashboard/formDashboard.php:108 ../../views/dashboard/list.php:97 -#: ../../general/ui/agents_list.php:76 ../../operation/visual_console/view.php:351 -#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 -#: ../../operation/gis_maps/gis_map.php:103 ../../operation/search_maps.php:29 -#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52 -#: ../../operation/events/sound_events.php:109 -#: ../../operation/events/events.build_table.php:222 -#: ../../operation/events/events.php:1068 ../../operation/events/events_list.php:917 -#: ../../operation/netflow/nf_live_view.php:372 -#: ../../operation/agentes/status_monitor.php:450 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/interface_view.functions.php:37 -#: ../../operation/agentes/exportdata.php:227 -#: ../../operation/agentes/alerts_status.functions.php:89 -#: ../../operation/agentes/estado_agente.php:254 -#: ../../operation/agentes/estado_agente.php:754 -#: ../../operation/agentes/pandora_networkmap.editor.php:289 -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/estado_generalagente.php:384 -#: ../../operation/agentes/pandora_networkmap.view.php:103 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../operation/agentes/ver_agente.php:1009 ../../operation/users/user_edit.php:814 -#: ../../operation/incidents/configure_integriaims_incident.php:266 -#: ../../operation/incidents/list_integriaims_incidents.php:331 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 -#: ../../include/functions_cron.php:468 ../../include/functions_gis.php:228 -#: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1397 -#: ../../include/ajax/heatmap.ajax.php:110 ../../include/ajax/heatmap.ajax.php:344 -#: ../../include/ajax/custom_fields.php:628 ../../include/ajax/custom_fields.php:677 -#: ../../include/class/ModuleTemplates.class.php:780 -#: ../../include/class/AgentsAlerts.class.php:773 -#: ../../include/class/CredentialStore.class.php:802 -#: ../../include/class/CredentialStore.class.php:833 -#: ../../include/class/CredentialStore.class.php:923 -#: ../../include/class/CustomNetScan.class.php:500 -#: ../../include/class/CalendarManager.class.php:976 -#: ../../include/class/NetworkMap.class.php:2841 -#: ../../include/class/NetworkMap.class.php:2890 -#: ../../include/class/NetworkMap.class.php:3206 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 -#: ../../include/functions_events.php:195 ../../include/functions_events.php:248 -#: ../../include/functions_events.php:5108 ../../include/functions_events.php:6707 -#: ../../include/functions_container.php:149 ../../include/functions_graph.php:5218 -#: ../../include/functions_snmp_browser.php:1665 -#: ../../include/functions_visual_map.php:4229 ../../include/functions_profile.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 -#: ../../include/functions_html.php:1521 ../../include/functions_reporting_html.php:1500 -#: ../../include/functions_reporting_html.php:2077 -#: ../../include/functions_reporting_html.php:3338 -#: ../../include/functions_reporting_html.php:3391 -#: ../../include/functions_reporting_html.php:6189 -#: ../../enterprise/tools/ipam/ipam_editor.php:293 +#: ../../views/calendar/list.php:94 ../../views/calendar/special_days_edit.php:106 +#: ../../views/calendar/edit.php:97 ../../views/calendar/special_days.php:112 +#: ../../views/dashboard/list.php:97 ../../views/dashboard/formDashboard.php:108 #: ../../enterprise/views/ncm/devices/list.php:116 #: ../../enterprise/views/cluster/list.php:60 -#: ../../enterprise/operation/log/log_viewer.php:533 -#: ../../enterprise/operation/services/services.service.php:121 -#: ../../enterprise/operation/services/services.list.php:260 -#: ../../enterprise/operation/services/services.list.php:502 -#: ../../enterprise/operation/services/services.table_services.php:182 -#: ../../enterprise/operation/agentes/tag_view.php:108 -#: ../../enterprise/operation/agentes/tag_view.php:604 -#: ../../enterprise/operation/agentes/transactional_map.php:208 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 -#: ../../enterprise/operation/agentes/ver_agente.php:52 -#: ../../enterprise/operation/agentes/ver_agente.php:73 -#: ../../enterprise/operation/inventory/inventory.php:322 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../enterprise/include/functions_reporting_csv.php:2738 -#: ../../enterprise/include/ajax/ipam.ajax.php:487 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 -#: ../../enterprise/include/class/Aws.cloud.php:578 -#: ../../enterprise/include/class/Aws.cloud.php:1233 -#: ../../enterprise/include/class/Aws.S3.php:434 -#: ../../enterprise/include/class/MySQL.app.php:474 -#: ../../enterprise/include/class/Oracle.app.php:476 -#: ../../enterprise/include/class/DB2.app.php:469 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Omnishell.class.php:399 -#: ../../enterprise/include/class/Omnishell.class.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:678 -#: ../../enterprise/include/class/VMware.app.php:763 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:775 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2797 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 -#: ../../enterprise/include/class/Azure.cloud.php:835 -#: ../../enterprise/include/class/Google.cloud.php:785 -#: ../../enterprise/include/functions_tasklist.php:157 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 -#: ../../enterprise/include/functions_events.php:97 -#: ../../enterprise/meta/include/functions_events_meta.php:74 -#: ../../enterprise/meta/include/functions_wizard_meta.php:194 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1808 +#: ../../enterprise/meta/advanced/cron_main.php:428 +#: ../../enterprise/meta/advanced/collections.php:366 #: ../../enterprise/meta/monitoring/custom_fields_view.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 -#: ../../enterprise/meta/advanced/cron_main.php:422 -#: ../../enterprise/meta/advanced/collections.php:314 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:273 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:435 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:703 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:782 +#: ../../enterprise/meta/include/functions_wizard_meta.php:191 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1805 +#: ../../enterprise/meta/include/functions_events_meta.php:74 #: ../../enterprise/meta/agentsearch.php:138 ../../enterprise/meta/agentsearch.php:329 #: ../../enterprise/godmode/modules/configure_local_component.php:274 #: ../../enterprise/godmode/modules/local_components.php:498 #: ../../enterprise/godmode/modules/local_components.php:623 -#: ../../enterprise/godmode/services/services.service.php:561 -#: ../../enterprise/godmode/reporting/visual_console_template.php:218 -#: ../../enterprise/godmode/reporting/visual_console_template.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 -#: ../../enterprise/godmode/reporting/graph_template_list.php:205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 -#: ../../enterprise/godmode/massive/massive_create_services.php:658 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 -#: ../../enterprise/godmode/agentes/collections.php:329 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 +#: ../../enterprise/godmode/agentes/collections.php:381 +#: ../../enterprise/godmode/policies/configure_policy.php:105 +#: ../../enterprise/godmode/policies/policies.php:312 +#: ../../enterprise/godmode/policies/policies.php:412 #: ../../enterprise/godmode/policies/policy_agents.php:798 #: ../../enterprise/godmode/policies/policy_agents.php:855 -#: ../../enterprise/godmode/policies/policies.php:308 -#: ../../enterprise/godmode/policies/policies.php:408 -#: ../../enterprise/godmode/policies/configure_policy.php:103 -#: ../../extensions/agents_modules.php:404 ../../mobile/operation/modules.php:171 -#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 -#: ../../mobile/operation/modules.php:267 ../../mobile/operation/visualmaps.php:113 -#: ../../mobile/operation/visualmaps.php:118 ../../mobile/operation/alerts.php:113 -#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 -#: ../../mobile/operation/alerts.php:232 ../../mobile/operation/events.php:385 -#: ../../mobile/operation/events.php:390 ../../mobile/operation/events.php:544 -#: ../../mobile/operation/events.php:663 ../../mobile/operation/events.php:664 -#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 -#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 -#: ../../mobile/operation/agents.php:405 ../../godmode/setup/setup_integria.php:361 -#: ../../godmode/setup/setup_integria.php:483 ../../godmode/setup/gis_step_2.php:216 -#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69 -#: ../../godmode/modules/manage_network_components.php:618 -#: ../../godmode/modules/manage_network_components.php:752 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 +#: ../../enterprise/godmode/services/services.service.php:602 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 +#: ../../enterprise/godmode/reporting/graph_template_list.php:205 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 +#: ../../enterprise/godmode/reporting/visual_console_template.php:218 +#: ../../enterprise/godmode/reporting/visual_console_template.php:271 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 +#: ../../enterprise/include/functions_tasklist.php:177 +#: ../../enterprise/include/ajax/ipam.ajax.php:487 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:2605 +#: ../../enterprise/include/functions_reporting_csv.php:2784 +#: ../../enterprise/include/class/Azure.cloud.php:835 +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/DB2.app.php:469 +#: ../../enterprise/include/class/Aws.S3.php:434 +#: ../../enterprise/include/class/SAP.app.php:644 +#: ../../enterprise/include/class/Aws.cloud.php:578 +#: ../../enterprise/include/class/Aws.cloud.php:1233 +#: ../../enterprise/include/class/MySQL.app.php:474 +#: ../../enterprise/include/class/Google.cloud.php:785 +#: ../../enterprise/include/class/Oracle.app.php:476 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:776 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2841 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 +#: ../../enterprise/include/functions_events.php:30 +#: ../../enterprise/operation/agentes/transactional_map.php:208 +#: ../../enterprise/operation/agentes/tag_view.php:108 +#: ../../enterprise/operation/agentes/tag_view.php:604 +#: ../../enterprise/operation/agentes/ver_agente.php:52 +#: ../../enterprise/operation/agentes/ver_agente.php:73 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 +#: ../../enterprise/operation/log/log_viewer.php:533 +#: ../../enterprise/operation/inventory/inventory.php:336 +#: ../../enterprise/operation/services/services.service.php:121 +#: ../../enterprise/operation/services/massive/services.create.php:682 +#: ../../enterprise/operation/services/services.list.php:260 +#: ../../enterprise/operation/services/services.list.php:502 +#: ../../enterprise/operation/services/services.table_services.php:182 +#: ../../enterprise/tools/ipam/ipam_editor.php:293 +#: ../../extensions/agents_modules.php:404 #: ../../godmode/modules/manage_network_templates_form.php:235 #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 +#: ../../godmode/modules/manage_network_components.php:618 +#: ../../godmode/modules/manage_network_components.php:752 +#: ../../godmode/users/user_list.php:390 ../../godmode/agentes/configurar_agente.php:498 +#: ../../godmode/agentes/modificar_agente.php:289 +#: ../../godmode/agentes/modificar_agente.php:651 +#: ../../godmode/agentes/planned_downtime.list.php:621 +#: ../../godmode/agentes/planned_downtime.editor.php:830 +#: ../../godmode/agentes/planned_downtime.editor.php:1219 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 +#: ../../godmode/agentes/agent_incidents.php:92 ../../godmode/netflow/nf_edit.php:160 +#: ../../godmode/netflow/nf_edit_form.php:203 +#: ../../godmode/snmpconsole/snmp_alert.php:802 #: ../../godmode/gis_maps/configure_gis_map.php:498 #: ../../godmode/gis_maps/configure_gis_map.php:635 -#: ../../godmode/reporting/reporting_builder.main.php:101 -#: ../../godmode/reporting/map_builder.php:356 -#: ../../godmode/reporting/map_builder.php:385 ../../godmode/reporting/graphs.php:231 -#: ../../godmode/reporting/graphs.php:313 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:253 +#: ../../godmode/massive/massive_standby_alerts.php:185 +#: ../../godmode/massive/massive_delete_action_alerts.php:209 +#: ../../godmode/massive/massive_add_alerts.php:211 +#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/massive/massive_edit_agents.php:694 +#: ../../godmode/massive/massive_delete_profiles.php:152 +#: ../../godmode/massive/massive_delete_alerts.php:289 +#: ../../godmode/massive/massive_add_action_alerts.php:197 +#: ../../godmode/massive/massive_add_profiles.php:203 +#: ../../godmode/alerts/configure_alert_command.php:265 +#: ../../godmode/alerts/alert_actions.php:260 ../../godmode/alerts/alert_actions.php:328 +#: ../../godmode/alerts/alert_list.list.php:157 +#: ../../godmode/alerts/alert_commands.php:743 +#: ../../godmode/alerts/alert_templates.php:385 +#: ../../godmode/alerts/configure_alert_action.php:212 +#: ../../godmode/alerts/configure_alert_template.php:1074 +#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69 +#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/setup_integria.php:361 +#: ../../godmode/setup/setup_integria.php:483 #: ../../godmode/reporting/visual_console_builder.data.php:136 #: ../../godmode/reporting/create_container.php:244 #: ../../godmode/reporting/create_container.php:534 #: ../../godmode/reporting/create_container.php:625 +#: ../../godmode/reporting/map_builder.php:356 +#: ../../godmode/reporting/map_builder.php:385 ../../godmode/reporting/graphs.php:231 +#: ../../godmode/reporting/graphs.php:313 #: ../../godmode/reporting/visual_console_favorite.php:161 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:313 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 -#: ../../godmode/reporting/reporting_builder.item_editor.php:198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:821 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1459 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3280 -#: ../../godmode/reporting/reporting_builder.php:757 -#: ../../godmode/reporting/reporting_builder.php:948 +#: ../../godmode/reporting/reporting_builder.item_editor.php:87 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:882 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1574 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3429 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:314 +#: ../../godmode/reporting/reporting_builder.main.php:101 +#: ../../godmode/reporting/reporting_builder.php:758 +#: ../../godmode/reporting/reporting_builder.php:946 #: ../../godmode/reporting/graph_builder.main.php:143 -#: ../../godmode/snmpconsole/snmp_alert.php:754 -#: ../../godmode/events/event_edit_filter.php:299 +#: ../../godmode/events/event_filter.php:137 #: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/events/event_edit_filter.php:304 #: ../../godmode/events/event_responses.list.php:52 -#: ../../godmode/events/event_filter.php:137 ../../godmode/netflow/nf_edit.php:160 -#: ../../godmode/netflow/nf_edit_form.php:203 -#: ../../godmode/massive/massive_add_alerts.php:211 -#: ../../godmode/massive/massive_copy_modules.php:100 -#: ../../godmode/massive/massive_copy_modules.php:253 -#: ../../godmode/massive/massive_add_profiles.php:203 -#: ../../godmode/massive/massive_standby_alerts.php:185 -#: ../../godmode/massive/massive_add_action_alerts.php:197 -#: ../../godmode/massive/massive_edit_agents.php:508 -#: ../../godmode/massive/massive_edit_agents.php:685 -#: ../../godmode/massive/massive_delete_profiles.php:152 -#: ../../godmode/massive/massive_delete_action_alerts.php:209 -#: ../../godmode/massive/massive_delete_alerts.php:284 -#: ../../godmode/massive/massive_delete_agents.php:187 -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 -#: ../../godmode/wizards/HostDevices.class.php:932 -#: ../../godmode/agentes/configurar_agente.php:494 -#: ../../godmode/agentes/planned_downtime.editor.php:556 -#: ../../godmode/agentes/planned_downtime.editor.php:915 -#: ../../godmode/agentes/planned_downtime.list.php:612 -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 -#: ../../godmode/agentes/modificar_agente.php:289 -#: ../../godmode/agentes/modificar_agente.php:651 -#: ../../godmode/alerts/configure_alert_template.php:1074 -#: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_actions.php:260 ../../godmode/alerts/alert_actions.php:328 -#: ../../godmode/alerts/alert_templates.php:384 -#: ../../godmode/alerts/alert_commands.php:657 -#: ../../godmode/alerts/configure_alert_command.php:265 -#: ../../godmode/alerts/configure_alert_action.php:212 -#: ../../godmode/users/user_list.php:390 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/HostDevices.class.php:932 ../../mobile/operation/agents.php:95 +#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234 +#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405 +#: ../../mobile/operation/modules.php:171 ../../mobile/operation/modules.php:176 +#: ../../mobile/operation/modules.php:266 ../../mobile/operation/modules.php:267 +#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118 +#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232 +#: ../../mobile/operation/visualmaps.php:113 ../../mobile/operation/visualmaps.php:118 +#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 +#: ../../mobile/operation/events.php:955 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:594 +#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_reporting_html.php:1569 +#: ../../include/functions_reporting_html.php:2257 +#: ../../include/functions_reporting_html.php:3547 +#: ../../include/functions_reporting_html.php:3600 +#: ../../include/functions_reporting_html.php:6373 ../../include/functions_cron.php:494 +#: ../../include/ajax/heatmap.ajax.php:110 ../../include/ajax/heatmap.ajax.php:344 +#: ../../include/ajax/custom_fields.php:628 ../../include/ajax/custom_fields.php:677 +#: ../../include/functions_graph.php:5159 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:214 ../../include/functions_visual_map.php:4262 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 +#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/functions_html.php:1531 +#: ../../include/functions_massive_operations.php:126 +#: ../../include/class/NetworkMap.class.php:2841 +#: ../../include/class/NetworkMap.class.php:2890 +#: ../../include/class/NetworkMap.class.php:3206 +#: ../../include/class/AgentsAlerts.class.php:761 +#: ../../include/class/CredentialStore.class.php:802 +#: ../../include/class/CredentialStore.class.php:833 +#: ../../include/class/CredentialStore.class.php:923 +#: ../../include/class/CustomNetScan.class.php:500 +#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/class/CalendarManager.class.php:1027 +#: ../../include/functions_container.php:149 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 +#: ../../include/functions_snmp_browser.php:1673 ../../include/functions_events.php:203 +#: ../../include/functions_events.php:256 ../../include/functions_events.php:4717 +#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117 +#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52 +#: ../../operation/users/user_edit.php:841 ../../operation/visual_console/view.php:351 +#: ../../operation/agentes/estado_agente.php:254 +#: ../../operation/agentes/estado_agente.php:754 +#: ../../operation/agentes/pandora_networkmap.editor.php:289 +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/interface_view.functions.php:37 +#: ../../operation/agentes/exportdata.php:227 +#: ../../operation/agentes/status_monitor.php:450 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/pandora_networkmap.view.php:103 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/ver_agente.php:1018 +#: ../../operation/agentes/estado_generalagente.php:403 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/netflow/nf_live_view.php:380 ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/configure_integriaims_incident.php:266 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 +#: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/events/events.php:1579 ../../operation/search_maps.php:29 +#: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "グループ" -#: ../../views/calendar/edit.php:103 ../../views/calendar/special_days_edit.php:138 -#: ../../views/calendar/list.php:95 ../../operation/search_reports.php:43 -#: ../../operation/search_reports.php:59 ../../operation/search_policies.php:36 -#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 -#: ../../operation/search_users.php:48 ../../operation/reporting/graph_viewer.php:525 -#: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/search_graphs.php:31 ../../operation/search_agents.php:43 -#: ../../operation/search_agents.php:49 ../../operation/agentes/custom_fields.php:69 -#: ../../operation/agentes/estado_agente.php:742 -#: ../../operation/agentes/pandora_networkmap.editor.php:321 -#: ../../operation/agentes/estado_generalagente.php:239 -#: ../../operation/agentes/pandora_networkmap.view.php:109 -#: ../../operation/agentes/gis_view.php:222 -#: ../../operation/incidents/configure_integriaims_incident.php:342 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 -#: ../../include/ajax/module.php:979 ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:232 ../../include/ajax/heatmap.ajax.php:271 -#: ../../include/ajax/heatmap.ajax.php:331 -#: ../../include/class/ModuleTemplates.class.php:893 -#: ../../include/class/ModuleTemplates.class.php:1062 -#: ../../include/class/ModuleTemplates.class.php:1210 -#: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:558 -#: ../../include/class/ManageNetScanScripts.class.php:607 -#: ../../include/class/AgentWizard.class.php:1183 -#: ../../include/class/AgentWizard.class.php:4029 -#: ../../include/class/ConfigPEN.class.php:448 -#: ../../include/class/ConfigPEN.class.php:599 ../../include/functions_events.php:3854 -#: ../../include/functions_treeview.php:127 ../../include/functions_treeview.php:652 -#: ../../include/functions_container.php:147 -#: ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1682 -#: ../../include/functions_reporting_html.php:155 -#: ../../include/functions_reporting_html.php:1504 -#: ../../include/functions_reporting_html.php:3341 -#: ../../include/functions_reporting_html.php:3392 -#: ../../include/functions_reporting_html.php:5155 -#: ../../include/functions_reporting_html.php:6102 +#: ../../views/calendar/list.php:95 ../../views/calendar/special_days_edit.php:138 +#: ../../views/calendar/edit.php:109 ../../enterprise/views/ncm/devices/list.php:115 +#: ../../enterprise/views/cluster/list.php:59 +#: ../../enterprise/views/cluster/view.php:286 +#: ../../enterprise/views/ipam/sites/list.php:47 +#: ../../enterprise/views/ipam/sites/edit.php:51 +#: ../../enterprise/meta/advanced/collections.php:389 +#: ../../enterprise/meta/include/functions_autoprovision.php:475 +#: ../../enterprise/meta/include/functions_wizard_meta.php:196 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:586 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1141 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1461 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1686 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1809 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:135 ../../enterprise/meta/agentsearch.php:328 +#: ../../enterprise/godmode/modules/configure_local_component.php:477 +#: ../../enterprise/godmode/modules/configure_local_component.php:636 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 +#: ../../enterprise/godmode/agentes/collection_manager.php:111 +#: ../../enterprise/godmode/agentes/collection_manager.php:208 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 +#: ../../enterprise/godmode/agentes/collections.php:382 +#: ../../enterprise/godmode/policies/configure_policy.php:121 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 +#: ../../enterprise/godmode/policies/policy_collections.php:171 +#: ../../enterprise/godmode/policies/policy_collections.php:265 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:388 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 +#: ../../enterprise/godmode/services/services.service.php:591 +#: ../../enterprise/godmode/services/services.elements.php:103 +#: ../../enterprise/godmode/setup/setup_skins.php:127 +#: ../../enterprise/godmode/setup/edit_skin.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 +#: ../../enterprise/godmode/reporting/graph_template_list.php:204 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1694 +#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/include/functions_cron.php:282 +#: ../../enterprise/include/ajax/ipam.ajax.php:371 +#: ../../enterprise/include/ajax/ipam.ajax.php:615 +#: ../../enterprise/include/functions_reporting_pdf.php:1840 +#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../enterprise/include/functions_reporting_csv.php:489 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:711 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:754 +#: ../../enterprise/include/functions_reporting_csv.php:756 +#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/include/functions_reporting_csv.php:843 +#: ../../enterprise/include/functions_reporting_csv.php:845 +#: ../../enterprise/include/functions_reporting_csv.php:872 +#: ../../enterprise/include/functions_reporting_csv.php:874 +#: ../../enterprise/include/functions_reporting_csv.php:911 +#: ../../enterprise/include/functions_reporting_csv.php:913 +#: ../../enterprise/include/functions_reporting_csv.php:955 +#: ../../enterprise/include/functions_reporting_csv.php:957 +#: ../../enterprise/include/functions_reporting_csv.php:987 +#: ../../enterprise/include/functions_reporting_csv.php:989 +#: ../../enterprise/include/functions_reporting_csv.php:1024 +#: ../../enterprise/include/functions_reporting_csv.php:1026 +#: ../../enterprise/include/functions_reporting_csv.php:1047 +#: ../../enterprise/include/functions_reporting_csv.php:1049 +#: ../../enterprise/include/functions_reporting_csv.php:1138 +#: ../../enterprise/include/functions_reporting_csv.php:1140 +#: ../../enterprise/include/functions_reporting_csv.php:1199 +#: ../../enterprise/include/functions_reporting_csv.php:1201 +#: ../../enterprise/include/functions_reporting_csv.php:1225 +#: ../../enterprise/include/functions_reporting_csv.php:1227 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1256 +#: ../../enterprise/include/functions_reporting_csv.php:1258 +#: ../../enterprise/include/functions_reporting_csv.php:1261 +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1313 +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1366 +#: ../../enterprise/include/functions_reporting_csv.php:1368 +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1417 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1470 +#: ../../enterprise/include/functions_reporting_csv.php:1472 +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1499 +#: ../../enterprise/include/functions_reporting_csv.php:1501 +#: ../../enterprise/include/functions_reporting_csv.php:1536 +#: ../../enterprise/include/functions_reporting_csv.php:1538 +#: ../../enterprise/include/functions_reporting_csv.php:1660 +#: ../../enterprise/include/functions_reporting_csv.php:1776 +#: ../../enterprise/include/functions_reporting_csv.php:1922 +#: ../../enterprise/include/functions_reporting_csv.php:1924 +#: ../../enterprise/include/functions_reporting_csv.php:1972 +#: ../../enterprise/include/functions_reporting_csv.php:1974 +#: ../../enterprise/include/functions_reporting_csv.php:2016 +#: ../../enterprise/include/functions_reporting_csv.php:2084 +#: ../../enterprise/include/functions_reporting_csv.php:2223 +#: ../../enterprise/include/functions_reporting_csv.php:2265 +#: ../../enterprise/include/functions_reporting_csv.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:2322 +#: ../../enterprise/include/functions_reporting_csv.php:2324 +#: ../../enterprise/include/functions_reporting_csv.php:2353 +#: ../../enterprise/include/functions_reporting_csv.php:2355 +#: ../../enterprise/include/functions_reporting_csv.php:2389 +#: ../../enterprise/include/functions_reporting_csv.php:2391 +#: ../../enterprise/include/functions_reporting_csv.php:2442 +#: ../../enterprise/include/functions_reporting_csv.php:2444 +#: ../../enterprise/include/functions_reporting_csv.php:2464 +#: ../../enterprise/include/functions_reporting_csv.php:2466 +#: ../../enterprise/include/functions_reporting_csv.php:2505 +#: ../../enterprise/include/functions_reporting_csv.php:2507 +#: ../../enterprise/include/functions_reporting_csv.php:2559 +#: ../../enterprise/include/functions_reporting_csv.php:2561 +#: ../../enterprise/include/functions_reporting_csv.php:2588 +#: ../../enterprise/include/functions_reporting_csv.php:2590 +#: ../../enterprise/include/functions_reporting_csv.php:2664 +#: ../../enterprise/include/functions_reporting_csv.php:2666 +#: ../../enterprise/include/functions_reporting_csv.php:2715 +#: ../../enterprise/include/functions_reporting_csv.php:2717 +#: ../../enterprise/include/functions_reporting_csv.php:2763 +#: ../../enterprise/include/functions_reporting_csv.php:2769 +#: ../../enterprise/include/functions_reporting_csv.php:2841 +#: ../../enterprise/include/functions_reporting_csv.php:2843 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:796 +#: ../../enterprise/include/class/ManageBackups.class.php:162 +#: ../../enterprise/include/functions_services.php:1604 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 +#: ../../enterprise/include/functions_ipam.php:1374 +#: ../../enterprise/include/functions_ipam.php:1988 +#: ../../enterprise/operation/agentes/policy_view.php:68 +#: ../../enterprise/operation/agentes/transactional_map.php:207 +#: ../../enterprise/operation/agentes/tag_view.php:600 +#: ../../enterprise/operation/agentes/ver_agente.php:60 +#: ../../enterprise/operation/agentes/collection_view.php:77 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 +#: ../../enterprise/operation/services/services.service.php:119 +#: ../../enterprise/operation/services/massive/services.create.php:671 +#: ../../enterprise/operation/services/services.list.php:500 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 +#: ../../enterprise/tools/ipam/ipam_list.php:606 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 #: ../../enterprise/tools/ipam/ipam_excel.php:132 #: ../../enterprise/tools/ipam/ipam_excel.php:201 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 -#: ../../enterprise/tools/ipam/ipam_list.php:582 #: ../../enterprise/tools/ipam/ipam_editor.php:177 -#: ../../enterprise/views/ncm/devices/list.php:115 -#: ../../enterprise/views/ipam/sites/edit.php:51 -#: ../../enterprise/views/ipam/sites/list.php:47 -#: ../../enterprise/views/cluster/view.php:286 -#: ../../enterprise/views/cluster/list.php:59 -#: ../../enterprise/operation/services/services.service.php:119 -#: ../../enterprise/operation/services/services.list.php:500 -#: ../../enterprise/operation/agentes/tag_view.php:600 -#: ../../enterprise/operation/agentes/policy_view.php:68 -#: ../../enterprise/operation/agentes/collection_view.php:77 -#: ../../enterprise/operation/agentes/transactional_map.php:207 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 -#: ../../enterprise/operation/agentes/ver_agente.php:60 -#: ../../enterprise/include/functions_cron.php:282 -#: ../../enterprise/include/functions_reporting_csv.php:482 -#: ../../enterprise/include/functions_reporting_csv.php:485 -#: ../../enterprise/include/functions_reporting_csv.php:705 -#: ../../enterprise/include/functions_reporting_csv.php:707 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:797 -#: ../../enterprise/include/functions_reporting_csv.php:799 -#: ../../enterprise/include/functions_reporting_csv.php:826 -#: ../../enterprise/include/functions_reporting_csv.php:828 -#: ../../enterprise/include/functions_reporting_csv.php:865 -#: ../../enterprise/include/functions_reporting_csv.php:867 -#: ../../enterprise/include/functions_reporting_csv.php:909 -#: ../../enterprise/include/functions_reporting_csv.php:911 -#: ../../enterprise/include/functions_reporting_csv.php:941 -#: ../../enterprise/include/functions_reporting_csv.php:943 -#: ../../enterprise/include/functions_reporting_csv.php:978 -#: ../../enterprise/include/functions_reporting_csv.php:980 -#: ../../enterprise/include/functions_reporting_csv.php:1001 -#: ../../enterprise/include/functions_reporting_csv.php:1003 -#: ../../enterprise/include/functions_reporting_csv.php:1092 -#: ../../enterprise/include/functions_reporting_csv.php:1094 -#: ../../enterprise/include/functions_reporting_csv.php:1153 -#: ../../enterprise/include/functions_reporting_csv.php:1155 -#: ../../enterprise/include/functions_reporting_csv.php:1179 -#: ../../enterprise/include/functions_reporting_csv.php:1181 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1210 -#: ../../enterprise/include/functions_reporting_csv.php:1212 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1265 -#: ../../enterprise/include/functions_reporting_csv.php:1267 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1320 -#: ../../enterprise/include/functions_reporting_csv.php:1322 -#: ../../enterprise/include/functions_reporting_csv.php:1369 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1424 -#: ../../enterprise/include/functions_reporting_csv.php:1426 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1453 -#: ../../enterprise/include/functions_reporting_csv.php:1455 -#: ../../enterprise/include/functions_reporting_csv.php:1490 -#: ../../enterprise/include/functions_reporting_csv.php:1492 -#: ../../enterprise/include/functions_reporting_csv.php:1614 -#: ../../enterprise/include/functions_reporting_csv.php:1730 -#: ../../enterprise/include/functions_reporting_csv.php:1876 -#: ../../enterprise/include/functions_reporting_csv.php:1878 -#: ../../enterprise/include/functions_reporting_csv.php:1926 -#: ../../enterprise/include/functions_reporting_csv.php:1928 -#: ../../enterprise/include/functions_reporting_csv.php:1970 -#: ../../enterprise/include/functions_reporting_csv.php:2038 -#: ../../enterprise/include/functions_reporting_csv.php:2177 -#: ../../enterprise/include/functions_reporting_csv.php:2219 -#: ../../enterprise/include/functions_reporting_csv.php:2223 -#: ../../enterprise/include/functions_reporting_csv.php:2276 -#: ../../enterprise/include/functions_reporting_csv.php:2278 -#: ../../enterprise/include/functions_reporting_csv.php:2307 -#: ../../enterprise/include/functions_reporting_csv.php:2309 -#: ../../enterprise/include/functions_reporting_csv.php:2343 -#: ../../enterprise/include/functions_reporting_csv.php:2345 -#: ../../enterprise/include/functions_reporting_csv.php:2396 -#: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../enterprise/include/functions_reporting_csv.php:2418 -#: ../../enterprise/include/functions_reporting_csv.php:2420 -#: ../../enterprise/include/functions_reporting_csv.php:2459 -#: ../../enterprise/include/functions_reporting_csv.php:2461 -#: ../../enterprise/include/functions_reporting_csv.php:2513 -#: ../../enterprise/include/functions_reporting_csv.php:2515 -#: ../../enterprise/include/functions_reporting_csv.php:2542 -#: ../../enterprise/include/functions_reporting_csv.php:2544 -#: ../../enterprise/include/functions_reporting_csv.php:2618 -#: ../../enterprise/include/functions_reporting_csv.php:2620 -#: ../../enterprise/include/functions_reporting_csv.php:2669 -#: ../../enterprise/include/functions_reporting_csv.php:2671 -#: ../../enterprise/include/functions_reporting_csv.php:2717 -#: ../../enterprise/include/functions_reporting_csv.php:2723 -#: ../../enterprise/include/functions_reporting_csv.php:2795 -#: ../../enterprise/include/functions_reporting_csv.php:2797 -#: ../../enterprise/include/ajax/ipam.ajax.php:371 -#: ../../enterprise/include/ajax/ipam.ajax.php:615 -#: ../../enterprise/include/class/ManageBackups.class.php:162 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:795 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 -#: ../../enterprise/include/functions_services.php:1604 -#: ../../enterprise/include/functions_ipam.php:1374 -#: ../../enterprise/include/functions_ipam.php:1982 -#: ../../enterprise/include/functions_reporting_pdf.php:1817 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 -#: ../../enterprise/meta/include/functions_autoprovision.php:475 -#: ../../enterprise/meta/include/functions_wizard_meta.php:199 -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -#: ../../enterprise/meta/include/functions_wizard_meta.php:589 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1144 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1586 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1689 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1812 -#: ../../enterprise/meta/advanced/collections.php:337 -#: ../../enterprise/meta/agentsearch.php:135 ../../enterprise/meta/agentsearch.php:328 -#: ../../enterprise/mobile/include/enterprise.class.php:88 -#: ../../enterprise/godmode/setup/edit_skin.php:259 -#: ../../enterprise/godmode/setup/setup_skins.php:127 -#: ../../enterprise/godmode/modules/configure_local_component.php:477 -#: ../../enterprise/godmode/modules/configure_local_component.php:636 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 -#: ../../enterprise/godmode/services/services.elements.php:103 -#: ../../enterprise/godmode/services/services.service.php:550 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 -#: ../../enterprise/godmode/reporting/graph_template_list.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:433 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 -#: ../../enterprise/godmode/massive/massive_create_services.php:647 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:141 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:347 -#: ../../enterprise/godmode/agentes/collection_manager.php:111 -#: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 -#: ../../enterprise/godmode/agentes/collections.php:330 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 -#: ../../enterprise/godmode/policies/configure_policy.php:119 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 -#: ../../enterprise/godmode/policies/policy_collections.php:171 -#: ../../enterprise/godmode/policies/policy_collections.php:265 #: ../../extensions/files_repo/files_repo_form.php:83 #: ../../extensions/files_repo/files_repo_list.php:56 -#: ../../mobile/operation/tactical.php:352 ../../godmode/setup/snmp_wizard.php:41 -#: ../../godmode/setup/os.list.php:70 ../../godmode/setup/os.builder.php:37 -#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:485 -#: ../../godmode/servers/modificar_server.php:66 -#: ../../godmode/modules/module_list.php:63 -#: ../../godmode/modules/manage_network_components.php:751 -#: ../../godmode/modules/manage_network_templates.php:247 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 -#: ../../godmode/modules/manage_network_components_form_wizard.php:450 #: ../../godmode/modules/manage_network_components_form_common.php:335 -#: ../../godmode/reporting/reporting_builder.main.php:215 -#: ../../godmode/reporting/graphs.php:311 -#: ../../godmode/reporting/create_container.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:74 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1083 -#: ../../godmode/reporting/reporting_builder.php:911 -#: ../../godmode/reporting/graph_builder.main.php:180 -#: ../../godmode/snmpconsole/snmp_alert.php:724 -#: ../../godmode/snmpconsole/snmp_alert.php:1232 +#: ../../godmode/modules/manage_network_components.php:751 +#: ../../godmode/modules/manage_network_components_form_wizard.php:451 +#: ../../godmode/modules/module_list.php:63 +#: ../../godmode/modules/manage_network_templates.php:247 +#: ../../godmode/groups/configure_group.php:242 ../../godmode/groups/group_list.php:850 +#: ../../godmode/users/user_list.php:485 ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/agentes/modificar_agente.php:652 +#: ../../godmode/agentes/planned_downtime.list.php:620 +#: ../../godmode/agentes/planned_downtime.editor.php:846 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 +#: ../../godmode/agentes/agent_manager.php:479 +#: ../../godmode/agentes/module_manager_editor_common.php:1081 +#: ../../godmode/agentes/module_manager.php:869 +#: ../../godmode/netflow/nf_item_list.php:175 +#: ../../godmode/snmpconsole/snmp_alert.php:766 +#: ../../godmode/snmpconsole/snmp_alert.php:1269 #: ../../godmode/snmpconsole/snmp_filters.php:201 -#: ../../godmode/snmpconsole/snmp_filters.php:289 ../../godmode/tag/edit_tag.php:219 -#: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278 +#: ../../godmode/snmpconsole/snmp_filters.php:289 +#: ../../godmode/massive/massive_edit_plugins.php:494 +#: ../../godmode/massive/massive_edit_agents.php:774 +#: ../../godmode/massive/massive_edit_modules.php:743 +#: ../../godmode/alerts/configure_alert_command.php:283 +#: ../../godmode/alerts/alert_commands.php:744 +#: ../../godmode/alerts/alert_templates.php:46 +#: ../../godmode/alerts/configure_alert_template.php:1106 +#: ../../godmode/setup/os.builder.php:37 ../../godmode/setup/os.list.php:70 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:266 +#: ../../godmode/reporting/graphs.php:311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:74 +#: ../../godmode/reporting/reporting_builder.item_editor.php:84 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1152 +#: ../../godmode/reporting/reporting_builder.main.php:215 +#: ../../godmode/reporting/reporting_builder.php:909 +#: ../../godmode/reporting/graph_builder.main.php:180 #: ../../godmode/events/event_responses.editor.php:111 #: ../../godmode/events/event_responses.list.php:51 -#: ../../godmode/netflow/nf_item_list.php:175 -#: ../../godmode/massive/massive_edit_agents.php:760 -#: ../../godmode/massive/massive_edit_plugins.php:494 -#: ../../godmode/massive/massive_edit_modules.php:743 -#: ../../godmode/agentes/module_manager.php:862 -#: ../../godmode/agentes/module_manager_editor_common.php:1081 -#: ../../godmode/agentes/agent_manager.php:431 -#: ../../godmode/agentes/planned_downtime.editor.php:572 -#: ../../godmode/agentes/planned_downtime.list.php:611 -#: ../../godmode/agentes/agent_template.php:237 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 -#: ../../godmode/agentes/modificar_agente.php:652 -#: ../../godmode/alerts/configure_alert_template.php:1106 -#: ../../godmode/alerts/alert_templates.php:46 -#: ../../godmode/alerts/alert_commands.php:658 -#: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/users/user_list.php:485 ../../godmode/groups/configure_group.php:242 -#: ../../godmode/groups/group_list.php:850 +#: ../../godmode/servers/modificar_server.php:66 ../../godmode/servers/plugin.php:358 +#: ../../godmode/servers/plugin.php:485 ../../godmode/tag/tag.php:228 +#: ../../godmode/tag/tag.php:278 ../../godmode/tag/edit_tag.php:219 +#: ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:155 +#: ../../include/functions_reporting_html.php:1573 +#: ../../include/functions_reporting_html.php:1716 +#: ../../include/functions_reporting_html.php:3550 +#: ../../include/functions_reporting_html.php:3601 +#: ../../include/functions_reporting_html.php:5365 +#: ../../include/functions_reporting_html.php:6286 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/heatmap.ajax.php:232 +#: ../../include/ajax/heatmap.ajax.php:271 ../../include/ajax/heatmap.ajax.php:331 +#: ../../include/ajax/module.php:979 ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:652 ../../include/class/ConfigPEN.class.php:448 +#: ../../include/class/ConfigPEN.class.php:599 +#: ../../include/class/ManageNetScanScripts.class.php:404 +#: ../../include/class/ManageNetScanScripts.class.php:558 +#: ../../include/class/ManageNetScanScripts.class.php:607 +#: ../../include/class/ModuleTemplates.class.php:893 +#: ../../include/class/ModuleTemplates.class.php:1062 +#: ../../include/class/ModuleTemplates.class.php:1210 +#: ../../include/class/AgentWizard.class.php:1198 +#: ../../include/class/AgentWizard.class.php:4061 +#: ../../include/functions_container.php:147 +#: ../../include/functions_snmp_browser.php:570 +#: ../../include/functions_snmp_browser.php:1690 ../../include/functions_events.php:3512 +#: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 +#: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 +#: ../../operation/agentes/estado_agente.php:742 +#: ../../operation/agentes/pandora_networkmap.editor.php:321 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/pandora_networkmap.view.php:109 +#: ../../operation/agentes/estado_generalagente.php:237 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/configure_integriaims_incident.php:342 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 +#: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 +#: ../../operation/search_graphs.php:31 +#: ../../operation/reporting/custom_reporting.php:35 +#: ../../operation/reporting/graph_viewer.php:525 ../../operation/search_policies.php:36 msgid "Description" msgstr "説明" -#: ../../views/calendar/edit.php:120 ../../views/calendar/special_days.php:323 -#: ../../views/calendar/special_days.php:406 ../../views/calendar/special_days.php:481 -#: ../../views/calendar/special_days.php:505 -#: ../../views/calendar/special_days_edit.php:163 -#: ../../views/calendar/special_days_edit.php:206 ../../views/calendar/list.php:144 -#: ../../operation/gis_maps/gis_map.php:207 -#: ../../operation/incidents/configure_integriaims_incident.php:380 -#: ../../operation/incidents/list_integriaims_incidents.php:573 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ModuleTemplates.class.php:960 -#: ../../include/class/ModuleTemplates.class.php:1007 -#: ../../include/class/ManageNetScanScripts.class.php:763 -#: ../../include/functions_filemanager.php:813 -#: ../../include/functions_filemanager.php:874 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 -#: ../../enterprise/tools/ipam/ipam_list.php:746 -#: ../../enterprise/tools/ipam/ipam_editor.php:361 -#: ../../enterprise/views/ncm/snippets/edit.php:106 +#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 +#: ../../enterprise/views/ncm/snippets/list.php:71 +#: ../../enterprise/views/ncm/agent/details.php:92 +#: ../../enterprise/views/ncm/templates/list.php:77 +#: ../../enterprise/views/ncm/firmwares/list.php:77 +#: ../../enterprise/views/ncm/models/list.php:73 +#: ../../enterprise/views/ncm/vendors/list.php:71 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/views/ipam/sites/list.php:49 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 +#: ../../enterprise/extensions/vmware/vmware_view.php:1333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:764 +#: ../../enterprise/include/class/AgentRepository.class.php:675 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/LogSource.class.php:630 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../godmode/menu.php:555 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../include/ajax/events.php:2251 ../../include/class/ConfigPEN.class.php:601 +#: ../../include/class/CredentialStore.class.php:807 +#: ../../include/class/ExternalTools.class.php:383 +#: ../../include/functions_events.php:310 +msgid "Options" +msgstr "オプション" + +#: ../../views/calendar/list.php:119 ../../enterprise/views/ncm/snippets/list.php:102 +#: ../../enterprise/views/ncm/templates/list.php:108 +#: ../../enterprise/views/ncm/devices/list.php:155 +#: ../../enterprise/views/ncm/firmwares/list.php:108 +#: ../../enterprise/views/ncm/models/list.php:96 +#: ../../enterprise/views/ncm/vendors/list.php:94 +#: ../../enterprise/views/cluster/list.php:96 +#: ../../enterprise/views/ipam/sites/list.php:73 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3255 +#: ../../enterprise/include/class/LogSource.class.php:656 +#: ../../enterprise/include/lib/Metaconsole/Node.php:571 +#: ../../enterprise/include/functions_events.php:50 +#: ../../enterprise/include/functions_ipam.php:1663 +#: ../../godmode/update_manager/update_manager.history.php:67 +#: ../../godmode/snmpconsole/snmp_alert.php:1161 +#: ../../godmode/events/event_edit_filter.php:366 ../../mobile/operation/agents.php:253 +#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241 +#: ../../mobile/operation/events.php:992 ../../include/ajax/module.php:292 +#: ../../include/class/ConfigPEN.class.php:627 +#: ../../include/class/CredentialStore.class.php:845 +#: ../../operation/snmpconsole/snmp_view.php:600 ../../operation/events/events.php:1646 +msgid "Free search" +msgstr "検索語" + +#: ../../views/calendar/list.php:144 ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/special_days_edit.php:206 ../../views/calendar/edit.php:126 +#: ../../views/calendar/special_days.php:323 ../../views/calendar/special_days.php:406 +#: ../../views/calendar/special_days.php:481 ../../views/calendar/special_days.php:505 #: ../../enterprise/views/ncm/snippets/list.php:127 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/firmwares/list.php:133 -#: ../../enterprise/views/ncm/vendors/edit.php:104 -#: ../../enterprise/views/ncm/vendors/list.php:119 -#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/snippets/edit.php:106 #: ../../enterprise/views/ncm/templates/list.php:133 -#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/list.php:133 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 #: ../../enterprise/views/ncm/models/list.php:121 -#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/list.php:119 +#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ipam/sites/list.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3095 -#: ../../enterprise/meta/include/functions_autoprovision.php:588 -#: ../../enterprise/meta/include/functions_autoprovision.php:789 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 -#: ../../enterprise/meta/advanced/collections.editor.php:136 -#: ../../enterprise/meta/advanced/cron_main.php:471 +#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../enterprise/meta/advanced/links.php:137 #: ../../enterprise/meta/advanced/collections.data.php:42 #: ../../enterprise/meta/advanced/collections.data.php:71 #: ../../enterprise/meta/advanced/collections.data.php:93 #: ../../enterprise/meta/advanced/collections.data.php:113 #: ../../enterprise/meta/advanced/collections.data.php:138 #: ../../enterprise/meta/advanced/collections.data.php:184 -#: ../../enterprise/meta/advanced/collections.php:437 -#: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/meta/advanced/links.php:137 -#: ../../enterprise/godmode/setup/edit_skin.php:299 -#: ../../enterprise/godmode/servers/manage_export.php:130 -#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/meta/advanced/collections.editor.php:136 +#: ../../enterprise/meta/advanced/cron_main.php:477 +#: ../../enterprise/meta/advanced/collections.php:498 +#: ../../enterprise/meta/advanced/collections.php:509 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 +#: ../../enterprise/meta/include/functions_autoprovision.php:588 +#: ../../enterprise/meta/include/functions_autoprovision.php:789 #: ../../enterprise/godmode/modules/configure_local_component.php:680 -#: ../../enterprise/godmode/modules/local_components.php:716 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:343 +#: ../../enterprise/godmode/modules/local_components.php:716 #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 -#: ../../enterprise/godmode/services/services.service.php:912 -#: ../../enterprise/godmode/reporting/aws_view.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:671 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:720 -#: ../../enterprise/godmode/agentes/collections.editor.php:169 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 #: ../../enterprise/godmode/agentes/collections.data.php:68 #: ../../enterprise/godmode/agentes/collections.data.php:169 @@ -830,226 +881,523 @@ msgstr "説明" #: ../../enterprise/godmode/agentes/collections.data.php:213 #: ../../enterprise/godmode/agentes/collections.data.php:240 #: ../../enterprise/godmode/agentes/collections.data.php:296 -#: ../../enterprise/godmode/agentes/collections.php:404 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/agentes/collections.editor.php:169 +#: ../../enterprise/godmode/agentes/collections.php:466 +#: ../../enterprise/godmode/policies/configure_policy.php:144 #: ../../enterprise/godmode/policies/policy_modules.php:432 -#: ../../enterprise/godmode/policies/policies.php:645 -#: ../../enterprise/godmode/policies/configure_policy.php:139 -#: ../../godmode/setup/os.php:95 ../../godmode/setup/os.php:177 -#: ../../godmode/setup/news.php:231 ../../godmode/setup/gis.php:97 -#: ../../godmode/setup/links.php:127 ../../godmode/servers/plugin.php:596 +#: ../../enterprise/godmode/policies/policies.php:649 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:89 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:430 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/services/services.service.php:973 +#: ../../enterprise/godmode/setup/edit_skin.php:299 +#: ../../enterprise/godmode/reporting/aws_view.php:194 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 +#: ../../enterprise/tools/ipam/ipam_list.php:772 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 +#: ../../enterprise/tools/ipam/ipam_editor.php:361 +#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../godmode/modules/manage_network_templates_form.php:180 +#: ../../godmode/modules/manage_nc_groups.php:318 #: ../../godmode/modules/manage_network_components_form.php:376 #: ../../godmode/modules/manage_network_components.php:934 #: ../../godmode/modules/manage_network_templates.php:309 -#: ../../godmode/modules/manage_network_templates_form.php:180 -#: ../../godmode/modules/manage_nc_groups.php:318 -#: ../../godmode/modules/manage_nc_groups_form.php:93 -#: ../../godmode/category/edit_category.php:205 -#: ../../godmode/reporting/map_builder.php:559 -#: ../../godmode/reporting/create_container.php:333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2167 -#: ../../godmode/reporting/graph_builder.main.php:294 -#: ../../godmode/snmpconsole/snmp_alert.php:1054 -#: ../../godmode/snmpconsole/snmp_alert.php:1465 -#: ../../godmode/snmpconsole/snmp_filters.php:263 -#: ../../godmode/snmpconsole/snmp_filters.php:336 ../../godmode/tag/edit_tag.php:281 -#: ../../godmode/events/event_edit_filter.php:676 -#: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/netflow/nf_edit_form.php:272 -#: ../../godmode/agentes/module_manager.php:229 -#: ../../godmode/agentes/configure_field.php:141 -#: ../../godmode/agentes/agent_manager.php:933 -#: ../../godmode/agentes/module_manager_editor.php:788 -#: ../../godmode/agentes/planned_downtime.list.php:582 -#: ../../godmode/agentes/planned_downtime.list.php:873 -#: ../../godmode/alerts/alert_list.list.php:961 -#: ../../godmode/alerts/alert_actions.php:471 -#: ../../godmode/alerts/alert_templates.php:481 -#: ../../godmode/alerts/alert_commands.php:748 ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/alerts/configure_alert_command.php:387 -#: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/users/configure_user.php:1475 ../../godmode/users/profile_list.php:463 #: ../../godmode/groups/configure_group.php:279 #: ../../godmode/groups/configure_modu_group.php:86 +#: ../../godmode/users/profile_list.php:463 ../../godmode/users/configure_user.php:1508 +#: ../../godmode/agentes/module_manager_editor.php:788 +#: ../../godmode/agentes/planned_downtime.list.php:591 +#: ../../godmode/agentes/planned_downtime.list.php:883 +#: ../../godmode/agentes/agent_manager.php:981 +#: ../../godmode/agentes/configure_field.php:141 +#: ../../godmode/agentes/module_manager.php:229 +#: ../../godmode/netflow/nf_edit_form.php:272 +#: ../../godmode/snmpconsole/snmp_alert.php:1142 +#: ../../godmode/snmpconsole/snmp_alert.php:1514 +#: ../../godmode/snmpconsole/snmp_filters.php:263 +#: ../../godmode/snmpconsole/snmp_filters.php:336 +#: ../../godmode/alerts/configure_alert_command.php:387 +#: ../../godmode/alerts/alert_actions.php:471 +#: ../../godmode/alerts/alert_list.list.php:975 +#: ../../godmode/alerts/alert_commands.php:834 +#: ../../godmode/alerts/alert_templates.php:482 +#: ../../godmode/alerts/configure_alert_action.php:402 +#: ../../godmode/alerts/alert_list.php:496 ../../godmode/setup/news.php:231 +#: ../../godmode/setup/gis.php:97 ../../godmode/setup/os.php:95 +#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 +#: ../../godmode/reporting/create_container.php:333 +#: ../../godmode/reporting/map_builder.php:559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2282 +#: ../../godmode/reporting/graph_builder.main.php:294 +#: ../../godmode/events/event_responses.editor.php:219 +#: ../../godmode/events/event_edit_filter.php:681 ../../godmode/servers/plugin.php:596 +#: ../../godmode/tag/edit_tag.php:281 ../../godmode/category/edit_category.php:205 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/class/ManageNetScanScripts.class.php:763 +#: ../../include/class/ModuleTemplates.class.php:960 +#: ../../include/class/ModuleTemplates.class.php:1007 +#: ../../include/functions_filemanager.php:813 +#: ../../include/functions_filemanager.php:874 ../../operation/gis_maps/gis_map.php:207 +#: ../../operation/incidents/configure_integriaims_incident.php:380 +#: ../../operation/incidents/list_integriaims_incidents.php:573 msgid "Create" msgstr "作成" -#: ../../views/calendar/edit.php:120 ../../views/calendar/special_days_edit.php:163 -#: ../../operation/reporting/reporting_viewer.php:311 -#: ../../operation/network/network_report.php:132 -#: ../../operation/snmpconsole/snmp_view.php:660 -#: ../../operation/events/events_list.php:1073 -#: ../../operation/agentes/datos_agente.php:218 ../../operation/users/user_edit.php:777 -#: ../../operation/incidents/configure_integriaims_incident.php:378 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/ajax/alert_list.ajax.php:551 -#: ../../include/class/ModuleTemplates.class.php:1012 -#: ../../include/class/ManageNetScanScripts.class.php:765 -#: ../../include/class/ExternalTools.class.php:392 -#: ../../include/class/ConfigPEN.class.php:697 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/CredentialStore.class.php:1246 -#: ../../include/class/NetworkMap.class.php:3069 ../../include/functions_events.php:3645 -#: ../../include/functions_events.php:3725 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 -#: ../../enterprise/tools/ipam/ipam_massive.php:112 -#: ../../enterprise/tools/ipam/ipam_network.php:695 -#: ../../enterprise/tools/ipam/ipam_editor.php:359 +#: ../../views/calendar/special_days_edit.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:291 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1534 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1752 +#: ../../enterprise/meta/agentsearch.php:141 +#: ../../enterprise/godmode/policies/policy_alerts.php:46 +#: ../../enterprise/godmode/policies/policies.php:523 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../enterprise/godmode/services/services.service.php:964 +#: ../../enterprise/include/functions_policies.php:3764 +#: ../../enterprise/operation/agentes/tag_view.php:608 +#: ../../enterprise/operation/services/massive/services.create.php:901 +#: ../../godmode/groups/configure_group.php:230 ../../godmode/groups/group_list.php:846 +#: ../../godmode/agentes/configurar_agente.php:425 +#: ../../godmode/agentes/modificar_agente.php:824 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:259 +#: ../../godmode/massive/massive_copy_modules.php:216 +#: ../../godmode/alerts/configure_alert_command.php:60 +#: ../../godmode/alerts/alert_actions.php:74 ../../godmode/alerts/alert_commands.php:580 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +#: ../../godmode/alerts/configure_alert_action.php:74 +#: ../../godmode/alerts/configure_alert_action.php:87 +#: ../../godmode/alerts/configure_alert_template.php:99 +#: ../../godmode/alerts/configure_alert_template.php:123 +#: ../../godmode/alerts/configure_alert_template.php:155 +#: ../../godmode/alerts/alert_list.php:494 ../../godmode/alerts/alert_list.php:496 +#: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 +#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 +#: ../../include/functions_reporting_html.php:2493 +#: ../../include/functions_reporting_html.php:5545 +#: ../../include/functions_treeview.php:405 ../../include/functions_reports.php:843 +#: ../../include/functions_reports.php:847 ../../include/functions_reports.php:853 +#: ../../include/functions_reports.php:859 +#: ../../include/class/AgentsAlerts.class.php:542 ../../operation/search_agents.php:57 +#: ../../operation/search_results.php:106 ../../operation/agentes/estado_agente.php:766 +#: ../../operation/agentes/ver_agente.php:1427 +msgid "Alerts" +msgstr "アラート" + +#: ../../views/calendar/special_days_edit.php:40 +msgid "Configure special day" +msgstr "特別日設定" + +#: ../../views/calendar/special_days_edit.php:80 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/functions_inventory.php:882 +#: ../../enterprise/include/functions_reporting_pdf.php:716 +#: ../../enterprise/include/functions_reporting_csv.php:822 +#: ../../enterprise/include/functions_reporting_csv.php:878 +#: ../../enterprise/include/functions_reporting_csv.php:923 +#: ../../enterprise/include/functions_reporting_csv.php:2564 +#: ../../enterprise/include/class/ManageBackups.class.php:163 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2181 +#: ../../enterprise/include/functions_reporting.php:2216 +#: ../../enterprise/include/functions_reporting.php:2234 +#: ../../enterprise/operation/agentes/agent_inventory.php:127 +#: ../../enterprise/operation/inventory/inventory.php:432 +#: ../../extensions/insert_data.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2169 +#: ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:1929 +#: ../../include/functions_reporting_html.php:2743 +#: ../../include/functions_reporting_html.php:2752 +#: ../../include/functions_reporting_html.php:2757 +#: ../../include/functions_reporting_html.php:2766 +#: ../../include/functions_reporting_html.php:2771 +#: ../../include/functions_reporting_html.php:2778 +#: ../../include/functions_reporting_html.php:2827 +#: ../../include/functions_reporting_html.php:2900 +#: ../../include/functions_reporting_html.php:5887 ../../include/functions.php:3053 +#: ../../include/class/AuditLog.class.php:110 ../../include/functions_reporting.php:4348 +#: ../../include/functions_reporting.php:4389 +#: ../../operation/incidents/list_integriaims_incidents.php:371 +#: ../../operation/reporting/graph_viewer.php:348 ../../general/logon_ok.php:251 +msgid "Date" +msgstr "日付" + +#: ../../views/calendar/special_days_edit.php:116 +#: ../../views/calendar/special_days.php:92 ../../views/calendar/special_days.php:358 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1851 +#: ../../enterprise/include/functions_reporting.php:1732 +#: ../../enterprise/include/functions_reporting.php:2463 +#: ../../enterprise/include/functions_reporting.php:2781 +#: ../../enterprise/include/functions_reporting.php:3406 +#: ../../enterprise/include/functions_reporting.php:4382 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 +#: ../../include/functions_html.php:2270 +msgid "Monday" +msgstr "月曜日" + +#: ../../views/calendar/special_days_edit.php:117 +#: ../../views/calendar/special_days.php:93 ../../views/calendar/special_days.php:362 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1859 +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2464 +#: ../../enterprise/include/functions_reporting.php:2782 +#: ../../enterprise/include/functions_reporting.php:3407 +#: ../../enterprise/include/functions_reporting.php:4383 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1471 +#: ../../include/functions_html.php:2271 +msgid "Tuesday" +msgstr "火曜日" + +#: ../../views/calendar/special_days_edit.php:118 +#: ../../views/calendar/special_days.php:94 ../../views/calendar/special_days.php:366 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1867 +#: ../../enterprise/include/functions_reporting.php:1734 +#: ../../enterprise/include/functions_reporting.php:2465 +#: ../../enterprise/include/functions_reporting.php:2783 +#: ../../enterprise/include/functions_reporting.php:3408 +#: ../../enterprise/include/functions_reporting.php:4384 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1479 +#: ../../include/functions_html.php:2272 +msgid "Wednesday" +msgstr "水曜日" + +#: ../../views/calendar/special_days_edit.php:119 +#: ../../views/calendar/special_days.php:95 ../../views/calendar/special_days.php:370 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1875 +#: ../../enterprise/include/functions_reporting.php:1735 +#: ../../enterprise/include/functions_reporting.php:2466 +#: ../../enterprise/include/functions_reporting.php:2784 +#: ../../enterprise/include/functions_reporting.php:3409 +#: ../../enterprise/include/functions_reporting.php:4385 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1487 +#: ../../include/functions_html.php:2273 +msgid "Thursday" +msgstr "木曜日" + +#: ../../views/calendar/special_days_edit.php:120 +#: ../../views/calendar/special_days.php:96 ../../views/calendar/special_days.php:374 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1883 +#: ../../enterprise/include/functions_reporting.php:1736 +#: ../../enterprise/include/functions_reporting.php:2467 +#: ../../enterprise/include/functions_reporting.php:2785 +#: ../../enterprise/include/functions_reporting.php:3410 +#: ../../enterprise/include/functions_reporting.php:4386 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1495 +#: ../../include/functions_html.php:2274 +msgid "Friday" +msgstr "金曜日" + +#: ../../views/calendar/special_days_edit.php:121 +#: ../../views/calendar/special_days.php:97 ../../views/calendar/special_days.php:378 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1891 +#: ../../enterprise/include/functions_reporting.php:1737 +#: ../../enterprise/include/functions_reporting.php:2468 +#: ../../enterprise/include/functions_reporting.php:2786 +#: ../../enterprise/include/functions_reporting.php:3411 +#: ../../enterprise/include/functions_reporting.php:4387 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1503 +#: ../../include/functions_html.php:2275 +msgid "Saturday" +msgstr "土曜日" + +#: ../../views/calendar/special_days_edit.php:122 +#: ../../views/calendar/special_days.php:98 ../../views/calendar/special_days.php:382 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1899 +#: ../../enterprise/include/functions_reporting.php:1738 +#: ../../enterprise/include/functions_reporting.php:2469 +#: ../../enterprise/include/functions_reporting.php:2787 +#: ../../enterprise/include/functions_reporting.php:3412 +#: ../../enterprise/include/functions_reporting.php:4388 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1511 +#: ../../include/functions_html.php:2269 +msgid "Sunday" +msgstr "日曜日" + +#: ../../views/calendar/special_days_edit.php:123 +#: ../../views/calendar/special_days.php:386 +msgid "Holidays" +msgstr "休日" + +#: ../../views/calendar/special_days_edit.php:127 +#: ../../views/calendar/special_days.php:102 +msgid "Same day of the week" +msgstr "同一の曜日" + +#: ../../views/calendar/special_days_edit.php:163 ../../views/calendar/edit.php:126 #: ../../enterprise/views/ncm/snippets/edit.php:106 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ncm/templates/edit.php:315 +#: ../../enterprise/views/ncm/firmwares/edit.php:169 #: ../../enterprise/views/ncm/models/edit.php:103 +#: ../../enterprise/views/ncm/vendors/edit.php:104 #: ../../enterprise/views/ipam/sites/edit.php:80 -#: ../../enterprise/operation/agentes/policy_view.php:208 -#: ../../enterprise/operation/agentes/policy_view.php:209 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 -#: ../../enterprise/operation/agentes/collection_view.php:117 -#: ../../enterprise/operation/agentes/collection_view.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:102 -#: ../../enterprise/include/ajax/servers.ajax.php:303 -#: ../../enterprise/include/class/SAPView.class.php:325 -#: ../../enterprise/include/class/AgentRepository.class.php:902 -#: ../../enterprise/include/class/LogSource.class.php:849 -#: ../../enterprise/include/class/Omnishell.class.php:646 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 -#: ../../enterprise/include/class/DatabaseHA.class.php:891 -#: ../../enterprise/include/functions_HA_cluster.php:495 -#: ../../enterprise/meta/event/custom_events.php:213 -#: ../../enterprise/meta/include/functions_autoprovision.php:590 -#: ../../enterprise/meta/include/functions_autoprovision.php:791 -#: ../../enterprise/meta/advanced/metasetup.mail.php:133 -#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1158 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:231 -#: ../../enterprise/meta/advanced/collections.editor.php:149 -#: ../../enterprise/meta/advanced/collections.editor.php:223 -#: ../../enterprise/meta/advanced/metasetup.performance.php:170 -#: ../../enterprise/meta/advanced/cron_main.php:463 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:157 +#: ../../enterprise/meta/advanced/metasetup.mail.php:133 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:720 +#: ../../enterprise/meta/advanced/links.php:139 #: ../../enterprise/meta/advanced/collections.data.php:157 #: ../../enterprise/meta/advanced/collections.data.php:232 #: ../../enterprise/meta/advanced/collections.data.php:273 #: ../../enterprise/meta/advanced/collections.data.php:360 #: ../../enterprise/meta/advanced/collections.data.php:361 -#: ../../enterprise/meta/advanced/metasetup.setup.php:375 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 -#: ../../enterprise/meta/advanced/metasetup.password.php:157 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1150 -#: ../../enterprise/meta/advanced/links.php:139 +#: ../../enterprise/meta/advanced/collections.editor.php:149 +#: ../../enterprise/meta/advanced/collections.editor.php:223 +#: ../../enterprise/meta/advanced/cron_main.php:469 +#: ../../enterprise/meta/advanced/metasetup.setup.php:401 +#: ../../enterprise/meta/advanced/metasetup.performance.php:188 +#: ../../enterprise/meta/event/custom_events.php:213 +#: ../../enterprise/meta/include/functions_autoprovision.php:590 +#: ../../enterprise/meta/include/functions_autoprovision.php:791 #: ../../enterprise/extensions/translate_string.php:364 #: ../../enterprise/extensions/vmware/vmware_view.php:1257 -#: ../../enterprise/extensions/vmware/vmware_view.php:1768 -#: ../../enterprise/godmode/setup/setup.php:438 -#: ../../enterprise/godmode/setup/setup.php:627 -#: ../../enterprise/godmode/setup/setup_history.php:524 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/godmode/setup/setup_log_collector.php:74 -#: ../../enterprise/godmode/setup/edit_skin.php:290 -#: ../../enterprise/godmode/setup/setup_module_library.php:62 -#: ../../enterprise/godmode/servers/manage_export_form.php:136 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/extensions/vmware/vmware_view.php:1762 #: ../../enterprise/godmode/modules/configure_local_component.php:677 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 -#: ../../enterprise/godmode/services/services.service.php:919 -#: ../../enterprise/godmode/reporting/mysql_builder.php:143 -#: ../../enterprise/godmode/reporting/mysql_builder.php:155 -#: ../../enterprise/godmode/reporting/mysql_builder.php:164 -#: ../../enterprise/godmode/reporting/mysql_builder.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:253 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:355 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:673 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:793 #: ../../enterprise/godmode/agentes/collection_manager.php:153 #: ../../enterprise/godmode/agentes/collection_manager.php:154 #: ../../enterprise/godmode/agentes/collection_manager.php:268 #: ../../enterprise/godmode/agentes/collection_manager.php:269 -#: ../../enterprise/godmode/agentes/collections.editor.php:182 -#: ../../enterprise/godmode/agentes/collections.editor.php:254 +#: ../../enterprise/godmode/agentes/inventory_manager.php:183 +#: ../../enterprise/godmode/agentes/inventory_manager.php:253 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 #: ../../enterprise/godmode/agentes/collections.data.php:454 #: ../../enterprise/godmode/agentes/collections.data.php:455 +#: ../../enterprise/godmode/agentes/collections.editor.php:182 +#: ../../enterprise/godmode/agentes/collections.editor.php:254 #: ../../enterprise/godmode/agentes/plugins_manager.php:194 #: ../../enterprise/godmode/agentes/plugins_manager.php:251 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 +#: ../../enterprise/godmode/policies/configure_policy.php:141 #: ../../enterprise/godmode/policies/policy_modules.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:364 -#: ../../enterprise/godmode/policies/configure_policy.php:136 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:338 #: ../../enterprise/godmode/policies/policy_collections.php:222 #: ../../enterprise/godmode/policies/policy_collections.php:294 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:86 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:410 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/services/services.service.php:980 +#: ../../enterprise/godmode/setup/setup_history.php:591 +#: ../../enterprise/godmode/setup/setup.php:354 +#: ../../enterprise/godmode/setup/setup.php:543 +#: ../../enterprise/godmode/setup/setup_module_library.php:62 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 +#: ../../enterprise/godmode/setup/setup_log_collector.php:74 +#: ../../enterprise/godmode/setup/edit_skin.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 +#: ../../enterprise/godmode/reporting/mysql_builder.php:143 +#: ../../enterprise/godmode/reporting/mysql_builder.php:155 +#: ../../enterprise/godmode/reporting/mysql_builder.php:164 +#: ../../enterprise/godmode/reporting/mysql_builder.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1197 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1261 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:102 +#: ../../enterprise/include/ajax/servers.ajax.php:303 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 +#: ../../enterprise/include/class/DatabaseHA.class.php:891 +#: ../../enterprise/include/class/AgentRepository.class.php:945 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/LogSource.class.php:849 +#: ../../enterprise/include/class/SAPView.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../enterprise/operation/agentes/policy_view.php:209 +#: ../../enterprise/operation/agentes/collection_view.php:117 +#: ../../enterprise/operation/agentes/collection_view.php:118 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 +#: ../../enterprise/tools/ipam/ipam_network.php:696 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 +#: ../../enterprise/tools/ipam/ipam_massive.php:112 +#: ../../enterprise/tools/ipam/ipam_editor.php:359 #: ../../extensions/files_repo/files_repo_form.php:99 -#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_integria.php:632 -#: ../../godmode/setup/setup_visuals.php:1529 ../../godmode/setup/os.php:73 -#: ../../godmode/setup/os.php:142 ../../godmode/setup/news.php:233 -#: ../../godmode/setup/setup_auth.php:467 ../../godmode/setup/setup_general.php:627 -#: ../../godmode/setup/performance.php:708 ../../godmode/setup/setup_ehorus.php:179 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_websocket_engine.php:89 ../../godmode/setup/links.php:129 -#: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:598 -#: ../../godmode/servers/modificar_server.php:100 -#: ../../godmode/update_manager/update_manager.setup.php:381 -#: ../../godmode/modules/manage_network_components_form.php:372 -#: ../../godmode/modules/manage_network_templates_form.php:178 #: ../../godmode/modules/manage_nc_groups_form.php:90 -#: ../../godmode/category/edit_category.php:195 -#: ../../godmode/reporting/reporting_builder.main.php:56 +#: ../../godmode/modules/manage_network_templates_form.php:178 +#: ../../godmode/modules/manage_network_components_form.php:372 +#: ../../godmode/groups/configure_group.php:276 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/update_manager/update_manager.setup.php:382 +#: ../../godmode/users/configure_profile.php:408 +#: ../../godmode/users/configure_user.php:1515 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/status_monitor_custom_fields.php:206 +#: ../../godmode/agentes/module_manager_editor.php:770 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:771 +#: ../../godmode/agentes/planned_downtime.list.php:816 +#: ../../godmode/agentes/planned_downtime.editor.php:1171 +#: ../../godmode/agentes/agent_manager.php:972 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/netflow/nf_edit_form.php:269 +#: ../../godmode/snmpconsole/snmp_alert.php:1140 +#: ../../godmode/snmpconsole/snmp_alert.php:1364 +#: ../../godmode/snmpconsole/snmp_filters.php:261 +#: ../../godmode/snmpconsole/snmp_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/alerts/configure_alert_command.php:384 +#: ../../godmode/alerts/alert_list.list.php:171 +#: ../../godmode/alerts/alert_list.list.php:178 +#: ../../godmode/alerts/alert_list.list.php:934 +#: ../../godmode/alerts/configure_alert_action.php:387 ../../godmode/setup/news.php:233 +#: ../../godmode/setup/setup_ehorus.php:179 +#: ../../godmode/setup/setup_websocket_engine.php:89 ../../godmode/setup/os.php:73 +#: ../../godmode/setup/os.php:142 ../../godmode/setup/setup_auth.php:467 +#: ../../godmode/setup/setup_integria.php:632 ../../godmode/setup/links.php:129 +#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:1583 ../../godmode/setup/setup_general.php:638 +#: ../../godmode/setup/performance.php:731 #: ../../godmode/reporting/visual_console_builder.data.php:232 #: ../../godmode/reporting/create_container.php:330 #: ../../godmode/reporting/visual_console_builder.elements.php:761 +#: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:294 -#: ../../godmode/snmpconsole/snmp_alert.php:1052 -#: ../../godmode/snmpconsole/snmp_alert.php:1311 -#: ../../godmode/snmpconsole/snmp_filters.php:261 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 ../../godmode/tag/edit_tag.php:272 -#: ../../godmode/events/event_edit_filter.php:673 #: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/custom_events.php:169 ../../godmode/netflow/nf_edit_form.php:269 -#: ../../godmode/agentes/configure_field.php:138 -#: ../../godmode/agentes/status_monitor_custom_fields.php:206 -#: ../../godmode/agentes/agent_manager.php:924 -#: ../../godmode/agentes/module_manager_editor.php:770 -#: ../../godmode/agentes/planned_downtime.editor.php:867 -#: ../../godmode/agentes/planned_downtime.list.php:761 -#: ../../godmode/agentes/planned_downtime.list.php:806 -#: ../../godmode/agentes/agent_conf_gis.php:134 -#: ../../godmode/agentes/agent_template.php:260 -#: ../../godmode/alerts/alert_list.list.php:161 -#: ../../godmode/alerts/alert_list.list.php:168 -#: ../../godmode/alerts/alert_list.list.php:920 -#: ../../godmode/alerts/configure_alert_command.php:384 -#: ../../godmode/alerts/configure_alert_action.php:387 -#: ../../godmode/users/configure_user.php:1482 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/groups/configure_group.php:276 -#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/events/event_edit_filter.php:678 +#: ../../godmode/events/custom_events.php:188 +#: ../../godmode/servers/modificar_server.php:100 ../../godmode/servers/plugin.php:198 +#: ../../godmode/servers/plugin.php:598 ../../godmode/tag/edit_tag.php:272 +#: ../../godmode/category/edit_category.php:195 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/ajax/alert_list.ajax.php:564 +#: ../../include/class/ConfigPEN.class.php:697 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/ManageNetScanScripts.class.php:765 +#: ../../include/class/CredentialStore.class.php:1246 +#: ../../include/class/ModuleTemplates.class.php:1012 +#: ../../include/class/ExternalTools.class.php:392 +#: ../../include/functions_events.php:3308 ../../include/functions_events.php:3387 +#: ../../operation/users/user_edit.php:804 ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:660 +#: ../../operation/incidents/configure_integriaims_incident.php:378 +#: ../../operation/reporting/reporting_viewer.php:311 msgid "Update" msgstr "更新" +#: ../../views/calendar/special_days_edit.php:207 +#: ../../views/calendar/special_days.php:407 ../../views/calendar/special_days.php:506 +#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103 +#: ../../views/dashboard/list.php:225 ../../enterprise/views/ncm/agent/details.php:690 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 +#: ../../enterprise/meta/event/custom_events.php:250 +#: ../../enterprise/godmode/services/services.service.php:1038 +#: ../../enterprise/godmode/services/services.elements.php:887 +#: ../../enterprise/godmode/services/services.elements.php:898 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 +#: ../../enterprise/include/class/AgentRepository.class.php:844 +#: ../../enterprise/include/class/AgentRepository.class.php:942 +#: ../../enterprise/include/class/LogSource.class.php:845 +#: ../../enterprise/include/class/LogSource.class.php:898 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 +#: ../../enterprise/include/class/ManageBackups.class.php:446 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 +#: ../../update_manager_client/views/register.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:242 +#: ../../godmode/snmpconsole/snmp_alert.php:1547 +#: ../../godmode/snmpconsole/snmp_alert.php:1562 +#: ../../godmode/massive/massive_operations.php:371 +#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/events/custom_events.php:224 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/functions_register.php:179 ../../include/class/ConfigPEN.class.php:669 +#: ../../include/class/ConfigPEN.class.php:693 +#: ../../include/class/SatelliteAgent.class.php:673 +#: ../../include/class/SatelliteAgent.class.php:718 +#: ../../include/class/TreeGroupEdition.class.php:165 +#: ../../include/class/NetworkMap.class.php:2807 +#: ../../include/class/CredentialStore.class.php:1242 +#: ../../include/class/CredentialStore.class.php:1294 +#: ../../include/class/ModuleTemplates.class.php:1382 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:6041 +#: ../../operation/agentes/pandora_networkmap.editor.php:603 +#: ../../operation/snmpconsole/snmp_browser.php:174 +#: ../../operation/snmpconsole/snmp_browser.php:551 +#: ../../operation/snmpconsole/snmp_browser.php:631 +#: ../../operation/snmpconsole/snmp_browser.php:646 ../../general/header.php:827 +msgid "Cancel" +msgstr "キャンセル" + +#: ../../views/calendar/special_days_edit.php:211 +#: ../../views/calendar/special_days.php:411 ../../views/calendar/special_days.php:510 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 +#: ../../godmode/agentes/planned_downtime.list.php:705 +#: ../../godmode/alerts/configure_alert_template.php:1550 +#: ../../include/class/AgentWizard.class.php:5993 +msgid "Loading, this operation might take several minutes..." +msgstr "読み込み中、この操作は数分かかります..." + +#: ../../views/calendar/edit.php:40 +msgid "Calendars Edit" +msgstr "カレンダー編集" + #: ../../views/calendar/special_days.php:41 -#: ../../include/class/CalendarManager.class.php:669 +#: ../../include/class/CalendarManager.class.php:720 msgid "Special days" msgstr "特別日" @@ -1057,109 +1405,6 @@ msgstr "特別日" msgid "iCalendar(.ics) file" msgstr "iCalendar(.ics) ファイル" -#: ../../views/calendar/special_days.php:92 ../../views/calendar/special_days.php:358 -#: ../../views/calendar/special_days_edit.php:116 ../../include/functions_html.php:2258 -#: ../../enterprise/include/functions_reporting.php:1731 -#: ../../enterprise/include/functions_reporting.php:2462 -#: ../../enterprise/include/functions_reporting.php:2780 -#: ../../enterprise/include/functions_reporting.php:3405 -#: ../../enterprise/include/functions_reporting.php:4381 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1848 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1348 -#: ../../godmode/alerts/alert_templates.php:64 -msgid "Monday" -msgstr "月曜日" - -#: ../../views/calendar/special_days.php:93 ../../views/calendar/special_days.php:362 -#: ../../views/calendar/special_days_edit.php:117 ../../include/functions_html.php:2259 -#: ../../enterprise/include/functions_reporting.php:1732 -#: ../../enterprise/include/functions_reporting.php:2463 -#: ../../enterprise/include/functions_reporting.php:2781 -#: ../../enterprise/include/functions_reporting.php:3406 -#: ../../enterprise/include/functions_reporting.php:4382 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1356 -#: ../../godmode/alerts/alert_templates.php:65 -msgid "Tuesday" -msgstr "火曜日" - -#: ../../views/calendar/special_days.php:94 ../../views/calendar/special_days.php:366 -#: ../../views/calendar/special_days_edit.php:118 ../../include/functions_html.php:2260 -#: ../../enterprise/include/functions_reporting.php:1733 -#: ../../enterprise/include/functions_reporting.php:2464 -#: ../../enterprise/include/functions_reporting.php:2782 -#: ../../enterprise/include/functions_reporting.php:3407 -#: ../../enterprise/include/functions_reporting.php:4383 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1864 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1364 -#: ../../godmode/alerts/alert_templates.php:66 -msgid "Wednesday" -msgstr "水曜日" - -#: ../../views/calendar/special_days.php:95 ../../views/calendar/special_days.php:370 -#: ../../views/calendar/special_days_edit.php:119 ../../include/functions_html.php:2261 -#: ../../enterprise/include/functions_reporting.php:1734 -#: ../../enterprise/include/functions_reporting.php:2465 -#: ../../enterprise/include/functions_reporting.php:2783 -#: ../../enterprise/include/functions_reporting.php:3408 -#: ../../enterprise/include/functions_reporting.php:4384 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1372 -#: ../../godmode/alerts/alert_templates.php:67 -msgid "Thursday" -msgstr "木曜日" - -#: ../../views/calendar/special_days.php:96 ../../views/calendar/special_days.php:374 -#: ../../views/calendar/special_days_edit.php:120 ../../include/functions_html.php:2262 -#: ../../enterprise/include/functions_reporting.php:1735 -#: ../../enterprise/include/functions_reporting.php:2466 -#: ../../enterprise/include/functions_reporting.php:2784 -#: ../../enterprise/include/functions_reporting.php:3409 -#: ../../enterprise/include/functions_reporting.php:4385 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1380 -#: ../../godmode/alerts/alert_templates.php:68 -msgid "Friday" -msgstr "金曜日" - -#: ../../views/calendar/special_days.php:97 ../../views/calendar/special_days.php:378 -#: ../../views/calendar/special_days_edit.php:121 ../../include/functions_html.php:2263 -#: ../../enterprise/include/functions_reporting.php:1736 -#: ../../enterprise/include/functions_reporting.php:2467 -#: ../../enterprise/include/functions_reporting.php:2785 -#: ../../enterprise/include/functions_reporting.php:3410 -#: ../../enterprise/include/functions_reporting.php:4386 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1888 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1388 -#: ../../godmode/alerts/alert_templates.php:69 -msgid "Saturday" -msgstr "土曜日" - -#: ../../views/calendar/special_days.php:98 ../../views/calendar/special_days.php:382 -#: ../../views/calendar/special_days_edit.php:122 ../../include/functions_html.php:2257 -#: ../../enterprise/include/functions_reporting.php:1737 -#: ../../enterprise/include/functions_reporting.php:2468 -#: ../../enterprise/include/functions_reporting.php:2786 -#: ../../enterprise/include/functions_reporting.php:3411 -#: ../../enterprise/include/functions_reporting.php:4387 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1896 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1396 -#: ../../godmode/alerts/alert_templates.php:70 -msgid "Sunday" -msgstr "日曜日" - -#: ../../views/calendar/special_days.php:102 -#: ../../views/calendar/special_days_edit.php:127 -msgid "Same day of the week" -msgstr "同一の曜日" - #: ../../views/calendar/special_days.php:122 msgid "Overwrite" msgstr "上書き" @@ -1169,15 +1414,15 @@ msgid "Check this box, if you want to overwrite existing same days." msgstr "既存の同一日の設定を上書きしたい場合は、ここをチェックします。" #: ../../views/calendar/special_days.php:138 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 -#: ../../enterprise/tools/ipam/ipam_network.php:142 +#: ../../enterprise/include/functions_policies.php:4480 +#: ../../enterprise/tools/ipam/ipam_network.php:143 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:746 #: ../../enterprise/tools/ipam/ipam_list.php:77 -#: ../../enterprise/include/functions_policies.php:4477 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 #: ../../extensions/extension_uploader.php:92 #: ../../extensions/resource_registration.php:1137 #: ../../godmode/servers/plugin_registration.php:113 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 msgid "Upload" msgstr "アップロード" @@ -1186,168 +1431,174 @@ msgid "Display range: " msgstr "表示範囲: " #: ../../views/calendar/special_days.php:174 ../../views/calendar/special_days.php:186 -#: ../../operation/gis_maps/gis_map.php:106 -#: ../../operation/snmpconsole/snmp_view.php:566 -#: ../../operation/events/events_list.php:863 ../../operation/users/user_edit.php:317 -#: ../../operation/users/user_edit.php:320 ../../operation/users/user_edit.php:331 -#: ../../operation/users/user_edit.php:356 -#: ../../include/class/AgentsAlerts.class.php:940 ../../include/functions_ui.php:1234 -#: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/meta/advanced/metasetup.visual.php:513 #: ../../enterprise/meta/advanced/metasetup.visual.php:547 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1070 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:487 +#: ../../enterprise/godmode/policies/policy_alerts.php:406 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:445 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664 -#: ../../godmode/setup/setup_visuals.php:196 ../../godmode/setup/setup_visuals.php:218 -#: ../../godmode/setup/setup_visuals.php:438 ../../godmode/setup/setup_visuals.php:457 -#: ../../godmode/setup/setup_visuals.php:1159 -#: ../../godmode/events/event_edit_filter.php:399 -#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../enterprise/operation/agentes/policy_view.php:332 +#: ../../godmode/users/configure_user.php:934 +#: ../../godmode/users/configure_user.php:1137 #: ../../godmode/agentes/module_manager_editor_common.php:635 -#: ../../godmode/alerts/alert_list.list.php:616 ../../godmode/alerts/alert_view.php:58 -#: ../../godmode/users/configure_user.php:910 -#: ../../godmode/users/configure_user.php:1109 +#: ../../godmode/massive/massive_edit_agents.php:1034 +#: ../../godmode/alerts/alert_list.list.php:630 ../../godmode/alerts/alert_view.php:58 +#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664 +#: ../../godmode/setup/setup_visuals.php:197 ../../godmode/setup/setup_visuals.php:219 +#: ../../godmode/setup/setup_visuals.php:439 ../../godmode/setup/setup_visuals.php:458 +#: ../../godmode/setup/setup_visuals.php:1204 +#: ../../godmode/events/event_edit_filter.php:404 ../../include/functions_ui.php:1240 +#: ../../include/class/AgentsAlerts.class.php:928 +#: ../../operation/users/user_edit.php:320 ../../operation/users/user_edit.php:323 +#: ../../operation/users/user_edit.php:334 ../../operation/users/user_edit.php:359 +#: ../../operation/snmpconsole/snmp_view.php:566 +#: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "デフォルト" #: ../../views/calendar/special_days.php:224 -#: ../../include/class/CalendarManager.class.php:984 -#: ../../include/functions_reporting.php:14091 ../../include/functions.php:1101 -#: ../../godmode/agentes/planned_downtime.editor.php:668 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 +#: ../../godmode/agentes/planned_downtime.editor.php:944 +#: ../../include/functions.php:1101 ../../include/class/CalendarManager.class.php:1035 +#: ../../include/functions_reporting.php:14408 msgid "Sun" msgstr "日" #: ../../views/calendar/special_days.php:225 -#: ../../include/class/CalendarManager.class.php:978 -#: ../../include/functions_reporting.php:14061 ../../include/functions.php:1077 -#: ../../godmode/agentes/planned_downtime.editor.php:662 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 +#: ../../godmode/agentes/planned_downtime.editor.php:938 +#: ../../include/functions.php:1077 ../../include/class/CalendarManager.class.php:1029 +#: ../../include/functions_reporting.php:14378 msgid "Mon" msgstr "月" #: ../../views/calendar/special_days.php:226 -#: ../../include/class/CalendarManager.class.php:979 -#: ../../include/functions_reporting.php:14066 ../../include/functions.php:1081 -#: ../../godmode/agentes/planned_downtime.editor.php:663 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 +#: ../../godmode/agentes/planned_downtime.editor.php:939 +#: ../../include/functions.php:1081 ../../include/class/CalendarManager.class.php:1030 +#: ../../include/functions_reporting.php:14383 msgid "Tue" msgstr "火" #: ../../views/calendar/special_days.php:227 -#: ../../include/class/CalendarManager.class.php:980 -#: ../../include/functions_reporting.php:14071 ../../include/functions.php:1085 -#: ../../godmode/agentes/planned_downtime.editor.php:664 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 +#: ../../godmode/agentes/planned_downtime.editor.php:940 +#: ../../include/functions.php:1085 ../../include/class/CalendarManager.class.php:1031 +#: ../../include/functions_reporting.php:14388 msgid "Wed" msgstr "水" #: ../../views/calendar/special_days.php:228 -#: ../../include/class/CalendarManager.class.php:981 -#: ../../include/functions_reporting.php:14076 ../../include/functions.php:1089 -#: ../../godmode/agentes/planned_downtime.editor.php:665 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 +#: ../../godmode/agentes/planned_downtime.editor.php:941 +#: ../../include/functions.php:1089 ../../include/class/CalendarManager.class.php:1032 +#: ../../include/functions_reporting.php:14393 msgid "Thu" msgstr "木" #: ../../views/calendar/special_days.php:229 -#: ../../include/class/CalendarManager.class.php:982 -#: ../../include/functions_reporting.php:14081 ../../include/functions.php:1093 -#: ../../godmode/agentes/planned_downtime.editor.php:666 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 +#: ../../godmode/agentes/planned_downtime.editor.php:942 +#: ../../include/functions.php:1093 ../../include/class/CalendarManager.class.php:1033 +#: ../../include/functions_reporting.php:14398 msgid "Fri" msgstr "金" #: ../../views/calendar/special_days.php:230 -#: ../../include/class/CalendarManager.class.php:983 -#: ../../include/functions_reporting.php:14086 ../../include/functions.php:1097 -#: ../../godmode/agentes/planned_downtime.editor.php:667 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 +#: ../../godmode/agentes/planned_downtime.editor.php:943 +#: ../../include/functions.php:1097 ../../include/class/CalendarManager.class.php:1034 +#: ../../include/functions_reporting.php:14403 msgid "Sat" msgstr "土" #: ../../views/calendar/special_days.php:245 -#: ../../enterprise/include/functions_reporting.php:1774 -#: ../../enterprise/include/functions_reporting.php:2821 -#: ../../enterprise/include/functions_reporting.php:3823 +#: ../../enterprise/include/functions_reporting.php:1775 +#: ../../enterprise/include/functions_reporting.php:2822 +#: ../../enterprise/include/functions_reporting.php:3824 msgid "January" msgstr "1月" #: ../../views/calendar/special_days.php:249 -#: ../../enterprise/include/functions_reporting.php:1778 -#: ../../enterprise/include/functions_reporting.php:2825 -#: ../../enterprise/include/functions_reporting.php:3827 +#: ../../enterprise/include/functions_reporting.php:1779 +#: ../../enterprise/include/functions_reporting.php:2826 +#: ../../enterprise/include/functions_reporting.php:3828 msgid "February" msgstr "2月" #: ../../views/calendar/special_days.php:253 -#: ../../enterprise/include/functions_reporting.php:1782 -#: ../../enterprise/include/functions_reporting.php:2829 -#: ../../enterprise/include/functions_reporting.php:3831 +#: ../../enterprise/include/functions_reporting.php:1783 +#: ../../enterprise/include/functions_reporting.php:2830 +#: ../../enterprise/include/functions_reporting.php:3832 msgid "March" msgstr "3月" #: ../../views/calendar/special_days.php:257 -#: ../../enterprise/include/functions_reporting.php:1786 -#: ../../enterprise/include/functions_reporting.php:2833 -#: ../../enterprise/include/functions_reporting.php:3835 +#: ../../enterprise/include/functions_reporting.php:1787 +#: ../../enterprise/include/functions_reporting.php:2834 +#: ../../enterprise/include/functions_reporting.php:3836 msgid "April" msgstr "4月" #: ../../views/calendar/special_days.php:261 -#: ../../enterprise/include/functions_reporting.php:1790 -#: ../../enterprise/include/functions_reporting.php:2837 -#: ../../enterprise/include/functions_reporting.php:3839 +#: ../../enterprise/include/functions_reporting.php:1791 +#: ../../enterprise/include/functions_reporting.php:2838 +#: ../../enterprise/include/functions_reporting.php:3840 msgid "May" msgstr "5月" #: ../../views/calendar/special_days.php:265 -#: ../../enterprise/include/functions_reporting.php:1794 -#: ../../enterprise/include/functions_reporting.php:2841 -#: ../../enterprise/include/functions_reporting.php:3843 +#: ../../enterprise/include/functions_reporting.php:1795 +#: ../../enterprise/include/functions_reporting.php:2842 +#: ../../enterprise/include/functions_reporting.php:3844 msgid "June" msgstr "6月" #: ../../views/calendar/special_days.php:269 -#: ../../enterprise/include/functions_reporting.php:1798 -#: ../../enterprise/include/functions_reporting.php:2845 -#: ../../enterprise/include/functions_reporting.php:3847 +#: ../../enterprise/include/functions_reporting.php:1799 +#: ../../enterprise/include/functions_reporting.php:2846 +#: ../../enterprise/include/functions_reporting.php:3848 msgid "July" msgstr "7月" #: ../../views/calendar/special_days.php:273 -#: ../../enterprise/include/functions_reporting.php:1802 -#: ../../enterprise/include/functions_reporting.php:2849 -#: ../../enterprise/include/functions_reporting.php:3851 +#: ../../enterprise/include/functions_reporting.php:1803 +#: ../../enterprise/include/functions_reporting.php:2850 +#: ../../enterprise/include/functions_reporting.php:3852 msgid "August" msgstr "8月" #: ../../views/calendar/special_days.php:277 -#: ../../enterprise/include/functions_reporting.php:1806 -#: ../../enterprise/include/functions_reporting.php:2853 -#: ../../enterprise/include/functions_reporting.php:3855 +#: ../../enterprise/include/functions_reporting.php:1807 +#: ../../enterprise/include/functions_reporting.php:2854 +#: ../../enterprise/include/functions_reporting.php:3856 msgid "September" msgstr "9月" #: ../../views/calendar/special_days.php:281 -#: ../../enterprise/include/functions_reporting.php:1810 -#: ../../enterprise/include/functions_reporting.php:2857 -#: ../../enterprise/include/functions_reporting.php:3859 +#: ../../enterprise/include/functions_reporting.php:1811 +#: ../../enterprise/include/functions_reporting.php:2858 +#: ../../enterprise/include/functions_reporting.php:3860 msgid "October" msgstr "10月" #: ../../views/calendar/special_days.php:285 -#: ../../enterprise/include/functions_reporting.php:1814 -#: ../../enterprise/include/functions_reporting.php:2861 -#: ../../enterprise/include/functions_reporting.php:3863 +#: ../../enterprise/include/functions_reporting.php:1815 +#: ../../enterprise/include/functions_reporting.php:2862 +#: ../../enterprise/include/functions_reporting.php:3864 msgid "November" msgstr "11月" #: ../../views/calendar/special_days.php:289 -#: ../../enterprise/include/functions_reporting.php:1819 -#: ../../enterprise/include/functions_reporting.php:2866 -#: ../../enterprise/include/functions_reporting.php:3868 +#: ../../enterprise/include/functions_reporting.php:1820 +#: ../../enterprise/include/functions_reporting.php:2867 +#: ../../enterprise/include/functions_reporting.php:3869 msgid "December" msgstr "12月" @@ -1355,299 +1606,230 @@ msgstr "12月" msgid "As " msgstr "As" -#: ../../views/calendar/special_days.php:386 -#: ../../views/calendar/special_days_edit.php:123 -msgid "Holidays" -msgstr "休日" - -#: ../../views/calendar/special_days.php:407 ../../views/calendar/special_days.php:506 -#: ../../views/calendar/special_days_edit.php:207 ../../views/dashboard/header.php:69 -#: ../../views/dashboard/header.php:103 ../../views/dashboard/list.php:225 -#: ../../general/header.php:814 ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:551 -#: ../../operation/snmpconsole/snmp_browser.php:631 -#: ../../operation/snmpconsole/snmp_browser.php:646 -#: ../../operation/agentes/pandora_networkmap.editor.php:603 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ModuleTemplates.class.php:1382 -#: ../../include/class/AgentWizard.class.php:6009 -#: ../../include/class/WelcomeWindow.class.php:174 -#: ../../include/class/ConfigPEN.class.php:669 -#: ../../include/class/ConfigPEN.class.php:693 -#: ../../include/class/CredentialStore.class.php:1242 -#: ../../include/class/CredentialStore.class.php:1294 -#: ../../include/class/NetworkMap.class.php:2807 -#: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/functions_register.php:179 -#: ../../update_manager_client/views/register.php:86 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 -#: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../enterprise/include/class/AgentRepository.class.php:801 -#: ../../enterprise/include/class/AgentRepository.class.php:899 -#: ../../enterprise/include/class/LogSource.class.php:845 -#: ../../enterprise/include/class/LogSource.class.php:898 -#: ../../enterprise/include/class/ManageBackups.class.php:446 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 -#: ../../enterprise/include/functions_HA_cluster.php:492 -#: ../../enterprise/meta/event/custom_events.php:250 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 -#: ../../enterprise/godmode/services/services.elements.php:844 -#: ../../enterprise/godmode/services/services.elements.php:855 -#: ../../enterprise/godmode/services/services.service.php:966 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:266 -#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/events/custom_events.php:205 -#: ../../godmode/massive/massive_operations.php:393 -#: ../../godmode/agentes/status_monitor_custom_fields.php:242 -msgid "Cancel" -msgstr "キャンセル" - -#: ../../views/calendar/special_days.php:411 ../../views/calendar/special_days.php:510 -#: ../../views/calendar/special_days_edit.php:211 -#: ../../include/class/AgentWizard.class.php:5961 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4321 -#: ../../godmode/agentes/planned_downtime.list.php:695 -#: ../../godmode/alerts/configure_alert_template.php:1550 -msgid "Loading, this operation might take several minutes..." -msgstr "読み込み中、この操作は数分かかります..." - #: ../../views/calendar/special_days.php:421 msgid "Show templates" msgstr "テンプレート表示" -#: ../../views/calendar/special_days.php:431 ../../operation/search_reports.php:68 -#: ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/agentes/status_monitor.php:1510 -#: ../../operation/agentes/pandora_networkmap.php:713 -#: ../../operation/agentes/estado_agente.php:877 -#: ../../operation/agentes/estado_agente.php:880 -#: ../../operation/incidents/list_integriaims_incidents.php:550 -#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909 -#: ../../include/ajax/module.php:1110 ../../include/class/CalendarManager.class.php:652 -#: ../../include/class/NetworkMap.class.php:3013 -#: ../../enterprise/tools/ipam/ipam_ajax.php:122 -#: ../../enterprise/tools/ipam/ipam_ajax.php:527 -#: ../../enterprise/tools/ipam/ipam.php:417 -#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../views/calendar/special_days.php:431 +#: ../../enterprise/meta/screens/screens.visualmap.php:73 +#: ../../enterprise/meta/advanced/collections.editor.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 +#: ../../enterprise/meta/include/functions_autoprovision.php:506 +#: ../../enterprise/meta/include/functions_autoprovision.php:507 +#: ../../enterprise/meta/include/functions_autoprovision.php:672 +#: ../../enterprise/meta/include/functions_autoprovision.php:673 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 +#: ../../enterprise/include/functions_tasklist.php:623 +#: ../../enterprise/include/functions_tasklist.php:665 #: ../../enterprise/include/ajax/transactional.ajax.php:117 #: ../../enterprise/include/ajax/transactional.ajax.php:205 -#: ../../enterprise/include/class/Omnishell.class.php:1137 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2382 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3036 #: ../../enterprise/include/class/NetworkConfigManager.class.php:612 #: ../../enterprise/include/class/NetworkConfigManager.class.php:784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:960 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1107 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1315 -#: ../../enterprise/include/functions_tasklist.php:595 -#: ../../enterprise/include/functions_tasklist.php:637 +#: ../../enterprise/include/class/Omnishell.class.php:1137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2426 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3080 #: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1149 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1150 -#: ../../enterprise/meta/screens/screens.visualmap.php:73 -#: ../../enterprise/meta/include/functions_autoprovision.php:506 -#: ../../enterprise/meta/include/functions_autoprovision.php:507 -#: ../../enterprise/meta/include/functions_autoprovision.php:672 -#: ../../enterprise/meta/include/functions_autoprovision.php:673 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2726 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 -#: ../../enterprise/meta/advanced/collections.editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 -#: ../../enterprise/godmode/agentes/collections.editor.php:234 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1097 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1098 +#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/tools/ipam/ipam.php:417 +#: ../../enterprise/tools/ipam/ipam_ajax.php:122 +#: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/servers/plugin.php:179 -#: ../../godmode/servers/plugin.php:880 -#: ../../godmode/servers/servers.build_table.php:234 +#: ../../godmode/groups/group_list.php:917 ../../godmode/groups/group_list.php:918 +#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:796 +#: ../../godmode/agentes/modificar_agente.php:804 +#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../godmode/agentes/planned_downtime.list.php:633 +#: ../../godmode/agentes/fields_manager.php:154 ../../godmode/setup/snmp_wizard.php:110 #: ../../godmode/reporting/reporting_builder.list_items.php:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2175 -#: ../../godmode/reporting/reporting_builder.php:1169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2290 +#: ../../godmode/reporting/reporting_builder.php:1167 #: ../../godmode/events/event_responses.list.php:79 -#: ../../godmode/agentes/planned_downtime.list.php:624 -#: ../../godmode/agentes/fields_manager.php:154 -#: ../../godmode/agentes/modificar_agente.php:803 -#: ../../godmode/agentes/modificar_agente.php:809 ../../godmode/users/user_list.php:796 -#: ../../godmode/users/profile_list.php:434 ../../godmode/groups/group_list.php:917 -#: ../../godmode/groups/group_list.php:918 +#: ../../godmode/servers/servers.build_table.php:234 +#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:880 +#: ../../include/functions_cron.php:910 ../../include/functions_cron.php:938 +#: ../../include/ajax/module.php:1110 ../../include/class/NetworkMap.class.php:3013 +#: ../../include/class/CalendarManager.class.php:703 +#: ../../operation/agentes/estado_agente.php:877 +#: ../../operation/agentes/estado_agente.php:880 +#: ../../operation/agentes/pandora_networkmap.php:713 +#: ../../operation/agentes/status_monitor.php:1509 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/list_integriaims_incidents.php:550 +#: ../../operation/search_reports.php:68 msgid "Edit" msgstr "編集" #: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 -#: ../../operation/snmpconsole/snmp_view.php:1033 -#: ../../operation/snmpconsole/snmp_view.php:1046 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/events/events.build_table.php:983 -#: ../../operation/agentes/pandora_networkmap.php:801 -#: ../../operation/agentes/pandora_networkmap.editor.php:600 -#: ../../operation/users/user_edit.php:1168 -#: ../../operation/incidents/list_integriaims_incidents.php:554 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 -#: ../../include/class/ModuleTemplates.class.php:918 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/WelcomeWindow.class.php:171 -#: ../../include/class/ConfigPEN.class.php:666 -#: ../../include/class/CredentialStore.class.php:1288 -#: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/lib/Dashboard/Widgets/events_list.php:680 -#: ../../include/functions_events.php:3783 ../../include/functions_filemanager.php:715 -#: ../../include/functions_container.php:190 ../../include/functions_container.php:324 -#: ../../include/functions_profile.php:278 -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 -#: ../../update_manager_client/views/offline.php:73 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 -#: ../../enterprise/operation/services/services.list.php:649 -#: ../../enterprise/operation/services/services.list.php:743 -#: ../../enterprise/operation/agentes/transactional_map.php:414 -#: ../../enterprise/operation/agentes/transactional_map.php:478 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/include/ajax/transactional.ajax.php:118 -#: ../../enterprise/include/ajax/transactional.ajax.php:207 -#: ../../enterprise/include/ajax/ipam.ajax.php:755 -#: ../../enterprise/include/ajax/ipam.ajax.php:833 -#: ../../enterprise/include/class/AgentRepository.class.php:792 -#: ../../enterprise/include/class/LogSource.class.php:892 -#: ../../enterprise/include/class/ManageBackups.class.php:443 -#: ../../enterprise/include/class/Omnishell.class.php:504 -#: ../../enterprise/include/class/Omnishell.class.php:1155 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3044 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3356 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 -#: ../../enterprise/include/functions_tasklist.php:610 -#: ../../enterprise/include/functions_tasklist.php:645 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1242 -#: ../../enterprise/include/functions_services.php:2022 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566 -#: ../../enterprise/meta/advanced/policymanager.queue.php:349 #: ../../enterprise/meta/advanced/metasetup.relations.php:584 #: ../../enterprise/meta/advanced/links.php:173 -#: ../../enterprise/godmode/setup/setup_skins.php:147 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../enterprise/godmode/modules/local_components.php:694 +#: ../../enterprise/meta/advanced/policymanager.queue.php:349 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 #: ../../enterprise/godmode/modules/manage_inventory_modules.php:316 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/graph_template_list.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 +#: ../../enterprise/godmode/modules/local_components.php:694 #: ../../enterprise/godmode/agentes/inventory_manager.php:248 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:203 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1561 +#: ../../enterprise/godmode/policies/policy_modules.php:1612 +#: ../../enterprise/godmode/policies/policy_queue.php:770 +#: ../../enterprise/godmode/policies/policy_queue.php:804 +#: ../../enterprise/godmode/policies/policy_queue.php:820 +#: ../../enterprise/godmode/policies/policies.php:564 +#: ../../enterprise/godmode/policies/policies.php:585 +#: ../../enterprise/godmode/policies/policies.php:620 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:522 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 #: ../../enterprise/godmode/policies/policy_agents.php:401 #: ../../enterprise/godmode/policies/policy_agents.php:724 #: ../../enterprise/godmode/policies/policy_agents.php:1040 #: ../../enterprise/godmode/policies/policy_agents.php:1155 #: ../../enterprise/godmode/policies/policy_agents.php:1304 #: ../../enterprise/godmode/policies/policy_agents.php:1519 -#: ../../enterprise/godmode/policies/policy_queue.php:770 -#: ../../enterprise/godmode/policies/policy_queue.php:804 -#: ../../enterprise/godmode/policies/policy_queue.php:820 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 -#: ../../enterprise/godmode/policies/policy_modules.php:1561 -#: ../../enterprise/godmode/policies/policy_modules.php:1612 -#: ../../enterprise/godmode/policies/policies.php:560 -#: ../../enterprise/godmode/policies/policies.php:581 -#: ../../enterprise/godmode/policies/policies.php:616 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:513 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 -#: ../../enterprise/godmode/policies/policy_alerts.php:518 -#: ../../extensions/files_repo/files_repo_list.php:146 ../../godmode/setup/news.php:290 -#: ../../godmode/setup/links.php:160 ../../godmode/servers/plugin.php:884 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:414 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/setup/setup_skins.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 +#: ../../enterprise/godmode/reporting/graph_template_list.php:234 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1189 +#: ../../enterprise/include/functions_tasklist.php:638 +#: ../../enterprise/include/functions_tasklist.php:673 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/ajax/ipam.ajax.php:755 +#: ../../enterprise/include/ajax/ipam.ajax.php:833 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 +#: ../../enterprise/include/class/AgentRepository.class.php:835 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1155 +#: ../../enterprise/include/class/LogSource.class.php:892 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3088 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3400 +#: ../../enterprise/include/class/ManageBackups.class.php:443 +#: ../../enterprise/include/functions_services.php:2026 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1183 +#: ../../enterprise/operation/agentes/transactional_map.php:414 +#: ../../enterprise/operation/agentes/transactional_map.php:478 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 +#: ../../enterprise/operation/services/services.list.php:649 +#: ../../enterprise/operation/services/services.list.php:743 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 +#: ../../update_manager_client/views/offline.php:72 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 +#: ../../extensions/files_repo/files_repo_list.php:146 +#: ../../godmode/modules/manage_nc_groups.php:275 #: ../../godmode/modules/manage_network_components.php:864 #: ../../godmode/modules/manage_network_templates.php:272 #: ../../godmode/modules/manage_network_templates.php:287 -#: ../../godmode/modules/manage_nc_groups.php:275 -#: ../../godmode/category/category.php:192 ../../godmode/category/category.php:211 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:362 -#: ../../godmode/reporting/create_container.php:682 -#: ../../godmode/reporting/visual_console_builder.elements.php:497 -#: ../../godmode/reporting/reporting_builder.php:1179 -#: ../../godmode/reporting/reporting_builder.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1271 -#: ../../godmode/snmpconsole/snmp_alert.php:1319 -#: ../../godmode/snmpconsole/snmp_alert.php:1562 +#: ../../godmode/groups/group_list.php:926 ../../godmode/groups/modu_group_list.php:273 +#: ../../godmode/groups/modu_group_list.php:276 ../../godmode/users/profile_list.php:439 +#: ../../godmode/users/configure_user.php:1666 +#: ../../godmode/users/configure_user.php:1961 +#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/modificar_agente.php:930 +#: ../../godmode/agentes/planned_downtime.editor.php:1313 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/agent_manager.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:233 +#: ../../godmode/agentes/module_manager.php:1186 +#: ../../godmode/agentes/module_manager.php:1200 +#: ../../godmode/agentes/module_manager.php:1225 +#: ../../godmode/agentes/module_manager.php:1248 +#: ../../godmode/agentes/module_manager.php:1273 +#: ../../godmode/netflow/nf_item_list.php:262 ../../godmode/netflow/nf_edit.php:195 +#: ../../godmode/snmpconsole/snmp_alert.php:1308 +#: ../../godmode/snmpconsole/snmp_alert.php:1641 #: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 ../../godmode/tag/tag.php:395 -#: ../../godmode/events/event_filter.php:188 ../../godmode/netflow/nf_edit.php:195 -#: ../../godmode/netflow/nf_item_list.php:262 -#: ../../godmode/massive/massive_operations.php:391 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/massive/massive_operations.php:369 #: ../../godmode/massive/massive_standby_alerts.php:254 #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:226 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:664 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:971 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:997 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021 -#: ../../godmode/agentes/module_manager.php:1161 -#: ../../godmode/agentes/module_manager.php:1175 -#: ../../godmode/agentes/module_manager.php:1200 -#: ../../godmode/agentes/module_manager.php:1223 -#: ../../godmode/agentes/module_manager.php:1248 -#: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/agent_manager.php:237 -#: ../../godmode/agentes/planned_downtime.editor.php:1009 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/agentes/modificar_agente.php:929 -#: ../../godmode/alerts/alert_list.list.php:1116 #: ../../godmode/alerts/alert_actions.php:424 -#: ../../godmode/alerts/alert_templates.php:436 -#: ../../godmode/alerts/alert_commands.php:721 -#: ../../godmode/alerts/alert_commands.php:724 -#: ../../godmode/users/configure_user.php:1635 -#: ../../godmode/users/configure_user.php:1930 ../../godmode/users/profile_list.php:439 -#: ../../godmode/groups/modu_group_list.php:273 -#: ../../godmode/groups/modu_group_list.php:276 ../../godmode/groups/group_list.php:926 +#: ../../godmode/alerts/alert_list.list.php:1130 +#: ../../godmode/alerts/alert_commands.php:807 +#: ../../godmode/alerts/alert_commands.php:810 +#: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 +#: ../../godmode/setup/links.php:160 ../../godmode/reporting/create_container.php:682 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:362 +#: ../../godmode/reporting/visual_console_builder.elements.php:497 +#: ../../godmode/reporting/reporting_builder.php:1177 +#: ../../godmode/reporting/reporting_builder.php:1199 +#: ../../godmode/events/event_filter.php:188 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:666 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:973 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:999 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1012 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1023 +#: ../../godmode/servers/plugin.php:884 ../../godmode/tag/tag.php:395 +#: ../../godmode/category/category.php:192 ../../godmode/category/category.php:211 +#: ../../include/functions_profile.php:278 ../../include/class/ConfigPEN.class.php:666 +#: ../../include/class/SatelliteAgent.class.php:712 +#: ../../include/class/TreeGroupEdition.class.php:166 +#: ../../include/class/CredentialStore.class.php:1288 +#: ../../include/class/ModuleTemplates.class.php:918 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:715 ../../include/functions_container.php:190 +#: ../../include/functions_container.php:324 +#: ../../include/lib/Dashboard/Widgets/events_list.php:655 +#: ../../include/functions_events.php:3442 ../../operation/users/user_edit.php:1195 +#: ../../operation/agentes/pandora_networkmap.editor.php:600 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1046 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 +#: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" msgstr "よろしいですか?" -#: ../../views/calendar/special_days.php:442 ../../operation/events/events.php:642 -#: ../../operation/events/events.php:716 ../../operation/events/events_list.php:630 -#: ../../operation/events/events_list.php:703 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4319 -#: ../../enterprise/include/functions_ui.php:120 -#: ../../enterprise/include/functions_ui.php:168 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 +#: ../../views/calendar/special_days.php:442 #: ../../enterprise/godmode/agentes/collection_manager.php:210 #: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../godmode/events/event_edit_filter.php:537 -#: ../../godmode/events/event_edit_filter.php:590 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 #: ../../godmode/alerts/configure_alert_template.php:1548 +#: ../../godmode/events/event_edit_filter.php:542 +#: ../../godmode/events/event_edit_filter.php:595 ../../operation/events/events.php:1169 +#: ../../operation/events/events.php:1241 msgid "Remove" msgstr "削除" @@ -1655,268 +1837,28 @@ msgstr "削除" msgid "Load calendar" msgstr "カレンダー読み込み" -#: ../../views/calendar/special_days_edit.php:40 ../../operation/search_agents.php:57 -#: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1418 ../../operation/search_results.php:106 -#: ../../include/functions_reports.php:843 ../../include/functions_reports.php:847 -#: ../../include/functions_reports.php:853 ../../include/functions_reports.php:859 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/functions_treeview.php:405 -#: ../../include/functions_reporting_html.php:2313 -#: ../../include/functions_reporting_html.php:5335 -#: ../../enterprise/operation/agentes/tag_view.php:608 -#: ../../enterprise/include/functions_policies.php:3761 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1537 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1630 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1755 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:297 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:797 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 -#: ../../enterprise/meta/agentsearch.php:141 -#: ../../enterprise/godmode/services/services.service.php:903 -#: ../../enterprise/godmode/massive/massive_create_services.php:877 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../enterprise/godmode/policies/policies.php:519 -#: ../../enterprise/godmode/policies/policy_alerts.php:46 -#: ../../mobile/operation/agent.php:355 ../../mobile/operation/home.php:74 -#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/agents.php:98 -#: ../../mobile/operation/agents.php:407 ../../mobile/include/functions_web.php:26 -#: ../../godmode/menu.php:220 ../../godmode/massive/massive_copy_modules.php:216 -#: ../../godmode/agentes/configurar_agente.php:421 -#: ../../godmode/agentes/modificar_agente.php:823 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -#: ../../godmode/alerts/alert_commands.php:494 ../../godmode/alerts/alert_list.php:494 -#: ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/alerts/configure_alert_command.php:60 -#: ../../godmode/alerts/configure_alert_action.php:74 -#: ../../godmode/alerts/configure_alert_action.php:87 -#: ../../godmode/groups/configure_group.php:230 ../../godmode/groups/group_list.php:846 -msgid "Alerts" -msgstr "アラート" - -#: ../../views/calendar/special_days_edit.php:40 -msgid "Configure special day" -msgstr "特別日設定" - -#: ../../views/calendar/special_days_edit.php:80 ../../general/logon_ok.php:249 -#: ../../operation/reporting/graph_viewer.php:348 -#: ../../operation/events/events.build_table.php:705 -#: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../include/class/AuditLog.class.php:110 ../../include/functions_events.php:7120 -#: ../../include/functions_reporting.php:4009 ../../include/functions_reporting.php:4050 -#: ../../include/functions.php:3045 ../../include/functions_reporting_html.php:1749 -#: ../../include/functions_reporting_html.php:2534 -#: ../../include/functions_reporting_html.php:2543 -#: ../../include/functions_reporting_html.php:2548 -#: ../../include/functions_reporting_html.php:2557 -#: ../../include/functions_reporting_html.php:2562 -#: ../../include/functions_reporting_html.php:2569 -#: ../../include/functions_reporting_html.php:2618 -#: ../../include/functions_reporting_html.php:2691 -#: ../../include/functions_reporting_html.php:5677 -#: ../../enterprise/operation/agentes/agent_inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:418 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:877 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/class/ManageBackups.class.php:163 -#: ../../enterprise/include/functions_inventory.php:851 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting.php:2143 -#: ../../enterprise/include/functions_reporting.php:2180 -#: ../../enterprise/include/functions_reporting.php:2215 -#: ../../enterprise/include/functions_reporting.php:2233 -#: ../../enterprise/include/functions_reporting_pdf.php:712 -#: ../../extensions/insert_data.php:196 ../../mobile/operation/tactical.php:350 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2054 -msgid "Date" -msgstr "日付" - -#: ../../views/calendar/list.php:39 -msgid "Calendars" -msgstr "カレンダー" - -#: ../../views/calendar/list.php:92 ../../operation/events/events.build_table.php:146 -#: ../../operation/incidents/list_integriaims_incidents.php:515 -#: ../../include/functions_events.php:6653 -#: ../../enterprise/tools/ipam/ipam_excel.php:130 -#: ../../enterprise/tools/ipam/ipam_excel.php:199 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 -#: ../../extensions/api_checker.php:161 ../../godmode/setup/os.list.php:68 -#: ../../godmode/modules/module_list.php:61 -#: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/agentes/agent_manager.php:219 -#: ../../godmode/agentes/fields_manager.php:118 -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/alerts/alert_commands.php:656 -#: ../../godmode/groups/modu_group_list.php:251 ../../godmode/groups/group_list.php:840 -msgid "ID" -msgstr "ID" - -#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 -#: ../../include/class/ExternalTools.class.php:383 -#: ../../include/class/ConfigPEN.class.php:601 -#: ../../include/class/CredentialStore.class.php:807 -#: ../../include/functions_events.php:302 -#: ../../enterprise/views/ncm/agent/details.php:92 -#: ../../enterprise/views/ncm/snippets/list.php:71 -#: ../../enterprise/views/ncm/firmwares/list.php:77 -#: ../../enterprise/views/ncm/vendors/list.php:71 -#: ../../enterprise/views/ncm/templates/list.php:77 -#: ../../enterprise/views/ncm/models/list.php:73 -#: ../../enterprise/views/ipam/sites/list.php:49 -#: ../../enterprise/views/cluster/list.php:64 -#: ../../enterprise/include/class/AgentRepository.class.php:635 -#: ../../enterprise/include/class/LogSource.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2297 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2906 -#: ../../enterprise/include/class/DeploymentCenter.class.php:764 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 -#: ../../enterprise/extensions/vmware/vmware_view.php:1338 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../godmode/update_manager/update_manager.php:42 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -msgid "Options" -msgstr "オプション" - -#: ../../views/calendar/list.php:119 ../../operation/snmpconsole/snmp_view.php:600 -#: ../../operation/events/events.php:1135 ../../operation/events/events_list.php:767 -#: ../../include/ajax/module.php:292 ../../include/class/ConfigPEN.class.php:627 -#: ../../include/class/CredentialStore.class.php:845 -#: ../../enterprise/views/ncm/snippets/list.php:102 -#: ../../enterprise/views/ncm/firmwares/list.php:108 -#: ../../enterprise/views/ncm/vendors/list.php:94 -#: ../../enterprise/views/ncm/devices/list.php:155 -#: ../../enterprise/views/ncm/templates/list.php:108 -#: ../../enterprise/views/ncm/models/list.php:96 -#: ../../enterprise/views/ipam/sites/list.php:73 -#: ../../enterprise/views/cluster/list.php:96 -#: ../../enterprise/include/class/LogSource.class.php:656 -#: ../../enterprise/include/lib/Metaconsole/Node.php:623 -#: ../../enterprise/include/functions_events.php:117 -#: ../../enterprise/include/functions_ipam.php:1663 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3244 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:726 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 -#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241 -#: ../../mobile/operation/events.php:701 ../../mobile/operation/agents.php:253 -#: ../../godmode/update_manager/update_manager.history.php:67 -#: ../../godmode/snmpconsole/snmp_alert.php:1073 -#: ../../godmode/events/event_edit_filter.php:361 -msgid "Free search" -msgstr "検索語" - -#: ../../views/dashboard/slides.php:41 ../../operation/snmpconsole/snmp_view.php:741 -msgid "Exit fullscreen" -msgstr "全画面表示を終了" - -#: ../../views/dashboard/slides.php:181 -msgid "Change every" -msgstr "変更周期" - -#: ../../views/dashboard/slides.php:203 ../../include/functions.php:3867 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 -msgid "Previous" -msgstr "前へ" - -#: ../../views/dashboard/slides.php:218 -#: ../../enterprise/operation/agentes/transactional_map.php:402 -msgid "Stop" -msgstr "停止" - -#: ../../views/dashboard/slides.php:229 -msgid "Pause" -msgstr "一時停止" - -#: ../../views/dashboard/slides.php:240 ../../include/class/CustomNetScan.class.php:550 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:589 -#: ../../enterprise/include/class/Oracle.app.php:574 -#: ../../enterprise/include/class/DB2.app.php:567 -#: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Omnishell.class.php:643 -#: ../../enterprise/include/class/VMware.app.php:534 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:831 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1093 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1965 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2062 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:733 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../godmode/wizards/HostDevices.class.php:769 -#: ../../godmode/alerts/configure_alert_template.php:1181 -#: ../../godmode/alerts/configure_alert_template.php:1188 -msgid "Next" -msgstr "次" - -#: ../../views/dashboard/slides.php:252 -msgid "Mode Cell" -msgstr "モードセル" - -#: ../../views/dashboard/slides.php:258 -msgid "Mode Layout" -msgstr "モードレイアウト" - -#: ../../views/dashboard/cell.php:42 -msgid "New widget" -msgstr "新規ウィジェット" - -#: ../../views/dashboard/cell.php:56 -msgid "Configure widget" -msgstr "ウィジェット設定" - -#: ../../views/dashboard/cell.php:68 -msgid "Delete widget" -msgstr "ウェジェットの削除" - #: ../../views/dashboard/header.php:43 -#: ../../operation/visual_console/legacy_view.php:205 -#: ../../operation/visual_console/view.php:210 -#: ../../operation/gis_maps/render_view.php:136 -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../operation/reporting/reporting_viewer.php:186 -#: ../../include/class/AgentsAlerts.class.php:804 -#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../enterprise/meta/screens/screens.visualmap.php:274 +#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../extensions/disabled/matrix_events.php:35 #: ../../extensions/agents_modules.php:380 ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 +#: ../../include/class/AgentsAlerts.class.php:792 +#: ../../operation/visual_console/view.php:210 +#: ../../operation/visual_console/legacy_view.php:205 +#: ../../operation/gis_maps/render_view.php:136 +#: ../../operation/reporting/reporting_viewer.php:186 +#: ../../operation/reporting/graph_viewer.php:234 msgid "Full screen mode" msgstr "フルスクリーンモード" -#: ../../views/dashboard/header.php:57 -#: ../../operation/visual_console/legacy_view.php:253 +#: ../../views/dashboard/header.php:57 ../../extensions/agents_modules.php:531 +#: ../../include/class/AgentsAlerts.class.php:797 ../../operation/heatmap.php:210 #: ../../operation/visual_console/view.php:444 +#: ../../operation/visual_console/legacy_view.php:253 #: ../../operation/gis_maps/render_view.php:138 -#: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/reporting/reporting_viewer.php:195 ../../operation/heatmap.php:210 -#: ../../operation/events/events.php:771 ../../include/class/AgentsAlerts.class.php:809 -#: ../../extensions/agents_modules.php:531 +#: ../../operation/reporting/reporting_viewer.php:195 +#: ../../operation/reporting/graph_viewer.php:243 ../../operation/events/events.php:1295 msgid "Back to normal mode" msgstr "通常モードへ戻る" @@ -1925,24 +1867,27 @@ msgid "Update Dashboard" msgstr "ダッシュボードの更新" #: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102 -#: ../../views/dashboard/list.php:224 ../../operation/gis_maps/render_view.php:166 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 -#: ../../include/functions_config.php:1286 ../../include/functions_config.php:3178 -#: ../../enterprise/operation/services/services.service.php:161 -#: ../../enterprise/operation/services/services.list.php:237 -#: ../../enterprise/operation/services/services.list.php:552 -#: ../../enterprise/operation/services/services.service_map.php:116 -#: ../../enterprise/operation/services/services.table_services.php:159 +#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:643 +#: ../../enterprise/load_enterprise.php:1139 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/services/services.elements.php:886 +#: ../../enterprise/godmode/services/services.elements.php:897 +#: ../../enterprise/include/class/Omnishell.class.php:1499 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3050 +#: ../../enterprise/include/lib/Metaconsole/Node.php:406 #: ../../enterprise/operation/agentes/transactional_map.php:321 #: ../../enterprise/operation/agentes/manage_transmap_creation.php:64 -#: ../../enterprise/include/class/Omnishell.class.php:1499 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3006 -#: ../../enterprise/include/lib/Metaconsole/Node.php:458 -#: ../../enterprise/load_enterprise.php:638 ../../enterprise/load_enterprise.php:1134 -#: ../../enterprise/godmode/services/services.elements.php:843 -#: ../../enterprise/godmode/services/services.elements.php:854 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 -#: ../../godmode/massive/massive_edit_agents.php:981 +#: ../../enterprise/operation/services/services.service.php:161 +#: ../../enterprise/operation/services/services.service_map.php:151 +#: ../../enterprise/operation/services/services.list.php:237 +#: ../../enterprise/operation/services/services.list.php:552 +#: ../../enterprise/operation/services/services.table_services.php:159 +#: ../../godmode/snmpconsole/snmp_alert.php:1548 +#: ../../godmode/snmpconsole/snmp_alert.php:1563 +#: ../../godmode/massive/massive_edit_agents.php:1043 +#: ../../include/functions_config.php:1282 ../../include/functions_config.php:3193 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../operation/gis_maps/render_view.php:166 msgid "Ok" msgstr "正常" @@ -1962,26 +1907,25 @@ msgstr "スライドモード" msgid "Show link to public dashboard" msgstr "公開ダッシュボードへのリンク表示" -#: ../../views/dashboard/header.php:158 ../../general/login_page.php:75 -#: ../../general/login_page.php:318 -#: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:267 -#: ../../operation/visual_console/view.php:457 -#: ../../operation/visual_console/public_view.php:123 -#: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 ../../operation/heatmap.php:168 -#: ../../operation/events/events.php:783 ../../include/ajax/module.php:1054 -#: ../../include/ajax/heatmap.ajax.php:47 ../../include/class/AgentsAlerts.class.php:848 -#: ../../include/class/NetworkMap.class.php:2801 -#: ../../enterprise/views/ncm/devices/list.php:171 +#: ../../views/dashboard/header.php:158 ../../enterprise/views/ncm/devices/list.php:171 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:801 +#: ../../enterprise/godmode/servers/HA_cluster.php:416 #: ../../enterprise/include/class/Omnishell.class.php:544 #: ../../enterprise/include/class/Omnishell.class.php:1329 -#: ../../enterprise/include/functions_ipam.php:1396 -#: ../../enterprise/meta/advanced/policymanager.queue.php:238 -#: ../../enterprise/godmode/servers/HA_cluster.php:416 -#: ../../enterprise/godmode/policies/policy_queue.php:801 +#: ../../enterprise/include/functions_ipam.php:1398 #: ../../extensions/agents_modules.php:543 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:191 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:193 +#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1054 +#: ../../include/class/NetworkMap.class.php:2801 +#: ../../include/class/AgentsAlerts.class.php:836 ../../operation/heatmap.php:168 +#: ../../operation/visual_console/view.php:457 +#: ../../operation/visual_console/legacy_public_view.php:141 +#: ../../operation/visual_console/legacy_view.php:267 +#: ../../operation/visual_console/public_view.php:123 +#: ../../operation/gis_maps/render_view.php:160 +#: ../../operation/reporting/graph_viewer.php:399 ../../operation/events/events.php:1307 +#: ../../general/login_page.php:75 ../../general/login_page.php:318 msgid "Refresh" msgstr "リフレッシュ" @@ -1990,138 +1934,114 @@ msgid "Add Cell" msgstr "セルの追加" #: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42 -#: ../../enterprise/meta/general/main_menu.php:309 #: ../../enterprise/meta/general/main_header.php:222 +#: ../../enterprise/meta/general/main_menu.php:319 msgid "Dashboards" msgstr "ダッシュボード" #: ../../views/dashboard/header.php:278 -#: ../../operation/snmpconsole/snmp_statistics.php:66 -#: ../../operation/snmpconsole/snmp_view.php:107 ../../operation/events/events.php:939 -#: ../../include/functions_html.php:1894 ../../include/functions_html.php:1895 -#: ../../include/functions_html.php:2005 ../../include/functions_html.php:2006 -#: ../../include/functions_html.php:2185 ../../include/functions_html.php:2186 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../godmode/category/category.php:89 -#: ../../godmode/agentes/planned_downtime.editor.php:59 -#: ../../godmode/alerts/alert_list.php:494 +#: ../../godmode/agentes/planned_downtime.editor.php:60 +#: ../../godmode/alerts/alert_list.php:494 ../../godmode/category/category.php:89 +#: ../../include/functions_html.php:1906 ../../include/functions_html.php:1907 +#: ../../include/functions_html.php:2017 ../../include/functions_html.php:2018 +#: ../../include/functions_html.php:2197 ../../include/functions_html.php:2198 +#: ../../include/functions_html.php:6344 ../../include/functions_html.php:6345 +#: ../../operation/snmpconsole/snmp_statistics.php:66 +#: ../../operation/snmpconsole/snmp_view.php:107 ../../operation/events/events.php:1463 msgid "List" msgstr "一覧" -#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 -msgid "Add widget" -msgstr "ウィジェット追加" - -#: ../../views/dashboard/widget.php:45 -msgid "Please select widget" -msgstr "ウィジェットを選択してください" - -#: ../../views/dashboard/jsLayout.php:42 ../../operation/snmpconsole/snmp_view.php:1298 -#: ../../operation/events/events.php:2763 ../../extensions/agents_modules.php:76 -msgid "Until next" -msgstr "次まで" - -#: ../../views/dashboard/formDashboard.php:91 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 -#: ../../godmode/reporting/reporting_builder.php:938 -msgid "Private" -msgstr "非公開" - -#: ../../views/dashboard/formDashboard.php:122 -#: ../../enterprise/godmode/services/services.service.php:728 -#: ../../enterprise/godmode/reporting/visual_console_template.php:272 -#: ../../enterprise/godmode/massive/massive_create_services.php:809 -msgid "Favourite" -msgstr "お気に入り" - -#: ../../views/dashboard/list.php:53 ../../operation/messages/message_list.php:113 -#: ../../operation/messages/message_list.php:135 ../../operation/gis_maps/gis_map.php:86 -#: ../../operation/reporting/graph_viewer.php:57 -#: ../../operation/reporting/graph_viewer.php:65 -#: ../../operation/snmpconsole/snmp_view.php:155 -#: ../../operation/incidents/list_integriaims_incidents.php:295 -#: ../../include/class/ConfigPEN.class.php:486 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 -#: ../../enterprise/tools/ipam/ipam_action.php:102 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 -#: ../../enterprise/operation/agentes/transactional_map.php:182 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 -#: ../../enterprise/include/class/DatabaseHA.class.php:1057 +#: ../../views/dashboard/list.php:53 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288 #: ../../enterprise/meta/advanced/metasetup.relations.php:86 #: ../../enterprise/meta/advanced/links.php:84 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/modules/local_components.php:417 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/reporting/graph_template_list.php:155 #: ../../enterprise/godmode/reporting/graph_template_list.php:182 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:424 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 -#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:120 -#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 +#: ../../enterprise/include/class/DatabaseHA.class.php:1057 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 +#: ../../enterprise/tools/ipam/ipam_action.php:102 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 +#: ../../extensions/files_repo.php:184 ../../godmode/modules/manage_nc_groups.php:152 #: ../../godmode/modules/manage_network_components.php:552 -#: ../../godmode/modules/manage_nc_groups.php:152 +#: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:293 +#: ../../godmode/users/user_list.php:340 ../../godmode/users/configure_user.php:152 +#: ../../godmode/users/configure_user.php:172 +#: ../../godmode/agentes/planned_downtime.list.php:242 +#: ../../godmode/netflow/nf_item_list.php:120 ../../godmode/netflow/nf_item_list.php:148 +#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/massive/massive_delete_action_alerts.php:170 +#: ../../godmode/massive/massive_delete_modules.php:162 +#: ../../godmode/massive/massive_delete_alerts.php:201 +#: ../../godmode/alerts/alert_actions.php:205 +#: ../../godmode/alerts/alert_commands.php:690 +#: ../../godmode/alerts/alert_templates.php:252 ../../godmode/alerts/alert_list.php:232 +#: ../../godmode/alerts/alert_list.php:339 ../../godmode/setup/news.php:120 +#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 #: ../../godmode/reporting/map_builder.php:209 ../../godmode/reporting/graphs.php:150 #: ../../godmode/reporting/graphs.php:162 ../../godmode/reporting/graphs.php:213 #: ../../godmode/reporting/reporting_builder.php:668 -#: ../../godmode/snmpconsole/snmp_alert.php:650 -#: ../../godmode/snmpconsole/snmp_filters.php:180 #: ../../godmode/events/event_filter.php:69 ../../godmode/events/event_filter.php:96 -#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 -#: ../../godmode/netflow/nf_item_list.php:120 ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/massive/massive_delete_modules.php:162 -#: ../../godmode/massive/massive_delete_action_alerts.php:170 -#: ../../godmode/massive/massive_delete_alerts.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:242 -#: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_templates.php:252 -#: ../../godmode/alerts/alert_commands.php:604 ../../godmode/alerts/alert_list.php:232 -#: ../../godmode/alerts/alert_list.php:339 ../../godmode/users/user_list.php:293 -#: ../../godmode/users/user_list.php:340 ../../godmode/users/configure_user.php:137 -#: ../../godmode/users/configure_user.php:157 ../../godmode/users/profile_list.php:133 +#: ../../include/class/ConfigPEN.class.php:486 +#: ../../operation/messages/message_list.php:113 +#: ../../operation/messages/message_list.php:135 +#: ../../operation/snmpconsole/snmp_view.php:155 ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/list_integriaims_incidents.php:295 +#: ../../operation/reporting/graph_viewer.php:57 +#: ../../operation/reporting/graph_viewer.php:65 msgid "Successfully deleted" msgstr "削除しました。" -#: ../../views/dashboard/list.php:54 ../../operation/messages/message_list.php:114 -#: ../../operation/gis_maps/gis_map.php:87 ../../operation/snmpconsole/snmp_view.php:156 -#: ../../operation/agentes/pandora_networkmap.php:547 -#: ../../operation/incidents/list_integriaims_incidents.php:296 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 -#: ../../enterprise/tools/ipam/ipam_action.php:100 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 -#: ../../enterprise/operation/agentes/transactional_map.php:183 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 +#: ../../views/dashboard/list.php:54 #: ../../enterprise/godmode/modules/local_components.php:418 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 -#: ../../enterprise/godmode/policies/policy_agents.php:104 -#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/policies/policy_alerts.php:256 +#: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_modules.php:1313 #: ../../enterprise/godmode/policies/policy_external_alerts.php:147 #: ../../enterprise/godmode/policies/policy_external_alerts.php:174 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 -#: ../../enterprise/godmode/policies/policy_alerts.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:100 -#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:121 -#: ../../godmode/setup/gis.php:59 +#: ../../enterprise/godmode/policies/policy_agents.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:139 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 +#: ../../enterprise/operation/agentes/transactional_map.php:183 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 +#: ../../enterprise/tools/ipam/ipam_action.php:100 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 +#: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_network_components.php:553 -#: ../../godmode/reporting/reporting_builder.php:669 +#: ../../godmode/users/configure_user.php:153 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_templates.php:253 -#: ../../godmode/alerts/alert_commands.php:605 ../../godmode/alerts/alert_list.php:233 -#: ../../godmode/alerts/alert_list.php:340 ../../godmode/users/configure_user.php:138 +#: ../../godmode/alerts/alert_commands.php:691 +#: ../../godmode/alerts/alert_templates.php:253 ../../godmode/alerts/alert_list.php:233 +#: ../../godmode/alerts/alert_list.php:340 ../../godmode/setup/news.php:121 +#: ../../godmode/setup/gis.php:59 ../../godmode/reporting/reporting_builder.php:669 +#: ../../operation/agentes/pandora_networkmap.php:547 +#: ../../operation/messages/message_list.php:114 +#: ../../operation/snmpconsole/snmp_view.php:156 ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/list_integriaims_incidents.php:296 msgid "Could not be deleted" msgstr "削除できませんでした。" @@ -2145,193 +2065,196 @@ msgstr "セル" msgid "Favorite" msgstr "お気に入り" -#: ../../views/dashboard/list.php:99 ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/snmpconsole/snmp_statistics.php:54 -#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/heatmap.php:87 -#: ../../operation/events/events.php:826 -#: ../../operation/agentes/networkmap.dinamic.php:115 +#: ../../views/dashboard/list.php:99 ../../include/class/AgentsAlerts.class.php:822 +#: ../../operation/heatmap.php:87 ../../operation/agentes/networkmap.dinamic.php:115 #: ../../operation/agentes/pandora_networkmap.view.php:2279 -#: ../../include/class/AgentsAlerts.class.php:834 +#: ../../operation/snmpconsole/snmp_statistics.php:54 +#: ../../operation/snmpconsole/snmp_browser.php:68 +#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/events/events.php:1350 msgid "Full screen" msgstr "全画面" -#: ../../views/dashboard/list.php:102 ../../operation/agentes/pandora_networkmap.php:712 -#: ../../operation/agentes/pandora_networkmap.php:799 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 +#: ../../views/dashboard/list.php:102 #: ../../enterprise/godmode/policies/policy_modules.php:1673 -#: ../../enterprise/godmode/policies/policies.php:570 -#: ../../godmode/reporting/map_builder.php:387 -#: ../../godmode/agentes/planned_downtime.list.php:623 -#: ../../godmode/agentes/planned_downtime.list.php:749 -#: ../../godmode/agentes/planned_downtime.list.php:795 +#: ../../enterprise/godmode/policies/policies.php:574 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 +#: ../../godmode/agentes/planned_downtime.list.php:632 +#: ../../godmode/agentes/planned_downtime.list.php:759 +#: ../../godmode/agentes/planned_downtime.list.php:805 #: ../../godmode/alerts/alert_actions.php:330 +#: ../../godmode/reporting/map_builder.php:387 +#: ../../operation/agentes/pandora_networkmap.php:712 +#: ../../operation/agentes/pandora_networkmap.php:799 msgid "Copy" msgstr "コピー" -#: ../../views/dashboard/list.php:103 ../../operation/messages/message_list.php:201 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/messages/message_list.php:293 -#: ../../operation/visual_console/view.php:733 ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/snmpconsole/snmp_view.php:1038 -#: ../../operation/snmpconsole/snmp_view.php:1051 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/snmpconsole/snmp_view.php:1269 -#: ../../operation/agentes/pandora_networkmap.php:714 -#: ../../operation/agentes/pandora_networkmap.php:801 -#: ../../operation/incidents/list_integriaims_incidents.php:555 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 -#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/ModuleTemplates.class.php:1211 -#: ../../include/class/ManageNetScanScripts.class.php:405 -#: ../../include/class/ConfigPEN.class.php:264 -#: ../../include/class/CredentialStore.class.php:1102 -#: ../../include/class/CredentialStore.class.php:1290 -#: ../../include/class/CalendarManager.class.php:686 -#: ../../include/class/NetworkMap.class.php:2798 -#: ../../include/functions_container.php:191 ../../include/functions_container.php:325 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 -#: ../../enterprise/tools/ipam/ipam_ajax.php:136 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 -#: ../../enterprise/operation/services/services.list.php:655 -#: ../../enterprise/operation/agentes/transactional_map.php:483 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 -#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../views/dashboard/list.php:103 +#: ../../enterprise/meta/advanced/servers.build_table.php:133 +#: ../../enterprise/meta/advanced/metasetup.visual.php:434 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/links.php:157 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:319 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 +#: ../../enterprise/meta/include/functions_autoprovision.php:517 +#: ../../enterprise/meta/include/functions_autoprovision.php:518 +#: ../../enterprise/meta/include/functions_autoprovision.php:685 +#: ../../enterprise/meta/include/functions_autoprovision.php:686 +#: ../../enterprise/meta/include/functions_wizard_meta.php:395 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 +#: ../../enterprise/godmode/modules/local_components.php:698 +#: ../../enterprise/godmode/modules/local_components.php:715 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 +#: ../../enterprise/godmode/agentes/inventory_manager.php:249 +#: ../../enterprise/godmode/agentes/plugins_manager.php:196 +#: ../../enterprise/godmode/agentes/plugins_manager.php:281 +#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/godmode/policies/policy_alerts.php:539 +#: ../../enterprise/godmode/policies/policy_modules.php:1586 +#: ../../enterprise/godmode/policies/policy_modules.php:1618 +#: ../../enterprise/godmode/policies/policy_queue.php:611 +#: ../../enterprise/godmode/policies/policy_queue.php:675 +#: ../../enterprise/godmode/policies/policy_queue.php:722 +#: ../../enterprise/godmode/policies/policies.php:595 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:559 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 +#: ../../enterprise/godmode/policies/policy_agents.php:1083 +#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:415 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 +#: ../../enterprise/godmode/setup/setup_acl.php:595 +#: ../../enterprise/godmode/reporting/graph_template_list.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 +#: ../../enterprise/godmode/reporting/visual_console_template.php:273 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/include/functions_tasklist.php:643 +#: ../../enterprise/include/functions_tasklist.php:678 #: ../../enterprise/include/ajax/transactional.ajax.php:119 #: ../../enterprise/include/ajax/transactional.ajax.php:208 -#: ../../enterprise/include/class/AgentRepository.class.php:775 -#: ../../enterprise/include/class/AgentRepository.class.php:810 -#: ../../enterprise/include/class/LogSource.class.php:772 -#: ../../enterprise/include/class/LogSource.class.php:894 -#: ../../enterprise/include/class/ManageBackups.class.php:275 -#: ../../enterprise/include/class/Omnishell.class.php:1163 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2397 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 +#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 #: ../../enterprise/include/class/NetworkConfigManager.class.php:644 #: ../../enterprise/include/class/NetworkConfigManager.class.php:800 #: ../../enterprise/include/class/NetworkConfigManager.class.php:976 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1123 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1331 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 -#: ../../enterprise/include/functions_tasklist.php:615 -#: ../../enterprise/include/functions_tasklist.php:650 +#: ../../enterprise/include/class/AgentRepository.class.php:818 +#: ../../enterprise/include/class/AgentRepository.class.php:853 +#: ../../enterprise/include/class/Omnishell.class.php:1163 +#: ../../enterprise/include/class/LogSource.class.php:772 +#: ../../enterprise/include/class/LogSource.class.php:894 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2441 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3096 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3416 +#: ../../enterprise/include/class/ManageBackups.class.php:275 #: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1252 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1253 -#: ../../enterprise/meta/include/functions_autoprovision.php:517 -#: ../../enterprise/meta/include/functions_autoprovision.php:518 -#: ../../enterprise/meta/include/functions_autoprovision.php:685 -#: ../../enterprise/meta/include/functions_autoprovision.php:686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:301 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:467 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:818 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 -#: ../../enterprise/meta/advanced/policymanager.queue.php:220 -#: ../../enterprise/meta/advanced/policymanager.queue.php:262 -#: ../../enterprise/meta/advanced/policymanager.queue.php:319 -#: ../../enterprise/meta/advanced/metasetup.relations.php:589 -#: ../../enterprise/meta/advanced/metasetup.relations.php:590 -#: ../../enterprise/meta/advanced/metasetup.relations.php:634 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:434 -#: ../../enterprise/meta/advanced/links.php:157 -#: ../../enterprise/godmode/setup/setup_acl.php:595 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/modules/local_components.php:698 -#: ../../enterprise/godmode/modules/local_components.php:715 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 -#: ../../enterprise/godmode/reporting/visual_console_template.php:273 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 -#: ../../enterprise/godmode/reporting/mysql_builder.php:97 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 -#: ../../enterprise/godmode/reporting/graph_template_list.php:246 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 -#: ../../enterprise/godmode/massive/massive_delete_services.php:92 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687 -#: ../../enterprise/godmode/agentes/plugins_manager.php:196 -#: ../../enterprise/godmode/agentes/plugins_manager.php:281 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 -#: ../../enterprise/godmode/policies/policy_queue.php:611 -#: ../../enterprise/godmode/policies/policy_queue.php:675 -#: ../../enterprise/godmode/policies/policy_queue.php:722 -#: ../../enterprise/godmode/policies/policy_modules.php:1586 -#: ../../enterprise/godmode/policies/policy_modules.php:1618 -#: ../../enterprise/godmode/policies/policies.php:591 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:550 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_alerts.php:539 -#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1193 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1194 +#: ../../enterprise/operation/agentes/transactional_map.php:483 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 +#: ../../enterprise/operation/services/massive/services.delete.php:118 +#: ../../enterprise/operation/services/services.list.php:655 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 +#: ../../enterprise/tools/ipam/ipam_ajax.php:136 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 #: ../../extensions/files_repo/files_repo_list.php:151 -#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/setup/setup_visuals.php:1320 -#: ../../godmode/setup/setup_visuals.php:1359 ../../godmode/setup/setup_visuals.php:1379 -#: ../../godmode/setup/news.php:251 ../../godmode/setup/gis.php:70 -#: ../../godmode/setup/links.php:146 ../../godmode/servers/servers.build_table.php:259 +#: ../../godmode/modules/manage_network_templates_form.php:254 +#: ../../godmode/modules/manage_nc_groups.php:276 +#: ../../godmode/modules/manage_nc_groups.php:305 #: ../../godmode/modules/manage_network_components.php:868 #: ../../godmode/modules/manage_network_components.php:869 #: ../../godmode/modules/manage_network_components.php:898 #: ../../godmode/modules/manage_network_templates.php:287 #: ../../godmode/modules/manage_network_templates.php:300 -#: ../../godmode/modules/manage_network_templates_form.php:254 -#: ../../godmode/modules/manage_nc_groups.php:276 -#: ../../godmode/modules/manage_nc_groups.php:305 ../../godmode/extensions.php:257 -#: ../../godmode/extensions.php:259 ../../godmode/reporting/map_builder.php:388 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:367 -#: ../../godmode/reporting/graphs.php:368 ../../godmode/reporting/graphs.php:394 +#: ../../godmode/groups/group_list.php:937 ../../godmode/groups/group_list.php:938 +#: ../../godmode/groups/modu_group_list.php:254 ../../godmode/extensions.php:257 +#: ../../godmode/extensions.php:259 ../../godmode/users/profile_list.php:443 +#: ../../godmode/users/user_list.php:825 ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/planned_downtime.list.php:634 +#: ../../godmode/agentes/planned_downtime.list.php:784 +#: ../../godmode/agentes/planned_downtime.editor.php:1266 +#: ../../godmode/agentes/planned_downtime.editor.php:1269 +#: ../../godmode/agentes/planned_downtime.editor.php:1319 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/module_manager_editor_common.php:1307 +#: ../../godmode/agentes/module_manager.php:875 +#: ../../godmode/agentes/module_manager.php:1253 +#: ../../godmode/netflow/nf_item_list.php:263 ../../godmode/netflow/nf_item_list.php:273 +#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 +#: ../../godmode/snmpconsole/snmp_alert.php:1313 +#: ../../godmode/snmpconsole/snmp_filters.php:301 +#: ../../godmode/snmpconsole/snmp_filters.php:312 +#: ../../godmode/alerts/alert_actions.php:331 ../../godmode/alerts/alert_actions.php:449 +#: ../../godmode/alerts/alert_list.list.php:926 +#: ../../godmode/alerts/alert_templates.php:446 ../../godmode/setup/news.php:251 +#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146 +#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/setup/setup_visuals.php:1374 +#: ../../godmode/setup/setup_visuals.php:1413 ../../godmode/setup/setup_visuals.php:1433 #: ../../godmode/reporting/reporting_builder.list_items.php:629 #: ../../godmode/reporting/reporting_builder.list_items.php:667 #: ../../godmode/reporting/reporting_builder.list_items.php:690 #: ../../godmode/reporting/reporting_builder.list_items.php:791 #: ../../godmode/reporting/create_container.php:630 #: ../../godmode/reporting/create_container.php:683 -#: ../../godmode/reporting/visual_console_builder.elements.php:763 -#: ../../godmode/reporting/reporting_builder.php:1209 -#: ../../godmode/reporting/reporting_builder.php:1293 +#: ../../godmode/reporting/map_builder.php:388 +#: ../../godmode/reporting/map_builder.php:512 +#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:367 +#: ../../godmode/reporting/graphs.php:368 ../../godmode/reporting/graphs.php:394 #: ../../godmode/reporting/graph_builder.graph_editor.php:216 #: ../../godmode/reporting/graph_builder.graph_editor.php:256 -#: ../../godmode/snmpconsole/snmp_alert.php:1276 -#: ../../godmode/snmpconsole/snmp_alert.php:1324 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/reporting/visual_console_builder.elements.php:763 +#: ../../godmode/reporting/reporting_builder.php:1207 +#: ../../godmode/reporting/reporting_builder.php:1291 #: ../../godmode/events/event_filter.php:192 ../../godmode/events/event_filter.php:211 -#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 -#: ../../godmode/netflow/nf_item_list.php:263 ../../godmode/netflow/nf_item_list.php:273 -#: ../../godmode/agentes/module_manager.php:868 -#: ../../godmode/agentes/module_manager.php:1228 -#: ../../godmode/agentes/module_manager_editor_common.php:1307 -#: ../../godmode/agentes/planned_downtime.editor.php:962 -#: ../../godmode/agentes/planned_downtime.editor.php:965 -#: ../../godmode/agentes/planned_downtime.editor.php:1015 -#: ../../godmode/agentes/planned_downtime.list.php:625 -#: ../../godmode/agentes/planned_downtime.list.php:774 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/alerts/alert_list.list.php:912 -#: ../../godmode/alerts/alert_actions.php:331 ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_templates.php:445 ../../godmode/users/user_list.php:825 -#: ../../godmode/users/profile_list.php:443 ../../godmode/groups/modu_group_list.php:254 -#: ../../godmode/groups/group_list.php:937 ../../godmode/groups/group_list.php:938 +#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/servers/servers.build_table.php:259 +#: ../../include/functions_cron.php:924 ../../include/functions_cron.php:952 +#: ../../include/class/ConfigPEN.class.php:264 +#: ../../include/class/SatelliteAgent.class.php:714 +#: ../../include/class/NetworkMap.class.php:2798 +#: ../../include/class/ManageNetScanScripts.class.php:405 +#: ../../include/class/CredentialStore.class.php:1102 +#: ../../include/class/CredentialStore.class.php:1290 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/ModuleTemplates.class.php:1211 +#: ../../include/class/CalendarManager.class.php:737 +#: ../../include/functions_container.php:191 ../../include/functions_container.php:325 +#: ../../operation/visual_console/view.php:733 +#: ../../operation/agentes/pandora_networkmap.php:714 +#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../operation/messages/message_list.php:201 +#: ../../operation/messages/message_list.php:272 +#: ../../operation/messages/message_list.php:275 +#: ../../operation/messages/message_list.php:293 +#: ../../operation/snmpconsole/snmp_view.php:1038 +#: ../../operation/snmpconsole/snmp_view.php:1051 +#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/snmpconsole/snmp_view.php:1269 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 +#: ../../operation/incidents/list_integriaims_incidents.php:555 msgid "Delete" msgstr "削除" @@ -2344,100 +2267,10345 @@ msgstr "個人のみ (%s)" msgid "Create a new dashboard" msgstr "ダッシュボードの新規作成" -#: ../../views/dashboard/list.php:233 +#: ../../views/dashboard/list.php:232 msgid "New dashboard" msgstr "新規ダッシュボード" -#: ../../general/maintenance.php:36 -msgid "Maintenance tasks in progress" -msgstr "メンテナンスタスク実行中" +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:84 +msgid "Add widget" +msgstr "ウィジェット追加" -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 -msgid "You will be automatically redirected when all tasks finish" -msgstr "全タスクが完了すると自動的にリダイレクトされます" +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "ウィジェットを選択してください" -#: ../../general/logon_failed.php:18 ../../general/register.php:154 -#: ../../operation/users/user_edit.php:1061 ../../operation/users/user_edit.php:1127 -#: ../../operation/users/user_edit.php:1198 ../../include/ajax/double_auth.ajax.php:252 -#: ../../include/ajax/double_auth.ajax.php:350 -#: ../../include/ajax/double_auth.ajax.php:396 -#: ../../include/ajax/double_auth.ajax.php:512 -#: ../../enterprise/include/functions_login.php:485 -#: ../../godmode/users/configure_user.php:1822 -#: ../../godmode/users/configure_user.php:1892 -#: ../../godmode/users/configure_user.php:1964 -msgid "Authentication error" -msgstr "認証エラー" +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 +#: ../../operation/snmpconsole/snmp_view.php:1298 ../../operation/events/events.php:2924 +msgid "Until next" +msgstr "次まで" -#: ../../general/logon_failed.php:30 +#: ../../views/dashboard/formDashboard.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 +#: ../../godmode/reporting/reporting_builder.php:936 +msgid "Private" +msgstr "非公開" + +#: ../../views/dashboard/formDashboard.php:122 +#: ../../enterprise/godmode/services/services.service.php:769 +#: ../../enterprise/godmode/reporting/visual_console_template.php:272 +#: ../../enterprise/operation/services/massive/services.create.php:833 +msgid "Favourite" +msgstr "お気に入り" + +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "新規ウィジェット" + +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "ウィジェット設定" + +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "ウェジェットの削除" + +#: ../../views/dashboard/slides.php:41 ../../operation/snmpconsole/snmp_view.php:741 +msgid "Exit fullscreen" +msgstr "全画面表示を終了" + +#: ../../views/dashboard/slides.php:181 +msgid "Change every" +msgstr "変更周期" + +#: ../../views/dashboard/slides.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 +#: ../../include/functions.php:3875 +msgid "Previous" +msgstr "前へ" + +#: ../../views/dashboard/slides.php:218 +#: ../../enterprise/operation/agentes/transactional_map.php:402 +#: ../../operation/menu.php:432 +msgid "Stop" +msgstr "停止" + +#: ../../views/dashboard/slides.php:229 +msgid "Pause" +msgstr "一時停止" + +#: ../../views/dashboard/slides.php:240 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:534 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/DB2.app.php:567 +#: ../../enterprise/include/class/SAP.app.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:574 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:832 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1094 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1966 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1234 +#: ../../godmode/alerts/configure_alert_template.php:1181 +#: ../../godmode/alerts/configure_alert_template.php:1188 +#: ../../godmode/wizards/HostDevices.class.php:769 +#: ../../include/class/CustomNetScan.class.php:550 +msgid "Next" +msgstr "次" + +#: ../../views/dashboard/slides.php:252 +msgid "Boxed mode" +msgstr "ボックスモード" + +#: ../../views/dashboard/slides.php:254 msgid "" -"Either, your password or your login are incorrect. Please check your CAPS LOCK key, " -"username and password are case SeNSiTiVe.

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

    ログインの失敗は Pandora FMS システムログに記録され他" -"のユーザから確認されます。問題があれば管理者へ連絡してください。" +"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 クリッ" +"クしてシングルスクリーンモードに変更します。" -#: ../../general/register.php:157 ../../operation/users/user_edit.php:1064 -#: ../../operation/users/user_edit.php:1130 ../../include/ajax/double_auth.ajax.php:255 -#: ../../include/ajax/double_auth.ajax.php:353 -#: ../../include/ajax/double_auth.ajax.php:399 -#: ../../include/ajax/double_auth.ajax.php:516 -#: ../../include/class/Diagnostics.class.php:1827 -#: ../../include/functions_events.php:2928 ../../include/functions_events.php:3283 -#: ../../include/functions_ui.php:290 ../../include/functions.php:1236 +#: ../../views/dashboard/slides.php:259 +msgid "Single screen" +msgstr "単一画面" + +#: ../../views/dashboard/slides.php:261 +msgid "" +"This mode will show each widget in a screen, rotating between elements in each " +"dashboard. Click to change to boxed mode." +msgstr "" +"このモードでは、各ウィジェットが画面に表示され、各ダッシュボードの要素間でローテートし" +"ます。 クリックしてボックスモードに変更します。" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/devices/list.php:67 +#: ../../enterprise/views/ncm/firmwares/list.php:32 +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +#: ../../enterprise/views/ncm/models/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1238 +#: ../../include/functions_events.php:2974 +msgid "Network configuration manager" +msgstr "ネットワーク設定管理" + +#: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/edit.php:42 +msgid "Snippets" +msgstr "一部分" + +#: ../../enterprise/views/ncm/snippets/list.php:94 +#: ../../enterprise/views/ncm/templates/list.php:100 +#: ../../enterprise/views/ncm/devices/list.php:147 +#: ../../enterprise/views/ncm/firmwares/list.php:100 +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:436 +#: ../../enterprise/godmode/policies/policy_agents.php:468 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../enterprise/include/class/Omnishell.class.php:891 +#: ../../include/ajax/events.php:768 ../../include/functions_html.php:1244 +#: ../../include/functions_html.php:1397 ../../include/functions_snmp_browser.php:1486 +msgid "Filter group" +msgstr "フィルターグループ" + +#: ../../enterprise/views/ncm/snippets/edit.php:73 +#: ../../enterprise/views/ncm/templates/edit.php:73 +#: ../../enterprise/views/ncm/firmwares/edit.php:72 +msgid "Script not defined" +msgstr "スクリプトが定義されていません" + +#: ../../enterprise/views/ncm/snippets/edit.php:91 +#: ../../enterprise/views/ncm/templates/edit.php:160 +#: ../../enterprise/views/ncm/templates/edit.php:188 +#: ../../enterprise/views/ncm/templates/edit.php:216 +#: ../../enterprise/views/ncm/templates/edit.php:244 +#: ../../enterprise/views/ncm/templates/edit.php:271 +#: ../../enterprise/views/ncm/templates/edit.php:298 +msgid "Script details" +msgstr "スクリプト詳細" + +#: ../../enterprise/views/ncm/snippets/edit.php:138 +#: ../../enterprise/views/ncm/agent/manage.php:135 +#: ../../enterprise/views/ncm/agent/manage.php:148 +#: ../../enterprise/views/ncm/agent/manage.php:181 +#: ../../enterprise/views/ncm/agent/manage.php:274 +#: ../../enterprise/views/ncm/agent/manage.php:309 +#: ../../enterprise/views/ncm/agent/details.php:256 +#: ../../enterprise/views/ncm/templates/edit.php:347 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:217 +#: ../../enterprise/operation/services/massive/service.create.elements.php:351 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:259 +#: ../../include/class/ExternalTools.class.php:537 +msgid "Please select" +msgstr "選択してください" + +#: ../../enterprise/views/ncm/agent/manage.php:57 +msgid "For instance Cisco" +msgstr "例えば Cisco" + +#: ../../enterprise/views/ncm/agent/manage.php:59 +msgid "Device manufacturer" +msgstr "デバイス製造元" + +#: ../../enterprise/views/ncm/agent/manage.php:87 +msgid "For instance Catalyst 9400" +msgstr "例えば Calalyst 9400" + +#: ../../enterprise/views/ncm/agent/manage.php:89 +msgid "Device model" +msgstr "デバイスモデル" + +#: ../../enterprise/views/ncm/agent/manage.php:102 +#: ../../godmode/agentes/module_manager_editor_network.php:482 +msgid "Connection method" +msgstr "接続方法" + +#: ../../enterprise/views/ncm/agent/manage.php:107 +msgid "connect using SSH" +msgstr "SSH を用いて接続" + +#: ../../enterprise/views/ncm/agent/manage.php:108 +msgid "connect using telnet" +msgstr "telnet を用いて接続" + +#: ../../enterprise/views/ncm/agent/manage.php:118 +#: ../../enterprise/meta/include/functions_meta.php:2092 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 +#: ../../enterprise/godmode/setup/setup_history.php:185 +#: ../../enterprise/godmode/servers/manage_export_form.php:121 +#: ../../enterprise/include/class/Azure.cloud.php:813 +#: ../../enterprise/include/class/VMware.app.php:632 +#: ../../enterprise/include/class/Aws.S3.php:574 +#: ../../enterprise/include/class/Aws.cloud.php:556 ../../extensions/quick_shell.php:181 +#: ../../godmode/modules/manage_network_components_form_network.php:53 +#: ../../godmode/agentes/module_manager_editor_network.php:126 +#: ../../godmode/massive/massive_edit_modules.php:1145 +#: ../../godmode/servers/modificar_server.php:84 ../../include/functions_config.php:1543 +#: ../../include/class/AgentWizard.class.php:638 +#: ../../include/functions_snmp_browser.php:714 +msgid "Port" +msgstr "ポート番号" + +#: ../../enterprise/views/ncm/agent/manage.php:131 +msgid "Credentials to access device" +msgstr "デバイスにアクセスするための認証情報" + +#: ../../enterprise/views/ncm/agent/manage.php:144 +msgid "Credentials to administrate device" +msgstr "デバイスを管理するための認証情報" + +#: ../../enterprise/views/ncm/agent/manage.php:177 +msgid "NCM template to be used" +msgstr "利用する NCM テンプレート" + +#: ../../enterprise/views/ncm/agent/manage.php:190 +msgid "Backup schedule (if defined)" +msgstr "バックアップスケジュール (定義されている場合)" + +#: ../../enterprise/views/ncm/agent/manage.php:195 +msgid "No schedule" +msgstr "スケジュールがありません" + +#: ../../enterprise/views/ncm/agent/manage.php:197 +msgid "Once a day" +msgstr "1日一回" + +#: ../../enterprise/views/ncm/agent/manage.php:198 +msgid "Once a week" +msgstr "1週間に一回" + +#: ../../enterprise/views/ncm/agent/manage.php:199 +msgid "Once a month" +msgstr "1ヶ月に一回" + +#: ../../enterprise/views/ncm/agent/manage.php:218 +msgid "Launch event if configuration changes" +msgstr "設定が変更された場合にイベントを発生させる" + +#: ../../enterprise/views/ncm/agent/manage.php:243 +msgid "NCM state" +msgstr "NCM 状態" + +#: ../../enterprise/views/ncm/agent/manage.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 +#: ../../enterprise/godmode/reporting/mysql_builder.php:240 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:521 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:229 +#: ../../godmode/reporting/reporting_builder.main.php:45 +#: ../../operation/agentes/graphs.php:342 +msgid "Save" +msgstr "保存" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 +msgid "Select firmware file to update to" +msgstr "アップデートするためのファームウエアファイル選択" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 +msgid "Transfer from url" +msgstr "転送元 URL" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 +msgid "Target file name" +msgstr "対象ファイル名" + +#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 +msgid "Customize execution" +msgstr "実行カスタマイズ" + +#: ../../enterprise/views/ncm/agent/details.php:89 +msgid "Script type" +msgstr "スクリプトタイプ" + +#: ../../enterprise/views/ncm/agent/details.php:90 +#: ../../enterprise/include/class/CommandCenter.class.php:468 +#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 +#: ../../include/functions_reporting_html.php:4206 +#: ../../include/functions_reporting_html.php:4353 +#: ../../include/functions_reporting_html.php:4694 +#: ../../include/functions_reporting_html.php:4705 ../../include/functions_db.php:1918 +msgid "Result" +msgstr "結果" + +#: ../../enterprise/views/ncm/agent/details.php:91 +msgid "Execution last timestamp" +msgstr "最新の実行日時" + +#: ../../enterprise/views/ncm/agent/details.php:107 +msgid "Retrieve running configuration" +msgstr "running config の取得" + +#: ../../enterprise/views/ncm/agent/details.php:120 +#: ../../enterprise/views/ncm/agent/details.php:383 +msgid "Restore from backup" +msgstr "バックアップからリストア" + +#: ../../enterprise/views/ncm/agent/details.php:133 +#: ../../enterprise/views/ncm/agent/details.php:325 +#: ../../enterprise/include/lib/NetworkManager.php:85 +msgid "Retrieve firmware version" +msgstr "ファームウエアバージョンの取得" + +#: ../../enterprise/views/ncm/agent/details.php:172 +msgid "Running without a backup" +msgstr "バックアップ無しで実行" + +#: ../../enterprise/views/ncm/agent/details.php:181 +msgid "Latest configuration retrieved is different from backed one" +msgstr "取得された最新の設定は、バックアップとは異なります" + +#: ../../enterprise/views/ncm/agent/details.php:184 +msgid "Backup up to date with latest configuration" +msgstr "最新の設定バックアップ" + +#: ../../enterprise/views/ncm/agent/details.php:208 +msgid "Configuration backup status" +msgstr "設定バックアップ状態" + +#: ../../enterprise/views/ncm/agent/details.php:238 +msgid "Last on demand execution" +msgstr "最新のオンデマンド実行" + +#: ../../enterprise/views/ncm/agent/details.php:246 +#, php-format +msgid "Customize %s" +msgstr "カスタマイズ %s" + +#: ../../enterprise/views/ncm/agent/details.php:250 +msgid "Execute snippet" +msgstr "一時実行" + +#: ../../enterprise/views/ncm/agent/details.php:265 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1539 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1757 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1832 +msgid "Preview" +msgstr "プレビュー" + +#: ../../enterprise/views/ncm/agent/details.php:312 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 +#: ../../enterprise/meta/monitoring/group_view.php:236 +#: ../../enterprise/meta/monitoring/group_view.php:242 +#: ../../enterprise/meta/monitoring/tactical.php:225 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 +#: ../../enterprise/godmode/services/services.elements.php:383 +#: ../../enterprise/include/functions_cron.php:585 +#: ../../enterprise/include/functions_reporting_pdf.php:641 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:223 +#: ../../enterprise/include/functions_reporting.php:1890 +#: ../../enterprise/include/functions_reporting.php:2940 +#: ../../enterprise/include/functions_reporting.php:3928 +#: ../../enterprise/include/functions_reporting.php:4848 +#: ../../enterprise/include/functions_reporting.php:6153 +#: ../../enterprise/include/lib/NetworkManager.php:103 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../enterprise/operation/agentes/transactional_map.php:339 +#: ../../enterprise/operation/agentes/transactional_map.php:385 +#: ../../enterprise/operation/agentes/tag_view.php:134 +#: ../../enterprise/operation/services/services.service.php:180 +#: ../../enterprise/operation/services/services.service_map.php:152 +#: ../../enterprise/operation/services/services.treeview_services.php:285 +#: ../../enterprise/operation/services/services.list.php:240 +#: ../../enterprise/operation/services/services.list.php:571 +#: ../../enterprise/operation/services/services.table_services.php:162 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1064 +#: ../../godmode/massive/massive_copy_modules.php:118 +#: ../../godmode/massive/massive_copy_modules.php:278 +#: ../../godmode/massive/massive_delete_modules.php:421 +#: ../../godmode/massive/massive_delete_modules.php:442 +#: ../../godmode/massive/massive_edit_modules.php:388 +#: ../../godmode/massive/massive_edit_modules.php:474 +#: ../../godmode/alerts/alert_list.builder.php:290 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3768 +#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 +#: ../../include/graphs/functions_flot.php:305 +#: ../../include/functions_reporting_html.php:2462 +#: ../../include/functions_reporting_html.php:2475 +#: ../../include/functions_reporting_html.php:3455 +#: ../../include/functions_reporting_html.php:3863 ../../include/functions.php:1225 +#: ../../include/functions.php:4108 ../../include/ajax/module.php:1071 +#: ../../include/functions_ui.php:549 ../../include/functions_ui.php:550 +#: ../../include/functions_visual_map.php:2455 +#: ../../include/functions_visual_map.php:2483 +#: ../../include/functions_visual_map.php:2501 +#: ../../include/functions_visual_map.php:2519 ../../include/functions_alerts.php:702 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 +#: ../../include/functions_massive_operations.php:151 +#: ../../include/functions_netflow.php:1865 ../../include/functions_reporting.php:6440 +#: ../../include/functions_filemanager.php:668 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:388 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:421 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../include/functions_events.php:2922 ../../operation/tree.php:215 +#: ../../operation/tree.php:272 ../../operation/tree.php:476 +#: ../../operation/agentes/estado_agente.php:271 +#: ../../operation/agentes/status_monitor.php:495 +#: ../../operation/agentes/group_view.php:224 ../../operation/agentes/group_view.php:229 +#: ../../operation/agentes/estado_monitores.php:526 +#: ../../operation/agentes/pandora_networkmap.view.php:1728 +#: ../../operation/agentes/tactical.php:181 ../../operation/events/events.php:725 +#: ../../general/logon_ok.php:145 +msgid "Unknown" +msgstr "不明" + +#: ../../enterprise/views/ncm/agent/details.php:314 +#, php-format +msgid "Current firmware version: %s" +msgstr "現在のファームウエアバージョン: %s" + +#: ../../enterprise/views/ncm/agent/details.php:339 +#, php-format +msgid "Configuration backup present, %s" +msgstr "既存の設定バックアップ %s" + +#: ../../enterprise/views/ncm/agent/details.php:346 +msgid "There is no configuration backup" +msgstr "バックアップ設定がありません" + +#: ../../enterprise/views/ncm/agent/details.php:359 +msgid "Backup latest retrieved configuration" +msgstr "最新の設定バックアップ" + +#: ../../enterprise/views/ncm/agent/details.php:372 +#: ../../enterprise/include/class/ManageBackups.class.php:302 +#: ../../extensions/files_repo/files_repo_list.php:123 +msgid "Download" +msgstr "ダウンロード" + +#: ../../enterprise/views/ncm/agent/details.php:401 +#, php-format +msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" +msgstr "最新の操作 \"%s\" が %s 前に実行され、結果 %s %s になりました" + +#: ../../enterprise/views/ncm/agent/details.php:414 +#, php-format +msgid "Script executions queued: %d" +msgstr "スクリプト実行がキューに入りました: %d" + +#: ../../enterprise/views/ncm/agent/details.php:424 +#, php-format +msgid "Configuration backup schedule: %s" +msgstr "設定バックアップスケジュール: %s" + +#: ../../enterprise/views/ncm/agent/details.php:441 +msgid "Device details" +msgstr "デバイス詳細" + +#: ../../enterprise/views/ncm/agent/details.php:483 +msgid "Configuration timestamp" +msgstr "設定タイムスタンプ" + +#: ../../enterprise/views/ncm/agent/details.php:484 +msgid "Diff" +msgstr "差分" + +#: ../../enterprise/views/ncm/agent/details.php:485 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468 +#: ../../enterprise/meta/advanced/collections.php:391 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 +#: ../../enterprise/meta/include/functions_autoprovision.php:477 +#: ../../enterprise/meta/include/functions_alerts_meta.php:133 +#: ../../enterprise/meta/include/functions_alerts_meta.php:164 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:499 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:139 +#: ../../enterprise/godmode/agentes/inventory_manager.php:224 +#: ../../enterprise/godmode/agentes/collections.php:384 +#: ../../enterprise/godmode/policies/policy_alerts.php:353 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:359 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:691 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:389 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 +#: ../../enterprise/godmode/setup/setup_skins.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2505 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3476 +#: ../../enterprise/include/class/ManageBackups.class.php:167 +#: ../../enterprise/operation/agentes/transactional_map.php:213 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190 +#: ../../enterprise/operation/services/services.list.php:513 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 +#: ../../enterprise/tools/ipam/ipam_ajax.php:532 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 +#: ../../godmode/groups/group_list.php:853 +#: ../../godmode/agentes/modificar_agente.php:653 +#: ../../godmode/agentes/planned_downtime.editor.php:1225 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:273 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:498 +#: ../../godmode/alerts/alert_commands.php:745 ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/alerts/alert_list.builder.php:96 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2061 +#: ../../godmode/events/event_responses.list.php:53 ../../godmode/tag/tag.php:284 +#: ../../godmode/category/category.php:170 +#: ../../include/functions_reporting_html.php:3343 ../../include/functions_cron.php:496 +#: ../../include/functions_treeview.php:413 +#: ../../include/class/SatelliteAgent.class.php:129 +#: ../../include/class/AgentsAlerts.class.php:254 +#: ../../include/class/AgentsAlerts.class.php:285 +#: ../../include/functions_reporting.php:2998 +#: ../../include/functions_filemanager.php:607 +msgid "Actions" +msgstr "アクション" + +#: ../../enterprise/views/ncm/agent/details.php:490 +msgid "No changes with current backup" +msgstr "現在のバックアップとの違いはありません" + +#: ../../enterprise/views/ncm/agent/details.php:494 +msgid "This is the latest configuration retrieved" +msgstr "これは取得された最新の設定です" + +#: ../../enterprise/views/ncm/agent/details.php:507 +#: ../../enterprise/views/ncm/agent/details.php:511 +msgid "This is the current backup." +msgstr "これは最新のバックアップです。" + +#: ../../enterprise/views/ncm/agent/details.php:523 +msgid "Review this configuration" +msgstr "この設定を見る" + +#: ../../enterprise/views/ncm/agent/details.php:534 +msgid "There is no backup to compare with" +msgstr "比較するバックアップがありません" + +#: ../../enterprise/views/ncm/agent/details.php:545 +msgid "Backup this configuration" +msgstr "この設定をバックアップ" + +#: ../../enterprise/views/ncm/agent/details.php:563 +msgid "Configurations registry" +msgstr "設定レジストリ" + +#: ../../enterprise/views/ncm/agent/details.php:574 +msgid "Diff between: backup - selected" +msgstr "次の差分: バックアップ - 選択したもの" + +#: ../../enterprise/views/ncm/agent/details.php:600 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:483 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:65 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1191 +#: ../../godmode/agentes/planned_downtime.list.php:624 ../../godmode/menu.php:249 +#: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 +#: ../../include/functions_reports.php:905 ../../include/functions_reports.php:909 +#: ../../include/class/ConfigPEN.class.php:327 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "設定" + +#: ../../enterprise/views/ncm/agent/details.php:624 +msgid "Retrieve firmware version?" +msgstr "ファームウエアバージョンを取得しますか?" + +#: ../../enterprise/views/ncm/agent/details.php:625 +msgid "" +"This action will connect to the device to retrieve firmware version. Are you sure?" +msgstr "" +"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろしいです" +"か?" + +#: ../../enterprise/views/ncm/agent/details.php:635 +msgid "Get running config?" +msgstr "running config を取得しますか?" + +#: ../../enterprise/views/ncm/agent/details.php:636 +msgid "" +"This action will connect to the device to retrieve latest configuration. Are you sure?" +msgstr "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" + +#: ../../enterprise/views/ncm/agent/details.php:647 +msgid "Backup latest config?" +msgstr "最新の設定をバックアップしますた?" + +#: ../../enterprise/views/ncm/agent/details.php:648 +msgid "" +"This action will overwrite current backup to use latest retrieved configuration. Are " +"you sure?" +msgstr "この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" + +#: ../../enterprise/views/ncm/agent/details.php:656 +msgid "Backup target config?" +msgstr "対象の設定をバックアップしますか?" + +#: ../../enterprise/views/ncm/agent/details.php:657 +msgid "" +"This action will overwrite current backup to use selected configuration. Are you sure?" +msgstr "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" + +#: ../../enterprise/views/ncm/agent/details.php:668 +msgid "Restore device configuration?" +msgstr "デバイス設定をリストアしますか?" + +#: ../../enterprise/views/ncm/agent/details.php:669 +msgid "" +"This action will overwrite device configuration with latest backup. Are you sure?" +msgstr "この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" + +#: ../../enterprise/views/ncm/agent/details.php:688 +msgid "Customize script execution" +msgstr "カスタムスクリプト実行" + +#: ../../enterprise/views/ncm/agent/details.php:689 ../../include/ajax/events.php:2142 +#: ../../include/class/ExternalTools.class.php:581 +#: ../../include/functions_events.php:3494 +msgid "Execute" +msgstr "実行" + +#: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 +#: ../../enterprise/include/functions_reporting.php:146 +#: ../../enterprise/include/functions_reporting.php:7973 +#: ../../enterprise/include/functions_reporting.php:8001 +#: ../../enterprise/include/functions_reporting.php:8072 +#: ../../godmode/agentes/configurar_agente.php:743 ../../godmode/menu.php:168 +#: ../../godmode/menu.php:269 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1996 +#: ../../include/functions_menu.php:510 ../../include/class/ConfigPEN.class.php:332 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "テンプレート" + +#: ../../enterprise/views/ncm/templates/list.php:74 +#: ../../enterprise/views/ncm/templates/edit.php:107 +#: ../../enterprise/views/ncm/firmwares/edit.php:106 +#: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/edit.php:35 +msgid "Vendors" +msgstr "ベンダ" + +#: ../../enterprise/views/ncm/templates/list.php:75 +#: ../../enterprise/views/ncm/templates/edit.php:134 +#: ../../enterprise/views/ncm/firmwares/list.php:76 +#: ../../enterprise/views/ncm/firmwares/edit.php:133 +#: ../../enterprise/views/ncm/models/list.php:32 +msgid "Models" +msgstr "モデル" + +#: ../../enterprise/views/ncm/templates/list.php:76 +msgid "Scripts defined" +msgstr "定義済みスクリプト" + +#: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/models/edit.php:37 +msgid "Devices" +msgstr "デバイス" + +#: ../../enterprise/views/ncm/templates/edit.php:102 +msgid "Comma separated, a vendors list compatible with scripts defined within template." +msgstr "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。" + +#: ../../enterprise/views/ncm/templates/edit.php:130 +msgid "Comma separated, a model list compatible with scripts defined within template." +msgstr "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるモデル一覧。" + +#: ../../enterprise/views/ncm/templates/edit.php:148 +msgid "This script will be used to test devices availability" +msgstr "このスクリプトは、デバイスの可用性をテストするために使用されます" + +#: ../../enterprise/views/ncm/templates/edit.php:153 +msgid "Script: Test" +msgstr "スクリプト: テスト" + +#: ../../enterprise/views/ncm/templates/edit.php:176 +msgid "This script will be used to retrieve configuration from devices" +msgstr "このスクリプトは、デバイスから設定を取得するために使用されます" + +#: ../../enterprise/views/ncm/templates/edit.php:181 +msgid "Script: Get configuration" +msgstr "スクリプト: 設定取得" + +#: ../../enterprise/views/ncm/templates/edit.php:204 +msgid "" +"This script will be used to apply configuration, previously backed up, to devices" +msgstr "" +"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用されます" + +#: ../../enterprise/views/ncm/templates/edit.php:209 +msgid "Script: set configuration" +msgstr "スクリプト: 設定投入" + +#: ../../enterprise/views/ncm/templates/edit.php:232 +msgid "This script will be used to retrieve firmware version from devices" +msgstr "" +"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用されます" + +#: ../../enterprise/views/ncm/templates/edit.php:237 +msgid "Script: get firmware" +msgstr "スクリプト: ファームウエア取得" + +#: ../../enterprise/views/ncm/templates/edit.php:259 +msgid "This script will be used to upgrade firmware version of the devices" +msgstr "" +"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために使用され" +"ます" + +#: ../../enterprise/views/ncm/templates/edit.php:264 +msgid "Script: set firmware" +msgstr "スクリプト: ファームウエア設定" + +#: ../../enterprise/views/ncm/templates/edit.php:286 +msgid "This script will be executed on the devices when selecting CUSTOM task" +msgstr "このスクリプトは、カスタムタスクを選択したときにデバイスで実行されます" + +#: ../../enterprise/views/ncm/templates/edit.php:291 +msgid "Script: custom task" +msgstr "スクリプト: カスタムタスク" + +#: ../../enterprise/views/ncm/devices/list.php:64 +#: ../../include/functions_reports.php:945 +msgid "NCM" +msgstr "NCM" + +#: ../../enterprise/views/ncm/devices/list.php:69 +msgid "" +"WARNING: This is a new feature and is still at an early stage. It is available with " +"limited features, use it with caution and send us your feedback to improve these " +"current capabilities." +msgstr "" +"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意して使用" +"し、現在の機能の改善のためのフィードバックをお願いします。" + +#: ../../enterprise/views/ncm/devices/list.php:72 +msgid "" +"Network configuration manager is used to keep configurations and software versions of " +"any network device in your infrastructure under your control." +msgstr "" +"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソフトウェ" +"アバージョンを管理するために使用します。" + +#: ../../enterprise/views/ncm/devices/list.php:77 +msgid "" +"To start using it, navigatenavigate to your desired agent, tab Network Config " +"Manager, and enable the ncm features,\n" +" you will be asked for the vendor and model of the device." +msgstr "" +"使用を開始するには、目的のエージェントに移動しネットワーク設定管理タブを選択して、ncm " +"機能を有効にします。\n" +" デバイスのベンダとモデルを尋ねられます。" + +#: ../../enterprise/views/ncm/devices/list.php:84 +msgid "Define a NCM template" +msgstr "NCM テンプレート定義" + +#: ../../enterprise/views/ncm/devices/list.php:87 +msgid "Configure agents to use NCM templates" +msgstr "NCM テンプレートを利用するようにエージェントを設定" + +#: ../../enterprise/views/ncm/devices/list.php:117 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export_form.php:99 +#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/tools/ipam/ipam_network.php:396 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 +#: ../../enterprise/tools/ipam/ipam_excel.php:133 +#: ../../enterprise/tools/ipam/ipam_ajax.php:359 +#: ../../enterprise/tools/ipam/ipam_calculator.php:62 +#: ../../godmode/setup/setup_general.php:660 ../../operation/agentes/ver_agente.php:1181 +msgid "Address" +msgstr "アドレス" + +#: ../../enterprise/views/ncm/devices/list.php:118 +#: ../../enterprise/views/ncm/firmwares/list.php:75 +#: ../../enterprise/views/ncm/models/list.php:72 +#: ../../enterprise/views/ncm/models/edit.php:88 +msgid "Vendor" +msgstr "ベンダ" + +#: ../../enterprise/views/ncm/devices/list.php:119 +msgid "Model" +msgstr "モデル" + +#: ../../enterprise/views/ncm/devices/list.php:120 +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:140 ../../enterprise/meta/agentsearch.php:330 +#: ../../enterprise/extensions/vmware/vmware_view.php:1085 +#: ../../enterprise/godmode/agentes/collection_manager.php:112 +#: ../../enterprise/godmode/agentes/collection_manager.php:209 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_queue.php:616 +#: ../../enterprise/godmode/policies/policies.php:409 +#: ../../enterprise/godmode/policies/policy_collections.php:172 +#: ../../enterprise/godmode/policies/policy_collections.php:266 +#: ../../enterprise/godmode/policies/policy_agents.php:852 +#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 +#: ../../enterprise/godmode/admin_access_logs.php:50 +#: ../../enterprise/godmode/servers/HA_cluster.php:170 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:927 +#: ../../enterprise/include/functions_reporting_csv.php:2039 +#: ../../enterprise/include/functions_reporting_csv.php:2785 +#: ../../enterprise/include/class/ManageBackups.class.php:165 +#: ../../enterprise/include/functions_reporting.php:1858 +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3884 +#: ../../enterprise/include/functions_reporting.php:6134 +#: ../../enterprise/include/functions_services.php:1613 +#: ../../enterprise/operation/agentes/policy_view.php:66 +#: ../../enterprise/operation/agentes/policy_view.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:262 +#: ../../enterprise/operation/agentes/policy_view.php:397 +#: ../../enterprise/operation/agentes/tag_view.php:607 +#: ../../enterprise/operation/agentes/tag_view.php:685 +#: ../../enterprise/operation/agentes/collection_view.php:78 +#: ../../enterprise/operation/services/services.service.php:127 +#: ../../enterprise/operation/services/services.list.php:243 +#: ../../enterprise/operation/services/services.list.php:507 +#: ../../enterprise/operation/services/services.table_services.php:165 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/module_manager.php:870 +#: ../../godmode/massive/massive_copy_modules.php:121 +#: ../../godmode/massive/massive_copy_modules.php:281 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.list.php:496 ../../godmode/alerts/alert_view.php:114 +#: ../../godmode/setup/setup_integria.php:426 ../../godmode/setup/setup_integria.php:548 +#: ../../godmode/reporting/reporting_builder.item_editor.php:77 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:602 +#: ../../godmode/servers/servers.build_table.php:80 ../../mobile/operation/agents.php:97 +#: ../../mobile/operation/agents.php:144 ../../mobile/operation/agents.php:243 +#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:406 +#: ../../mobile/operation/modules.php:163 ../../mobile/operation/modules.php:164 +#: ../../mobile/operation/modules.php:275 ../../mobile/operation/modules.php:276 +#: ../../mobile/operation/modules.php:603 ../../mobile/operation/modules.php:609 +#: ../../mobile/operation/modules.php:615 ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:640 +#: ../../mobile/operation/modules.php:648 ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:850 +#: ../../mobile/operation/alerts.php:105 ../../mobile/operation/alerts.php:106 +#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/alerts.php:248 +#: ../../mobile/operation/alerts.php:350 ../../mobile/operation/events.php:649 +#: ../../mobile/operation/events.php:650 ../../mobile/operation/events.php:824 +#: ../../mobile/operation/events.php:963 ../../mobile/operation/events.php:964 +#: ../../include/functions_reporting_html.php:551 +#: ../../include/functions_reporting_html.php:1050 +#: ../../include/functions_reporting_html.php:1059 +#: ../../include/functions_reporting_html.php:1313 +#: ../../include/functions_reporting_html.php:1321 +#: ../../include/functions_reporting_html.php:1589 +#: ../../include/functions_reporting_html.php:2258 +#: ../../include/functions_reporting_html.php:2535 +#: ../../include/functions_reporting_html.php:2902 +#: ../../include/functions_reporting_html.php:3551 +#: ../../include/functions_reporting_html.php:3604 +#: ../../include/functions_reporting_html.php:5177 +#: ../../include/ajax/alert_list.ajax.php:296 ../../include/ajax/alert_list.ajax.php:321 +#: ../../include/ajax/module.php:980 ../../include/ajax/custom_fields.php:416 +#: ../../include/functions_snmp.php:369 +#: ../../include/functions_massive_operations.php:154 +#: ../../include/class/NetworkMap.class.php:2907 +#: ../../include/class/AgentsAlerts.class.php:894 +#: ../../include/class/ExternalTools.class.php:801 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 +#: ../../include/functions_snmp_browser.php:594 ../../include/functions_events.php:204 +#: ../../include/functions_events.php:259 ../../include/functions_events.php:2458 +#: ../../include/functions_events.php:4680 ../../operation/search_agents.php:56 +#: ../../operation/agentes/estado_agente.php:275 +#: ../../operation/agentes/estado_agente.php:763 +#: ../../operation/agentes/interface_view.functions.php:497 +#: ../../operation/agentes/status_monitor.php:1334 +#: ../../operation/agentes/alerts_status.functions.php:105 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/snmpconsole/snmp_view.php:584 +#: ../../operation/snmpconsole/snmp_view.php:849 +#: ../../operation/snmpconsole/snmp_view.php:1226 +#: ../../operation/incidents/integriaims_export_csv.php:83 +#: ../../operation/incidents/configure_integriaims_incident.php:250 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:320 +#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +msgid "Status" +msgstr "状態" + +#: ../../enterprise/views/ncm/devices/list.php:121 +msgid "Last queued task" +msgstr "最新のキュータスク" + +#: ../../enterprise/views/ncm/devices/list.php:122 +#: ../../enterprise/operation/services/services.service.php:133 +#: ../../enterprise/operation/services/services.list.php:510 +#: ../../enterprise/tools/ipam/ipam_list.php:655 ../../extensions/agents_modules.php:317 +#: ../../operation/agentes/group_view.php:80 ../../operation/agentes/tactical.php:60 +msgid "Last update" +msgstr "最終更新" + +#: ../../enterprise/views/ncm/devices/list.php:123 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 +#: ../../enterprise/include/functions_tasklist.php:179 +#: ../../godmode/massive/massive_copy_modules.php:185 +#: ../../godmode/alerts/alert_list.list.php:499 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:614 +msgid "Operations" +msgstr "操作" + +#: ../../enterprise/views/ncm/firmwares/list.php:32 +msgid "Firmwares" +msgstr "ファームウエア" + +#: ../../enterprise/views/ncm/firmwares/list.php:74 +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:803 +#: ../../include/class/CredentialStore.class.php:911 +msgid "Identifier" +msgstr "識別子" + +#: ../../enterprise/views/ncm/firmwares/edit.php:41 +msgid "Firmware" +msgstr "ファームウエア" + +#: ../../enterprise/views/ncm/firmwares/edit.php:101 +msgid "Comma separated, a vendors list compatible with scripts defined within firmware." +msgstr "" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一覧。" + +#: ../../enterprise/views/ncm/firmwares/edit.php:129 +msgid "Comma separated, a model list compatible with scripts defined within firmware." +msgstr "" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリスト。" + +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:441 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 +#: ../../enterprise/meta/monitoring/group_view.php:239 +#: ../../enterprise/meta/monitoring/group_view.php:245 +#: ../../enterprise/meta/monitoring/tactical.php:223 +#: ../../enterprise/meta/include/functions_wizard_meta.php:977 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1502 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/index.php:914 ../../enterprise/meta/index.php:983 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:313 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 +#: ../../enterprise/godmode/services/services.service.php:740 +#: ../../enterprise/godmode/services/services.service.php:991 +#: ../../enterprise/godmode/services/services.elements.php:374 +#: ../../enterprise/godmode/setup/setup_history.php:661 +#: ../../enterprise/include/class/CommandCenter.class.php:564 +#: ../../enterprise/include/class/CommandCenter.class.php:603 +#: ../../enterprise/include/functions_reporting.php:4838 +#: ../../enterprise/include/functions_services.php:1448 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:333 +#: ../../enterprise/operation/agentes/tag_view.php:132 +#: ../../enterprise/operation/services/services.service.php:123 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/massive/services.create.php:771 +#: ../../enterprise/operation/services/services.service_map.php:150 +#: ../../enterprise/operation/services/services.treeview_services.php:280 +#: ../../enterprise/operation/services/services.list.php:238 +#: ../../enterprise/operation/services/services.list.php:505 +#: ../../enterprise/operation/services/services.list.php:564 +#: ../../enterprise/operation/services/services.table_services.php:160 +#: ../../update_manager_client/views/offline.php:80 ../../extensions/dbmanager.php:114 +#: ../../godmode/modules/manage_network_components_form_wizard.php:384 +#: ../../godmode/groups/group_list.php:1059 ../../godmode/users/configure_user.php:1705 +#: ../../godmode/massive/massive_copy_modules.php:116 +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:419 +#: ../../godmode/massive/massive_delete_modules.php:440 +#: ../../godmode/massive/massive_edit_agents.php:1061 +#: ../../godmode/massive/massive_edit_modules.php:386 +#: ../../godmode/massive/massive_edit_modules.php:472 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 +#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 +#: ../../include/functions_reporting_html.php:2474 ../../include/functions.php:1035 +#: ../../include/functions.php:1273 ../../include/functions.php:1276 +#: ../../include/functions.php:1315 ../../include/functions_graph.php:3493 +#: ../../include/functions_graph.php:3494 ../../include/functions_graph.php:5068 +#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/functions_massive_operations.php:149 +#: ../../include/class/Diagnostics.class.php:1809 +#: ../../include/class/AgentWizard.class.php:1315 +#: ../../include/class/AgentWizard.class.php:4021 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 +#: ../../include/functions_events.php:3018 ../../index.php:1225 +#: ../../operation/tree.php:213 ../../operation/tree.php:270 +#: ../../operation/tree.php:471 ../../operation/agentes/estado_agente.php:269 +#: ../../operation/agentes/status_monitor.php:493 +#: ../../operation/agentes/group_view.php:227 ../../operation/agentes/group_view.php:232 +#: ../../operation/agentes/estado_monitores.php:525 +#: ../../operation/agentes/tactical.php:179 ../../operation/netflow/nf_live_view.php:459 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:143 +msgid "Warning" +msgstr "警告" + +#: ../../enterprise/views/ncm/firmwares/edit.php:149 +msgid "Current binary file will be overwritten, are you sure?" +msgstr "現在のバイナリファイルは上書きされます。よろしいですか?" + +#: ../../enterprise/views/ncm/firmwares/edit.php:154 +msgid "Binary file" +msgstr "バイナリファイル" + +#: ../../enterprise/views/ncm/vendors/edit.php:89 +msgid "icon" +msgstr "アイコン" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/meta/general/main_menu.php:189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1388 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../enterprise/godmode/reporting/aws_view.php:115 +#: ../../enterprise/godmode/reporting/aws_view.php:148 +#: ../../enterprise/include/ajax/ipam.ajax.php:455 +#: ../../enterprise/include/class/SAPView.class.php:155 +#: ../../enterprise/include/class/SAPView.class.php:199 +#: ../../enterprise/operation/agentes/tag_view.php:50 +#: ../../enterprise/operation/inventory/inventory.php:146 +#: ../../enterprise/operation/services/massive/services.delete.php:42 +#: ../../enterprise/operation/services/massive/services.create.php:595 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:105 +#: ../../enterprise/operation/services/massive/service.create.elements.php:243 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:146 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/tools/ipam/ipam_editor.php:261 +#: ../../extensions/agents_modules.php:474 ../../extensions/module_groups.php:260 +#: ../../extensions/realtime_graphs.php:67 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 +#: ../../godmode/snmpconsole/snmp_filters.php:55 +#: ../../include/class/AgentsAlerts.class.php:738 ../../operation/heatmap.php:133 +#: ../../operation/tree.php:183 ../../operation/agentes/alerts_status.php:199 +#: ../../operation/agentes/estado_agente.php:224 +#: ../../operation/agentes/interface_view.php:72 +#: ../../operation/agentes/status_monitor.php:104 +#: ../../operation/agentes/group_view.php:98 ../../operation/agentes/ver_agente.php:1915 +#: ../../operation/agentes/tactical.php:78 +#: ../../operation/snmpconsole/snmp_statistics.php:98 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_view.php:693 +#: ../../operation/snmpconsole/snmp_view.php:802 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 ../../operation/menu.php:33 +#: ../../operation/menu.php:155 ../../general/first_task/cluster_builder.php:38 +msgid "Monitoring" +msgstr "モニタリング" + +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:29 +#: ../../general/first_task/cluster_builder.php:51 +msgid "Clusters" +msgstr "クラスタ" + +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:212 +#: ../../enterprise/godmode/policies/policy_modules.php:1465 +#: ../../enterprise/godmode/services/services.elements.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/include/functions_reporting_csv.php:1651 +#: ../../enterprise/include/functions_reporting_csv.php:1767 +#: ../../enterprise/include/functions_reporting_csv.php:2007 +#: ../../enterprise/include/functions_reporting_csv.php:2075 +#: ../../enterprise/include/functions_services.php:1602 +#: ../../enterprise/operation/agentes/policy_view.php:396 +#: ../../enterprise/operation/agentes/tag_view.php:605 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../godmode/modules/manage_network_templates_form.php:232 +#: ../../godmode/modules/manage_network_components_form_common.php:64 +#: ../../godmode/modules/manage_network_components.php:750 +#: ../../godmode/update_manager/update_manager.history.php:41 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/modificar_agente.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:622 +#: ../../godmode/agentes/planned_downtime.editor.php:856 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:401 +#: ../../godmode/agentes/module_manager_editor_common.php:1305 +#: ../../godmode/agentes/module_manager.php:857 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 +#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/setup_integria.php:408 +#: ../../godmode/setup/setup_integria.php:530 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1050 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/events/event_responses.editor.php:159 +#: ../../godmode/servers/servers.build_table.php:81 +#: ../../godmode/servers/modificar_server.php:72 ../../godmode/servers/plugin.php:816 +#: ../../mobile/operation/visualmaps.php:125 ../../mobile/operation/visualmaps.php:126 +#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 +#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 +#: ../../mobile/operation/events.php:973 +#: ../../include/functions_visual_map_editor.php:702 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/functions_visual_map_editor.php:848 +#: ../../include/functions_reporting_html.php:1053 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1315 +#: ../../include/functions_reporting_html.php:1323 +#: ../../include/functions_reporting_html.php:2541 +#: ../../include/functions_reporting_html.php:3597 +#: ../../include/functions_reporting_html.php:5364 +#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:977 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 +#: ../../include/functions_reports.php:1074 ../../include/functions_html.php:5588 +#: ../../include/class/ModuleTemplates.class.php:1209 +#: ../../include/class/CalendarManager.class.php:1028 +#: ../../include/class/CalendarManager.class.php:1062 +#: ../../include/class/AgentWizard.class.php:1197 +#: ../../include/class/AgentWizard.class.php:4054 +#: ../../include/lib/Dashboard/Widgets/service_view.php:249 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:364 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:564 ../../include/functions_events.php:2440 +#: ../../include/functions_events.php:4635 ../../operation/agentes/estado_agente.php:757 +#: ../../operation/agentes/ver_agente.php:1153 +#: ../../operation/netflow/nf_live_view.php:319 +#: ../../operation/incidents/configure_integriaims_incident.php:234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 +#: ../../operation/search_modules.php:34 +msgid "Type" +msgstr "種類" + +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:5799 +#: ../../operation/agentes/pandora_networkmap.php:708 +msgid "Nodes" +msgstr "ノード" + +#: ../../enterprise/views/cluster/list.php:122 +msgid "New cluster" +msgstr "新規クラスタ" + +#: ../../enterprise/views/cluster/view.php:44 ../../enterprise/views/cluster/view.php:63 +#: ../../enterprise/views/cluster/edit.php:41 ../../enterprise/views/cluster/edit.php:68 +msgid "Cluster list" +msgstr "クラスタ一覧" + +#: ../../enterprise/views/cluster/view.php:50 ../../enterprise/views/cluster/view.php:81 +msgid "Cluster details" +msgstr "クラスタ詳細" + +#: ../../enterprise/views/cluster/view.php:74 +msgid "Edit this cluster" +msgstr "このクラスタを編集" + +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/meta/include/functions_wizard_meta.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1817 +#: ../../enterprise/meta/agentsearch.php:251 ../../enterprise/meta/agentsearch.php:258 +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:1736 +#: ../../enterprise/godmode/policies/policy_agents.php:1751 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 +#: ../../enterprise/godmode/setup/edit_skin.php:276 +#: ../../enterprise/include/class/VMware.app.php:888 +#: ../../enterprise/include/class/DatabaseHA.class.php:211 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2038 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3255 +#: ../../enterprise/include/lib/NetworkManager.php:190 +#: ../../enterprise/include/functions_policies.php:4783 +#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/agentes/modificar_agente.php:762 +#: ../../godmode/agentes/module_manager_editor_common.php:257 +#: ../../godmode/agentes/module_manager_editor_common.php:897 +#: ../../godmode/agentes/module_manager_editor_common.php:1059 +#: ../../godmode/massive/massive_edit_agents.php:938 +#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/massive/massive_edit_modules.php:765 +#: ../../godmode/alerts/alert_list.list.php:149 +#: ../../godmode/alerts/configure_alert_template.php:899 +#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 +#: ../../mobile/operation/alerts.php:68 +#: ../../include/functions_visual_map_editor.php:826 +#: ../../include/functions_reporting_html.php:3563 +#: ../../include/functions_treeview.php:72 ../../include/functions_treeview.php:613 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 +#: ../../include/functions_reporting.php:6660 ../../operation/search_agents.php:93 +#: ../../operation/agentes/estado_generalagente.php:99 +#: ../../operation/agentes/estado_generalagente.php:101 +#: ../../operation/agentes/alerts_status.functions.php:99 +msgid "Disabled" +msgstr "無効" + +#: ../../enterprise/views/cluster/view.php:168 +#: ../../enterprise/views/cluster/view.php:170 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 +#: ../../enterprise/godmode/services/services.service.php:779 +#: ../../enterprise/operation/services/massive/services.create.php:843 +#: ../../godmode/agentes/modificar_agente.php:776 +#: ../../godmode/agentes/planned_downtime.list.php:664 +#: ../../godmode/agentes/planned_downtime.editor.php:862 +#: ../../godmode/agentes/agent_manager.php:692 +#: ../../godmode/agentes/module_manager_editor_common.php:1056 +#: ../../godmode/agentes/module_manager.php:992 +#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_modules.php:1104 +#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1128 +#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:831 +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../operation/agentes/estado_generalagente.php:120 +msgid "Quiet" +msgstr "静観" + +#: ../../enterprise/views/cluster/view.php:178 +#: ../../enterprise/views/cluster/view.php:186 +#: ../../godmode/agentes/modificar_agente.php:784 ../../operation/search_agents.php:111 +#: ../../operation/agentes/estado_agente.php:839 +#: ../../operation/agentes/estado_generalagente.php:131 +#: ../../operation/agentes/estado_generalagente.php:139 +msgid "Agent in scheduled downtime" +msgstr "計画停止内エージェント" + +#: ../../enterprise/views/cluster/view.php:223 +msgid "Force cluster status calculation" +msgstr "クラスタの状態計算を強制する" + +#: ../../enterprise/views/cluster/view.php:253 ../../enterprise/meta/agentsearch.php:136 +#: ../../enterprise/godmode/modules/configure_local_component.php:177 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 +#: ../../enterprise/godmode/modules/local_components.php:561 +#: ../../enterprise/godmode/modules/local_components.php:586 +#: ../../enterprise/godmode/modules/local_components.php:622 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/class/DeploymentCenter.class.php:756 +#: ../../enterprise/include/class/DeploymentCenter.class.php:817 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:352 +#: ../../enterprise/include/class/AgentRepository.class.php:670 +#: ../../enterprise/include/class/AgentRepository.class.php:716 +#: ../../enterprise/operation/agentes/tag_view.php:602 +#: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/planned_downtime.editor.php:1220 +#: ../../godmode/agentes/agent_manager.php:401 +#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:71 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 +#: ../../include/functions_reporting_html.php:1565 +#: ../../include/functions_reporting_html.php:3548 +#: ../../include/ajax/heatmap.ajax.php:325 ../../include/class/Diagnostics.class.php:748 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 +#: ../../include/functions_events.php:4111 ../../operation/search_agents.php:44 +#: ../../operation/search_agents.php:50 ../../operation/tree.php:78 +#: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 +#: ../../operation/agentes/estado_generalagente.php:194 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "OS" + +#: ../../enterprise/views/cluster/view.php:273 +#: ../../operation/agentes/estado_generalagente.php:212 +msgid "IP address" +msgstr "IP アドレス" + +#: ../../enterprise/views/cluster/view.php:278 +#: ../../enterprise/views/cluster/view.php:293 +#: ../../enterprise/meta/advanced/servers.build_table.php:100 +#: ../../enterprise/meta/advanced/servers.build_table.php:101 +#: ../../enterprise/meta/advanced/servers.build_table.php:107 +#: ../../enterprise/meta/advanced/metasetup.visual.php:895 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:6152 +#: ../../enterprise/include/functions_services.php:1190 +#: ../../enterprise/include/functions_services.php:1371 +#: ../../enterprise/include/functions_services.php:2081 +#: ../../enterprise/include/lib/Metaconsole/Node.php:453 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 +#: ../../enterprise/tools/ipam/ipam_network.php:436 +#: ../../enterprise/tools/ipam/ipam_network.php:516 +#: ../../enterprise/tools/ipam/ipam_ajax.php:366 +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 +#: ../../godmode/modules/manage_network_components.php:776 +#: ../../godmode/modules/manage_network_components.php:777 +#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:822 +#: ../../godmode/alerts/alert_view.php:135 +#: ../../godmode/servers/servers.build_table.php:147 +#: ../../godmode/servers/servers.build_table.php:148 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 +#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 +#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 +#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 +#: ../../include/functions_servers.php:1362 +#: ../../include/functions_reporting_html.php:655 +#: ../../include/functions_reporting_html.php:658 +#: ../../include/functions_reporting_html.php:5438 +#: ../../include/functions_reporting_html.php:5491 ../../include/functions.php:1124 +#: ../../include/functions.php:1130 ../../include/functions.php:1134 +#: ../../include/ajax/module.php:1168 ../../include/functions_treeview.php:162 +#: ../../include/functions_treeview.php:327 ../../include/functions_treeview.php:423 +#: ../../include/functions_ui.php:2615 ../../include/functions_ui.php:2623 +#: ../../include/functions_db.php:241 ../../include/functions_events.php:3468 +#: ../../include/functions_events.php:3581 ../../include/functions_events.php:3601 +#: ../../include/functions_events.php:3610 ../../include/functions_events.php:3619 +#: ../../include/functions_events.php:3620 ../../include/functions_events.php:3632 +#: ../../include/functions_events.php:3683 ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3782 ../../include/functions_events.php:3799 +#: ../../include/functions_events.php:3806 ../../include/functions_events.php:3872 +#: ../../include/functions_events.php:3944 ../../include/functions_events.php:4068 +#: ../../include/functions_events.php:4107 ../../include/functions_events.php:4121 +#: ../../include/functions_events.php:4126 ../../include/functions_events.php:4156 +#: ../../include/functions_events.php:4242 ../../include/functions_events.php:4322 +#: ../../include/functions_events.php:4332 ../../include/functions_events.php:4549 +#: ../../include/functions_events.php:4620 ../../include/functions_events.php:4709 +#: ../../include/functions_events.php:4738 ../../include/functions_events.php:4753 +#: ../../include/functions_events.php:4763 ../../include/functions_events.php:4773 +#: ../../include/functions_events.php:5205 ../../include/functions_events.php:5219 +#: ../../include/functions_events.php:5224 ../../include/functions_events.php:5227 +#: ../../include/functions_events.php:5235 ../../include/functions_events.php:5244 +#: ../../include/functions_events.php:5256 ../../include/functions_events.php:5309 +#: ../../include/functions_events.php:5336 ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:5405 +#: ../../operation/agentes/interface_view.functions.php:682 +#: ../../operation/agentes/interface_view.functions.php:683 +#: ../../operation/agentes/interface_view.functions.php:684 +#: ../../operation/agentes/interface_view.functions.php:685 +#: ../../operation/agentes/interface_view.functions.php:686 +#: ../../operation/agentes/status_monitor.php:1710 +#: ../../operation/agentes/estado_generalagente.php:217 +#: ../../operation/agentes/estado_generalagente.php:230 +#: ../../operation/agentes/estado_generalagente.php:242 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:427 +#: ../../operation/agentes/estado_generalagente.php:438 +#: ../../operation/snmpconsole/snmp_view.php:974 +#: ../../operation/snmpconsole/snmp_view.php:994 +msgid "N/A" +msgstr "N/A" + +#: ../../enterprise/views/cluster/view.php:309 ../../include/functions_treeview.php:731 +#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "エージェントバージョン" + +#: ../../enterprise/views/cluster/view.php:314 +msgid "Cluster agent" +msgstr "クラスタエージェント" + +#: ../../enterprise/views/cluster/view.php:369 +#: ../../operation/agentes/estado_generalagente.php:890 +msgid "Events (Last 24h)" +msgstr "イベント (直近 24時間)" + +#: ../../enterprise/views/cluster/view.php:441 ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:276 +msgid "Reload" +msgstr "再読み込み" + +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "クラスタ " + +#: ../../enterprise/views/cluster/edit.php:88 +msgid "View this cluster" +msgstr "このクラスタを表示" + +#: ../../enterprise/views/ipam/sites/list.php:48 +#: ../../enterprise/views/ipam/sites/edit.php:64 +#: ../../godmode/modules/manage_nc_groups_form.php:71 +#: ../../godmode/groups/configure_group.php:170 ../../godmode/groups/group_list.php:848 +#: ../../godmode/agentes/agent_manager.php:574 +#: ../../godmode/massive/massive_edit_agents.php:655 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../include/functions_visual_map_editor.php:956 +#: ../../include/rest-api/models/VisualConsole/Item.php:2175 +#: ../../operation/agentes/ver_agente.php:1218 +#: ../../operation/agentes/estado_generalagente.php:425 +msgid "Parent" +msgstr "親" + +#: ../../enterprise/views/ipam/sites/edit.php:71 +#: ../../enterprise/meta/advanced/metasetup.visual.php:289 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:420 +#: ../../enterprise/meta/advanced/metasetup.setup.php:426 +#: ../../enterprise/meta/advanced/metasetup.setup.php:436 +#: ../../enterprise/meta/advanced/metasetup.setup.php:442 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:266 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:363 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:688 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:759 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 +#: ../../enterprise/meta/event/custom_events.php:227 +#: ../../enterprise/meta/event/custom_events.php:273 +#: ../../enterprise/godmode/modules/configure_local_component.php:543 +#: ../../enterprise/godmode/modules/configure_local_component.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:704 +#: ../../enterprise/godmode/modules/configure_local_component.php:712 +#: ../../enterprise/godmode/modules/configure_local_component.php:718 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:992 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 +#: ../../enterprise/godmode/policies/policy_alerts.php:583 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:588 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:697 +#: ../../enterprise/godmode/policies/policy_agents.php:391 +#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 +#: ../../enterprise/godmode/setup/setup.php:591 +#: ../../enterprise/godmode/setup/setup.php:608 +#: ../../enterprise/godmode/setup/setup.php:617 +#: ../../enterprise/godmode/setup/setup.php:634 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:81 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:401 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:937 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:953 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:974 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1389 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1416 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2988 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3205 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/functions_tasklist.php:345 +#: ../../enterprise/include/ajax/ipam.ajax.php:400 +#: ../../enterprise/include/ajax/ipam.ajax.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:858 +#: ../../enterprise/include/class/Omnishell.class.php:859 +#: ../../enterprise/include/class/SAP.app.php:615 +#: ../../enterprise/include/class/SAP.app.php:810 +#: ../../enterprise/include/class/SAP.app.php:811 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:895 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1185 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1195 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2002 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2511 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2556 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3523 +#: ../../enterprise/operation/agentes/ver_agente.php:38 +#: ../../enterprise/operation/log/log_viewer.php:735 +#: ../../enterprise/tools/ipam/ipam_network.php:595 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 +#: ../../enterprise/tools/ipam/ipam_list.php:112 +#: ../../enterprise/tools/ipam/ipam_list.php:135 +#: ../../enterprise/tools/ipam/ipam_list.php:157 +#: ../../enterprise/tools/ipam/ipam_editor.php:169 +#: ../../enterprise/tools/ipam/ipam_editor.php:206 +#: ../../enterprise/tools/ipam/ipam_editor.php:234 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:343 +#: ../../godmode/modules/manage_network_components_form_network.php:248 +#: ../../godmode/modules/manage_network_components_form.php:642 +#: ../../godmode/modules/manage_network_components_form.php:648 +#: ../../godmode/modules/manage_network_components_form.php:657 +#: ../../godmode/modules/manage_network_components_form.php:663 +#: ../../godmode/groups/configure_group.php:188 +#: ../../godmode/groups/configure_group.php:210 +#: ../../godmode/users/configure_user.php:1101 +#: ../../godmode/users/configure_user.php:1115 +#: ../../godmode/users/configure_user.php:1309 +#: ../../godmode/users/configure_user.php:1321 +#: ../../godmode/agentes/status_monitor_custom_fields.php:218 +#: ../../godmode/agentes/status_monitor_custom_fields.php:266 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:465 +#: ../../godmode/agentes/agent_manager.php:437 +#: ../../godmode/agentes/agent_manager.php:470 +#: ../../godmode/agentes/agent_manager.php:727 +#: ../../godmode/agentes/agent_manager.php:893 +#: ../../godmode/agentes/module_manager_editor_common.php:733 +#: ../../godmode/agentes/module_manager_editor_common.php:1149 +#: ../../godmode/agentes/module_manager_editor_common.php:1405 +#: ../../godmode/agentes/module_manager_editor_common.php:1412 +#: ../../godmode/agentes/module_manager_editor_common.php:1423 +#: ../../godmode/agentes/module_manager_editor_common.php:1431 +#: ../../godmode/snmpconsole/snmp_alert.php:40 +#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/massive/massive_copy_modules.php:374 +#: ../../godmode/massive/massive_copy_modules.php:508 +#: ../../godmode/massive/massive_delete_modules.php:502 +#: ../../godmode/massive/massive_delete_modules.php:594 +#: ../../godmode/massive/massive_delete_modules.php:679 +#: ../../godmode/massive/massive_delete_modules.php:728 +#: ../../godmode/massive/massive_delete_modules.php:736 +#: ../../godmode/massive/massive_delete_modules.php:737 +#: ../../godmode/massive/massive_delete_modules.php:738 +#: ../../godmode/massive/massive_delete_modules.php:739 +#: ../../godmode/massive/massive_delete_modules.php:805 +#: ../../godmode/massive/massive_delete_modules.php:835 +#: ../../godmode/massive/massive_add_alerts.php:304 +#: ../../godmode/massive/massive_edit_plugins.php:338 +#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/massive/massive_delete_alerts.php:365 +#: ../../godmode/massive/massive_add_action_alerts.php:341 +#: ../../godmode/massive/massive_edit_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:919 +#: ../../godmode/massive/massive_edit_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1169 +#: ../../godmode/massive/massive_edit_modules.php:1204 +#: ../../godmode/massive/massive_edit_modules.php:1259 +#: ../../godmode/massive/massive_edit_modules.php:1345 +#: ../../godmode/massive/massive_edit_modules.php:1418 +#: ../../godmode/massive/massive_edit_modules.php:1527 +#: ../../godmode/massive/massive_edit_modules.php:1528 +#: ../../godmode/massive/massive_edit_modules.php:1529 +#: ../../godmode/massive/massive_edit_modules.php:1530 +#: ../../godmode/massive/massive_edit_modules.php:1769 +#: ../../godmode/massive/massive_edit_modules.php:1829 +#: ../../godmode/alerts/alert_actions.php:291 +#: ../../godmode/alerts/alert_list.list.php:762 +#: ../../godmode/alerts/alert_commands.php:303 +#: ../../godmode/alerts/alert_commands.php:317 +#: ../../godmode/alerts/alert_commands.php:462 +#: ../../godmode/alerts/alert_commands.php:475 +#: ../../godmode/alerts/configure_alert_template.php:650 +#: ../../godmode/alerts/configure_alert_template.php:777 +#: ../../godmode/alerts/configure_alert_template.php:798 +#: ../../godmode/setup/os.builder.php:41 ../../godmode/setup/setup_visuals.php:401 +#: ../../godmode/setup/setup_visuals.php:420 ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/reporting/create_container.php:489 +#: ../../godmode/reporting/graph_builder.graph_editor.php:329 +#: ../../godmode/reporting/reporting_builder.item_editor.php:206 +#: ../../godmode/reporting/reporting_builder.item_editor.php:975 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2144 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2217 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2238 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2270 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3183 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3344 +#: ../../godmode/reporting/visual_console_builder.elements.php:482 +#: ../../godmode/reporting/visual_console_builder.elements.php:633 +#: ../../godmode/reporting/visual_console_builder.elements.php:643 +#: ../../godmode/reporting/visual_console_builder.wizard.php:266 +#: ../../godmode/reporting/visual_console_builder.wizard.php:438 +#: ../../godmode/reporting/visual_console_builder.wizard.php:451 +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +#: ../../godmode/reporting/visual_console_builder.wizard.php:498 +#: ../../godmode/reporting/visual_console_builder.wizard.php:536 +#: ../../godmode/reporting/visual_console_builder.wizard.php:537 +#: ../../godmode/reporting/visual_console_builder.wizard.php:732 +#: ../../godmode/reporting/visual_console_builder.wizard.php:742 +#: ../../godmode/reporting/visual_console_builder.wizard.php:774 +#: ../../godmode/events/event_edit_filter.php:699 +#: ../../godmode/events/custom_events.php:200 ../../godmode/events/custom_events.php:248 +#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../mobile/operation/events.php:930 +#: ../../include/functions_visual_map_editor.php:404 +#: ../../include/functions_visual_map_editor.php:406 +#: ../../include/functions_visual_map_editor.php:622 +#: ../../include/functions_visual_map_editor.php:957 +#: ../../include/functions_visual_map_editor.php:1010 +#: ../../include/functions_visual_map_editor.php:1072 ../../include/functions.php:1073 +#: ../../include/functions_cron.php:671 ../../include/functions_networkmap.php:1519 +#: ../../include/ajax/planned_downtime.ajax.php:85 +#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:577 +#: ../../include/functions_integriaims.php:135 ../../include/functions_profile.php:297 +#: ../../include/functions_profile.php:315 ../../include/functions_profile.php:330 +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 +#: ../../include/rest-api/models/VisualConsole/Item.php:2087 +#: ../../include/rest-api/models/VisualConsole/Item.php:2206 +#: ../../include/rest-api/models/VisualConsole/Item.php:2319 +#: ../../include/rest-api/models/VisualConsole/Item.php:2441 +#: ../../include/functions_html.php:376 ../../include/functions_html.php:816 +#: ../../include/functions_html.php:1239 ../../include/functions_html.php:1291 +#: ../../include/functions_html.php:1338 ../../include/functions_html.php:1339 +#: ../../include/functions_html.php:1392 ../../include/functions_html.php:1442 +#: ../../include/functions_html.php:4750 ../../include/functions_html.php:6141 +#: ../../include/class/NetworkMap.class.php:2789 +#: ../../include/class/NetworkMap.class.php:3024 +#: ../../include/class/NetworkMap.class.php:3047 +#: ../../include/class/NetworkMap.class.php:3119 +#: ../../include/class/NetworkMap.class.php:3129 +#: ../../include/class/NetworkMap.class.php:3214 +#: ../../include/class/NetworkMap.class.php:3230 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:365 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:377 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:301 +#: ../../include/lib/Dashboard/Widgets/network_map.php:365 +#: ../../include/lib/Dashboard/Widgets/events_list.php:312 +#: ../../include/lib/Dashboard/Widgets/events_list.php:470 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 +#: ../../include/lib/Dashboard/Widgets/module_value.php:359 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:336 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:355 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:367 +#: ../../include/lib/Dashboard/Widgets/service_map.php:284 +#: ../../include/lib/Dashboard/Widgets/service_map.php:325 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:368 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:564 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:392 +#: ../../include/lib/Dashboard/Widgets/module_status.php:375 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:329 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:352 +#: ../../include/lib/Dashboard/Widgets/reports.php:552 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3297 ../../operation/users/user_edit.php:405 +#: ../../operation/users/user_edit.php:417 ../../operation/users/user_edit.php:458 +#: ../../operation/users/user_edit.php:494 ../../operation/users/user_edit.php:508 +#: ../../operation/users/user_edit.php:925 ../../operation/users/user_edit.php:932 +#: ../../operation/users/user_edit.php:941 ../../operation/users/user_edit.php:948 +#: ../../operation/agentes/pandora_networkmap.editor.php:349 +#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/ver_agente.php:1164 +#: ../../operation/agentes/ver_agente.php:1220 +#: ../../operation/agentes/ver_agente.php:1235 +#: ../../operation/snmpconsole/snmp_browser.php:389 +#: ../../operation/snmpconsole/snmp_browser.php:404 +#: ../../operation/snmpconsole/snmp_browser.php:414 +#: ../../operation/snmpconsole/snmp_browser.php:533 +#: ../../operation/snmpconsole/snmp_view.php:630 +#: ../../operation/snmpconsole/snmp_view.php:1114 +#: ../../operation/snmpconsole/snmp_view.php:1125 +#: ../../operation/gis_maps/render_view.php:163 +#: ../../operation/incidents/list_integriaims_incidents.php:530 +#: ../../operation/incidents/list_integriaims_incidents.php:534 +#: ../../operation/events/events.php:2416 +msgid "None" +msgstr "なし" + +#: ../../enterprise/meta/screens/screens.visualmap.php:71 +msgid "Create visualmap" +msgstr "ビジュアルマップの作成" + +#: ../../enterprise/meta/screens/screens.visualmap.php:163 +#: ../../enterprise/meta/screens/screens.visualmap.php:194 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../godmode/agentes/configurar_agente.php:376 +#: ../../godmode/agentes/modificar_agente.php:82 +#: ../../godmode/agentes/modificar_agente.php:837 +#: ../../godmode/agentes/modificar_agente.php:842 ../../godmode/menu.php:571 +#: ../../godmode/setup/setup_visuals.php:163 ../../godmode/setup/setup_visuals.php:228 +#: ../../godmode/setup/setup_visuals.php:282 ../../godmode/setup/setup_visuals.php:287 +#: ../../godmode/setup/setup_visuals.php:326 ../../godmode/setup/setup_visuals.php:363 +#: ../../godmode/setup/setup_visuals.php:385 ../../godmode/setup/setup_visuals.php:410 +#: ../../godmode/setup/setup_visuals.php:429 ../../godmode/setup/setup_visuals.php:448 +#: ../../godmode/setup/setup_visuals.php:467 ../../godmode/setup/setup_visuals.php:609 +#: ../../godmode/reporting/visual_console_builder.php:851 +#: ../../godmode/module_library/module_library_view.php:59 ../../operation/tree.php:187 +#: ../../operation/visual_console/view.php:198 +#: ../../operation/visual_console/legacy_view.php:193 +#: ../../operation/agentes/estado_agente.php:858 +#: ../../operation/agentes/estado_agente.php:861 +#: ../../operation/agentes/status_monitor.php:75 +#: ../../operation/agentes/ver_agente.php:1916 +msgid "View" +msgstr "表示" + +#: ../../enterprise/meta/screens/screens.visualmap.php:206 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../godmode/reporting/visual_console_builder.php:845 +#: ../../operation/visual_console/legacy_view.php:183 +msgid "Builder" +msgstr "ビルダ" + +#: ../../enterprise/meta/screens/screens.visualmap.php:219 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/meta/general/main_menu.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 +#: ../../enterprise/include/functions_reporting.php:60 +#: ../../enterprise/include/functions_reporting.php:7980 +#: ../../enterprise/include/functions_reporting.php:8006 +#: ../../godmode/reporting/visual_console_builder.php:840 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../operation/visual_console/view.php:188 +#: ../../operation/visual_console/legacy_view.php:175 +msgid "Wizard" +msgstr "設定追加" + +#: ../../enterprise/meta/screens/screens.visualmap.php:230 +#: ../../godmode/reporting/visual_console_builder.php:828 +#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/legacy_view.php:155 +msgid "List elements" +msgstr "エレメント一覧" + +#: ../../enterprise/meta/screens/screens.visualmap.php:241 +#: ../../godmode/reporting/visual_console_builder.php:824 +#: ../../godmode/reporting/graph_builder.php:298 +#: ../../godmode/reporting/reporting_builder.main.php:73 +#: ../../godmode/reporting/reporting_builder.php:3589 +#: ../../operation/visual_console/view.php:160 +#: ../../operation/visual_console/legacy_view.php:147 +#: ../../operation/reporting/reporting_viewer.php:139 +#: ../../operation/reporting/graph_viewer.php:193 +msgid "Main data" +msgstr "メインデータ" + +#: ../../enterprise/meta/screens/screens.visualmap.php:261 +#: ../../godmode/reporting/visual_console_builder.php:820 +#: ../../operation/visual_console/view.php:150 +#: ../../operation/visual_console/legacy_view.php:137 +msgid "Show link to public Visual Console" +msgstr "パブリックビジュアルコンソール表示" + +#: ../../enterprise/meta/screens/screens.visualmap.php:286 +#: ../../godmode/reporting/visual_console_builder.php:816 +#: ../../operation/visual_console/view.php:122 +#: ../../operation/visual_console/legacy_view.php:121 +msgid "Visual consoles list" +msgstr "ビジュアルコンソール一覧" + +#: ../../enterprise/meta/screens/screens.visualmap.php:297 +#: ../../godmode/reporting/visual_console_builder.php:859 +msgid "New visual console" +msgstr "新規ビジュアルコンソール" + +#: ../../enterprise/meta/screens/screens.visualmap.php:305 +#: ../../enterprise/meta/screens/screens.visualmap.php:310 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 +#: ../../enterprise/godmode/reporting/visual_console_template.php:122 +#: ../../enterprise/godmode/reporting/visual_console_template.php:128 +#: ../../extensions/resource_exportation.php:436 +#: ../../godmode/users/configure_user.php:1138 +#: ../../godmode/reporting/visual_console_builder.php:882 +#: ../../godmode/reporting/map_builder.php:134 +#: ../../godmode/reporting/map_builder.php:140 +#: ../../godmode/reporting/visual_console_favorite.php:131 +#: ../../godmode/reporting/visual_console_favorite.php:137 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 +#: ../../operation/users/user_edit.php:360 ../../operation/visual_console/view.php:230 +#: ../../operation/menu.php:179 ../../operation/menu.php:183 +msgid "Visual console" +msgstr "ビジュアルコンソール" + +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:232 +#: ../../enterprise/meta/general/logon_ok.php:84 +#: ../../enterprise/meta/general/main_menu.php:348 +msgid "Screens" +msgstr "画面" + +#: ../../enterprise/meta/advanced/servers.build_table.php:34 +#: ../../godmode/servers/servers.build_table.php:52 +msgid "There are no servers configured into the database" +msgstr "データベースにサーバがありません。" + +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 +#: ../../enterprise/godmode/servers/list_satellite.php:39 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/class/AgentRepository.class.php:376 +#: ../../enterprise/include/class/AgentRepository.class.php:672 +#: ../../enterprise/tools/ipam/ipam_calculator.php:52 ../../godmode/extensions.php:139 +#: ../../godmode/update_manager/update_manager.history.php:40 +#: ../../godmode/reporting/reporting_builder.item_editor.php:78 +#: ../../godmode/servers/servers.build_table.php:82 +#: ../../include/functions_reporting_html.php:1593 +#: ../../include/functions_snmp_browser.php:746 +#: ../../general/reporting_console_node.php:69 +msgid "Version" +msgstr "バージョン" + +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:286 +#: ../../enterprise/meta/monitoring/group_view.php:155 +#: ../../enterprise/meta/monitoring/group_view.php:221 +#: ../../enterprise/meta/include/functions_wizard_meta.php:406 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1821 +#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:458 +#: ../../enterprise/godmode/policies/policies.php:513 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 +#: ../../enterprise/include/functions_reporting_pdf.php:884 +#: ../../enterprise/include/functions_policies.php:3723 +#: ../../enterprise/operation/agentes/tag_view.php:606 +#: ../../enterprise/operation/services/massive/services.create.php:989 +#: ../../enterprise/operation/services/massive/service.create.elements.php:384 +#: ../../enterprise/operation/services/services.service_map.php:163 +#: ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/configurar_agente.php:409 +#: ../../godmode/agentes/configurar_agente.php:727 +#: ../../godmode/agentes/modificar_agente.php:818 +#: ../../godmode/agentes/planned_downtime.list.php:85 +#: ../../godmode/agentes/planned_downtime.list.php:115 +#: ../../godmode/agentes/planned_downtime.editor.php:1222 +#: ../../godmode/agentes/planned_downtime.editor.php:1297 +#: ../../godmode/massive/massive_copy_modules.php:199 +#: ../../godmode/massive/massive_delete_modules.php:463 +#: ../../godmode/massive/massive_edit_plugins.php:383 +#: ../../godmode/massive/massive_edit_modules.php:425 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1915 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2136 +#: ../../godmode/reporting/visual_console_builder.wizard.php:432 +#: ../../godmode/servers/servers.build_table.php:83 ../../mobile/operation/agents.php:96 +#: ../../mobile/operation/agents.php:409 ../../mobile/operation/modules.php:236 +#: ../../mobile/operation/home.php:88 ../../mobile/operation/agent.php:327 +#: ../../include/functions_reporting_html.php:1996 +#: ../../include/functions_reporting_html.php:5536 +#: ../../include/functions_reports.php:733 ../../include/functions_reports.php:737 +#: ../../include/functions_reports.php:741 ../../include/functions_reports.php:745 +#: ../../include/functions_reports.php:749 ../../include/functions_reports.php:753 +#: ../../include/functions_reports.php:757 ../../include/functions_reports.php:761 +#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1720 +#: ../../include/functions_html.php:5616 ../../include/class/AgentsAlerts.class.php:253 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:414 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:420 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/search_agents.php:55 ../../operation/tree.php:114 +#: ../../operation/search_results.php:158 ../../operation/agentes/estado_agente.php:760 +#: ../../operation/agentes/graphs.php:188 ../../operation/agentes/exportdata.php:282 +#: ../../operation/agentes/group_view.php:184 ../../operation/agentes/group_view.php:217 +msgid "Modules" +msgstr "モジュール" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Lag" +msgstr "遅延" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:84 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "平均遅延(秒)/遅延モジュール" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "T/Q" +msgstr "T/Q" + +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:85 +msgid "Threads / Queued modules currently" +msgstr "スレッド数 / 現在キューに溜まっているモジュール数" + +#: ../../enterprise/meta/advanced/servers.build_table.php:68 +#: ../../enterprise/include/class/DatabaseHA.class.php:798 +#: ../../enterprise/tools/ipam/ipam_ajax.php:494 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:87 +#: ../../operation/incidents/integriaims_export_csv.php:86 +msgid "Updated" +msgstr "更新" + +#: ../../enterprise/meta/advanced/servers.build_table.php:72 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/godmode/modules/local_components.php:625 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policies.php:413 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:487 +#: ../../godmode/alerts/alert_list.list.php:499 +#: ../../godmode/alerts/alert_templates.php:388 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../godmode/reporting/graphs.php:323 +#: ../../godmode/reporting/reporting_builder.php:955 +#: ../../godmode/reporting/reporting_builder.php:1154 +#: ../../godmode/servers/servers.build_table.php:91 ../../godmode/servers/plugin.php:819 +#: ../../include/functions_container.php:157 ../../operation/gis_maps/gis_map.php:109 +msgid "Op." +msgstr "操作" + +#: ../../enterprise/meta/advanced/servers.build_table.php:91 +#: ../../godmode/servers/servers.build_table.php:134 +msgid "This is a master server" +msgstr "マスタサーバです。" + +#: ../../enterprise/meta/advanced/servers.build_table.php:106 +#: ../../enterprise/meta/advanced/servers.build_table.php:112 +#: ../../godmode/servers/servers.build_table.php:153 +#: ../../godmode/servers/servers.build_table.php:159 +msgid "of" +msgstr "/" + +#: ../../enterprise/meta/advanced/servers.build_table.php:134 +#: ../../godmode/servers/servers.build_table.php:260 +msgid "Modules run by this server will stop working. Do you want to continue?" +msgstr "このサーバで動作しているモジュールを停止します。実行しますか?" + +#: ../../enterprise/meta/advanced/servers.build_table.php:160 +#: ../../godmode/servers/servers.build_table.php:287 +msgid "Tactical server information" +msgstr "モニタリングサーバの情報" + +#: ../../enterprise/meta/advanced/massive_operations.php:57 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 +#: ../../general/node_deactivated.php:59 +msgid "command center" +msgstr "コマンドセンター" + +#: ../../enterprise/meta/advanced/massive_operations.php:54 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 +#, php-format +msgid "You should centralise management in order to use Wizard section. Please go to %s" +msgstr "ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" + +#: ../../enterprise/meta/advanced/component_management.php:52 +#: ../../include/functions_menu.php:531 +msgid "Tags management" +msgstr "タグ管理" + +#: ../../enterprise/meta/advanced/component_management.php:56 +msgid "Module groups Management" +msgstr "モジュールグループ管理" + +#: ../../enterprise/meta/advanced/component_management.php:60 +msgid "OS Management" +msgstr "OS 管理" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:51 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:46 +#: ../../enterprise/meta/advanced/metasetup.log.php:41 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.hist_db.php:48 +#: ../../enterprise/meta/advanced/metasetup.auth.php:47 +#: ../../enterprise/meta/advanced/metasetup.performance.php:47 +#, php-format +msgid "Could not be update: Error in %s" +msgstr "更新できませでした、%s でエラーです。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:58 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:53 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:221 +#: ../../enterprise/meta/advanced/metasetup.log.php:48 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.hist_db.php:55 +#: ../../enterprise/meta/advanced/metasetup.auth.php:54 +#: ../../enterprise/meta/advanced/metasetup.performance.php:54 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 +msgid "Successfully update" +msgstr "更新しました" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:98 ../../godmode/menu.php:353 +#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 +msgid "Visual styles" +msgstr "画面設定" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:105 +#: ../../enterprise/meta/include/functions_meta.php:1310 +#: ../../godmode/setup/setup_visuals.php:1310 ../../include/functions_config.php:942 +msgid "Date format string" +msgstr "日時フォーマット" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:109 +#: ../../godmode/setup/setup_visuals.php:1311 +msgid "Example" +msgstr "例" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:136 +#: ../../godmode/setup/setup_visuals.php:1329 +msgid "Timestamp, time comparison, or compact mode" +msgstr "日時表示、経過時間表示、コンパクト表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:139 +#: ../../godmode/setup/setup_visuals.php:1331 +msgid "Comparation in rollover" +msgstr "経過時間表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:148 +#: ../../godmode/setup/setup_visuals.php:1332 +msgid "Timestamp in rollover" +msgstr "日時表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:157 +#: ../../godmode/setup/setup_visuals.php:1333 +msgid "Compact mode" +msgstr "コンパクト表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:166 +#: ../../godmode/setup/setup_visuals.php:699 ../../include/functions_config.php:950 +msgid "Graph color #1" +msgstr "グラフの色 #1" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:176 +#: ../../godmode/setup/setup_visuals.php:710 ../../include/functions_config.php:954 +msgid "Graph color #2" +msgstr "グラフの色 #2" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:186 +#: ../../godmode/setup/setup_visuals.php:721 ../../include/functions_config.php:958 +msgid "Graph color #3" +msgstr "グラフの色 #3" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:197 +msgid "Data precision for reports and visual consoles" +msgstr "レポートとビジュアルコンソールのデータ精度" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:200 +msgid "Precision must be a integer number between 0 and 5" +msgstr "精度は 0 と 5 の間の整数でなければいけません" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:216 +#: ../../enterprise/meta/include/functions_meta.php:1360 +#: ../../godmode/setup/setup_visuals.php:936 +#: ../../godmode/reporting/visual_console_builder.elements.php:213 +#: ../../godmode/reporting/visual_console_builder.wizard.php:285 +#: ../../include/functions_visual_map_editor.php:686 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 +msgid "Percentile" +msgstr "パーセント" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:219 +msgid "Show percentile 95 in graphs" +msgstr "グラフに 95パーセントを表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:232 +#: ../../enterprise/meta/include/functions_meta.php:1445 +#: ../../godmode/setup/setup_visuals.php:809 ../../include/functions_config.php:990 +msgid "Value to interface graphics" +msgstr "インタフェースグラフの値" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:242 +#: ../../enterprise/meta/include/functions_meta.php:1458 +#: ../../godmode/users/configure_user.php:1211 ../../godmode/setup/setup_visuals.php:66 +#: ../../godmode/events/event_edit_filter.php:398 +#: ../../include/functions_config.php:1007 ../../operation/users/user_edit.php:311 +#: ../../operation/snmpconsole/snmp_view.php:555 +msgid "Block size for pagination" +msgstr "ページ毎の表示件数" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:252 +#: ../../enterprise/meta/include/functions_meta.php:1374 +#: ../../godmode/setup/setup_visuals.php:870 +msgid "Number of elements in Custom Graph" +msgstr "カスタムグラフの要素数" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:265 +#: ../../enterprise/meta/include/functions_meta.php:1468 +#: ../../godmode/setup/setup_visuals.php:884 ../../include/functions_config.php:1011 +msgid "Use round corners" +msgstr "角を丸くする" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:273 +#: ../../enterprise/meta/include/functions_meta.php:1479 +#: ../../godmode/setup/setup_visuals.php:893 ../../include/functions_config.php:1015 +msgid "Chart fit to content" +msgstr "グラフをコンテンツに合わせる" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:281 +#: ../../enterprise/meta/include/functions_meta.php:1490 +#: ../../include/functions_config.php:1227 +msgid "Disable help" +msgstr "ヘルプの無効化" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:290 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:412 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:304 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:319 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/godmode/modules/local_components.php:541 +#: ../../enterprise/godmode/modules/local_components.php:567 +#: ../../enterprise/godmode/modules/local_components.php:592 +#: ../../enterprise/godmode/agentes/collections.data.php:506 +#: ../../enterprise/godmode/policies/policy_queue.php:603 +#: ../../enterprise/godmode/policies/policy_queue.php:608 +#: ../../enterprise/godmode/policies/policy_queue.php:619 +#: ../../enterprise/godmode/policies/policy_queue.php:692 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 +#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 +#: ../../enterprise/godmode/setup/setup_acl.php:487 +#: ../../enterprise/godmode/setup/setup_acl.php:504 +#: ../../enterprise/godmode/setup/setup_acl.php:521 +#: ../../enterprise/godmode/setup/setup_acl.php:753 +#: ../../enterprise/godmode/setup/setup_acl.php:761 +#: ../../enterprise/godmode/setup/setup_acl.php:772 +#: ../../enterprise/godmode/setup/setup_acl.php:813 +#: ../../enterprise/godmode/setup/setup_acl.php:844 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:641 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:667 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2025 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2836 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 +#: ../../enterprise/include/class/ManageBackups.class.php:191 +#: ../../enterprise/include/functions_metaconsole.php:865 +#: ../../enterprise/include/functions_metaconsole.php:866 +#: ../../enterprise/include/functions_metaconsole.php:1214 +#: ../../enterprise/include/functions_ipam.php:1688 +#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../enterprise/operation/agentes/tag_view.php:145 +#: ../../enterprise/operation/agentes/tag_view.php:171 +#: ../../enterprise/operation/agentes/tag_view.php:237 +#: ../../enterprise/operation/agentes/tag_view.php:301 +#: ../../enterprise/operation/agentes/tag_view.php:304 +#: ../../enterprise/operation/agentes/tag_view.php:390 +#: ../../enterprise/operation/agentes/agent_inventory.php:122 +#: ../../enterprise/operation/log/log_viewer.php:620 +#: ../../enterprise/operation/log/log_viewer.php:638 +#: ../../enterprise/operation/log/log_viewer.php:688 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 +#: ../../enterprise/operation/inventory/inventory.php:75 +#: ../../enterprise/operation/inventory/inventory.php:76 +#: ../../enterprise/operation/inventory/inventory.php:155 +#: ../../enterprise/operation/inventory/inventory.php:156 +#: ../../enterprise/operation/inventory/inventory.php:332 +#: ../../enterprise/operation/inventory/inventory.php:360 +#: ../../enterprise/operation/inventory/inventory.php:369 +#: ../../extensions/agents_modules.php:416 +#: ../../extensions/files_repo/files_repo_form.php:46 +#: ../../godmode/modules/manage_network_templates_form.php:303 +#: ../../godmode/modules/manage_network_components.php:653 +#: ../../godmode/massive/massive_copy_modules.php:127 +#: ../../godmode/massive/massive_copy_modules.php:287 +#: ../../godmode/massive/massive_delete_modules.php:327 +#: ../../godmode/massive/massive_delete_modules.php:374 +#: ../../godmode/massive/massive_delete_modules.php:429 +#: ../../godmode/massive/massive_delete_modules.php:450 +#: ../../godmode/massive/massive_edit_modules.php:311 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../godmode/massive/massive_edit_modules.php:396 +#: ../../godmode/massive/massive_edit_modules.php:482 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../godmode/alerts/alert_list.list.php:146 +#: ../../godmode/alerts/alert_list.list.php:155 +#: ../../godmode/alerts/alert_templates.php:308 ../../godmode/alerts/alert_list.php:460 +#: ../../godmode/alerts/alert_list.php:509 ../../godmode/alerts/alert_list.php:523 +#: ../../godmode/setup/gis_step_2.php:217 ../../godmode/setup/setup_visuals.php:951 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1643 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1661 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2122 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2958 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2985 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3620 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3701 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3723 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3781 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3884 +#: ../../godmode/reporting/visual_console_builder.wizard.php:340 +#: ../../godmode/reporting/visual_console_builder.wizard.php:354 +#: ../../godmode/events/event_edit_filter.php:328 +#: ../../godmode/events/event_edit_filter.php:343 +#: ../../godmode/events/event_edit_filter.php:606 ../../mobile/operation/agents.php:56 +#: ../../mobile/operation/modules.php:68 ../../mobile/operation/modules.php:289 +#: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65 +#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:974 +#: ../../mobile/operation/events.php:984 ../../mobile/operation/events.php:1460 +#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1071 +#: ../../include/functions.php:1331 ../../include/ajax/events.php:506 +#: ../../include/functions_groupview.php:96 ../../include/functions_modules.php:3576 +#: ../../include/functions_modules.php:3578 ../../include/functions_users.php:416 +#: ../../include/functions_users.php:674 ../../include/functions_notifications.php:105 +#: ../../include/functions_html.php:915 ../../include/functions_html.php:1576 +#: ../../include/functions_massive_operations.php:160 +#: ../../include/functions_massive_operations.php:174 +#: ../../include/class/CredentialStore.class.php:535 +#: ../../include/class/AuditLog.class.php:203 ../../include/class/AuditLog.class.php:213 +#: ../../include/functions_reporting.php:3108 ../../include/functions_reporting.php:3205 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 +#: ../../include/lib/Dashboard/Widgets/events_list.php:412 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 +#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940 +#: ../../operation/heatmap.php:115 ../../operation/tree.php:210 +#: ../../operation/tree.php:267 ../../operation/agentes/estado_agente.php:276 +#: ../../operation/agentes/status_monitor.php:651 +#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/alerts_status.functions.php:96 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:125 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/snmpconsole/snmp_view.php:549 +#: ../../operation/snmpconsole/snmp_view.php:578 +#: ../../operation/snmpconsole/snmp_view.php:586 +#: ../../operation/snmpconsole/snmp_view.php:902 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +#: ../../operation/incidents/list_integriaims_incidents.php:337 +#: ../../operation/incidents/list_integriaims_incidents.php:354 +#: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/events/events.php:750 ../../operation/events/events.php:1591 +#: ../../operation/events/events.php:1664 ../../operation/events/events.php:1796 +#: ../../operation/events/events.php:1848 ../../general/subselect_data_module.php:62 +msgid "All" +msgstr "全て" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:291 +#: ../../godmode/setup/setup_visuals.php:952 +msgid "On Boolean graphs" +msgstr "二値グラフ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:294 +msgid "Graph TIP view" +msgstr "グラフ詳細表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:295 +msgid "This option may cause performance issues" +msgstr "このオプションはパフォーマンスの問題を発生させる可能性があります" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:309 +#: ../../godmode/setup/setup_visuals.php:971 +msgid "Show only average by default" +msgstr "デフォルトで平均の表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:310 +#: ../../godmode/setup/setup_visuals.php:972 +msgid "Show MAX/AVG/MIN by default" +msgstr "デフォルトで最大/平均/最小を表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:312 +#: ../../godmode/setup/setup_visuals.php:968 +msgid "Graph mode" +msgstr "グラフモード" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:332 +#: ../../godmode/setup/setup_visuals.php:987 +msgid "Zoom graphs:" +msgstr "グラフ倍率:" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:346 +#: ../../godmode/setup/setup_visuals.php:902 +msgid "Type of module charts" +msgstr "モジュールグラフのタイプ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:348 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 +#: ../../godmode/setup/setup_visuals.php:903 ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/reporting/create_container.php:358 +#: ../../godmode/reporting/graph_builder.main.php:214 +#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 +#: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 +#: ../../operation/agentes/graphs.php:408 ../../operation/agentes/graphs.php:426 +#: ../../operation/reporting/graph_viewer.php:370 +msgid "Area" +msgstr "塗り潰し" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:357 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 +#: ../../godmode/setup/setup_visuals.php:910 ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/reporting/create_container.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:334 +#: ../../godmode/reporting/graph_builder.main.php:216 +#: ../../include/functions_visual_map_editor.php:72 +#: ../../include/functions_visual_map_editor.php:557 +#: ../../include/functions_visual_map_editor.php:1399 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 +#: ../../operation/visual_console/view.php:361 ../../operation/agentes/graphs.php:238 +#: ../../operation/agentes/graphs.php:244 ../../operation/agentes/graphs.php:416 +#: ../../operation/agentes/graphs.php:430 ../../operation/reporting/graph_viewer.php:372 +msgid "Line" +msgstr "線" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:367 +#: ../../enterprise/meta/include/functions_meta.php:1560 +msgid "Metaconsole elements" +msgstr "メタコンソール要素" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:369 +msgid "The number of elements retrieved for each instance in some views." +msgstr "一部のビュー内での各インスタンスの要素数" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:382 +#: ../../enterprise/meta/advanced/metasetup.visual.php:849 +#: ../../enterprise/meta/advanced/metasetup.visual.php:850 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:428 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 +#: ../../godmode/snmpconsole/snmp_alert.php:1102 +#: ../../godmode/setup/setup_visuals.php:1031 ../../godmode/setup/setup_visuals.php:1032 +#: ../../godmode/setup/setup_visuals.php:1396 +#: ../../include/functions_visual_map_editor.php:1223 +#: ../../include/functions_visual_map_editor.php:1224 ../../include/functions.php:499 +#: ../../include/functions.php:630 ../../include/ajax/events.php:2295 +#: ../../include/ajax/events.php:2296 ../../include/ajax/events.php:2297 +#: ../../include/ajax/events.php:2298 ../../include/ajax/events.php:2302 +#: ../../include/ajax/events.php:2303 ../../include/ajax/events.php:2304 +#: ../../include/ajax/events.php:2305 ../../include/ajax/events.php:2306 +#: ../../include/ajax/events.php:2307 ../../include/functions_html.php:2119 +#: ../../include/class/AgentsAlerts.class.php:387 +#: ../../operation/events/sound_events.php:199 +#: ../../operation/events/sound_events.php:200 +#: ../../operation/events/sound_events.php:201 +#: ../../operation/events/sound_events.php:202 +#: ../../operation/events/sound_events.php:206 +#: ../../operation/events/sound_events.php:207 +#: ../../operation/events/sound_events.php:208 +#: ../../operation/events/sound_events.php:209 +#: ../../operation/events/sound_events.php:210 +#: ../../operation/events/sound_events.php:211 +msgid "seconds" +msgstr "秒" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../enterprise/meta/advanced/metasetup.visual.php:851 +#: ../../enterprise/meta/advanced/metasetup.visual.php:852 +#: ../../enterprise/meta/advanced/metasetup.visual.php:853 +#: ../../enterprise/meta/advanced/metasetup.visual.php:854 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 +#: ../../godmode/setup/setup_visuals.php:1033 ../../godmode/setup/setup_visuals.php:1034 +#: ../../godmode/setup/setup_visuals.php:1035 ../../godmode/setup/setup_visuals.php:1036 +#: ../../godmode/setup/setup_visuals.php:1397 +#: ../../include/functions_visual_map_editor.php:1225 +#: ../../include/functions_visual_map_editor.php:1226 +#: ../../include/functions_visual_map_editor.php:1227 +#: ../../include/functions_visual_map_editor.php:1228 ../../include/functions.php:503 +#: ../../include/functions.php:634 ../../include/functions_html.php:2120 +msgid "minutes" +msgstr "分" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:384 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 +#: ../../godmode/setup/setup_visuals.php:1398 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 +#: ../../include/functions_html.php:2121 +msgid "hours" +msgstr "時間" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:385 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:280 ../../godmode/db/db_main.php:86 +#: ../../godmode/db/db_main.php:92 ../../godmode/setup/setup_visuals.php:1399 +#: ../../include/functions.php:500 ../../include/functions.php:631 +#: ../../include/functions_html.php:2122 +msgid "days" +msgstr "日" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:386 +#: ../../godmode/setup/setup_visuals.php:1400 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2124 +msgid "months" +msgstr "月" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:387 +#: ../../godmode/setup/setup_visuals.php:1401 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2125 +msgid "years" +msgstr "年" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:390 +msgid "Add new custom value to intervals" +msgstr "新たな間隔カスタム値の追加" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:411 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:741 +#: ../../enterprise/meta/advanced/links.php:189 +#: ../../enterprise/meta/include/functions_autoprovision.php:703 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1365 +#: ../../enterprise/godmode/agentes/collection_manager.php:113 +#: ../../enterprise/godmode/agentes/collection_manager.php:142 +#: ../../enterprise/godmode/agentes/inventory_manager.php:185 +#: ../../enterprise/godmode/agentes/plugins_manager.php:163 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 +#: ../../enterprise/godmode/policies/policy_plugins.php:144 +#: ../../enterprise/godmode/policies/policy_alerts.php:605 +#: ../../enterprise/godmode/policies/policy_alerts.php:670 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:616 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:712 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 +#: ../../enterprise/godmode/policies/policy_collections.php:267 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 +#: ../../enterprise/godmode/setup/setup_acl.php:532 +#: ../../enterprise/godmode/setup/setup_acl.php:558 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:269 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:862 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 +#: ../../enterprise/include/ajax/servers.ajax.php:144 +#: ../../enterprise/include/ajax/servers.ajax.php:177 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 +#: ../../extensions/files_repo/files_repo_form.php:105 +#: ../../godmode/modules/manage_network_templates_form.php:347 +#: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:1179 +#: ../../godmode/agentes/planned_downtime.editor.php:1353 +#: ../../godmode/snmpconsole/snmp_alert.php:1494 +#: ../../godmode/gis_maps/configure_gis_map.php:631 +#: ../../godmode/alerts/alert_list.list.php:815 ../../godmode/setup/news.php:299 +#: ../../godmode/setup/links.php:173 ../../godmode/setup/setup_visuals.php:1351 +#: ../../godmode/setup/setup_visuals.php:1406 ../../godmode/setup/setup_visuals.php:1426 +#: ../../godmode/reporting/graph_builder.graph_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:531 +#: ../../godmode/events/event_edit_filter.php:514 +#: ../../godmode/events/event_edit_filter.php:567 ../../godmode/servers/plugin.php:909 +#: ../../include/functions_notifications.php:963 +#: ../../include/class/ManageNetScanScripts.class.php:471 +#: ../../include/functions_snmp_browser.php:1566 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +#: ../../operation/events/events.php:1152 ../../operation/events/events.php:1226 +msgid "Add" +msgstr "追加" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:420 +#: ../../enterprise/meta/include/functions_meta.php:1779 +#: ../../godmode/setup/setup_visuals.php:1411 ../../include/functions_config.php:1398 +msgid "Delete interval" +msgstr "間隔値を削除" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:454 +#: ../../enterprise/meta/include/functions_meta.php:1570 +#: ../../godmode/setup/setup_visuals.php:1292 +msgid "Show only the group name" +msgstr "グループ名のみ表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:456 +#: ../../include/functions_config.php:1255 +msgid "Show the group name instead the group icon." +msgstr "グループアイコンの代わりにグループ名を表示します。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:466 +#: ../../enterprise/meta/include/functions_meta.php:1871 +#: ../../godmode/setup/setup_visuals.php:88 ../../include/functions_config.php:1279 +msgid "Display data of proc modules in other format" +msgstr "別フォーマットでのprocモジュールのデータ表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:474 +#: ../../enterprise/meta/include/functions_meta.php:1881 +#: ../../godmode/setup/setup_visuals.php:97 ../../include/functions_config.php:1283 +msgid "Display text proc modules have state is ok" +msgstr "正常状態時のprocモジュール表示テキスト" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:484 +#: ../../enterprise/meta/include/functions_meta.php:1891 +#: ../../godmode/setup/setup_visuals.php:101 ../../include/functions_config.php:1287 +msgid "Display text when proc modules have state critical" +msgstr "障害状態時のprocモジュール表示テキスト" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:503 +#: ../../enterprise/meta/include/functions_meta.php:1610 +#: ../../godmode/setup/setup_visuals.php:191 ../../include/functions_config.php:1035 +msgid "Custom favicon" +msgstr "カスタム favicon" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:505 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file should " +"be in .ico format with a size of 16x16." +msgstr "" +"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、16x16 のサ" +"イズの .ico 形式である必要があります。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:531 +#: ../../godmode/setup/setup_visuals.php:213 +msgid "Custom background logo" +msgstr "カスタム背景ロゴ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:533 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "カスタム画像を images/backgrounds/ フォルダに置くことができます。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:576 +#: ../../godmode/setup/setup_visuals.php:280 +msgid "Custom logo (menu)" +msgstr "カスタムロゴ(メニュー)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:607 +#: ../../godmode/setup/setup_visuals.php:285 +msgid "Custom logo collapsed (menu)" +msgstr "縮小カスタムロゴ(メニュー)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:638 +#: ../../godmode/setup/setup_visuals.php:290 +msgid "Custom logo (header white background)" +msgstr "カスタムロゴ(白背景ヘッダ)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:667 +#: ../../godmode/setup/setup_visuals.php:329 +msgid "Custom logo (login)" +msgstr "カスタムロゴ (ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:696 +#: ../../godmode/setup/setup_visuals.php:368 +msgid "Custom Splash (login)" +msgstr "カスタムスプラッシュ(ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:724 +#: ../../enterprise/meta/advanced/metasetup.visual.php:795 +#: ../../enterprise/meta/include/functions_meta.php:1640 +#: ../../godmode/setup/setup_visuals.php:508 ../../include/functions_config.php:1111 +msgid "Product name" +msgstr "製品名" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:735 +#: ../../enterprise/meta/advanced/metasetup.visual.php:805 +#: ../../enterprise/meta/include/functions_meta.php:1650 +#: ../../godmode/setup/setup_visuals.php:514 ../../include/functions_config.php:1115 +msgid "Copyright notice" +msgstr "著作権表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:746 +#: ../../godmode/setup/setup_visuals.php:472 +msgid "Title (header)" +msgstr "タイトル(ヘッダ)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:750 +#: ../../godmode/setup/setup_visuals.php:477 +msgid "Subtitle (header)" +msgstr "サブタイトル(ヘッダ)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:754 +#: ../../godmode/setup/setup_visuals.php:483 +msgid "Title 1 (login)" +msgstr "タイトル 1 (ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:765 +#: ../../godmode/setup/setup_visuals.php:490 +msgid "Title 2 (login)" +msgstr "タイトル 2 (ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:775 +#: ../../enterprise/meta/include/functions_meta.php:1700 +#: ../../godmode/setup/setup_visuals.php:496 +msgid "Docs URL (login)" +msgstr "ドキュメントURL(ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:785 +#: ../../enterprise/meta/include/functions_meta.php:1710 +#: ../../godmode/setup/setup_visuals.php:502 +msgid "Support URL (login)" +msgstr "サポートURL(ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +msgid "Graphs font family" +msgstr "グラフフォントファミリ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:826 +#: ../../enterprise/meta/include/functions_meta.php:1540 +#: ../../godmode/setup/setup_visuals.php:564 +msgid "Visual effects and animation" +msgstr "表示効果およびアニメーション" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:836 +#: ../../godmode/setup/setup_visuals.php:1021 +msgid "Legacy Visual Console View" +msgstr "レガシービジュアルコンソール表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:838 +msgid "To use the old view when using the Visual Console visor" +msgstr "ビジュアルコンソールで古い表示を使用する場合" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:855 +#: ../../godmode/setup/setup_visuals.php:1037 +#: ../../include/functions_visual_map_editor.php:1229 +msgid "hour" +msgstr "時間" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:857 +#: ../../godmode/setup/setup_visuals.php:1039 +msgid "Default cache expiration" +msgstr "デフォルトのキャッシュ有効期限" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:862 +#: ../../godmode/setup/setup_visuals.php:1044 +#: ../../include/functions_visual_map_editor.php:1255 +msgid "No cache" +msgstr "キャッシュ無し" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:874 +#: ../../enterprise/meta/include/functions_meta.php:1918 +#: ../../godmode/setup/setup_visuals.php:1056 ../../include/functions_config.php:1159 +msgid "Default interval for refresh on Visual Console" +msgstr "ビジュアルコンソールのデフォルト更新間隔" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:877 +msgid "This interval will affect to Visual Console pages" +msgstr "この間隔はビジュアルコンソールページで有効です" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:903 +#: ../../godmode/setup/setup_visuals.php:1505 +msgid "Data multiplier to use in graphs/data" +msgstr "グラフのデータで利用するデータ倍率" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:907 +#: ../../godmode/setup/setup_visuals.php:1507 +msgid "Use 1024 when module unit are bytes" +msgstr "モジュールの単位がバイトの場合 1024 を利用" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:908 +#: ../../godmode/setup/setup_visuals.php:1508 +msgid "Use always 1000" +msgstr "常に 1000を利用" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:909 +#: ../../godmode/setup/setup_visuals.php:1509 +msgid "Use always 1024" +msgstr "常に 1024 を利用" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:923 +#: ../../enterprise/meta/include/functions_meta.php:1923 +#: ../../godmode/setup/setup_visuals.php:1098 ../../include/functions_config.php:1175 +msgid "Mobile view not allow visual console orientation" +msgstr "モバイル表示では、視覚的なコンソールの向きは調整できません。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:941 +msgid "Reports configuration" +msgstr "レポート設定" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:947 +#: ../../godmode/setup/setup_visuals.php:1132 +msgid "Show report info with description" +msgstr "説明とともにレポート情報を表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:948 +msgid "" +"Custom report description info. It will be applied to all reports and templates by " +"default." +msgstr "" +"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用されま" +"す。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:959 +#: ../../godmode/setup/setup_visuals.php:1141 +msgid "Custom report front page" +msgstr "カスタムレポート表紙" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:960 +msgid "" +"Custom report front page. It will be applied to all reports and templates by default." +msgstr "" +"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用されます。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:971 +#: ../../enterprise/meta/include/functions_meta.php:1405 +#: ../../godmode/setup/setup_visuals.php:1151 ../../include/functions_config.php:1429 +msgid "PDF font size (px)" +msgstr "PDF フォントサイズ(px)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:974 +#: ../../enterprise/meta/include/functions_meta.php:1395 +#: ../../godmode/setup/setup_visuals.php:1156 ../../include/functions_config.php:1425 +msgid "HTML font size for SLA (em)" +msgstr "SLA 用 HTML フォントサイズ(em)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:977 +#: ../../enterprise/meta/include/functions_meta.php:1520 +#: ../../godmode/setup/setup_visuals.php:1161 +msgid "Graph image height for HTML reports" +msgstr "HTML レポートのグラフ画像の高さ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:979 +msgid "" +"This is the height in pixels of the module graph or custom graph in the reports " +"(only: HTML)" +msgstr "" +"これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです(HTMLの" +"み)。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:996 +#: ../../enterprise/meta/include/functions_meta.php:1425 +#: ../../godmode/setup/setup_visuals.php:1454 ../../include/functions_config.php:1457 +msgid "CSV divider" +msgstr "CSV 区切り文字" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 +#: ../../enterprise/meta/include/functions_meta.php:1435 +#: ../../godmode/setup/setup_visuals.php:1500 ../../include/functions_config.php:1461 +msgid "CSV decimal separator" +msgstr "CSV小数点区切り文字" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1044 +#: ../../enterprise/meta/include/functions_meta.php:1415 +#: ../../godmode/setup/setup_visuals.php:1170 +msgid "Interval description" +msgstr "間隔の表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1046 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 seconds”, a short " +"one is 10h 20m 33s" +msgstr "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1074 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1805 +#: ../../enterprise/meta/include/functions_meta.php:1821 +#: ../../enterprise/meta/include/functions_meta.php:1831 +#: ../../enterprise/meta/include/functions_meta.php:1841 +#: ../../enterprise/meta/include/functions_meta.php:1851 +#: ../../enterprise/meta/include/functions_meta.php:1861 +#: ../../godmode/setup/setup_visuals.php:1194 ../../godmode/setup/setup_visuals.php:1209 +#: ../../godmode/setup/setup_visuals.php:1217 ../../godmode/setup/setup_visuals.php:1237 +#: ../../godmode/setup/setup_visuals.php:1253 ../../include/functions_config.php:1433 +#: ../../include/functions_config.php:1437 ../../include/functions_config.php:1441 +#: ../../include/functions_config.php:1445 ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1453 +msgid "Custom report front" +msgstr "カスタムレポートスタイル" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 +#: ../../enterprise/meta/include/functions_meta.php:1580 +#: ../../enterprise/meta/include/functions_meta.php:1831 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1194 ../../include/functions_config.php:1039 +#: ../../include/functions_config.php:1441 +msgid "Custom logo" +msgstr "カスタムロゴ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console installation. You can " +"upload more files (ONLY JPEG AND PNG) with the upload tool." +msgstr "" +"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツールを使" +"用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 +#: ../../enterprise/meta/include/functions_meta.php:1841 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1217 ../../include/functions_config.php:1445 +msgid "Header" +msgstr "ヘッダー" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1851 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1237 ../../include/functions_config.php:1449 +msgid "First page" +msgstr "最初のページ" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1324 +#: ../../godmode/setup/setup_visuals.php:1806 +msgid "Logo preview" +msgstr "ロゴのプレビュー" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1346 +#: ../../godmode/setup/setup_visuals.php:1836 +msgid "Splash Preview" +msgstr "スプラッシュプレビュー" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1351 +#: ../../godmode/setup/setup_visuals.php:1860 +msgid "Background preview" +msgstr "背景のプレビュー" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid "Agent: " +msgstr "エージェント: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +msgid " already exists in target node" +msgstr " は対象ノードにすでに存在します" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +msgid " group does not exist in target node" +msgstr " グループは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +msgid " policies definitions does not match with defined ones in target node" +msgstr " ポリシー定義は対象ノードの定義とマッチしません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +msgid " plugins does not exist in target node" +msgstr " プラグインは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +msgid " collections does not exist in target node" +msgstr " コレクションは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +msgid " inventory does not exist in target node" +msgstr " インベントリは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +msgid " alerts template does not exist in target node" +msgstr " アラートテンプレートは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +msgid " alerts action does not exist in target node" +msgstr " アラートアクションは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +msgid "Exists agent conf for agent: " +msgstr "エージェントの設定ファイルが存在します: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +msgid " please remove configuration file from target node." +msgstr " 対象ノードから設定ファイルを削除してください。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159 +#: ../../enterprise/include/functions_metaconsole.php:2831 +msgid "There are differences between MR versions" +msgstr "MR バージョンに違いがあります" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 +#: ../../enterprise/include/functions_metaconsole.php:2824 +msgid "Target server ip address is set" +msgstr "対象サーバの IP アドレスが設定されています" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid "The agent: " +msgstr "エージェント: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +msgid " has been successfully added to the migration queue " +msgstr " はマイグレーションキューに追加されました " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +msgid " has not been added due to problems in the insertion" +msgstr " は挿入で問題が発生したため追加されませんでした" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "エージェント: %d はマイグレーションキューにすでに追加されています" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:156 +#: ../../enterprise/godmode/reporting/graph_template_list.php:183 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 +#: ../../godmode/modules/manage_nc_groups.php:153 +#: ../../godmode/agentes/planned_downtime.list.php:243 +#: ../../godmode/netflow/nf_item_list.php:121 ../../godmode/netflow/nf_item_list.php:149 +#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 +#: ../../godmode/reporting/map_builder.php:210 ../../godmode/reporting/graphs.php:152 +#: ../../godmode/reporting/graphs.php:163 ../../godmode/reporting/graphs.php:214 +#: ../../godmode/events/event_filter.php:70 ../../godmode/events/event_filter.php:97 +#: ../../operation/reporting/graph_viewer.php:59 +#: ../../operation/reporting/graph_viewer.php:67 +msgid "Not deleted. Error deleting data" +msgstr "データの削除に失敗しました。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 +msgid "Problems delete queue" +msgstr "キューの削除で問題が発生しました" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 +msgid "Move Agents" +msgstr "エージェント移動" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 +msgid "Source Server" +msgstr "ソースサーバ" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 +msgid "Destination Server" +msgstr "対象サーバ" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 +#: ../../enterprise/meta/monitoring/group_view.php:154 +#: ../../enterprise/meta/monitoring/group_view.php:215 +#: ../../enterprise/meta/include/functions_autoprovision.php:476 +#: ../../enterprise/godmode/agentes/collections.agents.php:53 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:283 +#: ../../enterprise/godmode/agentes/collections.editor.php:74 +#: ../../enterprise/godmode/policies/policy_queue.php:648 +#: ../../enterprise/godmode/policies/policies.php:411 +#: ../../enterprise/godmode/policies/policies.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:531 +#: ../../enterprise/godmode/policies/policy_agents.php:664 +#: ../../enterprise/godmode/policies/policy_agents.php:778 +#: ../../enterprise/godmode/policies/policy.php:71 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../enterprise/include/functions_cron.php:215 +#: ../../enterprise/include/functions_tasklist.php:366 +#: ../../enterprise/include/functions_reporting_pdf.php:884 +#: ../../enterprise/include/functions_policies.php:3825 +#: ../../enterprise/operation/services/massive/services.create.php:988 +#: ../../enterprise/operation/services/massive/service.create.elements.php:383 +#: ../../enterprise/operation/services/services.service_map.php:158 +#: ../../extensions/agents_modules.php:431 ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/planned_downtime.list.php:84 +#: ../../godmode/agentes/planned_downtime.list.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:203 +#: ../../godmode/massive/massive_delete_modules.php:535 +#: ../../godmode/massive/massive_add_alerts.php:231 +#: ../../godmode/massive/massive_edit_plugins.php:367 +#: ../../godmode/massive/massive_enable_disable_alerts.php:174 +#: ../../godmode/massive/massive_delete_alerts.php:314 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/alerts/alert_list.list.php:79 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1786 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1848 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2095 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../mobile/include/functions_web.php:23 ../../mobile/operation/agents.php:204 +#: ../../mobile/operation/home.php:81 ../../mobile/operation/agent.php:155 +#: ../../include/functions_reporting_html.php:1996 +#: ../../include/functions_reporting_html.php:2465 +#: ../../include/functions_reporting_html.php:3243 ../../include/functions_cron.php:692 +#: ../../include/functions_html.php:1655 ../../include/functions_html.php:5550 +#: ../../include/functions_massive_operations.php:219 +#: ../../include/class/Diagnostics.class.php:1161 +#: ../../include/class/Diagnostics.class.php:1165 +#: ../../include/class/Diagnostics.class.php:1169 +#: ../../include/class/Diagnostics.class.php:1173 +#: ../../include/class/NetworkMap.class.php:3228 +#: ../../include/class/AgentsAlerts.class.php:252 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:80 +#: ../../operation/agentes/interface_view.functions.php:71 +#: ../../operation/agentes/group_view.php:183 ../../operation/agentes/group_view.php:216 +msgid "Agents" +msgstr "エージェント" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 +msgid "Agents to move" +msgstr "移動するエージェント" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 +msgid "Add agents to destination server" +msgstr "対象サーバにエージェントを追加" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 +msgid "Remove agents to doesn't move to destination server" +msgstr "送り先サーバへ移動させないエージェントを削除" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +msgid "Discard history data" +msgstr "ヒストリデータ削除" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 +msgid "Agents do not exist in target server." +msgstr "対象サーバにエージェントがありません。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 +msgid "Check group is synchronized with target server." +msgstr "対象サーバでグループが同期されていることを確認してください。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 +msgid "All policies needed are synchronized with target server." +msgstr "必要なすべてのポリシーは、対象サーバと同期されています。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 +msgid "All remote plugins needed are synchronized with target server." +msgstr "必要なすべてのプラグインは対象サーバと同期されています。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 +msgid "All collections needed are syncronized with target server." +msgstr "必要なすべてのコレクションは対象サーバと同期されています。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 +msgid "All remote inventory definitions needed are syncronized with target server." +msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 +msgid "All alert templates definitions needed are syncronized with target server." +msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 +msgid "All alert actions needed are syncronized with target server." +msgstr "必要なすべてのアラートアクションは対象サーバと同期されています。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 +msgid "Agents conf does not exists in target server." +msgstr "対象サーバにエージェントの設定がありません。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "両方の %s サーバは同じバージョンである必要があります" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 +msgid "Check target server ip address is set" +msgstr "対象サーバの IP アドレスが設定されているか確認してください。" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 +msgid "Move" +msgstr "移動" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 +#: ../../enterprise/include/functions_inventory.php:142 +#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_events.php:250 +msgid "Agent alias" +msgstr "エージェントの別名" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 +msgid "Source node" +msgstr "ソースノード" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 +msgid "Target node" +msgstr "対象ノード" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:816 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1105 +#: ../../godmode/snmpconsole/snmp_alert.php:1168 +#: ../../godmode/alerts/alert_list.list.php:136 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:1118 +#: ../../godmode/alerts/alert_view.php:124 ../../godmode/setup/setup_integria.php:379 +#: ../../godmode/setup/setup_integria.php:501 +#: ../../include/functions_reporting_html.php:5248 +#: ../../include/functions_events.php:4285 +#: ../../operation/agentes/estado_generalagente.php:651 +#: ../../operation/incidents/integriaims_export_csv.php:85 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 +#: ../../operation/incidents/list_integriaims_incidents.php:348 +#: ../../operation/incidents/list_integriaims_incidents.php:519 +msgid "Priority" +msgstr "優先度" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 +#: ../../enterprise/meta/include/functions_meta.php:2145 +#: ../../enterprise/include/class/CommandCenter.class.php:456 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:825 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1130 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1225 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1860 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2185 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2629 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2957 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3134 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3224 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3328 +#: ../../godmode/alerts/configure_alert_template.php:228 +#: ../../godmode/alerts/configure_alert_template.php:232 +#: ../../godmode/alerts/configure_alert_template.php:249 +#: ../../godmode/alerts/configure_alert_template.php:253 +#: ../../godmode/alerts/configure_alert_template.php:270 +#: ../../godmode/alerts/configure_alert_template.php:274 +#: ../../include/functions_config.php:1600 +msgid "Step" +msgstr "ステップ" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 +msgid "Active db only" +msgstr "アクティブ DB のみ" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 +msgid "Creating modules in target node" +msgstr "対象ノードでモジュール作成中" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 +msgid "Disabling agent in source node and enabling in target one" +msgstr "ソースノードでエージェント無効化および対象ノードで有効化中" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 +msgid "Transferring data" +msgstr "データ転送中" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 +msgid "Creating agent in target node" +msgstr "対象ノードでエージェント作成中" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 +#: ../../enterprise/include/class/DatabaseHA.class.php:208 +#: ../../enterprise/include/class/AgentRepository.class.php:892 +#: ../../enterprise/include/class/AgentRepository.class.php:897 +#: ../../enterprise/include/class/Omnishell.class.php:1079 +#: ../../enterprise/include/class/LogSource.class.php:795 +#: ../../enterprise/include/class/LogSource.class.php:800 +#: ../../enterprise/include/class/ManageBackups.class.php:484 +#: ../../enterprise/include/class/ManageBackups.class.php:489 +#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/operation/agentes/transactional_map.php:327 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1060 +#: ../../include/ajax/snmp_browser.ajax.php:259 +#: ../../include/class/ConfigPEN.class.php:744 +#: ../../include/class/ConfigPEN.class.php:749 +#: ../../include/class/SatelliteAgent.class.php:622 +#: ../../include/class/SatelliteAgent.class.php:627 +#: ../../include/class/HelpFeedBack.class.php:354 +#: ../../include/class/Diagnostics.class.php:2086 +#: ../../include/class/CredentialStore.class.php:1192 +#: ../../include/class/CredentialStore.class.php:1197 +#: ../../include/class/ModuleTemplates.class.php:1424 +#: ../../include/class/ModuleTemplates.class.php:1429 +#: ../../include/class/WebServerModuleDebug.class.php:366 +#: ../../include/class/WebServerModuleDebug.class.php:371 +#: ../../include/class/AgentWizard.class.php:5841 +#: ../../include/class/AgentWizard.class.php:5846 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:813 +#: ../../operation/visual_console/view.php:818 +msgid "Failed" +msgstr "失敗" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:671 +#: ../../enterprise/godmode/policies/policy_queue.php:674 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 +#: ../../enterprise/include/class/Omnishell.class.php:362 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4146 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 +msgid "Finished" +msgstr "完了" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 +#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 +msgid "Completed" +msgstr "完了" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 +msgid "Queued" +msgstr "キューに入っています" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 +#: ../../enterprise/operation/agentes/transactional_map.php:265 +#: ../../godmode/agentes/planned_downtime.list.php:625 +#: ../../godmode/agentes/planned_downtime.list.php:698 +msgid "Running" +msgstr "実行中" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 +msgid "checking migration requirements" +msgstr "マイグレーション要求をチェック中" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:198 +msgid "Server deleted successfully" +msgstr "サーバを削除しました。" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:200 +msgid "There was a problem deleting the server" +msgstr "サーバの削除に失敗しました。" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "翻訳を追加しました" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "翻訳文字列を作成できませんでした" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "翻訳を更新しました" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +msgstr "翻訳文字列を更新できませんでした" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../godmode/users/configure_user.php:928 ../../operation/users/user_edit.php:328 +msgid "Language" +msgstr "言語" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/advanced/collections.php:217 +#: ../../enterprise/meta/advanced/collections.php:230 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:359 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:416 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:684 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:755 +#: ../../enterprise/meta/agentsearch.php:110 ../../enterprise/meta/general/header.php:45 +#: ../../enterprise/meta/general/header.php:47 +#: ../../enterprise/meta/general/main_header.php:689 +#: ../../enterprise/meta/general/main_header.php:691 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:573 +#: ../../enterprise/godmode/modules/local_components.php:598 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:365 +#: ../../enterprise/godmode/policies/policy_collections.php:254 +#: ../../enterprise/godmode/policies/policy_agents.php:822 +#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 +#: ../../enterprise/operation/agentes/tag_view.php:219 +#: ../../enterprise/operation/agentes/agent_inventory.php:138 +#: ../../enterprise/operation/agentes/agent_inventory.php:140 +#: ../../enterprise/operation/log/log_viewer.php:513 +#: ../../enterprise/operation/log/log_viewer.php:796 +#: ../../enterprise/operation/inventory/inventory.php:374 +#: ../../enterprise/operation/inventory/inventory.php:427 +#: ../../enterprise/operation/services/services.treeview_services.php:134 +#: ../../enterprise/operation/services/services.list.php:225 +#: ../../enterprise/operation/services/services.list.php:318 +#: ../../enterprise/operation/services/services.table_services.php:147 +#: ../../enterprise/operation/services/services.table_services.php:238 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 +#: ../../enterprise/tools/ipam/ipam_list.php:90 +#: ../../enterprise/tools/ipam/ipam_list.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 +#: ../../extensions/module_groups.php:283 +#: ../../godmode/modules/manage_network_components.php:678 +#: ../../godmode/groups/group_list.php:785 ../../godmode/groups/group_list.php:795 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 +#: ../../godmode/agentes/modificar_agente.php:363 +#: ../../godmode/agentes/modificar_agente.php:372 +#: ../../godmode/agentes/planned_downtime.list.php:284 +#: ../../godmode/agentes/planned_downtime.list.php:369 +#: ../../godmode/agentes/module_manager.php:65 +#: ../../godmode/alerts/alert_actions.php:244 ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/alerts/alert_templates.php:314 +#: ../../godmode/alerts/alert_templates.php:325 +#: ../../godmode/reporting/map_builder.php:350 +#: ../../godmode/reporting/map_builder.php:372 ../../godmode/reporting/graphs.php:241 +#: ../../godmode/reporting/visual_console_favorite.php:158 +#: ../../godmode/reporting/visual_console_favorite.php:188 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1254 +#: ../../godmode/reporting/reporting_builder.php:796 +#: ../../godmode/module_library/module_library_view.php:102 +#: ../../godmode/module_library/module_library_view.php:112 +#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:70 +#: ../../include/functions_snmp.php:358 ../../include/class/SatelliteAgent.class.php:162 +#: ../../include/class/AuditLog.class.php:180 +#: ../../include/class/CalendarManager.class.php:1071 +#: ../../include/class/AgentWizard.class.php:2632 +#: ../../include/functions_snmp_browser.php:925 +#: ../../include/functions_snmp_browser.php:1509 ../../operation/search_results.php:192 +#: ../../operation/agentes/estado_agente.php:280 +#: ../../operation/agentes/estado_agente.php:291 +#: ../../operation/agentes/status_monitor.php:547 ../../general/ui/agents_list.php:100 +#: ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "検索" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:361 +#: ../../enterprise/godmode/policies/policies.php:330 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +msgid "Free text for search (*)" +msgstr "検索文字列 (*)" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "オリジナルの文字列" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "選択した言語での翻訳" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "翻訳カスタマイズ" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 +#: ../../enterprise/godmode/setup/setup_acl.php:463 +#: ../../enterprise/godmode/setup/setup_acl.php:765 +#: ../../enterprise/include/functions_cron.php:582 +#: ../../enterprise/include/lib/NetworkManager.php:87 +#: ../../godmode/agentes/module_manager_editor_wmi.php:61 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:819 +#: ../../include/functions_html.php:1890 ../../include/functions_html.php:1891 +#: ../../include/functions_html.php:2001 ../../include/functions_html.php:2002 +#: ../../include/functions_html.php:2162 ../../include/functions_html.php:2163 +#: ../../include/functions_html.php:6326 ../../include/functions_html.php:6327 +#: ../../include/class/CredentialStore.class.php:945 +#: ../../operation/netflow/nf_live_view.php:392 +msgid "Custom" +msgstr "カスタム" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "デフォルトノードアドレス" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "この値は、APIによって返される値になります" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "ファイルインポート" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "IP ゲートウェイ" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "IMEI" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3086 +#: ../../include/class/NetworkMap.class.php:3087 +msgid "Relations" +msgstr "関連付" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "関係" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "ノードアドレス" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "関係の挿入" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "関係一覧の表示" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:643 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:496 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:592 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 +#: ../../enterprise/include/functions_reporting_csv.php:1204 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1261 +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:2727 +#: ../../enterprise/operation/services/services.service.php:124 +#: ../../enterprise/operation/services/services.list.php:506 +#: ../../godmode/agentes/module_manager_editor_common.php:1214 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 +#: ../../godmode/massive/massive_edit_modules.php:884 +#: ../../godmode/alerts/configure_alert_template.php:816 +#: ../../godmode/setup/setup_visuals.php:1342 ../../godmode/setup/setup_visuals.php:1403 +#: ../../godmode/setup/setup_visuals.php:1423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2659 +#: ../../godmode/reporting/visual_console_builder.wizard.php:319 +#: ../../include/functions_visual_map_editor.php:693 +#: ../../include/functions_reporting_html.php:944 +#: ../../include/functions_reporting_html.php:2360 +#: ../../include/functions_reporting_html.php:4855 +#: ../../include/functions_reporting_html.php:5366 ../../include/ajax/events.php:2116 +#: ../../include/functions_graph.php:5394 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 +#: ../../include/functions_reports.php:1075 ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:560 +msgid "Value" +msgstr "値" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "フィルタ表示" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +msgstr "ノードアドレス" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 +#: ../../enterprise/godmode/policies/policy_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 +#: ../../enterprise/godmode/services/services.massive.elements.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:209 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3535 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3756 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2629 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/functions_services.php:1615 +#: ../../enterprise/operation/agentes/policy_view.php:260 +#: ../../enterprise/tools/ipam/ipam_list.php:663 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 +#: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_network_components.php:755 +#: ../../godmode/modules/manage_network_templates.php:248 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/planned_downtime.editor.php:1306 +#: ../../godmode/agentes/module_manager.php:874 +#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:161 +#: ../../godmode/snmpconsole/snmp_alert.php:1278 +#: ../../godmode/snmpconsole/snmp_alert.php:1435 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/massive/massive_operations.php:404 +#: ../../godmode/massive/massive_standby_alerts.php:250 +#: ../../godmode/massive/massive_delete_action_alerts.php:270 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../godmode/massive/massive_add_action_alerts.php:248 +#: ../../godmode/alerts/alert_list.list.php:759 ../../godmode/alerts/alert_view.php:388 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4014 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4526 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:141 ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:3344 +#: ../../include/functions_reporting_html.php:5886 ../../include/functions.php:3053 +#: ../../include/ajax/alert_list.ajax.php:294 ../../include/ajax/alert_list.ajax.php:319 +#: ../../include/ajax/alert_list.ajax.php:495 ../../include/functions_profile.php:217 +#: ../../include/class/AgentsAlerts.class.php:892 +#: ../../include/class/AuditLog.class.php:109 ../../include/class/AuditLog.class.php:201 +#: ../../include/class/ModuleTemplates.class.php:894 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.functions.php:127 +#: ../../operation/snmpconsole/snmp_view.php:891 +#: ../../operation/snmpconsole/snmp_view.php:1266 ../../operation/search_alerts.php:37 +#: ../../general/logon_ok.php:250 +msgid "Action" +msgstr "アクション" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "ゲートウェイ" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "関係がありません" + +#: ../../enterprise/meta/advanced/metasetup.password.php:73 +msgid "Passwords" +msgstr "パスワード" + +#: ../../enterprise/meta/advanced/metasetup.password.php:79 +#: ../../enterprise/meta/include/functions_meta.php:356 +#: ../../enterprise/godmode/setup/setup.php:383 ../../include/functions_config.php:472 +msgid "Enable password policy" +msgstr "パスワードポリシーを利用する" + +#: ../../enterprise/meta/advanced/metasetup.password.php:80 +#: ../../enterprise/meta/advanced/metasetup.password.php:122 +#: ../../enterprise/meta/advanced/metasetup.password.php:127 +#: ../../enterprise/meta/advanced/metasetup.password.php:133 +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/advanced/metasetup.password.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#: ../../enterprise/meta/advanced/metasetup.setup.php:219 +#: ../../enterprise/meta/advanced/metasetup.setup.php:223 +#: ../../enterprise/meta/advanced/metasetup.setup.php:285 +#: ../../enterprise/meta/advanced/metasetup.setup.php:299 +#: ../../enterprise/meta/advanced/metasetup.setup.php:321 +#: ../../enterprise/meta/advanced/metasetup.setup.php:325 +#: ../../enterprise/meta/advanced/metasetup.setup.php:347 +#: ../../enterprise/meta/advanced/metasetup.setup.php:373 +#: ../../enterprise/meta/advanced/metasetup.performance.php:85 +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:338 +#: ../../enterprise/godmode/setup/setup_auth.php:386 +#: ../../enterprise/godmode/setup/setup_auth.php:1181 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:757 +#: ../../enterprise/include/functions_tasklist.php:351 +#: ../../enterprise/include/functions_reporting_csv.php:1986 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:372 +#: ../../godmode/users/configure_user.php:1127 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:671 +#: ../../godmode/massive/massive_edit_agents.php:1084 +#: ../../godmode/massive/massive_edit_agents.php:1116 +#: ../../godmode/massive/massive_edit_modules.php:616 +#: ../../godmode/massive/massive_edit_modules.php:638 +#: ../../godmode/massive/massive_edit_modules.php:707 +#: ../../godmode/massive/massive_edit_modules.php:729 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1081 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/reporting/reporting_builder.main.php:194 +#: ../../godmode/reporting/reporting_builder.php:1090 +#: ../../godmode/reporting/visual_console_builder.wizard.php:380 +#: ../../godmode/reporting/visual_console_builder.wizard.php:467 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_reporting_html.php:1629 ../../include/functions_cron.php:677 +#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:390 +#: ../../operation/users/user_edit.php:324 ../../operation/netflow/nf_live_view.php:460 +#: ../../operation/snmpconsole/snmp_view.php:653 +msgid "Yes" +msgstr "はい" + +#: ../../enterprise/meta/advanced/metasetup.password.php:81 +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/advanced/metasetup.password.php:128 +#: ../../enterprise/meta/advanced/metasetup.password.php:134 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.password.php:148 +#: ../../enterprise/meta/advanced/metasetup.setup.php:150 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:220 +#: ../../enterprise/meta/advanced/metasetup.setup.php:224 +#: ../../enterprise/meta/advanced/metasetup.setup.php:286 +#: ../../enterprise/meta/advanced/metasetup.setup.php:309 +#: ../../enterprise/meta/advanced/metasetup.setup.php:322 +#: ../../enterprise/meta/advanced/metasetup.setup.php:335 +#: ../../enterprise/meta/advanced/metasetup.setup.php:357 +#: ../../enterprise/meta/advanced/metasetup.setup.php:383 +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/advanced/metasetup.performance.php:90 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:208 +#: ../../enterprise/godmode/setup/setup_auth.php:341 +#: ../../enterprise/godmode/setup/setup_auth.php:389 +#: ../../enterprise/godmode/setup/setup_auth.php:1184 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 +#: ../../enterprise/godmode/reporting/visual_console_template.php:286 +#: ../../enterprise/include/functions_cron.php:756 +#: ../../enterprise/include/functions_tasklist.php:351 +#: ../../enterprise/include/functions_reporting_csv.php:1986 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../godmode/update_manager/update_manager.setup.php:373 +#: ../../godmode/users/configure_user.php:1128 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:672 +#: ../../godmode/massive/massive_edit_agents.php:1095 +#: ../../godmode/massive/massive_edit_agents.php:1117 +#: ../../godmode/massive/massive_edit_modules.php:617 +#: ../../godmode/massive/massive_edit_modules.php:639 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/massive/massive_edit_modules.php:730 +#: ../../godmode/massive/massive_edit_modules.php:770 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../godmode/massive/massive_edit_modules.php:1110 +#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/alerts/alert_view.php:352 ../../godmode/setup/news.php:287 +#: ../../godmode/reporting/reporting_builder.main.php:204 +#: ../../godmode/reporting/reporting_builder.php:1092 +#: ../../godmode/reporting/visual_console_builder.wizard.php:390 +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/servers/modificar_server.php:45 ../../mobile/operation/events.php:365 +#: ../../mobile/operation/events.php:373 ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_cron.php:677 ../../include/functions_profile.php:276 +#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4648 +#: ../../include/functions_events.php:4653 ../../operation/users/user_edit.php:325 +#: ../../operation/netflow/nf_live_view.php:470 +#: ../../operation/snmpconsole/snmp_view.php:654 +msgid "No" +msgstr "いいえ" + +#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/meta/include/functions_meta.php:366 +#: ../../enterprise/godmode/setup/setup.php:392 ../../include/functions_config.php:476 +msgid "Min. size password" +msgstr "最小パスワードサイズ" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/godmode/setup/setup.php:400 +msgid " Caracters" +msgstr " 文字" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/include/functions_meta.php:396 +#: ../../enterprise/godmode/setup/setup.php:421 ../../include/functions_config.php:480 +msgid "Password expiration" +msgstr "パスワードの期限切れ" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +msgid "Set 0 if never expire." +msgstr "0 に設定すると期限切れは発生しません" + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/godmode/setup/setup.php:429 +msgid " Days" +msgstr " 日" + +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/include/functions_meta.php:416 +#: ../../enterprise/godmode/setup/setup.php:441 ../../include/functions_config.php:488 +msgid "User blocked if login fails" +msgstr "ログインに失敗するとユーザをブロックします" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/godmode/setup/setup.php:449 +msgid " Minutes" +msgstr " 分" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/include/functions_meta.php:426 +#: ../../enterprise/godmode/setup/setup.php:452 ../../include/functions_config.php:492 +msgid "Number of failed login attempts" +msgstr "ログイン失敗回数" + +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +msgid "Two attempts minimum" +msgstr "最小は 2回です" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/godmode/setup/setup.php:460 +msgid " Attempts" +msgstr " 回" + +#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/meta/include/functions_meta.php:448 +#: ../../enterprise/godmode/setup/setup.php:481 ../../include/functions_config.php:512 +msgid "Compare previous password" +msgstr "以前のパスワードとの比較" + +#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/include/functions_meta.php:436 +#: ../../enterprise/godmode/setup/setup.php:472 ../../include/functions_config.php:508 +msgid "Enable password history" +msgstr "パスワード履歴の有効化" + +#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/include/functions_meta.php:459 +#: ../../enterprise/godmode/setup/setup.php:463 ../../include/functions_config.php:504 +msgid "Apply password policy to admin users" +msgstr "管理者ユーザへパスワードポリシーを適用" + +#: ../../enterprise/meta/advanced/metasetup.password.php:132 +#: ../../enterprise/meta/include/functions_meta.php:406 +#: ../../enterprise/godmode/setup/setup.php:432 ../../include/functions_config.php:484 +msgid "Force change password on first login" +msgstr "初回ログイン時にパスワードを変更する" + +#: ../../enterprise/meta/advanced/metasetup.password.php:138 +#: ../../enterprise/meta/include/functions_meta.php:376 +#: ../../enterprise/godmode/setup/setup.php:403 ../../include/functions_config.php:496 +msgid "Password must have numbers" +msgstr "パスワードには数字を含む必要があります" + +#: ../../enterprise/meta/advanced/metasetup.password.php:142 +#: ../../enterprise/meta/include/functions_meta.php:386 +#: ../../enterprise/godmode/setup/setup.php:412 ../../include/functions_config.php:500 +msgid "Password must have symbols" +msgstr "パスワードには記号を含む必要があります" + +#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/meta/include/functions_meta.php:470 +#: ../../enterprise/godmode/setup/setup.php:493 ../../include/functions_config.php:516 +msgid "Activate reset password" +msgstr "パスワードリセットの有効化" + +#: ../../enterprise/meta/advanced/agents_setup.php:60 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 +#: ../../enterprise/meta/monitoring/group_view.php:51 +#: ../../enterprise/meta/monitoring/tactical.php:38 ../../enterprise/meta/index.php:1007 +#: ../../enterprise/meta/agentsearch.php:48 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../enterprise/extensions/vmware/vmware_view.php:1368 +#: ../../enterprise/include/class/CommandCenter.class.php:142 +#: ../../godmode/netflow/nf_item_list.php:49 ../../godmode/netflow/nf_edit.php:53 +#: ../../godmode/netflow/nf_edit_form.php:69 ../../operation/agentes/ver_agente.php:1377 +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Main" +msgstr "メイン" + +#: ../../enterprise/meta/advanced/agents_setup.php:64 +msgid "Propagation" +msgstr "伝播" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "名前の内ルールは作成できません。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "プロビジョニングルール作成エラー。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "プロビジョニングルール更新エラー。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "プロビジョニングルール削除エラー。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "プロビジョニング移動でエラーです。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 +msgid "Create rule" +msgstr "ルール作成" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "ルール編集" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../godmode/update_manager/update_manager.setup.php:168 +#: ../../godmode/update_manager/update_manager.setup.php:243 +msgid "Succesful Update the url config vars." +msgstr "URL 設定を更新しました。" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:169 +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Unsuccesful Update the url config vars." +msgstr "URL 設定を更新できませんでした。" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:98 +msgid "" +"Please notice that some providers like Gmail or Office365 need to setup/enable " +"manually external connections using SMTP and you need to use STARTTLS on port 587.\n" +"\n" +"If you have manual settings in your pandora_server.conf, please note these settings " +"will ignore this console setup." +msgstr "" +"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で設定/有" +"効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意してくださ" +"い。\n" +"\n" +"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注意して" +"ください。" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:529 +msgid "Mail configuration" +msgstr "メール設定" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:109 +#: ../../include/functions_config.php:376 +msgid "From dir" +msgstr "From アドレス" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:112 +#: ../../godmode/setup/setup_general.php:549 ../../include/functions_config.php:380 +msgid "From name" +msgstr "From 名" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:115 +#: ../../include/functions_config.php:372 +msgid "Server SMTP" +msgstr "SMTP サーバ" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:118 +#: ../../include/functions_config.php:384 +msgid "Port SMTP" +msgstr "SMTP ポート" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:121 +#: ../../godmode/setup/setup_general.php:590 ../../include/functions_config.php:392 +msgid "Email user" +msgstr "メールユーザ" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../godmode/setup/setup_general.php:600 ../../include/functions_config.php:396 +msgid "Email password" +msgstr "メールユーザパスワード" + +#: ../../enterprise/meta/advanced/metasetup.php:55 +msgid "Consoles Setup" +msgstr "コンソール設定" + +#: ../../enterprise/meta/advanced/metasetup.php:63 +#: ../../enterprise/meta/advanced/metasetup.php:246 +msgid "General setup" +msgstr "一般設定" + +#: ../../enterprise/meta/advanced/metasetup.php:71 +#: ../../enterprise/meta/advanced/metasetup.php:249 +msgid "Passwords setup" +msgstr "パスワード設定" + +#: ../../enterprise/meta/advanced/metasetup.php:80 +#: ../../enterprise/meta/advanced/metasetup.php:253 +#: ../../enterprise/meta/include/functions_meta.php:295 +#: ../../enterprise/meta/general/main_header.php:143 +#: ../../enterprise/meta/general/main_menu.php:257 +#: ../../enterprise/operation/log/elasticsearch_interface.php:31 +#: ../../enterprise/operation/log/log_viewer.php:377 +#: ../../enterprise/operation/log/log_viewer.php:417 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "ログ・ビューワ" + +#: ../../enterprise/meta/advanced/metasetup.php:91 ../../enterprise/godmode/menu.php:136 +#: ../../enterprise/include/functions_setup.php:67 +#: ../../enterprise/include/functions_setup.php:119 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "ヒストリデータベース" + +#: ../../enterprise/meta/advanced/metasetup.php:102 +#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:347 +#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 +msgid "Authentication" +msgstr "認証" + +#: ../../enterprise/meta/advanced/metasetup.php:112 +#: ../../enterprise/meta/advanced/metasetup.php:265 +msgid "Visual setup" +msgstr "表示設定" + +#: ../../enterprise/meta/advanced/metasetup.php:120 +#: ../../enterprise/meta/advanced/metasetup.php:269 +msgid "Performance setup" +msgstr "パフォーマンス設定" + +#: ../../enterprise/meta/advanced/metasetup.php:128 +#: ../../enterprise/meta/advanced/metasetup.php:227 +#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:418 +#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60 +msgid "File manager" +msgstr "ファイルマネージャ" + +#: ../../enterprise/meta/advanced/metasetup.php:136 +#: ../../enterprise/meta/advanced/metasetup.php:277 +msgid "Strings translation" +msgstr "文字列翻訳" + +#: ../../enterprise/meta/advanced/metasetup.php:144 +#: ../../enterprise/meta/advanced/metasetup.php:281 +msgid "Mail" +msgstr "メール" + +#: ../../enterprise/meta/advanced/metasetup.php:152 +#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:371 +#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 +msgid "Notifications" +msgstr "通知" + +#: ../../enterprise/meta/advanced/metasetup.php:164 +msgid "Relations rules" +msgstr "関係ルール" + +#: ../../enterprise/meta/advanced/metasetup.php:177 +msgid "Warp Update Setup" +msgstr "ワープアップデート設定" + +#: ../../enterprise/meta/advanced/metasetup.php:185 +msgid "Warp Update Journal" +msgstr "ワープアップデート履歴" + +#: ../../enterprise/meta/advanced/metasetup.php:193 +msgid "Warp Update Offline" +msgstr "オフラインワープアップデート" + +#: ../../enterprise/meta/advanced/metasetup.php:201 +msgid "Warp Update Online" +msgstr "オンラインワープアップデート" + +#: ../../enterprise/meta/advanced/metasetup.php:241 +msgid "Consoles setup" +msgstr "コンソール設定" + +#: ../../enterprise/meta/advanced/metasetup.php:261 +msgid "Historical database" +msgstr "ヒストリデータベース" + +#: ../../enterprise/meta/advanced/metasetup.php:289 +msgid "Relations Rules" +msgstr "関係ルール" + +#: ../../enterprise/meta/advanced/metasetup.php:293 +msgid "Online Update Options" +msgstr "オンラインアップデートオプション" + +#: ../../enterprise/meta/advanced/metasetup.php:297 +msgid "Online Update Journal" +msgstr "オンラインアップデートジャーナル" + +#: ../../enterprise/meta/advanced/metasetup.php:302 +msgid "Online Update Offline" +msgstr "オンラインアップデート オフライン" + +#: ../../enterprise/meta/advanced/metasetup.php:309 +msgid "Online Update Online" +msgstr "オンラインアップデート オンライン" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:198 +#: ../../enterprise/godmode/policies/policy.php:246 +msgid "Duplicated or incompatible operation in the queue" +msgstr "重複もしくは完了できない操作がキューにあります" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:186 +#: ../../enterprise/godmode/policies/policy.php:241 +msgid "Operation successfully added to the queue" +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:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:192 +#: ../../enterprise/godmode/policies/policy.php:242 +msgid "Operation cannot be added to the queue" +msgstr "操作をキューに追加できません" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "ポリシー適用" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../include/functions_networkmap.php:1299 ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 ../../operation/tree.php:127 +#: ../../operation/search_results.php:171 ../../operation/search_main.php:73 +msgid "Policies" +msgstr "ポリシー" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:294 +#: ../../godmode/setup/os.php:225 +#: ../../godmode/reporting/visual_console_builder.wizard.php:333 +#: ../../mobile/include/functions_web.php:28 +msgid "Servers" +msgstr "サーバ" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:213 +#: ../../enterprise/meta/advanced/policymanager.queue.php:311 +#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/policies/policy_agents.php:854 +#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../include/functions_visual_map_editor.php:641 +msgid "Apply" +msgstr "適用" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 +#: ../../enterprise/include/class/Omnishell.class.php:1553 +#: ../../enterprise/include/lib/Metaconsole/Node.php:140 +#: ../../enterprise/include/lib/Metaconsole/Node.php:189 +#: ../../enterprise/include/lib/Metaconsole/Node.php:240 +#: ../../enterprise/include/lib/Metaconsole/Node.php:284 +#: ../../enterprise/include/lib/Metaconsole/Node.php:337 +msgid "success" +msgstr "成功" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 +#, php-format +msgid "Node %s is not recognized as metaconsole node." +msgstr "ノード %s はメタコンソールノードとして認識されません。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 +#, php-format +msgid "Node %s license missmatch." +msgstr "ノード %s のライセンスが不整合です。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 +#, php-format +msgid "Cannot connect to node %s" +msgstr "ノード %s へ接続できません" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 +#, php-format +msgid "Unknown error synchronizing %s" +msgstr "%s 同期中に不明なエラーです" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 +#, php-format +msgid "Synchronized %d nodes, but some failed to synchronize %s" +msgstr "%d ノードを同期しましたが、%s への’同期でいくつか失敗しました" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 +#, php-format +msgid "Successfully synchronized all nodes (%d)" +msgstr "全ノードを同期しました (%d)" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:212 +msgid "Node synchronization process failed" +msgstr "ノード同期処理に失敗しました。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:212 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:326 +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 にあるフォームを使用してください。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:222 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 +msgid "Could not be update" +msgstr "更新できませんでした" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:262 +msgid "Could not be created, duplicated register found." +msgstr "作成できませんでした。重複登録があります。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +msgid "Node synchronization process failed: " +msgstr "ノード同期処理が失敗しました: " + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +#: ../../godmode/setup/license.php:101 +msgid "Unknown error" +msgstr "不明なエラー" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:345 +msgid "Successfully registered" +msgstr "登録しました" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:346 +#, php-format +msgid "Could not be registered %s" +msgstr "%s を登録できませんでした" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:372 +msgid "Successfully delete" +msgstr "削除しました" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 +msgid "Could not be delete" +msgstr "削除できませんでした" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:389 +#: ../../enterprise/godmode/policies/policy_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_modules.php:517 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:147 +#: ../../godmode/users/user_list.php:372 +#: ../../godmode/agentes/configurar_agente.php:2182 +#: ../../godmode/agentes/modificar_agente.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:366 ../../include/ajax/alert_list.ajax.php:358 +msgid "Successfully enabled" +msgstr "有効にしました。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:390 +#: ../../enterprise/godmode/policies/policy_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_modules.php:518 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:148 +#: ../../godmode/agentes/configurar_agente.php:2183 +#: ../../godmode/agentes/modificar_agente.php:235 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:367 ../../include/ajax/alert_list.ajax.php:360 +msgid "Could not be enabled" +msgstr "有効にできませんでした。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:414 +#: ../../enterprise/godmode/policies/policy_alerts.php:152 +#: ../../enterprise/godmode/policies/policy_modules.php:534 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:156 +#: ../../godmode/users/user_list.php:366 +#: ../../godmode/agentes/configurar_agente.php:2207 +#: ../../godmode/agentes/modificar_agente.php:277 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:393 ../../include/ajax/alert_list.ajax.php:379 +msgid "Successfully disabled" +msgstr "無効にしました。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:415 +#, php-format +msgid "Could not be disabled: %s" +msgstr "無効化できませんでした: %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:431 +#, php-format +msgid "" +"System is centralised, but you just modify nodes registered, please go to %s to " +"perform a database merge process." +msgstr "" +"システムは中央管理になっています。登録されているノードを変更するだけです。%s に移動し" +"て、データベースの管理処理を実行してください。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:434 +msgid "This node will not be usable until unifying the environment" +msgstr "このノードは、環境を統合するまで使用できません" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:509 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "%s メタコンソールアイテム編集" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:515 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/include/functions_reporting_csv.php:1204 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1231 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:284 +#: ../../godmode/reporting/visual_console_builder.wizard.php:446 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../include/functions_visual_map_editor.php:193 +#: ../../include/functions_visual_map_editor.php:779 +#: ../../include/functions_visual_map_editor.php:1394 +#: ../../include/functions_visual_map.php:4257 +#: ../../include/rest-api/models/VisualConsole/Item.php:1941 +#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:325 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:343 +#: ../../include/lib/Dashboard/Widgets/module_value.php:318 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 +#: ../../include/lib/Dashboard/Widgets/module_status.php:334 +#: ../../operation/visual_console/view.php:336 +msgid "Label" +msgstr "ラベル" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:515 +msgid "Custom label to identify this setup." +msgstr "この設定を識別するためのカスタムラベル。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:518 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 +msgid "Console URL" +msgstr "コンソール URL" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:518 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "%s コンソールへのフルパス(index.php を除く)。例 %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:521 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "Auth token" +msgstr "認証トークン" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:522 +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use delegated " +"authentification." +msgstr "委任された認証を使用するための、宛先 %s コンソールで以前に設定されたトークン。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:535 +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +#: ../../enterprise/meta/include/functions_meta.php:220 +#: ../../enterprise/meta/include/functions_meta.php:230 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 +#: ../../godmode/setup/setup_general.php:212 ../../include/functions_config.php:236 +msgid "API password" +msgstr "API パスワード" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:546 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 +msgid "Console User" +msgstr "コンソールユーザ" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:555 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 +msgid "Console Password" +msgstr "コンソールパスワード" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:566 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:840 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 +msgid "DB Host" +msgstr "DB ホスト" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:575 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 +msgid "DB Name" +msgstr "DB 名" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:584 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 +msgid "DB User" +msgstr "DB ユーザ" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:593 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 +msgid "DB Password" +msgstr "DB パスワード" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:604 +#: ../../enterprise/include/class/DatabaseHA.class.php:959 +msgid "DB port" +msgstr "DB ポート" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:615 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:701 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:706 +#: ../../enterprise/godmode/policies/policy_modules.php:412 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/setup/setup_history.php:258 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 +#: ../../extensions/quick_shell.php:521 +#: ../../godmode/agentes/module_manager_editor.php:746 +#: ../../godmode/agentes/agent_manager.php:796 +#: ../../godmode/agentes/agent_manager.php:930 +#: ../../godmode/massive/massive_edit_agents.php:1159 +#: ../../godmode/massive/massive_add_action_alerts.php:250 +#: ../../include/functions_visual_map_editor.php:895 +#: ../../operation/agentes/status_monitor.php:848 ../../operation/events/events.php:2070 +msgid "Advanced options" +msgstr "拡張オプション" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:615 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "Pandora FMS ノードからメタコンソールへのデータベース接続定義" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:637 +msgid "Metaconsole DB Host" +msgstr "メタコンソール DB ホスト" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:646 +msgid "Metaconsole DB Name" +msgstr "メタコンソール DB 名" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:655 +msgid "Metaconsole DB User" +msgstr "メタコンソール DB ユーザ" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:664 +msgid "Metaconsole DB Password" +msgstr "メタコンソール DB パスワード" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:675 +#: ../../enterprise/godmode/setup/setup.php:179 +msgid "Metaconsole DB port" +msgstr "メタコンソール DB ポート" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:728 +msgid "Register empty node" +msgstr "空のノードを登録" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:734 +msgid "Register node with data to merge" +msgstr "マージするデータと合わせてノードを登録" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:771 +msgid "Node data will be wiped out" +msgstr "ノードデータは消去されます" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:772 +msgid "" +"Information contained in this node is not needed. Node information will be erased, " +"and replaced with new data from this metaconsole automatically after register the " +"node. Are you sure?" +msgstr "" +"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後にこのメ" +"タコンソールからの新しいデータに自動的に置き換えられます。よろしいですか?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:788 +msgid "Node data will be merged" +msgstr "ノードデータはマージされます" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:789 +msgid "" +"Information contained in this node is useful. After register the node, you must " +"launch a merge process from command center, which will combine information in current " +"environment with information contained in this new node. Are you sure?" +msgstr "" +"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターからマージ処理" +"を起動する必要があります。これにより、現在の環境の情報がこの新しいノードに含まれる情報" +"とマージされます。よろしいですか?" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/class/CommandCenter.class.php:317 +msgid "DB" +msgstr "DB" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +#: ../../enterprise/include/class/CommandCenter.class.php:318 +msgid "API" +msgstr "API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "Compatibility" +msgstr "互換性" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 +#: ../../enterprise/include/functions_setup.php:192 +msgid "Agent cache" +msgstr "エージェントキャッシュ" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:166 +#: ../../enterprise/include/functions_setup.php:201 +msgid "Sync" +msgstr "同期" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 +msgid "Database sync" +msgstr "データベース同期" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:841 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +#: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 +#: ../../operation/search_agents.php:133 ../../operation/agentes/ver_agente.php:1357 +msgid "Manage" +msgstr "設定" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:903 +msgid "New node" +msgstr "新規ノード" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:935 +msgid "Synchronize all" +msgstr "すべて同期" + +#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 +msgid "There was a problem creating link" +msgstr "リンクの作成に失敗しました。" + +#: ../../enterprise/meta/advanced/links.php:49 +#: ../../enterprise/meta/advanced/cron_main.php:164 +#: ../../enterprise/meta/advanced/cron_main.php:208 +#: ../../enterprise/meta/advanced/cron_main.php:301 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 +#: ../../enterprise/include/ajax/servers.ajax.php:197 +#: ../../enterprise/include/ajax/servers.ajax.php:330 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../enterprise/tools/ipam/ipam_action.php:239 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 +#: ../../godmode/modules/manage_nc_groups.php:84 +#: ../../godmode/users/profile_list.php:269 ../../godmode/users/configure_user.php:492 +#: ../../godmode/agentes/configurar_agente.php:884 +#: ../../godmode/agentes/planned_downtime.editor.php:652 +#: ../../godmode/snmpconsole/snmp_alert.php:302 +#: ../../godmode/snmpconsole/snmp_filters.php:164 +#: ../../godmode/alerts/alert_commands.php:658 +#: ../../godmode/alerts/configure_alert_template.php:536 +#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66 +#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:537 +#: ../../include/class/CalendarManager.class.php:894 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:849 +msgid "Successfully created" +msgstr "作成しました。" + +#: ../../enterprise/meta/advanced/links.php:60 +msgid "The link was not updated, the data is identical" +msgstr "リンクは更新されませんでした。データは同一です" + +#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 +msgid "There was a problem modifying link" +msgstr "リンクの編集に失敗しました。" + +#: ../../enterprise/meta/advanced/links.php:70 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 +#: ../../enterprise/godmode/policies/policy_modules.php:1249 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 +#: ../../enterprise/operation/agentes/transactional_map.php:166 +#: ../../enterprise/tools/ipam/ipam_action.php:279 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 +#: ../../enterprise/tools/ipam/ipam_massive.php:47 +#: ../../godmode/modules/manage_nc_groups.php:118 +#: ../../godmode/users/profile_list.php:252 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/configurar_agente.php:1179 +#: ../../godmode/agentes/planned_downtime.editor.php:654 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:444 +#: ../../godmode/snmpconsole/snmp_filters.php:110 +#: ../../godmode/massive/massive_edit_modules.php:184 +#: ../../godmode/alerts/configure_alert_command.php:144 +#: ../../godmode/alerts/alert_templates.php:156 +#: ../../godmode/alerts/configure_alert_template.php:554 +#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312 +#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 +#: ../../godmode/setup/links.php:63 ../../godmode/events/event_edit_filter.php:220 +#: ../../include/functions_alerts.php:2747 +#: ../../include/class/CalendarManager.class.php:534 +#: ../../include/class/CalendarManager.class.php:891 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:174 +msgid "Successfully updated" +msgstr "更新しました。" + +#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 +msgid "There was a problem deleting link" +msgstr "リンクの削除に失敗しました。" + +#: ../../enterprise/meta/advanced/links.php:100 +msgid "Link Name error" +msgstr "リンク名エラー" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 +#: ../../godmode/setup/links.php:145 +msgid "Link name" +msgstr "リンク名" + +#: ../../enterprise/meta/advanced/links.php:130 +#: ../../enterprise/godmode/policies/policy_linking.php:204 +#: ../../godmode/setup/links.php:119 +msgid "Link" +msgstr "リンク" + +#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 +msgid "There isn't links" +msgstr "リンクがありません" + +#: ../../enterprise/meta/advanced/policymanager.php:58 +msgid "Policy Manager" +msgstr "ポリシー管理" + +#: ../../enterprise/meta/advanced/policymanager.php:75 +msgid "Apply policies" +msgstr "ポリシー適用" + +#: ../../enterprise/meta/advanced/policymanager.php:79 +#: ../../enterprise/meta/advanced/policymanager.php:97 +msgid "Policies queue" +msgstr "ポリシーキュー" + +#: ../../enterprise/meta/advanced/policymanager.php:93 +msgid "Policies apply" +msgstr "ポリシー適用" + +#: ../../enterprise/meta/advanced/collections.data.php:33 +#: ../../enterprise/meta/advanced/collections.editor.php:60 +#: ../../enterprise/meta/include/functions_agents_meta.php:533 +#: ../../enterprise/godmode/agentes/collections.agents.php:44 +#: ../../enterprise/godmode/agentes/collections.data.php:54 +#: ../../enterprise/godmode/agentes/collections.editor.php:71 +#: ../../enterprise/godmode/policies/policies.php:509 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:58 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2188 +#: ../../enterprise/include/functions_policies.php:3799 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "コレクション" + +#: ../../enterprise/meta/advanced/collections.data.php:46 +#: ../../enterprise/meta/advanced/collections.data.php:86 +#: ../../enterprise/meta/advanced/collections.data.php:104 +#: ../../enterprise/meta/advanced/collections.data.php:124 +#: ../../enterprise/meta/advanced/collections.data.php:149 +#: ../../enterprise/meta/advanced/collections.data.php:172 +#: ../../enterprise/meta/advanced/collections.data.php:197 +#: ../../enterprise/meta/advanced/collections.data.php:238 +#: ../../enterprise/meta/advanced/collections.data.php:263 +#: ../../enterprise/meta/advanced/collections.editor.php:54 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:47 +#: ../../enterprise/godmode/agentes/collections.agents.php:56 +#: ../../enterprise/godmode/agentes/collections.data.php:74 +#: ../../enterprise/godmode/agentes/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:184 +#: ../../enterprise/godmode/agentes/collections.data.php:204 +#: ../../enterprise/godmode/agentes/collections.data.php:224 +#: ../../enterprise/godmode/agentes/collections.data.php:251 +#: ../../enterprise/godmode/agentes/collections.data.php:279 +#: ../../enterprise/godmode/agentes/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:332 +#: ../../enterprise/godmode/agentes/collections.editor.php:56 +#: ../../enterprise/include/functions_reporting_pdf.php:706 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:878 +#: ../../enterprise/include/functions_reporting_csv.php:925 +#: ../../enterprise/include/functions_reporting_csv.php:961 +#: ../../enterprise/include/functions_reporting_csv.php:1000 +#: ../../enterprise/include/functions_reporting_csv.php:1060 +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:2327 +#: ../../enterprise/include/functions_reporting_csv.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:2469 +#: ../../enterprise/include/functions_reporting_csv.php:2564 +#: ../../enterprise/include/functions_reporting_csv.php:2786 +#: ../../enterprise/include/functions_reporting.php:2185 +#: ../../enterprise/include/functions_reporting.php:2218 +#: ../../enterprise/include/functions_reporting.php:2222 +#: ../../enterprise/include/functions_services.php:1612 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:684 +#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:115 ../../mobile/operation/modules.php:715 +#: ../../mobile/operation/modules.php:718 ../../mobile/operation/modules.php:719 +#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:721 +#: ../../mobile/operation/modules.php:722 ../../mobile/operation/modules.php:723 +#: ../../mobile/operation/modules.php:724 ../../mobile/operation/modules.php:725 +#: ../../mobile/operation/modules.php:727 ../../mobile/operation/modules.php:730 +#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 +#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:736 +#: ../../mobile/operation/modules.php:737 ../../mobile/operation/modules.php:853 +#: ../../include/functions_reporting_html.php:2259 +#: ../../include/functions_reporting_html.php:2744 +#: ../../include/functions_reporting_html.php:2748 +#: ../../include/functions_reporting_html.php:2749 +#: ../../include/functions_reporting_html.php:2753 +#: ../../include/functions_reporting_html.php:2758 +#: ../../include/functions_reporting_html.php:2763 +#: ../../include/functions_reporting_html.php:2767 +#: ../../include/functions_reporting_html.php:2772 +#: ../../include/functions_reporting_html.php:2779 +#: ../../include/functions_reporting_html.php:2828 +#: ../../include/functions_reporting_html.php:2901 ../../include/ajax/module.php:982 +#: ../../include/ajax/custom_fields.php:412 ../../include/functions_graph.php:3709 +#: ../../include/functions_netflow.php:301 ../../include/functions_reporting.php:4349 +#: ../../include/functions_reporting.php:4390 ../../include/functions_reporting.php:5141 +#: ../../include/functions_events.php:218 ../../include/functions_events.php:301 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1356 +#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/search_modules.php:38 +msgid "Data" +msgstr "データ" + +#: ../../enterprise/meta/advanced/collections.data.php:76 +#: ../../enterprise/godmode/agentes/collections.data.php:174 +msgid "Unable to create the collection. Another collection with the same short name." +msgstr "コレクションを作成できません。同じ短い名前で他のコレクションがあります。" + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +msgid "Unable to create the collection" +msgstr "コレクションを作成できません" + +#: ../../enterprise/meta/advanced/collections.data.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:197 +msgid "Invalid characters in short name" +msgstr "短い名前に不正な文字が含まれています" + +#: ../../enterprise/meta/advanced/collections.data.php:111 +#: ../../enterprise/godmode/agentes/collections.data.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:191 +#: ../../enterprise/godmode/agentes/collections.data.php:211 +#: ../../enterprise/godmode/agentes/collections.data.php:238 +#: ../../enterprise/godmode/agentes/collections.data.php:294 +msgid "Manager configuration > New" +msgstr "設定管理 > 新規" + +#: ../../enterprise/meta/advanced/collections.data.php:117 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../enterprise/include/functions_local_components.php:174 +msgid "Empty name" +msgstr "名前が空です" + +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:190 +#: ../../enterprise/godmode/agentes/collections.data.php:244 +#: ../../enterprise/godmode/agentes/collections.data.php:302 +msgid "Unable to create the collection." +msgstr "コレクションを作成できません。" + +#: ../../enterprise/meta/advanced/collections.data.php:163 +#: ../../enterprise/meta/advanced/collections.data.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:270 +msgid "Correct create collection" +msgstr "コレクションを作成しました" + +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.data.php:241 +#: ../../enterprise/meta/advanced/collections.data.php:265 +#: ../../enterprise/meta/advanced/collections.editor.php:57 +#: ../../enterprise/meta/advanced/collections.editor.php:385 +#: ../../enterprise/meta/advanced/collections.editor.php:402 +#: ../../enterprise/godmode/agentes/collections.agents.php:50 +#: ../../enterprise/godmode/agentes/collections.data.php:127 +#: ../../enterprise/godmode/agentes/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:334 +#: ../../enterprise/godmode/agentes/collections.editor.php:65 +#: ../../enterprise/godmode/agentes/collections.editor.php:424 +#: ../../enterprise/godmode/agentes/collections.editor.php:446 +#: ../../enterprise/include/functions_collection.php:186 +#: ../../operation/agentes/ver_agente.php:1665 +msgid "Files" +msgstr "ファイル" + +#: ../../enterprise/meta/advanced/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:106 +#: ../../enterprise/godmode/agentes/collections.data.php:262 +#: ../../enterprise/godmode/agentes/collections.data.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:367 +#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.editor.php:84 +msgid "Manager configuration > Edit " +msgstr "設定管理 > 編集 " + +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:358 +msgid "Unable to edit the collection, empty name." +msgstr "コレクションを編集できません。名前が空です。" + +#: ../../enterprise/meta/advanced/collections.data.php:300 +#: ../../enterprise/godmode/agentes/collections.data.php:373 +msgid "Unable to edit the collection." +msgstr "コレクションを編集できません。" + +#: ../../enterprise/meta/advanced/collections.data.php:320 +#: ../../enterprise/meta/advanced/collections.editor.php:79 +msgid "This console is not manager of this environment." +msgstr "このコンソールは、この環境の管理コンソールではありません。" + +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/include/functions_autoprovision.php:566 +#: ../../enterprise/godmode/agentes/collections.data.php:425 +#: ../../godmode/setup/os.builder.php:35 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "名前:" + +#: ../../enterprise/meta/advanced/collections.data.php:345 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +msgid "Recreate file" +msgstr "ファイル再生成" + +#: ../../enterprise/meta/advanced/collections.data.php:373 +#: ../../enterprise/meta/advanced/collections.data.php:374 +#: ../../enterprise/godmode/agentes/collection_manager.php:166 +#: ../../enterprise/godmode/agentes/collection_manager.php:167 +#: ../../enterprise/godmode/agentes/collection_manager.php:281 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collections.data.php:467 +#: ../../enterprise/godmode/agentes/collections.data.php:468 +msgid "Need to regenerate" +msgstr "再生成が必要です" + +#: ../../enterprise/meta/advanced/collections.data.php:383 +#: ../../enterprise/meta/advanced/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collection_manager.php:175 +#: ../../enterprise/godmode/agentes/collection_manager.php:176 +#: ../../enterprise/godmode/agentes/collection_manager.php:290 +#: ../../enterprise/godmode/agentes/collection_manager.php:291 +#: ../../enterprise/godmode/agentes/collections.data.php:477 +#: ../../enterprise/godmode/agentes/collections.data.php:478 +#: ../../enterprise/operation/agentes/collection_view.php:139 +#: ../../enterprise/operation/agentes/collection_view.php:140 +msgid "The collection directory does not exist." +msgstr "コレクションディレクトリが存在しません。" + +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:492 +msgid "Group:" +msgstr "グループ:" + +#: ../../enterprise/meta/advanced/collections.data.php:420 +#: ../../enterprise/godmode/agentes/collections.data.php:514 +msgid "Short name:" +msgstr "短い名前:" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "" +"The collection's short name is the name of dir in attachment dir and the package " +"collection." +msgstr "" +"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレクトリ名" +"です。" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "短い名前は、アルファベットと、- および _ のみ利用できます。" + +#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/godmode/agentes/collections.data.php:519 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" + +#: ../../enterprise/meta/advanced/collections.data.php:432 +#: ../../enterprise/meta/include/functions_autoprovision.php:569 +#: ../../enterprise/godmode/agentes/collections.data.php:523 +#: ../../operation/snmpconsole/snmp_view.php:1107 +msgid "Description:" +msgstr "説明:" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "プロビジョニングカスタムデータ %s を削除しました。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "カスタムデータ %s を削除できませんでした。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 +msgid "There was an error when moving the custom provisioning data." +msgstr "カスタムプロビジョニングデータの移動中にエラーです。" + +#: ../../enterprise/meta/advanced/collections.editor.php:125 +#: ../../enterprise/meta/advanced/collections.editor.php:193 +#: ../../enterprise/godmode/agentes/collections.editor.php:158 +#: ../../enterprise/godmode/agentes/collections.editor.php:224 +#: ../../godmode/servers/plugin.php:173 ../../include/functions_filemanager.php:737 +msgid "Edit file" +msgstr "ファイル編集" + +#: ../../enterprise/meta/advanced/collections.editor.php:128 +#: ../../enterprise/meta/advanced/collections.editor.php:195 +#: ../../enterprise/godmode/agentes/collections.editor.php:161 +#: ../../enterprise/godmode/agentes/collections.editor.php:226 +msgid "Back to file explorer" +msgstr "ファイルエクスプローラへ戻る" + +#: ../../enterprise/meta/advanced/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:198 +#: ../../include/functions_filemanager.php:296 +msgid "Security error." +msgstr "セキュリティエラー" + +#: ../../enterprise/meta/advanced/collections.editor.php:217 +#: ../../enterprise/godmode/agentes/collections.editor.php:248 +#: ../../godmode/servers/plugin.php:192 +msgid "Compatibility mode" +msgstr "互換モード" + +#: ../../enterprise/meta/advanced/collections.editor.php:269 +#: ../../enterprise/godmode/agentes/collections.editor.php:299 +msgid "Correct update file." +msgstr "ファイルを更新しました。" + +#: ../../enterprise/meta/advanced/collections.editor.php:270 +#: ../../enterprise/godmode/agentes/collections.editor.php:300 +msgid "Incorrect update file." +msgstr "ファイルの更新に失敗しました。" + +#: ../../enterprise/meta/advanced/collections.editor.php:403 +#: ../../enterprise/godmode/agentes/collections.editor.php:447 +msgid "Please, first save a new collection before to upload files." +msgstr "ファイルをアップロードする前に新規コレクションを保存してください。" + +#: ../../enterprise/meta/advanced/cron_main.php:81 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "Cron ジョブ" + +#: ../../enterprise/meta/advanced/cron_main.php:93 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 +msgid "Add new job" +msgstr "新規ジョブ追加" + +#: ../../enterprise/meta/advanced/cron_main.php:165 +#: ../../enterprise/meta/advanced/cron_main.php:209 +#: ../../enterprise/meta/advanced/cron_main.php:302 +#: ../../enterprise/meta/include/functions_meta.php:124 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 +#: ../../include/functions_config.php:221 +msgid "Path doesn't exists or is not writable" +msgstr "パスが存在しないか書き込みできません" + +#: ../../enterprise/meta/advanced/cron_main.php:179 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 +msgid "Only administrator users can create this type of functions" +msgstr "管理者ユーザのみがこのタイプの機能を作成できます" + +#: ../../enterprise/meta/advanced/cron_main.php:250 +#: ../../enterprise/meta/advanced/cron_main.php:284 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 +msgid "Edit job" +msgstr "ジョブ編集" + +#: ../../enterprise/meta/advanced/cron_main.php:339 +msgid "In order to make backups it is necessary to have mysqldump on your console." +msgstr "" +"バックアップを作成するには、コンソールに mysqldump をインストールする必要があります。" + +#: ../../enterprise/meta/advanced/cron_main.php:360 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 +#: ../../enterprise/include/functions_tasklist.php:173 +#: ../../include/functions_cron.php:490 +msgid "Task" +msgstr "タスク" + +#: ../../enterprise/meta/advanced/cron_main.php:391 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:381 +#: ../../enterprise/godmode/setup/setup_history.php:756 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 +#: ../../enterprise/include/functions_tasklist.php:174 +#: ../../include/functions_cron.php:491 +msgid "Scheduled" +msgstr "スケジュール" + +#: ../../enterprise/meta/advanced/cron_main.php:404 +#: ../../enterprise/include/functions_tasklist.php:175 +#: ../../include/functions_cron.php:492 +msgid "Next execution" +msgstr "次回の実行" + +#: ../../enterprise/meta/advanced/cron_main.php:413 +msgid "Date format in Pandora is year/month/day" +msgstr "Pandora での日付フォーマットは、年/月/日 です" + +#: ../../enterprise/meta/advanced/cron_main.php:424 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 です" + +#: ../../enterprise/meta/advanced/cron_main.php:450 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../include/ajax/events.php:2111 ../../include/class/ExternalTools.class.php:354 +#: ../../include/lib/Dashboard/Widgets/events_list.php:640 +#: ../../include/functions_events.php:3519 ../../operation/events/events.php:2396 +msgid "Parameters" +msgstr "パラメータ" + +#: ../../enterprise/meta/advanced/cron_main.php:536 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:868 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3973 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4339 +#: ../../enterprise/operation/log/log_viewer.php:981 +#: ../../enterprise/operation/log/log_viewer.php:993 +#: ../../enterprise/operation/services/services.treeview_services.php:384 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1799 +#: ../../godmode/alerts/configure_alert_template.php:1456 +#: ../../godmode/alerts/configure_alert_template.php:1540 +#: ../../godmode/setup/news.php:322 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5038 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 ../../operation/tree.php:573 +#: ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:434 +#: ../../operation/agentes/datos_agente.php:312 +#: ../../operation/agentes/estado_monitores.php:455 +#: ../../operation/network/network_report.php:336 +#: ../../operation/network/network_usage_map.php:184 +#: ../../operation/netflow/nf_live_view.php:753 +#: ../../operation/reporting/reporting_viewer.php:367 +#: ../../operation/reporting/reporting_viewer.php:387 +#: ../../operation/reporting/graph_viewer.php:423 ../../operation/events/events.php:2974 +msgid "Choose time" +msgstr "時間を選択" + +#: ../../enterprise/meta/advanced/cron_main.php:537 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:869 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3974 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4030 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4340 +#: ../../enterprise/include/lib/Metaconsole/Node.php:539 +#: ../../enterprise/operation/log/log_viewer.php:982 +#: ../../enterprise/operation/log/log_viewer.php:994 +#: ../../enterprise/operation/services/services.treeview_services.php:385 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1800 +#: ../../godmode/alerts/configure_alert_template.php:1457 +#: ../../godmode/alerts/configure_alert_template.php:1541 +#: ../../godmode/setup/news.php:323 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5039 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 ../../operation/tree.php:574 +#: ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:435 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:456 +#: ../../operation/network/network_report.php:337 +#: ../../operation/network/network_usage_map.php:185 +#: ../../operation/netflow/nf_live_view.php:754 +#: ../../operation/reporting/reporting_viewer.php:368 +#: ../../operation/reporting/reporting_viewer.php:388 +#: ../../operation/reporting/graph_viewer.php:424 ../../operation/events/events.php:2975 +msgid "Time" +msgstr "時刻" + +#: ../../enterprise/meta/advanced/cron_main.php:538 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3975 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 +#: ../../enterprise/operation/log/log_viewer.php:983 +#: ../../enterprise/operation/log/log_viewer.php:995 +#: ../../enterprise/operation/services/services.treeview_services.php:386 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1801 +#: ../../godmode/alerts/configure_alert_template.php:1458 +#: ../../godmode/alerts/configure_alert_template.php:1542 +#: ../../godmode/setup/news.php:324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5040 +#: ../../include/functions_html.php:2283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 ../../operation/tree.php:575 +#: ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:436 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:457 +#: ../../operation/network/network_report.php:338 +#: ../../operation/network/network_usage_map.php:186 +#: ../../operation/netflow/nf_live_view.php:755 +#: ../../operation/reporting/reporting_viewer.php:369 +#: ../../operation/reporting/reporting_viewer.php:389 +#: ../../operation/reporting/graph_viewer.php:425 ../../operation/events/events.php:2976 +msgid "Hour" +msgstr "時" + +#: ../../enterprise/meta/advanced/cron_main.php:539 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3976 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 +#: ../../enterprise/operation/log/log_viewer.php:984 +#: ../../enterprise/operation/log/log_viewer.php:996 +#: ../../enterprise/operation/services/services.treeview_services.php:387 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1802 +#: ../../godmode/alerts/configure_alert_template.php:1459 +#: ../../godmode/alerts/configure_alert_template.php:1543 +#: ../../godmode/setup/news.php:325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5041 +#: ../../include/functions_html.php:2284 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 ../../operation/tree.php:576 +#: ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:437 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:458 +#: ../../operation/network/network_report.php:339 +#: ../../operation/network/network_usage_map.php:187 +#: ../../operation/netflow/nf_live_view.php:756 +#: ../../operation/reporting/reporting_viewer.php:370 +#: ../../operation/reporting/reporting_viewer.php:390 +#: ../../operation/reporting/graph_viewer.php:426 ../../operation/events/events.php:2977 +msgid "Minute" +msgstr "分" + +#: ../../enterprise/meta/advanced/cron_main.php:540 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:872 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3977 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 +#: ../../enterprise/operation/log/log_viewer.php:985 +#: ../../enterprise/operation/log/log_viewer.php:997 +#: ../../enterprise/operation/services/services.treeview_services.php:388 +#: ../../extensions/insert_data.php:228 +#: ../../godmode/agentes/planned_downtime.editor.php:1803 +#: ../../godmode/alerts/configure_alert_template.php:1460 +#: ../../godmode/alerts/configure_alert_template.php:1544 +#: ../../godmode/setup/news.php:326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5042 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 ../../operation/tree.php:577 +#: ../../operation/agentes/stat_win.php:608 +#: ../../operation/agentes/interface_traffic_graph_win.php:438 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:459 +#: ../../operation/network/network_report.php:340 +#: ../../operation/network/network_usage_map.php:188 +#: ../../operation/netflow/nf_live_view.php:757 +#: ../../operation/reporting/reporting_viewer.php:371 +#: ../../operation/reporting/reporting_viewer.php:391 +#: ../../operation/reporting/graph_viewer.php:427 ../../operation/events/events.php:2978 +msgid "Second" +msgstr "秒" + +#: ../../enterprise/meta/advanced/cron_main.php:541 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:873 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3978 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 +#: ../../enterprise/operation/agentes/agent_inventory.php:133 +#: ../../enterprise/operation/log/log_viewer.php:986 +#: ../../enterprise/operation/log/log_viewer.php:998 +#: ../../enterprise/operation/services/services.treeview_services.php:389 +#: ../../extensions/insert_data.php:229 +#: ../../godmode/agentes/planned_downtime.editor.php:1804 +#: ../../godmode/alerts/configure_alert_template.php:1461 +#: ../../godmode/alerts/configure_alert_template.php:1545 +#: ../../godmode/setup/news.php:327 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5043 +#: ../../include/functions.php:505 ../../include/functions.php:636 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 ../../operation/tree.php:578 +#: ../../operation/agentes/stat_win.php:609 +#: ../../operation/agentes/interface_traffic_graph_win.php:439 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:460 +#: ../../operation/network/network_report.php:341 +#: ../../operation/network/network_usage_map.php:189 +#: ../../operation/netflow/nf_live_view.php:758 +#: ../../operation/reporting/reporting_viewer.php:372 +#: ../../operation/reporting/reporting_viewer.php:392 +#: ../../operation/reporting/graph_viewer.php:428 ../../operation/events/events.php:2979 +msgid "Now" +msgstr "今" + +#: ../../enterprise/meta/advanced/cron_main.php:542 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:874 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3979 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 +#: ../../enterprise/operation/log/log_viewer.php:987 +#: ../../enterprise/operation/log/log_viewer.php:999 +#: ../../enterprise/operation/services/services.treeview_services.php:390 +#: ../../extensions/insert_data.php:230 +#: ../../godmode/agentes/planned_downtime.editor.php:1805 +#: ../../godmode/alerts/configure_alert_template.php:1462 +#: ../../godmode/alerts/configure_alert_template.php:1546 +#: ../../godmode/setup/news.php:328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5044 +#: ../../godmode/wizards/HostDevices.class.php:796 ../../mobile/include/ui.class.php:691 +#: ../../mobile/include/ui.class.php:749 ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 +#: ../../operation/agentes/stat_win.php:610 +#: ../../operation/agentes/interface_traffic_graph_win.php:440 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:461 +#: ../../operation/network/network_report.php:342 +#: ../../operation/network/network_usage_map.php:190 +#: ../../operation/netflow/nf_live_view.php:759 +#: ../../operation/reporting/reporting_viewer.php:373 +#: ../../operation/reporting/reporting_viewer.php:393 +#: ../../operation/reporting/graph_viewer.php:429 ../../operation/events/events.php:2980 +msgid "Close" +msgstr "閉じる" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:164 +#: ../../godmode/modules/manage_network_components_form_common.php:52 +#: ../../godmode/users/configure_user.php:1238 +#: ../../godmode/alerts/alert_commands.php:142 +#: ../../godmode/alerts/alert_commands.php:183 +#: ../../godmode/alerts/configure_alert_template.php:933 +#: ../../godmode/alerts/configure_alert_template.php:974 +#: ../../godmode/alerts/configure_alert_template.php:1137 +msgid "Basic" +msgstr "基本" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:79 +#: ../../include/functions_config.php:180 +msgid "Language settings" +msgstr "言語設定" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:84 +#: ../../godmode/setup/setup_general.php:110 ../../include/functions_config.php:192 +msgid "Auto login (hash) password" +msgstr "自動ログインパスワード(ハッシュ)" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/include/functions_meta.php:94 +#: ../../godmode/setup/setup_general.php:124 ../../include/functions_config.php:196 +msgid "Time source" +msgstr "日時データソース" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:144 +#: ../../godmode/setup/setup_general.php:125 ../../mobile/operation/events.php:248 +#: ../../include/functions_reporting_html.php:1151 +#: ../../include/functions_reporting_html.php:2610 ../../include/functions.php:1235 +#: ../../include/functions_graph.php:2869 ../../include/functions_graph.php:3570 +#: ../../include/functions_graph.php:3572 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions_events.php:2525 ../../include/functions_events.php:2958 +#: ../../operation/events/events.php:743 +msgid "System" +msgstr "システム" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../godmode/setup/setup_general.php:126 +msgid "Database" +msgstr "データベース" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:148 +#: ../../enterprise/meta/include/functions_meta.php:104 +#: ../../godmode/setup/setup_general.php:149 ../../include/functions_config.php:208 +msgid "Enforce https" +msgstr "httpsの利用" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. Do you " +"want to continue?" +msgstr "" +"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けますか?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:129 +#: ../../godmode/setup/setup_general.php:183 ../../include/functions_config.php:219 +msgid "Attachment store" +msgstr "添付ファイル保存場所" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "Directory where temporary data is stored." +msgstr "テンポラリデータの保存ディレクトリ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:155 +#: ../../enterprise/meta/include/functions_meta.php:140 +#: ../../godmode/setup/setup_general.php:88 ../../include/functions_config.php:184 +msgid "Remote config directory" +msgstr "リモート設定ディレクトリ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../enterprise/meta/include/functions_meta.php:150 +#: ../../godmode/setup/setup_general.php:98 +msgid "Phantomjs bin directory" +msgstr "phantomjs バイナリディレクトリ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +msgid "Directory where phantomjs binary file exists and has execution grants." +msgstr "phantomjs バイナリファイルが実行権限付きで置かれているディレクトリ。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../godmode/setup/setup_general.php:249 +#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_register.php:134 +msgid "Africa" +msgstr "アフリカ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +#: ../../godmode/setup/setup_general.php:250 +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_register.php:135 +msgid "America" +msgstr "アメリカ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_register.php:136 +msgid "Antarctica" +msgstr "南極大陸" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +#: ../../godmode/setup/setup_general.php:252 +#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_register.php:137 +msgid "Arctic" +msgstr "北極" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:253 +#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_register.php:138 +msgid "Asia" +msgstr "アジア" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:167 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_register.php:139 +msgid "Atlantic" +msgstr "大西洋" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:168 +#: ../../godmode/setup/setup_general.php:255 +#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_register.php:140 +msgid "Australia" +msgstr "オーストラリア" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:169 +#: ../../godmode/setup/setup_general.php:256 +#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_register.php:141 +msgid "Europe" +msgstr "ヨーロッパ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:170 +#: ../../godmode/setup/setup_general.php:257 +#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_register.php:142 +msgid "Indian" +msgstr "インド" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:171 +#: ../../godmode/setup/setup_general.php:258 +#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_register.php:143 +msgid "Pacific" +msgstr "太平洋" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:172 +#: ../../godmode/setup/setup_general.php:259 +#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_register.php:144 +msgid "UTC" +msgstr "UTC" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:160 +#: ../../godmode/setup/setup_general.php:279 ../../include/functions_register.php:164 +#: ../../include/functions_config.php:261 +msgid "Timezone setup" +msgstr "タイムゾーン設定" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:193 +#: ../../godmode/setup/setup_general.php:296 +msgid "Change timezone" +msgstr "タイムゾーン変更" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/include/functions_meta.php:170 +#: ../../godmode/setup/setup_general.php:319 ../../include/functions_config.php:292 +msgid "Public URL" +msgstr "公開 URL" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:198 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for example " +"using Apache mod_proxy settings)." +msgstr "" +"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、Apache " +"mod_proxy 設定を使用)、この値を設定します。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:201 +#: ../../enterprise/meta/include/functions_meta.php:180 +#: ../../godmode/setup/setup_general.php:329 ../../include/functions_config.php:296 +msgid "Force use Public URL" +msgstr "公開 URL の利用" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:202 +msgid "Force using defined public URL)." +msgstr "定義された公開 URL を使用するように強制します)。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s Console. Do " +"you want to continue?" +msgstr "" +"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 続けま" +"すか?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:215 +#: ../../enterprise/meta/include/functions_meta.php:190 +#: ../../godmode/setup/setup_general.php:343 ../../include/functions_config.php:300 +msgid "Public URL host exclusions" +msgstr "公開 URL 除外ホスト" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../godmode/setup/setup_netflow.php:65 ../../include/functions_config.php:1495 +msgid "Disable custom live view filters" +msgstr "カスタムライブビューフィルタの無効化" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +msgid "" +"Disable the definition of custom filters in the live view. Only existing filters can " +"be used." +msgstr "" +"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利用可能" +"です。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +#: ../../enterprise/meta/include/functions_meta.php:210 +#: ../../godmode/setup/setup_general.php:370 ../../include/functions_config.php:312 +msgid "Command Snapshot" +msgstr "コマンドスナップショット" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +msgid "The string modules with several lines show as command output" +msgstr "複数行の文字列モジュールはコマンドの出力として表示されます。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:227 +msgid "Customize sections" +msgstr "セクションのカスタマイズ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:248 +msgid "Disabled sections" +msgstr "無効化セクション" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:250 +msgid "Enabled sections" +msgstr "有効化セクション" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:255 +msgid "Push selected sections to enable it" +msgstr "選択したセクションを有効にする" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:257 +msgid "Pop selected sections to disable it" +msgstr "選択したセクションを無効にする" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +msgid "Please be careful if you put a password put https access." +msgstr "パスワードの設定には注意してください。httpsアクセスを使ってください。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:272 +#: ../../enterprise/meta/include/functions_meta.php:240 +#: ../../godmode/setup/setup_general.php:193 ../../include/functions_config.php:232 +msgid "IP list with API access" +msgstr "APIアクセスを許可するIPアドレスリスト" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:283 +#: ../../enterprise/meta/include/functions_meta.php:250 +#: ../../enterprise/godmode/setup/setup.php:294 +msgid "Enable update manager" +msgstr "アップデートマネージャの有効化" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:288 +#: ../../enterprise/meta/include/functions_meta.php:275 +#: ../../enterprise/godmode/setup/setup.php:90 ../../include/functions_config.php:415 +msgid "Size of collection" +msgstr "コレクションのサイズ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:289 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr " バイト" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "Max. agents to add in policy concurrently" +msgstr "ポリシーに同時に追加する最大エージェント" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +msgid "" +"Maximum allowed number of agents to be added in policy concurrently (adding a high " +"number of agents at a time can lead to performance issues)" +msgstr "" +"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを追加する" +"と、パフォーマンスの問題が発生する可能性があります)" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Synchronization queue items warn detection" +msgstr "同期キューアイテムの警告を検出" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +msgid "Number of items in synchronization queue before be notified, per node" +msgstr "ノードごとの通知前の同期キュー内のアイテム数" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:298 +msgid "Enable Agent API" +msgstr "エージェント API の有効化" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:320 +msgid "Enable log viewer" +msgstr "ログビューワの有効化" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +#: ../../enterprise/meta/include/functions_meta.php:305 +#: ../../godmode/setup/setup_general.php:467 +msgid "Enable console log" +msgstr "コンソールログの有効化" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +msgid "Log location: pandora_console/log/console.log" +msgstr "ログの場所: pandora_console/log/console.log" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +#: ../../enterprise/meta/include/functions_meta.php:315 +#: ../../godmode/setup/setup_general.php:478 +msgid "Enable audit log" +msgstr "監査ログの有効化" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +msgid "Log location: pandora_console/log/audit.log" +msgstr "ログの場所: pandora_console/log/audit.log" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:368 +#: ../../enterprise/meta/advanced/metasetup.setup.php:369 +#: ../../enterprise/meta/include/functions_meta.php:325 +#: ../../godmode/setup/setup_general.php:500 ../../godmode/setup/setup_general.php:501 +#: ../../include/functions_config.php:364 +msgid "Enable console report" +msgstr "コンソールレポートの有効化" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../godmode/groups/group_list.php:667 +#, php-format +msgid "Error connecting to %s" +msgstr "%s への接続エラー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "%s ポリシー作成エラー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "%s ポリシーを作成しました" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "ポリシーモジュールの作成(%s)/更新(%s)エラー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "ポリシーモジュールを作成(%s)/更新(%s)しました" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "%s ポリシーモジュールの削除エラー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "%s ポリシーモジュールを削除しました" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "%s ポリシーアラートの作成エラー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "%s ポリシーアラートを作成しました" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "%s ポリシーアラートの削除エラー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "%s ポリシーアラートを削除しました" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/class/LogSource.class.php:626 +#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../godmode/massive/massive_copy_modules.php:144 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1610 +#: ../../godmode/events/event_edit_filter.php:632 +#: ../../godmode/events/custom_events.php:109 ../../include/functions_events.php:212 +#: ../../include/functions_events.php:283 ../../include/functions_events.php:4247 +#: ../../include/functions_events.php:4328 +#: ../../operation/agentes/log_sources_status.php:56 +#: ../../operation/agentes/pandora_networkmap.editor.php:336 +#: ../../operation/agentes/pandora_networkmap.view.php:136 +#: ../../operation/events/events.php:1724 +msgid "Source" +msgstr "ソース" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +#: ../../extensions/dbmanager.php:190 ../../include/lib/Dashboard/Widget.php:601 +msgid "This metaconsole" +msgstr "このメタコンソール" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../enterprise/meta/advanced/policymanager.queue.php:257 +#: ../../enterprise/extensions/resource_exportation/functions.php:18 +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/godmode/agentes/plugins_manager.php:193 +#: ../../enterprise/godmode/policies/policy_queue.php:593 +#: ../../enterprise/godmode/policies/policy_queue.php:647 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 +#: ../../enterprise/include/functions_policies.php:4071 +#: ../../enterprise/operation/agentes/policy_view.php:67 +#: ../../enterprise/operation/agentes/collection_view.php:74 +#: ../../godmode/agentes/status_monitor_custom_fields.php:73 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../godmode/agentes/module_manager.php:848 ../../godmode/alerts/alert_view.php:148 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "Policy" +msgstr "ポリシー" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 +#: ../../godmode/massive/massive_copy_modules.php:239 +msgid "Targets" +msgstr "対象" + +#: ../../enterprise/meta/advanced/license_meta.php:52 ../../godmode/setup/license.php:80 +msgid "Failed to Update license file" +msgstr "ライセンスファイルのアップデートに失敗しました" + +#: ../../enterprise/meta/advanced/license_meta.php:59 +msgid "Metaconsole and all nodes license updated" +msgstr "メタコンソールと全ノードのライセンスを更新しました" + +#: ../../enterprise/meta/advanced/license_meta.php:61 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "メタコンソールのライセンスを更新しましたが、%d/%d ノードの同期に失敗しました" + +#: ../../enterprise/meta/advanced/metasetup.auth.php:27 +msgid "" +"Be aware that group synchronization can change the group configuration of the node" +msgstr "" +"グループの同期により、ノードのグループ設定が変更される可能性があることに注意してくださ" +"い" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:74 +#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:125 +#: ../../godmode/setup/setup.php:260 +msgid "Performance" +msgstr "パフォーマンス" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1936 +#: ../../godmode/setup/performance.php:259 ../../godmode/setup/performance.php:460 +#: ../../include/functions_config.php:793 +msgid "Max. days before delete events" +msgstr "イベントデータ保持日数" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1946 +msgid "Active events history" +msgstr "アクティブイベント履歴" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +msgid "Use real-time statistics" +msgstr "リアルタイム統計の利用" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:92 +#: ../../enterprise/meta/include/functions_meta.php:1961 +#: ../../godmode/setup/performance.php:283 ../../include/functions_config.php:806 +msgid "Max. days before delete audit events" +msgstr "監査イベントデータ保持日数" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:95 +#: ../../enterprise/meta/include/functions_meta.php:1971 +#: ../../godmode/setup/performance.php:551 ../../include/functions_config.php:842 +msgid "Default hours for event view" +msgstr "イベント表示期間(時間)" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:98 +msgid "Migration block size" +msgstr "マイグレーションブロックサイズ" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:108 +#: ../../godmode/setup/performance.php:625 +msgid "Events response max. execution" +msgstr "イベント応答の最大実行" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:110 +msgid "Number of events that will perform the desired action at the same time" +msgstr "目的のアクションを同時に実行するイベントの数" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:122 +#: ../../enterprise/meta/include/functions_meta.php:2001 +msgid "Max. number of events per node" +msgstr "ノードごとの最大イベント数" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:124 +msgid "maximum number of events to be displayed per node" +msgstr "ノードごとに表示されるイベントの最大数" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:136 +#: ../../godmode/setup/performance.php:635 ../../include/functions_config.php:904 +msgid "Row limit in csv log" +msgstr "csvログの行制限" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:145 +#: ../../enterprise/meta/include/functions_meta.php:2034 +#: ../../godmode/setup/performance.php:374 ../../include/functions_config.php:878 +msgid "Max. macro data fields" +msgstr "最大マクロデータフィールド" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:160 +#: ../../godmode/setup/performance.php:671 +#, php-format +msgid "" +"%s web2image cache system cleanup. It is always cleaned up after perform an upgrade" +msgstr "" +"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は常にク" +"リーンアップされます" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:165 +#: ../../godmode/setup/performance.php:688 +msgid "PhantomJS cache cleanup " +msgstr "PhantomJS キャッシュのクリーンアップ" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:172 +#: ../../godmode/setup/performance.php:695 +msgid "No scheduled" +msgstr "スケジュールされていません" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:173 +#: ../../godmode/setup/performance.php:696 +msgid "Each week" +msgstr "各週" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:174 +#: ../../godmode/setup/performance.php:697 +msgid "Each day" +msgstr "それぞれの日" + +#: ../../enterprise/meta/advanced/collections.php:111 +msgid "Collection has been deleted" +msgstr "コレクションを削除しました" + +#: ../../enterprise/meta/advanced/collections.php:122 +#: ../../enterprise/meta/advanced/collections.php:138 +#: ../../enterprise/godmode/agentes/collection_manager.php:94 +#: ../../enterprise/godmode/agentes/collections.php:188 +#: ../../enterprise/godmode/agentes/collections.php:210 +msgid "Successful create collection package." +msgstr "コレクションパッケージを作成しました。" + +#: ../../enterprise/meta/advanced/collections.php:139 +#: ../../enterprise/godmode/agentes/collection_manager.php:95 +#: ../../enterprise/godmode/agentes/collections.php:211 +msgid "Can not create collection package." +msgstr "コレクションパッケージを作成できません。" + +#: ../../enterprise/meta/advanced/collections.php:149 +#: ../../enterprise/godmode/agentes/collections.php:246 +msgid "Error: Id must not be empty" +msgstr "エラー: ID は空にできません" + +#: ../../enterprise/meta/advanced/collections.php:163 +#: ../../enterprise/godmode/agentes/collections.php:260 +msgid "Successful re-create collection directory." +msgstr "コレクションディレクトリを再作成しました。" + +#: ../../enterprise/meta/advanced/collections.php:164 +#: ../../enterprise/godmode/agentes/collections.php:261 +msgid "Can not re-create collection directory." +msgstr "コレクションディレクトリを再を作成できません。" + +#: ../../enterprise/meta/advanced/collections.php:190 +#: ../../enterprise/godmode/agentes/collections.php:287 +msgid "Successful re-create collections directories." +msgstr "コレクションディレクトリを再作成しました。" + +#: ../../enterprise/meta/advanced/collections.php:191 +#: ../../enterprise/godmode/agentes/collections.php:288 +msgid "Can not re-create collections directories." +msgstr "コレクションディレクトリを再作成できません。" + +#: ../../enterprise/meta/advanced/collections.php:205 +msgid "To manage collections you must activate centralized management" +msgstr "コレクションを管理するには、中央管理を有効化する必要があります" + +#: ../../enterprise/meta/advanced/collections.php:218 +#: ../../enterprise/meta/advanced/collections.php:224 +#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 +msgid "Search by username, fullname or email" +msgstr "ユーザ名、フルネーム、メールアドレスでの検索" + +#: ../../enterprise/meta/advanced/collections.php:243 +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/godmode/modules/local_components.php:584 +#: ../../godmode/modules/manage_network_components.php:690 +#: ../../godmode/users/user_list.php:444 ../../godmode/alerts/alert_actions.php:315 +#: ../../godmode/alerts/alert_templates.php:337 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 +#: ../../operation/tree.php:304 +msgid "Show Options" +msgstr "オプション表示" + +#: ../../enterprise/meta/advanced/collections.php:250 +#: ../../godmode/users/user_list.php:451 +msgid "Users control filter" +msgstr "ユーザ制御フィルタ" + +#: ../../enterprise/meta/advanced/collections.php:251 +#: ../../enterprise/godmode/policies/policy_queue.php:524 +#: ../../enterprise/godmode/policies/policy_queue.php:636 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +#: ../../godmode/users/user_list.php:452 ../../godmode/snmpconsole/snmp_alert.php:1180 +#: ../../godmode/alerts/alert_list.list.php:188 ../../operation/agentes/graphs.php:269 +#: ../../operation/snmpconsole/snmp_view.php:714 +#: ../../operation/snmpconsole/snmp_view.php:813 +msgid "Toggle filter(s)" +msgstr "フィルタ設定" + +#: ../../enterprise/meta/advanced/collections.php:259 +#: ../../enterprise/godmode/agentes/collections.php:296 +msgid "Error: The main directory of collections does not exist." +msgstr "エラー: コレクションのメインディレクトリが存在しません。" + +#: ../../enterprise/meta/advanced/collections.php:341 +#: ../../enterprise/godmode/agentes/collections.php:379 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:215 +#: ../../godmode/agentes/configurar_agente.php:705 +msgid "Collection" +msgstr "コレクション" + +#: ../../enterprise/meta/advanced/collections.php:364 +#: ../../enterprise/godmode/agentes/collection_manager.php:110 +#: ../../enterprise/godmode/agentes/collections.php:380 +#: ../../enterprise/godmode/policies/policy_collections.php:170 +#: ../../enterprise/godmode/policies/policy_collections.php:264 +msgid "Short Name" +msgstr "短い名前" + +#: ../../enterprise/meta/advanced/collections.php:425 +#: ../../enterprise/godmode/agentes/collections.php:412 +msgid "Are you sure to delete?" +msgstr "削除しますがよろしいですか?" + +#: ../../enterprise/meta/advanced/collections.php:430 +#: ../../enterprise/meta/advanced/collections.php:431 +#: ../../enterprise/godmode/agentes/collections.php:413 +msgid "Delete collection" +msgstr "コレクションの削除" + +#: ../../enterprise/meta/advanced/collections.php:440 +#: ../../enterprise/godmode/agentes/collections.php:420 +msgid "Are you sure to re-apply?" +msgstr "再適用しますか?" + +#: ../../enterprise/meta/advanced/collections.php:441 +#: ../../enterprise/godmode/agentes/collections.php:421 +msgid "Re-Apply changes" +msgstr "変更の再適用" + +#: ../../enterprise/meta/advanced/collections.php:448 +#: ../../enterprise/godmode/agentes/collections.php:428 +msgid "Are you sure to apply?" +msgstr "適用しますか?" + +#: ../../enterprise/meta/advanced/collections.php:449 +#: ../../enterprise/godmode/agentes/collections.php:429 +msgid "Apply changes" +msgstr "変更を適用" + +#: ../../enterprise/meta/advanced/collections.php:454 +#: ../../enterprise/godmode/agentes/collections.php:434 +msgid "Are you sure to re-create directory?" +msgstr "ディレクトリを再作成しますか?" + +#: ../../enterprise/meta/advanced/collections.php:459 +#: ../../enterprise/meta/advanced/collections.php:460 +#: ../../enterprise/godmode/agentes/collections.php:439 +#: ../../enterprise/godmode/agentes/collections.php:440 +msgid "The collection directory does not exist. Re-create directory" +msgstr "コレクションディレクトリが存在しません。再作成します" + +#: ../../enterprise/meta/advanced/collections.php:492 +#: ../../enterprise/godmode/agentes/collections.php:460 +msgid "Re-create directories" +msgstr "ディレクトリの再作成" + +#: ../../enterprise/meta/advanced/collections.php:504 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "コレクションが定義されていません。" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:96 +msgid "Operation successfully deleted from the queue" +msgstr "キューから操作を削除しました" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:97 +msgid "Operation cannot be deleted from the queue" +msgstr "キューから操作を削除できません" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:641 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:494 +#: ../../enterprise/godmode/policies/policy_queue.php:605 +#: ../../enterprise/godmode/policies/policy_queue.php:649 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 +#: ../../enterprise/include/functions_reporting_csv.php:1060 +#: ../../enterprise/include/class/CommandCenter.class.php:451 +#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4518 +#: ../../include/functions_reporting_html.php:2359 +#: ../../include/functions_reporting_html.php:4852 ../../include/functions_menu.php:592 +#: ../../include/class/ExternalTools.class.php:530 +msgid "Operation" +msgstr "操作" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:609 +msgid "Apply (database and files)" +msgstr "適用 (データベースおよびファイル)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/godmode/policies/policy_queue.php:610 +#: ../../enterprise/godmode/policies/policy_queue.php:718 +msgid "Apply (only database)" +msgstr "適用 (データベースのみ)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:620 +msgid "Complete" +msgstr "完了" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:621 +msgid "Incomplete" +msgstr "未完了" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/godmode/policies/policy_queue.php:626 +#: ../../enterprise/godmode/policies/policies.php:341 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 +#: ../../enterprise/godmode/setup/setup_skins.php:96 +#: ../../enterprise/godmode/setup/setup_acl.php:574 +#: ../../enterprise/include/class/SAPView.class.php:409 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2868 +#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/operation/services/services.treeview_services.php:164 +#: ../../enterprise/operation/services/services.treeview_services.php:168 +#: ../../enterprise/operation/services/services.list.php:454 +#: ../../enterprise/operation/services/services.list.php:459 +#: ../../enterprise/operation/services/services.table_services.php:363 +#: ../../enterprise/operation/services/services.table_services.php:368 +#: ../../godmode/modules/manage_network_templates_form.php:277 +#: ../../godmode/modules/manage_network_templates_form.php:337 +#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/netflow/nf_item_list.php:174 +#: ../../godmode/snmpconsole/snmp_alert.php:1176 +#: ../../godmode/snmpconsole/snmp_filters.php:203 +#: ../../godmode/snmpconsole/snmp_filters.php:290 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1115 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 +#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../include/class/ModuleTemplates.class.php:765 ../../operation/tree.php:260 +#: ../../operation/agentes/graphs.php:265 +#: ../../operation/agentes/estado_monitores.php:594 +#: ../../operation/netflow/nf_live_view.php:391 +#: ../../operation/incidents/list_integriaims_incidents.php:435 +#: ../../operation/incidents/list_integriaims_incidents.php:439 +msgid "Filter" +msgstr "フィルタ" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 +#: ../../enterprise/meta/include/functions_wizard_meta.php:174 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1796 +#: ../../enterprise/meta/agentsearch.php:133 ../../enterprise/meta/agentsearch.php:326 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1965 +#: ../../enterprise/include/functions_reporting_csv.php:2779 +#: ../../enterprise/include/class/CSVImportAgents.class.php:154 +#: ../../enterprise/include/class/SAPView.class.php:226 +#: ../../enterprise/include/functions_events.php:216 +#: ../../enterprise/operation/log/log_viewer.php:613 +#: ../../enterprise/operation/inventory/inventory.php:331 +#: ../../godmode/modules/manage_network_components.php:749 +#: ../../godmode/agentes/agent_manager.php:423 +#: ../../godmode/agentes/module_manager.php:851 +#: ../../godmode/massive/massive_edit_agents.php:757 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3630 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 +#: ../../include/functions_reporting_html.php:2252 +#: ../../include/class/AgentWizard.class.php:1196 ../../operation/events/events.php:1790 +msgid "Server" +msgstr "サーバ" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/godmode/policies/policy_queue.php:650 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../enterprise/include/functions_ipam.php:1413 +#: ../../enterprise/include/functions_ipam.php:1420 +#: ../../enterprise/include/functions_ipam.php:1425 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:608 +msgid "Progress" +msgstr "進捗状況" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:298 +#: ../../enterprise/godmode/policies/policy_queue.php:688 +msgid "Policy " +msgstr "ポリシー" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:339 +#: ../../enterprise/godmode/policies/policy_queue.php:748 +#: ../../enterprise/godmode/policies/policy_queue.php:757 +msgid "Policy applying timeout" +msgstr "ポリシー適用タイムアウト" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +#: ../../enterprise/godmode/policies/policy_queue.php:776 +msgid "Delete from queue" +msgstr "キューから削除" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:371 +msgid "Empty queue." +msgstr "キューが空です" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3502 +#: ../../enterprise/meta/agentsearch.php:134 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 +#: ../../enterprise/godmode/agentes/collections.agents.php:94 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 +#: ../../enterprise/godmode/policies/policy_linking.php:150 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 +#: ../../enterprise/godmode/services/services.elements.php:94 +#: ../../enterprise/godmode/services/services.elements.php:132 +#: ../../enterprise/godmode/services/services.elements.php:276 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1396 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2034 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3723 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3741 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/functions_inventory.php:393 +#: ../../enterprise/include/functions_inventory.php:880 +#: ../../enterprise/include/functions_inventory.php:936 +#: ../../enterprise/include/functions_reporting_pdf.php:528 +#: ../../enterprise/include/functions_reporting_pdf.php:536 +#: ../../enterprise/include/functions_reporting_pdf.php:544 +#: ../../enterprise/include/functions_reporting_pdf.php:560 +#: ../../enterprise/include/functions_reporting_pdf.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../enterprise/include/functions_reporting_csv.php:822 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:961 +#: ../../enterprise/include/functions_reporting_csv.php:1000 +#: ../../enterprise/include/functions_reporting_csv.php:1060 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:1100 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1261 +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:1548 +#: ../../enterprise/include/functions_reporting_csv.php:1594 +#: ../../enterprise/include/functions_reporting_csv.php:1667 +#: ../../enterprise/include/functions_reporting_csv.php:1786 +#: ../../enterprise/include/functions_reporting_csv.php:2021 +#: ../../enterprise/include/functions_reporting_csv.php:2094 +#: ../../enterprise/include/functions_reporting_csv.php:2327 +#: ../../enterprise/include/functions_reporting_csv.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:2394 +#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/functions_reporting_csv.php:2564 +#: ../../enterprise/include/functions_reporting_csv.php:2782 +#: ../../enterprise/include/class/LogSource.class.php:627 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 +#: ../../enterprise/include/functions_reporting.php:1853 +#: ../../enterprise/include/functions_reporting.php:2186 +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:2235 +#: ../../enterprise/include/functions_reporting.php:2892 +#: ../../enterprise/include/functions_reporting.php:3879 +#: ../../enterprise/include/functions_reporting.php:4903 +#: ../../enterprise/include/functions_services.php:1666 +#: ../../enterprise/include/functions_events.php:80 +#: ../../enterprise/operation/agentes/tag_view.php:599 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 +#: ../../enterprise/operation/log/log_viewer.php:632 +#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/tools/ipam/ipam_network.php:398 +#: ../../enterprise/tools/ipam/ipam_ajax.php:379 ../../extensions/insert_data.php:158 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:126 +#: ../../godmode/agentes/planned_downtime.list.php:354 +#: ../../godmode/agentes/module_manager_editor_common.php:1250 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/gis_maps/configure_gis_map.php:581 +#: ../../godmode/massive/massive_copy_modules.php:131 +#: ../../godmode/massive/massive_copy_modules.php:295 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/alerts/alert_list.list.php:491 +#: ../../godmode/alerts/alert_list.list.php:741 ../../godmode/alerts/alert_view.php:87 +#: ../../godmode/alerts/alert_list.builder.php:56 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/create_container.php:387 +#: ../../godmode/reporting/create_container.php:554 +#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/reporting/graph_builder.graph_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:208 +#: ../../godmode/reporting/reporting_builder.item_editor.php:880 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1163 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1668 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4487 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4511 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:450 +#: ../../godmode/reporting/visual_console_builder.wizard.php:738 +#: ../../godmode/reporting/visual_console_builder.wizard.php:761 +#: ../../godmode/servers/plugin.php:87 ../../mobile/operation/agents.php:93 +#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 +#: ../../mobile/operation/events.php:841 +#: ../../include/functions_visual_map_editor.php:422 +#: ../../include/functions_visual_map_editor.php:455 +#: ../../include/functions_reporting_html.php:546 +#: ../../include/functions_reporting_html.php:942 +#: ../../include/functions_reporting_html.php:1054 +#: ../../include/functions_reporting_html.php:1062 +#: ../../include/functions_reporting_html.php:1927 +#: ../../include/functions_reporting_html.php:2255 +#: ../../include/functions_reporting_html.php:2357 +#: ../../include/functions_reporting_html.php:3206 +#: ../../include/functions_reporting_html.php:3340 +#: ../../include/functions_reporting_html.php:3643 +#: ../../include/functions_reporting_html.php:3723 +#: ../../include/functions_reporting_html.php:3731 +#: ../../include/functions_reporting_html.php:3740 +#: ../../include/functions_reporting_html.php:3752 +#: ../../include/functions_reporting_html.php:3908 +#: ../../include/functions_reporting_html.php:4031 +#: ../../include/functions_reporting_html.php:4125 +#: ../../include/functions_reporting_html.php:4849 +#: ../../include/functions_reporting_html.php:4897 +#: ../../include/functions_reporting_html.php:4936 +#: ../../include/functions_reporting_html.php:5245 +#: ../../include/functions_reporting_html.php:5285 +#: ../../include/functions_reporting_html.php:5535 +#: ../../include/ajax/heatmap.ajax.php:238 ../../include/ajax/heatmap.ajax.php:277 +#: ../../include/ajax/heatmap.ajax.php:312 ../../include/ajax/alert_list.ajax.php:459 +#: ../../include/functions_graph.php:5284 ../../include/functions_gis.php:229 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:371 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 +#: ../../include/functions_reports.php:1320 +#: ../../include/class/NetworkMap.class.php:2835 +#: ../../include/class/NetworkMap.class.php:2884 +#: ../../include/class/NetworkMap.class.php:3162 +#: ../../include/class/AgentsAlerts.class.php:410 +#: ../../include/class/AgentsAlerts.class.php:962 +#: ../../include/functions_reporting.php:6993 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:337 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:355 +#: ../../include/lib/Dashboard/Widgets/module_value.php:330 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:255 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:305 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 +#: ../../include/lib/Dashboard/Widgets/module_status.php:346 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:301 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1633 ../../operation/search_agents.php:42 +#: ../../operation/search_agents.php:48 ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:739 +#: ../../operation/agentes/interface_view.functions.php:480 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1307 +#: ../../operation/agentes/estado_monitores.php:123 +#: ../../operation/agentes/ver_agente.php:1169 +#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/gis_maps/ajax.php:236 +#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_alerts.php:34 +#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2457 +msgid "Agent" +msgstr "エージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 +#: ../../enterprise/godmode/servers/HA_cluster.php:161 +#: ../../enterprise/include/functions_reporting_csv.php:1979 +#: ../../enterprise/include/class/Azure.cloud.php:803 +#: ../../enterprise/include/class/VMware.app.php:621 +#: ../../enterprise/include/class/DeploymentCenter.class.php:755 +#: ../../enterprise/include/class/DeploymentCenter.class.php:805 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1280 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/Aws.S3.php:564 +#: ../../enterprise/include/class/Aws.cloud.php:546 +#: ../../enterprise/include/functions_reporting.php:2316 +#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1647 ../../extensions/api_checker.php:123 +#: ../../extensions/users_connected.php:144 +#: ../../godmode/reporting/reporting_builder.item_editor.php:70 +#: ../../godmode/reporting/visual_console_builder.elements.php:790 +#: ../../include/functions_visual_map_editor.php:1460 +#: ../../include/functions_reporting_html.php:3223 +#: ../../include/functions_reporting_html.php:3549 +#: ../../include/ajax/heatmap.ajax.php:319 ../../include/class/AuditLog.class.php:194 +#: ../../operation/network/network_report.php:184 +msgid "IP" +msgstr "IP アドレス" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../godmode/massive/massive_edit_modules.php:468 +msgid "Agent Status" +msgstr "エージェントの状態" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 +#: ../../enterprise/meta/monitoring/group_view.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:244 +#: ../../enterprise/meta/monitoring/tactical.php:224 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/services/services.elements.php:392 +#: ../../enterprise/include/functions_services.php:1428 +#: ../../enterprise/operation/agentes/tag_view.php:131 +#: ../../enterprise/operation/services/services.treeview_services.php:295 +#: ../../godmode/groups/group_list.php:1074 ../../godmode/netflow/nf_edit_form.php:236 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:275 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_edit_modules.php:385 +#: ../../godmode/massive/massive_edit_modules.php:471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3765 +#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 +#: ../../include/functions_reporting_html.php:2472 ../../include/functions.php:1031 +#: ../../include/functions.php:1271 ../../include/functions.php:1278 +#: ../../include/functions.php:1311 ../../include/functions_graph.php:3483 +#: ../../include/functions_graph.php:3484 ../../include/functions_graph.php:5064 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/functions_massive_operations.php:148 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 +#: ../../include/functions_events.php:3014 ../../operation/tree.php:212 +#: ../../operation/tree.php:269 ../../operation/tree.php:486 +#: ../../operation/agentes/estado_agente.php:268 +#: ../../operation/agentes/status_monitor.php:492 +#: ../../operation/agentes/group_view.php:226 ../../operation/agentes/group_view.php:231 +#: ../../operation/agentes/estado_monitores.php:523 +#: ../../operation/agentes/tactical.php:180 ../../operation/netflow/nf_live_view.php:392 +#: ../../general/logon_ok.php:144 +msgid "Normal" +msgstr "正常" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 +#: ../../enterprise/meta/monitoring/group_view.php:240 +#: ../../enterprise/meta/monitoring/group_view.php:246 +#: ../../enterprise/meta/monitoring/tactical.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:986 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1511 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 +#: ../../enterprise/godmode/services/services.service.php:726 +#: ../../enterprise/godmode/services/services.elements.php:365 +#: ../../enterprise/include/functions_reporting.php:3191 +#: ../../enterprise/include/functions_reporting.php:4192 +#: ../../enterprise/include/functions_reporting.php:4843 +#: ../../enterprise/include/functions_reporting.php:6193 +#: ../../enterprise/include/functions_services.php:1440 +#: ../../enterprise/operation/agentes/tag_view.php:133 +#: ../../enterprise/operation/services/services.service.php:122 +#: ../../enterprise/operation/services/services.service.php:168 +#: ../../enterprise/operation/services/massive/services.create.php:757 +#: ../../enterprise/operation/services/services.service_map.php:149 +#: ../../enterprise/operation/services/services.treeview_services.php:275 +#: ../../enterprise/operation/services/services.list.php:239 +#: ../../enterprise/operation/services/services.list.php:504 +#: ../../enterprise/operation/services/services.list.php:558 +#: ../../enterprise/operation/services/services.table_services.php:161 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/massive/massive_copy_modules.php:117 +#: ../../godmode/massive/massive_copy_modules.php:277 +#: ../../godmode/massive/massive_delete_modules.php:420 +#: ../../godmode/massive/massive_delete_modules.php:441 +#: ../../godmode/massive/massive_edit_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3767 +#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 +#: ../../include/functions_reporting_html.php:863 +#: ../../include/functions_reporting_html.php:2473 +#: ../../include/functions_reporting_html.php:4765 ../../include/functions.php:1039 +#: ../../include/functions.php:1275 ../../include/functions.php:1276 +#: ../../include/functions.php:1278 ../../include/functions.php:1319 +#: ../../include/functions_graph.php:3503 ../../include/functions_graph.php:3504 +#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:2610 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/functions_massive_operations.php:150 +#: ../../include/class/AgentWizard.class.php:1318 +#: ../../include/class/AgentWizard.class.php:4035 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:317 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 +#: ../../include/functions_events.php:3022 ../../operation/tree.php:214 +#: ../../operation/tree.php:271 ../../operation/tree.php:466 +#: ../../operation/agentes/estado_agente.php:270 +#: ../../operation/agentes/status_monitor.php:494 +#: ../../operation/agentes/group_view.php:228 ../../operation/agentes/group_view.php:233 +#: ../../operation/agentes/estado_monitores.php:521 +#: ../../operation/agentes/tactical.php:178 ../../operation/gis_maps/render_view.php:164 +#: ../../general/logon_ok.php:142 +msgid "Critical" +msgstr "障害" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +msgid "No init" +msgstr "未初期化" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 +msgid "Custom fields View" +msgstr "カスタムフィールド表示" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 +msgid "Custom Fields View" +msgstr "カスタムフィールド表示" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 +#: ../../enterprise/godmode/policies/policies.php:328 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 +#: ../../extensions/agents_modules.php:407 +#: ../../godmode/agentes/modificar_agente.php:322 +#: ../../godmode/agentes/planned_downtime.editor.php:1101 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1600 +#: ../../include/functions_html.php:1545 ../../include/class/NetworkMap.class.php:3226 +#: ../../operation/agentes/estado_agente.php:262 +#: ../../operation/agentes/interface_view.functions.php:59 +#: ../../operation/agentes/status_monitor.php:488 +msgid "Recursion" +msgstr "子を含める" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../godmode/massive/massive_copy_modules.php:119 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_delete_modules.php:422 +#: ../../godmode/massive/massive_delete_modules.php:443 +#: ../../godmode/massive/massive_edit_modules.php:389 +#: ../../godmode/massive/massive_edit_modules.php:475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3769 +#: ../../godmode/events/event_edit_filter.php:320 ../../mobile/operation/modules.php:73 +#: ../../include/functions.php:1277 ../../include/functions_massive_operations.php:152 +#: ../../include/lib/Dashboard/Widgets/events_list.php:319 +#: ../../include/functions_events.php:2970 ../../operation/agentes/estado_agente.php:272 +#: ../../operation/agentes/status_monitor.php:496 ../../operation/events/events.php:1585 +msgid "Not normal" +msgstr "正常ではない" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../enterprise/meta/monitoring/group_view.php:237 +#: ../../enterprise/meta/monitoring/group_view.php:243 +#: ../../enterprise/meta/monitoring/tactical.php:226 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/operation/agentes/transactional_map.php:345 +#: ../../enterprise/operation/agentes/tag_view.php:137 +#: ../../enterprise/operation/services/services.treeview_services.php:290 +#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/massive/massive_copy_modules.php:120 +#: ../../godmode/massive/massive_copy_modules.php:280 +#: ../../godmode/massive/massive_delete_modules.php:423 +#: ../../godmode/massive/massive_delete_modules.php:444 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:476 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3770 +#: ../../mobile/operation/modules.php:75 ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:2476 +#: ../../include/functions_reporting_html.php:4573 +#: ../../include/functions_massive_operations.php:153 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 ../../operation/tree.php:216 +#: ../../operation/tree.php:273 ../../operation/tree.php:481 +#: ../../operation/agentes/estado_agente.php:273 +#: ../../operation/agentes/status_monitor.php:498 +#: ../../operation/agentes/group_view.php:225 ../../operation/agentes/group_view.php:230 +#: ../../operation/agentes/tactical.php:182 ../../general/logon_ok.php:146 +msgid "Not init" +msgstr "未初期化" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 +msgid "Status agents" +msgstr "エージェント状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 +msgid "Status module" +msgstr "モジュール状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:228 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 +#: ../../include/ajax/events.php:829 ../../operation/events/events.php:1710 +msgid "Save filter" +msgstr "フィルタの保存" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:236 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:242 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:243 +#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:571 +#: ../../include/ajax/events.php:587 ../../operation/netflow/nf_live_view.php:397 +#: ../../operation/events/sound_events.php:184 ../../operation/events/events.php:1702 +msgid "Load filter" +msgstr "フィルタ読み込み" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "カスタムフィールド" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 +msgid "Custom Fields Data" +msgstr "カスタムフィールドデータ" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 +#: ../../godmode/events/event_edit_filter.php:619 ../../operation/events/events.php:1801 +msgid "Module search" +msgstr "モジュール検索" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 +#: ../../enterprise/extensions/vmware/vmware_view.php:1513 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 +#: ../../enterprise/include/class/AgentRepository.class.php:814 +#: ../../enterprise/include/class/Omnishell.class.php:1124 +#: ../../enterprise/include/class/LogSource.class.php:766 +#: ../../enterprise/operation/agentes/tag_view.php:175 +#: ../../godmode/users/user_list.php:693 ../../include/class/ConfigPEN.class.php:252 +#: ../../include/class/CredentialStore.class.php:1098 ../../operation/heatmap.php:291 +#: ../../operation/agentes/interface_view.functions.php:120 +#: ../../operation/agentes/interface_view.functions.php:158 +#: ../../operation/agentes/status_monitor.php:861 +msgid "Show" +msgstr "表示" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 +#: ../../enterprise/include/functions_ipam.php:339 +#: ../../enterprise/operation/log/log_viewer.php:805 +#: ../../enterprise/operation/reporting/custom_reporting.php:80 +#: ../../godmode/modules/manage_network_templates.php:288 +#: ../../godmode/agentes/planned_downtime.list.php:870 +#: ../../include/graphs/functions_flot.php:377 +#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:428 +msgid "Export to CSV" +msgstr "CSVにエクスポート" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 +#: ../../enterprise/include/class/DatabaseHA.class.php:217 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 +#: ../../include/functions_ui.php:3432 +msgid "Processing" +msgstr "処理中" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 +#: ../../mobile/operation/groups.php:153 ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_agents.php:3860 +msgid "Agents critical" +msgstr "障害状態エージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 +#: ../../include/functions_reporting_html.php:5720 +#: ../../include/functions_agents.php:3870 +msgid "Agents warning" +msgstr "警告状態エージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 +#: ../../include/functions_reporting_html.php:5726 +#: ../../include/functions_agents.php:3850 ../../include/functions_agents.php:3904 +msgid "Agents ok" +msgstr "正常状態エージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 +#: ../../mobile/operation/groups.php:156 ../../include/functions_reporting_html.php:5729 +#: ../../include/functions_agents.php:3880 +msgid "Agents unknown" +msgstr "不明なエージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 +#: ../../mobile/operation/groups.php:150 ../../include/functions_reporting_html.php:5735 +#: ../../include/functions_agents.php:3894 +msgid "Agents not init" +msgstr "未初期化エージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 +#: ../../include/functions_reporting.php:11722 +msgid "Monitor critical" +msgstr "障害状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 +#: ../../include/functions_reporting.php:11726 +msgid "Monitor warning" +msgstr "警告状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 +#: ../../include/functions_reporting.php:11733 +msgid "Monitor normal" +msgstr "正常状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 +#: ../../include/functions_reporting.php:11737 +msgid "Monitor unknown" +msgstr "不明状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 +#: ../../include/functions_reporting.php:11744 +msgid "Monitor not init" +msgstr "未初期化状態" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 +#: ../../include/functions_reporting_html.php:5744 +#: ../../include/functions_reporting_html.php:5749 +msgid "Agents by status" +msgstr "状態ごとのエージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 +#: ../../include/functions_reporting.php:11764 +#: ../../include/functions_reporting.php:11770 +msgid "Monitors by status" +msgstr "状態ごとの監視項目" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 +#: ../../enterprise/operation/services/services.treeview_services.php:273 +#: ../../godmode/groups/group_list.php:1052 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:661 ../../operation/tree.php:464 +msgid "Critical agents" +msgstr "障害エージェント数" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 +#: ../../enterprise/operation/services/services.treeview_services.php:278 +#: ../../godmode/groups/group_list.php:1057 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 ../../operation/tree.php:469 +msgid "Warning agents" +msgstr "警告エージェント数" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 +#: ../../enterprise/operation/services/services.treeview_services.php:293 +#: ../../godmode/groups/group_list.php:1072 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:681 ../../operation/tree.php:484 +msgid "Normal agents" +msgstr "正常エージェント数" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 +#: ../../enterprise/operation/services/services.treeview_services.php:283 +#: ../../godmode/groups/group_list.php:1062 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 ../../operation/tree.php:474 +msgid "Unknown agents" +msgstr "不明エージェント数" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:573 +#: ../../enterprise/operation/services/services.treeview_services.php:288 +#: ../../godmode/groups/group_list.php:1067 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:676 ../../operation/tree.php:479 +msgid "Not init agents" +msgstr "未初期化エージェント数" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:274 +#: ../../godmode/groups/group_list.php:1053 ../../mobile/operation/groups.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 ../../operation/tree.php:465 +msgid "Critical modules" +msgstr "障害モジュール" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:279 +#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:168 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:667 ../../operation/tree.php:470 +msgid "Warning modules" +msgstr "警告モジュール" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:294 +#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:165 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 ../../operation/tree.php:485 +msgid "Normal modules" +msgstr "正常モジュール" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:284 +#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:672 ../../operation/tree.php:475 +msgid "Unknown modules" +msgstr "不明モジュール" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:289 +#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:162 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:677 ../../operation/tree.php:480 +msgid "Not init modules" +msgstr "未初期化モジュール" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 +msgid "Total counters" +msgstr "全カウンタ" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 +msgid "Total Agents" +msgstr "全エージェント" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 +msgid "Total Modules" +msgstr "全モジュール" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 +msgid "I.P" +msgstr "IP" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 +#: ../../include/functions_api.php:175 +msgid "No data to show." +msgstr "表示するデータがありません。" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 +msgid "There are no custom search defined." +msgstr "カスタム検索が定義されていません。" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 +#: ../../enterprise/meta/event/custom_events.php:249 +#: ../../godmode/agentes/status_monitor_custom_fields.php:241 +#: ../../godmode/events/custom_events.php:223 +#: ../../include/class/TreeGroupEdition.class.php:164 +msgid "Confirm" +msgstr "確認" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 +#: ../../godmode/agentes/configurar_agente.php:845 +#: ../../godmode/agentes/modificar_agente.php:953 +#: ../../operation/agentes/estado_agente.php:968 +#: ../../operation/agentes/estado_agente.php:978 +#: ../../operation/snmpconsole/snmp_statistics.php:193 +#: ../../operation/snmpconsole/snmp_view.php:956 +msgid "Create agent" +msgstr "エージェント作成" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "エージェントの編集" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "正しい IPアドレス/ホスト名を設定してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:206 +msgid "Please, select a group first" +msgstr "最初にグループを選択してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +msgid "Edit alert" +msgstr "アラート編集" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:648 +#: ../../godmode/snmpconsole/snmp_alert.php:97 +msgid "Create alert" +msgstr "アラート作成" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3509 +#: ../../enterprise/extensions/disabled/check_acls.php:133 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 +#: ../../enterprise/godmode/policies/policy_alerts.php:352 +#: ../../enterprise/godmode/policies/policy_alerts.php:567 +#: ../../enterprise/godmode/policies/policy_linking.php:151 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 +#: ../../enterprise/godmode/services/services.elements.php:93 +#: ../../enterprise/godmode/services/services.elements.php:155 +#: ../../enterprise/godmode/services/services.elements.php:277 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1397 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3728 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 +#: ../../enterprise/include/functions_inventory.php:881 +#: ../../enterprise/include/functions_inventory.php:937 +#: ../../enterprise/include/functions_ui.php:47 +#: ../../enterprise/include/functions_reporting_pdf.php:529 +#: ../../enterprise/include/functions_reporting_pdf.php:537 +#: ../../enterprise/include/functions_reporting_pdf.php:545 +#: ../../enterprise/include/functions_reporting_pdf.php:561 +#: ../../enterprise/include/functions_reporting_csv.php:495 +#: ../../enterprise/include/functions_reporting_csv.php:822 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:961 +#: ../../enterprise/include/functions_reporting_csv.php:1000 +#: ../../enterprise/include/functions_reporting_csv.php:1060 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1261 +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:1549 +#: ../../enterprise/include/functions_reporting_csv.php:1595 +#: ../../enterprise/include/functions_reporting_csv.php:1668 +#: ../../enterprise/include/functions_reporting_csv.php:1787 +#: ../../enterprise/include/functions_reporting_csv.php:2022 +#: ../../enterprise/include/functions_reporting_csv.php:2095 +#: ../../enterprise/include/functions_reporting_csv.php:2327 +#: ../../enterprise/include/functions_reporting_csv.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/functions_reporting_csv.php:2783 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/functions_reporting.php:1854 +#: ../../enterprise/include/functions_reporting.php:2893 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4904 +#: ../../enterprise/include/functions_services.php:1779 +#: ../../enterprise/include/functions_events.php:90 +#: ../../enterprise/operation/agentes/policy_view.php:258 +#: ../../enterprise/operation/agentes/agent_inventory.php:116 +#: ../../enterprise/operation/inventory/inventory.php:357 +#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 +#: ../../godmode/agentes/module_manager_editor_prediction.php:154 +#: ../../godmode/agentes/planned_downtime.list.php:358 +#: ../../godmode/agentes/planned_downtime.editor.php:1305 +#: ../../godmode/agentes/agent_manager.php:529 +#: ../../godmode/agentes/agent_manager.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:1260 +#: ../../godmode/agentes/module_manager_editor_common.php:1304 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/massive/massive_edit_agents.php:1147 +#: ../../godmode/alerts/alert_list.list.php:493 +#: ../../godmode/alerts/alert_list.list.php:751 ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/alerts/alert_list.builder.php:70 +#: ../../godmode/reporting/reporting_builder.list_items.php:410 +#: ../../godmode/reporting/create_container.php:410 +#: ../../godmode/reporting/create_container.php:560 +#: ../../godmode/reporting/create_container.php:628 +#: ../../godmode/reporting/graph_builder.graph_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:209 +#: ../../godmode/reporting/reporting_builder.item_editor.php:881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1186 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1725 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3974 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4490 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4514 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:449 +#: ../../godmode/reporting/visual_console_builder.wizard.php:770 +#: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:338 +#: ../../include/functions_visual_map_editor.php:497 +#: ../../include/functions_reporting_html.php:547 +#: ../../include/functions_reporting_html.php:943 +#: ../../include/functions_reporting_html.php:1928 +#: ../../include/functions_reporting_html.php:2256 +#: ../../include/functions_reporting_html.php:2358 +#: ../../include/functions_reporting_html.php:3341 +#: ../../include/functions_reporting_html.php:3724 +#: ../../include/functions_reporting_html.php:3732 +#: ../../include/functions_reporting_html.php:3741 +#: ../../include/functions_reporting_html.php:3753 +#: ../../include/functions_reporting_html.php:3909 +#: ../../include/functions_reporting_html.php:4037 +#: ../../include/functions_reporting_html.php:4131 +#: ../../include/functions_reporting_html.php:4850 +#: ../../include/functions_reporting_html.php:4898 +#: ../../include/ajax/alert_list.ajax.php:292 ../../include/ajax/alert_list.ajax.php:317 +#: ../../include/ajax/alert_list.ajax.php:480 ../../include/functions_graph.php:5391 +#: ../../include/functions_treeview.php:64 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:388 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 +#: ../../include/functions_reports.php:1351 +#: ../../include/class/AgentsAlerts.class.php:412 +#: ../../include/class/AgentsAlerts.class.php:891 +#: ../../include/functions_reporting.php:6994 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:373 +#: ../../include/lib/Dashboard/Widgets/module_value.php:348 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:323 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 +#: ../../include/lib/Dashboard/Widgets/module_status.php:364 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:319 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/search_alerts.php:35 +#: ../../operation/search_modules.php:32 +msgid "Module" +msgstr "モジュール" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 +#: ../../enterprise/godmode/policies/policy_alerts.php:351 +#: ../../enterprise/godmode/policies/policy_alerts.php:557 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1402 +#: ../../enterprise/include/functions_tasklist.php:356 +#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/operation/agentes/policy_view.php:259 +#: ../../godmode/alerts/alert_list.list.php:497 ../../godmode/alerts/alert_view.php:95 +#: ../../godmode/alerts/alert_list.builder.php:140 +#: ../../godmode/reporting/reporting_builder.item_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:886 +#: ../../mobile/operation/alerts.php:342 ../../include/functions_reporting_html.php:3342 +#: ../../include/functions_reporting_html.php:3345 ../../include/functions_cron.php:682 +#: ../../include/ajax/alert_list.ajax.php:293 ../../include/ajax/alert_list.ajax.php:318 +#: ../../include/functions_treeview.php:412 ../../include/functions_treeview.php:453 +#: ../../include/class/AgentsAlerts.class.php:338 +#: ../../include/class/AgentsAlerts.class.php:964 ../../operation/search_alerts.php:36 +msgid "Template" +msgstr "テンプレート" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:257 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:679 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 +#: ../../enterprise/meta/general/header.php:125 +#: ../../enterprise/meta/general/main_header.php:558 +#: ../../enterprise/godmode/policies/policy_alerts.php:648 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:685 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 +#: ../../enterprise/godmode/services/services.service.php:906 +#: ../../enterprise/godmode/services/services.service.php:918 +#: ../../enterprise/godmode/services/services.service.php:930 +#: ../../enterprise/godmode/services/services.service.php:942 +#: ../../enterprise/operation/services/massive/services.create.php:926 +#: ../../enterprise/operation/services/massive/services.create.php:938 +#: ../../enterprise/operation/services/massive/services.create.php:950 +#: ../../enterprise/operation/services/massive/services.create.php:962 +#: ../../extensions/insert_data.php:186 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 +#: ../../godmode/massive/massive_copy_modules.php:138 +#: ../../godmode/massive/massive_delete_modules.php:334 +#: ../../godmode/massive/massive_delete_modules.php:469 +#: ../../godmode/massive/massive_add_alerts.php:286 +#: ../../godmode/massive/massive_delete_alerts.php:277 +#: ../../godmode/massive/massive_edit_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:431 +#: ../../godmode/alerts/alert_list.builder.php:82 +#: ../../godmode/alerts/alert_list.builder.php:156 +#: ../../godmode/setup/setup_integria.php:367 ../../godmode/setup/setup_integria.php:385 +#: ../../godmode/setup/setup_integria.php:414 ../../godmode/setup/setup_integria.php:432 +#: ../../godmode/setup/setup_integria.php:489 ../../godmode/setup/setup_integria.php:507 +#: ../../godmode/setup/setup_integria.php:536 ../../godmode/setup/setup_integria.php:554 +#: ../../include/functions_reports.php:1358 +#: ../../include/class/AgentsAlerts.class.php:354 +#: ../../operation/incidents/configure_integriaims_incident.php:240 +#: ../../operation/incidents/configure_integriaims_incident.php:256 +#: ../../operation/incidents/configure_integriaims_incident.php:302 +#: ../../general/header.php:265 +msgid "Select" +msgstr "選択" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 +msgid "Create new template" +msgstr "新規テンプレートの作成" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 +#: ../../godmode/alerts/configure_alert_template.php:758 +#: ../../godmode/alerts/alert_list.builder.php:117 +#: ../../include/class/AgentsAlerts.class.php:304 +msgid "Default action" +msgstr "通常のアクション" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 +msgid "Create new action" +msgstr "新規アクションの作成" + +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3387 +#: ../../godmode/alerts/alert_list.list.php:665 +#: ../../godmode/alerts/alert_list.list.php:791 +#: ../../godmode/alerts/configure_alert_action.php:284 +#: ../../godmode/alerts/alert_view.php:361 +#: ../../godmode/alerts/alert_list.builder.php:173 +#: ../../include/functions_reporting_html.php:3599 +#: ../../include/functions_reporting_html.php:5367 +#: ../../include/ajax/alert_list.ajax.php:540 ../../include/ajax/custom_fields.php:413 +#: ../../include/class/AgentsAlerts.class.php:385 +#: ../../include/class/AgentWizard.class.php:1199 +msgid "Threshold" +msgstr "しきい値" + +#: ../../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:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:327 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 +#: ../../operation/snmpconsole/snmp_browser.php:639 +msgid "Create module" +msgstr "モジュールの作成" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:380 +msgid "Edit module" +msgstr "モジュールの編集" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:207 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "%s インスタンスに接続できません。" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +msgid "Invalid characters founded in module name" +msgstr "モジュール名に不正な文字があります" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 +#: ../../godmode/agentes/configurar_agente.php:822 +#: ../../godmode/agentes/configurar_agente.php:844 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:93 +msgid "Manage agents" +msgstr "エージェント管理" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:372 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 +#: ../../enterprise/meta/agentsearch.php:52 ../../enterprise/meta/agentsearch.php:58 +#: ../../godmode/events/event_edit_filter.php:376 ../../mobile/operation/home.php:168 +#: ../../operation/events/events.php:1784 +msgid "Agent search" +msgstr "エージェント" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:283 +msgid "Select the agent to be edited or deleted" +msgstr "編集または削除するエージェントを選択" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:292 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:388 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:458 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:727 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:809 +#: ../../godmode/groups/configure_group.php:272 +#: ../../godmode/snmpconsole/snmp_alert.php:1138 +#: ../../godmode/alerts/configure_alert_action.php:395 +#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 +#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 +#: ../../mobile/operation/visualmaps.php:189 ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:377 ../../mobile/operation/events.php:913 +#: ../../mobile/operation/tactical.php:102 +msgid "Back" +msgstr "戻る" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:332 +msgid "Manage modules" +msgstr "モジュール管理" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:378 +msgid "Select the agent where the module will be created" +msgstr "モジュールを作成するエージェントを選択" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 +msgid "Create Module" +msgstr "モジュールの作成" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:448 +msgid "Select the module to be edited or deleted" +msgstr "編集または削除するモジュールの選択" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:543 +msgid "Error creating alert" +msgstr "アラート作成エラー" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:507 +msgid "Alert could not be created" +msgstr "アラートの作成ができませんでした" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +msgid "Perform create alert" +msgstr "アラート作成の実行" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:531 +msgid "Alert created correctly" +msgstr "アラートを作成しました" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:547 +msgid "Alert template must be setted" +msgstr "アラートテンプレートを設定する必要があります" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:586 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:619 +msgid "Error updating alert" +msgstr "アラート更新エラー" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 +msgid "Something gone wrong with alert update" +msgstr "アラート更新で何らかの問題が発生しました" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:601 +msgid "Perform update alert" +msgstr "アラート更新の実行" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:605 +msgid "Alert updated correctly" +msgstr "アラートを濃い更新しました" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:623 +msgid "Template must be set." +msgstr "テンプレートを設定する必要があります" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 +#: ../../godmode/users/configure_profile.php:291 ../../godmode/alerts/alert_list.php:494 +#: ../../godmode/alerts/alert_list.php:496 +msgid "Manage alerts" +msgstr "アラート管理" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:716 +msgid "Select the module where the alert will be created" +msgstr "アラートを作成するモジュールの選択" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:798 +msgid "Select the alert to be edited or deleted" +msgstr "編集または削除するアラートの選択" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "名前を設定してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "間隔を設定してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/modules/manage_network_components_form_wizard.php:336 +#: ../../godmode/massive/massive_delete_modules.php:323 +#: ../../godmode/massive/massive_edit_modules.php:309 +msgid "Module type" +msgstr "モジュールタイプ" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reporting_html.php:5286 +#: ../../include/functions_reporting_html.php:5440 +msgid "Monitor" +msgstr "モニタ項目" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "ウェブチェック" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 +#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/operation/agentes/tag_view.php:156 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../extensions/agents_modules.php:410 +#: ../../godmode/modules/manage_network_components_form_common.php:111 +#: ../../godmode/agentes/module_manager_editor_common.php:265 +#: ../../godmode/massive/massive_edit_modules.php:889 +#: ../../godmode/reporting/create_container.php:540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1653 +#: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 +#: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 +#: ../../include/functions_reporting_html.php:1717 +#: ../../include/ajax/heatmap.ajax.php:190 ../../include/ajax/heatmap.ajax.php:249 +#: ../../include/ajax/heatmap.ajax.php:288 ../../include/functions_graph.php:5307 +#: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 +#: ../../include/functions_events.php:4168 ../../operation/heatmap.php:96 +#: ../../operation/heatmap.php:98 ../../operation/agentes/status_monitor.php:517 +#: ../../operation/agentes/estado_monitores.php:552 +#: ../../operation/agentes/ver_agente.php:1157 +msgid "Module group" +msgstr "モジュールグループ" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 +msgid "Module description" +msgstr "モジュールの説明" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 +msgid "Step by step wizard" +msgstr "段階的ウィザード" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 +#: ../../enterprise/meta/general/main_header.php:309 +#: ../../enterprise/meta/general/main_header.php:391 +#: ../../enterprise/godmode/modules/configure_local_component.php:165 +#: ../../enterprise/godmode/agentes/plugins_manager.php:126 +#: ../../enterprise/godmode/policies/policy_plugins.php:108 +#: ../../godmode/modules/manage_network_components_form_common.php:53 +#: ../../godmode/users/configure_user.php:1239 +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/alerts/alert_commands.php:158 +#: ../../godmode/alerts/alert_commands.php:195 +#: ../../godmode/alerts/configure_alert_template.php:946 +#: ../../godmode/alerts/configure_alert_template.php:987 +#: ../../godmode/alerts/configure_alert_template.php:1138 +#: ../../operation/netflow/nf_live_view.php:490 +msgid "Advanced" +msgstr "拡張" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 +msgid "Click Create to continue" +msgstr "続けるには作成をクリックします" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 +#: ../../godmode/reporting/graph_builder.graph_editor.php:367 +msgid "Please, select a module" +msgstr "モジュールを選択してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 +#: ../../enterprise/godmode/wizards/Cloud.class.php:579 +#: ../../enterprise/include/class/VMware.app.php:863 +#: ../../enterprise/include/class/Omnishell.class.php:852 +#: ../../enterprise/include/class/DB2.app.php:840 +#: ../../enterprise/include/class/SAP.app.php:802 +#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/MySQL.app.php:908 +#: ../../enterprise/include/class/Oracle.app.php:949 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2180 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../godmode/alerts/configure_alert_template.php:1171 +#: ../../godmode/wizards/HostDevices.class.php:1569 +#: ../../include/class/CustomNetScan.class.php:725 +msgid "Finish" +msgstr "終了" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "追加しようとしているアラートは、アラート一覧にすでにあります。" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:135 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +msgid "No description available" +msgstr "説明なし" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:184 +#: ../../enterprise/operation/agentes/policy_view.php:277 +#: ../../enterprise/operation/agentes/policy_view.php:570 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../godmode/modules/manage_network_components_form_wmi.php:60 +#: ../../godmode/alerts/configure_alert_template.php:1288 +#: ../../godmode/alerts/alert_list.builder.php:293 ../../include/functions.php:2712 +#: ../../include/class/AgentWizard.class.php:2510 +msgid "Empty" +msgstr "空" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 +#: ../../include/functions_events.php:3064 ../../include/functions_events.php:3335 +msgid "New" +msgstr "新規" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 +msgid "Are you sure? If the agent is on a policy, it will be removed from the policy." +msgstr "よろしいですか? エージェントがポリシーにある場合はポリシーから削除されます。" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 +msgid "Please, select an alert" +msgstr "アラートを選択してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 +msgid "Please, select an agent" +msgstr "エージェントを選択してください" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 +#: ../../enterprise/include/class/CommandCenter.class.php:463 +#: ../../enterprise/operation/log/log_viewer.php:845 +#: ../../enterprise/operation/log/log_viewer.php:867 +#: ../../godmode/massive/massive_copy_modules.php:235 +#: ../../godmode/massive/massive_operations.php:339 +#: ../../godmode/massive/massive_add_profiles.php:292 +#: ../../include/functions_events.php:4016 +#: ../../operation/reporting/reporting_viewer.php:347 +#: ../../operation/reporting/graph_viewer.php:316 ../../general/ui/agents_list.php:146 +msgid "Loading" +msgstr "読み込み中" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:151 +#: ../../enterprise/meta/include/functions_wizard_meta.php:642 +#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7124 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "URL" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 +#: ../../godmode/modules/manage_network_components_form_wizard.php:393 +#: ../../godmode/modules/manage_network_components_form_wizard.php:435 +#: ../../include/functions_reports.php:1087 ../../include/functions_reports.php:1217 +msgid "String" +msgstr "文字列" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 +msgid "No agent name specified" +msgstr "エージェント名が定義されていません。" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 +msgid "Another agent already exists with the same name" +msgstr "他のエージェントがすでに同じ名前で存在します" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:474 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:477 +#: ../../godmode/agentes/module_manager_editor_common.php:627 +#: ../../godmode/agentes/module_manager_editor_common.php:629 +#, php-format +msgid "Agent interval x %s" +msgstr "エージェント実行間隔 x %s" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +msgid "Group View" +msgstr "グループ表示" + +#: ../../enterprise/meta/monitoring/group_view.php:72 +#: ../../godmode/groups/group_list.php:321 ../../godmode/users/configure_user.php:1140 +#: ../../operation/users/user_edit.php:362 ../../operation/agentes/group_view.php:89 +#: ../../operation/menu.php:50 +msgid "Group view" +msgstr "グループ" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "Summary by status" +msgstr "状態ごとのまとめ" + +#: ../../enterprise/meta/monitoring/group_view.php:160 +#: ../../enterprise/meta/monitoring/group_view.php:172 +msgid "% Agents not init" +msgstr "未初期化エージェント%" + +#: ../../enterprise/meta/monitoring/group_view.php:163 +msgid "% Agents Warning" +msgstr "% エージェントが警告" + +#: ../../enterprise/meta/monitoring/group_view.php:166 +msgid "% Agents OK" +msgstr "% エージェントが正常" + +#: ../../enterprise/meta/monitoring/group_view.php:169 +msgid "% Agents Unknown" +msgstr "% のエージェントが不明状態" + +#: ../../enterprise/meta/monitoring/group_view.php:177 +msgid "% Monitors Critical" +msgstr "障害状態モジュール%" + +#: ../../enterprise/meta/monitoring/group_view.php:180 +msgid "% Monitors Warning" +msgstr "警告状態モジュール%" + +#: ../../enterprise/meta/monitoring/group_view.php:183 +msgid "% Monitors OK" +msgstr "正常状態モジュール%" + +#: ../../enterprise/meta/monitoring/group_view.php:186 +msgid "% Monitors Unknown" +msgstr "不明状態モジュール%" + +#: ../../enterprise/meta/monitoring/group_view.php:189 +msgid "% Monitors Not init" +msgstr "未初期化モジュール%" + +#: ../../enterprise/meta/monitoring/group_view.php:205 +#: ../../godmode/agentes/modificar_agente.php:945 +#: ../../operation/agentes/estado_agente.php:975 +#: ../../operation/agentes/group_view.php:577 +msgid "There are no defined agents" +msgstr "定義されたエージェントがありません" + +#: ../../enterprise/meta/monitoring/group_view.php:217 +#: ../../enterprise/meta/monitoring/group_view.php:223 +msgid "This data doesn't show in realtime" +msgstr "このデータはリアルタイムでは表示されません" + +#: ../../enterprise/meta/monitoring/group_view.php:234 +msgid "Group or Tag" +msgstr "グループまたはタグ" + +#: ../../enterprise/meta/monitoring/group_view.php:235 +#: ../../enterprise/include/functions_inventory.php:511 +#: ../../enterprise/include/functions_inventory.php:654 +#: ../../enterprise/operation/agentes/agent_inventory.php:266 +#: ../../enterprise/operation/services/services.treeview_services.php:265 +#: ../../godmode/groups/group_list.php:1044 +#: ../../include/functions_reporting_html.php:2461 +#: ../../include/functions_reporting_html.php:2471 +#: ../../include/functions_alerts.php:3360 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 ../../operation/tree.php:456 +#: ../../operation/agentes/group_view.php:223 +msgid "Total" +msgstr "合計" + +#: ../../enterprise/meta/monitoring/group_view.php:247 +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:573 ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1228 +#: ../../include/functions_agents.php:2942 ../../include/functions_agents.php:2953 +#: ../../include/functions_ui.php:1253 ../../include/class/AgentsAlerts.class.php:937 +#: ../../include/functions_reporting.php:12638 ../../include/functions_events.php:2738 +#: ../../include/functions_events.php:2938 ../../operation/agentes/group_view.php:234 +#: ../../operation/snmpconsole/snmp_view.php:1018 +msgid "Alert fired" +msgstr "発生中アラート" + +#: ../../enterprise/meta/monitoring/group_view.php:359 +#: ../../operation/agentes/group_view.php:320 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this reason, an " +"agent can be counted several times." +msgstr "" +"この %s インストールはセカンダリグループ機能を使用しています。 このため、エージェント" +"は数回カウントされる可能性があります。" + +#: ../../enterprise/meta/monitoring/tactical.php:42 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "モニタ状態表示" + +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../enterprise/meta/general/main_menu.php:202 +#: ../../godmode/users/configure_user.php:1141 ../../mobile/operation/home.php:45 +#: ../../mobile/operation/tactical.php:97 +#: ../../include/lib/Dashboard/Widgets/tactical.php:176 +#: ../../include/lib/Dashboard/Widgets/tactical.php:533 +#: ../../operation/users/user_edit.php:363 ../../operation/agentes/tactical.php:69 +#: ../../operation/menu.php:47 +msgid "Tactical view" +msgstr "モニタリング概要" + +#: ../../enterprise/meta/monitoring/tactical.php:234 +msgid "Report of state" +msgstr "状態レポート" + +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:154 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/meta/general/main_menu.php:267 +#: ../../enterprise/include/class/CommandCenter.class.php:1078 +#: ../../enterprise/tools/ipam/ipam_network.php:400 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:240 +#: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 +#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 +#: ../../include/functions.php:4094 ../../include/ajax/events.php:2162 +#: ../../include/functions_reports.php:864 ../../include/functions_reports.php:868 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:374 +#: ../../operation/events/events.php:1479 ../../operation/events/events.php:1487 +msgid "Events" +msgstr "イベント" + +#: ../../enterprise/meta/monitoring/tactical.php:278 +msgid "Report of events" +msgstr "イベントレポート" + +#: ../../enterprise/meta/monitoring/tactical.php:288 +msgid "Info of state in events" +msgstr "イベントの状態" + +#: ../../enterprise/meta/monitoring/tactical.php:308 +msgid "More events" +msgstr "イベント追加" + +#: ../../enterprise/meta/event/custom_events.php:38 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:255 +#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:380 +msgid "View events" +msgstr "イベント参照" + +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:217 ../../godmode/netflow/nf_edit_form.php:190 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:225 ../../include/ajax/custom_fields.php:652 +msgid "Create filter" +msgstr "フィルタの作成" + +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:235 +#: ../../godmode/events/events.php:68 +msgid "Event responses" +msgstr "イベント応答" + +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:916 +#: ../../godmode/agentes/agent_manager.php:941 ../../godmode/menu.php:99 +#: ../../godmode/massive/massive_edit_agents.php:1251 +#: ../../godmode/reporting/reporting_builder.item_editor.php:76 +#: ../../include/functions_reporting_html.php:1585 +#: ../../include/functions_events.php:4130 ../../operation/agentes/status_monitor.php:62 +#: ../../operation/agentes/status_monitor.php:85 +#: ../../operation/agentes/ver_agente.php:1544 +msgid "Custom fields" +msgstr "カスタムフィールド" + +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:291 +#: ../../enterprise/meta/general/main_menu.php:410 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2887 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:109 +msgid "Filters" +msgstr "フィルタ" + +#: ../../enterprise/meta/event/custom_events.php:79 ../../godmode/events/events.php:100 +#: ../../include/ajax/events.php:1749 +msgid "Responses" +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:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1250 +msgid "Fields" +msgstr "フィールド" + +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:129 +msgid "Fields available" +msgstr "存在するフィールド" + +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:186 +#: ../../godmode/events/custom_events.php:149 +msgid "Fields selected" +msgstr "選択されているフィールド" + +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:136 +msgid "Add fields to select" +msgstr "フィールドを選択に加える" + +#: ../../enterprise/meta/event/custom_events.php:197 +#: ../../godmode/agentes/status_monitor_custom_fields.php:180 +#: ../../godmode/events/custom_events.php:144 +msgid "Delete fields to select" +msgstr "フィールドを選択から削除する" + +#: ../../enterprise/meta/event/custom_events.php:207 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "イベントフィールド表示" + +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/events/custom_events.php:222 +msgid "There must be at least one custom field. Timestamp will be set by default" +msgstr "" +"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定されま" +"す。" + +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "ラウンドロビン" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "低負荷" + +#: ../../enterprise/meta/include/functions_autoprovision.php:422 +msgid "" +"It uses the Round-robin planning method to distribute, \n" +" in an equitable way and in a rational order, all the new Pandora " +"software agents that reach the Metaconsole.\n" +" The distribution of the agents will be done in a circular way, " +"assigning the corresponding server to each new agent.\n" +" " +msgstr "" +"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウンドロビ" +"ン方式で公平に配布します。\n" +" エージェントの配布は循環的に行われ、新しいエージェントは対応するサー" +"バに割り当てられます。\n" +" " + +#: ../../enterprise/meta/include/functions_autoprovision.php:430 +msgid "The new agents will be dynamically assigned to those servers with less load." +msgstr "新しいエージェントは、負荷の少ないサーバに動的に割り当てられます。" + +#: ../../enterprise/meta/include/functions_autoprovision.php:435 +msgid "" +"In the customized classification, we will be able to define our own classification " +"rules, \n" +" based on certain parameters retrieved from the information reported " +"by the agent (name of the agent and its IP address).\n" +" " +msgstr "" +"カスタム配布では、独自の配布ルールを定義できます。\n" +" エージェントから取得された情報(エージェント名とその IP アドレス)に基" +"づきます。\n" +" " + +#: ../../enterprise/meta/include/functions_autoprovision.php:473 +#: ../../enterprise/meta/include/functions_autoprovision.php:640 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2944 +#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../godmode/reporting/reporting_builder.list_items.php:440 +#: ../../godmode/reporting/reporting_builder.list_items.php:740 +#: ../../godmode/reporting/graph_builder.graph_editor.php:217 +#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +msgid "Sort" +msgstr "並べ替え" + +#: ../../enterprise/meta/include/functions_autoprovision.php:529 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add the first." +msgstr "" +"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックして、最初" +"のエントリを追加します。" + +#: ../../enterprise/meta/include/functions_autoprovision.php:534 +msgid "Create custom entry" +msgstr "カスタムエントリの作成" + +#: ../../enterprise/meta/include/functions_autoprovision.php:561 +msgid "Provisioning configuration" +msgstr "設定プロビジョニング" + +#: ../../enterprise/meta/include/functions_autoprovision.php:572 +msgid "Configuration:" +msgstr "設定:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:610 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to create the " +"first." +msgstr "" +"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリックして" +"作成します。" + +#: ../../enterprise/meta/include/functions_autoprovision.php:642 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:495 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 +#: ../../extensions/quick_shell.php:190 +msgid "Method" +msgstr "方法" + +#: ../../enterprise/meta/include/functions_autoprovision.php:723 +msgid "There was an error when editing the rule." +msgstr "ルール編集中にエラーが発生しました。" + +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +msgid "Operation:" +msgstr "操作:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:751 +msgid "Method:" +msgstr "方法:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:765 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "値:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:816 +msgid "Move up" +msgstr "上へ" + +#: ../../enterprise/meta/include/functions_autoprovision.php:824 +msgid "Move down" +msgstr "下へ" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "名前重複エラー (%s) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(重複 ID (%d) エラー) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "名前重複エラー" + +#: ../../enterprise/meta/include/functions_users_meta.php:183 +#: ../../enterprise/meta/include/functions_users_meta.php:206 +#: ../../enterprise/meta/general/main_header.php:321 +#: ../../enterprise/meta/general/main_header.php:401 +#: ../../enterprise/meta/general/main_header.php:408 +#: ../../enterprise/meta/general/main_menu.php:471 +#: ../../enterprise/meta/general/main_menu.php:529 +#: ../../enterprise/meta/general/main_menu.php:552 +#: ../../enterprise/meta/general/main_menu.php:559 +#: ../../godmode/users/profile_list.php:63 ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:55 +#: ../../godmode/users/configure_profile.php:76 ../../godmode/users/user_list.php:214 +#: ../../godmode/users/user_list.php:239 ../../godmode/users/user_list.php:250 +#: ../../godmode/users/configure_user.php:238 +#: ../../operation/users/user_edit_header.php:91 +msgid "User management" +msgstr "ユーザ管理" + +#: ../../enterprise/meta/include/functions_users_meta.php:187 +#: ../../enterprise/meta/include/functions_users_meta.php:214 +#: ../../godmode/users/profile_list.php:74 ../../godmode/users/configure_profile.php:66 +#: ../../godmode/users/user_list.php:225 ../../godmode/users/configure_user.php:249 +#: ../../godmode/menu.php:155 +msgid "Profile management" +msgstr "プロファイル管理" + +#: ../../enterprise/meta/include/functions_users_meta.php:195 +#: ../../enterprise/meta/include/functions_users_meta.php:210 +#: ../../enterprise/meta/general/header.php:211 +#: ../../enterprise/meta/general/header.php:221 +#: ../../enterprise/meta/general/main_header.php:624 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:482 +#: ../../general/header.php:407 ../../general/header.php:417 +msgid "Edit my user" +msgstr "ユーザ情報編集" + +#: ../../enterprise/meta/include/functions_users_meta.php:202 +msgid "User synchronization" +msgstr "ユーザ同期" + +#: ../../enterprise/meta/include/functions_users_meta.php:218 +msgid "Group synchronization" +msgstr "グループ同期" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:186 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1801 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../godmode/agentes/agent_manager.php:292 +#: ../../godmode/reporting/reporting_builder.item_editor.php:69 +#: ../../include/functions_reporting_html.php:1557 +msgid "Alias" +msgstr "別名" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:207 +#: ../../enterprise/meta/include/functions_wizard_meta.php:211 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1465 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1813 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../godmode/agentes/agent_manager.php:301 +#: ../../godmode/servers/modificar_server.php:62 +#: ../../include/functions_reporting_html.php:1561 +#: ../../include/functions_reporting_html.php:4035 +#: ../../include/functions_reporting_html.php:4129 +#: ../../include/functions_treeview.php:640 ../../include/functions_events.php:4106 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "IP アドレス" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:236 +#: ../../enterprise/meta/include/functions_wizard_meta.php:682 +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:49 +#: ../../enterprise/include/functions_metaconsole.php:1313 +#: ../../enterprise/include/functions_metaconsole.php:1346 +#: ../../enterprise/include/functions_metaconsole.php:1379 +#: ../../enterprise/include/functions_metaconsole.php:1412 +#: ../../enterprise/include/functions_metaconsole.php:1445 +#: ../../enterprise/include/functions_metaconsole.php:1476 +#: ../../enterprise/include/functions_metaconsole.php:1509 +#: ../../godmode/agentes/module_manager_editor_web.php:172 +msgid "Check" +msgstr "チェック" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:245 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:602 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1150 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:1038 +#: ../../enterprise/include/class/Aws.cloud.php:345 +#: ../../godmode/alerts/configure_alert_template.php:229 +#: ../../godmode/alerts/configure_alert_template.php:233 +#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 +#: ../../include/ajax/events.php:1699 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9735 +msgid "General" +msgstr "一般" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:306 +#: ../../godmode/modules/manage_network_templates_form.php:341 +#: ../../include/class/ModuleTemplates.class.php:804 +msgid "Components" +msgstr "コンポーネント" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:308 +#: ../../enterprise/include/functions_reporting_csv.php:2380 +msgid "Agent modules" +msgstr "エージェントモジュール" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:361 +msgid "Add selected modules to agent" +msgstr "選択したモジュールのエージェントへの追加" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:399 +msgid "Undo changes" +msgstr "変更を元に戻す" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:817 +msgid "Auto" +msgstr "自動" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../godmode/agentes/module_manager_editor_wmi.php:60 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:818 +msgid "Force primary key" +msgstr "プライマリを利用" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1470 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1177 +#: ../../enterprise/meta/include/functions_meta.php:1231 +#: ../../enterprise/meta/include/functions_meta.php:1285 +#: ../../enterprise/meta/general/login_page.php:125 +#: ../../enterprise/meta/general/login_page.php:167 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:132 +#: ../../enterprise/godmode/setup/setup_auth.php:1039 +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:172 +#: ../../enterprise/include/class/DB2.app.php:501 +#: ../../enterprise/include/class/MySQL.app.php:523 +#: ../../enterprise/include/class/Oracle.app.php:508 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 +#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:143 +#: ../../godmode/update_manager/update_manager.history.php:43 +#: ../../godmode/setup/setup_ehorus.php:80 ../../godmode/setup/setup_integria.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3460 +#: ../../godmode/events/custom_events.php:99 ../../mobile/include/user.class.php:396 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:5884 ../../include/functions.php:3053 +#: ../../include/functions_cron.php:489 ../../include/functions_config.php:688 +#: ../../include/functions_config.php:708 +#: ../../include/class/CredentialStore.class.php:805 +#: ../../include/class/CredentialStore.class.php:1134 +#: ../../include/class/AuditLog.class.php:108 ../../include/class/AuditLog.class.php:211 +#: ../../include/functions_events.php:202 ../../include/functions_events.php:253 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:723 +#: ../../operation/users/user_edit.php:769 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 +#: ../../general/logon_ok.php:249 ../../general/login_page.php:230 +#: ../../general/login_page.php:272 +msgid "User" +msgstr "ユーザ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1474 +#: ../../enterprise/meta/include/functions_meta.php:1189 +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/meta/include/functions_meta.php:1297 +#: ../../enterprise/meta/general/login_page.php:139 +#: ../../enterprise/meta/general/login_page.php:181 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 +#: ../../enterprise/godmode/setup/setup_module_library.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:1045 +#: ../../enterprise/godmode/setup/setup_auth.php:1077 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/ajax/servers.ajax.php:101 +#: ../../enterprise/include/ajax/servers.ajax.php:159 +#: ../../enterprise/include/ajax/servers.ajax.php:285 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:55 +#: ../../enterprise/include/functions_setup.php:113 +#: ../../enterprise/include/class/VMware.app.php:732 +#: ../../enterprise/include/class/DB2.app.php:513 +#: ../../enterprise/include/class/MySQL.app.php:535 +#: ../../enterprise/include/class/Oracle.app.php:520 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 +#: ../../extensions/api_checker.php:143 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:958 +#: ../../godmode/agentes/module_manager_editor_wmi.php:116 +#: ../../godmode/massive/massive_edit_modules.php:908 +#: ../../godmode/setup/setup_ehorus.php:86 ../../godmode/setup/setup_integria.php:289 +#: ../../mobile/include/user.class.php:403 ../../include/functions_config.php:692 +#: ../../include/functions_config.php:712 +#: ../../include/class/CredentialStore.class.php:958 +#: ../../include/class/CredentialStore.class.php:995 +#: ../../include/class/CredentialStore.class.php:1135 +#: ../../include/class/CredentialStore.class.php:1158 +#: ../../include/class/AgentWizard.class.php:680 ../../operation/users/user_edit.php:729 +#: ../../operation/users/user_edit.php:775 ../../general/login_page.php:244 +#: ../../general/login_page.php:285 +msgid "Password" +msgstr "パスワード" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Latency" +msgstr "待ち時間" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:591 +msgid "Response" +msgstr "応答" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:593 +#: ../../godmode/agentes/module_manager_editor_web.php:199 +msgid "Check type" +msgstr "チェックタイプ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:667 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 +#: ../../enterprise/include/functions_enterprise.php:460 +#: ../../godmode/agentes/module_manager_editor_web.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1141 +msgid "Web checks" +msgstr "ウェブチェック" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:646 +msgid "String to check" +msgstr "チェック文字列" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:652 +msgid "Add check" +msgstr "チェックを追加" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:661 +msgid "Delete check" +msgstr "チェックを削除" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:674 +#: ../../enterprise/godmode/modules/configure_local_component.php:494 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +#: ../../godmode/agentes/module_manager_editor_web.php:164 +msgid "Load basic" +msgstr "基本設定読み込み" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:680 +#: ../../godmode/agentes/module_manager_editor_web.php:170 +msgid "Load a basic structure on Web Checks" +msgstr "ウェブチェックに基本構造を読み込む" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:688 +#: ../../godmode/agentes/module_manager_editor_web.php:178 +msgid "Check the correct structure of the WebCheck" +msgstr "ウェブチェックの構造確認" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../godmode/agentes/module_manager_editor_web.php:253 +msgid "First line must be \"task_begin\"" +msgstr "最初の行は、\"task_begin\" でなければいけません。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../godmode/agentes/module_manager_editor_web.php:254 +msgid "Webchecks configuration is empty" +msgstr "ウェブチェック設定が空です" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../godmode/agentes/module_manager_editor_web.php:255 +#: ../../godmode/agentes/module_manager_editor_web.php:256 +msgid "Last line must be \"task_end\"" +msgstr "最後の行は、\"task_end\" でなければいけません。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/modules/configure_local_component.php:513 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +#: ../../godmode/agentes/module_manager_editor_web.php:257 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "不明なトークン 'token_fail' を含む行があります。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:700 +#: ../../godmode/agentes/module_manager_editor_web.php:259 +msgid "Web checks are built correctly" +msgstr "ウェブチェックを設定しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:918 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1742 +#: ../../enterprise/meta/agentsearch.php:137 +#: ../../enterprise/godmode/modules/configure_local_component.php:289 +#: ../../enterprise/godmode/agentes/inventory_manager.php:223 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:465 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:507 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:847 +#: ../../enterprise/include/class/VMware.app.php:667 +#: ../../enterprise/include/class/DB2.app.php:536 +#: ../../enterprise/include/class/Aws.S3.php:506 +#: ../../enterprise/include/class/SAP.app.php:513 +#: ../../enterprise/include/class/Aws.cloud.php:591 +#: ../../enterprise/include/class/Aws.cloud.php:1318 +#: ../../enterprise/include/class/MySQL.app.php:558 +#: ../../enterprise/include/class/Google.cloud.php:797 +#: ../../enterprise/include/class/Oracle.app.php:543 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 +#: ../../enterprise/include/functions_ipam.php:1354 +#: ../../enterprise/operation/agentes/tag_view.php:603 +#: ../../enterprise/operation/agentes/tag_view.php:681 +#: ../../enterprise/tools/ipam/ipam_list.php:641 +#: ../../godmode/modules/manage_network_components_form_common.php:143 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/agent_manager.php:378 +#: ../../godmode/agentes/module_manager_editor_common.php:617 +#: ../../godmode/agentes/module_manager_editor_common.php:642 +#: ../../godmode/agentes/module_manager.php:863 +#: ../../godmode/massive/massive_edit_agents.php:714 +#: ../../godmode/massive/massive_edit_modules.php:754 +#: ../../godmode/wizards/HostDevices.class.php:798 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:596 +#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 +#: ../../mobile/operation/modules.php:851 +#: ../../include/functions_reporting_html.php:3602 ../../include/ajax/events.php:2315 +#: ../../include/functions_treeview.php:84 ../../include/functions_treeview.php:646 +#: ../../include/class/CustomNetScan.class.php:520 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:372 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51 +#: ../../operation/agentes/estado_agente.php:751 +#: ../../operation/agentes/status_monitor.php:1328 +#: ../../operation/agentes/estado_generalagente.php:357 +#: ../../operation/netflow/nf_live_view.php:270 ../../operation/search_modules.php:35 +#: ../../operation/events/sound_events.php:219 +msgid "Interval" +msgstr "間隔" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:924 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1041 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1747 +#: ../../enterprise/godmode/modules/configure_local_component.php:468 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 +#: ../../enterprise/include/functions_reporting_csv.php:2787 +#: ../../godmode/modules/manage_network_components_form_common.php:312 +#: ../../godmode/agentes/module_manager_editor_common.php:582 +#: ../../godmode/massive/massive_edit_modules.php:925 +#: ../../include/functions_reporting_html.php:3603 +msgid "Unit" +msgstr "単位" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:956 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1047 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "いろいろ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:964 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1481 +#: ../../include/class/ExternalTools.class.php:570 +msgid "SNMP Community" +msgstr "SNMP コミュニティ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:971 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1055 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1189 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1316 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1326 +#: ../../extensions/api_checker.php:195 ../../godmode/wizards/HostDevices.class.php:1470 +msgid "Credentials" +msgstr "認証情報" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:978 +#: ../../enterprise/meta/include/functions_wizard_meta.php:987 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1063 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1072 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1708 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1717 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1813 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1416 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2526 +#: ../../include/functions_reporting_html.php:4901 ../../include/functions_ui.php:2610 +#: ../../include/functions_reporting.php:1533 +msgid "Min" +msgstr "最小" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:980 +#: ../../enterprise/meta/include/functions_wizard_meta.php:989 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1811 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2445 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2519 +#: ../../include/functions_reporting_html.php:4900 ../../include/functions_ui.php:2610 +#: ../../include/functions_reporting.php:1529 +msgid "Max" +msgstr "最大" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:982 +#: ../../enterprise/meta/include/functions_wizard_meta.php:991 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1712 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1721 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 +#: ../../enterprise/godmode/modules/configure_local_component.php:338 +#: ../../enterprise/godmode/modules/configure_local_component.php:381 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../godmode/modules/manage_network_components_form_common.php:192 +#: ../../godmode/modules/manage_network_components_form_common.php:233 +#: ../../godmode/modules/manage_network_components_form_wizard.php:396 +#: ../../godmode/modules/manage_network_components_form_wizard.php:438 +#: ../../godmode/agentes/module_manager_editor_common.php:459 +#: ../../godmode/agentes/module_manager_editor_common.php:520 +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/massive/massive_edit_modules.php:701 +msgid "Inverse interval" +msgstr "条件の反転" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:996 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1081 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 +#: ../../include/ajax/module.php:981 +msgid "Thresholds" +msgstr "しきい値" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1087 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../godmode/agentes/module_manager_editor_web.php:224 +msgid "Proxy URL" +msgstr "プロキシURL" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1092 +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:1728 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1735 +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:1368 +msgid "Alerts in module" +msgstr "モジュール内のアラート" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1376 +#: ../../include/functions_reporting_html.php:5246 +msgid "Alert description" +msgstr "アラートの説明" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "チェック" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1826 +msgid "Deleted modules" +msgstr "削除済エージェント" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2014 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2114 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2669 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2788 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2879 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3074 +msgid "Another module already exists with the same name" +msgstr "同じ名前のモジュールが既に存在します" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2026 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2121 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2681 +#, php-format +msgid "Error adding module %s" +msgstr "モジュール %s 追加エラー" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2035 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2130 +msgid "There was an error creating the alerts, the operation has been cancelled" +msgstr "アラート作成でエラーが発生しました。操作はキャンセルされました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2159 +#: ../../enterprise/godmode/policies/policy_modules.php:919 +msgid "Successfully added module." +msgstr "モジュールを追加しました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2219 +#, php-format +msgid "Could not create agent %s" +msgstr "エージェント %s を作成できませんでした" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2232 +msgid "Agent successfully added" +msgstr "エージェントを追加しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2253 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2371 +#, php-format +msgid "%s Modules created" +msgstr "%s モジュールを作成しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2329 +#, php-format +msgid "Could not update agent %s" +msgstr "エージェント %s を更新できませんでした" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2338 +#: ../../enterprise/include/class/AgentRepository.class.php:552 +msgid "Agent successfully updated" +msgstr "エージェントを更新しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2377 +#, php-format +msgid "%s Modules deleted" +msgstr "%s モジュールを削除しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2693 +msgid "There was an error creating the alerts, the operation has been cancelled ." +msgstr "アラート作成エラーです。操作はキャンセルされました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2723 +msgid "Module successfully added." +msgstr "モジュールを追加しました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2795 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2886 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3081 +#, php-format +msgid "Error updating module %s" +msgstr "モジュール %s の更新エラー" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2817 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2908 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3103 +msgid "There was an error updating the alerts, the operation has been cancelled" +msgstr "アラートの更新でエラーが発生しました。操作はキャンセルされました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2838 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2929 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3124 +msgid "Successfully updated module." +msgstr "モジュールを更新しました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3504 +msgid "Manage agent modules" +msgstr "エージェントモジュール管理" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "毎日" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/meta/include/functions_meta.php:2127 +#: ../../enterprise/include/ajax/ipam.ajax.php:521 +#: ../../enterprise/tools/ipam/ipam_editor.php:327 +#: ../../godmode/alerts/alert_templates.php:73 ../../include/functions_config.php:1572 +msgid "Days" +msgstr "日間" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "毎" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "と" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2245 +#: ../../godmode/snmpconsole/snmp_alert.php:1083 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:676 +#: ../../godmode/alerts/alert_view.php:262 +msgid "Time threshold" +msgstr "再通知間隔" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/policies/policy_alerts.php:436 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 +#: ../../enterprise/include/functions_reporting_pdf.php:1817 +#: ../../enterprise/include/functions_reporting_pdf.php:1890 +#: ../../enterprise/include/functions_reporting_pdf.php:2005 +#: ../../enterprise/include/functions_reporting_csv.php:719 +#: ../../enterprise/include/functions_reporting_csv.php:997 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3379 +#: ../../godmode/agentes/planned_downtime.list.php:293 +#: ../../godmode/alerts/alert_list.list.php:658 +#: ../../godmode/alerts/alert_list.list.php:661 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:3105 +#: ../../include/functions_reporting_html.php:3910 ../../include/rest-api/index.php:359 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 +#: ../../operation/agentes/gis_view.php:220 +#: ../../operation/reporting/reporting_viewer.php:304 +msgid "From" +msgstr "開始" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../enterprise/godmode/policies/policy_alerts.php:436 +#: ../../enterprise/godmode/policies/policy_alerts.php:600 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 +#: ../../enterprise/include/functions_reporting_pdf.php:1823 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1017 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3510 +#: ../../godmode/massive/massive_add_action_alerts.php:254 +#: ../../godmode/alerts/alert_list.list.php:658 +#: ../../godmode/alerts/alert_list.list.php:778 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:129 +#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:3110 +#: ../../include/ajax/alert_list.ajax.php:527 +#: ../../include/class/AgentsAlerts.class.php:316 +#: ../../include/functions_reporting.php:14361 +#: ../../operation/reporting/reporting_viewer.php:308 +msgid "to" +msgstr "終了" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 +msgid "Agent succesfully deleted" +msgstr "エージェントを削除しました" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 +msgid "Could not delete agent" +msgstr "エージェントを削除できません。" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:199 +msgid "Event id" +msgstr "イベント ID" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../include/functions_reporting_html.php:1314 +#: ../../include/functions_reporting_html.php:1322 +#: ../../include/functions_reporting_html.php:5178 +#: ../../include/functions_events.php:200 ../../include/functions_events.php:2444 +#: ../../include/functions_events.php:4593 +msgid "Event name" +msgstr "イベント名" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/include/functions_reporting_csv.php:917 +#: ../../enterprise/include/functions_ipam.php:2045 +#: ../../godmode/agentes/modificar_agente.php:647 +#: ../../godmode/agentes/agent_manager.php:213 ../../mobile/operation/modules.php:597 +#: ../../mobile/operation/modules.php:849 +#: ../../include/functions_reporting_html.php:3546 +#: ../../include/functions_treeview.php:617 +#: ../../include/class/SatelliteAgent.class.php:363 +#: ../../include/functions_events.php:201 ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2449 ../../operation/events/events.php:2438 +msgid "Agent name" +msgstr "エージェント名" + +#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../enterprise/include/functions_inventory.php:143 +#: ../../enterprise/include/functions_inventory.php:177 +#: ../../enterprise/include/functions_inventory.php:379 +#: ../../enterprise/include/functions_inventory.php:399 +#: ../../enterprise/include/functions_inventory.php:585 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:921 +#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:2327 +#: ../../enterprise/include/functions_reporting_csv.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:2675 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/include/class/LogSource.class.php:628 +#: ../../enterprise/operation/agentes/tag_view.php:686 +#: ../../godmode/update_manager/update_manager.history.php:44 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102 +#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 +#: ../../mobile/operation/events.php:804 ../../include/functions_reporting_html.php:1057 +#: ../../include/functions_reporting_html.php:1065 +#: ../../include/functions_reporting_html.php:1318 +#: ../../include/functions_reporting_html.php:1325 +#: ../../include/functions_reporting_html.php:2544 +#: ../../include/functions_reporting_html.php:5180 +#: ../../include/ajax/events_extended.php:90 ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_netflow.php:278 ../../include/functions_events.php:205 +#: ../../include/functions_events.php:262 ../../include/functions_events.php:2454 +#: ../../include/functions_events.php:4606 ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1364 +#: ../../operation/agentes/estado_generalagente.php:644 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/snmpconsole/snmp_view.php:881 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 +#: ../../operation/search_modules.php:39 +msgid "Timestamp" +msgstr "タイムスタンプ" + +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2854 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1382 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/functions_events.php:60 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2976 +#: ../../godmode/events/event_filter.php:138 +#: ../../godmode/events/event_edit_filter.php:322 +#: ../../include/lib/Dashboard/Widgets/events_list.php:332 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1595 +msgid "Event type" +msgstr "イベントタイプ" + +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:347 +#: ../../enterprise/include/functions_reporting_csv.php:919 +#: ../../enterprise/operation/agentes/tag_view.php:205 +#: ../../godmode/modules/manage_network_templates_form.php:231 +#: ../../godmode/modules/manage_network_components.php:748 +#: ../../godmode/modules/manage_network_components_form_wizard.php:272 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:99 ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/modules.php:848 ../../include/ajax/heatmap.ajax.php:225 +#: ../../include/ajax/heatmap.ajax.php:264 ../../include/ajax/module.php:978 +#: ../../include/ajax/custom_fields.php:411 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1318 +msgid "Module name" +msgstr "モジュール名" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:391 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 +#: ../../godmode/agentes/configurar_agente.php:737 +#: ../../godmode/alerts/configure_alert_template.php:1552 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4101 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:208 +#: ../../include/functions_events.php:271 +#: ../../operation/agentes/estado_monitores.php:522 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1246 +msgid "Alert" +msgstr "アラート" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2827 +#: ../../enterprise/include/functions_reporting.php:2026 +#: ../../enterprise/include/functions_events.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2949 +#: ../../godmode/events/event_filter.php:140 +#: ../../godmode/events/event_edit_filter.php:337 +#: ../../godmode/events/custom_events.php:106 ../../mobile/operation/events.php:678 +#: ../../mobile/operation/events.php:679 ../../mobile/operation/events.php:820 +#: ../../mobile/operation/events.php:982 ../../mobile/operation/events.php:983 +#: ../../include/functions_reporting_html.php:1055 +#: ../../include/functions_reporting_html.php:1063 +#: ../../include/functions_reporting_html.php:1316 +#: ../../include/functions_reporting_html.php:1324 +#: ../../include/functions_reporting_html.php:2542 ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:404 +#: ../../include/functions_events.php:209 ../../include/functions_events.php:274 +#: ../../include/functions_events.php:2436 ../../include/functions_events.php:4659 +#: ../../operation/snmpconsole/snmp_view.php:572 ../../operation/events/events.php:1675 +msgid "Severity" +msgstr "重要度" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:638 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../include/class/CustomNetScan.class.php:468 +#: ../../include/functions_events.php:210 ../../include/functions_events.php:277 +#: ../../include/functions_events.php:3412 ../../operation/events/events.php:1744 +msgid "Comment" +msgstr "コメント" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:550 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 +#: ../../enterprise/godmode/setup/setup_auth.php:231 +#: ../../enterprise/godmode/setup/setup_auth.php:510 +#: ../../enterprise/godmode/setup/setup_auth.php:1307 +#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../enterprise/operation/agentes/tag_view.php:678 +#: ../../godmode/modules/manage_network_components_form_common.php:351 +#: ../../godmode/massive/massive_copy_modules.php:172 +#: ../../godmode/massive/massive_delete_modules.php:401 +#: ../../godmode/massive/massive_delete_modules.php:515 +#: ../../godmode/massive/massive_edit_modules.php:405 +#: ../../godmode/massive/massive_edit_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:1047 +#: ../../godmode/reporting/reporting_builder.item_editor.php:85 +#: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:66 +#: ../../mobile/operation/events.php:845 ../../include/functions_reporting_html.php:1718 +#: ../../include/functions_reporting_html.php:3605 +#: ../../include/functions_treeview.php:168 ../../include/functions_profile.php:215 +#: ../../include/lib/Dashboard/Widgets/events_list.php:461 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 +#: ../../include/functions_events.php:211 ../../include/functions_events.php:280 +#: ../../include/functions_events.php:4746 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:842 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/group_view.php:222 +#: ../../operation/agentes/alerts_status.functions.php:108 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "タグ" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4318 +msgid "Extra id" +msgstr "拡張 ID" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/setup/setup_integria.php:397 ../../godmode/setup/setup_integria.php:519 +#: ../../godmode/events/custom_events.php:111 ../../mobile/operation/events.php:808 +#: ../../include/functions_events.php:214 ../../include/functions_events.php:289 +#: ../../include/functions_events.php:4618 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:312 +#: ../../operation/incidents/list_integriaims_incidents.php:342 +#: ../../operation/incidents/list_integriaims_incidents.php:522 +msgid "Owner" +msgstr "所有者" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:112 ../../include/functions_events.php:215 +#: ../../include/functions_events.php:292 +msgid "ACK Timestamp" +msgstr "ACK タイムスタンプ" + +#: ../../enterprise/meta/include/functions_events_meta.php:126 +#: ../../godmode/events/custom_events.php:113 ../../include/functions_events.php:216 +#: ../../include/functions_events.php:295 ../../include/functions_events.php:4306 +#: ../../operation/events/events.php:2990 +msgid "Instructions" +msgstr "手順" + +#: ../../enterprise/meta/include/functions_events_meta.php:130 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:198 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:772 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:593 +#: ../../include/functions_events.php:217 +msgid "Server name" +msgstr "サーバ名" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:5109 +#: ../../include/lib/Dashboard/Widgets/module_status.php:175 +#: ../../include/lib/Dashboard/Widgets/module_status.php:572 +#: ../../include/functions_events.php:219 ../../operation/tree.php:285 +msgid "Module status" +msgstr "モジュールの状態" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 ../../general/login_page.php:79 +msgid "Splash login" +msgstr "スプラッシュログイン" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "Pandora FMS サポートへ行く" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "次へ行く " + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:58 +#: ../../enterprise/include/reset_pass.php:53 ../../general/login_help_dialog.php:83 +#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148 +#: ../../general/login_page.php:151 +msgid "Support" +msgstr "サポート" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "Pandora FMS wiki へ行く" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:645 +#: ../../godmode/servers/plugin.php:526 ../../include/functions_ui.php:1452 +#: ../../include/class/ManageNetScanScripts.class.php:690 +msgid "Help" +msgstr "ヘルプ" + +#: ../../enterprise/meta/include/process_reset_pass.php:96 +#: ../../enterprise/include/process_reset_pass.php:103 +#: ../../operation/users/user_edit.php:301 +msgid "New Password" +msgstr "新しいパスワード" + +#: ../../enterprise/meta/include/process_reset_pass.php:114 +#: ../../enterprise/include/process_reset_pass.php:118 +msgid "Repeat password" +msgstr "パスワード(確認)" + +#: ../../enterprise/meta/include/process_reset_pass.php:120 +#: ../../enterprise/include/process_reset_pass.php:124 +msgid "Change password" +msgstr "パスワード変更" + +#: ../../enterprise/meta/include/process_reset_pass.php:123 +#: ../../enterprise/meta/index.php:665 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:842 +msgid "Passwords must be the same" +msgstr "パスワードは同じでなければいけません" + +#: ../../enterprise/meta/include/process_reset_pass.php:132 +#: ../../enterprise/meta/include/reset_pass.php:122 +#: ../../enterprise/include/process_reset_pass.php:136 +#: ../../enterprise/include/reset_pass.php:123 +msgid "Back to login" +msgstr "ログインに戻る" + +#: ../../enterprise/meta/include/process_reset_pass.php:142 +#: ../../enterprise/meta/include/reset_pass.php:139 +#, php-format +msgid "%s NEXT GENERATION" +msgstr "%s NEXT GENERATION" + +#: ../../enterprise/meta/include/process_reset_pass.php:150 +#: ../../enterprise/meta/include/reset_pass.php:147 +#: ../../enterprise/meta/general/login_page.php:217 +#: ../../include/functions_config.php:2470 +msgid "METACONSOLE" +msgstr "メタコンソール" + +#: ../../enterprise/meta/include/process_reset_pass.php:164 +#: ../../enterprise/meta/include/reset_pass.php:161 +#: ../../enterprise/meta/general/login_page.php:232 +#: ../../enterprise/include/process_reset_pass.php:183 +#: ../../enterprise/include/reset_pass.php:170 ../../general/login_page.php:424 +msgid "Build" +msgstr "ビルド" + +#: ../../enterprise/meta/include/functions_agents_meta.php:478 +#: ../../enterprise/meta/include/functions_agents_meta.php:542 +#: ../../enterprise/meta/include/functions_agents_meta.php:577 +msgid "Agents movement" +msgstr "エージェント移動" + +#: ../../enterprise/meta/include/functions_agents_meta.php:489 +#: ../../enterprise/meta/include/functions_agents_meta.php:557 +msgid "Provisioning management" +msgstr "プロビジョニング管理" + +#: ../../enterprise/meta/include/functions_agents_meta.php:500 +#: ../../enterprise/meta/include/functions_agents_meta.php:567 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:542 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:800 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "Agent autoconfiguration" +msgstr "エージェント自動設定" + +#: ../../enterprise/meta/include/functions_agents_meta.php:511 +#: ../../enterprise/meta/include/functions_agents_meta.php:547 +#: ../../enterprise/meta/include/functions_agents_meta.php:552 +msgid "Group management" +msgstr "グループ管理" + +#: ../../enterprise/meta/include/functions_agents_meta.php:522 +msgid "Tree group" +msgstr "ツリーグループ" + +#: ../../enterprise/meta/include/functions_agents_meta.php:562 +msgid "Provisioning rules management" +msgstr "プロビジョニングルール管理" + +#: ../../enterprise/meta/include/functions_agents_meta.php:572 +msgid "Colecctions" +msgstr "コレクション" + +#: ../../enterprise/meta/include/functions_agents_meta.php:605 +msgid "Agents Management" +msgstr "エージェント管理" + +#: ../../enterprise/meta/include/functions_agents_meta.php:614 +#: ../../enterprise/meta/include/functions_agents_meta.php:619 +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:137 +#: ../../include/functions_menu.php:492 +msgid "Agents management" +msgstr "エージェント管理" + +#: ../../enterprise/meta/include/functions_meta.php:51 +msgid "No admin user" +msgstr "管理者ではありません" + +#: ../../enterprise/meta/include/functions_meta.php:70 +#: ../../include/functions_config.php:411 +msgid "Activate Metaconsole" +msgstr "メタコンソールの有効化" + +#: ../../enterprise/meta/include/functions_meta.php:114 +msgid "Centralized management" +msgstr "中央管理" + +#: ../../enterprise/meta/include/functions_meta.php:122 +#: ../../include/functions_config.php:226 +msgid "Attachment store." +msgstr "添付ファイル保存場所。" + +#: ../../enterprise/meta/include/functions_meta.php:200 +msgid "Netflow disable custom live view filters" +msgstr "Netflow は、カスタムライブビューフィルタを無効にします" + +#: ../../enterprise/meta/include/functions_meta.php:264 +msgid "Customizable section" +msgstr "カスタマイズ可能なセクション" + +#: ../../enterprise/meta/include/functions_meta.php:285 +msgid "Agent API" +msgstr "エージェント API" + +#: ../../enterprise/meta/include/functions_meta.php:335 +msgid "Policy add max. agents" +msgstr "ポリシーでの最大エージェントの追加" + +#: ../../enterprise/meta/include/functions_meta.php:344 +msgid "Sync items warn detection" +msgstr "アイテム同期で警告検出" + +#: ../../enterprise/meta/include/functions_meta.php:482 +msgid "IP ElasticSearch" +msgstr "IP ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:492 +msgid "Port ElasticSearch" +msgstr "ポート ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:502 +#: ../../enterprise/godmode/setup/setup_log_collector.php:41 +#: ../../include/functions_config.php:1517 +msgid "Number of logs viewed" +msgstr "ログ表示数" + +#: ../../enterprise/meta/include/functions_meta.php:514 +#: ../../godmode/setup/setup_auth.php:440 ../../include/functions_config.php:524 +#: ../../include/class/AgentWizard.class.php:839 +msgid "Authentication method" +msgstr "認証方法" + +#: ../../enterprise/meta/include/functions_meta.php:524 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:648 +msgid "Fallback to local authentication" +msgstr "ローカル認証へのフォールバック" + +#: ../../enterprise/meta/include/functions_meta.php:534 +#: ../../enterprise/meta/include/functions_meta.php:753 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:528 +msgid "Autocreate remote users" +msgstr "リモートユーザの自動作成" + +#: ../../enterprise/meta/include/functions_meta.php:544 +#: ../../enterprise/godmode/setup/setup_auth.php:55 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:364 +#: ../../enterprise/godmode/setup/setup_auth.php:1159 +#: ../../include/functions_config.php:532 +msgid "Autocreate profile" +msgstr "プロファイルの自動作成" + +#: ../../enterprise/meta/include/functions_meta.php:554 +#: ../../enterprise/godmode/setup/setup_auth.php:61 +#: ../../enterprise/godmode/setup/setup_auth.php:309 +#: ../../enterprise/godmode/setup/setup_auth.php:370 +#: ../../enterprise/godmode/setup/setup_auth.php:1165 +#: ../../include/functions_config.php:536 +msgid "Autocreate profile group" +msgstr "プロファイルグループの自動作成" + +#: ../../enterprise/meta/include/functions_meta.php:564 +#: ../../enterprise/godmode/setup/setup_auth.php:68 +#: ../../enterprise/godmode/setup/setup_auth.php:318 +#: ../../enterprise/godmode/setup/setup_auth.php:379 +#: ../../enterprise/godmode/setup/setup_auth.php:1174 +#: ../../include/functions_config.php:540 +msgid "Autocreate profile tags" +msgstr "自動作成プロファイルタグ" + +#: ../../enterprise/meta/include/functions_meta.php:574 +#: ../../enterprise/godmode/setup/setup_auth.php:324 +#: ../../include/functions_config.php:544 +msgid "Automatically assigned no hierarchy" +msgstr "自動的に割り当てられた階層なし" + +#: ../../enterprise/meta/include/functions_meta.php:584 +#: ../../enterprise/godmode/setup/setup_auth.php:569 +#: ../../enterprise/godmode/setup/setup_auth.php:1371 +#: ../../include/functions_config.php:548 +msgid "Autocreate blacklist" +msgstr "ブラックリストの自動作成" + +#: ../../enterprise/meta/include/functions_meta.php:594 +#: ../../enterprise/meta/include/functions_meta.php:896 +#: ../../godmode/users/configure_user.php:1360 ../../godmode/setup/setup_auth.php:353 +#: ../../include/functions_config.php:756 ../../operation/users/user_edit.php:429 +msgid "Double authentication" +msgstr "二段階認証" + +#: ../../enterprise/meta/include/functions_meta.php:604 +msgid "2FA_all_users" +msgstr "全ユーザ二段階認証" + +#: ../../enterprise/meta/include/functions_meta.php:616 +#: ../../enterprise/meta/include/functions_meta.php:909 +#: ../../include/functions_config.php:764 ../../include/functions_config.php:770 +msgid "Session timeout" +msgstr "セッションタイムアウト" + +#: ../../enterprise/meta/include/functions_meta.php:630 +#: ../../enterprise/meta/include/functions_meta.php:1094 +#: ../../enterprise/godmode/setup/setup_auth.php:82 +#: ../../enterprise/godmode/setup/setup_auth.php:348 +#: ../../include/functions_config.php:661 ../../include/functions_config.php:777 +msgid "Save Password" +msgstr "パスワードを保存" + +#: ../../enterprise/meta/include/functions_meta.php:647 +#: ../../enterprise/godmode/setup/setup_auth.php:577 +#: ../../enterprise/godmode/setup/setup_auth.php:1379 +#: ../../include/functions_config.php:552 +msgid "Active directory server" +msgstr "アクティブディレクトリサーバ" + +#: ../../enterprise/meta/include/functions_meta.php:657 +#: ../../enterprise/godmode/setup/setup_auth.php:583 +#: ../../enterprise/godmode/setup/setup_auth.php:1385 +#: ../../include/functions_config.php:556 +msgid "Active directory port" +msgstr "アクティブディレクトリポート" + +#: ../../enterprise/meta/include/functions_meta.php:667 +#: ../../enterprise/meta/include/functions_meta.php:951 +#: ../../enterprise/godmode/setup/setup_auth.php:589 +#: ../../enterprise/godmode/setup/setup_auth.php:1391 +#: ../../godmode/setup/setup_auth.php:137 ../../include/functions_config.php:560 +#: ../../include/functions_config.php:596 +msgid "Start TLS" +msgstr "TLS の開始" + +#: ../../enterprise/meta/include/functions_meta.php:677 +#: ../../enterprise/godmode/setup/setup_auth.php:353 +#: ../../enterprise/godmode/setup/setup_auth.php:1148 +#: ../../include/functions_config.php:564 +msgid "Advanced Config AD" +msgstr "拡張 AD 設定" + +#: ../../enterprise/meta/include/functions_meta.php:687 +#: ../../enterprise/godmode/setup/setup_auth.php:595 +#: ../../enterprise/godmode/setup/setup_auth.php:1397 +#: ../../include/functions_config.php:572 +msgid "Domain" +msgstr "ドメイン" + +#: ../../enterprise/meta/include/functions_meta.php:697 +#: ../../enterprise/godmode/setup/setup_auth.php:413 +#: ../../enterprise/godmode/setup/setup_auth.php:1208 +#: ../../include/functions_config.php:576 +msgid "Advanced Permisions AD" +msgstr "AD 拡張パーミッション" + +#: ../../enterprise/meta/include/functions_meta.php:707 +#: ../../enterprise/godmode/setup/setup_auth.php:129 +#: ../../include/functions_config.php:580 +msgid "Advanced Permissions LDAP" +msgstr "LDAP 拡張パーミッション" + +#: ../../enterprise/meta/include/functions_meta.php:717 +#: ../../enterprise/godmode/setup/setup_auth.php:106 +#: ../../include/functions_config.php:568 +msgid "Advanced Config LDAP" +msgstr "LDAP 拡張設定" + +#: ../../enterprise/meta/include/functions_meta.php:727 +#: ../../enterprise/meta/include/functions_meta.php:739 +#: ../../enterprise/godmode/setup/setup_auth.php:337 +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "Auto enable node access" +msgstr "自動有効ノードアクセス" + +#: ../../enterprise/meta/include/functions_meta.php:766 +#: ../../include/functions_config.php:716 +msgid "Saml path" +msgstr "SAML パス" + +#: ../../enterprise/meta/include/functions_meta.php:779 +#: ../../include/functions_config.php:720 +msgid "Saml source" +msgstr "SAML ソース" + +#: ../../enterprise/meta/include/functions_meta.php:792 +#: ../../include/functions_config.php:724 +msgid "Saml user id parameter" +msgstr "SAML ユーザ ID パラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:805 +#: ../../include/functions_config.php:728 +msgid "Saml mail parameter" +msgstr "SAML メールパラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:818 +#: ../../include/functions_config.php:732 +msgid "Saml group name parameter" +msgstr "SAML グループ名パラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:831 +#: ../../include/functions_config.php:736 +msgid "Saml attr type parameter" +msgstr "SAML attr タイプパラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:844 +#: ../../include/functions_config.php:740 +msgid "Saml profiles and tags parameter" +msgstr "SAML プロファイルおよび タグパラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:857 +#: ../../include/functions_config.php:752 +msgid "Saml profile and tag separator" +msgstr "SAML プロファイルおよびタグセパレータ" + +#: ../../enterprise/meta/include/functions_meta.php:870 +msgid "SAML profile parameters" +msgstr "SAML プロファイルパラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:883 +#: ../../include/functions_config.php:748 +msgid "Saml tag parameter" +msgstr "SAML タグパラメータ" + +#: ../../enterprise/meta/include/functions_meta.php:921 +#: ../../godmode/setup/setup_auth.php:92 ../../include/functions_config.php:584 +msgid "LDAP server" +msgstr "LDAP サーバ" + +#: ../../enterprise/meta/include/functions_meta.php:931 +#: ../../godmode/setup/setup_auth.php:105 ../../include/functions_config.php:588 +msgid "LDAP port" +msgstr "LDAP ポート" + +#: ../../enterprise/meta/include/functions_meta.php:941 +#: ../../godmode/setup/setup_auth.php:123 ../../include/functions_config.php:592 +msgid "LDAP version" +msgstr "LDAP バージョン" + +#: ../../enterprise/meta/include/functions_meta.php:961 +#: ../../godmode/setup/setup_auth.php:148 ../../include/functions_config.php:600 +msgid "Base DN" +msgstr "ベース DN" + +#: ../../enterprise/meta/include/functions_meta.php:971 +#: ../../godmode/setup/setup_auth.php:161 ../../include/functions_config.php:604 +msgid "Login attribute" +msgstr "ログイン属性" + +#: ../../enterprise/meta/include/functions_meta.php:981 +#: ../../godmode/setup/setup_auth.php:174 ../../include/functions_config.php:608 +msgid "Admin LDAP login" +msgstr "LDAP 管理者ログイン" + +#: ../../enterprise/meta/include/functions_meta.php:991 +#: ../../godmode/setup/setup_auth.php:187 ../../include/functions_config.php:612 +msgid "Admin LDAP password" +msgstr "LDAP 管理者パスワード" + +#: ../../enterprise/meta/include/functions_meta.php:1002 +#: ../../include/functions_config.php:672 +msgid "LDAP secondary enabled" +msgstr "セカンダリ LDAP 有効" + +#: ../../enterprise/meta/include/functions_meta.php:1011 +#: ../../godmode/setup/setup_auth.php:222 ../../include/functions_config.php:616 +msgid "Secondary LDAP server" +msgstr "セカンダリ LDAP サーバ" + +#: ../../enterprise/meta/include/functions_meta.php:1021 +#: ../../godmode/setup/setup_auth.php:235 ../../include/functions_config.php:620 +msgid "Secondary LDAP port" +msgstr "セカンダリ LDAP ポート" + +#: ../../enterprise/meta/include/functions_meta.php:1031 +#: ../../godmode/setup/setup_auth.php:253 ../../include/functions_config.php:624 +msgid "Secondary LDAP version" +msgstr "セカンダリ LDAP バージョン" + +#: ../../enterprise/meta/include/functions_meta.php:1041 +#: ../../godmode/setup/setup_auth.php:267 +msgid "Secondary start TLS" +msgstr "セカンダリ開始 TLS" + +#: ../../enterprise/meta/include/functions_meta.php:1051 +#: ../../include/functions_config.php:632 +msgid "Secondary base DN" +msgstr "セカンダリ base DN" + +#: ../../enterprise/meta/include/functions_meta.php:1061 +#: ../../include/functions_config.php:636 +msgid "Secondary login attribute" +msgstr "セカンダリログイン属性" + +#: ../../enterprise/meta/include/functions_meta.php:1071 +#: ../../godmode/setup/setup_auth.php:304 ../../include/functions_config.php:640 +msgid "Admin secondary LDAP login" +msgstr "セカンダリ LDAP 管理者ログイン" + +#: ../../enterprise/meta/include/functions_meta.php:1081 +#: ../../godmode/setup/setup_auth.php:317 ../../include/functions_config.php:644 +msgid "Admin secondary LDAP password" +msgstr "セカンダリ LDAP 管理者パスワード" + +#: ../../enterprise/meta/include/functions_meta.php:1114 +#: ../../enterprise/godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:652 +msgid "Login user attribute" +msgstr "ログインユーザアトリビュート" + +#: ../../enterprise/meta/include/functions_meta.php:1124 +#: ../../include/functions_config.php:668 +msgid "Save profile" +msgstr "プロファイルの保存" + +#: ../../enterprise/meta/include/functions_meta.php:1135 +#: ../../enterprise/godmode/setup/setup_auth.php:94 +#: ../../include/functions_config.php:656 +msgid "LDAP function" +msgstr "LDAP 機能" + +#: ../../enterprise/meta/include/functions_meta.php:1147 +#, php-format +msgid "%s host" +msgstr "%s ホスト" + +#: ../../enterprise/meta/include/functions_meta.php:1157 +#: ../../enterprise/meta/include/functions_meta.php:1211 +#: ../../enterprise/meta/include/functions_meta.php:1265 +#: ../../enterprise/godmode/setup/setup_auth.php:1027 +#: ../../enterprise/godmode/setup/setup_auth.php:1059 +#: ../../include/functions_config.php:680 ../../include/functions_config.php:700 +msgid "MySQL port" +msgstr "MySQL ポート" + +#: ../../enterprise/meta/include/functions_meta.php:1167 +#: ../../enterprise/meta/include/functions_meta.php:1221 +#: ../../enterprise/meta/include/functions_meta.php:1275 +#: ../../enterprise/meta/include/functions_meta.php:2097 +#: ../../enterprise/godmode/setup/setup_history.php:200 +#: ../../enterprise/godmode/setup/setup_auth.php:1033 +#: ../../enterprise/godmode/setup/setup_auth.php:1065 +#: ../../include/functions_config.php:684 ../../include/functions_config.php:704 +#: ../../include/functions_config.php:1547 +msgid "Database name" +msgstr "データベース名" + +#: ../../enterprise/meta/include/functions_meta.php:1201 +msgid "Babel Enterprise host" +msgstr "Babel Enterprise ホスト" + +#: ../../enterprise/meta/include/functions_meta.php:1255 +#: ../../enterprise/godmode/setup/setup_auth.php:1053 +#: ../../include/functions_config.php:696 +msgid "Integria host" +msgstr "Integria ホスト" + +#: ../../enterprise/meta/include/functions_meta.php:1320 +#: ../../include/functions_config.php:946 +msgid "Timestamp or time comparation" +msgstr "タイムスタンプ表示" + +#: ../../enterprise/meta/include/functions_meta.php:1330 +msgid "Graph color (min)" +msgstr "グラフの色 (最小値)" + +#: ../../enterprise/meta/include/functions_meta.php:1340 +msgid "Graph color (avg)" +msgstr "グラフの色 (平均値)" + +#: ../../enterprise/meta/include/functions_meta.php:1350 +msgid "Graph color (max)" +msgstr "グラフの色 (最大値)" + +#: ../../enterprise/meta/include/functions_meta.php:1385 +#: ../../include/functions_config.php:994 +msgid "Data precision for reports" +msgstr "レポートのデータ精度" + +#: ../../enterprise/meta/include/functions_meta.php:1500 +msgid "full scale charts" +msgstr "フルスケールグラフ" + +#: ../../enterprise/meta/include/functions_meta.php:1510 +msgid "type mode type charts" +msgstr "タイプモードタイプグラフ" + +#: ../../enterprise/meta/include/functions_meta.php:1530 +msgid "type mode zoom charts" +msgstr "タイプモード拡大グラフ" + +#: ../../enterprise/meta/include/functions_meta.php:1550 +msgid "Type of charts" +msgstr "グラフのタイプ" + +#: ../../enterprise/meta/include/functions_meta.php:1590 +#: ../../include/functions_config.php:1043 +msgid "Custom logo collapsed" +msgstr "折り畳み時カスタムロゴ" + +#: ../../enterprise/meta/include/functions_meta.php:1600 +msgid "Custom logo (white background)" +msgstr "カスタムロゴ (白背景)" + +#: ../../enterprise/meta/include/functions_meta.php:1620 +#: ../../include/functions_config.php:1051 +msgid "Custom logo login" +msgstr "ログイン時のカスタムロゴ" + +#: ../../enterprise/meta/include/functions_meta.php:1630 +#: ../../include/functions_config.php:1055 +msgid "Custom splash login" +msgstr "カスタムスプラッシュログイン" + +#: ../../enterprise/meta/include/functions_meta.php:1660 +#: ../../include/functions_config.php:1091 +msgid "Custom title1 login" +msgstr "カスタムタイトル1 ログイン" + +#: ../../enterprise/meta/include/functions_meta.php:1670 +#: ../../include/functions_config.php:1095 +msgid "Custom title2 login" +msgstr "カスタムタイトル2 ログイン" + +#: ../../enterprise/meta/include/functions_meta.php:1680 +#: ../../include/functions_config.php:1083 +msgid "Meta custom title header" +msgstr "メタカスタムタイトルヘッダ" + +#: ../../enterprise/meta/include/functions_meta.php:1690 +#: ../../include/functions_config.php:1087 +msgid "Meta custom subtitle header" +msgstr "メタカスタムサブタイトルヘッダ" + +#: ../../enterprise/meta/include/functions_meta.php:1720 +msgid "Custom background login" +msgstr "カスタムログイン背景" + +#: ../../enterprise/meta/include/functions_meta.php:1730 +msgid "Custom product name" +msgstr "カスタム製品名" + +#: ../../enterprise/meta/include/functions_meta.php:1740 +msgid "Custom copyright notice" +msgstr "カスタム著作権表示" + +#: ../../enterprise/meta/include/functions_meta.php:1789 +#: ../../include/functions_config.php:1027 +msgid "Font path" +msgstr "フォントパス" + +#: ../../enterprise/meta/include/functions_meta.php:1799 +#: ../../include/functions_config.php:1465 +msgid "Use data multiplier" +msgstr "データ乗数を使用する" + +#: ../../enterprise/meta/include/functions_meta.php:1811 +#: ../../include/functions_config.php:1421 +msgid "Custom report info" +msgstr "カスタムレポート情報" + +#: ../../enterprise/meta/include/functions_meta.php:1821 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1437 +msgid "Font family" +msgstr "フォントファミリ" + +#: ../../enterprise/meta/include/functions_meta.php:1861 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1253 ../../include/functions_config.php:1453 +msgid "Footer" +msgstr "フッター" + +#: ../../enterprise/meta/include/functions_meta.php:1896 +#: ../../include/functions_config.php:1151 +msgid "Use the legacy Visual Console" +msgstr "レガシービジュアルコンソールの利用" + +#: ../../enterprise/meta/include/functions_meta.php:1907 +#: ../../include/functions_config.php:1155 +msgid "Default expiration of the Visual Console item's cache" +msgstr "ビジュアルコンソールキャッシュのデフォルト有効期間" + +#: ../../enterprise/meta/include/functions_meta.php:1951 +msgid "Realtime stats" +msgstr "リアルタイム統計" + +#: ../../enterprise/meta/include/functions_meta.php:1981 +#: ../../godmode/setup/performance.php:579 ../../include/functions_config.php:854 +msgid "Use agent access graph" +msgstr "エージェントアクセスグラフの利用" + +#: ../../enterprise/meta/include/functions_meta.php:1991 +msgid "Default block size migration agents" +msgstr "デフォルトエージェントマイグレーションブロックサイズ" + +#: ../../enterprise/meta/include/functions_meta.php:2013 +msgid "Default block size execution event" +msgstr "デフォルト実行イベントブロックサイズ" + +#: ../../enterprise/meta/include/functions_meta.php:2024 +msgid "Default row limit in csv log" +msgstr "デフォルト csv ログ行制限" + +#: ../../enterprise/meta/include/functions_meta.php:2054 +#: ../../include/functions_config.php:935 +msgid "PhantomJS cache interval" +msgstr "PhantomJS キャッシュ間隔" + +#: ../../enterprise/meta/include/functions_meta.php:2070 +msgid "Node address default" +msgstr "デフォルトノードアドレス" + +#: ../../enterprise/meta/include/functions_meta.php:2083 +#: ../../include/functions_config.php:1534 +msgid "Active and historical database cannot be the same." +msgstr "メインとヒストリデータベースが異なります。" + +#: ../../enterprise/meta/include/functions_meta.php:2087 +#: ../../enterprise/godmode/setup/setup_history.php:170 +#: ../../include/functions_config.php:1539 +msgid "Host" +msgstr "ホスト" + +#: ../../enterprise/meta/include/functions_meta.php:2103 +#: ../../include/functions_config.php:1552 +msgid "Enable history database" +msgstr "ヒストリデータベースの有効化" + +#: ../../enterprise/meta/include/functions_meta.php:2108 +#: ../../include/functions_config.php:1556 +msgid "Enable history event" +msgstr "ヒストリイベントの有効化" + +#: ../../enterprise/meta/include/functions_meta.php:2113 +#: ../../enterprise/godmode/setup/setup_history.php:215 +#: ../../include/functions_config.php:1560 +msgid "Database user" +msgstr "データベースユーザ" + +#: ../../enterprise/meta/include/functions_meta.php:2118 +#: ../../enterprise/godmode/setup/setup_history.php:230 +#: ../../include/functions_config.php:1564 +msgid "Database password" +msgstr "データベースパスワード" + +#: ../../enterprise/meta/include/functions_meta.php:2136 +#: ../../include/functions_config.php:1592 +msgid "Event Days" +msgstr "イベント日数" + +#: ../../enterprise/meta/include/functions_meta.php:2154 +#: ../../include/functions_config.php:1608 +msgid "Delay" +msgstr "遅延" + +#: ../../enterprise/meta/include/functions_meta.php:2187 +#: ../../include/functions_config.php:1640 +msgid "Historical database purge" +msgstr "ヒストリデータベース削除" + +#: ../../enterprise/meta/include/functions_meta.php:2196 +#: ../../include/functions_config.php:1648 +msgid "Historical database partitions" +msgstr "ヒストリデータベースパーティション" + +#: ../../enterprise/meta/include/functions_meta.php:2205 +#: ../../include/functions_config.php:1656 +msgid "Historical database events purge" +msgstr "ヒストリデータベースイベント削除" + +#: ../../enterprise/meta/include/functions_meta.php:2214 +#: ../../include/functions_config.php:1664 +msgid "Historical database string purge" +msgstr "ヒストリデータベース文字列削除" + +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../enterprise/meta/include/functions_components_meta.php:135 +#: ../../godmode/menu.php:102 +msgid "Component groups" +msgstr "コンポーネントグループ管理" + +#: ../../enterprise/meta/include/functions_components_meta.php:88 +#: ../../enterprise/meta/include/functions_components_meta.php:139 +#: ../../enterprise/godmode/menu.php:87 ../../godmode/menu.php:177 +msgid "Local components" +msgstr "ローカルコンポーネント" + +#: ../../enterprise/meta/include/functions_components_meta.php:96 +#: ../../enterprise/meta/include/functions_components_meta.php:143 +msgid "Network components" +msgstr "コンポーネント管理" + +#: ../../enterprise/meta/include/functions_components_meta.php:104 +#: ../../enterprise/meta/include/functions_components_meta.php:147 +msgid "Plugin management" +msgstr "プラグイン管理" + +#: ../../enterprise/meta/include/functions_components_meta.php:113 +#: ../../enterprise/meta/include/functions_components_meta.php:160 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 +#: ../../enterprise/godmode/menu.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 +#: ../../enterprise/include/functions_policies.php:3756 +msgid "Inventory modules" +msgstr "インベントリモジュール" + +#: ../../enterprise/meta/include/functions_components_meta.php:124 +#: ../../enterprise/meta/include/functions_components_meta.php:164 +#: ../../godmode/servers/plugin_registration.php:99 ../../godmode/servers/plugin.php:295 +msgid "Plugin registration" +msgstr "プラグインの登録" + +#: ../../enterprise/meta/include/functions_components_meta.php:153 +msgid "Create plugin" +msgstr "プラグイン作成" + +#: ../../enterprise/meta/include/functions_components_meta.php:155 +msgid "Edit plugin" +msgstr "プラグイン編集" + +#: ../../enterprise/meta/include/functions_ui_meta.php:53 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "%s - フレキシブルモニタリングシステム" + +#: ../../enterprise/meta/include/functions_ui_meta.php:975 +#: ../../enterprise/godmode/services/services.elements.php:884 +#: ../../enterprise/godmode/services/services.elements.php:895 #: ../../enterprise/include/class/CommandCenter.class.php:473 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4052 -#: ../../enterprise/include/lib/Metaconsole/Node.php:593 #: ../../enterprise/include/functions_login.php:104 #: ../../enterprise/include/functions_login.php:488 -#: ../../enterprise/meta/include/functions_ui_meta.php:970 -#: ../../enterprise/godmode/services/services.elements.php:841 -#: ../../enterprise/godmode/services/services.elements.php:852 -#: ../../mobile/operation/visualmap.php:182 +#: ../../enterprise/include/lib/Metaconsole/Node.php:541 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4117 +#: ../../godmode/users/configure_user.php:1856 +#: ../../godmode/users/configure_user.php:1926 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../godmode/users/configure_user.php:1825 -#: ../../godmode/users/configure_user.php:1895 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1236 +#: ../../include/ajax/double_auth.ajax.php:255 +#: ../../include/ajax/double_auth.ajax.php:353 +#: ../../include/ajax/double_auth.ajax.php:399 +#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2216 +#: ../../include/functions_ui.php:290 ../../include/class/SatelliteAgent.class.php:464 +#: ../../include/class/Diagnostics.class.php:1827 +#: ../../include/functions_events.php:2762 ../../include/functions_events.php:2962 +#: ../../index.php:1577 ../../operation/users/user_edit.php:1091 +#: ../../operation/users/user_edit.php:1157 ../../general/register.php:157 msgid "Error" msgstr "エラー" -#: ../../general/register.php:161 ../../operation/users/user_edit.php:1068 -#: ../../operation/users/user_edit.php:1134 ../../include/ajax/double_auth.ajax.php:259 -#: ../../include/ajax/double_auth.ajax.php:357 -#: ../../include/ajax/double_auth.ajax.php:403 -#: ../../include/ajax/double_auth.ajax.php:520 -#: ../../enterprise/include/functions_login.php:492 -#: ../../godmode/users/configure_user.php:1829 -#: ../../godmode/users/configure_user.php:1899 -msgid "There was an error loading the data" -msgstr "データのロードでエラーが発生しました" +#: ../../enterprise/meta/include/functions_alerts_meta.php:137 +#: ../../enterprise/meta/include/functions_alerts_meta.php:168 +#: ../../godmode/menu.php:276 +msgid "Commands" +msgstr "コマンド" -#: ../../general/register.php:170 ../../operation/users/user_edit.php:1142 -#: ../../operation/users/user_edit.php:1218 -#: ../../enterprise/include/functions_login.php:501 -#: ../../godmode/users/configure_user.php:1907 -#: ../../godmode/users/configure_user.php:1985 -msgid "Double autentication activation" -msgstr "二段階認証の有効化" +#: ../../enterprise/meta/include/functions_alerts_meta.php:141 +msgid "Calendar" +msgstr "カレンダー" + +#: ../../enterprise/meta/include/reset_pass.php:93 +#: ../../enterprise/include/reset_pass.php:98 +msgid "User to reset password" +msgstr "パスワードリセットするユーザ" + +#: ../../enterprise/meta/include/reset_pass.php:103 ../../enterprise/meta/index.php:731 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:914 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: ../../enterprise/meta/include/reset_pass.php:165 +#: ../../enterprise/meta/include/reset_pass.php:168 +#: ../../enterprise/include/reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:177 +msgid "Reset password failed" +msgstr "パスワードリセットに失敗しました" + +#: ../../enterprise/meta/include/reset_pass.php:172 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../enterprise/meta/general/login_page.php:301 +#: ../../enterprise/include/reset_pass.php:181 ../../general/login_page.php:452 +#: ../../general/login_page.php:494 +msgid "ERROR" +msgstr "エラー" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "ファイルの内容が不正です" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "関係がありません" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "関係タイプ: %s から %s -> %s は保存されませんでした" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "関係 %s -> %s は保存されませんでした" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "ファイルをインポートしました" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "関係の挿入エラー" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "文字列が空です" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "カスタムノードアドレスが空です" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already exists in " +"the database" +msgstr "" +"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既に存在" +"します" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "関係 %s -> %s の挿入エラー" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "関係を作成しました" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "関係の削除エラー" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "関係を削除しました" + +#: ../../enterprise/meta/index.php:206 ../../index.php:1460 +#: ../../operation/visual_console/legacy_public_view.php:57 +#: ../../operation/visual_console/public_view.php:38 +#: ../../operation/agentes/stat_win.php:92 +#: ../../operation/gis_maps/public_console.php:277 +#: ../../operation/events/sound_events.php:168 +msgid "Connection with server has been lost" +msgstr "サーバとの接続が切断されました" + +#: ../../enterprise/meta/index.php:207 ../../index.php:1461 +#: ../../operation/visual_console/legacy_public_view.php:58 +#: ../../operation/visual_console/public_view.php:39 +#: ../../operation/agentes/stat_win.php:93 +#: ../../operation/gis_maps/public_console.php:278 +#: ../../operation/events/sound_events.php:169 +msgid "" +"Connection to the server has been lost. Please check your internet connection or " +"contact with administrator." +msgstr "" +"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡してくださ" +"い。" + +#: ../../enterprise/meta/index.php:330 ../../mobile/include/user.class.php:303 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:370 +msgid "Invalid code" +msgstr "不正なコード" + +#: ../../enterprise/meta/index.php:342 ../../index.php:382 +msgid "The code shouldn't be empty" +msgstr "コードは空にできません" + +#: ../../enterprise/meta/index.php:355 ../../index.php:395 +msgid "Expired login" +msgstr "ログイン期限切れ" + +#: ../../enterprise/meta/index.php:362 ../../enterprise/meta/index.php:368 +#: ../../index.php:402 ../../index.php:408 +msgid "Login error" +msgstr "ログインエラー" + +#: ../../enterprise/meta/index.php:656 ../../index.php:831 +msgid "Password changed successfully" +msgstr "パスワードを変更しました" + +#: ../../enterprise/meta/index.php:662 ../../index.php:837 +msgid "Failed to change password" +msgstr "パスワード変更に失敗しました" + +#: ../../enterprise/meta/index.php:676 ../../index.php:854 +msgid "Too much time since password change request" +msgstr "パスワード変更要求から長時間経過しました" + +#: ../../enterprise/meta/index.php:683 ../../index.php:861 +msgid "This user has not requested a password change" +msgstr "このユーザはパスワード変更を要求していません" + +#: ../../enterprise/meta/index.php:699 ../../index.php:888 +msgid "Id user cannot be empty" +msgstr "ユーザIDは空にできません" + +#: ../../enterprise/meta/index.php:707 ../../index.php:896 +msgid "Error in reset password request" +msgstr "パスワードリセット要求エラー" + +#: ../../enterprise/meta/index.php:715 ../../index.php:904 +msgid "This user doesn't have a valid email address" +msgstr "このユーザは正しいメールアドレスがありません" + +#: ../../enterprise/meta/index.php:732 ../../index.php:915 +msgid "This is an automatically sent message for user " +msgstr "これは、次のユーザへの自動送信メッセージです: " + +#: ../../enterprise/meta/index.php:735 ../../index.php:918 +msgid "Please click the link below to reset your password" +msgstr "パスワードをリセットするには、以下のリンクをクリックしてください" + +#: ../../enterprise/meta/index.php:737 ../../index.php:920 +msgid "Reset your password" +msgstr "パスワードリセット" + +#: ../../enterprise/meta/index.php:741 ../../index.php:924 +msgid "Please do not reply to this email." +msgstr "このメールには返信しないでください。" + +#: ../../enterprise/meta/index.php:747 ../../index.php:929 +msgid "Error at sending the email" +msgstr "メール送信エラー" + +#: ../../enterprise/meta/index.php:900 +#, php-format +msgid "System is not centralised, please go to %s to perform a database merge process." +msgstr "" +"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行ってくださ" +"い。" + +#: ../../enterprise/meta/index.php:968 +#, php-format +msgid "There are nodes with different MR than this (%d):" +msgstr "こちら(%d)とは異なる MR を持つノードがあります: " + +#: ../../enterprise/meta/index.php:977 ../../index.php:1219 +msgid "Please keep all environment updated to same version." +msgstr "環境全体を同じバージョンにアップデートしてください。" + +#: ../../enterprise/meta/index.php:1046 ../../enterprise/meta/index.php:1133 +#: ../../index.php:1322 +msgid "Sorry! I can't find the page!" +msgstr "ページが見つかりません" + +#: ../../enterprise/meta/agentsearch.php:121 +msgid "Search results for" +msgstr "検索結果:" + +#: ../../enterprise/meta/agentsearch.php:122 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "エージェントが見つかりました" + +#: ../../enterprise/meta/agentsearch.php:142 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:399 +#: ../../enterprise/operation/agentes/tag_view.php:609 +#: ../../enterprise/operation/agentes/ver_agente.php:77 +#: ../../extensions/users_connected.php:146 ../../godmode/users/user_list.php:481 +#: ../../godmode/agentes/planned_downtime.editor.php:1221 +#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 +#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 +#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:984 +#: ../../include/functions_treeview.php:668 ../../include/functions_events.php:4120 +#: ../../operation/search_users.php:46 ../../operation/search_agents.php:58 +#: ../../operation/agentes/log_sources_status.php:58 +#: ../../operation/agentes/estado_agente.php:769 +#: ../../operation/agentes/ver_agente.php:1028 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "最近の接続" + +#: ../../enterprise/meta/agentsearch.php:301 +msgid "There are no agents included in this group" +msgstr "このグループに属しているエージェントが存在しません" + +#: ../../enterprise/meta/agentsearch.php:315 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 ../../operation/tree.php:420 +msgid "Policies found" +msgstr "ポリシーが見つかりました" + +#: ../../enterprise/meta/agentsearch.php:409 +#: ../../enterprise/godmode/policies/policies.php:475 +#: ../../operation/search_policies.php:50 +msgid "Policy updated" +msgstr "ポリシーを更新しました" + +#: ../../enterprise/meta/agentsearch.php:417 +#: ../../enterprise/godmode/policies/policies.php:483 +#: ../../operation/search_policies.php:58 +msgid "Pending update policy only database" +msgstr "データベースのみポリシー更新待ち" + +#: ../../enterprise/meta/agentsearch.php:425 +#: ../../enterprise/godmode/policies/policies.php:491 +#: ../../operation/search_policies.php:66 +msgid "Pending update policy" +msgstr "ポリシー更新待ち" + +#: ../../enterprise/meta/agentsearch.php:450 +msgid "There are no policies included in this group" +msgstr "このグループに含まれるポリシーがありません" + +#: ../../enterprise/meta/general/footer.php:45 ../../general/footer.php:51 +#, php-format +msgid "%s %s - %s - MR %s" +msgstr "%s %s - %s - MR %s" + +#: ../../enterprise/meta/general/footer.php:50 +msgid "Page generated at" +msgstr "ページ更新日時:" -#: ../../general/noaccess.php:130 ../../general/noaccess2.php:16 -#: ../../general/noaccess2.php:18 ../../general/noaccesssaml.php:130 #: ../../enterprise/meta/general/metaconsole_no_activated.php:12 -#: ../../enterprise/meta/general/noaccess.php:130 #: ../../enterprise/meta/general/noaccesssaml.php:130 -#: ../../mobile/operation/agent.php:117 ../../mobile/operation/modules.php:218 -#: ../../mobile/operation/visualmaps.php:159 ../../mobile/operation/visualmap.php:185 -#: ../../mobile/operation/tactical.php:79 ../../mobile/operation/alerts.php:176 -#: ../../mobile/operation/events.php:468 ../../mobile/operation/module_graph.php:255 -#: ../../mobile/operation/agents.php:186 ../../mobile/operation/groups.php:59 -#: ../../mobile/index.php:258 +#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266 +#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 +#: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 +#: ../../mobile/operation/visualmaps.php:159 ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 +#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 +#: ../../general/noaccess2.php:18 msgid "You don't have access to this page" msgstr "このページにはアクセスできません。" -#: ../../general/noaccess.php:135 ../../enterprise/meta/general/noaccess.php:135 +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../general/noaccess2.php:28 +msgid "No access" +msgstr "アクセス不可" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 +msgid "" +"Metaconsole needs previous activation from regular console, please contact system " +"administrator if you need assistance.
    " +msgstr "" +"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必要であ" +"ればシステム管理者へ問い合わせてください。
    " + +#: ../../enterprise/meta/general/header.php:69 +#: ../../enterprise/meta/general/header.php:75 +#: ../../enterprise/meta/general/main_header.php:518 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:48 +#: ../../general/header.php:54 +msgid "All systems" +msgstr "全モニタシステム" + +#: ../../enterprise/meta/general/header.php:69 +#: ../../enterprise/meta/general/main_header.php:518 ../../general/header.php:48 +msgid "Down" +msgstr "停止" + +#: ../../enterprise/meta/general/header.php:72 +#: ../../enterprise/meta/general/main_header.php:521 ../../general/header.php:51 +msgid "servers down" +msgstr "停止中" + +#: ../../enterprise/meta/general/header.php:75 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:54 +msgid "Ready" +msgstr "稼働中" + +#: ../../enterprise/meta/general/header.php:114 +#: ../../enterprise/meta/general/main_header.php:552 ../../general/header.php:235 +msgid "Configure autorefresh" +msgstr "自動更新設定" + +#: ../../enterprise/meta/general/header.php:141 +#: ../../enterprise/meta/general/header.php:153 +#: ../../enterprise/meta/general/main_header.php:569 +#: ../../enterprise/meta/general/main_header.php:581 ../../general/header.php:301 +#: ../../general/header.php:320 +msgid "Disabled autorefresh" +msgstr "自動更新の無効化" + +#: ../../enterprise/meta/general/header.php:238 +#: ../../enterprise/meta/general/header.php:240 +#: ../../enterprise/meta/general/main_header.php:535 +#: ../../mobile/include/functions_web.php:34 ../../mobile/include/ui.class.php:225 +#: ../../mobile/include/user.class.php:463 ../../mobile/operation/home.php:148 +#: ../../general/header.php:432 ../../general/header.php:434 +msgid "Logout" +msgstr "ログアウト" + +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../enterprise/meta/general/main_menu.php:196 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:69 +#: ../../godmode/groups/group_list.php:344 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 ../../operation/tree.php:138 +#: ../../operation/menu.php:53 +msgid "Tree view" +msgstr "ツリー表示" + +#: ../../enterprise/meta/general/main_header.php:109 +#: ../../enterprise/meta/general/main_menu.php:208 +msgid "Groups view" +msgstr "グループビュー" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../enterprise/meta/general/main_menu.php:214 +#: ../../operation/agentes/alerts_status.php:208 +msgid "Alerts view" +msgstr "アラート表示" + +#: ../../enterprise/meta/general/main_header.php:121 +#: ../../enterprise/meta/general/main_menu.php:220 +msgid "Monitors view" +msgstr "モニタ表示" + +#: ../../enterprise/meta/general/main_header.php:127 +#: ../../enterprise/meta/general/main_menu.php:226 +msgid "Custom fields view" +msgstr "カスタムフィールド表示" + +#: ../../enterprise/meta/general/main_header.php:167 +#: ../../enterprise/meta/general/main_header.php:183 +#: ../../enterprise/meta/general/main_menu.php:279 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../include/functions_reporting.php:15359 ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:132 +msgid "Reports" +msgstr "レポート" + +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/meta/general/main_menu.php:286 +msgid "Create new report" +msgstr "新規レポート作成" + +#: ../../enterprise/meta/general/main_header.php:190 +#: ../../enterprise/meta/general/main_menu.php:296 +msgid "Report templates" +msgstr "レポートテンプレート" + +#: ../../enterprise/meta/general/main_header.php:200 +#: ../../enterprise/meta/general/main_menu.php:306 +#: ../../enterprise/include/functions_reporting.php:124 +#: ../../include/functions_menu.php:509 +msgid "Templates wizard" +msgstr "テンプレートウィザード" + +#: ../../enterprise/meta/general/main_header.php:210 +#: ../../enterprise/meta/general/main_menu.php:339 ../../enterprise/godmode/menu.php:125 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.service.php:510 +#: ../../enterprise/godmode/services/services.service.php:530 +#: ../../enterprise/godmode/services/services.elements.php:821 +#: ../../enterprise/godmode/services/services.elements.php:841 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +#: ../../enterprise/include/functions_groups.php:65 +#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/services/services.service.php:83 +#: ../../enterprise/operation/services/massive/services.delete.php:42 +#: ../../enterprise/operation/services/massive/services.delete.php:59 +#: ../../enterprise/operation/services/massive/services.create.php:595 +#: ../../enterprise/operation/services/massive/services.create.php:612 +#: ../../enterprise/operation/services/massive/services.create.php:990 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:105 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:122 +#: ../../enterprise/operation/services/massive/service.create.elements.php:243 +#: ../../enterprise/operation/services/massive/service.create.elements.php:260 +#: ../../enterprise/operation/services/massive/service.create.elements.php:385 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:146 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:163 +#: ../../enterprise/operation/services/services.service_map.php:97 +#: ../../enterprise/operation/services/services.service_map.php:144 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.treeview_services.php:82 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../enterprise/operation/services/services.list.php:75 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/operation/services/services.table_services.php:58 +#: ../../operation/agentes/ver_agente.php:1654 +#: ../../general/first_task/service_list.php:23 +msgid "Services" +msgstr "サービス" + +#: ../../enterprise/meta/general/main_header.php:240 +#: ../../enterprise/meta/general/main_menu.php:356 +#: ../../enterprise/include/functions_enterprise.php:456 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "ビジュアルコンソール" + +#: ../../enterprise/meta/general/main_header.php:247 +#: ../../enterprise/meta/general/main_menu.php:363 +#: ../../godmode/reporting/visual_console_favorite.php:118 +msgid "Favourite Visual Console" +msgstr "お気に入りのビジュアルコンソール" + +#: ../../enterprise/meta/general/main_header.php:255 +#: ../../enterprise/meta/general/main_menu.php:371 +msgid "Template Visual Console" +msgstr "ビジュアルコンソールテンプレート" + +#: ../../enterprise/meta/general/main_header.php:262 +#: ../../enterprise/meta/general/main_menu.php:378 +msgid "Wizard Visual Console" +msgstr "ビジュアルコンソールウィザード" + +#: ../../enterprise/meta/general/main_header.php:275 +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../enterprise/meta/general/main_menu.php:393 +#: ../../enterprise/include/functions_enterprise.php:452 ../../godmode/menu.php:358 +#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271 +#: ../../include/functions_reports.php:913 ../../include/functions_reports.php:917 +#: ../../include/functions_reports.php:921 ../../include/functions_reports.php:925 +msgid "Netflow" +msgstr "Netflow" + +#: ../../enterprise/meta/general/main_header.php:281 +#: ../../enterprise/meta/general/main_menu.php:401 +msgid "Live view" +msgstr "ライブビュー" + +#: ../../enterprise/meta/general/main_header.php:315 +#: ../../enterprise/meta/general/main_header.php:417 +#: ../../enterprise/meta/general/main_menu.php:447 +#: ../../enterprise/meta/general/main_menu.php:568 +msgid "Agent management" +msgstr "エージェント管理" + +#: ../../enterprise/meta/general/main_header.php:327 +#: ../../enterprise/meta/general/main_header.php:423 +#: ../../enterprise/meta/general/main_menu.php:453 +#: ../../enterprise/meta/general/main_menu.php:574 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 +#: ../../enterprise/godmode/modules/local_components.php:157 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:290 +#: ../../godmode/modules/module_list.php:29 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "モジュール管理" + +#: ../../enterprise/meta/general/main_header.php:333 +#: ../../enterprise/meta/general/main_header.php:439 +#: ../../enterprise/meta/general/main_menu.php:459 +#: ../../enterprise/meta/general/main_menu.php:597 +msgid "Alert management" +msgstr "アラート管理" + +#: ../../enterprise/meta/general/main_header.php:339 +#: ../../enterprise/meta/general/main_menu.php:465 +msgid "Component management" +msgstr "コンポーネント管理" + +#: ../../enterprise/meta/general/main_header.php:345 +#: ../../enterprise/meta/general/main_menu.php:477 +#: ../../enterprise/meta/general/main_menu.php:588 +msgid "Policy management" +msgstr "ポリシー管理" + +#: ../../enterprise/meta/general/main_header.php:351 +#: ../../enterprise/meta/general/main_menu.php:483 +msgid "Category management" +msgstr "カテゴリ管理" + +#: ../../enterprise/meta/general/main_header.php:357 +#: ../../enterprise/meta/general/main_header.php:430 +#: ../../enterprise/meta/general/main_menu.php:489 +#: ../../enterprise/meta/general/main_menu.php:581 +msgid "Server management" +msgstr "サーバ管理" + +#: ../../enterprise/meta/general/main_header.php:363 +#: ../../enterprise/meta/general/main_menu.php:509 +msgid "Command Center" +msgstr "コマンドセンター" + +#: ../../enterprise/meta/general/main_header.php:369 +#: ../../enterprise/meta/general/main_menu.php:618 ../../godmode/menu.php:385 +msgid "License" +msgstr "ライセンス" + +#: ../../enterprise/meta/general/main_header.php:375 +#: ../../enterprise/meta/general/main_menu.php:624 +#: ../../enterprise/meta/general/main_menu.php:650 +msgid "Metasetup" +msgstr "メタセットアップ" + +#: ../../enterprise/meta/general/main_header.php:381 +#: ../../enterprise/meta/general/main_header.php:448 +#: ../../enterprise/meta/general/main_menu.php:630 +#: ../../enterprise/meta/general/main_menu.php:656 +#: ../../enterprise/meta/general/main_menu.php:677 ../../godmode/menu.php:407 +#: ../../godmode/menu.php:525 ../../general/links_menu.php:17 +msgid "Links" +msgstr "リンク" + +#: ../../enterprise/meta/general/main_header.php:458 +#: ../../enterprise/meta/general/main_menu.php:687 ../../godmode/extensions.php:28 +msgid "Extensions" +msgstr "拡張" + +#: ../../enterprise/meta/general/main_header.php:492 +msgid "Audit Logs" +msgstr "監査ログ" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/graph_template_list.php:128 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 +#: ../../enterprise/godmode/reporting/mysql_builder.php:75 +#: ../../enterprise/godmode/reporting/mysql_builder.php:202 +#: ../../enterprise/operation/agentes/transactional_map.php:70 +#: ../../enterprise/operation/agentes/manage_transmap.php:172 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 +#: ../../godmode/reporting/graph_builder.php:366 +#: ../../godmode/reporting/graph_container.php:118 +#: ../../godmode/reporting/graphs.php:129 +#: ../../godmode/reporting/reporting_builder.php:572 +#: ../../godmode/reporting/reporting_builder.php:579 +#: ../../godmode/reporting/reporting_builder.php:592 +#: ../../godmode/reporting/reporting_builder.php:3531 +#: ../../godmode/reporting/reporting_builder.php:3538 +#: ../../godmode/reporting/reporting_builder.php:3551 +#: ../../godmode/reporting/reporting_builder.php:3642 +#: ../../godmode/reporting/reporting_builder.php:3649 +#: ../../godmode/reporting/reporting_builder.php:3665 +#: ../../godmode/reporting/reporting_builder.php:3694 ../../operation/menu.php:312 +#: ../../operation/reporting/reporting_viewer.php:211 +#: ../../operation/reporting/reporting_viewer.php:216 +#: ../../operation/reporting/reporting_viewer.php:229 +#: ../../operation/reporting/custom_reporting.php:23 +#: ../../operation/reporting/graph_viewer.php:267 +#: ../../operation/reporting/graph_viewer.php:513 +msgid "Reporting" +msgstr "レポート" + +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/meta/general/main_menu.php:611 +#: ../../enterprise/meta/general/main_menu.php:643 +#: ../../enterprise/meta/general/main_menu.php:668 +#: ../../enterprise/godmode/policies/configure_policy.php:39 +#: ../../enterprise/godmode/servers/HA_cluster.php:70 +#: ../../enterprise/include/functions_policies.php:3715 +#: ../../godmode/update_manager/update_manager.php:57 +#: ../../godmode/update_manager/update_manager.php:87 +#: ../../godmode/agentes/configurar_agente.php:394 +#: ../../godmode/agentes/configurar_agente.php:699 ../../godmode/menu.php:325 +#: ../../godmode/menu.php:332 ../../godmode/module_library/module_library_view.php:48 +#: ../../operation/agentes/estado_agente.php:201 +#: ../../operation/gis_maps/render_view.php:173 +msgid "Setup" +msgstr "セットアップ" + +#: ../../enterprise/meta/general/noaccesssaml.php:135 ../../general/noaccesssaml.php:135 +msgid "" +"Access to this page is restricted to authorized users SAML only, please contact " +"system administrator if you need assistance." +msgstr "" +"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必要な" +"場合はシステム管理者に連絡してください。" + +#: ../../enterprise/meta/general/noaccesssaml.php:137 ../../general/noaccesssaml.php:137 +#, php-format +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of %s System " +"Database" +msgstr "" +"SAML 認証が適切に構成されていることを確認してください。 詳細については、このページへの" +"アクセスエラーが %s システムデータベースのセキュリティログに記録されています。" + +#: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152 msgid "" "Access to this page is restricted to authorized users only, please contact system " "administrator if you need assistance." @@ -2445,7 +12613,7 @@ msgstr "" "このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合は" "システム管理者に連絡してください。" -#: ../../general/noaccess.php:137 ../../enterprise/meta/general/noaccess.php:137 +#: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154 #, php-format msgid "" "Please know that all attempts to access this page are recorded in security logs of %s " @@ -2454,150 +12622,38077 @@ msgstr "" "このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに記録さ" "れます。" -#: ../../general/login_help_dialog.php:39 +#: ../../enterprise/meta/general/main_menu.php:237 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 +#: ../../enterprise/godmode/policies/policies.php:543 +#: ../../enterprise/include/functions_reporting_csv.php:800 +#: ../../enterprise/operation/agentes/ver_agente.php:192 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 +#: ../../enterprise/operation/menu.php:19 +#: ../../enterprise/operation/inventory/inventory.php:137 +#: ../../godmode/agentes/configurar_agente.php:715 +#: ../../godmode/setup/setup_integria.php:314 ../../include/functions_reports.php:878 +#: ../../include/functions_reports.php:885 ../../include/functions_reports.php:892 +#: ../../include/functions_reports.php:893 ../../include/functions_reports.php:897 +#: ../../include/functions_reporting.php:2889 +msgid "Inventory" +msgstr "インベントリ" + +#: ../../enterprise/meta/general/main_menu.php:328 +#: ../../operation/messages/message_list.php:90 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:515 +msgid "Messages" +msgstr "メッセージ" + +#: ../../enterprise/meta/general/main_menu.php:419 ../../enterprise/godmode/menu.php:245 +msgid "Alert correlation" +msgstr "アラート相関" + +#: ../../enterprise/meta/general/main_menu.php:440 +#: ../../enterprise/meta/general/main_menu.php:522 +#: ../../enterprise/meta/general/main_menu.php:542 +msgid "Centralised management" +msgstr "中央管理" + +#: ../../enterprise/meta/general/main_menu.php:495 ../../godmode/menu.php:198 +#: ../../godmode/massive/massive_operations.php:307 +msgid "Bulk operations" +msgstr "一括操作" + +#: ../../enterprise/meta/general/main_menu.php:501 +msgid "Agent operations" +msgstr "エージェント操作" + +#: ../../enterprise/meta/general/main_menu.php:739 ../../godmode/menu.php:405 +msgid "System audit log" +msgstr "システム監査ログ" + +#: ../../enterprise/meta/general/login_page.php:109 ../../general/login_page.php:307 +msgid "Authentication code" +msgstr "認証コード" + +#: ../../enterprise/meta/general/login_page.php:112 +#: ../../mobile/include/user.class.php:496 ../../general/login_page.php:310 +msgid "Check code" +msgstr "コードの確認" + +#: ../../enterprise/meta/general/login_page.php:146 +#: ../../enterprise/meta/general/login_page.php:187 +#: ../../mobile/include/user.class.php:407 ../../general/login_page.php:291 +msgid "Login" +msgstr "ログイン" + +#: ../../enterprise/meta/general/login_page.php:154 +#: ../../mobile/include/user.class.php:427 ../../general/login_page.php:259 +msgid "Login with SAML" +msgstr "SAML でログイン" + +#: ../../enterprise/meta/general/login_page.php:195 ../../general/login_page.php:334 +#: ../../general/login_page.php:337 +msgid "Forgot your password?" +msgstr "パスワードを忘れましたか?" + +#: ../../enterprise/meta/general/login_page.php:209 +#: ../../include/functions_config.php:2466 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + +#: ../../enterprise/meta/general/login_page.php:235 +#: ../../enterprise/meta/general/login_page.php:238 +#: ../../enterprise/meta/general/login_page.php:252 +#: ../../enterprise/meta/general/login_page.php:255 +#: ../../enterprise/meta/general/login_page.php:272 +#: ../../enterprise/meta/general/login_page.php:275 ../../general/login_page.php:340 +#: ../../general/login_page.php:343 ../../general/login_page.php:428 +#: ../../general/login_page.php:431 ../../general/login_page.php:445 +#: ../../general/login_page.php:448 ../../general/login_page.php:465 +#: ../../general/login_page.php:468 +msgid "Password reset" +msgstr "パスワードのリセット" + +#: ../../enterprise/meta/general/login_page.php:242 ../../general/login_page.php:435 +msgid "INFO" +msgstr "情報" + +#: ../../enterprise/meta/general/login_page.php:243 ../../general/login_page.php:436 +msgid "An email has been sent to your email address" +msgstr "あなたのアドレス宛にメールを送信しました" + +#: ../../enterprise/meta/general/login_page.php:279 ../../general/login_page.php:472 +msgid "SUCCESS" +msgstr "成功" + +#: ../../enterprise/meta/general/login_page.php:294 +#: ../../enterprise/meta/general/login_page.php:297 +#: ../../enterprise/include/functions_login.php:141 ../../general/login_page.php:487 +#: ../../general/login_page.php:490 ../../general/login_page.php:644 +#: ../../general/login_page.php:647 +msgid "Login failed" +msgstr "ログインに失敗しました" + +#: ../../enterprise/meta/general/login_page.php:319 +#: ../../enterprise/meta/general/login_page.php:322 +#: ../../enterprise/meta/general/login_page.php:326 ../../general/login_page.php:512 +#: ../../general/login_page.php:515 ../../general/login_page.php:519 +msgid "Logged out" +msgstr "ログアウトしました。" + +#: ../../enterprise/meta/general/login_page.php:327 +#: ../../mobile/include/user.class.php:365 ../../general/login_page.php:521 +#, php-format +msgid "" +"Your session has ended. Please close your browser window to close this %s session." +msgstr "" +"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉じて" +"ください。" + +#: ../../enterprise/load_enterprise.php:564 ../../godmode/setup/license.php:83 +msgid "License updated" +msgstr "ライセンスを更新しました" + +#: ../../enterprise/load_enterprise.php:565 +msgid "Failed while updating license." +msgstr "ライセンス更新に失敗しました。" + +#: ../../enterprise/load_enterprise.php:590 ../../enterprise/load_enterprise.php:655 +msgid "Invalid licence." +msgstr "不正なライセンス。" + +#: ../../enterprise/load_enterprise.php:590 +msgid "Please contact your system administrator." +msgstr "システム管理者に連絡してください。" + +#: ../../enterprise/load_enterprise.php:655 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "正しいライセンス取得は %s に連絡してください。" + +#: ../../enterprise/load_enterprise.php:656 +#, php-format +msgid "Or disable %s enterprise" +msgstr "または、%s enterprise を無効化します" + +#: ../../enterprise/load_enterprise.php:754 +#: ../../enterprise/godmode/reporting/aws_view.php:181 +#: ../../enterprise/godmode/wizards/Cloud.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3174 +#: ../../godmode/setup/license.php:165 ../../mobile/operation/events.php:858 +#: ../../include/ajax/alert_list.ajax.php:280 ../../include/ajax/alert_list.ajax.php:306 +#: ../../operation/agentes/alerts_status.php:429 +#: ../../operation/snmpconsole/snmp_view.php:1027 +#: ../../operation/snmpconsole/snmp_view.php:1217 +#: ../../operation/snmpconsole/snmp_view.php:1267 +msgid "Validate" +msgstr "承諾する" + +#: ../../enterprise/load_enterprise.php:758 ../../enterprise/load_enterprise.php:1053 +msgid "Request new licence" +msgstr "新規ライセンスの要求" + +#: ../../enterprise/load_enterprise.php:837 +msgid "" +"Metaconsole unreached

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

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

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

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

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

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

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

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

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

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

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

    こ" +"の %s インストールは引き続き制限なく動作しますが、サポートや更新はありません。" + +#: ../../enterprise/extensions/disabled/check_acls.php:16 +msgid "ACL users for this agent" +msgstr "このエージェントのACLユーザ" + +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:136 +msgid "Agents reading" +msgstr "エージェントからの情報取得" + +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +msgid "Agents disable" +msgstr "エージェント無効化" + +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +msgid "Alerts editing" +msgstr "アラート編集" + +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:140 ../../godmode/menu.php:150 +msgid "Users management" +msgstr "ユーザ管理" + +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:141 +msgid "Database management" +msgstr "データベース管理" + +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:142 +msgid "Alerts management" +msgstr "アラート管理" + +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:143 +msgid "Reports reading" +msgstr "レポート参照" + +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:144 +msgid "Reports writing" +msgstr "レポート編集" + +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:145 +msgid "Reports management" +msgstr "レポート管理" + +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +msgid "Events reading" +msgstr "イベント参照" + +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:147 +msgid "Events writing" +msgstr "イベント編集" + +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:148 +msgid "Events management" +msgstr "イベント管理" + +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +msgid "Systems management" +msgstr "システム管理" + +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:150 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 +#: ../../enterprise/godmode/servers/HA_cluster.php:177 +#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 +#: ../../operation/search_users.php:62 +msgid "Admin" +msgstr "管理者" + +#: ../../enterprise/extensions/disabled/check_acls.php:112 +msgid "There are no defined users" +msgstr "定義済ユーザがありません" + +#: ../../enterprise/extensions/disabled/check_acls.php:134 ../../godmode/menu.php:142 +msgid "Module tags" +msgstr "モジュールタグ" + +#: ../../enterprise/extensions/disabled/check_acls.php:197 +msgid "ACL module tags for the modules in this agent" +msgstr "このエージェントのモジュールのACLモジュールタグ" + +#: ../../enterprise/extensions/disabled/check_acls.php:208 +msgid "Only admin users can see this section." +msgstr "この画面はadminユーザのみ参照できます。" + +#: ../../enterprise/extensions/disabled/check_acls.php:215 +msgid "Check ACL" +msgstr "ACLチェック" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "翻訳文字列" + +#: ../../enterprise/extensions/vmware.php:46 +msgid "Failed to initialize VMware extension." +msgstr "VMWare 拡張の初期化に失敗しました。" + +#: ../../enterprise/extensions/vmware.php:89 +msgid "VMware View" +msgstr "VMware 表示" + +#: ../../enterprise/extensions/csv_import_group/main.php:23 +#: ../../enterprise/extensions/csv_import_group.php:69 +msgid "CSV import group" +msgstr "CSV インポートグループ" + +#: ../../enterprise/extensions/csv_import_group/main.php:48 +#, php-format +msgid "Created group %s" +msgstr "グループを %s 作成しました" + +#: ../../enterprise/extensions/csv_import_group/main.php:49 +#, php-format +msgid "Could not create group %s" +msgstr "グループ %s を作成できませんでした" + +#: ../../enterprise/extensions/csv_import_group/main.php:56 +msgid "File processed" +msgstr "ファイルを処理しました" + +#: ../../enterprise/extensions/csv_import_group/main.php:59 +msgid "Please syncronize groups to nodes" +msgstr "グループをノードに同期してください" + +#: ../../enterprise/extensions/csv_import_group/main.php:68 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 +#: ../../enterprise/tools/ipam/ipam_list.php:459 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 +msgid "The CSV file must have the fields in the following order: " +msgstr "CSV ファイルは、次の順番のフィールドを持つ必要があります: " + +#: ../../enterprise/extensions/csv_import_group/main.php:84 +#: ../../enterprise/include/class/CSVImportAgents.class.php:146 +#: ../../enterprise/tools/ipam/ipam_network.php:116 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 +#: ../../enterprise/tools/ipam/ipam_list.php:50 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 +msgid "Upload file" +msgstr "ファイルのアップロード" + +#: ../../enterprise/extensions/csv_import_group/main.php:87 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 +#: ../../enterprise/include/class/CSVImportAgents.class.php:163 +#: ../../enterprise/tools/ipam/ipam_network.php:125 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 +#: ../../enterprise/tools/ipam/ipam_list.php:59 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 +msgid "Separator" +msgstr "セパレータ" + +#: ../../enterprise/extensions/csv_import_group/main.php:100 +#: ../../enterprise/tools/ipam/ipam_network.php:138 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 +#: ../../enterprise/tools/ipam/ipam_list.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 +msgid "Upload CSV file" +msgstr "CSV ファイルのアップロード" + +#: ../../enterprise/extensions/csv_import_group/main.php:105 +#: ../../enterprise/include/class/CSVImportAgents.class.php:198 +#: ../../include/functions_filemanager.php:853 +msgid "Go" +msgstr "実行" + +#: ../../enterprise/extensions/resource_registration/functions.php:61 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." +msgstr "'%s' ポリシー作成エラー。すでに存在する名前です。" + +#: ../../enterprise/extensions/resource_registration/functions.php:69 +#, 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:78 +msgid "Error the policy haven't name." +msgstr "ポリシーに名前がありません。" + +#: ../../enterprise/extensions/resource_registration/functions.php:99 +#, php-format +msgid "Success create '%s' policy." +msgstr "'%s' ポリシーを作成しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:100 +#, php-format +msgid "Error create '%s' policy." +msgstr "'%s' ポリシー作成エラー" + +#: ../../enterprise/extensions/resource_registration/functions.php:142 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "'%s' エージェント追加エラー。エージェントが存在しません" + +#: ../../enterprise/extensions/resource_registration/functions.php:147 +#, php-format +msgid "Success add '%s' agent." +msgstr "'%s' エージェントを追加しました" + +#: ../../enterprise/extensions/resource_registration/functions.php:148 +#, php-format +msgid "Error add '%s' agent." +msgstr "'%s' エージェント追加エラー" + +#: ../../enterprise/extensions/resource_registration/functions.php:167 +msgid "The collection does not exist" +msgstr "コレクションが存在しません" + +#: ../../enterprise/extensions/resource_registration/functions.php:172 +#, php-format +msgid "Success add '%s' collection." +msgstr "'%s' コレクションを追加しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:173 +#, php-format +msgid "Error add '%s' collection." +msgstr "'%s' コレクション追加エラー" + +#: ../../enterprise/extensions/resource_registration/functions.php:191 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "エージェントプラグイン '%s' を追加しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:192 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "エージェントプラグイン '%s' の追加エラー。" + +#: ../../enterprise/extensions/resource_registration/functions.php:205 +msgid "Error add the module, haven't type." +msgstr "モジュール追加エラー。タイプがありません。" + +#: ../../enterprise/extensions/resource_registration/functions.php:411 +#: ../../enterprise/extensions/resource_registration/functions.php:480 +#: ../../enterprise/extensions/resource_registration/functions.php:581 +#: ../../enterprise/extensions/resource_registration/functions.php:637 +msgid "Error add the module, error in tag component." +msgstr "モジュール追加エラー。タグコンポーネント内にエラーがあります。" + +#: ../../enterprise/extensions/resource_registration/functions.php:693 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "モジュールプラグイン追加エラー。プラグインは登録されていません。" + +#: ../../enterprise/extensions/resource_registration/functions.php:703 +#, php-format +msgid "Success add '%s' module." +msgstr "'%s' モジュールを追加しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:704 +#, php-format +msgid "Error add '%s' module." +msgstr "'%s' モジュール追加エラー" + +#: ../../enterprise/extensions/resource_registration/functions.php:718 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "アラート追加エラー。テンプレート '%s' は存在しません。" + +#: ../../enterprise/extensions/resource_registration/functions.php:731 +#: ../../enterprise/extensions/resource_registration/functions.php:749 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "アラート追加エラー。モジュール '%s' は存在しません。" + +#: ../../enterprise/extensions/resource_registration/functions.php:771 +#, php-format +msgid "Success add '%s' alert." +msgstr "'%s' アラートを追加しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:772 +#, php-format +msgid "Error add '%s' alert." +msgstr "'%s' アラート追加エラー" + +#: ../../enterprise/extensions/resource_registration/functions.php:798 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "アラートの追加エラー。アクション '%s' は存在しません。" + +#: ../../enterprise/extensions/resource_registration/functions.php:817 +#, php-format +msgid "Success add '%s' action." +msgstr "'%s' アクションを追加しました" + +#: ../../enterprise/extensions/resource_registration/functions.php:818 +#: ../../extensions/resource_registration.php:436 +#: ../../extensions/resource_registration.php:458 +#: ../../extensions/resource_registration.php:469 +#, php-format +msgid "Error add '%s' action." +msgstr "アクション '%s' の追加に失敗しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:854 +msgid "The inventory module does not exist" +msgstr "インベントリモジュールが存在しません" + +#: ../../enterprise/extensions/resource_registration/functions.php:859 +#, php-format +msgid "Success add '%s' inventory module." +msgstr "'%s' インベントリモジュールを追加しました。" + +#: ../../enterprise/extensions/resource_registration/functions.php:860 +#, php-format +msgid "Error add '%s' inventory module." +msgstr "'%s' インベントリモジュール追加エラー。" + +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "CPU利用率上位 5位内のVM" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "メモリ使用率上位 5位内のVM" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "プロビジョニング使用量の上位 5つの VM" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "ネットワーク使用率上位 5位内のVM" + +#: ../../enterprise/extensions/vmware/vmware_view.php:684 +msgid "Host ESX" +msgstr "ホスト ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1009 +#: ../../enterprise/include/functions_services.php:1972 +#: ../../enterprise/operation/agentes/policy_view.php:479 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/tag_view.php:942 +#: ../../enterprise/operation/agentes/tag_view.php:948 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 +#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 +#: ../../include/functions.php:1360 ../../include/functions.php:1399 +#: ../../include/functions_modules.php:2883 ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:4098 ../../include/functions_modules.php:4130 +#: ../../include/functions_ui.php:3828 ../../include/functions_ui.php:3894 +#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:572 +#: ../../include/functions_events.php:64 ../../include/functions_events.php:116 +#: ../../include/functions_events.php:179 +#: ../../operation/agentes/status_monitor.php:1579 +#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/pandora_networkmap.view.php:1772 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 +#: ../../operation/events/events.php:543 ../../operation/events/events.php:620 +#: ../../operation/events/events.php:646 +msgid "NORMAL" +msgstr "正常" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1014 +#: ../../enterprise/include/functions_services.php:1980 +#: ../../enterprise/operation/agentes/policy_view.php:473 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/tag_view.php:956 +#: ../../enterprise/operation/agentes/tag_view.php:962 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 +#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 +#: ../../include/functions.php:1348 ../../include/functions.php:1380 +#: ../../include/functions_modules.php:2877 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:4102 ../../include/functions_modules.php:4122 +#: ../../include/functions_ui.php:3834 ../../include/functions_ui.php:3904 +#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:556 +#: ../../include/functions_events.php:67 ../../include/functions_events.php:120 +#: ../../include/functions_events.php:164 +#: ../../operation/agentes/status_monitor.php:1593 +#: ../../operation/agentes/status_monitor.php:1601 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/pandora_networkmap.view.php:1766 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 +#: ../../operation/events/events.php:518 ../../operation/events/events.php:626 +#: ../../operation/events/events.php:651 +msgid "CRITICAL" +msgstr "障害" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1019 +#: ../../enterprise/include/functions_services.php:1988 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:476 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:970 +#: ../../enterprise/operation/agentes/tag_view.php:976 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 +#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 +#: ../../include/functions.php:1351 ../../include/functions.php:1387 +#: ../../include/functions_modules.php:2880 ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4106 ../../include/functions_modules.php:4138 +#: ../../include/functions_ui.php:3822 ../../include/functions_ui.php:3899 +#: ../../include/class/Tree.class.php:633 ../../include/class/NetworkMap.class.php:2805 +#: ../../include/lib/Module.php:560 ../../include/functions_events.php:78 +#: ../../include/functions_events.php:112 ../../include/functions_events.php:182 +#: ../../operation/agentes/status_monitor.php:1609 +#: ../../operation/agentes/status_monitor.php:1617 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1769 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 +#: ../../operation/events/events.php:548 ../../operation/events/events.php:614 +#: ../../operation/events/events.php:668 +msgid "WARNING" +msgstr "警告" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1024 +#: ../../enterprise/include/functions_services.php:2003 +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 +#: ../../include/functions.php:1364 ../../include/functions.php:1390 +#: ../../include/functions_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 ../../include/functions_modules.php:4110 +#: ../../include/functions_ui.php:3841 ../../include/functions_ui.php:3919 +#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:563 +#: ../../include/functions_events.php:81 ../../include/functions_events.php:125 +#: ../../include/functions_events.php:185 +#: ../../operation/agentes/status_monitor.php:1625 +#: ../../operation/agentes/status_monitor.php:1633 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 +#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 +#: ../../operation/events/events.php:554 ../../operation/events/events.php:633 +#: ../../operation/events/events.php:673 +msgid "UNKNOWN" +msgstr "不明" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1036 +msgid "CPU Usage" +msgstr "CPU 使用率" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1046 +msgid "Memory Usage" +msgstr "メモリ使用率" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1056 +msgid "Disk I/O Rate" +msgstr "ディスク I/O 速度" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1066 +msgid "Network Usage" +msgstr "ネットワーク使用率" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1169 +msgid "Settings updated " +msgstr "設定を更新しました " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1171 +msgid "No changes in settings " +msgstr "設定の変更がありません " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1179 +msgid "CPU usage graphs" +msgstr "CPU 利用量グラフ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1180 +#: ../../enterprise/extensions/vmware/vmware_view.php:1186 +#: ../../enterprise/extensions/vmware/vmware_view.php:1192 +#: ../../enterprise/extensions/vmware/vmware_view.php:1198 +msgid "Force minimum value" +msgstr "最小値を強制" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +msgid "Force maximum value" +msgstr "最大値を強制" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +msgid "Memory usage graphs" +msgstr "メモリ利用量グラフ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +msgid "Provisioning Usage graphs" +msgstr "プロビジョニング利用量グラフ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +msgid "Network usage graphs" +msgstr "ネットワーク利用量グラフ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1208 +msgid "Map items" +msgstr "マップアイテム" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1209 +msgid "Show datastores" +msgstr "データストア表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +msgid "Show ESXis" +msgstr "ESXi 表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1223 +msgid "Show VMs" +msgstr "VM 表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1230 +msgid "Font size (px)" +msgstr "フォントサイズ (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1232 +msgid "Node radius (px)" +msgstr "ノード半径 (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1234 +msgid "Node separation (rate)" +msgstr "ノード分離 (割合)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1239 +msgid "" +"Looking for VMware configuration? You can configure several tasks using Discovery " +"Applications." +msgstr "" +"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設定でき" +"ます。" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1240 +#: ../../enterprise/extensions/vmware/vmware_view.php:1520 +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "this link" +msgstr "このリンク" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1247 +msgid "Graph settings" +msgstr "グラフ設定" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1252 +msgid "Map settings" +msgstr "マップ設定" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1291 +#: ../../enterprise/extensions/vmware/vmware_view.php:1363 +msgid "Welcome" +msgstr "ようこそ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1301 +#: ../../enterprise/extensions/vmware/vmware_view.php:1343 +#: ../../include/lib/Dashboard/Widgets/network_map.php:358 +#: ../../operation/gis_maps/render_view.php:178 +msgid "Map" +msgstr "マップ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1311 +#: ../../enterprise/extensions/vmware/vmware_view.php:1348 +#: ../../godmode/users/configure_user.php:1147 ../../mobile/include/functions_web.php:22 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:366 ../../operation/menu.php:340 +msgid "Dashboard" +msgstr "ダッシュボード" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1322 +msgid "ESX Detail" +msgstr "ESX 詳細" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1353 +msgid "ESX details" +msgstr "ESX 詳細" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1358 +msgid "VMware view options" +msgstr "VMware 表示オプション" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1393 +msgid "VMWare" +msgstr "VMWare" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1498 +msgid "Some ESX Hosts are not up to date, please check VMware plugin configuration." +msgstr "" +"一部の ESX ホストは最新ではありません。VMware プラグインの設定を確認してください。" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1500 +msgid "VMware plugin is working." +msgstr "動作中 VMware プラグイン。" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1509 +msgid "View VMware map" +msgstr "VMware マップ表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1510 +msgid "View VMware dashboard" +msgstr "VMware ダッシュボード表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1511 +msgid "View ESX Host statistics from" +msgstr "次の ESX ホスト統計表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1518 +msgid "There are no VMware information detected in this environment." +msgstr "環境内で検出した VMware 情報がありません。" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1519 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "次で自動検出アプリケーションを用いて複数のタスクを設定できます: " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1731 +#: ../../enterprise/include/class/DeploymentCenter.class.php:482 +#: ../../enterprise/include/class/DeploymentCenter.class.php:490 +#: ../../enterprise/include/class/DeploymentCenter.class.php:498 +#: ../../enterprise/include/class/DeploymentCenter.class.php:657 +#: ../../enterprise/include/class/SAP.app.php:371 +msgid "here" +msgstr "こちら" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1728 +#, php-format +msgid "" +"This map is a quick representation of all your VMware entities detected. You can " +"create a custom VMware map by defining a network map based on your VMware discovery " +"task %s" +msgstr "" +"このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 VMware " +"検出タスク %s に基づいてネットワークマップを定義することにより、カスタム VMware マップ" +"を作成できます。" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1738 +msgid "Show Datastores" +msgstr "データストア表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1741 +msgid "Show ESX" +msgstr "ESX 表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1744 +msgid "Show VM" +msgstr "VM 表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1748 +#: ../../godmode/reporting/visual_console_builder.wizard.php:215 +msgid "Font" +msgstr "フォント" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1752 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +#: ../../operation/agentes/pandora_networkmap.view.php:106 +msgid "Node radius" +msgstr "ノード半径" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1756 +#: ../../operation/agentes/pandora_networkmap.editor.php:425 +#: ../../operation/agentes/pandora_networkmap.view.php:247 +msgid "Node separation" +msgstr "ノード分離" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1766 +msgid "View options" +msgstr "オプションの表示" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "電源状態: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:1805 +msgid "Status: " +msgstr "状態: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "状態の変更" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "エージェントエクスポート" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../enterprise/include/functions_reporting.php:8125 +#: ../../extensions/resource_exportation.php:435 +#: ../../extensions/resource_exportation.php:438 +#: ../../operation/agentes/exportdata.php:389 +msgid "Export" +msgstr "エクスポート" + +#: ../../enterprise/extensions/csv_import_group.php:50 +#, php-format +msgid "" +"This node is configured with centralized mode. All group information is read only. Go " +"to %s to import the CSV." +msgstr "" +"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専用で" +"す。CSV をインポートするには %s に移動します。" + +#: ../../enterprise/extensions/csv_import_group.php:83 +msgid "CSV group import" +msgstr "CSV グループインポート" + +#: ../../enterprise/load_html_extra.php:202 +msgid "Activate license" +msgstr "ライセンスの有効化" + +#: ../../enterprise/load_html_extra.php:203 +msgid "Your request key is:" +msgstr "リクエストキー:" + +#: ../../enterprise/load_html_extra.php:206 +#, php-format +msgid "" +"You can activate it manually here or " +"automatically filling the form below:" +msgstr "" +"ここから手動で有効化するか、以下のフォームから自" +"動入力できます:" + +#: ../../enterprise/load_html_extra.php:213 +msgid "Auth Key:" +msgstr "認証キー:" + +#: ../../enterprise/load_html_extra.php:221 ../../enterprise/load_html_extra.php:240 +msgid "Online validation" +msgstr "オンライン認証" + +#: ../../enterprise/load_html_extra.php:233 +msgid "ERROR:" +msgstr "エラー:" + +#: ../../enterprise/load_html_extra.php:233 +msgid "When connecting to licence server." +msgstr "ライセンスサーバへの接続時。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:141 +msgid "Update Local Component" +msgstr "ローカルコンポーネント更新" + +#: ../../enterprise/godmode/modules/configure_local_component.php:143 +msgid "Create Local Component" +msgstr "ローカルコンポーネント作成" + +#: ../../enterprise/godmode/modules/configure_local_component.php:162 +#: ../../godmode/modules/manage_network_components_form_common.php:50 +#: ../../godmode/alerts/configure_alert_template.php:1134 +msgid "Wizard level" +msgstr "ウィザードレベル" + +#: ../../enterprise/godmode/modules/configure_local_component.php:192 +msgid "Throw unknown events" +msgstr "不明イベントを発生させる" + +#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 +#: ../../godmode/modules/manage_network_components_form_common.php:146 +#: ../../godmode/massive/massive_edit_modules.php:552 +msgid "Dynamic Interval" +msgstr "動的間隔" + +#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../godmode/modules/manage_network_components_form_common.php:152 +#: ../../godmode/agentes/module_manager_editor_common.php:691 +msgid "Advanced options Dynamic Threshold" +msgstr "拡張オプション 動的閾値" + +#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +msgid "Dynamic Min. " +msgstr "動的最小値 " + +#: ../../enterprise/godmode/modules/configure_local_component.php:305 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../godmode/massive/massive_edit_modules.php:556 +msgid "Dynamic Max." +msgstr "動的最大値" + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/massive/massive_edit_modules.php:558 +msgid "Dynamic Two Tailed: " +msgstr "2つの動的しきい値 " + +#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 +#: ../../godmode/modules/manage_network_components_form_common.php:164 +#: ../../godmode/massive/massive_edit_modules.php:561 +#: ../../include/functions_treeview.php:96 ../../include/functions_alerts.php:679 +msgid "Warning status" +msgstr "警告状態" + +#: ../../enterprise/godmode/modules/configure_local_component.php:311 +#: ../../enterprise/godmode/modules/configure_local_component.php:354 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 +#: ../../godmode/modules/manage_network_components_form_common.php:165 +#: ../../godmode/modules/manage_network_components_form_common.php:206 +#: ../../godmode/modules/manage_network_components_form_wizard.php:387 +#: ../../godmode/modules/manage_network_components_form_wizard.php:415 +#: ../../godmode/massive/massive_edit_modules.php:565 +#: ../../godmode/massive/massive_edit_modules.php:656 +#: ../../godmode/massive/massive_edit_modules.php:885 +#: ../../godmode/alerts/configure_alert_template.php:850 +#: ../../include/functions_reporting_html.php:5402 +#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:676 +#: ../../include/lib/Dashboard/Widgets/top_n.php:282 +msgid "Min." +msgstr "最小" + +#: ../../enterprise/godmode/modules/configure_local_component.php:320 +#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 +#: ../../godmode/modules/manage_network_components_form_common.php:174 +#: ../../godmode/modules/manage_network_components_form_common.php:215 +#: ../../godmode/modules/manage_network_components_form_wizard.php:389 +#: ../../godmode/modules/manage_network_components_form_wizard.php:424 +#: ../../godmode/agentes/module_manager_editor_common.php:428 +#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../godmode/massive/massive_edit_modules.php:580 +#: ../../godmode/massive/massive_edit_modules.php:671 +#: ../../godmode/massive/massive_edit_modules.php:887 +#: ../../godmode/alerts/configure_alert_template.php:862 +#: ../../include/functions_reporting_html.php:5403 +#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:675 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Max." +msgstr "最大" + +#: ../../enterprise/godmode/modules/configure_local_component.php:329 +#: ../../enterprise/godmode/modules/configure_local_component.php:372 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/modules/manage_network_components_form_common.php:224 +#: ../../godmode/agentes/module_manager_editor_common.php:444 +#: ../../godmode/agentes/module_manager_editor_common.php:505 +#: ../../godmode/massive/massive_edit_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:686 +#: ../../include/functions_treeview.php:90 ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "文字列" + +#: ../../enterprise/godmode/modules/configure_local_component.php:343 +#: ../../enterprise/godmode/modules/configure_local_component.php:386 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/modules/manage_network_components_form_wizard.php:400 +#: ../../godmode/modules/manage_network_components_form_wizard.php:442 +#: ../../godmode/agentes/module_manager_editor_common.php:464 +#: ../../godmode/agentes/module_manager_editor_common.php:526 +#: ../../godmode/massive/massive_edit_modules.php:630 +#: ../../godmode/massive/massive_edit_modules.php:722 +msgid "Percentage" +msgstr "パーセント" + +#: ../../enterprise/godmode/modules/configure_local_component.php:353 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:205 +#: ../../godmode/massive/massive_edit_modules.php:652 +#: ../../include/functions_treeview.php:108 ../../include/functions_alerts.php:680 +msgid "Critical status" +msgstr "障害状態" + +#: ../../enterprise/godmode/modules/configure_local_component.php:391 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:276 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 +#: ../../godmode/modules/manage_network_components_form_common.php:243 +#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/massive/massive_edit_modules.php:930 +msgid "FF threshold" +msgstr "連続抑制回数" + +#: ../../enterprise/godmode/modules/configure_local_component.php:394 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:279 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 +#: ../../godmode/modules/manage_network_components_form_common.php:246 +#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/massive/massive_edit_modules.php:994 +msgid "Keep counters" +msgstr "カウンタの維持" + +#: ../../enterprise/godmode/modules/configure_local_component.php:402 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:296 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../godmode/modules/manage_network_components_form_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:799 +#: ../../godmode/massive/massive_edit_modules.php:938 +#: ../../godmode/massive/massive_edit_modules.php:953 +msgid "All state changing" +msgstr "全状態変化" + +#: ../../enterprise/godmode/modules/configure_local_component.php:417 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 +#: ../../godmode/modules/manage_network_components_form_common.php:276 +#: ../../godmode/agentes/module_manager_editor_common.php:821 +#: ../../godmode/massive/massive_edit_modules.php:937 +#: ../../godmode/massive/massive_edit_modules.php:963 +msgid "Each state changing" +msgstr "個別状態変化" + +#: ../../enterprise/godmode/modules/configure_local_component.php:418 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:319 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:822 +#: ../../godmode/massive/massive_edit_modules.php:964 +msgid "To normal" +msgstr "正常移行時" + +#: ../../enterprise/godmode/modules/configure_local_component.php:427 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:333 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:836 +#: ../../godmode/massive/massive_edit_modules.php:974 +msgid "To warning" +msgstr "警告移行時" + +#: ../../enterprise/godmode/modules/configure_local_component.php:436 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:347 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 +#: ../../godmode/modules/manage_network_components_form_common.php:295 +#: ../../godmode/agentes/module_manager_editor_common.php:850 +#: ../../godmode/massive/massive_edit_modules.php:984 +msgid "To critical" +msgstr "障害移行時" + +#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 +#: ../../enterprise/include/functions_reporting_csv.php:2221 +#: ../../godmode/modules/manage_network_components_form_common.php:305 +#: ../../godmode/agentes/module_manager_editor_common.php:532 +#: ../../godmode/massive/massive_edit_modules.php:1042 +#: ../../include/functions_reporting.php:4284 +msgid "Historical data" +msgstr "データの保存" + +#: ../../enterprise/godmode/modules/configure_local_component.php:450 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../godmode/agentes/module_manager_editor_common.php:880 +#: ../../godmode/massive/massive_edit_modules.php:1028 +msgid "FF timeout" +msgstr "連続抑制タイムアウト" + +#: ../../enterprise/godmode/modules/configure_local_component.php:458 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 +#: ../../godmode/massive/massive_edit_modules.php:1038 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " +"counter is reset. Set to 0 for no timeout." +msgstr "" +"連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリセットさ" +"れます。0に設定するとタイムアウトしません。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:459 +msgid "This value can be set only in the async modules." +msgstr "この値は非同期モジュールでのみ設定可能です。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../enterprise/include/functions_reporting_csv.php:1247 +#: ../../godmode/modules/manage_network_components_form_common.php:308 +#: ../../godmode/agentes/module_manager_editor_common.php:664 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 +#: ../../include/functions_reporting.php:6770 +msgid "Min. Value" +msgstr "最小値" + +#: ../../enterprise/godmode/modules/configure_local_component.php:461 +#: ../../godmode/modules/manage_network_components_form_common.php:309 +msgid "Any value below this number is discarted" +msgstr "この値よりも小さい値は削除されます。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/include/functions_reporting_csv.php:1302 +#: ../../godmode/modules/manage_network_components_form_common.php:310 +#: ../../godmode/agentes/module_manager_editor_common.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 +#: ../../include/functions_reporting.php:6766 +msgid "Max. Value" +msgstr "最大値" + +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../godmode/modules/manage_network_components_form_common.php:311 +msgid "Any value over this number is discarted" +msgstr "この値よりも大きい値は削除されます。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:649 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "データ保存倍率" + +#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load a basic structure on data configuration" +msgstr "データ設定に基本構造をロードします" + +#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +msgid "Check the correct structure of the data configuration" +msgstr "データ設定の正常性を確認" + +#: ../../enterprise/godmode/modules/configure_local_component.php:506 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +msgid "First line must be \"module_begin\"" +msgstr "最初の行は、\"module_begin\" でなければいけません" + +#: ../../enterprise/godmode/modules/configure_local_component.php:507 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +msgid "Data configuration is empty" +msgstr "データ設定が空です" + +#: ../../enterprise/godmode/modules/configure_local_component.php:508 +#: ../../enterprise/godmode/modules/configure_local_component.php:512 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +msgid "Last line must be \"module_end\"" +msgstr "最後の行は \"module_end\" でなければいけません" + +#: ../../enterprise/godmode/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +msgid "" +"Name is missed. Please add a line with \"module_name yourmodulename\" to data " +"configuration" +msgstr "" +"名前がありません。データ設定に \"module_name モジュール名\" という行を追加してくださ" +"い。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:510 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to data " +"configuration" +msgstr "" +"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加してく" +"ださい。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:511 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +msgid "Type is wrong. Please set a correct type" +msgstr "タイプが不正です。正しいタイプを選択してください。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 +msgid "Error in the syntax, please check the data configuration." +msgstr "書式エラーです。データ設定を確認してください。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +msgid "Data configuration are built correctly" +msgstr "データ設定が正しく作られました" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/agentes/module_manager_editor_common.php:1093 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Critical instructions" +msgstr "障害時手順" + +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "Instructions when the status is critical" +msgstr "障害状態になった時の手順" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Warning instructions" +msgstr "警告時手順" + +#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/massive/massive_edit_modules.php:1096 +msgid "Instructions when the status is warning" +msgstr "警告状態になった時の手順" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/agentes/module_manager_editor_common.php:1102 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Unknown instructions" +msgstr "不明状態時手順" + +#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/massive/massive_edit_modules.php:1100 +msgid "Instructions when the status is unknown" +msgstr "不明状態になった時の手順" + +#: ../../enterprise/godmode/modules/configure_local_component.php:542 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 +#: ../../godmode/modules/manage_network_components_form_common.php:342 +#: ../../godmode/agentes/module_manager_editor_common.php:1143 +#: ../../godmode/massive/massive_edit_modules.php:1060 +#: ../../godmode/module_library/module_library_view.php:123 +msgid "Category" +msgstr "操作" + +#: ../../enterprise/godmode/modules/configure_local_component.php:561 +#: ../../godmode/modules/manage_network_components_form_common.php:362 +#: ../../godmode/agentes/module_manager_editor_common.php:906 +msgid "Tags available" +msgstr "利用可能なタグ" + +#: ../../enterprise/godmode/modules/configure_local_component.php:579 +#: ../../godmode/modules/manage_network_components_form_common.php:380 +#: ../../godmode/agentes/module_manager_editor_common.php:1001 +msgid "Add tags to module" +msgstr "モジュールへのタグ追加" + +#: ../../enterprise/godmode/modules/configure_local_component.php:580 +#: ../../godmode/modules/manage_network_components_form_common.php:381 +#: ../../godmode/agentes/module_manager_editor_common.php:1010 +msgid "Delete tags to module" +msgstr "モジュールのタグ削除" + +#: ../../enterprise/godmode/modules/configure_local_component.php:581 +#: ../../enterprise/godmode/setup/setup_auth.php:174 +#: ../../enterprise/godmode/setup/setup_auth.php:458 +#: ../../enterprise/godmode/setup/setup_auth.php:1253 +#: ../../godmode/modules/manage_network_components_form_common.php:382 +#: ../../godmode/agentes/module_manager_editor_common.php:1014 +msgid "Tags selected" +msgstr "選択タグ" + +#: ../../enterprise/godmode/modules/configure_local_component.php:603 +msgid "Macros" +msgstr "マクロ" + +#: ../../enterprise/godmode/modules/configure_local_component.php:639 +#: ../../godmode/servers/plugin.php:492 +#: ../../include/class/ManageNetScanScripts.class.php:636 +msgid "Default value" +msgstr "デフォルト値" + +#: ../../enterprise/godmode/modules/configure_local_component.php:655 +#: ../../godmode/servers/plugin.php:554 +#: ../../include/class/ManageNetScanScripts.class.php:724 +msgid "Add macro" +msgstr "マクロを追加" + +#: ../../enterprise/godmode/modules/configure_local_component.php:663 +#: ../../godmode/servers/plugin.php:568 +#: ../../include/class/ManageNetScanScripts.class.php:742 +msgid "Delete macro" +msgstr "マクロを削除" + +#: ../../enterprise/godmode/modules/configure_local_component.php:978 +#: ../../godmode/modules/manage_network_components_form_common.php:706 +#: ../../godmode/agentes/module_manager_editor_common.php:1994 +msgid "Normal Status" +msgstr "正常状態" + +#: ../../enterprise/godmode/modules/configure_local_component.php:979 +#: ../../godmode/modules/manage_network_components_form_common.php:707 +#: ../../godmode/agentes/module_manager_editor_common.php:1995 +msgid "Warning Status" +msgstr "警告状態" + +#: ../../enterprise/godmode/modules/configure_local_component.php:980 +#: ../../godmode/modules/manage_network_components_form_common.php:708 +#: ../../godmode/agentes/module_manager_editor_common.php:1996 +msgid "Critical Status" +msgstr "障害状態" + +#: ../../enterprise/godmode/modules/configure_local_component.php:983 +#: ../../godmode/modules/manage_network_components_form_common.php:710 +#: ../../godmode/agentes/module_manager_editor_common.php:1998 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "警告の最大値は、警告の最小値よりも大きくしてください" + +#: ../../enterprise/godmode/modules/configure_local_component.php:985 +#: ../../godmode/modules/manage_network_components_form_common.php:711 +#: ../../godmode/agentes/module_manager_editor_common.php:1999 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "障害の最大値は、障害の最小値よりも大きくしてください" + +#: ../../enterprise/godmode/modules/configure_local_component.php:987 +msgid "Please introduce a positicve percentage value" +msgstr "正のパーセント値を指定してください" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "インベントリプラグインを管理するには、中央管理を有効化する必要があります" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature from " +"centralized manager console. Go to %s to manage it." +msgstr "" +"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールからこの機能" +"を管理してください。管理するには %s に移動します。" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/operation/log/log_viewer.php:458 +#: ../../godmode/netflow/nf_edit.php:47 ../../operation/netflow/nf_live_view.php:141 +msgid "Not supported in Windows systems" +msgstr "Windows システムでは対応していません" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:117 +msgid "Successfully created inventory module" +msgstr "インベントリモジュールを作成しました" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 +msgid "Error creating inventory module" +msgstr "インベントリモジュールの作成エラー" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../enterprise/godmode/agentes/inventory_manager.php:128 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 +msgid "Successfully updated inventory module" +msgstr "インベントリモジュールを更新しました" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:144 +#: ../../enterprise/godmode/agentes/inventory_manager.php:130 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 +msgid "Error updating inventory module" +msgstr "インベントリモジュールの更新エラー" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:162 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 +#: ../../enterprise/godmode/agentes/inventory_manager.php:100 +msgid "Successfully deleted inventory module" +msgstr "インベントリモジュールを削除しました" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 +#: ../../enterprise/godmode/agentes/inventory_manager.php:102 +msgid "Error deleting inventory module" +msgstr "インベントリモジュールの削除エラー" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 +#: ../../enterprise/godmode/modules/local_components.php:443 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_network_components.php:578 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "複数削除しました" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 +#: ../../enterprise/godmode/modules/local_components.php:444 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_network_components.php:579 +#: ../../godmode/modules/manage_network_templates.php:115 +msgid "Not deleted. Error deleting multiple data" +msgstr "削除できませんでした。複数データの削除でエラーです。" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "処理系" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 +msgid "No inventory modules defined" +msgstr "インベントリモジュールがありません" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 +msgid "Local module" +msgstr "ローカルモジュール" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 +msgid "Remote/Local" +msgstr "リモート/ローカル" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 +msgid "" +"The configurations of inventory modules from the nodes have been unified.\n" +"\t\tFrom this point on, changes to the inventory scripts must be made through this " +"screen." +msgstr "" +"ノードからのインベントリモジュールの設定が統合されました。\n" +"\t\tこれ以降、インベントリスクリプトへの変更はこの画面から行う必要があります。" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:355 +msgid "You can find more information at:" +msgstr "詳細については次を参照してください:" + +#: ../../enterprise/godmode/modules/local_components.php:141 +#: ../../godmode/modules/manage_network_components.php:196 +#: ../../godmode/alerts/configure_alert_template.php:191 +#, php-format +msgid "Successfully created from %s" +msgstr "%s から作成しました。" + +#: ../../enterprise/godmode/modules/local_components.php:142 +#: ../../enterprise/godmode/modules/local_components.php:318 +#: ../../enterprise/godmode/policies/policies.php:172 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 +#: ../../enterprise/include/ajax/servers.ajax.php:198 +#: ../../enterprise/operation/agentes/transactional_map.php:135 +#: ../../enterprise/tools/ipam/ipam_action.php:164 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 +#: ../../godmode/modules/manage_nc_groups.php:85 +#: ../../godmode/modules/manage_network_components.php:199 +#: ../../godmode/modules/manage_network_components.php:427 +#: ../../godmode/users/configure_user.php:493 +#: ../../godmode/agentes/configurar_agente.php:354 +#: ../../godmode/agentes/configurar_agente.php:879 +#: ../../godmode/agentes/planned_downtime.editor.php:642 +#: ../../godmode/alerts/alert_commands.php:645 +#: ../../godmode/alerts/configure_alert_template.php:192 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67 +#: ../../godmode/setup/gis.php:49 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5901 +#: ../../include/functions_alerts.php:2748 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:844 +#: ../../operation/agentes/pandora_networkmap.php:140 +#: ../../operation/agentes/pandora_networkmap.php:375 +msgid "Could not be created" +msgstr "作成に失敗しました。" + +#: ../../enterprise/godmode/modules/local_components.php:157 +msgid "Local component management" +msgstr "ローカルコンポーネント管理" + +#: ../../enterprise/godmode/modules/local_components.php:263 +#, php-format +msgid "" +"This node is configured with centralized mode. All local components are read only. Go " +"to %s to manage them." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは読み取" +"り専用です。それらを管理するには、%s に移動します。" + +#: ../../enterprise/godmode/modules/local_components.php:326 +#: ../../godmode/modules/manage_network_components.php:438 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "作成しました。" + +#: ../../enterprise/godmode/modules/local_components.php:393 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 +#: ../../enterprise/godmode/policies/policy_modules.php:1250 +#: ../../enterprise/godmode/policies/policies.php:216 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 +#: ../../enterprise/include/ajax/servers.ajax.php:331 +#: ../../enterprise/operation/agentes/transactional_map.php:160 +#: ../../enterprise/tools/ipam/ipam_action.php:277 +#: ../../enterprise/tools/ipam/ipam_massive.php:48 +#: ../../godmode/modules/manage_network_components.php:525 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/planned_downtime.editor.php:644 +#: ../../godmode/alerts/configure_alert_command.php:145 +#: ../../godmode/alerts/alert_templates.php:157 +#: ../../godmode/alerts/configure_alert_template.php:555 +#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2748 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:216 +#: ../../operation/agentes/pandora_networkmap.php:508 +#: ../../operation/snmpconsole/snmp_view.php:175 +msgid "Could not be updated" +msgstr "更新に失敗しました。" + +#: ../../enterprise/godmode/modules/local_components.php:401 +#: ../../godmode/modules/manage_network_components.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "更新しました。" + +#: ../../enterprise/godmode/modules/local_components.php:547 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 +#: ../../godmode/modules/manage_network_components.php:659 +msgid "Free Search" +msgstr "検索文字列" + +#: ../../enterprise/godmode/modules/local_components.php:548 +msgid "Search by name, description or data, list matches." +msgstr "名前、説明、データでマッチするものを検索します。" + +#: ../../enterprise/godmode/modules/local_components.php:690 +#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 +#: ../../godmode/modules/manage_network_components.php:859 +#: ../../godmode/modules/manage_network_components.php:860 +#: ../../godmode/agentes/module_manager.php:1191 +#: ../../godmode/snmpconsole/snmp_alert.php:1347 +#: ../../godmode/snmpconsole/snmp_alert.php:1348 +#: ../../godmode/alerts/alert_actions.php:435 +#: ../../godmode/alerts/alert_templates.php:432 +#: ../../godmode/reporting/reporting_builder.php:1194 +msgid "Duplicate" +msgstr "複製" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "インベントリモジュールエラー" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "ローカルインベントリモジュールの場合は入力しないでください" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "ブロックモード" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../include/class/ModuleTemplates.class.php:1208 +msgid "Format" +msgstr "フォーマット" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "フィールドセパレータは、 " + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../include/ajax/double_auth.ajax.php:149 +#: ../../include/ajax/double_auth.ajax.php:292 +msgid "Code" +msgstr "コード" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory modules " +"don't use this field" +msgstr "" +"リモートインベントリモジュールのスクリプトを入力します。ローカルインベントリモジュール" +"ではこのフィールドは使いません。" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:83 +msgid "Cannot delete rule from autoconfiguration" +msgstr "自動設定からルールを削除できません" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:89 +msgid "Agent Autoconfiguration Information" +msgstr "エージェント自動設定情報" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 +msgid "You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" +"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要があります!!!" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成してください" +"(中央管理)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "メタコンソールで自動設定を作成できません" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:147 +msgid "Cannot create unnamed autoconfiguration" +msgstr "名前のない自動設定は作成できません" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:157 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成してください" +"(中央管理)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 +msgid "Cannot update autoconfiguration" +msgstr "自動設定を更新できません" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:204 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:243 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールから作成し" +"てください(中央管理)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:319 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 +msgid "Agent autoconfiguration list" +msgstr "エージェント自動設定一覧" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +msgid "Autoconfiguration" +msgstr "自動設定" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138 +#: ../../godmode/modules/manage_network_components_form_wizard.php:655 +#: ../../godmode/agentes/planned_downtime.list.php:623 +#: ../../godmode/agentes/planned_downtime.editor.php:878 +#: ../../include/functions_reporting_html.php:6287 +msgid "Execution" +msgstr "実行" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 +#: ../../enterprise/operation/agentes/transactional_map.php:398 +#: ../../godmode/menu.php:50 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2419 +#: ../../operation/users/user_edit.php:739 ../../operation/users/user_edit.php:785 +#: ../../operation/menu.php:431 +msgid "Start" +msgstr "開始" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +#: ../../godmode/agentes/planned_downtime.editor.php:898 +msgid "Configure the time" +msgstr "時間設定" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:403 +#: ../../godmode/agentes/planned_downtime.editor.php:917 +msgid "Type Periodicity:" +msgstr "定期実行タイプ:" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 +#: ../../enterprise/include/functions_cron.php:501 +#: ../../enterprise/include/lib/NetworkManager.php:178 +#: ../../godmode/agentes/module_manager_editor_prediction.php:183 +#: ../../include/functions_netflow.php:1850 +msgid "Daily" +msgstr "日次" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:406 +#: ../../enterprise/include/functions_cron.php:502 +#: ../../enterprise/include/lib/NetworkManager.php:182 +#: ../../godmode/agentes/module_manager_editor_prediction.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:919 +msgid "Weekly" +msgstr "週次" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:407 +#: ../../enterprise/include/functions_cron.php:503 +#: ../../godmode/agentes/module_manager_editor_prediction.php:182 +#: ../../godmode/agentes/planned_downtime.editor.php:920 +msgid "Monthly" +msgstr "月次" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:436 +#: ../../godmode/agentes/planned_downtime.editor.php:949 +msgid "From day:" +msgstr "開始日:" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:454 +#: ../../godmode/agentes/planned_downtime.editor.php:982 +msgid "From hour:" +msgstr "開始時間:" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../include/class/CredentialStore.class.php:959 +msgid "Extra" +msgstr "拡張" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:525 +msgid "Add rule" +msgstr "ルール追加" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:530 +msgid "Rules" +msgstr "ルール" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:552 +msgid "New group" +msgstr "新規グループ" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 +msgid "Launch custom event" +msgstr "カスタムイベントの起動" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:585 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 +msgid "Launch alert action" +msgstr "アラートアクションの起動" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:586 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "スクリプトの起動" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:644 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 +#: ../../godmode/massive/massive_edit_agents.php:677 +#: ../../godmode/massive/massive_edit_agents.php:703 +#: ../../godmode/massive/massive_edit_agents.php:739 +#: ../../godmode/massive/massive_edit_agents.php:763 +#: ../../godmode/massive/massive_edit_agents.php:880 +#: ../../godmode/massive/massive_edit_agents.php:927 +#: ../../godmode/massive/massive_edit_agents.php:1020 +#: ../../godmode/massive/massive_edit_agents.php:1073 +#: ../../godmode/massive/massive_edit_agents.php:1115 +#: ../../godmode/massive/massive_edit_agents.php:1143 +#: ../../godmode/massive/massive_edit_agents.php:1237 +#: ../../godmode/massive/massive_edit_modules.php:615 +#: ../../godmode/massive/massive_edit_modules.php:637 +#: ../../godmode/massive/massive_edit_modules.php:706 +#: ../../godmode/massive/massive_edit_modules.php:728 +#: ../../godmode/massive/massive_edit_modules.php:759 +#: ../../godmode/massive/massive_edit_modules.php:768 +#: ../../godmode/massive/massive_edit_modules.php:827 +#: ../../godmode/massive/massive_edit_modules.php:845 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:879 +#: ../../godmode/massive/massive_edit_modules.php:899 +#: ../../godmode/massive/massive_edit_modules.php:924 +#: ../../godmode/massive/massive_edit_modules.php:936 +#: ../../godmode/massive/massive_edit_modules.php:997 +#: ../../godmode/massive/massive_edit_modules.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1061 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../godmode/massive/massive_edit_modules.php:1080 +#: ../../godmode/massive/massive_edit_modules.php:1108 +#: ../../godmode/massive/massive_edit_modules.php:1212 +#: ../../include/functions_html.php:1850 ../../include/functions_html.php:1951 +#: ../../include/functions_html.php:2089 +msgid "No change" +msgstr "変更無し" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 +#: ../../godmode/agentes/agent_manager.php:505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:73 +#: ../../include/functions_events.php:4727 +#: ../../operation/agentes/estado_generalagente.php:408 +msgid "Secondary groups" +msgstr "セカンダリグループ" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:695 +#: ../../godmode/massive/massive_edit_agents.php:825 +#: ../../include/functions_html.php:6154 +msgid "Add secondary groups" +msgstr "セカンダリグループの追加" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:702 +#: ../../godmode/massive/massive_edit_agents.php:851 +#: ../../include/functions_html.php:6167 +msgid "Remove secondary groups" +msgstr "セカンダリグループの削除" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:739 +#: ../../enterprise/godmode/policies/configure_policy.php:48 +msgid "Add policy" +msgstr "ポリシー追加" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:754 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +msgid "Op" +msgstr "Op" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:771 +msgid "Extra configuration block" +msgstr "追加設定ブロック" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:773 +msgid "" +"Put here any extra configuration you want to be applied to any new agent matching " +"previously defined rules" +msgstr "" +"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入力します" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:806 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 +msgid "Extra actions" +msgstr "追加アクション" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:827 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1145 +msgid "Add extra action" +msgstr "追加アクションの追加" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010 +msgid "Add new rule" +msgstr "新規ルール追加" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1012 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 +msgid "Update rule" +msgstr "ルール更新" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1232 +msgid "Update extra action" +msgstr "拡張アクションの更新" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:47 +msgid "Cannot delete autoconfiguration" +msgstr "自動設定を削除できません" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "enabled" +msgstr "有効" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:63 +msgid "enabling" +msgstr "有効化" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 +#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +msgid "disabled" +msgstr "無効化" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 +msgid "disabling" +msgstr "無効化" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:71 +#, php-format +msgid "Successfully %s" +msgstr "成功 %s" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#, php-format +msgid "Error %s" +msgstr "エラー %s" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:156 +msgid "There are no defined autoconfigurations" +msgstr "定義済の自動設定がありません" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:262 +#: ../../enterprise/godmode/policies/policy_alerts.php:722 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1113 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1114 +#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:745 +#: ../../godmode/alerts/alert_list.list.php:1044 +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Enable" +msgstr "有効" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 +#: ../../enterprise/godmode/agentes/plugins_manager.php:195 +#: ../../enterprise/godmode/agentes/plugins_manager.php:271 +#: ../../enterprise/godmode/policies/policy_alerts.php:714 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1139 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1140 +#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:740 +#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3357 +msgid "Disable" +msgstr "無効" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:194 +msgid "Add new configuration definition" +msgstr "新規設定定義追加" + +#: ../../enterprise/godmode/agentes/collections.agents.php:36 +msgid "Show Agent >" +msgstr "エージェント表示 >" + +#: ../../enterprise/godmode/agentes/collections.agents.php:120 +#: ../../enterprise/godmode/agentes/collections.agents.php:124 +msgid "This collection has not been added to any agents" +msgstr "このコレクションはどのエージェントにも追加されていません" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/policies/policy.php:82 +#: ../../enterprise/include/functions_policies.php:3833 +#: ../../godmode/agentes/configurar_agente.php:721 +msgid "Agent plugins" +msgstr "エージェントプラグイン" + +#: ../../enterprise/godmode/agentes/collection_manager.php:37 +#: ../../enterprise/operation/agentes/collection_view.php:60 +msgid "This agent have not a remote configuration, please set it." +msgstr "このエージェントはリモート設定ではありません。設定してください。" + +#: ../../enterprise/godmode/agentes/collection_manager.php:77 +msgid "Succesful add the collection" +msgstr "コレクションを追加しました" + +#: ../../enterprise/godmode/agentes/collection_manager.php:78 +msgid "Unsuccesful add the collection" +msgstr "コレクションの追加に失敗しました" + +#: ../../enterprise/godmode/agentes/collection_manager.php:129 +#: ../../enterprise/godmode/agentes/collection_manager.php:130 +#: ../../enterprise/godmode/agentes/collection_manager.php:254 +#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../enterprise/operation/agentes/collection_view.php:108 +msgid "Show files" +msgstr "ファイル表示" + +#: ../../enterprise/godmode/agentes/collection_manager.php:196 +#: ../../enterprise/operation/agentes/agent_inventory.php:280 +#: ../../enterprise/operation/log/log_viewer.php:1256 +#: ../../enterprise/operation/log/log_viewer.php:1264 +#: ../../enterprise/operation/inventory/inventory.php:475 +#: ../../enterprise/operation/inventory/inventory.php:518 +#: ../../godmode/reporting/reporting_builder.php:1260 +#: ../../include/functions_reporting.php:2964 +msgid "No data found." +msgstr "データがありません。" + +#: ../../enterprise/godmode/agentes/collection_manager.php:205 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/operation/agentes/collection_view.php:74 +#: ../../godmode/agentes/module_manager.php:848 +#: ../../godmode/snmpconsole/snmp_alert.php:1254 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 +#: ../../operation/agentes/status_monitor.php:1302 +msgid "P." +msgstr "P." + +#: ../../enterprise/godmode/agentes/collection_manager.php:207 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:76 +msgid "Dir" +msgstr "ディレクトリ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +msgid "Capacity planning" +msgstr "キャパシティプランニング" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/services/services.elements.php:95 +#: ../../enterprise/godmode/services/services.elements.php:184 +#: ../../enterprise/include/functions_visual_map_editor.php:30 +#: ../../enterprise/include/functions_visual_map_editor.php:41 +#: ../../enterprise/include/functions_visual_map_editor.php:54 +#: ../../enterprise/include/functions_visual_map_editor.php:85 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 +#: ../../enterprise/include/functions_reporting.php:6131 +#: ../../enterprise/include/functions_services.php:1712 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3994 +#: ../../include/lib/Dashboard/Widgets/service_map.php:318 +msgid "Service" +msgstr "サービス" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 +msgid "Synthetic arithmetic" +msgstr "統合計算" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic average" +msgstr "統合平均" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 +msgid "Trending module" +msgstr "トレンドモジュール" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +msgid "Fixed value" +msgstr "固定値" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operation as add" +msgstr "足し算処理にモジュールを追加" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Add module to operations as deduct" +msgstr "引き算処理にモジュールを追加" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +msgid "Add module to operations as multiplicate " +msgstr "掛け算処理にモジュールを追加 " + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 +msgid "Add module to operations as divide" +msgstr "割り算処理にモジュールを追加" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 +msgid "Remove selected modules" +msgstr "選択したモジュールの削除" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 +msgid "Add module to average operation" +msgstr "平均処理にモジュールを追加" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 +msgid "Remove selected modules from operations stack" +msgstr "選択したモジュールをオペレーションスタックから削除する" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Move down selected modules" +msgstr "選択したモジュールを下へ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 +msgid "Move up selected modules" +msgstr "選択したモジュールを上へ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 +msgid "Select Service" +msgstr "サービス選択" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +msgid "Netflow filter" +msgstr "Netflow フィルタ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 +msgid "Select filter" +msgstr "フィルタ選択" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 +msgid "Percentual value" +msgstr "パーセント値" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:84 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +msgid "Successfully added inventory module" +msgstr "インベントリモジュールを追加しました" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:86 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +msgid "Error adding inventory module" +msgstr "インベントリモジュールの追加エラー" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:89 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 +msgid "The inventory of the module already exists" +msgstr "モジュールのインベントリはすでに存在します" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:110 +msgid "Successfully forced inventory module" +msgstr "インベントリモジュールを強制実行しました" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:112 +msgid "Error forcing inventory module" +msgstr "インベントリモジュールの強制実行エラー" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:222 +#: ../../enterprise/include/functions_ui.php:92 +msgid "Target" +msgstr "対象" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:257 +#: ../../enterprise/include/functions_ipam.php:1386 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 +#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162 +#: ../../operation/agentes/group_view.php:221 ../../operation/agentes/group_view.php:283 +msgid "Force" +msgstr "強制する" + +#: ../../enterprise/godmode/agentes/collections.data.php:384 +msgid "Collection updated successfully" +msgstr "コレクションを更新しました" + +#: ../../enterprise/godmode/agentes/collections.data.php:395 +#: ../../enterprise/godmode/agentes/collections.editor.php:109 +#: ../../enterprise/godmode/agentes/collections.php:92 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature from %s." +msgstr "" +"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理してくだ" +"さい。" + +#: ../../enterprise/godmode/agentes/collections.data.php:410 +msgid "Please go to the metaconsole and apply this collection" +msgstr "メタコンソールに移動して、このコレクションを適用してください" + +#: ../../enterprise/godmode/agentes/collections.data.php:414 +msgid "Error: The collection directory does not exist." +msgstr "エラー: コレクションディレクトリが存在しません。" + +#: ../../enterprise/godmode/agentes/collections.editor.php:98 +msgid "Files in " +msgstr "次の中に存在するファイル: " + +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in updated succesfully" +msgstr "プラグインを更新しました" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:66 +msgid "Plug-in cannot be updated" +msgstr "プラグインを更新できませんでした" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in deleted succesfully" +msgstr "プラグインを削除しました" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +msgid "Plug-in cannot be deleted" +msgstr "プラグインを削除できません" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:90 +msgid "Plug-in added succesfully" +msgstr "プラグインを追加しました" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:87 +#: ../../enterprise/godmode/policies/policy_plugins.php:91 +msgid "Plug-in cannot be added" +msgstr "プラグインを追加できません" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:97 +msgid "Plug-in enabled succesfully" +msgstr "プラグインを有効化しました" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:98 +msgid "Plug-in cannot be enabled" +msgstr "プラグインを有効化できません" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:109 +msgid "Plug-in disabled succesfully" +msgstr "プラグインを無効化しました" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:110 +msgid "Plug-in cannot be disabled" +msgstr "プラグインを無効化できません" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:127 +#: ../../enterprise/godmode/policies/policy_plugins.php:109 +msgid "If enabled, allows to define a complex module plugin or log." +msgstr "有効にすると、複雑なモジュールプラグインまたはログを定義できます。" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:142 +#: ../../enterprise/godmode/policies/policy_plugins.php:123 +msgid "New plug-in" +msgstr "新規プラグイン" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:192 +#: ../../enterprise/godmode/policies/policy_plugins.php:167 +#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:309 +msgid "Plugins" +msgstr "プラグイン" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "このフィールド上の変更は、設定データにリンクされます。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "ローカルコンポーネントの利用" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:135 +msgid "Manual setup" +msgstr "個別設定" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:127 +msgid "No component was found" +msgstr "コンポーネントが見つかりません。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "設定データを表示する" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "設定データを隠す" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "データ設定" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 +msgid "Error: The conf file of agent is not readble." +msgstr "エラー: エージェント設定ファイルを読めません。" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 +msgid "Error: The conf file of agent is not writable." +msgstr "エラー: エージェント設定ファイルに書き込めません。" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 +#: ../../enterprise/godmode/policies/policy_modules.php:387 +msgid "Add module" +msgstr "モジュール追加" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 +msgid "No module was found" +msgstr "モジュールがありません" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 +msgid "Delete remote conf agent files" +msgstr "エージェントのリモート設定ファイル削除" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1189 +#: ../../godmode/agentes/agent_manager.php:543 +msgid "Delete remote configuration file" +msgstr "リモート設定ファイル削除" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +msgid "" +"Delete this conf file implies that for restore you must reactive remote config in the " +"local agent." +msgstr "" +"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化する必" +"要があります。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +msgid "Delete module" +msgstr "モジュール削除" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +msgid "Run performance tests" +msgstr "パフォーマンステストの実行" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 +msgid "Target web site" +msgstr "対象ウェブサイト" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 +msgid "The url specified in this field is mandatory to retrieve performance stats." +msgstr "このフィールドで指定された URL は、パフォーマンス統計を取得するために必須です。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 +msgid "target web site (http://...)" +msgstr "対象ウェブサイト (http://...)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 +msgid "Execute tests from" +msgstr "次からテストを実行:" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 +msgid "Browser" +msgstr "ブラウザ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 +msgid "" +"Support for IE and Edge browsers is experimental. Tests might not work as expected." +msgstr "" +"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能しない可" +"能性があります。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:219 +msgid "User data dir" +msgstr "ユーザデータディレクトリ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 +#, php-format +msgid "Google Chrome only. Set user data dir, specify the full path %s." +msgstr "" +"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定します。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:241 +#: ../../operation/search_users.php:47 +msgid "Profile" +msgstr "プロファイル" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:243 +#, php-format +msgid "Google Chrome only. Use a custom profile, specify the full folder name %s." +msgstr "" +"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定しま" +"す。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:265 +msgid "Accept insecure certificates" +msgstr "安全でない証明書を受け入れる" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 +msgid "Only Selenium 3." +msgstr "Selenium 3 のみ。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:393 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "HTML としてエクスポートされた selenium テストをここに貼り付けます" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:406 +msgid "Add file" +msgstr "ファイル追加" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:414 +msgid "Upload your selenium test in html or side (only Selenium 3) format" +msgstr "selenium テストを html または side (Selenium 3 のみ)形式でアップロードします" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:442 +#: ../../enterprise/tools/ipam/ipam_excel.php:212 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 +#: ../../godmode/groups/configure_group.php:238 +#: ../../godmode/agentes/agent_manager.php:198 +#: ../../godmode/agentes/module_manager_editor_common.php:567 +#: ../../godmode/massive/massive_edit_agents.php:812 +msgid "Custom ID" +msgstr "カスタムID" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:498 +#: ../../godmode/agentes/module_manager.php:1130 +msgid "" +"The policy modules of data type will only update their intervals when policy is " +"applied." +msgstr "" +"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔でのみ更" +"新されます。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:524 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 +#: ../../godmode/agentes/module_manager_editor_common.php:865 +#: ../../godmode/massive/massive_edit_modules.php:1014 +msgid "FF interval" +msgstr "連続抑制時の間隔" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:540 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 +#: ../../godmode/massive/massive_edit_modules.php:1024 +msgid "Module execution flip flop time interval (in secs)." +msgstr "連続抑制時のモジュールの実行間隔(秒単位)です。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:544 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1138 +#: ../../godmode/massive/massive_edit_modules.php:1135 +msgid "Retries" +msgstr "リトライ" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:559 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 +#: ../../godmode/massive/massive_edit_modules.php:1137 +msgid "Number of retries that the module will attempt to run." +msgstr "モジュールを再実行する回数。" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:618 +#: ../../enterprise/godmode/policies/policy_modules.php:417 +#: ../../godmode/agentes/module_manager_editor.php:750 +#: ../../godmode/agentes/module_manager_editor_common.php:1226 +msgid "Custom macros" +msgstr "カスタムマクロ" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 +msgid "Empty Network maps editor" +msgstr "空のネットワークマップエディタ" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/services/services.service.php:526 +#: ../../enterprise/godmode/services/services.elements.php:837 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 +#: ../../enterprise/godmode/reporting/visual_console_template.php:118 +#: ../../enterprise/operation/services/services.service.php:79 +#: ../../enterprise/operation/services/massive/services.delete.php:55 +#: ../../enterprise/operation/services/massive/services.create.php:608 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:118 +#: ../../enterprise/operation/services/massive/service.create.elements.php:256 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:159 +#: ../../enterprise/operation/services/services.service_map.php:93 +#: ../../enterprise/operation/services/services.treeview_services.php:78 +#: ../../enterprise/operation/services/services.list.php:71 +#: ../../enterprise/operation/services/services.table_services.php:54 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 +#: ../../godmode/reporting/visual_console_builder.php:878 +#: ../../godmode/reporting/map_builder.php:130 +#: ../../godmode/reporting/visual_console_favorite.php:127 +#: ../../operation/visual_console/view.php:226 +#: ../../operation/agentes/pandora_networkmap.editor.php:214 +#: ../../operation/agentes/pandora_networkmap.php:665 ../../operation/menu.php:301 +msgid "Topology maps" +msgstr "トポロジーマップ" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 +#: ../../operation/agentes/pandora_networkmap.editor.php:218 +#: ../../operation/agentes/pandora_networkmap.php:669 +#: ../../operation/agentes/pandora_networkmap.view.php:2230 +msgid "Networkmap" +msgstr "ネットワークマップ" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 +#: ../../operation/agentes/pandora_networkmap.editor.php:256 +#: ../../operation/agentes/pandora_networkmap.view.php:2236 +msgid "Not found networkmap." +msgstr "ネットワークマップがありません。" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 +#: ../../operation/agentes/pandora_networkmap.editor.php:445 +msgid "Save networkmap" +msgstr "ネットワークマップの保存" + +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 +#: ../../operation/agentes/pandora_networkmap.editor.php:456 +msgid "Update networkmap" +msgstr "ネットワークマップの更新" + +#: ../../enterprise/godmode/agentes/collections.php:65 +msgid "Success: recreate file" +msgstr "成功: ファイル再作成" + +#: ../../enterprise/godmode/agentes/collections.php:67 +msgid "Error: recreate file " +msgstr "エラー: ファイル再作成 " + +#: ../../enterprise/godmode/agentes/collections.php:82 +#: ../../enterprise/godmode/agentes/collections.php:123 +#: ../../enterprise/godmode/agentes/collections.php:232 +msgid "Collections Management" +msgstr "コレクション管理" + +#: ../../enterprise/godmode/agentes/collections.php:175 +msgid "Manager collection" +msgstr "コレクション管理" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Data Copy" +msgstr "データコピー" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:56 +msgid "Duplicate configuration" +msgstr "設定の複製" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:78 +msgid "No source agent selected" +msgstr "ソースエージェントが選択されていません" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:80 +msgid "No destination agent/s selected" +msgstr "対象エージェントが選択されていません。" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid "Copied " +msgstr "コピーしました: " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid " md5 file/s" +msgstr " md5 ファイル" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +msgid "Error copying " +msgstr "コピーエラー " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +msgid " config file/s" +msgstr " 設定ファイル" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:225 +msgid "Source Group" +msgstr "ソースグループ" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:256 +msgid "Destination agent(s)" +msgstr "対象エージェント" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:268 +msgid "Source Agent" +msgstr "ソースエージェント" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:293 +msgid "Replicate configuration" +msgstr "設定の複製" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:314 +msgid "The action to be performed cannot be reversed. Are you sure to continue?" +msgstr "実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" + +#: ../../enterprise/godmode/agentes/module_manager.php:48 +msgid "Create a new web analysis module" +msgstr "新規ウェブ分析モジュールの作成" + +#: ../../enterprise/godmode/policies/policy_plugins.php:38 +#: ../../enterprise/godmode/policies/policy_alerts.php:64 +#: ../../enterprise/godmode/policies/configure_policy.php:83 +#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../enterprise/godmode/policies/policy_queue.php:218 +#: ../../enterprise/godmode/policies/policies.php:272 +#: ../../enterprise/godmode/policies/policy_linking.php:117 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 +#: ../../enterprise/godmode/policies/policy_collections.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:326 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 +#: ../../enterprise/operation/agentes/policy_view.php:58 +#, php-format +msgid "" +"This node is configured with centralized mode. All policies information is read only. " +"Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用で" +"す。管理するには %s に移動します。" + +#: ../../enterprise/godmode/policies/policy_plugins.php:56 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next policy " +"application." +msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" + +#: ../../enterprise/godmode/policies/policy_plugins.php:57 +msgid "Cannot be added to delete pending plugins." +msgstr "削除待ちプラグインを追加できません。" + +#: ../../enterprise/godmode/policies/policy_plugins.php:70 +#: ../../enterprise/godmode/policies/policy_alerts.php:259 +#: ../../enterprise/godmode/policies/policy_modules.php:1316 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 +#: ../../enterprise/godmode/policies/policy_collections.php:103 +#: ../../enterprise/godmode/policies/policy_agents.php:113 +#: ../../enterprise/godmode/policies/policy_agents.php:129 +msgid "Successfully reverted deletion" +msgstr "削除を取り消しました" + +#: ../../enterprise/godmode/policies/policy_plugins.php:71 +#: ../../enterprise/godmode/policies/policy_alerts.php:260 +#: ../../enterprise/godmode/policies/policy_modules.php:1317 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/godmode/policies/policy_collections.php:104 +#: ../../enterprise/godmode/policies/policy_agents.php:114 +#: ../../enterprise/godmode/policies/policy_agents.php:130 +msgid "Could not be reverted" +msgstr "取り消しできませんでした" + +#: ../../enterprise/godmode/policies/policy_plugins.php:210 +msgid "There are no defined plugins" +msgstr "定義済のプラグインがありません" + +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policies.php:253 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 +#: ../../enterprise/godmode/policies/policy_collections.php:63 +#: ../../enterprise/godmode/policies/policy_agents.php:85 +#: ../../godmode/agentes/module_manager_editor.php:542 +msgid "This policy is applying and cannot be modified" +msgstr "このポリシーを摘要すると変更できません。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:153 +#: ../../enterprise/godmode/policies/policy_modules.php:535 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 +#: ../../godmode/agentes/configurar_agente.php:2208 +#: ../../godmode/agentes/modificar_agente.php:278 +#: ../../godmode/massive/massive_enable_disable_alerts.php:124 +#: ../../godmode/alerts/alert_list.php:394 ../../include/ajax/alert_list.ajax.php:381 +msgid "Could not be disabled" +msgstr "無効にできませんでした。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:178 +#: ../../godmode/massive/massive_standby_alerts.php:132 +#: ../../godmode/alerts/alert_list.php:420 +msgid "Successfully set standby" +msgstr "スタンバイ状態にしました。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:179 +#: ../../godmode/massive/massive_standby_alerts.php:132 +#: ../../godmode/alerts/alert_list.php:421 +msgid "Could not be set standby" +msgstr "スタンバイ状態にできませんでした。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:204 +#: ../../godmode/massive/massive_standby_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:447 +msgid "Successfully set off standby" +msgstr "非スタンバイ状態にしました。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:205 +#: ../../godmode/massive/massive_standby_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:448 +msgid "Could not be set off standby" +msgstr "非スタンバイ状態にできませんでした。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +msgid " created successfuly" +msgstr " を作成しました" + +#: ../../enterprise/godmode/policies/policy_alerts.php:249 +msgid " could not be created" +msgstr " の作成ができませんでした" + +#: ../../enterprise/godmode/policies/policy_alerts.php:255 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 +msgid "" +"Successfully added to delete pending alerts. Will be deleted in the next policy " +"application." +msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:280 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +msgid "Added action successfuly" +msgstr "アクションを追加しました" + +#: ../../enterprise/godmode/policies/policy_alerts.php:280 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_agents.php:251 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../godmode/massive/massive_add_action_alerts.php:134 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_add_action_alerts.php:166 +#: ../../godmode/alerts/alert_list.php:272 +msgid "Could not be added" +msgstr "追加できませんでした。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 +msgid "Deleted action successfuly" +msgstr "アクションを削除しました" + +#: ../../enterprise/godmode/policies/policy_alerts.php:428 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:468 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2402 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3370 +#: ../../godmode/alerts/alert_list.list.php:650 ../../godmode/alerts/alert_view.php:234 +#: ../../include/functions_alerts.php:683 +msgid "Always" +msgstr "常時" + +#: ../../enterprise/godmode/policies/policy_alerts.php:430 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../godmode/alerts/alert_list.list.php:652 +#: ../../include/class/Diagnostics.class.php:1181 +#: ../../include/class/Diagnostics.class.php:1185 +msgid "On" +msgstr "次のアラート回数でアクション実施:" + +#: ../../enterprise/godmode/policies/policy_alerts.php:434 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:474 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3376 +#: ../../godmode/alerts/alert_list.list.php:656 +msgid "Until" +msgstr "次のアラート回数までアクション実施:" + +#: ../../enterprise/godmode/policies/policy_alerts.php:529 +#: ../../enterprise/godmode/policies/policy_modules.php:1573 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:542 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 +#: ../../enterprise/godmode/policies/policy_agents.php:1066 +#: ../../enterprise/godmode/policies/policy_agents.php:1535 +msgid "Undo deletion" +msgstr "削除取り消し" + +#: ../../enterprise/godmode/policies/policy_alerts.php:596 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 +#: ../../godmode/massive/massive_add_action_alerts.php:252 +#: ../../godmode/alerts/alert_list.list.php:767 +#: ../../godmode/alerts/alert_list.builder.php:127 +#: ../../include/ajax/alert_list.ajax.php:516 +#: ../../include/class/AgentsAlerts.class.php:314 +msgid "Number of alerts match from" +msgstr "アクションを起こすアラート数: 開始" + +#: ../../enterprise/godmode/policies/policy_alerts.php:613 +msgid "There is not alerts configured in this policy." +msgstr "このポリシーにアラート設定がありません。" + +#: ../../enterprise/godmode/policies/policy_alerts.php:642 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:217 +#: ../../godmode/massive/massive_add_alerts.php:280 +#: ../../godmode/massive/massive_enable_disable_alerts.php:189 +#: ../../godmode/massive/massive_delete_alerts.php:271 +msgid "Alert template" +msgstr "アラートテンプレート" + +#: ../../enterprise/godmode/policies/policy_alerts.php:653 +msgid "Policy module" +msgstr "ポリシーモジュール" + +#: ../../enterprise/godmode/policies/policy_alerts.php:731 +#: ../../godmode/alerts/alert_list.list.php:1071 +msgid "Set off standby" +msgstr "非スタンバイ状態にする" + +#: ../../enterprise/godmode/policies/policy_alerts.php:740 +#: ../../godmode/alerts/alert_list.list.php:1098 +msgid "Set standby" +msgstr "スタンバイ状態にする" + +#: ../../enterprise/godmode/policies/policy_alerts.php:754 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:517 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 +#: ../../godmode/snmpconsole/snmp_alert.php:1381 +#: ../../godmode/alerts/alert_list.list.php:913 +#: ../../godmode/alerts/alert_list.list.php:920 +#: ../../godmode/alerts/alert_list.list.php:1144 +msgid "Add action" +msgstr "アクションの追加" + +#: ../../enterprise/godmode/policies/configure_policy.php:124 +msgid "Force Apply" +msgstr "強制適用" + +#: ../../enterprise/godmode/policies/configure_policy.php:124 +msgid "" +"Force the creation of modules even if the software agent does not have remote " +"configuration" +msgstr "" +"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制します" + +#: ../../enterprise/godmode/policies/configure_policy.php:127 +msgid "Use secondary groups" +msgstr "セカンダリグループの利用" + +#: ../../enterprise/godmode/policies/configure_policy.php:127 +msgid "" +"Policy will be applied to those agents belonging to groups or secondary groups that " +"have been selected" +msgstr "" +"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適用されま" +"す" + +#: ../../enterprise/godmode/policies/policy_modules.php:299 +msgid "" +"If you change this description, you must change into the text of Data configuration." +msgstr "この説明を変更すると、データ設定のテキストを変更する必要があります。" + +#: ../../enterprise/godmode/policies/policy_modules.php:372 +msgid "Invalid module type." +msgstr "不正なモジュールタイプ。" + +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../godmode/agentes/module_manager_editor.php:738 +msgid "Base options" +msgstr "ベースオプション" + +#: ../../enterprise/godmode/policies/policy_modules.php:548 +msgid "Could not be added module(s). You must select a policy" +msgstr "モジュールを追加できません。ポリシーを選択する必要があります。" + +#: ../../enterprise/godmode/policies/policy_modules.php:581 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "モジュール (%s/%s) を、ポリシー %s に追加しました" + +#: ../../enterprise/godmode/policies/policy_modules.php:587 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "モジュール (%s/%s) をポリシー %s に追加できませんでした" + +#: ../../enterprise/godmode/policies/policy_modules.php:623 +msgid "To define plugins please use plugin configuration tab." +msgstr "プラグインの定義にはプラグイン設定タブを使ってください。" + +#: ../../enterprise/godmode/policies/policy_modules.php:920 +msgid "Could not be added module." +msgstr "モジュールを追加できませんでした。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1265 +msgid "The module type in Data configuration is empty, take from combo box of form." +msgstr "データ設定内のモジュールタイプが空です。フォームから選択してください。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1269 +msgid "The module name in Data configuration is empty, take from text field of form." +msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1299 +#: ../../enterprise/godmode/policies/policy_modules.php:1312 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next policy " +"application." +msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1303 +msgid "Could not be added to deleted all modules." +msgstr "削除済の全モジュールへの追加ができませんでした。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1363 +#: ../../godmode/agentes/configurar_agente.php:2121 +#: ../../include/functions_reports.php:963 +#, php-format +msgid "copy of %s" +msgstr "%s のコピー" + +#: ../../enterprise/godmode/policies/policy_modules.php:1381 +#: ../../godmode/agentes/configurar_agente.php:2135 +#, php-format +msgid "copy of %s (%d)" +msgstr "%s のコピー (%d)" + +#: ../../enterprise/godmode/policies/policy_modules.php:1411 +msgid "Successfully duplicate the module." +msgstr "モジュールを複製しました。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1412 +#: ../../operation/agentes/pandora_networkmap.php:533 +msgid "Could not be duplicated" +msgstr "複製できません" + +#: ../../enterprise/godmode/policies/policy_modules.php:1492 +msgid "Local component" +msgstr "ローカルコンポーネント" + +#: ../../enterprise/godmode/policies/policy_modules.php:1509 +#: ../../enterprise/godmode/policies/policy_modules.php:1510 +msgid "Disabled module" +msgstr "無効化モジュール" + +#: ../../enterprise/godmode/policies/policy_modules.php:1517 +#: ../../enterprise/godmode/policies/policy_modules.php:1518 +msgid "Enabled module" +msgstr "有効化モジュール" + +#: ../../enterprise/godmode/policies/policy_modules.php:1528 +#: ../../enterprise/godmode/policies/policy_modules.php:1529 +#: ../../godmode/agentes/module_manager.php:1168 +#: ../../godmode/agentes/module_manager.php:1169 +msgid "Enable module" +msgstr "モジュールを有効化" + +#: ../../enterprise/godmode/policies/policy_modules.php:1538 +#: ../../enterprise/godmode/policies/policy_modules.php:1539 +#: ../../godmode/agentes/module_manager.php:1178 +#: ../../godmode/agentes/module_manager.php:1179 +msgid "Disable module" +msgstr "モジュールを無効化" + +#: ../../enterprise/godmode/policies/policy_modules.php:1624 +msgid "There are no defined modules" +msgstr "定義済のモジュールがありません" + +#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../godmode/massive/massive_copy_modules.php:188 +msgid "Copy modules" +msgstr "モジュールのコピー" + +#: ../../enterprise/godmode/policies/policy_modules.php:1644 +msgid "Copy selected modules to policy: " +msgstr "選択したモジュールをポリシーへコピー: " + +#: ../../enterprise/godmode/policies/policy_modules.php:1706 +#: ../../godmode/agentes/module_manager_editor.php:822 +msgid "No module name provided" +msgstr "モジュール名がありません。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1707 +#: ../../godmode/agentes/module_manager_editor.php:832 +msgid "No target IP provided" +msgstr "対象 IP がありません。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1708 +#: ../../godmode/agentes/module_manager_editor.php:842 +msgid "No SNMP OID provided" +msgstr "SNMP OID がありません。" + +#: ../../enterprise/godmode/policies/policy_modules.php:1849 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "モジュールをポリシーにコピーしますか?\\n" + +#: ../../enterprise/godmode/policies/policy_modules.php:1869 +msgid "Please select any module to copy" +msgstr "コピーするモジュールを選択してください" + +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "No policies with this id" +msgstr "この ID のポリシーがありません" + +#: ../../enterprise/godmode/policies/policy_queue.php:78 +#: ../../enterprise/godmode/policies/policy_agents.php:62 +msgid "" +"Starting with Pandora FMS version 760, assigning an entire group to a policy will " +"apply it automatically to all the new agents added to that group." +msgstr "" +"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグループに" +"追加されたすべての新しいエージェントに自動的に適用されます。" + +#: ../../enterprise/godmode/policies/policy_queue.php:146 +#, php-format +msgid "%s: Operations successfully deleted from the queue" +msgstr "%s: キューから操作を削除しました" + +#: ../../enterprise/godmode/policies/policy_queue.php:153 +msgid "Operations successfully deleted from the queue" +msgstr "キューから操作を削除しました" + +#: ../../enterprise/godmode/policies/policy_queue.php:154 +msgid "Operations cannot be deleted from the queue" +msgstr "キューから操作を削除できません" + +#: ../../enterprise/godmode/policies/policy_queue.php:261 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" +"いくつかのノード(%s)には到達できません。一部の情報が欠落している可能性があります。" + +#: ../../enterprise/godmode/policies/policy_queue.php:308 +msgid "Update pending" +msgstr "更新待ち" + +#: ../../enterprise/godmode/policies/policy_queue.php:314 +msgid "Update pending agents" +msgstr "更新待ちエージェント" + +#: ../../enterprise/godmode/policies/policy_queue.php:337 +#: ../../enterprise/godmode/policies/policy_agents.php:1012 +#: ../../enterprise/godmode/policies/policy_agents.php:1493 +msgid "Add to apply queue" +msgstr "適用キューへ追加" + +#: ../../enterprise/godmode/policies/policy_queue.php:343 +msgid "Add to apply queue only for database" +msgstr "データベースにのみ適用キューを追加" + +#: ../../enterprise/godmode/policies/policy_queue.php:354 +msgid "Update pending groups" +msgstr "ペンディンググループ更新" + +#: ../../enterprise/godmode/policies/policy_queue.php:368 +msgid "Link pending modules" +msgstr "リンク待ちモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:376 +msgid "Will be linked in the next policy application" +msgstr "次回のポリシー適用でリンクされます" + +#: ../../enterprise/godmode/policies/policy_queue.php:382 +msgid "Unlink pending modules" +msgstr "リンク解除待ちモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:388 +msgid "Will be unlinked in the next policy application" +msgstr "次回のポリシー適用でリンクが解除されます" + +#: ../../enterprise/godmode/policies/policy_queue.php:393 +msgid "Delete pending" +msgstr "削除待ち" + +#: ../../enterprise/godmode/policies/policy_queue.php:399 +msgid "Delete pending agents" +msgstr "削除待ちエージェント" + +#: ../../enterprise/godmode/policies/policy_queue.php:407 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policy_queue.php:452 +#: ../../enterprise/godmode/policies/policy_queue.php:467 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:497 +#: ../../enterprise/godmode/policies/policy_queue.php:512 +msgid "Will be deleted in the next policy application" +msgstr "次回のポリシー適用で削除されます" + +#: ../../enterprise/godmode/policies/policy_queue.php:414 +msgid "Delete pending groups" +msgstr "ペンディンググループ削除" + +#: ../../enterprise/godmode/policies/policy_queue.php:429 +msgid "Delete pending modules" +msgstr "削除待ちモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:444 +msgid "Delete pending inventory modules" +msgstr "削除待ちインベントリモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:459 +msgid "Delete pending alerts" +msgstr "削除待ちアラート" + +#: ../../enterprise/godmode/policies/policy_queue.php:474 +msgid "Delete pending external alerts" +msgstr "削除待ち外部アラート" + +#: ../../enterprise/godmode/policies/policy_queue.php:489 +msgid "Delete pending file collections" +msgstr "削除待ちファイルコレクション" + +#: ../../enterprise/godmode/policies/policy_queue.php:504 +msgid "Delete pending plugins" +msgstr "削除待ちプラグイン" + +#: ../../enterprise/godmode/policies/policy_queue.php:518 +msgid "Advices" +msgstr "アドバイス" + +#: ../../enterprise/godmode/policies/policy_queue.php:523 +msgid "Queue summary" +msgstr "キューサマリ" + +#: ../../enterprise/godmode/policies/policy_queue.php:636 +msgid "Queue filter" +msgstr "キューフィルタ" + +#: ../../enterprise/godmode/policies/policy_queue.php:670 +#: ../../enterprise/godmode/policies/policy_linking.php:153 +#: ../../include/functions_massive_operations.php:191 +#: ../../include/lib/Dashboard/Widget.php:594 ../../include/functions_events.php:4600 +msgid "Node" +msgstr "ノード" + +#: ../../enterprise/godmode/policies/policy_queue.php:790 +msgid "Empty queue" +msgstr "キューが空です" + +#: ../../enterprise/godmode/policies/policy_queue.php:804 +msgid "This operation could take a long time" +msgstr "この操作は時間がかかります" + +#: ../../enterprise/godmode/policies/policy_queue.php:815 +msgid "Apply all queues" +msgstr "全てのキューの適用" + +#: ../../enterprise/godmode/policies/policy_queue.php:821 +msgid "Clear all items" +msgstr "全アイテムをクリア" + +#: ../../enterprise/godmode/policies/policies.php:85 +msgid "Policy not found." +msgstr "ポリシーが見つかりません。" + +#: ../../enterprise/godmode/policies/policies.php:154 +msgid "Policy name already exists" +msgstr "ポリシー名が既に存在します" + +#: ../../enterprise/godmode/policies/policies.php:228 +msgid "Policies Management" +msgstr "ポリシー管理" + +#: ../../enterprise/godmode/policies/policies.php:239 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 +#: ../../godmode/alerts/alert_actions.php:129 +#: ../../godmode/alerts/alert_commands.php:711 +#: ../../godmode/reporting/map_builder.php:315 +#: ../../godmode/reporting/map_builder.php:322 +#: ../../godmode/reporting/reporting_builder.php:737 +#: ../../include/functions_agents.php:1022 +#: ../../include/functions_planned_downtimes.php:978 +msgid "Successfully copied" +msgstr "コピーしました。" + +#: ../../enterprise/godmode/policies/policies.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 +#: ../../godmode/alerts/alert_actions.php:130 +#: ../../godmode/alerts/alert_commands.php:712 +#: ../../godmode/reporting/reporting_builder.php:738 +#: ../../include/functions_planned_downtimes.php:975 +msgid "Could not be copied" +msgstr "コピーできませんでした。" + +#: ../../enterprise/godmode/policies/policies.php:247 +msgid "All policy agents added to delete queue" +msgstr "削除キューに全ポリシーエージェントを追加しました" + +#: ../../enterprise/godmode/policies/policies.php:248 +msgid "Policy agents cannot be added to the delete queue" +msgstr "削除キューにポリシーエージェントを追加できません" + +#: ../../enterprise/godmode/policies/policies.php:334 +msgid "a" +msgstr "a" + +#: ../../enterprise/godmode/policies/policies.php:505 +#: ../../enterprise/godmode/policies/policy_linking.php:157 +#: ../../enterprise/include/functions_policies.php:3784 +msgid "Linking" +msgstr "リンク" + +#: ../../enterprise/godmode/policies/policies.php:518 +msgid "Agent Wizard" +msgstr "エージェントウィザード" + +#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 +#: ../../enterprise/include/functions_policies.php:3772 +msgid "External alerts" +msgstr "外部アラート" + +#: ../../enterprise/godmode/policies/policies.php:531 +#: ../../enterprise/godmode/policies/policy.php:60 +#: ../../enterprise/include/functions_policies.php:3814 +msgid "Queue" +msgstr "キュー" + +#: ../../enterprise/godmode/policies/policies.php:599 +msgid "There must be no agents to delete the policy." +msgstr "ポリシーを削除するにはエージェントがあってはいけません。" + +#: ../../enterprise/godmode/policies/policies.php:605 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "" +"エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" + +#: ../../enterprise/godmode/policies/policies.php:615 +msgid "Deleting all policy agents" +msgstr "全ポリシーエージェントの削除中" + +#: ../../enterprise/godmode/policies/policies.php:620 +msgid "All the policy agents will be deleted" +msgstr "全ポリシーエージェントが削除されます" + +#: ../../enterprise/godmode/policies/policies.php:629 +msgid "Delete all agents" +msgstr "全エージェント削除" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "リンク中モジュール" + +#: ../../enterprise/godmode/policies/policy_linking.php:99 +msgid "Error: Update linking modules to policy" +msgstr "エラー: ポリシーへのモジュールリンク更新" + +#: ../../enterprise/godmode/policies/policy_linking.php:101 +msgid "Success: Update linking modules to policy" +msgstr "成功: ポリシーへのモジュールリンク更新" + +#: ../../enterprise/godmode/policies/policy_linking.php:127 +msgid "Free text for filter (*)" +msgstr "フィルタテキスト (*)" + +#: ../../enterprise/godmode/policies/policy_linking.php:128 +msgid "Free text for filter" +msgstr "フィルタテキスト" + +#: ../../enterprise/godmode/policies/policy_linking.php:138 +msgid "Cannot retrieve unlinked modules" +msgstr "リンクされていないモジュールを取得できません" + +#: ../../enterprise/godmode/policies/policy_linking.php:140 +msgid "There are no defined modules unlinked" +msgstr "定義済の未リンクモジュールがありません" + +#: ../../enterprise/godmode/policies/policy_linking.php:142 +msgid "List of modules unlinked" +msgstr "未リンクモジュール一覧" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 +#: ../../godmode/alerts/alert_list.php:173 +msgid "No module specified" +msgstr "モジュールが指定されていません" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +msgid "Created successfuly" +msgstr "作成しました" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +msgid "Duplicated alert" +msgstr "アラートが重複しています" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:381 +#: ../../godmode/alerts/alert_list.list.php:188 +msgid "Alert control filter" +msgstr "アラートフィルタ" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:392 +msgid "Modules in policy per agents" +msgstr "エージェントごとのポリシー内モジュール" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:575 +msgid "There is not external alerts configured in this policy" +msgstr "このポリシーに設定された外部アラートがありません" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:629 +msgid "Modules in policy agents" +msgstr "ポリシーエージェント内のモジュール" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:657 +msgid "Alert Template" +msgstr "アラートテンプレート" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 +msgid "Module is not selected" +msgstr "モジュールが選択されていません" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 +msgid "There are no defined inventory modules" +msgstr "定義済のインベントリモジュールがありません" + +#: ../../enterprise/godmode/policies/policy_collections.php:99 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next policy " +"application." +msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" + +#: ../../enterprise/godmode/policies/policy_collections.php:224 +#: ../../enterprise/godmode/policies/policy_collections.php:296 +#: ../../enterprise/operation/agentes/policy_view.php:217 +#: ../../enterprise/operation/agentes/policy_view.php:218 +#: ../../enterprise/operation/agentes/collection_view.php:128 +#: ../../enterprise/operation/agentes/collection_view.php:129 +msgid "Outdate" +msgstr "期限切れ" + +#: ../../enterprise/godmode/policies/policy_collections.php:241 +msgid "Collections in policy" +msgstr "ポリシー内コレクション" + +#: ../../enterprise/godmode/policies/policy_collections.php:245 +msgid "Collections to add" +msgstr "追加するコレクション" + +#: ../../enterprise/godmode/policies/policy_collections.php:315 +msgid "No available collection to add" +msgstr "追加するコレクションがありません" + +#: ../../enterprise/godmode/policies/policy_agents.php:102 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next policy " +"application." +msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" + +#: ../../enterprise/godmode/policies/policy_agents.php:124 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next policy " +"application." +msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。" + +#: ../../enterprise/godmode/policies/policy_agents.php:148 +#: ../../enterprise/godmode/policies/policy_agents.php:193 +#: ../../enterprise/godmode/policies/policy_agents.php:261 +msgid "Policy with this id does not exist. " +msgstr "この ID のポリシーは存在しません。" + +#: ../../enterprise/godmode/policies/policy_agents.php:177 +#: ../../enterprise/godmode/policies/policy_agents.php:310 +msgid "Successfully added to delete queue" +msgstr "削除キューに追加しました" + +#: ../../enterprise/godmode/policies/policy_agents.php:178 +#: ../../enterprise/godmode/policies/policy_agents.php:311 +msgid "Could not be added to delete queue" +msgstr "削除キューに追加できませんでした" + +#: ../../enterprise/godmode/policies/policy_agents.php:250 +#, php-format +msgid "Successfully added %d" +msgstr "追加しました %d" + +#: ../../enterprise/godmode/policies/policy_agents.php:281 +msgid "" +"Number of agents added to the policy concurrently is too large. This might cause the " +"operation to fail or lead to performance issues." +msgstr "" +"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗した" +"り、パフォーマンスの問題が発生したりする可能性があります。" + +#: ../../enterprise/godmode/policies/policy_agents.php:288 +msgid "Successfully added to policy" +msgstr "ポリシーに追加しました" + +#: ../../enterprise/godmode/policies/policy_agents.php:289 +msgid "Could not be added to policy" +msgstr "ポリシーに追加できませんでした" + +#: ../../enterprise/godmode/policies/policy_agents.php:407 +msgid "Apply to" +msgstr "次へ適用:" + +#: ../../enterprise/godmode/policies/policy_agents.php:454 +#: ../../enterprise/godmode/policies/policy_agents.php:485 +#: ../../enterprise/godmode/policies/policy_agents.php:549 +#: ../../enterprise/godmode/policies/policy_agents.php:814 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 +#: ../../godmode/massive/massive_copy_modules.php:112 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_standby_alerts.php:200 +#: ../../godmode/massive/massive_delete_action_alerts.php:221 +#: ../../godmode/massive/massive_delete_modules.php:386 +#: ../../godmode/massive/massive_add_alerts.php:228 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_delete_alerts.php:311 +#: ../../godmode/massive/massive_add_action_alerts.php:209 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../include/functions_html.php:1258 ../../include/functions_html.php:1410 +#: ../../include/functions_massive_operations.php:138 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:243 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 +#: ../../include/lib/Dashboard/Widgets/events_list.php:447 +msgid "Group recursion" +msgstr "子グループを含める" + +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 +#: ../../enterprise/include/class/Omnishell.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:904 +msgid "Filter agent" +msgstr "エージェントのフィルタ" + +#: ../../enterprise/godmode/policies/policy_agents.php:538 +#: ../../enterprise/godmode/policies/policy_agents.php:670 +msgid "Agents in Policy" +msgstr "ポリシー内エージェント" + +#: ../../enterprise/godmode/policies/policy_agents.php:566 +#: ../../enterprise/godmode/policies/policy_agents.php:1215 +#: ../../enterprise/godmode/setup/setup_auth.php:230 +#: ../../enterprise/godmode/setup/setup_auth.php:509 +#: ../../enterprise/godmode/setup/setup_auth.php:1306 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:311 +#: ../../godmode/reporting/visual_console_builder.wizard.php:362 +#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:231 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:299 +#: ../../include/lib/Dashboard/Widgets/events_list.php:431 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 +#: ../../include/lib/Dashboard/Widgets/tactical.php:331 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 +msgid "Groups" +msgstr "グループ" + +#: ../../enterprise/godmode/policies/policy_agents.php:572 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +msgid "Groups in Policy" +msgstr "ポリシー内グループ" + +#: ../../enterprise/godmode/policies/policy_agents.php:707 +msgid "Add agents to policy" +msgstr "ポリシーへのエージェント追加" + +#: ../../enterprise/godmode/policies/policy_agents.php:734 +msgid "Delete agents from policy" +msgstr "ポリシーからエージェント削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:831 +msgid "Applied" +msgstr "適用済" + +#: ../../enterprise/godmode/policies/policy_agents.php:832 +msgid "Not applied" +msgstr "未適用" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../godmode/agentes/configurar_agente.php:607 +#: ../../godmode/agentes/configurar_agente.php:757 +#: ../../godmode/agentes/agent_manager.php:533 +#: ../../godmode/massive/massive_edit_agents.php:966 +#: ../../godmode/reporting/reporting_builder.item_editor.php:79 +#: ../../godmode/servers/servers.build_table.php:246 +msgid "Remote configuration" +msgstr "リモート設定" + +#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../enterprise/operation/agentes/policy_view.php:394 +msgid "R." +msgstr "R." + +#: ../../enterprise/godmode/policies/policy_agents.php:852 +#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/admin_access_logs.php:50 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/operation/agentes/policy_view.php:66 +#: ../../enterprise/operation/agentes/policy_view.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:257 +#: ../../enterprise/operation/agentes/policy_view.php:262 +#: ../../godmode/agentes/module_manager.php:851 ../../mobile/operation/agents.php:406 +#: ../../include/ajax/alert_list.ajax.php:286 ../../include/ajax/alert_list.ajax.php:311 +#: ../../include/class/AuditLog.class.php:128 ../../include/functions_events.php:2436 +msgid "S." +msgstr "S." + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "Unlinked modules" +msgstr "未リンクモジュール" + +#: ../../enterprise/godmode/policies/policy_agents.php:853 +msgid "U." +msgstr "U." + +#: ../../enterprise/godmode/policies/policy_agents.php:854 +#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/admin_access_logs.php:54 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:128 +msgid "A." +msgstr "A." + +#: ../../enterprise/godmode/policies/policy_agents.php:856 +#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../enterprise/operation/agentes/policy_view.php:69 +msgid "Last application" +msgstr "最後の適用" + +#: ../../enterprise/godmode/policies/policy_agents.php:857 +#: ../../enterprise/godmode/policies/policy_agents.php:1373 +msgid "Add to delete queue" +msgstr "削除キューへの追加" + +#: ../../enterprise/godmode/policies/policy_agents.php:857 +#: ../../enterprise/godmode/policies/policy_agents.php:1373 +msgid "D." +msgstr "削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../godmode/agentes/agent_manager.php:263 +msgid "This agent can be remotely configured" +msgstr "このエージェントはリモートから設定可能です。" + +#: ../../enterprise/godmode/policies/policy_agents.php:953 +msgid "This agent can not be remotely configured" +msgstr "このエージェントはリモート設定できません" + +#: ../../enterprise/godmode/policies/policy_agents.php:1003 +#: ../../enterprise/godmode/policies/policy_agents.php:1482 +msgid "Process deletion" +msgstr "プロセス削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../enterprise/operation/agentes/policy_view.php:83 +msgid "Policy applied" +msgstr "適用済ポリシー" + +#: ../../enterprise/godmode/policies/policy_agents.php:1110 +#: ../../enterprise/godmode/policies/policy_agents.php:1435 +msgid "Need apply" +msgstr "要適用" + +#: ../../enterprise/godmode/policies/policy_agents.php:1122 +#: ../../enterprise/godmode/policies/policy_agents.php:1447 +msgid "Applying policy" +msgstr "ポリシー適用中" + +#: ../../enterprise/godmode/policies/policy_agents.php:1135 +#: ../../enterprise/godmode/policies/policy_agents.php:1458 +msgid "Deleting from policy" +msgstr "ポリシーから削除中" + +#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../godmode/massive/massive_delete_modules.php:87 +#: ../../godmode/massive/massive_add_alerts.php:100 +#: ../../godmode/massive/massive_delete_agents.php:61 +#: ../../godmode/massive/massive_edit_agents.php:214 +#: ../../godmode/massive/massive_delete_alerts.php:113 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../include/functions_visual_map.php:2566 +#: ../../include/functions_visual_map.php:2963 +msgid "No agents selected" +msgstr "エージェントが選択されていません。" + +#: ../../enterprise/godmode/policies/policy_agents.php:1295 +msgid "Add groups to policy" +msgstr "ポリシーへのグループ追加" + +#: ../../enterprise/godmode/policies/policy_agents.php:1317 +msgid "Delete groups from policy" +msgstr "ポリシーからグループを削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "Total agents in policy group" +msgstr "ポリシーグループ内の全エージェント" + +#: ../../enterprise/godmode/policies/policy_agents.php:1370 +msgid "T." +msgstr "T." + +#: ../../enterprise/godmode/policies/policy.php:102 +#: ../../enterprise/include/functions_policies.php:3733 +#: ../../godmode/agentes/configurar_agente.php:530 +msgid "Agent wizard" +msgstr "エージェントウィザード" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 +msgid "SNMP trap editor" +msgstr "SNMP トラップエディタ" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:58 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 +#: ../../godmode/setup/snmp_wizard.php:42 ../../include/functions_snmp_browser.php:556 +msgid "OID" +msgstr "OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:66 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 +msgid "Custom OID" +msgstr "カスタム OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 +#: ../../enterprise/include/functions_reporting_csv.php:2433 +#: ../../enterprise/include/functions_reporting_csv.php:2447 +#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1343 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 +#: ../../include/functions_reports.php:835 ../../include/functions_reporting.php:7163 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "文字列" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_filters.php:59 +#: ../../operation/snmpconsole/snmp_browser.php:90 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 +msgid "SMNP" +msgstr "SNMP" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 +msgid "Successfully added trap custom values" +msgstr "トラップカスタム値を追加しました" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 +msgid "Error adding trap custom values" +msgstr "トラップカスタム値の追加エラー" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 +msgid "This custom OID is preexistent." +msgstr "このカスタム OID はすでに存在します。" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 +msgid "No change in data" +msgstr "データに変更がありません" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 +msgid "Successfully updated trap custom values" +msgstr "トラップカスタム値を更新しました" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 +msgid "Error updating trap custom values" +msgstr "トラップカスタム値の更新エラー" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 +msgid "Successfully deleted trap custom values" +msgstr "トラップカスタム値を削除しました" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 +msgid "Error deleting trap custom values" +msgstr "トラップカスタム値の削除エラー" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "%s/%s トラップをアップロードしました" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 +msgid "Fail uploaded file" +msgstr "ファイルのアップロードに失敗しました" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will not be " +"installed on the system! You can use the MIB uploader for that purpose." +msgstr "" +"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストールされ" +"ません。MIB アップローダはこの目的の範囲で利用できます。" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:361 +msgid "Load MIB" +msgstr "MIBのロード" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:363 +msgid "Upload MIB" +msgstr "MIBをアップロード" + +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "サテライトサーバ管理" + +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:78 +msgid "Policies operations" +msgstr "ポリシー操作" + +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:53 +msgid "SNMP operations" +msgstr "SNMP 操作" + +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:28 +msgid "Satellite operations" +msgstr "サテライト操作" + +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:266 +msgid "Duplicate config" +msgstr "設定の複製" + +#: ../../enterprise/godmode/menu.php:69 ../../godmode/agentes/configurar_agente.php:710 +msgid "Network config manager" +msgstr "ネットワーク設定管理" + +#: ../../enterprise/godmode/menu.php:96 +#: ../../enterprise/include/functions_policies.php:3712 +msgid "Manage policies" +msgstr "ポリシー管理" + +#: ../../enterprise/godmode/menu.php:105 +msgid "Manage agent autoconfiguration" +msgstr "エージェント自動設定管理" + +#: ../../enterprise/godmode/menu.php:114 +#: ../../enterprise/include/class/AgentRepository.class.php:653 +msgid "Software agents repository" +msgstr "ソフトウエアエージェントリポジトリ" + +#: ../../enterprise/godmode/menu.php:147 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "CSVのインポート" + +#: ../../enterprise/godmode/menu.php:151 +#: ../../enterprise/include/class/DeploymentCenter.class.php:613 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 +msgid "Agent deployment" +msgstr "エージェントの展開" + +#: ../../enterprise/godmode/menu.php:161 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 +msgid "Microsoft SQL Server" +msgstr "Microsoft SQL Server" + +#: ../../enterprise/godmode/menu.php:162 +msgid "Mysql" +msgstr "Mysql" + +#: ../../enterprise/godmode/menu.php:163 ../../enterprise/godmode/setup/setup.php:108 +#: ../../enterprise/include/class/Oracle.app.php:411 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:164 +#: ../../enterprise/include/class/VMware.app.php:503 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:165 +#: ../../enterprise/include/class/SAPView.class.php:621 +#: ../../enterprise/include/class/SAPView.class.php:624 +#: ../../include/class/CredentialStore.class.php:948 +msgid "SAP" +msgstr "SAP" + +#: ../../enterprise/godmode/menu.php:166 ../../enterprise/include/class/DB2.app.php:404 +msgid "DB2" +msgstr "DB2" + +#: ../../enterprise/godmode/menu.php:167 +#: ../../enterprise/godmode/wizards/Applications.class.php:163 +#: ../../enterprise/godmode/wizards/Applications.class.php:171 +msgid "Applications" +msgstr "アプリケーション" + +#: ../../enterprise/godmode/menu.php:178 +msgid "Amazon Web Services" +msgstr "Amazon Web Services" + +#: ../../enterprise/godmode/menu.php:179 +msgid "Microsoft Azure" +msgstr "Microsoft Azure" + +#: ../../enterprise/godmode/menu.php:180 +msgid "Google Compute Platform" +msgstr "Google Compute Platform" + +#: ../../enterprise/godmode/menu.php:181 +#: ../../enterprise/godmode/wizards/Cloud.class.php:186 +#: ../../enterprise/godmode/wizards/Cloud.class.php:195 +#: ../../enterprise/include/class/Azure.cloud.php:150 +#: ../../enterprise/include/class/Azure.cloud.php:194 +#: ../../enterprise/include/class/Aws.cloud.php:115 +#: ../../enterprise/include/class/Aws.cloud.php:162 +#: ../../enterprise/include/class/Google.cloud.php:144 +#: ../../enterprise/include/class/Google.cloud.php:188 +msgid "Cloud" +msgstr "クラウド" + +#: ../../enterprise/godmode/menu.php:196 +msgid "New console task" +msgstr "新規コンソールタスク" + +#: ../../enterprise/godmode/menu.php:206 +msgid "Enterprise ACL Setup" +msgstr "Enterprise ACL 設定" + +#: ../../enterprise/godmode/menu.php:215 +msgid "Skins" +msgstr "スキン" + +#: ../../enterprise/godmode/menu.php:225 +msgid "Manage database HA" +msgstr "データベース HA 管理" + +#: ../../enterprise/godmode/menu.php:235 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:59 +msgid "Export targets" +msgstr "エクスポートターゲット" + +#: ../../enterprise/godmode/menu.php:257 +msgid "Log Collector" +msgstr "ログ収集" + +#: ../../enterprise/godmode/menu.php:275 +msgid "Password policy" +msgstr "パスワードポリシー" + +#: ../../enterprise/godmode/menu.php:283 ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:108 ../../godmode/extensions.php:140 +#: ../../godmode/setup/setup.php:317 +msgid "Enterprise" +msgstr "エンタープライズ" + +#: ../../enterprise/godmode/menu.php:296 ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "Omnishell" + +#: ../../enterprise/godmode/menu.php:310 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../include/functions_reports.php:692 +msgid "IPAM" +msgstr "IPAM" + +#: ../../enterprise/godmode/menu.php:319 ../../godmode/setup/setup.php:190 +#: ../../godmode/setup/setup.php:289 +msgid "Module Library" +msgstr "モジュールライブラリ" + +#: ../../enterprise/godmode/menu.php:327 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +msgid "Inventory alerts" +msgstr "インベントリアラート" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 +msgid "Successful update the tags" +msgstr "タグを更新しました" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 +msgid "Unsuccessful update the tags" +msgstr "タグの更新に失敗しました" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 +msgid "Tags unused" +msgstr "未使用タグ" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 +msgid "Tags used" +msgstr "使用中タグ" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Success: create the alerts." +msgstr "成功: アラート作成" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 +msgid "Failed: create the alerts for this modules, please check." +msgstr "失敗: このモジュールのアラート作成、確認してください。" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../include/functions_alerts.php:673 +msgid "Regular expression" +msgstr "正規表現" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 +msgid "Modules in policy" +msgstr "ポリシー内モジュール" + +#: ../../enterprise/godmode/massive/massive_operations.php:95 +msgid "Bulk alerts policy add" +msgstr "一括アラートポリシー追加" + +#: ../../enterprise/godmode/massive/massive_operations.php:96 +msgid "Bulk alerts policy delete" +msgstr "一括アラートポリシー削除" + +#: ../../enterprise/godmode/massive/massive_operations.php:97 +msgid "Bulk tags module policy edit" +msgstr "一括タグモジュールポリシー編集" + +#: ../../enterprise/godmode/massive/massive_operations.php:98 +msgid "Bulk modules policy tags edit" +msgstr "一括モジュールポリシータグ編集" + +#: ../../enterprise/godmode/massive/massive_operations.php:99 +msgid "Bulk modules policy add from agent" +msgstr "エージェントからの一括モジュールポリシー追加" + +#: ../../enterprise/godmode/massive/massive_operations.php:100 +msgid "Bulk modules policy edit" +msgstr "一括モジュールポリシー編集" + +#: ../../enterprise/godmode/massive/massive_operations.php:111 +msgid "Bulk alert SNMP delete" +msgstr "一括SNMPアラート削除" + +#: ../../enterprise/godmode/massive/massive_operations.php:112 +msgid "Bulk alert SNMP edit" +msgstr "一括SNMPアラート編集" + +#: ../../enterprise/godmode/massive/massive_operations.php:123 +msgid "Bulk Satellite modules edit" +msgstr "一括サテライトモジュール編集" + +#: ../../enterprise/godmode/massive/massive_operations.php:136 +#: ../../enterprise/godmode/services/services.massive.elements.php:56 +msgid "Bulk service elements adition" +msgstr "一括サービス要素追加" + +#: ../../enterprise/godmode/massive/massive_operations.php:137 +#: ../../enterprise/godmode/services/services.massive.elements.php:61 +msgid "Bulk service elements edition" +msgstr "一括サービス要素編集" + +#: ../../enterprise/godmode/massive/massive_operations.php:138 +#: ../../enterprise/godmode/services/services.massive.elements.php:57 +msgid "Bulk service elements deletion" +msgstr "一括サービス要素削除" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 +msgid "Successfully copied " +msgstr "コピーしました: " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid "Module " +msgstr "モジュール " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " cannot be copied to " +msgstr " は次へコピーできません: " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 +msgid " policy" +msgstr " ポリシー" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 +#: ../../enterprise/godmode/services/services.elements.php:292 +#: ../../enterprise/godmode/setup/setup_auth.php:69 +#: ../../enterprise/godmode/setup/setup_auth.php:269 +#: ../../enterprise/godmode/setup/setup_auth.php:319 +#: ../../enterprise/godmode/setup/setup_auth.php:380 +#: ../../enterprise/godmode/setup/setup_auth.php:546 +#: ../../enterprise/godmode/setup/setup_auth.php:1175 +#: ../../enterprise/godmode/setup/setup_auth.php:1345 +#: ../../enterprise/godmode/setup/setup_acl.php:572 +#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/include/class/AgentRepository.class.php:693 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1734 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3909 +#: ../../enterprise/operation/services/services.list.php:249 +#: ../../enterprise/operation/services/services.list.php:279 +#: ../../enterprise/operation/services/services.table_services.php:171 +#: ../../enterprise/operation/services/services.table_services.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:327 +#: ../../godmode/agentes/planned_downtime.editor.php:1104 +#: ../../godmode/agentes/agent_manager.php:340 +#: ../../godmode/agentes/agent_manager.php:520 +#: ../../godmode/massive/massive_copy_modules.php:178 +#: ../../godmode/massive/massive_delete_modules.php:407 +#: ../../godmode/massive/massive_delete_modules.php:521 +#: ../../godmode/massive/massive_edit_agents.php:650 +#: ../../godmode/massive/massive_edit_agents.php:1153 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../godmode/massive/massive_edit_modules.php:411 +#: ../../godmode/massive/massive_edit_modules.php:497 +#: ../../godmode/reporting/create_container.php:573 +#: ../../godmode/events/event_edit_filter.php:436 +#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1553 +#: ../../include/ajax/visual_console_builder.ajax.php:1186 +#: ../../include/functions_profile.php:338 ../../include/functions_html.php:2291 +#: ../../include/functions_html.php:2292 ../../include/functions_html.php:2293 +#: ../../include/functions_html.php:2294 ../../include/functions_html.php:2295 +#: ../../include/functions_html.php:2297 ../../include/functions_html.php:2298 +#: ../../include/functions_html.php:2299 ../../include/functions_html.php:2300 +#: ../../include/functions_html.php:2301 ../../include/functions_html.php:2313 +#: ../../include/functions_html.php:2329 ../../include/functions_html.php:2345 +#: ../../include/functions_html.php:2361 ../../include/functions_html.php:2377 +#: ../../include/lib/Dashboard/Widgets/events_list.php:340 +#: ../../operation/events/events.php:1831 ../../operation/events/events.php:2793 +msgid "Any" +msgstr "任意" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 +#: ../../godmode/massive/massive_copy_modules.php:213 +msgid "No modules for this agent" +msgstr "このエージェントにはモジュールがありません。" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 +msgid "To policies" +msgstr "ポリシーへ" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +#: ../../godmode/massive/massive_add_alerts.php:324 +#: ../../godmode/massive/massive_edit_agents.php:1391 +#: ../../godmode/massive/massive_delete_alerts.php:388 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make with " +"less elements." +msgstr "データ処理に失敗しました。管理者に連絡するか要素を少なくしてください。" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 +#: ../../godmode/massive/massive_copy_modules.php:551 +#: ../../include/functions_agents.php:840 +msgid "No source agent to copy" +msgstr "コピー元エージェントがありません。" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 +#: ../../godmode/massive/massive_copy_modules.php:564 +#: ../../include/functions_agents.php:871 +msgid "No modules have been selected" +msgstr "モジュールが選択されていません。" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 +msgid "No destiny policies to copy" +msgstr "コピー先のポリシーがありません" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 +#: ../../godmode/massive/massive_delete_modules.php:372 +#: ../../godmode/massive/massive_edit_modules.php:356 +#: ../../include/functions_reporting_html.php:1719 +msgid "Agent group" +msgstr "エージェントグループ" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 +msgid "Filter module" +msgstr "モジュールのフィルタ" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 +#: ../../godmode/massive/massive_delete_action_alerts.php:241 +#: ../../godmode/massive/massive_delete_modules.php:551 +#: ../../godmode/massive/massive_add_alerts.php:260 +#: ../../godmode/massive/massive_delete_alerts.php:341 +#: ../../godmode/massive/massive_add_action_alerts.php:220 +#: ../../godmode/massive/massive_edit_modules.php:524 +msgid "When select agents" +msgstr "エージェント選択時の動作" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 +#: ../../extensions/agents_modules.php:436 ../../extensions/agents_modules.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:1115 +#: ../../godmode/massive/massive_delete_action_alerts.php:245 +#: ../../godmode/massive/massive_delete_modules.php:555 +#: ../../godmode/massive/massive_add_alerts.php:264 +#: ../../godmode/massive/massive_delete_alerts.php:345 +#: ../../godmode/massive/massive_add_action_alerts.php:224 +#: ../../godmode/massive/massive_edit_modules.php:528 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1892 +#: ../../include/functions_html.php:1669 ../../include/functions_html.php:1688 +#: ../../include/functions_html.php:5583 +msgid "Show common modules" +msgstr "共通モジュールの表示" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 +#: ../../extensions/agents_modules.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:1116 +#: ../../godmode/massive/massive_delete_action_alerts.php:246 +#: ../../godmode/massive/massive_delete_modules.php:556 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_delete_alerts.php:346 +#: ../../godmode/massive/massive_add_action_alerts.php:225 +#: ../../godmode/massive/massive_edit_modules.php:529 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1893 +#: ../../include/functions_html.php:1670 ../../include/functions_html.php:5584 +msgid "Show all modules" +msgstr "全モジュール表示" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 +msgid "Updated modules on database" +msgstr "データベース上のモジュールを更新しました" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 +msgid "Agent configuration files updated" +msgstr "エージェント設定ファイルを更新しました" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 +msgid "No changes have been made." +msgstr "変更されませんでした。" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 +#: ../../enterprise/tools/ipam/ipam.php:300 ../../enterprise/tools/ipam/ipam.php:361 +#: ../../godmode/massive/massive_operations.php:368 +#: ../../godmode/massive/massive_edit_plugins.php:921 +msgid "Massive operations" +msgstr "一括操作" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:41 +#: ../../operation/snmpconsole/snmp_view.php:631 +#: ../../operation/snmpconsole/snmp_view.php:1115 +#: ../../operation/snmpconsole/snmp_view.php:1129 +msgid "Cold start (0)" +msgstr "Cold start (0)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:42 +#: ../../operation/snmpconsole/snmp_view.php:632 +#: ../../operation/snmpconsole/snmp_view.php:1116 +#: ../../operation/snmpconsole/snmp_view.php:1133 +msgid "Warm start (1)" +msgstr "Warm start (1)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:43 +#: ../../operation/snmpconsole/snmp_view.php:633 +#: ../../operation/snmpconsole/snmp_view.php:1117 +#: ../../operation/snmpconsole/snmp_view.php:1137 +msgid "Link down (2)" +msgstr "Link down (2)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:44 +#: ../../operation/snmpconsole/snmp_view.php:634 +#: ../../operation/snmpconsole/snmp_view.php:1118 +#: ../../operation/snmpconsole/snmp_view.php:1141 +msgid "Link up (3)" +msgstr "Link up (3)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:45 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/snmpconsole/snmp_view.php:1119 +#: ../../operation/snmpconsole/snmp_view.php:1145 +msgid "Authentication failure (4)" +msgstr "Authentication failure (4)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../enterprise/godmode/setup/setup_acl.php:475 +#: ../../enterprise/godmode/setup/setup_acl.php:479 +#: ../../enterprise/include/class/Aws.cloud.php:347 +#: ../../enterprise/include/functions_ipam.php:1598 ../../extensions/api_checker.php:176 +#: ../../godmode/groups/configure_group.php:250 +#: ../../godmode/users/configure_user.php:1144 +#: ../../godmode/snmpconsole/snmp_alert.php:46 ../../include/functions_graph.php:3065 +#: ../../include/functions_graph.php:3110 ../../include/functions_graph.php:3151 +#: ../../include/functions_graph.php:3193 ../../include/functions_graph.php:3270 +#: ../../include/functions_graph.php:3414 ../../include/functions_graph.php:3522 +#: ../../include/functions_graph.php:3587 ../../include/functions_graph.php:3754 +#: ../../include/functions_graph.php:3766 ../../include/functions_graph.php:3767 +#: ../../include/functions_graph.php:3770 ../../include/functions_graph.php:3775 +#: ../../include/functions_graph.php:3776 ../../include/functions_graph.php:3779 +#: ../../include/functions_graph.php:4778 ../../include/functions_reporting.php:5186 +#: ../../include/functions_reporting.php:5198 ../../include/functions_reporting.php:5199 +#: ../../include/functions_reporting.php:5202 ../../include/functions_reporting.php:5207 +#: ../../include/functions_reporting.php:5208 ../../include/functions_reporting.php:5211 +#: ../../operation/users/user_edit.php:365 +#: ../../operation/snmpconsole/snmp_statistics.php:218 +#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../operation/snmpconsole/snmp_view.php:636 +#: ../../operation/snmpconsole/snmp_view.php:1120 +#: ../../operation/snmpconsole/snmp_view.php:1149 +#: ../../operation/gis_maps/render_view.php:167 +msgid "Other" +msgstr "その他" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 +#: ../../godmode/snmpconsole/snmp_alert.php:724 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "アラート (%s / %s) を削除しました" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 +#: ../../godmode/snmpconsole/snmp_alert.php:728 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "アラート (%s /%s) を削除できませんでした" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +msgid "You must select a SNMP alert" +msgstr "SNMP アラートを選択する必要があります" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " +"each Custom OIDs/Datas." +msgstr "" +"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/データ " +"フィールドで検索します。" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 +#: ../../godmode/snmpconsole/snmp_alert.php:829 +#: ../../godmode/snmpconsole/snmp_alert.php:1166 ../../include/functions_snmp.php:433 +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Trap type" +msgstr "トラップタイプ" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 +msgid "SNMP Alerts to be deleted" +msgstr "削除するSNMPアラート" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 +msgid "No snmp alert found." +msgstr "snmp アラートがありません。" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#, php-format +msgid "Successfully updated alerts (%s / %s)" +msgstr "アラートを更新しました (%s / %s)" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 +#, php-format +msgid "Unsuccessfully updated alerts (%s / %s)" +msgstr "アラートの更新に失敗しました (%s / %s)" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 +msgid "SNMP Alerts to be edit" +msgstr "編集するSNMPアラート" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 +#: ../../godmode/snmpconsole/snmp_alert.php:781 +msgid "Custom Value/OID" +msgstr "カスタム値/OID" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 +#: ../../godmode/snmpconsole/snmp_alert.php:790 +#: ../../godmode/snmpconsole/snmp_alert.php:1259 +#: ../../operation/snmpconsole/snmp_view.php:854 +msgid "SNMP Agent" +msgstr "SNMPエージェント" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 +#: ../../godmode/snmpconsole/snmp_alert.php:835 +msgid "Single value" +msgstr "単一値" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 +#: ../../godmode/snmpconsole/snmp_alert.php:1075 +#: ../../godmode/alerts/configure_alert_template.php:691 +msgid "Min. number of alerts" +msgstr "最小アラート数" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 +#: ../../godmode/snmpconsole/snmp_alert.php:1078 +#: ../../godmode/alerts/configure_alert_template.php:728 +msgid "Max. number of alerts" +msgstr "最大アラート数" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 +#: ../../godmode/snmpconsole/snmp_alert.php:1097 +msgid "Other value" +msgstr "他の値" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 +#: ../../godmode/snmpconsole/snmp_alert.php:1126 +#: ../../godmode/snmpconsole/snmp_alert.php:1254 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../include/functions_visual_map_editor.php:922 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 +#: ../../include/rest-api/models/VisualConsole/Item.php:2023 +msgid "Position" +msgstr "位置" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 +msgid "Modules unused" +msgstr "未使用モジュール" + +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 +msgid "Modules used" +msgstr "使用中モジュール" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Success: remove the alerts." +msgstr "成功: アラート削除" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "失敗: このモジュールのアラート削除、確認してください。" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 +msgid "Modules agents in policy" +msgstr "ポリシー内のモジュールエージェント" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:554 +msgid "Dynamic Min." +msgstr "動的最小値" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 +#: ../../godmode/massive/massive_edit_modules.php:796 +msgid "SMNP community" +msgstr "SNMPコミュニティ" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:806 +msgid "SNMP OID" +msgstr "SNMP OID" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:821 +#: ../../include/class/AgentWizard.class.php:623 +#: ../../include/functions_snmp_browser.php:702 +msgid "Target IP" +msgstr "対象IP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:856 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:839 +#: ../../godmode/wizards/HostDevices.class.php:1199 +#: ../../include/class/AgentWizard.class.php:734 +msgid "SNMP version" +msgstr "SNMPバージョン" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/wizards/HostDevices.class.php:1259 +#: ../../include/functions_snmp_browser.php:826 +msgid "Auth user" +msgstr "認証ユーザ" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../include/functions_snmp_browser.php:836 +msgid "Auth password" +msgstr "認証パスワード" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:861 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1272 +#: ../../godmode/wizards/HostDevices.class.php:1303 +msgid "The pass length must be eight character minimum." +msgstr "パスワード長は、最低8文字以上必要です。" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:863 +#: ../../godmode/wizards/HostDevices.class.php:1286 +#: ../../include/class/AgentWizard.class.php:868 +#: ../../include/functions_snmp_browser.php:853 +msgid "Privacy method" +msgstr "暗号化方式" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1291 +#: ../../include/functions_snmp_browser.php:856 +msgid "DES" +msgstr "DES" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:864 +#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../include/functions_snmp_browser.php:857 +msgid "AES" +msgstr "AES" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/wizards/HostDevices.class.php:1301 +#: ../../include/class/AgentWizard.class.php:882 +#: ../../include/functions_snmp_browser.php:867 +msgid "Privacy pass" +msgstr "暗号化パスワード" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:867 +#: ../../godmode/wizards/HostDevices.class.php:1317 +#: ../../include/functions_snmp_browser.php:877 +msgid "Auth method" +msgstr "認証方式" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1322 +#: ../../include/class/Diagnostics.class.php:2175 +#: ../../include/functions_snmp_browser.php:880 +msgid "MD5" +msgstr "MD5" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../include/functions_snmp_browser.php:881 +msgid "SHA" +msgstr "SHA" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:869 +#: ../../godmode/wizards/HostDevices.class.php:1332 +#: ../../include/class/AgentWizard.class.php:809 +#: ../../include/functions_snmp_browser.php:890 +msgid "Security level" +msgstr "セキュリティレベル" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:872 +#: ../../godmode/wizards/HostDevices.class.php:1337 +#: ../../include/functions_snmp_browser.php:893 +msgid "Not auth and not privacy method" +msgstr "認証なし、暗号化なし" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:873 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../include/functions_snmp_browser.php:894 +msgid "Auth and not privacy method" +msgstr "認証あり、暗号化なし" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:874 +#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../include/functions_snmp_browser.php:895 +msgid "Auth and privacy method" +msgstr "認証あり、暗号化あり" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 +#: ../../enterprise/operation/agentes/tag_view.php:157 +#: ../../godmode/agentes/module_manager_editor_common.php:271 +#: ../../godmode/agentes/module_manager_editor_common.php:1188 +#: ../../godmode/massive/massive_edit_modules.php:892 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3863 +#: ../../include/ajax/heatmap.ajax.php:196 ../../include/functions_graph.php:5257 +#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:96 +#: ../../operation/agentes/status_monitor.php:518 +msgid "Not assigned" +msgstr "未割当" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/include/functions_ui.php:102 ../../extensions/quick_shell.php:174 +#: ../../godmode/modules/manage_network_components_form_wmi.php:47 +#: ../../godmode/agentes/module_manager_editor_wmi.php:103 +#: ../../godmode/massive/massive_edit_modules.php:906 +#: ../../include/class/CredentialStore.class.php:957 +#: ../../include/class/AgentWizard.class.php:667 +msgid "Username" +msgstr "ユーザ名" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 +#: ../../godmode/agentes/module_manager_editor_common.php:731 +#: ../../godmode/massive/massive_edit_modules.php:912 +msgid "Export target" +msgstr "データのエクスポート" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 +#: ../../enterprise/godmode/services/services.service.php:684 +#: ../../enterprise/godmode/servers/HA_cluster.php:175 +#: ../../enterprise/operation/services/massive/services.create.php:714 +#: ../../enterprise/operation/services/services.list.php:278 +#: ../../enterprise/operation/services/services.table_services.php:200 +#: ../../godmode/massive/massive_edit_modules.php:933 +#: ../../godmode/alerts/alert_view.php:407 +msgid "Mode" +msgstr "モード" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 +#: ../../godmode/massive/massive_edit_modules.php:998 +msgid "Active Counters" +msgstr "アクティブカウンター" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/massive/massive_edit_modules.php:999 +msgid "Inactive Counters" +msgstr "非アクティブカウンター" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "Policy linking status" +msgstr "ポリシーリンク状態" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "This field only has sense in modules adopted by a policy." +msgstr "このフィールドは、ポリシーに関連づけられたモジュールにのみ影響します。" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/massive/massive_edit_modules.php:1067 +msgid "Linked" +msgstr "リンク済" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 +#: ../../godmode/agentes/module_manager.php:1075 +#: ../../godmode/agentes/module_manager.php:1078 +#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 +msgid "Unlinked" +msgstr "未リンク" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 +#: ../../godmode/modules/manage_network_components_form_common.php:315 +#: ../../godmode/agentes/module_manager_editor_common.php:764 +#: ../../godmode/massive/massive_edit_modules.php:1076 +msgid "Discard unknown events" +msgstr "不明イベントを削除" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 +#: ../../godmode/massive/massive_edit_modules.php:1105 +msgid "The module still store data but the alerts and events will be stop" +msgstr "モジュールはデータを保存しますが、アラートとイベントは停止します" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/massive/massive_edit_modules.php:1122 +msgid "Timeout" +msgstr "タイムアウト" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 +#: ../../godmode/massive/massive_edit_modules.php:1131 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "エージェントがモジュールの実行完了を待つ秒数。" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 +#: ../../godmode/modules/manage_network_components_form_network.php:209 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1148 +msgid "TCP send" +msgstr "TCP 送信文字列" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 +#: ../../godmode/modules/manage_network_components_form_network.php:216 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1151 +msgid "TCP receive" +msgstr "TCP 受信文字列" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:133 +#: ../../godmode/massive/massive_edit_modules.php:1154 +msgid "WMI query" +msgstr "WMI クエリ" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/modules/manage_network_components_form_wizard.php:685 +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +#: ../../godmode/massive/massive_edit_modules.php:1157 +msgid "Key string" +msgstr "Key 文字列" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +#: ../../godmode/massive/massive_edit_modules.php:1160 +msgid "Field number" +msgstr "フィールド番号" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:346 +#: ../../godmode/massive/massive_edit_modules.php:1163 +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Plugin" +msgstr "プラグイン" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 +#: ../../godmode/modules/manage_network_components_form_network.php:223 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:480 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/alerts/configure_alert_command.php:246 +#: ../../godmode/alerts/alert_actions.php:272 ../../godmode/alerts/alert_actions.php:327 +#: ../../godmode/alerts/configure_alert_action.php:247 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 +#: ../../godmode/servers/plugin.php:817 +#: ../../include/class/ManageNetScanScripts.class.php:434 +#: ../../include/class/ExternalTools.class.php:353 +msgid "Command" +msgstr "コマンド" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../godmode/modules/manage_network_components_form_network.php:242 +#: ../../godmode/agentes/module_manager_editor_network.php:459 +#: ../../godmode/massive/massive_edit_modules.php:1198 +msgid "Credential identifier" +msgstr "認証情報識別子" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 +#: ../../godmode/modules/manage_network_components_form_network.php:258 +#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/massive/massive_edit_modules.php:1213 +msgid "Inherited" +msgstr "継承" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 +#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1214 +msgid "Linux" +msgstr "Linux" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/massive/massive_edit_modules.php:1215 +msgid "Windows" +msgstr "Windows" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 +#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/massive/massive_edit_modules.php:1218 +msgid "Target OS" +msgstr "対象 OS" + +#: ../../enterprise/godmode/admin_access_logs.php:78 +msgid "Show extended info" +msgstr "拡張情報表示" + +#: ../../enterprise/godmode/admin_access_logs.php:99 +msgid "" +"The security check cannot be performed. There are no data in tsession_extended to " +"check the hash." +msgstr "" +"セキュリティチェックを実行できません。ハッシュをチェックするための tsession_extended " +"にデータがありません。" + +#: ../../enterprise/godmode/admin_access_logs.php:108 +msgid "Security check is ok." +msgstr "セキュリティチェックは正常です。" + +#: ../../enterprise/godmode/admin_access_logs.php:113 +msgid "Security check is fail." +msgstr "セキュリティチェックに失敗しました。" + +#: ../../enterprise/godmode/admin_access_logs.php:208 +msgid "Extended info:" +msgstr "拡張情報:" + +#: ../../enterprise/godmode/admin_access_logs.php:216 +msgid "Changes:" +msgstr "変更点:" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 +msgid "Group acl" +msgstr "グループ ACL" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2674 +msgid "Condition" +msgstr "状態" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 +msgid "Alert groups" +msgstr "アラートグループ" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1081 +#: ../../godmode/snmpconsole/snmp_alert.php:1130 +#: ../../godmode/alerts/configure_alert_template.php:749 +msgid "Disable event" +msgstr "イベント無効化" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 +#: ../../godmode/snmpconsole/snmp_alert.php:94 +msgid "Update alert" +msgstr "アラート設定" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 +#: ../../godmode/alerts/alert_list.builder.php:204 +#: ../../include/class/AgentsAlerts.class.php:396 +msgid "Add alert" +msgstr "アラートの追加" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 +#: ../../godmode/massive/massive_add_alerts.php:168 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/alerts/alert_list.php:271 +msgid "Successfully added" +msgstr "追加されました。" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +msgid "Inventory alert filters" +msgstr "インベントリアラートフィルタ" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 +msgid "Alert name" +msgstr "アラート名" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 +#: ../../enterprise/operation/agentes/policy_view.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1275 ../../godmode/alerts/alert_view.php:99 +#: ../../include/functions_reporting_html.php:5368 +#: ../../include/ajax/alert_list.ajax.php:295 ../../include/ajax/alert_list.ajax.php:320 +#: ../../include/functions_treeview.php:455 +#: ../../include/class/AgentsAlerts.class.php:893 +msgid "Last fired" +msgstr "通知日時" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 +#: ../../enterprise/operation/agentes/policy_view.php:348 +#: ../../godmode/alerts/alert_list.list.php:576 ../../godmode/alerts/alert_view.php:108 +#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1256 +#: ../../include/class/AgentsAlerts.class.php:940 +#: ../../include/functions_reporting.php:12647 +msgid "Alert disabled" +msgstr "無効アラート" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 +#: ../../godmode/snmpconsole/snmp_alert.php:1394 +#: ../../godmode/alerts/alert_list.list.php:687 +msgid "Delete action" +msgstr "アクションの削除" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 +msgid "Disable alert" +msgstr "アラート無効化" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 +msgid "Enable alert" +msgstr "アラート有効化" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +msgid "Delete alert" +msgstr "アラート削除" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 +msgid "There are no defined inventory alerts" +msgstr "定義済のインベントリアラートがありません" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:67 +msgid "Inventory alert list" +msgstr "インベントリアラート一覧" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:71 +msgid "Inventory alert builder" +msgstr "インベントリアラートビルダ" + +#: ../../enterprise/godmode/services/services.massive.meta.php:56 +#: ../../enterprise/godmode/services/services.massive.elements.php:93 +#: ../../godmode/agentes/agent_manager.php:550 +#: ../../godmode/massive/massive_edit_agents.php:985 +msgid "Not available" +msgstr "利用できません" + +#: ../../enterprise/godmode/services/services.service.php:109 +msgid "Service already exists." +msgstr "サービスは既に存在します。" + +#: ../../enterprise/godmode/services/services.service.php:120 +#: ../../enterprise/operation/services/massive/services.create.php:112 +msgid "No name specified for the service" +msgstr "サービスに名前がありません" + +#: ../../enterprise/godmode/services/services.service.php:131 +#: ../../enterprise/operation/services/massive/services.create.php:118 +msgid "No description specified for the service" +msgstr "サービスに説明がありません" + +#: ../../enterprise/godmode/services/services.service.php:142 +#: ../../enterprise/operation/services/massive/services.create.php:124 +msgid "You must specify an agent to store the service" +msgstr "サービスを保存するエージェントを指定する必要があります" + +#: ../../enterprise/godmode/services/services.service.php:201 +msgid "Error creating service: " +msgstr "サービス作成エラー: " + +#: ../../enterprise/godmode/services/services.service.php:210 +#: ../../enterprise/godmode/services/services.service.php:316 +msgid "New Service" +msgstr "新規サービス" + +#: ../../enterprise/godmode/services/services.service.php:216 +msgid "Service created successfully" +msgstr "サービスを作成しました" + +#: ../../enterprise/godmode/services/services.service.php:285 +#: ../../enterprise/include/functions_services.php:728 +msgid "Error updating service: " +msgstr "サービス更新エラー: " + +#: ../../enterprise/godmode/services/services.service.php:296 +msgid "Service updated successfully" +msgstr "サービスを更新しました" + +#: ../../enterprise/godmode/services/services.service.php:309 +#: ../../enterprise/godmode/services/services.service.php:354 +#: ../../enterprise/operation/services/services.service.php:55 +#: ../../enterprise/operation/services/services.service_map.php:62 +msgid "Not found" +msgstr "見つかりません" + +#: ../../enterprise/godmode/services/services.service.php:369 +msgid "Dynamic elements are not affected by cascade protection" +msgstr "動的要素は関連障害検知抑制の影響を受けません" + +#: ../../enterprise/godmode/services/services.service.php:399 +#: ../../enterprise/godmode/services/services.elements.php:711 +#: ../../enterprise/operation/services/services.php:93 +#: ../../enterprise/operation/services/services.php:214 +msgid "Services list" +msgstr "サービス一覧" + +#: ../../enterprise/godmode/services/services.service.php:413 +#: ../../enterprise/godmode/services/services.elements.php:725 +#: ../../enterprise/operation/services/services.php:108 +msgid "Config Service" +msgstr "サービス設定" + +#: ../../enterprise/godmode/services/services.service.php:430 +#: ../../enterprise/godmode/services/services.elements.php:742 +#: ../../enterprise/operation/services/services.php:126 +msgid "Config Elements" +msgstr "要素編集" + +#: ../../enterprise/godmode/services/services.service.php:444 +#: ../../enterprise/godmode/services/services.elements.php:756 +#: ../../enterprise/operation/services/services.php:141 +msgid "View Service" +msgstr "サービス参照" + +#: ../../enterprise/godmode/services/services.service.php:455 +#: ../../enterprise/godmode/services/services.elements.php:767 +#: ../../enterprise/operation/services/services.php:153 +#: ../../include/lib/Dashboard/Widgets/service_map.php:452 +msgid "Service map" +msgstr "サービスマップ" + +#: ../../enterprise/godmode/services/services.service.php:470 +#: ../../enterprise/godmode/services/services.elements.php:782 +#: ../../enterprise/operation/services/services.php:168 +msgid "Add items" +msgstr "アイテムの追加" + +#: ../../enterprise/godmode/services/services.service.php:483 +#: ../../enterprise/godmode/services/services.elements.php:795 +#: ../../enterprise/operation/services/services.php:181 +msgid "Edit items" +msgstr "アイテム編集" + +#: ../../enterprise/godmode/services/services.service.php:495 +#: ../../enterprise/godmode/services/services.elements.php:807 +#: ../../enterprise/operation/services/services.php:193 +#: ../../godmode/reporting/reporting_builder.list_items.php:757 +#: ../../godmode/reporting/reporting_builder.list_items.php:761 +msgid "Delete items" +msgstr "アイテムの削除" + +#: ../../enterprise/godmode/services/services.service.php:552 +msgid "No Services or concrete action" +msgstr "サービスまたは具体的なアクションがありません" + +#: ../../enterprise/godmode/services/services.service.php:571 +msgid "Random name" +msgstr "ランダムな名前" + +#: ../../enterprise/godmode/services/services.service.php:603 +#: ../../enterprise/operation/services/massive/services.create.php:683 +msgid "This group will be used also to control access to this service and its elements." +msgstr "" +"このグループは、このサービスとその要素へのアクセスを制御するためにも使用されます。" + +#: ../../enterprise/godmode/services/services.service.php:619 +msgid "Server assigned" +msgstr "割当サーバ" + +#: ../../enterprise/godmode/services/services.service.php:620 +msgid "Selected Prediction server will be assigned to evaluate the service." +msgstr "選択した予測サーバはサービスの評価に割り当てられます。" + +#: ../../enterprise/godmode/services/services.service.php:641 +msgid "Evaluation interval" +msgstr "評価間隔" + +#: ../../enterprise/godmode/services/services.service.php:667 +#: ../../enterprise/operation/services/massive/services.create.php:698 +msgid "Agent to store data" +msgstr "データを保存するエージェント" + +#: ../../enterprise/godmode/services/services.service.php:691 +#: ../../enterprise/include/class/VMware.app.php:676 +#: ../../enterprise/include/class/DB2.app.php:545 +#: ../../enterprise/include/class/Aws.S3.php:515 +#: ../../enterprise/include/class/SAP.app.php:522 +#: ../../enterprise/include/class/Aws.cloud.php:1327 +#: ../../enterprise/include/class/MySQL.app.php:567 +#: ../../enterprise/include/class/Oracle.app.php:552 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 +#: ../../enterprise/include/functions_ipam.php:1356 +#: ../../enterprise/operation/services/massive/services.create.php:722 +#: ../../enterprise/operation/services/services.list.php:275 +#: ../../enterprise/operation/services/services.table_services.php:197 +#: ../../enterprise/tools/ipam/ipam_list.php:696 +#: ../../godmode/wizards/HostDevices.class.php:807 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:714 +#: ../../include/class/CustomNetScan.class.php:529 +msgid "Manual" +msgstr "マニュアル" + +#: ../../enterprise/godmode/services/services.service.php:692 +#: ../../enterprise/operation/services/massive/services.create.php:723 +#: ../../enterprise/operation/services/services.list.php:276 +#: ../../enterprise/operation/services/services.table_services.php:198 +msgid "Smart" +msgstr "スマート" + +#: ../../enterprise/godmode/services/services.service.php:709 +#: ../../enterprise/operation/services/massive/services.create.php:740 +msgid "In smart mode, thresholds are percentual." +msgstr "スマートモードでは、しきい値はパーセントです。" + +#: ../../enterprise/godmode/services/services.service.php:759 +#: ../../enterprise/operation/services/massive/services.create.php:823 +msgid "Unknown elements as critical" +msgstr "障害と認識する不明要素" + +#: ../../enterprise/godmode/services/services.service.php:789 +msgid "Asynchronous mode" +msgstr "非同期モード" + +#: ../../enterprise/godmode/services/services.service.php:799 +#: ../../enterprise/operation/services/massive/services.create.php:853 +msgid "Cascade protection enabled" +msgstr "関連障害検知抑制が有効" + +#: ../../enterprise/godmode/services/services.service.php:809 +msgid "Enable Sunburst" +msgstr "サンバーストの有効化" + +#: ../../enterprise/godmode/services/services.service.php:819 +msgid "General Data" +msgstr "一般データ" + +#: ../../enterprise/godmode/services/services.service.php:829 +#: ../../enterprise/operation/services/massive/services.create.php:866 +msgid "Calculate continuous SLA" +msgstr "連続 SLA 計算" + +#: ../../enterprise/godmode/services/services.service.php:839 +#: ../../enterprise/operation/services/massive/services.create.php:876 +msgid "S.L.A. interval" +msgstr "SLA 間隔" + +#: ../../enterprise/godmode/services/services.service.php:853 +#: ../../enterprise/operation/services/massive/services.create.php:890 +msgid "S.L.A. limit" +msgstr "SLA 制限" + +#: ../../enterprise/godmode/services/services.service.php:865 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../enterprise/include/functions_reporting_csv.php:1527 +#: ../../include/functions_reports.php:699 ../../include/functions_reporting.php:959 +msgid "S.L.A." +msgstr "SLA" + +#: ../../enterprise/godmode/services/services.service.php:874 +msgid "" +"Here are described the alert templates, which will use their default actions.\n" +"\t\tYou can modify the default behaviour editing alerts in the agent who stores data " +"and alert definitions about the service and the SLA status." +msgstr "" +"アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" +"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでアラー" +"トを編集することによりデフォルトの動作を変更できます。" + +#: ../../enterprise/godmode/services/services.service.php:900 +#: ../../enterprise/operation/services/massive/services.create.php:920 +msgid "Warning service alert" +msgstr "警告サービスアラート" + +#: ../../enterprise/godmode/services/services.service.php:912 +#: ../../enterprise/operation/services/massive/services.create.php:932 +msgid "Critical service alert" +msgstr "障害サービスアラート" + +#: ../../enterprise/godmode/services/services.service.php:924 +#: ../../enterprise/operation/services/massive/services.create.php:944 +msgid "Unknown service alert" +msgstr "不明サービスアラート" + +#: ../../enterprise/godmode/services/services.service.php:936 +#: ../../enterprise/operation/services/massive/services.create.php:956 +msgid "S.L.A. critical service alert" +msgstr "SLA 障害サービスアラート" + +#: ../../enterprise/godmode/services/services.service.php:1039 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2568 +#: ../../enterprise/include/functions_reporting_csv.php:1585 +#: ../../enterprise/include/functions_reporting_csv.php:1631 +#: ../../enterprise/include/functions_reporting_csv.php:1949 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 +#: ../../enterprise/include/class/DatabaseHA.class.php:390 +#: ../../enterprise/include/class/DatabaseHA.class.php:625 +#: ../../enterprise/include/class/DatabaseHA.class.php:727 +#: ../../enterprise/include/class/AgentRepository.class.php:941 +#: ../../enterprise/include/class/LogSource.class.php:844 +#: ../../enterprise/include/class/ManageBackups.class.php:292 +#: ../../enterprise/include/class/ManageBackups.class.php:445 +#: ../../enterprise/include/functions_reporting.php:1883 +#: ../../enterprise/include/functions_reporting.php:2930 +#: ../../enterprise/include/functions_reporting.php:3186 +#: ../../enterprise/include/functions_reporting.php:3918 +#: ../../enterprise/include/functions_reporting.php:4187 +#: ../../enterprise/include/functions_reporting.php:4833 +#: ../../enterprise/include/functions_reporting.php:6150 +#: ../../enterprise/include/functions_reporting.php:6188 +#: ../../enterprise/include/functions_services.php:2084 +#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:370 +#: ../../godmode/setup/setup_general.php:789 ../../godmode/setup/setup_general.php:807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2685 +#: ../../include/functions_reporting_html.php:663 +#: ../../include/functions_reporting_html.php:858 +#: ../../include/functions_reporting_html.php:3461 +#: ../../include/functions_reporting_html.php:4760 ../../include/functions_db.php:1933 +#: ../../include/class/ConfigPEN.class.php:668 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/SatelliteAgent.class.php:672 +#: ../../include/class/HelpFeedBack.class.php:369 +#: ../../include/class/CredentialStore.class.php:1241 +#: ../../include/class/ModuleTemplates.class.php:1381 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:6040 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:362 +#: ../../operation/agentes/pandora_networkmap.editor.php:602 +#: ../../operation/snmpconsole/snmp_browser.php:645 +msgid "OK" +msgstr "OK" + +#: ../../enterprise/godmode/services/services.service.php:1042 +msgid "" +"This change in the service configuration will delete the history of the service " +"modules. Do you wish to continue?" +msgstr "" +"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しますか?" + +#: ../../enterprise/godmode/services/services.service.php:1044 +msgid "" +"This change in the service configuration will prevent the SLA modules from being " +"created. Do you wish to continue?" +msgstr "" +"このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行しますか?" + +#: ../../enterprise/godmode/services/services.elements.php:72 +msgid "Invalid service" +msgstr "不正なサービスです" + +#: ../../enterprise/godmode/services/services.elements.php:99 +#: ../../enterprise/include/functions_reporting.php:2536 +#: ../../enterprise/include/functions_reporting.php:3480 +#: ../../enterprise/include/functions_reporting.php:4455 +#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1069 +#: ../../include/functions_reporting.php:9261 +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Dynamic" +msgstr "動的" + +#: ../../enterprise/godmode/services/services.elements.php:222 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Custom field name" +msgstr "カスタムフィールド名" + +#: ../../enterprise/godmode/services/services.elements.php:234 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 +msgid "Custom field value" +msgstr "カスタムフィールド値" + +#: ../../enterprise/godmode/services/services.elements.php:252 +msgid "Add custom field match" +msgstr "カスタムフィールドマッチを追加" + +#: ../../enterprise/godmode/services/services.elements.php:258 +msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." +msgstr "" +"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視します。" + +#: ../../enterprise/godmode/services/services.elements.php:263 +msgid "MySQL Regular expressions case sensitive." +msgstr "MySQL 正規表現では大文字と小文字が区別されます。" + +#: ../../enterprise/godmode/services/services.elements.php:269 +msgid "Matching objects type" +msgstr "一致するオブジェクトタイプ" + +#: ../../enterprise/godmode/services/services.elements.php:284 +msgid "Filter by group" +msgstr "グループでフィルタする" + +#: ../../enterprise/godmode/services/services.elements.php:296 +msgid "Use regular expresions selectors" +msgstr "正規表現セレクターを使用する" + +#: ../../enterprise/godmode/services/services.elements.php:304 +msgid "Having agent name" +msgstr "エージェント名あり" + +#: ../../enterprise/godmode/services/services.elements.php:312 +msgid "Having module name" +msgstr "モジュール名あり" + +#: ../../enterprise/godmode/services/services.elements.php:322 +msgid "Having custom fields" +msgstr "カスタムフィールドあり" + +#: ../../enterprise/godmode/services/services.elements.php:333 +msgid "Apply rules on this server" +msgstr "このサーバにルールを適用" + +#: ../../enterprise/godmode/services/services.elements.php:352 +msgid "Weights" +msgstr "ウェイト" + +#: ../../enterprise/godmode/services/services.elements.php:357 +msgid "In smart mode weights are automatically calculated." +msgstr "スマートモードでは、ウエイトは自動的に計算されます。" + +#: ../../enterprise/godmode/services/services.elements.php:455 +#: ../../enterprise/godmode/services/services.elements.php:465 +#: ../../enterprise/godmode/services/services.elements.php:472 +msgid "Selected agent not found." +msgstr "選択したエージェントが見つかりません。" + +#: ../../enterprise/godmode/services/services.elements.php:478 +#: ../../enterprise/godmode/services/services.elements.php:490 +#, php-format +msgid "Selected module not found in %s." +msgstr "選択したモジュールが %s に見つかりません。" + +#: ../../enterprise/godmode/services/services.elements.php:499 +msgid "Selected service not found." +msgstr "選択したサービスが見つかりません。" + +#: ../../enterprise/godmode/services/services.elements.php:516 +msgid "Selected service could generate a loop" +msgstr "選択したサービスはループを起こす可能性があります" + +#: ../../enterprise/godmode/services/services.elements.php:528 +#, php-format +msgid "Failed adding service child: %s" +msgstr "子サービスの追加に失敗しました: %s" + +#: ../../enterprise/godmode/services/services.elements.php:571 +#, php-format +msgid "Selected rules are not valid: %s." +msgstr "選択したルールが不正です: %s。" + +#: ../../enterprise/godmode/services/services.elements.php:579 +msgid "Invalid element type." +msgstr "要素タイプが不正です。" + +#: ../../enterprise/godmode/services/services.elements.php:605 +msgid "Element registered successfully" +msgstr "要素を登録しました" + +#: ../../enterprise/godmode/services/services.elements.php:651 +#, php-format +msgid "Error deleting element: %s" +msgstr "要素削除エラー: %s" + +#: ../../enterprise/godmode/services/services.elements.php:821 +#: ../../operation/search_maps.php:30 +msgid "Elements" +msgstr "エレメント" + +#: ../../enterprise/godmode/services/services.elements.php:849 +#: ../../enterprise/include/functions_services.php:2019 +msgid "Edit service elements" +msgstr "サービス要素編集" + +#: ../../enterprise/godmode/services/services.elements.php:883 +#: ../../enterprise/godmode/services/services.elements.php:894 +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 +#: ../../enterprise/include/class/AgentRepository.class.php:885 +#: ../../enterprise/include/class/Omnishell.class.php:1083 +#: ../../enterprise/include/class/LogSource.class.php:788 +#: ../../enterprise/include/class/ManageBackups.class.php:473 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1059 +#: ../../include/ajax/snmp_browser.ajax.php:260 ../../include/functions_ui.php:294 +#: ../../include/class/ConfigPEN.class.php:737 +#: ../../include/class/SatelliteAgent.class.php:613 +#: ../../include/class/HelpFeedBack.class.php:359 +#: ../../include/class/Diagnostics.class.php:2087 +#: ../../include/class/CredentialStore.class.php:1185 +#: ../../include/class/ModuleTemplates.class.php:1417 +#: ../../include/class/WebServerModuleDebug.class.php:359 +#: ../../include/class/AgentWizard.class.php:5834 +#: ../../operation/visual_console/view.php:806 +msgid "Success" +msgstr "成功" + +#: ../../enterprise/godmode/services/services.elements.php:885 +msgid "Add element" +msgstr "要素追加" + +#: ../../enterprise/godmode/services/services.elements.php:896 +msgid "Edit element" +msgstr "要素編集" + +#: ../../enterprise/godmode/setup/setup_history.php:88 +msgid "Method does not exist" +msgstr "メソッドがありません" + +#: ../../enterprise/godmode/setup/setup_history.php:241 +msgid "Configure connection target" +msgstr "接続対象設定" + +#: ../../enterprise/godmode/setup/setup_history.php:255 +msgid "Active to historical settings" +msgstr "ヒストリ設定有効化" + +#: ../../enterprise/godmode/setup/setup_history.php:274 +#, php-format +msgid "" +"Data will be available in active database as time as days you specify here. Older " +"information will be sent to historical database. Note data will be purged from active " +"database after %d days." +msgstr "" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒストリ" +"データベースに送信されます。 データは %d 日後にメインのデータベースから削除されること" +"に注意してください。" + +#: ../../enterprise/godmode/setup/setup_history.php:280 +msgid "Data days old to keep in active database" +msgstr "メインのデータベースに保持するデータの日数" + +#: ../../enterprise/godmode/setup/setup_history.php:298 +#, php-format +msgid "" +"String data will be available in active database as time as days you specify here. " +"Older information will be sent to historical database. Note data will be purged from " +"active database after %d days." +msgstr "" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒストリ" +"データベースに送信されます。 データは %d 日後にメインのデータベースから削除されること" +"に注意してください。" + +#: ../../enterprise/godmode/setup/setup_history.php:305 +msgid "String data days old to keep in active database" +msgstr "メインのデータベースに保持する文字列データの日数" + +#: ../../enterprise/godmode/setup/setup_history.php:320 +msgid "" +"Number of rows to be sent to historical database each 'delay' seconds. If you " +"experience issues running pandora_db, try decreasing this value." +msgstr "" +"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題が発生し" +"た場合は、この値を減らしてみてください。" + +#: ../../enterprise/godmode/setup/setup_history.php:324 +msgid "Transference block size (Step)" +msgstr "転送ブロックサイズ (ステップ)" + +#: ../../enterprise/godmode/setup/setup_history.php:329 +msgid "Delay between transferences (seconds)" +msgstr "転送間の遅延 (秒)" + +#: ../../enterprise/godmode/setup/setup_history.php:334 +msgid "Historical data settings" +msgstr "ヒストリデータ設定" + +#: ../../enterprise/godmode/setup/setup_history.php:336 +msgid "Maximum historical data age (days)" +msgstr "最大ヒストリデータ保存期間 (日)" + +#: ../../enterprise/godmode/setup/setup_history.php:341 +msgid "Maximum historical string data age (days)" +msgstr "最大ヒストリ文字列データ保存期間 (日)" + +#: ../../enterprise/godmode/setup/setup_history.php:346 +msgid "Data older than 'days' is compacted in order to improve disk utilization." +msgstr "設定した '日' より古いデータは、ディスク使用率を向上させるために圧縮されます。" + +#: ../../enterprise/godmode/setup/setup_history.php:351 +msgid "" +"Automatically create partitions on specific database IDB files (tagente_datos, " +"tagente_datos_string, tevento). Monthly partitions." +msgstr "" +"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)にパー" +"ティションを自動的に作成します。 月次のパーティションです。" + +#: ../../enterprise/godmode/setup/setup_history.php:355 +msgid "Automatic partition of big tables." +msgstr "大きなテーブルの自動パーティション" + +#: ../../enterprise/godmode/setup/setup_history.php:366 +msgid "Historical events settings" +msgstr "ヒストリイベント設定" + +#: ../../enterprise/godmode/setup/setup_history.php:377 +#, php-format +msgid "" +"Events will remain in active database a maximum of specified days, then they will be " +"transferred to historical database. Note events will be purged from active database " +"after %d days." +msgstr "" +"イベントは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリデータ" +"ベースに転送されます。 イベントは %d 日後にメインのデータベースから削除されることに注" +"意してください。" + +#: ../../enterprise/godmode/setup/setup_history.php:383 +msgid "Events days old to keep in active database" +msgstr "メインのデータベースに保持するイベントの日数" + +#: ../../enterprise/godmode/setup/setup_history.php:398 +msgid "Events will be purged from historical database after specified days." +msgstr "イベントは、指定された日後にヒストリデータベースから削除されます。" + +#: ../../enterprise/godmode/setup/setup_history.php:402 +msgid "Maximum historical events age (days)" +msgstr "最大ヒストリイベント保持期間 (日)" + +#: ../../enterprise/godmode/setup/setup_history.php:419 +msgid "Enable historical events" +msgstr "ヒストリイベント有効化" + +#: ../../enterprise/godmode/setup/setup_history.php:431 +msgid "Customize settings" +msgstr "設定カスタマイズ" + +#: ../../enterprise/godmode/setup/setup_history.php:443 +msgid "Enable historical database" +msgstr "ヒストリデータベース有効化" + +#: ../../enterprise/godmode/setup/setup_history.php:467 +msgid "History database connection is available." +msgstr "ヒストリデータベース接続が可能です。" + +#: ../../enterprise/godmode/setup/setup_history.php:474 +#, php-format +msgid "History database connection failed: %s" +msgstr "ヒストリデータベース接続に失敗しました: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:490 +msgid "History database schema is installed." +msgstr "ヒストリデータベーススキーマをインストールしました。" + +#: ../../enterprise/godmode/setup/setup_history.php:499 +#, php-format +msgid "Database is not installed: %s" +msgstr "データベースがインストールされていません: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:504 +msgid "Install database schema" +msgstr "データベーススキーマのインストール" + +#: ../../enterprise/godmode/setup/setup_history.php:505 +msgid "This action will install the schema into the target, are you sure?" +msgstr "この操作は対象にスキーマをインストールします。よろしいですか?" + +#: ../../enterprise/godmode/setup/setup_history.php:527 +msgid "History database schema is up to date with active database." +msgstr "メインのデータベースでヒストリデータベーススキーマを更新します。" + +#: ../../enterprise/godmode/setup/setup_history.php:536 +#, php-format +msgid "Database is not updated: %s" +msgstr "データベースが更新されていません: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:551 +msgid "Current schema: " +msgstr "現在のスキーマ: " + +#: ../../enterprise/godmode/setup/setup_history.php:558 +msgid "Upgrade database schema" +msgstr "データベーススキーマのアップグレード" + +#: ../../enterprise/godmode/setup/setup_history.php:559 +msgid "" +"This action will schedule the installation or upgrade of database schema into the " +"target, are you sure?" +msgstr "" +"このアクションにより、データベーススキーマの対象へのインストールまたはアップグレードが" +"スケジュールされます。よろしいですか?" + +#: ../../enterprise/godmode/setup/setup_history.php:573 +#: ../../godmode/setup/performance.php:707 +msgid "Database maintenance status" +msgstr "データベースメンテナンス状態" + +#: ../../enterprise/godmode/setup/setup_history.php:599 +msgid "" +"By enabling historical database, target connection will be tested. If needed, " +"database schema will be applied on your selected target, do you want to proceed?" +msgstr "" +"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応じて、" +"データベーススキーマが選択した対象に適用されます。続行しますか?" + +#: ../../enterprise/godmode/setup/setup_history.php:600 +msgid "" +"Changing historical database target, schema will be recreated in new one, but old " +"data will remain in previous node, unlinked from this console and not maintained, do " +"you want to proceed?" +msgstr "" +"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されますが、古い" +"データは前のノードに残り、このコンソールからリンク解除され、維持されません。続行します" +"か?" + +#: ../../enterprise/godmode/setup/setup_history.php:602 +#, php-format +msgid "" +"Disabling historical database, you will not keep any data older than %d days. Are you " +"sure?" +msgstr "" +"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろしいです" +"か?" + +#: ../../enterprise/godmode/setup/setup_history.php:606 +#, php-format +msgid "" +"Historical database allows you to keep data older than %d days. This action will " +"produce no changes. Historical database will remain disabled." +msgstr "" +"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクションでは変" +"更は行われません。ヒストリデータベースは無効のままになります。" + +#: ../../enterprise/godmode/setup/setup_history.php:611 +msgid "" +"By changing historical database target, the new connection will be tested. If needed, " +"database schema will be applied on your selected target. Information stored in " +"previous configuration will be IGNORED, do you want to proceed?" +msgstr "" +"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必要に応" +"じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存された情報は" +"無視されます。続行しますか?" + +#: ../../enterprise/godmode/setup/setup_history.php:614 +msgid "Please ensure all fields matches your needs." +msgstr "すべてのフィールドがニーズに一致していることを確認してください。" + +#: ../../enterprise/godmode/setup/setup_history.php:759 +msgid "Update scheduled." +msgstr "更新が予定されています。" + +#: ../../enterprise/godmode/setup/setup.php:47 ../../include/functions_config.php:403 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "SNMP トラップのエージェント(存在する場合)への転送" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "はい、ステータスを変更します" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "はい、ステータスは変更しません" + +#: ../../enterprise/godmode/setup/setup.php:77 ../../include/functions_config.php:407 +msgid "Use Enterprise ACL System" +msgstr "エンタープライズ ACL システムを利用する" + +#: ../../enterprise/godmode/setup/setup.php:104 +msgid "Metaconsole DB engine" +msgstr "メタコンソール DB エンジン" + +#: ../../enterprise/godmode/setup/setup.php:107 +#: ../../enterprise/include/class/MySQL.app.php:420 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:122 +msgid "Metaconsole DB host" +msgstr "メタコンソール DB ホスト" + +#: ../../enterprise/godmode/setup/setup.php:136 +msgid "Metaconsole DB name" +msgstr "メタコンソール DB 名" + +#: ../../enterprise/godmode/setup/setup.php:150 +msgid "Metaconsole DB user" +msgstr "メタコンソール DB ユーザ" + +#: ../../enterprise/godmode/setup/setup.php:164 +msgid "Metaconsole DB password" +msgstr "メタコンソール DB パスワード" + +#: ../../enterprise/godmode/setup/setup.php:191 +msgid "Events Configuration Information" +msgstr "イベント設定情報" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "" +" If you are replicating events, events validated or deleted on the metaconsole WILL " +"NOT be deleted or validated here. This option is just to allow local pandora users to " +"see events, but not to operate with them. Operation, when event replication is " +"enabled, should be done only in metaconsole" +msgstr "" +" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここでは削除" +"または検証されません。 このオプションは、ローカルの pandora ユーザがイベントを表示でき" +"るようにするためだけのものであり、イベントを操作するためのものではありません。イベント" +"の複製が有効になっている場合の操作は、メタコンソールでのみ実行する必要があります。" + +#: ../../enterprise/godmode/setup/setup.php:198 ../../include/functions_config.php:464 +msgid "Inventory changes blacklist" +msgstr "インベントリブラックリスト変更" + +#: ../../enterprise/godmode/setup/setup.php:261 +msgid "Out of black list" +msgstr "ブラックリスト対象外" + +#: ../../enterprise/godmode/setup/setup.php:263 +msgid "In black list" +msgstr "ブラックリスト対象" + +#: ../../enterprise/godmode/setup/setup.php:268 +msgid "Push selected modules into blacklist" +msgstr "選択したモジュールをブラックリストへ追加" + +#: ../../enterprise/godmode/setup/setup.php:270 +msgid "Pop selected modules out of blacklist" +msgstr "選択したモジュールをブラックリストから削除" + +#: ../../enterprise/godmode/setup/setup.php:282 ../../include/functions_config.php:443 +msgid "Activate Log Collector" +msgstr "ログ収集の有効化" + +#: ../../enterprise/godmode/setup/setup.php:305 +msgid "Critical threshold for occupied addresses" +msgstr "占有アドレスの障害しきい値" + +#: ../../enterprise/godmode/setup/setup.php:317 +msgid "Warning threshold for occupied addresses" +msgstr "占有アドレスの警告しきい値" + +#: ../../enterprise/godmode/setup/setup.php:329 ../../include/functions_config.php:459 +msgid "SAP/R3 Plugin Licence" +msgstr "SAP/R3 プラグインライセンス" + +#: ../../enterprise/godmode/setup/setup.php:345 +msgid "Enterprise options" +msgstr "Enterprise オプション" + +#: ../../enterprise/godmode/setup/setup.php:505 +#, php-format +msgid "" +"Password related configuration only applies when local %s authentication is selected." +msgstr "" +"パスワード関連の設定は、ローカル %s 認証が選択されている場合にのみ適用されます。" + +#: ../../enterprise/godmode/setup/setup.php:514 +msgid "Enterprise password policy" +msgstr "Enterprise パスワードポリシー" + +#: ../../enterprise/godmode/setup/setup_skins.php:38 +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Skins configuration" +msgstr "スキン設定" + +#: ../../enterprise/godmode/setup/setup_skins.php:77 +msgid "Error deleting skin" +msgstr "スキン削除エラー" + +#: ../../enterprise/godmode/setup/setup_skins.php:79 +msgid "Successfully deleted skin" +msgstr "スキンを削除しました" + +#: ../../enterprise/godmode/setup/setup_skins.php:125 +msgid "Skin name" +msgstr "スキン名" + +#: ../../enterprise/godmode/setup/setup_skins.php:126 +#: ../../enterprise/godmode/setup/edit_skin.php:241 +msgid "Relative path" +msgstr "相対パス" + +#: ../../enterprise/godmode/setup/setup_skins.php:153 +msgid "There are no defined skins" +msgstr "定義済のスキンがありません" + +#: ../../enterprise/godmode/setup/setup_skins.php:159 +msgid "Create skin" +msgstr "スキン作成" + +#: ../../enterprise/godmode/setup/setup_module_library.php:68 +#: ../../enterprise/godmode/wizards/Cloud.class.php:381 +#: ../../godmode/module_library/module_library_view.php:163 +msgid "Invalid username or password" +msgstr "ユーザ名またはパスワードが不正です" + +#: ../../enterprise/godmode/setup/setup_module_library.php:69 +#: ../../godmode/module_library/module_library_view.php:162 +msgid "Problem with authentication. Check your internet connection" +msgstr "認証に問題があります。内部接続を確認してください。" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 +msgid "Metaconsole setup" +msgstr "メタコンソール設定" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +msgid "Pandora FMS Metaconsole item edition" +msgstr "Pandora FMS メタコンソールアイテム編集" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 +msgid "" +"Token previously configured on the destination Pandora console in order to use " +"delegated authentification." +msgstr "" +"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンです。" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 +msgid "Console URLxxxxxx" +msgstr "コンソール URLxxxxxx" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "ElasticSearch IP" +msgstr "ElasticSearch IP" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +msgid "IP of ElasticSearch server" +msgstr "ElasticSearch サーバの IP" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "ElasticSearch Port" +msgstr "ElasticSearch ポート" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +msgid "Port of ElasticSearch server" +msgstr "ElasticSearch サーバのポート" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../include/functions_config.php:1521 +msgid "Days to purge old information" +msgstr "旧情報を削除する日数" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:48 +msgid "ElasticSearch Status" +msgstr "ElasticSearch の状態" + +#: ../../enterprise/godmode/setup/setup_auth.php:34 +msgid "Active directory" +msgstr "アクティブディレクトリ" + +#: ../../enterprise/godmode/setup/setup_auth.php:35 +msgid "SAML" +msgstr "SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:87 +msgid "Force automatically create profile user" +msgstr "プロファイルユーザを自動的に作成するように強制する" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "Local command" +msgstr "ローカルコマンド" + +#: ../../enterprise/godmode/setup/setup_auth.php:95 +msgid "PHP function" +msgstr "PHP 関数" + +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/include/functions_tasklist.php:282 +#: ../../enterprise/include/functions_tasklist.php:369 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:281 ../../godmode/tag/edit_tag.php:239 +#: ../../include/functions_cron.php:604 ../../include/functions_cron.php:695 +#: ../../operation/search_users.php:45 +msgid "Email" +msgstr "Email" + +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:456 +#: ../../enterprise/godmode/setup/setup_auth.php:1251 +msgid "Profiles selected" +msgstr "選択しているプロファイル" + +#: ../../enterprise/godmode/setup/setup_auth.php:173 +#: ../../enterprise/godmode/setup/setup_auth.php:457 +#: ../../enterprise/godmode/setup/setup_auth.php:1252 +msgid "Groups selected" +msgstr "選択しているグループ" + +#: ../../enterprise/godmode/setup/setup_auth.php:175 +#: ../../enterprise/godmode/setup/setup_auth.php:232 +#: ../../include/functions_profile.php:216 +msgid "No hierarchy" +msgstr "階層なし" + +#: ../../enterprise/godmode/setup/setup_auth.php:176 +#: ../../enterprise/godmode/setup/setup_auth.php:233 +msgid "LDAP Attributes" +msgstr "LDAP アトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:177 +#: ../../enterprise/godmode/setup/setup_auth.php:234 +#: ../../enterprise/godmode/setup/setup_auth.php:460 +#: ../../enterprise/godmode/setup/setup_auth.php:512 +#: ../../enterprise/godmode/setup/setup_auth.php:1255 +#: ../../enterprise/godmode/setup/setup_auth.php:1309 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "OP" + +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:508 +#: ../../enterprise/godmode/setup/setup_auth.php:1305 +#: ../../godmode/groups/configure_group.php:122 ../../godmode/groups/group_list.php:380 +#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:161 +msgid "Profiles" +msgstr "プロファイル" + +#: ../../enterprise/godmode/setup/setup_auth.php:242 +#: ../../enterprise/godmode/setup/setup_auth.php:519 +#: ../../enterprise/godmode/setup/setup_auth.php:1316 +msgid "Select profile" +msgstr "プロファイルを選択" + +#: ../../enterprise/godmode/setup/setup_auth.php:287 +#: ../../enterprise/godmode/setup/setup_auth.php:557 +#: ../../enterprise/godmode/setup/setup_auth.php:1359 +msgid "Add new permissions" +msgstr "新規の権限を追加" + +#: ../../enterprise/godmode/setup/setup_auth.php:385 +#: ../../enterprise/godmode/setup/setup_auth.php:1180 +msgid "New users will be able to log in to the nodes." +msgstr "新規ユーザがノードへログインできます。" + +#: ../../enterprise/godmode/setup/setup_auth.php:459 +#: ../../enterprise/godmode/setup/setup_auth.php:511 +#: ../../enterprise/godmode/setup/setup_auth.php:1254 +#: ../../enterprise/godmode/setup/setup_auth.php:1308 +msgid "AD Groups" +msgstr "ADグループ" + +#: ../../enterprise/godmode/setup/setup_auth.php:738 +#: ../../enterprise/godmode/setup/setup_auth.php:854 +msgid "You must select a profile from the list of profiles." +msgstr "プロファイル一覧からぷらファイルを選択する必要があります。" + +#: ../../enterprise/godmode/setup/setup_auth.php:743 +#: ../../enterprise/godmode/setup/setup_auth.php:859 +msgid "You must select a group from the list of groups." +msgstr "グループ一覧からグループを選択する必要があります。" + +#: ../../enterprise/godmode/setup/setup_auth.php:1021 +#: ../../include/functions_config.php:676 +msgid "MySQL host" +msgstr "MySQL ホスト" + +#: ../../enterprise/godmode/setup/setup_auth.php:1084 +msgid "SimpleSAML path" +msgstr "SimpleSAML パス" + +#: ../../enterprise/godmode/setup/setup_auth.php:1085 +msgid "Directory where your 'simplesamlphp' folder is located." +msgstr "'simplesamlphp' フォルダがあるディレクトリ" + +#: ../../enterprise/godmode/setup/setup_auth.php:1091 +msgid "SAML source" +msgstr "SAML ソース" + +#: ../../enterprise/godmode/setup/setup_auth.php:1092 +msgid "Authsource name, e.g. 'example-userpass'" +msgstr "認証ソース名、例: 'example-userpass'" + +#: ../../enterprise/godmode/setup/setup_auth.php:1099 +msgid "SAML user id attribute" +msgstr "SAML ユーザ ID アトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1104 +msgid "SAML mail attribute" +msgstr "SAML メールアトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1105 +msgid "" +"SAML field where search for the user email (while autocreate remote users is enabled)" +msgstr "" +"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっている場" +"合)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +msgid "SAML group name attribute" +msgstr "SAML グループ名アトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1113 +msgid "" +"SAML field where search for the group name (while autocreate remote users is enabled)" +msgstr "" +"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になっている場" +"合)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1120 +msgid "Simple attribute / Multivalue attribute" +msgstr "シンプルアトリビュート / 複数の値のアトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1125 +msgid "SAML profiles and tag attribute" +msgstr "SAML プロファイルおよびタグアトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1130 +msgid "Profile attribute" +msgstr "プロファイルアトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1135 +msgid "Tag attribute" +msgstr "タグアトリビュート" + +#: ../../enterprise/godmode/setup/setup_auth.php:1140 +msgid "SAML profile and tags prefix" +msgstr "SAML プロファイルおよびタグプレフィックス" + +#: ../../enterprise/godmode/setup/setup_acl.php:46 +msgid "Enterprise ACL setup" +msgstr "Enterprise ACL 設定" + +#: ../../enterprise/godmode/setup/setup_acl.php:69 +msgid "ACL element was deleted successfully" +msgstr "ACL 要素を削除しました" + +#: ../../enterprise/godmode/setup/setup_acl.php:71 +msgid "There was a problem delete ACL element" +msgstr "ACL 要素削除で問題が発生しました" + +#: ../../enterprise/godmode/setup/setup_acl.php:417 +msgid "This record already exists in the database" +msgstr "このレコードは既にデータベースに存在します" + +#: ../../enterprise/godmode/setup/setup_acl.php:422 +msgid "ACL element is added successfully" +msgstr "ACL 要素を追加しました" + +#: ../../enterprise/godmode/setup/setup_acl.php:424 +msgid "There was a problem adding ACL element" +msgstr "ACL 要素追加で問題が発生しました。" + +#: ../../enterprise/godmode/setup/setup_acl.php:464 +#: ../../enterprise/godmode/setup/setup_acl.php:539 +msgid "Add new ACL element to profile" +msgstr "プロファイルへの新ACL要素の追加" + +#: ../../enterprise/godmode/setup/setup_acl.php:469 +#: ../../enterprise/godmode/setup/setup_acl.php:544 +#: ../../enterprise/godmode/setup/setup_acl.php:592 +msgid "Section" +msgstr "セクション" + +#: ../../enterprise/godmode/setup/setup_acl.php:476 +#: ../../enterprise/godmode/setup/setup_acl.php:694 +msgid "Mobile" +msgstr "モバイル" + +#: ../../enterprise/godmode/setup/setup_acl.php:480 +#: ../../enterprise/godmode/setup/setup_acl.php:690 +msgid "Head search" +msgstr "ヘッドサーチ" + +#: ../../enterprise/godmode/setup/setup_acl.php:497 +#: ../../enterprise/godmode/setup/setup_acl.php:548 +#: ../../enterprise/godmode/setup/setup_acl.php:593 +msgid "Section 2" +msgstr "セクション 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:514 +#: ../../enterprise/godmode/setup/setup_acl.php:552 +#: ../../enterprise/godmode/setup/setup_acl.php:594 +msgid "Section 3" +msgstr "セクション 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:538 +msgid "Hidden" +msgstr "隠す" + +#: ../../enterprise/godmode/setup/setup_acl.php:570 +msgid "Filter by profile" +msgstr "プロファイルによるフィルタ" + +#: ../../enterprise/godmode/setup/setup_acl.php:591 +#: ../../godmode/users/configure_profile.php:265 +#: ../../godmode/massive/massive_delete_profiles.php:151 +#: ../../godmode/massive/massive_add_profiles.php:202 +#: ../../include/functions_profile.php:213 ../../operation/users/user_edit.php:840 +msgid "Profile name" +msgstr "プロファイル名" + +#: ../../enterprise/godmode/setup/setup_acl.php:749 +#: ../../enterprise/godmode/setup/setup_acl.php:759 +msgid "Invalid" +msgstr "無効" + +#: ../../enterprise/godmode/setup/setup_acl.php:791 +#: ../../enterprise/godmode/reporting/visual_console_template.php:305 +#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2841 +msgid "No data to show" +msgstr "表示するデータがありません" + +#: ../../enterprise/godmode/setup/edit_skin.php:47 +msgid "Successfully updated skin" +msgstr "スキンを更新しました" + +#: ../../enterprise/godmode/setup/edit_skin.php:49 +#: ../../enterprise/godmode/setup/edit_skin.php:67 +msgid "Error updating skin" +msgstr "スキン更新エラー" + +#: ../../enterprise/godmode/setup/edit_skin.php:197 +msgid "Error creating skin" +msgstr "スキン作成エラー" + +#: ../../enterprise/godmode/setup/edit_skin.php:201 +msgid "Successfully created skin" +msgstr "スキンを作成しました" + +#: ../../enterprise/godmode/setup/edit_skin.php:242 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have alphanumeric " +"characters." +msgstr "" +"skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アルファベッ" +"トのみです。" + +#: ../../enterprise/godmode/setup/edit_skin.php:267 +msgid "Group/s" +msgstr "グループ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 +msgid "Cleanup sucessfully" +msgstr "整理しました" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 +msgid "Cleanup error" +msgstr "整理エラー" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +msgid "No item could be applied to report." +msgstr "レポートにアイテムを適用できませんでした。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 +msgid "Sucessfully applied" +msgstr "適用しました" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "reports" +msgstr "レポート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +msgid "items" +msgstr "アイテム" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 +msgid "Could not be applied" +msgstr "適用できません" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 +#: ../../godmode/massive/massive_operations.php:325 +msgid "" +"In order to perform massive operations, PHP needs a correct configuration in timeout " +"parameters. Please, open your PHP configuration file (php.ini) for example: sudo " +"vi /etc/php5/apache2/php.ini;
    And set your timeout parameters to a correct " +"value:
    max_execution_time = 0 and max_input_time = -1" +msgstr "" +"一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。php設定" +"ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タイムアウトパラ" +"メータを次のように設定してください。
    max_execution_time = 0、 " +"max_input_time = -1" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 +msgid "Create template report wizard" +msgstr "レポートウィザードテンプレート作成" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 +msgid "Clean up template" +msgstr "整理テンプレート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 +msgid "Create report per agent" +msgstr "エージェントごとのレポート作成" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +#: ../../enterprise/include/functions_cron.php:232 +#: ../../enterprise/include/functions_tasklist.php:368 +#: ../../enterprise/include/functions_reporting_csv.php:2264 +#: ../../enterprise/include/functions_reporting_csv.php:2268 +#: ../../godmode/reporting/reporting_builder.php:908 +#: ../../include/functions_cron.php:694 ../../operation/search_reports.php:42 +#: ../../operation/search_reports.php:58 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "レポート名" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +msgid "" +"Left in blank if you want to use default name: Template name - agents (num agents) - " +"Date" +msgstr "" +"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用したい" +"場合は、空白にしてください。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 +msgid "Target group" +msgstr "対象グループ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 +msgid "Filter by" +msgstr "フィルタ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 +#: ../../godmode/reporting/create_container.php:566 +#: ../../godmode/reporting/create_container.php:629 +#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 +#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 +#: ../../include/ajax/heatmap.ajax.php:126 ../../include/ajax/heatmap.ajax.php:296 +#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:327 +msgid "Tag" +msgstr "タグ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 +msgid "Filter tag" +msgstr "タグフィルタ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +#: ../../include/functions_snmp_browser.php:1519 +#: ../../include/functions_snmp_browser.php:1521 +msgid "Select all" +msgstr "全てを選択" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +msgid "Agents available" +msgstr "存在するエージェント" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 +msgid "Agents to apply" +msgstr "適用するエージェント" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 +msgid "Add agents to template" +msgstr "テンプレートにエージェントを追加" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 +msgid "Undo agents to template" +msgstr "エージェントをテンプレートから外します" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 +msgid "Apply template" +msgstr "テンプレート適用" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +msgid "Please set template distinct than " +msgstr "次より明確なテンプレートを指定してください: " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +msgid "Please set agent distinct than " +msgstr "エージェントを次のもの以外で明確にしてください: " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 +msgid "" +"This will be delete all reports created in previous template applications. Do you " +"want to continue?" +msgstr "以前のテンプレート内の全レポートを削除します。続けますか?" + +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "インスタンス" + +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:722 +msgid "CPU" +msgstr "CPU" + +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "IO 読み込み" + +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "IO 書き込み" + +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "ディスクの読み込み" + +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "ディスクの書き込み" + +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "入力トラフィック" + +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "出力トラフィック" + +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:139 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "AWS 表示" + +#: ../../enterprise/godmode/reporting/aws_view.php:134 +msgid "Failed to retrieve AWS information using selected account." +msgstr "選択したアカウントで AWS 情報の取得に失敗しました。" + +#: ../../enterprise/godmode/reporting/aws_view.php:153 +msgid "AWS credentials not validated." +msgstr "AWS 認証情報は検証されていません。" + +#: ../../enterprise/godmode/reporting/aws_view.php:168 +msgid "Discovery Cloud: AWS" +msgstr "クラウド検出: AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:177 +msgid "Please, select an account: " +msgstr "アカウントを選択してください: " + +#: ../../enterprise/godmode/reporting/aws_view.php:186 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "クラウド監視自動検出タスク作成" + +#: ../../enterprise/godmode/reporting/aws_view.php:189 +msgid "" +"Within this view you will find information collected using Discovery Cloud AWS task. " +"You will be able to see the most relevant information about your infrastructure, such " +"as the current cost of your contracted services, the number of instances per region " +"or resource usage metrics. In order to collect this information you must create a " +"Cloud Monitoring Discovery task." +msgstr "" +"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 契約サー" +"ビスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指標など、インフラ" +"に関する最も関連性の高い情報を確認できます。 この情報を収集するには、クラウド監視自動" +"検出タスクを作成する必要があります。" + +#: ../../enterprise/godmode/reporting/aws_view.php:192 +msgid "Press the create button to begin." +msgstr "始めるには作成ボタンを押してください。" + +#: ../../enterprise/godmode/reporting/aws_view.php:221 +msgid "Instance table" +msgstr "インスタンステーブル" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:75 +#: ../../godmode/reporting/map_builder.php:121 +#: ../../godmode/reporting/visual_console_favorite.php:72 +msgid "Visual Console List" +msgstr "ビジュアルコンソール一覧" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 +#: ../../enterprise/godmode/reporting/visual_console_template.php:75 +#: ../../godmode/reporting/map_builder.php:87 +#: ../../godmode/reporting/visual_console_favorite.php:84 +msgid "Visual Favourite Console" +msgstr "お気に入りビジュアルコンソール" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template.php:88 +#: ../../godmode/reporting/map_builder.php:100 +#: ../../godmode/reporting/visual_console_favorite.php:97 +msgid "Visual Console Template" +msgstr "ビジュアルコンソールテンプレート" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/visual_console_template.php:100 +#: ../../godmode/reporting/map_builder.php:112 +#: ../../godmode/reporting/visual_console_favorite.php:109 +msgid "Visual Console Template Wizard" +msgstr "ビジュアルコンソールテンプレートウィザード" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +msgid "Template Wizard" +msgstr "テンプレートウィザード" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "Visual console name" +msgstr "ビジュアルコンソール名" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use default name: " +"Template name - agent alias" +msgstr "" +"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白のまま" +"にします: テンプレート名 - エージェントの別名" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 +msgid "Edit template" +msgstr "テンプレートの編集" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* will " +"match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" +"エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次のエー" +"ジェント別名と一致します: network_agent1, NetworK CHECKS" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 +#: ../../godmode/reporting/reporting_builder.main.php:226 +msgid "Generate cover page in PDF render" +msgstr "PDFレンダリングで表紙を生成する" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 +#: ../../godmode/reporting/reporting_builder.main.php:234 +msgid "Generate index in PDF render" +msgstr "PDFレンダリングで目次を生成する" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:54 +#: ../../enterprise/godmode/reporting/graph_template_list.php:73 +#: ../../enterprise/godmode/reporting/graph_template_list.php:87 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 +#: ../../godmode/reporting/graph_builder.php:287 +#: ../../godmode/reporting/graph_container.php:77 ../../godmode/reporting/graphs.php:67 +#: ../../godmode/reporting/graphs.php:81 ../../operation/reporting/graph_viewer.php:182 +#: ../../operation/reporting/graph_viewer.php:214 +msgid "Graph list" +msgstr "グラフ一覧" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:111 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 +#: ../../godmode/reporting/create_container.php:188 +#: ../../godmode/reporting/graph_container.php:101 +#: ../../godmode/reporting/graph_container.php:109 +msgid "Graph container" +msgstr "グラフコンテナ" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:119 +msgid "Graph template management" +msgstr "グラフテンプレート管理" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:132 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:388 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 +#: ../../godmode/reporting/graph_builder.php:370 +#: ../../godmode/reporting/graph_container.php:122 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:328 +#: ../../operation/reporting/graph_viewer.php:271 +msgid "Custom graphs" +msgstr "カスタムグラフ" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 +#: ../../godmode/alerts/alert_list.list.php:66 +msgid "Template name" +msgstr "テンプレート名" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:252 +msgid "There are no defined graph templates" +msgstr "定義済のグラフテンプレートがありません" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 +#: ../../enterprise/godmode/reporting/visual_console_template.php:254 +msgid "Create template" +msgstr "テンプレートの作成" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 +msgid "Not created. Blank name" +msgstr "作成できませんでした。名前が空です" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 +msgid "Graph template editor" +msgstr "グラフテンプレートエディタ" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 +#: ../../godmode/modules/manage_nc_groups.php:95 +#: ../../godmode/netflow/nf_edit_form.php:118 +#: ../../godmode/events/event_edit_filter.php:210 +msgid "Not updated. Blank name" +msgstr "更新できませんでした。名前が空です。" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 +msgid "Template updated successfully" +msgstr "テンプレートを更新しました" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 +#: ../../include/class/ModuleTemplates.class.php:355 +msgid "Error updating template" +msgstr "テンプレート更新エラー" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 +#: ../../godmode/setup/gis_step_2.php:371 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 +#: ../../include/functions_reports.php:1255 +msgid "Width" +msgstr "幅" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 +#: ../../godmode/setup/gis_step_2.php:378 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../include/functions_visual_map_editor.php:673 +#: ../../include/functions_reports.php:1271 ../../include/functions_reports.php:1371 +msgid "Height" +msgstr "高さ" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 +#: ../../godmode/setup/performance.php:542 +#: ../../godmode/reporting/create_container.php:346 ../../include/functions.php:2699 +#: ../../include/functions.php:3367 ../../include/ajax/module.php:200 +#: ../../include/ajax/graph.ajax.php:146 ../../operation/gis_maps/render_view.php:156 +msgid "1 hour" +msgstr "1時間" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 +#: ../../operation/gis_maps/render_view.php:157 +msgid "2 hours" +msgstr "2時間" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 +msgid "3 hours" +msgstr "3時間" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 +#: ../../include/ajax/module.php:201 +msgid "6 hours" +msgstr "6 時間" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 +#: ../../godmode/setup/performance.php:543 ../../include/ajax/module.php:202 +msgid "12 hours" +msgstr "12時間" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 +#: ../../godmode/reporting/create_container.php:350 ../../include/functions.php:2702 +#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150 +msgid "1 day" +msgstr "1日" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/setup/performance.php:545 +msgid "2 days" +msgstr "2日" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 +msgid "4 days" +msgstr "4日" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 +#: ../../godmode/setup/performance.php:547 +msgid "Last week" +msgstr "先週" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 +#: ../../godmode/reporting/create_container.php:354 ../../include/functions.php:2704 +#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154 +msgid "15 days" +msgstr "15日" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 +#: ../../godmode/setup/performance.php:549 +msgid "Last month" +msgstr "先月" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 +msgid "2 months" +msgstr "2ヶ月" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 +#: ../../include/ajax/module.php:208 +msgid "6 months" +msgstr "6ヵ月" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 +#: ../../include/functions.php:2708 ../../include/ajax/module.php:209 +msgid "1 year" +msgstr "1年" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 +#: ../../enterprise/include/functions_reporting_csv.php:487 +#: ../../enterprise/include/functions_reporting_csv.php:490 +#: ../../enterprise/include/functions_reporting_csv.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:877 +#: ../../enterprise/include/functions_reporting_csv.php:960 +#: ../../enterprise/include/functions_reporting_csv.php:992 +#: ../../enterprise/include/functions_reporting_csv.php:1052 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1261 +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1927 +#: ../../enterprise/include/functions_reporting_csv.php:1977 +#: ../../enterprise/include/functions_reporting_csv.php:2673 +#: ../../enterprise/include/functions_reporting_csv.php:2724 +#: ../../enterprise/include/functions_reporting_csv.php:2850 +#: ../../godmode/agentes/module_manager_editor_prediction.php:179 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1373 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:242 +#: ../../godmode/reporting/graph_builder.main.php:196 +#: ../../include/functions_visual_map_editor.php:788 +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639 +msgid "Period" +msgstr "更新間隔" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 +msgid "Stacked" +msgstr "積み上げ" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 +#: ../../godmode/reporting/graph_builder.main.php:215 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:353 +#: ../../operation/reporting/graph_viewer.php:371 +msgid "Stacked area" +msgstr "塗り潰しの積み上げ" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:248 +#: ../../godmode/reporting/graph_builder.main.php:217 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 +#: ../../operation/reporting/graph_viewer.php:373 +msgid "Stacked line" +msgstr "線の積み上げ" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:815 +msgid "Top n" +msgstr "トップ n" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:946 +#: ../../include/functions_reports.php:789 ../../include/functions_reporting.php:3325 +msgid "Exception" +msgstr "例外" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:58 +msgid "Only table" +msgstr "表のみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:59 +msgid "Table & Graph" +msgstr "表とグラフ" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:60 +msgid "Only graph" +msgstr "グラフのみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:82 +msgid "Global" +msgstr "全体" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 +msgid "Elements to apply" +msgstr "適用する要素" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 +msgid "Filter agents selector" +msgstr "フィルタエージェント選択" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1350 +#: ../../include/functions_reports.php:766 +msgid "Last value" +msgstr "最新の値" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5006 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1352 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7175 +msgid "" +"Warning: period 0 reports cannot be used to show information back in time. " +"Information contained in this kind of reports will be always reporting the most " +"recent information" +msgstr "" +"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれるの" +"は、最新の情報のみとなります。" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +msgid "If you select several agents, only the common modules will be displayed" +msgstr "複数のエージェントを選択すると、共通のモジュールのみ表示されます。" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../include/functions_reporting_html.php:4902 +msgid "Sum" +msgstr "合計" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../include/functions_reporting.php:10143 +msgid "Rate" +msgstr "率" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../enterprise/operation/services/services.list.php:728 +#: ../../godmode/snmpconsole/snmp_alert.php:1506 +#: ../../include/class/ModuleTemplates.class.php:970 +msgid "Delete selected" +msgstr "選択範囲を削除します" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +msgid "Group by agent" +msgstr "エージェント毎のグループ" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2378 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +msgid "Show in the same row" +msgstr "同一行に表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2380 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3149 +msgid "Show one module per row with all its operations" +msgstr "すべての操作で行ごとに1つのモジュールを表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2975 +#: ../../enterprise/operation/log/log_viewer.php:500 +#: ../../godmode/netflow/nf_item_list.php:173 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2457 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 +#: ../../include/lib/Dashboard/Widgets/top_n.php:267 +msgid "Order" +msgstr "順番" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2401 +#: ../../enterprise/operation/log/log_viewer.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2460 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "昇順" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:325 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 +#: ../../enterprise/operation/log/log_viewer.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2467 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "Descending" +msgstr "降順" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2415 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2474 +#: ../../include/lib/Dashboard/Widgets/top_n.php:263 +msgid "By agent name" +msgstr "エージェント名で" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2427 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2486 +#: ../../include/lib/Dashboard/Widgets/top_n.php:249 +msgid "Quantity (n)" +msgstr "数量(n)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2516 +#: ../../include/lib/Dashboard/Widgets/top_n.php:286 +#: ../../operation/agentes/ver_agente.php:1632 +msgid "Display" +msgstr "表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2678 +#: ../../include/functions_reporting.php:3347 +msgid "Everything" +msgstr "すべて" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 +msgid ">=" +msgstr ">=" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2561 +msgid "<" +msgstr "<" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2575 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2686 +#: ../../include/functions_reporting_html.php:3472 +msgid "Not OK" +msgstr "NG" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2698 +msgid "Show graph" +msgstr "グラフ表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2700 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2808 +msgid "Show resume" +msgstr "復旧を表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +msgid "Show a resume table with max, min, average of total modules on the report bottom" +msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3377 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3576 +msgid "Show item in landscape format (only PDF)" +msgstr "項目を横向き形式で表示(PDFのみ)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:828 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3585 +msgid "Page break at the end of the item (only PDF)" +msgstr "アイテムの最後の改ページ(PDFのみ)" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 +msgid "Wizard template" +msgstr "ウィザードテンプレート" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 +msgid "Advance Reporting" +msgstr "拡張レポート" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 +msgid "Page orientation" +msgstr "ページの向き" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +msgid "Vertical" +msgstr "縦" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 +#: ../../include/functions_visual_map_editor.php:844 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +msgid "Horizontal" +msgstr "横" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +#: ../../godmode/reporting/create_container.php:364 +#: ../../godmode/reporting/create_container.php:473 +#: ../../godmode/reporting/create_container.php:527 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1327 +msgid "Time lapse" +msgstr "時間経過" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:313 +msgid "Order:" +msgstr "並び順:" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:349 +msgid "" +"Show a resume table with max, min, average of total modules on the report bottom:" +msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 +msgid "Show address instead module name" +msgstr "モジュール名の代わりにアドレスを表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:370 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2789 +msgid "Show the main address of agent." +msgstr "エージェントのメインアドレスを表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:439 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2337 +#: ../../include/functions_reports.php:809 +msgid "SQL query" +msgstr "SQL クエリ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3041 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3226 +msgid "Failover mode" +msgstr "フェイルオーバーモード" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:464 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3042 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3227 +msgid "" +"SLA calculation must be performed taking into account the failover modules assigned " +"to the primary module" +msgstr "" +"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考慮して" +"実行する必要があります" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3061 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3246 +msgid "Failover type" +msgstr "フェイルオーバータイプ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3066 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 +msgid "Failover normal" +msgstr "通常のフェイルオーバー" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3263 +msgid "Failover simple" +msgstr "シンプルなフェイルオーバー" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2547 +msgid "Graph render" +msgstr "グラフレンダリング" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2553 +msgid "Avg, max & min" +msgstr "平均、最大 & 最小" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2554 +msgid "Max only" +msgstr "最大のみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2480 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2555 +msgid "Min only" +msgstr "最小のみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2481 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 +msgid "Avg only" +msgstr "平均のみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 +#: ../../mobile/operation/module_graph.php:436 ../../operation/agentes/stat_win.php:369 +msgid "Time compare (Overlapped)" +msgstr "時間比較 (重ね合わせ)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:574 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +msgid "Full resolution graph (TIP)" +msgstr "詳細グラフ (TIP)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../operation/agentes/stat_win.php:397 +#: ../../operation/agentes/interface_traffic_graph_win.php:240 +msgid "" +"TIP mode charts do not support average - maximum - minimum series, you can only " +"enable TIP or average, maximum or minimum series" +msgstr "" +"詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最大、最" +"小を有効にできます" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2622 +msgid "Show threshold" +msgstr "しきい値表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2654 +#: ../../godmode/reporting/graph_builder.main.php:245 ../../include/functions.php:4116 +#: ../../include/functions.php:4124 +msgid "Percentil" +msgstr "パーセント値" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:606 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2514 +msgid "" +"If this option was checked, only adding in elements that type of modules support this " +"option." +msgstr "" +"このオプションをチェックすると、このオプションをサポートするモジュールタイプの要素のみ" +"追加できます。" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:620 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2917 +msgid "Show Summary group" +msgstr "グループ概要を表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:684 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2881 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3003 +msgid "Event Status" +msgstr "イベントの状態" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3064 +#: ../../operation/agentes/tactical.php:254 +msgid "Event graphs" +msgstr "イベントグラフ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:714 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2912 +msgid "By agent" +msgstr "エージェントで分類" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:724 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2922 +msgid "By user validator" +msgstr "ユーザで分類" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 +msgid "By criticity" +msgstr "重要度で分類" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2942 +msgid "Validated vs unvalidated" +msgstr "承諾済み・未承諾で分類" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1806 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1411 +msgid "Data range" +msgstr "データ範囲" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1392 +msgid "Projection period" +msgstr "予想期間" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2218 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2364 +msgid "Serialized header" +msgstr "ヘッダの並び" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +msgid "The separator character is |" +msgstr "デリミタは'|'です。" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2401 +msgid "Field separator" +msgstr "フィールドセパレータ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2402 +msgid "Separator for different fields in the serialized text chain" +msgstr "連なったテキスト文字列でフィールドを分離するためのセパレータ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 +msgid "Line separator" +msgstr "行セパレータ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2308 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2423 +msgid "Separator in different lines (composed by fields) of the serialized text chain" +msgstr "(複数フィールドからなる)複数行のテキスト文字列をまたぐセパレータ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:845 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3361 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3413 +msgid "Uncompress module" +msgstr "非圧縮モジュール" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:846 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3414 +msgid "Use uncompressed module data." +msgstr "非圧縮モジュールデータを利用します。" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 +#: ../../enterprise/include/functions_massive.php:54 +#: ../../godmode/agentes/module_manager.php:274 +#: ../../godmode/massive/massive_delete_action_alerts.php:175 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_edit_modules.php:1999 +#: ../../include/functions_visual_map.php:2682 +msgid "No modules selected" +msgstr "モジュールが選択されていません。" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 +#: ../../enterprise/include/functions_reporting.php:71 +msgid "Wizard SLA" +msgstr "SLAウィザード" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 +#: ../../enterprise/include/functions_reporting.php:2372 +#: ../../include/functions_reports.php:704 +msgid "Monthly S.L.A." +msgstr "月次 S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 +#: ../../enterprise/include/functions_reporting.php:3324 +#: ../../include/functions_reports.php:708 +msgid "Weekly S.L.A." +msgstr "週次 S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 +msgid "hourly S.L.A." +msgstr "時間ごとの S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 +msgid "Availability Graph S.L.A." +msgstr "S.L.A. 可用性グラフ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 +#: ../../enterprise/include/functions_reporting.php:5567 +#: ../../include/functions_reports.php:718 +msgid "Services S.L.A." +msgstr "サービス SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +msgid "SLA min value" +msgstr "SLA 最小値" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "Enter possible range of values in SLA." +msgstr "SLA に可能な値の範囲を入力してください。" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 +msgid "SLA min Value" +msgstr "SLA 最小値" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +msgid "SLA max value" +msgstr "SLA 最大値" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +msgid "SLA max Value" +msgstr "SLA 最大値" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +msgid "SLA Limit %" +msgstr "SLA 制限 %" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 +msgid "SLA Limit Value" +msgstr "SLA 制限値" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 +msgid "Dynamic SLA" +msgstr "動的 SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 +msgid "Inverse SLA" +msgstr "SLA の反転" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2976 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 +msgid "SLA items sorted by fulfillment value" +msgstr "実データによりソートしたSLAアイテム" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1819 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1424 +msgid "Only display wrong SLAs" +msgstr "不正な SLA のみ表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3094 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3279 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1419 +#: ../../include/functions_reporting_html.php:4739 +#: ../../include/functions_reporting_html.php:5010 +#: ../../include/functions_reporting_html.php:5147 +#: ../../include/functions_netflow.php:1183 +#: ../../include/lib/Dashboard/Widgets/tactical.php:299 +msgid "Summary" +msgstr "サマリ" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "SLA の最大値は、SLA の最小値よりも大きくしてください" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 +msgid "Dynamic SLA can not be Inverse" +msgstr "動的 SLA は反転できません" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "動的 SLA を確認するか、最大および最小 SLA 値を入力します" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 +msgid "SLA Limit value is needed" +msgstr "SLA 制限値が必要です" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 +#: ../../enterprise/include/functions_reporting.php:8016 +#: ../../enterprise/include/functions_reporting.php:8082 +#: ../../godmode/reporting/reporting_builder.php:3597 +#: ../../operation/reporting/reporting_viewer.php:157 +msgid "Item editor" +msgstr "アイテム編集" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 +#: ../../godmode/reporting/reporting_builder.php:3593 +#: ../../operation/reporting/reporting_viewer.php:148 +msgid "List items" +msgstr "アイテム一覧" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 +msgid "List templates" +msgstr "テンプレート一覧" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 +#: ../../godmode/reporting/reporting_builder.php:596 +#: ../../godmode/reporting/reporting_builder.php:3555 +#: ../../godmode/reporting/reporting_builder.php:3669 +#: ../../godmode/reporting/reporting_builder.php:3698 +#: ../../operation/reporting/reporting_viewer.php:233 +msgid "Custom reports" +msgstr "カスタムレポート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 +#: ../../godmode/reporting/reporting_builder.php:910 +#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +#: ../../godmode/reporting/reporting_builder.php:911 +#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:199 ../../operation/agentes/exportdata.php:379 +msgid "CSV" +msgstr "CSVファイル" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 +#: ../../godmode/reporting/reporting_builder.php:1053 +msgid "HTML view" +msgstr "HTML 表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 +#: ../../godmode/reporting/reporting_builder.php:1063 +msgid "Export to XML" +msgstr "XML へエクスポート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 +#: ../../enterprise/operation/reporting/custom_reporting.php:64 +#: ../../include/class/Diagnostics.class.php:144 +msgid "Export to PDF" +msgstr "PDF にエクスポート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 +#: ../../enterprise/operation/reporting/custom_reporting.php:72 +msgid "Export to JSON" +msgstr "JSONへエクスポート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 +msgid "You haven't created templates yet." +msgstr "テンプレートが作成されていません。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 +msgid "Generate a dynamic report" +msgstr "動的レポートを生成" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 +#: ../../include/functions_reports.php:1387 +msgid "Period " +msgstr "期間 " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 +msgid "Set start and end date" +msgstr "開始・終了日を設定" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 +#: ../../include/ajax/module.php:250 ../../operation/agentes/datos_agente.php:198 +msgid "Timestamp from:" +msgstr "開始日時:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 +#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:204 +msgid "Timestamp to:" +msgstr "終了日時:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "Monthly SLA period" +msgstr "SLA 期間の編集" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +msgid "This field only applies in case of Monthly SLA item." +msgstr "このフィールドは、月次 SLA アイテムの場合にのみ適用されます。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 +#: ../../enterprise/include/class/Omnishell.class.php:867 +msgid "Add agents" +msgstr "エージェント追加" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 +msgid "Undo agents" +msgstr "エージェント追加取り消し" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 +msgid "RegEx agent filter" +msgstr "正規表現エージェントフィルタ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 +msgid "Generate" +msgstr "生成" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +msgid "Please set agent or agent regex distinct than " +msgstr "エージェントまたはエージェントの正規表現を次とは別のものに設定してください: " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 +msgid "It is not a regular expression " +msgstr "正規表現ではありません " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 +msgid "No agent matches regular expression " +msgstr "正規表現にマッチするエージェントがありません " + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 +msgid "Graph template item editor" +msgstr "グラフテンプレートアイテムエディタ" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 +#: ../../godmode/reporting/graph_builder.graph_editor.php:215 +#: ../../godmode/reporting/graph_builder.graph_editor.php:345 +#: ../../include/functions.php:3981 +msgid "Weight" +msgstr "ウエイト" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3590 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3817 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4251 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4396 +#: ../../enterprise/operation/log/log_viewer.php:477 +msgid "Exact match" +msgstr "完全一致" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Decrease Weight" +msgstr "ウエイトを減らす" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +msgid "Increase Weight" +msgstr "ウエイトを増やす" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:141 +#: ../../enterprise/godmode/reporting/visual_console_template.php:157 +msgid "visual console has not been selected" +msgstr "ビジュアルコンソールが選択されていません" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:147 +msgid "Error. Error created template" +msgstr "エラー: テンプレート作成エラー" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:149 +msgid "Error. Template name cannot be repeated" +msgstr "エラー: 同じテンプレート名は利用できません" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:151 +msgid "Successfully created template" +msgstr "テンプレートを作成しました" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +msgid "Error. Error delete template" +msgstr "エラー: テンプレート削除エラー" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:165 +msgid "Successfully delete template" +msgstr "テンプレートを削除しました" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:187 +msgid "Create From" +msgstr "次から作成:" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "作成済のビジュアルコンソールがありません。最初に一つ作成してください。" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:260 +msgid "Create New Template" +msgstr "新しいテンプレートを作成" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +msgid "Custom MySQL template builder" +msgstr "カスタム MySQL テンプレートビルダ" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:79 +#: ../../enterprise/godmode/reporting/mysql_builder.php:206 +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "カスタム SQL" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:117 +msgid "Create custom SQL" +msgstr "カスタム SQL 作成" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:128 +#: ../../enterprise/godmode/reporting/mysql_builder.php:146 +msgid "Create new custom" +msgstr "設定の新規作成" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:187 +msgid "List of custom MySQL templates" +msgstr "カスタム MySQL テンプレート一覧" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:193 +msgid "Template builder" +msgstr "テンプレートビルダ" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Successfully operation" +msgstr "操作が完了しました" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +msgid "Could not be operation" +msgstr "操作を完了できませんでした" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +msgid "Without changes" +msgstr "変更なし" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +#: ../../operation/users/user_edit.php:195 +msgid "No changes have been made" +msgstr "変更されていません" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:232 +#: ../../enterprise/include/functions_reporting_csv.php:1130 +#: ../../include/functions_reporting.php:7186 +msgid "SQL" +msgstr "SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 +#: ../../godmode/reporting/reporting_builder.php:3720 +msgid "Successfull action" +msgstr "処理に成功しました。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1628 +#: ../../godmode/servers/modificar_server.php:175 +#: ../../godmode/servers/modificar_server.php:186 +msgid "Unsuccessfull action" +msgstr "処理に失敗しました。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1041 +msgid "Item Editor" +msgstr "アイテムエディタ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1438 +msgid "Current month" +msgstr "今月" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1454 +msgid "Working time" +msgstr "対象時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1908 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1520 +msgid "Time from" +msgstr "開始時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1538 +msgid "Time to" +msgstr "終了時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1944 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1556 +msgid "Show 24x7 item" +msgstr "24時間365日のアイテムを表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +msgid "Select server" +msgstr "サーバ選択" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1988 +#: ../../godmode/reporting/reporting_builder.item_editor.php:201 +msgid "Local metaconsole" +msgstr "ローカルメタコンソール" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1164 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 +msgid "" +"Case insensitive regular expression for agent name. For example: Network.* will match " +"with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" +"エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、" +"network_agent1, NetworKCHECKS というエージェント名にマッチします。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2059 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3643 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3875 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1187 +msgid "" +"Case insensitive regular expression or string for module name. For example: if you " +"use this field with \"Module exact match\" enabled then this field has to be " +"fulfilled with the literally string of the module name, if not you can use a regular " +"expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1." +msgstr "" +"モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モジュール" +"完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字列そのままの指" +"定です。そうでない場合は正規表現です。例えば .*usage.* は、cpu_usage、vram usage in " +"machine 1 にマッチします。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2081 +msgid "Module exact match" +msgstr "モジュール完全一致" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2082 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3651 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3799 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3882 +msgid "Check it if you want to match module name literally" +msgstr "モジュール名の文字列通りにマッチさせたい場合にチェックします" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 +msgid "Case insensitive regular expression or string for templates name." +msgstr "テンプレート名の大文字と小文字を区別しない正規表現または文字列。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 +msgid "Case insensitive regular expression or string for actions name." +msgstr "アクション名の大文字と小文字を区別しない正規表現または文字列。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 +msgid "Hide items without data" +msgstr "データのないアイテムを隠す" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2144 +msgid "Check it if you want not show items without data" +msgstr "データのないアイテムを表示したくない場合はチェックしてください" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2157 +#: ../../godmode/reporting/create_container.php:480 +#: ../../godmode/reporting/create_container.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2205 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.elements.php:575 +#: ../../include/functions_visual_map_editor.php:397 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 +#: ../../include/functions_reports.php:561 ../../include/functions_reports.php:648 +#: ../../include/functions_reports.php:654 ../../include/functions_reporting.php:10214 +msgid "Custom graph" +msgstr "カスタムグラフ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2201 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2352 +msgid "Max items" +msgstr "最大アイテム" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2234 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2317 +msgid "Custom SQL template" +msgstr "カスタム SQL テンプレート" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2255 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +msgid "" +"The entities of the fields that contain them must be included. Also is possible use " +"macros like `_start_date_` or `_end_date_`." +msgstr "" +"それらを含むフィールドのエンティティを含める必要があります。 `_start_date_` や " +"`_end_date_` などのマクロを使用することもできます。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:2455 +#: ../../enterprise/include/functions_reporting_csv.php:2469 +#: ../../extensions/api_checker.php:220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:75 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2384 +#: ../../godmode/events/event_responses.editor.php:156 +#: ../../godmode/events/event_responses.editor.php:164 +#: ../../include/functions_reporting_html.php:1581 ../../operation/gis_maps/ajax.php:316 +msgid "URL" +msgstr "URL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 +msgid "Protocol must be specified in URL (e.g.: \"https://\")" +msgstr "URL にはプロトコルを指定する必要があります。(例: \"https://\")" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3541 +msgid "Group by" +msgstr "グループ化" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2459 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2533 +#: ../../include/functions_reporting_html.php:4899 +#: ../../include/functions_reporting.php:1539 +msgid "Avg" +msgstr "平均" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2601 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 +msgid "Select fields to show" +msgstr "表示するフィールドの選択" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2609 +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 +#: ../../include/functions_reporting_html.php:4041 +msgid "Total time" +msgstr "合計時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2617 +#: ../../enterprise/include/functions_reporting_csv.php:502 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../include/functions_reporting_html.php:4047 +msgid "Time failed" +msgstr "障害時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +msgid "Time in OK status" +msgstr "正常状態の時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 +#: ../../enterprise/include/functions_reporting_csv.php:510 +#: ../../enterprise/include/functions_reporting.php:4969 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 +#: ../../include/functions_reporting_html.php:4059 +msgid "Time in warning status" +msgstr "警告状態の時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 +#: ../../enterprise/include/functions_reporting_csv.php:514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2752 +msgid "Time in unknown status" +msgstr "不明状態の時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 +#: ../../enterprise/include/functions_reporting_csv.php:518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2764 +msgid "Time of not initialized module" +msgstr "未初期化モジュールの時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 +#: ../../enterprise/include/functions_reporting_csv.php:522 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2776 +msgid "Time of downtime" +msgstr "計画停止時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2828 +msgid "

    Select fields to show

    " +msgstr "

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

    " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2727 +#: ../../enterprise/include/functions_reporting_csv.php:530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2836 +#: ../../include/functions_reporting_html.php:4135 +msgid "Total checks" +msgstr "全確認数" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2844 +#: ../../include/functions_reporting_html.php:4141 +msgid "Checks failed" +msgstr "障害確認数" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2743 +#: ../../enterprise/include/functions_reporting_csv.php:538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2852 +msgid "Checks in OK status" +msgstr "OK 状態のチェック" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../enterprise/include/functions_reporting_csv.php:542 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2876 +msgid "Unknown checks" +msgstr "不明チェック" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2888 +msgid "

    Select fields to show

    " +msgstr "

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

    " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 +#: ../../enterprise/include/functions_reporting_csv.php:665 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2896 +#: ../../include/functions_reporting_html.php:4455 +msgid "Agent max value" +msgstr "エージェント最大値" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2904 +msgid "Agent min values" +msgstr "エージェント最小値" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2812 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3524 +msgid "Show Summary" +msgstr "概要を表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3128 +msgid "Height (dynamic graphs)" +msgstr "高さ(動的グラフ)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3112 +msgid "Query History Database" +msgstr "ヒストリデータベース問い合わせ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3008 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3193 +msgid "Priority mode" +msgstr "優先モード" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3013 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +msgid "Priority ok mode" +msgstr "正常優先モード" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3025 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3210 +msgid "Priority unknown mode" +msgstr "不明優先モード" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3115 +msgid "Modules to match" +msgstr "マッチするモジュール" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 +msgid "Select the modules to match when create a report for agents" +msgstr "エージェントのレポートを作成する時にマッチするモジュールを選択します" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3217 +msgid "Modules to match (Free text)" +msgstr "マッチするモジュール (任意のテキスト)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3219 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "このテンプレートを適用する時のエージェントのモジュールフィルタテキスト" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3236 +msgid "Create a graph for each agent" +msgstr "それぞれのエージェントのグラフ作成" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 +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." +msgstr "" +"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチします。そ" +"うでなければ、全エージェントの全モジュールの大きなグラフを生成します。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3265 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3318 +msgid "Calculate for custom intervals" +msgstr "時間間隔の計算" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3277 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3330 +msgid "Time lapse intervals" +msgstr "時間経過間隔" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3279 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3333 +msgid "Lapses of time in which the period is divided to make more precise calculations" +msgstr "より正確な計算を行うために期間が分割された経過時間" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3374 +msgid "Table only" +msgstr "表のみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3385 +msgid "Graph only" +msgstr "グラフのみ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3396 +msgid "Graph and table" +msgstr "グラフと表" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3393 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1280 +msgid "Filter by network" +msgstr "ネットワークによるフィルタ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 +msgid "Show alive IPs only" +msgstr "応答のある IP のみ表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 +msgid "Show IPs not assigned to an agent" +msgstr "エージェントに割り当てられていない IP の表示" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3462 +#: ../../godmode/netflow/nf_item_list.php:282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3905 +msgid "Create item" +msgstr "アイテムの作成" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3471 +#: ../../extensions/agents_modules.php:448 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3912 +#: ../../include/functions_visual_map_editor.php:1421 +msgid "Update item" +msgstr "アイテム更新" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3520 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3999 +msgid "SLA Min. (value)" +msgstr "SLA 最小値" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4004 +msgid "SLA Max. (value)" +msgstr "SLA 最大値" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4009 +msgid "SLA Limit (%)" +msgstr "SLA 制限 (%)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3547 +msgid "Please save the SLA template for start to add items in this list." +msgstr "この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3588 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4260 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4405 +msgid "Not literally" +msgstr "存在しません" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3634 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3866 +msgid "" +"Case insensitive regular expression for agent name. For example: Network* will match " +"with the following agent names: network_agent1, NetworK CHECKS" +msgstr "" +"エージェント名に対して大文字小文字を区別しない正規表現です。例: Network* は、" +"network_agent1、NetworKCHECKS というエージェント名にマッチします。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 +msgid "Literal module name forced" +msgstr "リテラルモジュール名が強制されました" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3689 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3941 +#: ../../godmode/reporting/create_container.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1776 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4233 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4270 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4439 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4712 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4746 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4800 +#: ../../include/functions_ui.php:5848 ../../include/functions_html.php:5443 +msgid "Select an Agent first" +msgstr "最初にエージェントを選択してください。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3771 +msgid "Please save the template to start adding items into the list." +msgstr "リストに項目を追加するにはテンプレートを保存してください。" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4286 +msgid "Name and SLA limit should not be empty" +msgstr "名前と SLA 制限は空にできません" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 +#: ../../godmode/modules/module_list.php:60 ../../godmode/groups/configure_group.php:153 +#: ../../godmode/groups/group_list.php:844 ../../godmode/setup/os.builder.php:40 +#: ../../godmode/reporting/visual_console_builder.elements.php:293 +#: ../../include/functions_visual_map_editor.php:68 +#: ../../include/functions_visual_map_editor.php:1395 +#: ../../include/functions_visual_map.php:4272 +#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:424 +#: ../../include/lib/Dashboard/Widgets/module_status.php:415 +#: ../../operation/visual_console/view.php:341 +msgid "Icon" +msgstr "アイコン" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 +#: ../../enterprise/include/functions_ipam.php:1569 +msgid "Available" +msgstr "利用可能" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 +#: ../../include/graphs/export_data.php:100 +msgid "Selected" +msgstr "選択済" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 +msgid "Push the selected services into the list" +msgstr "選択したサービスを一覧に入れる" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +msgid "Remove the services from the list" +msgstr "一覧からサービスを削除" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 +msgid "Icon preview" +msgstr "アイコンプレビュー" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 +msgid "The services list is empty" +msgstr "サービス一覧が空です" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "拡張オプション" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:378 +#: ../../godmode/reporting/reporting_builder.list_items.php:397 +#: ../../godmode/reporting/reporting_builder.list_items.php:416 +msgid "Ascendent" +msgstr "上へ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:420 +msgid "Descent" +msgstr "下へ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 +#: ../../godmode/reporting/reporting_builder.list_items.php:425 +msgid "Name or Description" +msgstr "名前または説明" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 +#: ../../godmode/netflow/nf_item_list.php:228 ../../godmode/netflow/nf_item_list.php:230 +msgid "Move to up" +msgstr "上へ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 +#: ../../godmode/netflow/nf_item_list.php:226 ../../godmode/netflow/nf_item_list.php:231 +msgid "Move to down" +msgstr "下へ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 +#: ../../godmode/reporting/reporting_builder.list_items.php:445 +#: ../../include/functions_graph.php:1538 +msgid "No items." +msgstr "アイテムがありません。" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:420 +#: ../../enterprise/include/class/VMware.app.php:254 +#: ../../enterprise/include/class/DB2.app.php:187 +#: ../../enterprise/include/class/SAP.app.php:175 +#: ../../enterprise/include/class/Aws.cloud.php:907 +#: ../../enterprise/include/class/MySQL.app.php:196 +#: ../../enterprise/include/class/Google.cloud.php:423 +#: ../../enterprise/include/class/Oracle.app.php:194 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 +#: ../../godmode/wizards/HostDevices.class.php:412 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "このタスクの編集権限がありません。" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 +msgid "Command Mysqldump is failed." +msgstr "mysqldump コマンドが失敗しました。" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 +msgid "Failed to create task" +msgstr "タスクの作成に失敗しました" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 +msgid "No template selected" +msgstr "テンプレートが選択されていません" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 +msgid "I do not know what you want to do" +msgstr "何をしたいのかが不明です" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 +msgid "You have no access to manage console tasks." +msgstr "コンソールタスク管理へのアクセス権がありません。" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 +msgid "Create new console task" +msgstr "新規コンソールタスクの作成" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 +#: ../../enterprise/include/class/Azure.cloud.php:689 +#: ../../enterprise/include/class/VMware.app.php:455 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:980 +#: ../../enterprise/include/class/Omnishell.class.php:1349 +#: ../../enterprise/include/class/DB2.app.php:354 +#: ../../enterprise/include/class/SAP.app.php:401 +#: ../../enterprise/include/class/Aws.cloud.php:1126 +#: ../../enterprise/include/class/MySQL.app.php:371 +#: ../../enterprise/include/class/Google.cloud.php:686 +#: ../../enterprise/include/class/Oracle.app.php:361 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 +#: ../../godmode/modules/manage_network_components_form.php:367 +#: ../../godmode/reporting/graph_builder.main.php:308 +#: ../../godmode/wizards/HostDevices.class.php:648 +#: ../../godmode/wizards/HostDevices.class.php:747 +#: ../../godmode/wizards/Wizard.main.php:416 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:183 +#: ../../include/functions_html.php:6247 ../../include/class/CustomNetScan.class.php:314 +#: ../../include/class/CustomNetScan.class.php:422 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "戻る" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 +msgid "Updating console task" +msgstr "コンソールタスクの更新中" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 ../../godmode/menu.php:53 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "タスク一覧" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 +msgid "Update console task" +msgstr "コンソールタスクの更新" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 +msgid "Next Execution" +msgstr "次回実行" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Applications.class.php:157 +#: ../../enterprise/include/class/Azure.cloud.php:190 +#: ../../enterprise/include/class/DeploymentCenter.class.php:590 +#: ../../enterprise/include/class/Aws.cloud.php:158 +#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:84 +#: ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "自動検出" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:210 +#: ../../enterprise/godmode/wizards/Applications.class.php:186 +msgid "" +"All company names used here are for identification purposes only. Use of these names, " +"logos, and brands does not imply endorsement." +msgstr "" +"ここで使用されているすべての会社名は、識別することのみを目的としています。 これらの名" +"前、ロゴ、およびブランドの使用の承認を意味するものではありません。" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#: ../../enterprise/godmode/wizards/Cloud.class.php:248 +#, php-format +msgid "%s credentials" +msgstr "%s 認証情報" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "" +"If a task with the selected credentials is already running, it will be edited. To " +"create a new one, another account from the credential store must be selected." +msgstr "" +"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 新規作" +"成するには、認証情報ストアから別のアカウントを選択する必要があります。" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Manage accounts" +msgstr "アカウント管理" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:296 +msgid "Cloud tool full path" +msgstr "クラウドツールのフルパス" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:304 +msgid "Account" +msgstr "アカウント" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:365 +msgid "Select a set of credentials from the list" +msgstr "一覧からから一連の認証情報を選択してください" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:378 +#, php-format +msgid "Path %s is not executable." +msgstr "パス %s は実行できません。" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:423 +msgid "Account disconnected" +msgstr "アカウントを切断しました" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:425 +msgid "Failed disconnecting account" +msgstr "アカウントの切断に失敗しました" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:503 +msgid "Credentials successfully updated" +msgstr "認証情報を更新しました" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:505 +msgid "Failed updating credentials process" +msgstr "認証情報の更新処理に失敗しました" + +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +#: ../../enterprise/godmode/servers/HA_cluster.php:83 +msgid "View nodes" +msgstr "ノード参照" + +#: ../../enterprise/godmode/servers/HA_cluster.php:80 +msgid "Manage Pandora DB HA" +msgstr "Pandora DB HA 管理" + +#: ../../enterprise/godmode/servers/HA_cluster.php:101 +msgid "Manage Database HA" +msgstr "データベース HA 管理" + +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +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 "" +"クラスタの過去の操作失敗履歴をクリアし、現在の状態を再検出します。\n" +"これは、解決済の過去の障害に関する記録を一掃するのに役立ちます。\n" +"リソース ID が指定されていない場合、すべてのリソース / stonith デバイスは\n" +"クリーンアップされます。 ノードが指定されていない場合、すべてのノード\n" +"のリソース/ stonith デバイスがクリーンアップされます。" + +#: ../../enterprise/godmode/servers/HA_cluster.php:162 +msgid "Node label" +msgstr "ノードラベル" + +#: ../../enterprise/godmode/servers/HA_cluster.php:163 +#: ../../enterprise/include/functions_reporting_csv.php:2394 +#: ../../operation/tree.php:246 +msgid "Agent status" +msgstr "エージェント状態" + +#: ../../enterprise/godmode/servers/HA_cluster.php:164 +msgid "DB Repl." +msgstr "DB レプリケーション" + +#: ../../enterprise/godmode/servers/HA_cluster.php:165 +msgid "DB Status" +msgstr "DB の状態" + +#: ../../enterprise/godmode/servers/HA_cluster.php:167 +#: ../../extensions/quick_shell.php:195 +#: ../../godmode/agentes/module_manager_editor_network.php:478 +msgid "SSH" +msgstr "SSH" + +#: ../../enterprise/godmode/servers/HA_cluster.php:168 +msgid "DB Role" +msgstr "DB ロール" + +#: ../../enterprise/godmode/servers/HA_cluster.php:169 +msgid "Cluster Role" +msgstr "クラスタロール" + +#: ../../enterprise/godmode/servers/HA_cluster.php:171 +msgid "Seconds behind master" +msgstr "秒のマスタからの遅延" + +#: ../../enterprise/godmode/servers/HA_cluster.php:172 +msgid "Virtual IP" +msgstr "仮想 IP" + +#: ../../enterprise/godmode/servers/HA_cluster.php:173 +msgid "SQL version" +msgstr "SQL バージョン" + +#: ../../enterprise/godmode/servers/HA_cluster.php:174 +msgid "DB version" +msgstr "DB バージョン" + +#: ../../enterprise/godmode/servers/HA_cluster.php:176 +msgid "Pending action" +msgstr "保留中アクション" + +#: ../../enterprise/godmode/servers/HA_cluster.php:301 +msgid "Show/ edit node" +msgstr "ノードの表示 / 編集" + +#: ../../enterprise/godmode/servers/HA_cluster.php:317 +msgid "Put node into standby status" +msgstr "ノードをスタンバイ状態にする" + +#: ../../enterprise/godmode/servers/HA_cluster.php:332 +msgid "Force node resync" +msgstr "ノードの再同期を強制" + +#: ../../enterprise/godmode/servers/HA_cluster.php:359 +msgid "Put node into online status" +msgstr "ノードをオンライン状態にする" + +#: ../../enterprise/godmode/servers/HA_cluster.php:374 +msgid "Show cluster details" +msgstr "クラスタ詳細表示" + +#: ../../enterprise/godmode/servers/HA_cluster.php:392 +msgid "Remove node from this list" +msgstr "一覧からノードを削除" + +#: ../../enterprise/godmode/servers/HA_cluster.php:428 +msgid "Register node" +msgstr "ノード登録" + +#: ../../enterprise/godmode/servers/HA_cluster.php:466 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do you want " +"to continue?" +msgstr "" +"対象ノードはこの一覧から消去されますが、クラスタからは削除されません。 続けますか?" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "エクスポートターゲットの更新に失敗しました。" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "エクスポートターゲットを更新しました。" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "エクスポートターゲットの削除に失敗しました。" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be automatically " +"unattached" +msgstr "" +"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは自動的" +"に接続解除されます" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "Can't be created export target: User and password must be filled with FTP mode" +msgstr "" +"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力する必要" +"があります" + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "定義済のエクスポートターゲットがありません" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "プレフィックス" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1023 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "転送モード" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 +msgid "Credential Boxes List" +msgstr "認証情報ボックス一覧" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 +msgid "Credential Boxes" +msgstr "認証情報ボックス" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +#: ../../enterprise/include/ajax/servers.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:157 +#: ../../enterprise/include/ajax/servers.ajax.php:283 +#: ../../enterprise/include/functions_ipam.php:1343 +msgid "Subnet" +msgstr "サブネット" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 +#: ../../enterprise/godmode/servers/list_satellite.php:69 +#: ../../enterprise/include/ajax/servers.ajax.php:139 +msgid "No Data" +msgstr "データがありません" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:213 +msgid "Error: The conf file of server is not readble." +msgstr "エラー: サービスの設定ファイルを読めません。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:217 +msgid "Error: The conf file of server is not writable." +msgstr "エラー: サービスの設定ファイルに書き込めません。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:312 +msgid "" +"Enable/disable token (this will comment out the corresponding line in the " +"configuration file)" +msgstr "" +"トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントアウトされま" +"す)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:339 +#: ../../include/functions_servers.php:556 ../../include/functions_servers.php:1305 +msgid "Data server" +msgstr "データサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:344 +#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1308 +#: ../../include/class/AgentWizard.class.php:1296 +msgid "Network server" +msgstr "ネットワークサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 +#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1356 +msgid "Alert server" +msgstr "アラートサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 +#: ../../enterprise/include/ajax/ipam.ajax.php:357 +#: ../../enterprise/include/class/Azure.cloud.php:781 +#: ../../enterprise/include/class/VMware.app.php:593 +#: ../../enterprise/include/class/DB2.app.php:448 +#: ../../enterprise/include/class/Aws.S3.php:412 +#: ../../enterprise/include/class/SAP.app.php:481 +#: ../../enterprise/include/class/Aws.cloud.php:522 +#: ../../enterprise/include/class/Aws.cloud.php:1212 +#: ../../enterprise/include/class/MySQL.app.php:453 +#: ../../enterprise/include/class/Google.cloud.php:769 +#: ../../enterprise/include/class/Oracle.app.php:455 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 +#: ../../enterprise/tools/ipam/ipam_editor.php:163 +#: ../../godmode/wizards/HostDevices.class.php:848 +#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1341 +#: ../../include/class/CustomNetScan.class.php:479 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "自動検出サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:359 +#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1320 +#: ../../include/class/AgentWizard.class.php:1277 +msgid "Plugin server" +msgstr "プラグインサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:364 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 +#: ../../include/functions_servers.php:1311 +msgid "SNMP server" +msgstr "SNNP サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:369 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 +#: ../../include/functions_servers.php:621 +msgid "Prediction server" +msgstr "予測サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:374 +#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1287 +msgid "WMI server" +msgstr "WMI サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:379 +#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1329 +msgid "Web server" +msgstr "ウェブサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 +#: ../../include/functions_servers.php:660 ../../include/functions_servers.php:1335 +msgid "Inventory server" +msgstr "インベントリサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:389 +#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../include/functions_servers.php:647 ../../include/functions_servers.php:1332 +msgid "Export server" +msgstr "エクスポートサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:394 +#: ../../include/functions_servers.php:686 ../../include/functions_servers.php:1338 +msgid "Event server" +msgstr "イベントサーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:399 +msgid "ICMP server" +msgstr "ICMP サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:409 +#: ../../include/functions_servers.php:1347 +msgid "WUX server" +msgstr "WUX サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 +#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1359 +msgid "NCM server" +msgstr "NCM サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:421 +msgid "Network timeout" +msgstr "ネットワークタイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:427 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 +msgid "Plugin timeout" +msgstr "プラグインタイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:433 +msgid "SNMP console threads" +msgstr "SNMP コンソールスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:438 +msgid "Network threads" +msgstr "ネットワークスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:443 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:700 +msgid "Plugin threads" +msgstr "プラグインスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:448 +msgid "Recon threads" +msgstr "自動検出スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:453 +msgid "Dataserver threads" +msgstr "データサーバスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:458 +msgid "Web threads" +msgstr "ウェブスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:463 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:838 +msgid "SNMP threads" +msgstr "SNMP スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:468 +msgid "ICMP threads" +msgstr "ICMP スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:475 +msgid "Autocreate group" +msgstr "グループの自動作成" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 +msgid "Autocreate group force" +msgstr "グループの強制自動作成" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:485 +msgid "Autocreate" +msgstr "自動作成" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +msgid "Agent configuration files directory" +msgstr "エージェント設定ファイルディレクトリ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:497 +msgid "Directory where agent configuration files are stored" +msgstr "エージェント設定ファイル保存ディレクトリ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +msgid "Agent interval" +msgstr "エージェント実行間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:513 +msgid "Agent threads" +msgstr "エージェントスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +msgid "Number of threads used for sending agent XML data files" +msgstr "エージェント XML データ ファイルの送信に使用されるスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:519 +msgid "ICMP subnets blacklist" +msgstr "ICMP サブネットブラックリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:526 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:532 +msgid "Separated by a comma. Example: 192.168.0.0/24,8.8.8.8/30" +msgstr "カンマ区切り。例: 192.168.0.0/24,8.8.8.8/30" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:525 +msgid "SNMP subnets blacklist" +msgstr "SNMP サブネットブラックリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:531 +msgid "WMI subnets blacklist" +msgstr "WMI サブネットブラックリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537 +msgid "Path to braa binary" +msgstr "braa バイナリパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:542 +msgid "Credential password" +msgstr "認証パスワード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:543 +msgid "Password used to encrypt credential boxes" +msgstr "認証情報ボックスの暗号化に使用するパスワード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:548 +msgid "Remote configuration check interval" +msgstr "リモート設定チェック間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 +msgid "Daemon" +msgstr "デーモン" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 +msgid "Run in background if set to 1" +msgstr "1 に設定すると、バックグラウンドで実行します" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:560 +msgid "" +"Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate files so " +"that they don't interfere with remote agent configuration" +msgstr "" +"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモート エー" +"ジェントの設定に干渉しないようにするには、1 に設定します。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:565 +msgid "Exec interval" +msgstr "実行間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 +msgid "Time between exec checks" +msgstr "チェック実行間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:571 +msgid "Exec threads" +msgstr "実行スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 +msgid "Number of threads used for exec modules" +msgstr "モジュール実行スレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:577 +msgid "Path to fping binary" +msgstr "fping バイナリのパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:578 +msgid "" +"Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for installation " +"in Centos, if you are installing in another distro, install fping in /usr/bin/fping " +"and update this field with the new path" +msgstr "" +"Enterprise ICMP サーバによって使用されます。 CentOS にインストールする場合のデフォルト" +"パスは /usr/sbin/fping です。別のディストリビューションにインストールする場合は、" +"fping を /usr/bin/fping にインストールし、このフィールドにインストール先のパスを設定し" +"ます。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:583 +msgid "Path to Pandora Fast SNMP binary" +msgstr "Pandora 高速 SNMP バイナリのパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:588 +msgid "Forced add" +msgstr "強制追加" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:589 +msgid "" +"If set to 1, manually added hosts (via add_host or host_file) will always be created, " +"whether they respond to ping or not" +msgstr "" +"1 に設定すると、(add_host または host_file を介して) 手動で追加されたホストは、ping に" +"応答するかどうかにかかわらず、常に作成されます。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 +msgid "General GIS exec" +msgstr "一般的な GIS 実行" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:595 +msgid "Path to general GIS coordinates generator. It should be an executable file" +msgstr "一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:601 +msgid "Group where agents will be placed (must exist in the Pandora FMS console)" +msgstr "" +"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要があります)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 +msgid "Host file" +msgstr "Host ファイル" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 +msgid "File containing hosts to be scanned. The address may be followed by a hostname" +msgstr "スキャンするホストを含むファイル。アドレスの後にホスト名を続けます" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 +msgid "Latency block" +msgstr "レイテンシーブロック" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 +msgid "Number of hosts processed in a single call to nmap (latency)" +msgstr "nmap の 1 回の呼び出しで処理されるホストの数 (レイテンシー)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:618 +msgid "Latency interval" +msgstr "レイテンシー間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 +msgid "Time between latency checks" +msgstr "レイテンシーチェック間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:624 +msgid "Latency packets" +msgstr "レイテンシーパケット" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:625 +msgid "Number of ICMP packets to send per latency request" +msgstr "レイテンシーチェックごとに送信する ICMP パケットの数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:630 +msgid "Latency retries" +msgstr "レイテンシーリトライ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:631 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:677 +msgid "Number of retries for latency modules" +msgstr "レイテンシーモジュールのリトライ数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:636 +msgid "Latency threads" +msgstr "レイテンシースレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:637 +msgid "Number of threads used for latency checks." +msgstr "レイテンシーチェックに使用するスレッド数。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +msgid "Latency timeout" +msgstr "レイテンシータイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:643 +msgid "Timeout for latency checks in seconds." +msgstr "レイテンシーチェックのタイムアウト (秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 +msgid "Log file path" +msgstr "ログファイルパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:653 +msgid "Path to nmap binary" +msgstr "nmap バイナリパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 +msgid "Ping block" +msgstr "Ping ブロック" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:659 +msgid "Number of hosts processed in a single call to nmap (ping)" +msgstr "nmap (ping) の 1 回の呼び出しで処理されるホスト数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:664 +msgid "Ping interval" +msgstr "Ping 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:665 +msgid "Time between ping checks" +msgstr "Ping チェック間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:670 +msgid "Ping packets" +msgstr "Ping パケット" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:671 +msgid "Number of ICMP packets to send per ping request" +msgstr "ping チェックごとに送信する ICMP パケット数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:676 +msgid "Ping retries" +msgstr "Ping リトライ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 +msgid "Ping threads" +msgstr "Ping スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:683 +msgid "Number of threads used for ping checks" +msgstr "ping チェックに使用するスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 +msgid "Ping timeout" +msgstr "Ping タイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:689 +msgid "Timeout for ping checks in seconds" +msgstr "ping チェックのタイムアウト (秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 +msgid "Plugin interval" +msgstr "プラグイン間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 +msgid "Time between plug-in checks" +msgstr "プラグインチェック間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 +msgid "Number of threads used for plug-in checks" +msgstr "プラグインチェックに試用するスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:707 +msgid "Timeout for plug-in checks in seconds" +msgstr "プラグインチェックのタイムアウト (秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:712 +msgid "Proxy traps to" +msgstr "トラッププロキシ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:713 +msgid "Enable the SNMP trap proxy to the specified address" +msgstr "指定したアドレスに対する SNMP トラッププロキシの有効化" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:718 +msgid "Proxy tentacle to" +msgstr "Tentacle プロキシ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:719 +msgid "Enable the Tentacle proxy to the specified address:port" +msgstr "指定した アドレス:ポート番号 への Tentacle プロキシの有効化" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:724 +msgid "Recon community" +msgstr "自動検出コミュニティ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:725 +msgid "Comma separated list of SNMP communities to try for SNMP auto-discovery" +msgstr "SNMP 自動検出を行う際の SNMP コミュニティのカンマ区切りリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:730 +msgid "Recon enabled" +msgstr "自動検出有効" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:731 +msgid "Enable (1) or disable (0) host auto-discovery" +msgstr "ホスト自動検出の有効化 (1) または無効化 (0)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:736 +msgid "Recon interval" +msgstr "自動検出間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:737 +msgid "Time between network scans in seconds" +msgstr "秒単位でのネットワークスキャン間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:742 +msgid "Recon mode" +msgstr "自動検出モード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 +msgid "Comma separated list of auto-discovery modules (snmp,icmp,wmi)" +msgstr "自動検出モジュール (snmp、icmp、wmi) のカンマ区切りリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 +msgid "Recon task" +msgstr "自動検出タスク" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:749 +msgid "" +"Comma separated list of networks (in slash notation) to scan for host auto-discovery " +"(example: 192.168.0.0/24,192.168.1.0/24)" +msgstr "" +"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表記) (例: " +"192.168.0.0/24,192.168.1.0/24)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 +msgid "Recon timing template" +msgstr "自動検出タイミングテンプレート" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 +msgid "" +"Like nmap_timing_template, but applies to Satellite Server and Recon Server network " +"scans. 3 by default" +msgstr "" +"nmap_timing_template と同様ですが、サテライトサーバおよび自動検出サーバのネットワーク " +"スキャンに適用されます。 デフォルトは 3 です" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:760 +#: ../../enterprise/operation/agentes/tag_view.php:647 +#: ../../operation/agentes/estado_agente.php:898 +msgid "Remote config" +msgstr "リモート設定" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 +msgid "Enable (1) or disable (0) remote configuration" +msgstr "リモート設定の有効化(1)または無効化(0)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:766 +#: ../../enterprise/include/class/DeploymentCenter.class.php:811 +msgid "Server IP" +msgstr "サーバ IP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:767 +msgid "Tentacle server address. Put here your Pandora FMS data server address" +msgstr "" +"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してください" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:773 +msgid "Name of the Satellite server (the hostname is used by default)" +msgstr "サテライトサーバの名前 (デフォルトではホスト名が使用されます)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:778 +msgid "Server path" +msgstr "サーバパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:779 +msgid "Path where XML files are copied (only used if transfer mode is set to local)" +msgstr "" +"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用されま" +"す)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:784 +msgid "Server port" +msgstr "サーバポート" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:785 +msgid "Tentacle server port" +msgstr "Tentacle サーバポート" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 +msgid "SSH interval" +msgstr "SSH 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:791 +msgid "Time between SSH checks" +msgstr "SSH チェック間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +msgid "SSH threads" +msgstr "SSH スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 +msgid "Number of threads used for SSH modules" +msgstr "SSH モジュールのスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:802 +msgid "SSH timeout" +msgstr "SSH タイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +msgid "Timeout for SSH checks in seconds" +msgstr "SSH チェックのタイムアウト (秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:808 +msgid "Keepalive" +msgstr "キープアライブ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 +msgid "" +"Interval of the main server loop in seconds. Status updates are sent to Pandora every " +"keepalive seconds" +msgstr "" +"メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに Pandora " +"に送信されます" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:814 +msgid "SNMP blacklist" +msgstr "SNMP ブラックリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:815 +msgid "SNMP module blacklist" +msgstr "SNMP モジュールブラックリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:820 +msgid "SNMP block" +msgstr "SNMP ブロック" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:821 +msgid "Number of hosts processed in a single call to braa (SNMPv1)" +msgstr "braa (SNMPv1) の 1 回の呼び出しで処理するホスト数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:826 +msgid "SNMP interval" +msgstr "SNMP 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:827 +msgid "Time between SNMP checks (SNMPv1)" +msgstr "SNMP チェック (SNMPv1) 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +msgid "SNMP retries" +msgstr "SNMP リトライ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:833 +msgid "Number of retries for SNMP modules (SNMPv1)" +msgstr "SNMP モジュール (SNMPv1) のリトライ回数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:839 +msgid "Number of threads used for SNMP checks (SNMPv1)" +msgstr "SNMP チェック (SNMPv1) に使用するスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 +msgid "SNMP timeout" +msgstr "SNMP タイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:845 +msgid "Timeout for SNMP checks in seconds (SNMPv1)" +msgstr "SNMP チェック (SNMPv1) のタイムアウト (秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 +msgid "SNMP verify" +msgstr "SNMP 検証" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 +msgid "Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" +msgstr "braa の実行を妨げる SNMPv1 モジュールの検証を有効化 (1) または無効化 (0) します" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 +msgid "" +"Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their version). " +"WARNING: some modules could stop working if you change this setting" +msgstr "" +"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョンを明示" +"的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しなくなる可能性があ" +"ります" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:862 +msgid "SNMPv2c block" +msgstr "SNMPv2c ブロック" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:863 +msgid "Number of hosts processed in a single call to braa (SNMPv2c)" +msgstr "braa (SNMPv2c) の 1 回の呼び出しで処理するホスト数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:868 +msgid "SNMPv2c interval" +msgstr "SNMPv2c 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:869 +msgid "Time between SNMP checks (SNMPv2c)" +msgstr "SNMP チェック (SNMPv2c) 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:874 +msgid "SNMPv2c retries" +msgstr "SNMPv2c リトライ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:875 +msgid "Number of retries for SNMP modules (SNMPv2c)" +msgstr "SNMP モジュール (SNMPv2c) のリトライ回数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:880 +msgid "SNMPv2c threads" +msgstr "SNMPv2c スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:881 +msgid "Number of threads used for SNMP checks (SNMPv2c)" +msgstr "SNMP チェック (SNMPv2c) に使用するスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 +msgid "SNMPv2c timeout" +msgstr "SNMPv2c タイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:887 +msgid "Timeout for snmp checks in seconds (SNMPv2c)" +msgstr "SNMP チェック (SNMPv2c) のタイムアウト (秒単位) " + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 +msgid "SNMPv2c verify" +msgstr "SNMPv2c 検証" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 +msgid "Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" +msgstr "braa の実行を妨げる SNMPv2 モジュールの検証を有効化 (1) または無効化 (0) します" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:898 +msgid "SNMPv3 block" +msgstr "SNMPv3 ブロック" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 +msgid "Number of hosts processed in a single call to braa (SNMPv3)" +msgstr "braa (SNMPv3) の 1 回の呼び出しで処理するホスト数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:904 +msgid "SNMPv3 interval" +msgstr "SNMPv3 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:905 +msgid "Time between SNMP checks (SNMPv3)" +msgstr "SNMP チェック (SNMPv3) 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:910 +msgid "SNMPv3 retries" +msgstr "SNMPv3 リトライ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:911 +msgid "Number of retries for SNMP modules (SNMPv3)" +msgstr "SNMP モジュール (SNMPv3) のリトライ回数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:916 +msgid "SNMPv3 threads" +msgstr "SNMPv3 スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:917 +msgid "Number of threads used for SNMP checks (SNMPv3)" +msgstr "SNMP チェック (SNMPv3) に使用するスレッド数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:922 +msgid "SNMPv3 timeout" +msgstr "SNMPv3 タイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:923 +msgid "Timeout for SNMP checks in seconds (SNMPv3)" +msgstr "SNMP チェック (SNMPv3) のタイムアウト (秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 +msgid "SNMPv3 verify" +msgstr "SNMPv3 検証" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:929 +msgid "" +"Enable (1) or disable (0) the verification of SNMPv3 modules that break pandorafsnmp" +msgstr "braa の実行を妨げる SNMPv3 モジュールの検証を有効化 (1) または無効化 (0) します" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 +msgid "SNMPv3 security level" +msgstr "SNMPv3 セキュリティレベル" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 +msgid "Security level used for SNMPv3 messages (noauth, authnopriv or authpriv)" +msgstr "" +"SNMPv3 メッセージに使用されるセキュリティ レベル (noauth、authnopriv、または authpriv)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:940 +msgid "SNMPv3 security name" +msgstr "SNMPv3 セキュリティ名" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 +msgid "Security name used for SNMPv3 messages" +msgstr "SNMPv3 メッセージに使用されるセキュリティ名" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:946 +msgid "SNMPv3 authentication protocol" +msgstr "SNMPv3 認証プロトコル" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:947 +msgid "Authentication protocol (md5 or sha) for authenticated SNMPv3 requests" +msgstr "SNMPv3 リクエストの認証プロトコル (md5 または sha)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:952 +msgid "SNMPv3 authentication password" +msgstr "SNMPv3 認証パスワード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:953 +msgid "Authentication password for authenticated SNMPv3 request" +msgstr "SNMPv3 リクエストの認証パスワード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:958 +msgid "SNMPv3 privacy protocol" +msgstr "SNMPv3 暗号化プロトコル" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:959 +msgid "Privacy protocol (des or aes) for encrypted SNMPv3 requests" +msgstr "SNMPv3 リクエストの暗号化プロトコル (des または aes)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:964 +msgid "SNMPv3 privacy password" +msgstr "SNMPv3 プライバシーパスワード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:965 +msgid "Privacy password for encrypted SNMPv3 messages" +msgstr "SNMPv3 メッセージの暗号化パスワード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 +msgid "Startup delay" +msgstr "開始遅延" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:971 +msgid "Wait startup_delay seconds before sending XML data files for the first time" +msgstr "初回の XML データファイル送信の前に、startup_delay 秒待機します。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 +msgid "TCP interval" +msgstr "TCP 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 +msgid "Time between TCP checks" +msgstr "TCP チェック間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:982 +msgid "TCP threads" +msgstr "TCP スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 +msgid "Threads dedicated to TCP checks" +msgstr "TCP チェックのスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:988 +msgid "TCP timeout" +msgstr "TCP タイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:989 +msgid "Timeout for TCP checks in seconds" +msgstr "TCP チェックのタイムアウト(秒単位)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:994 +msgid "Temporal" +msgstr "一時的" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:995 +msgid "Temporal directory where XML files are created" +msgstr "XML ファイルが作成される一時ディレクトリ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1000 +msgid "Temporal minimum size" +msgstr "一時的な最小サイズ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1001 +msgid "Minimum available bytes in the temporal directory to enable the XML buffer" +msgstr "XML バッファを有効にする場合の一時ディレクトリで使用可能な最小バイト数" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1006 +msgid "Full path to tentacle client" +msgstr "tentacle クライアントのフルパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 +msgid "Timeout for the timeout command" +msgstr "timeout コマンドのタイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 +msgid "In seconds" +msgstr "秒単位" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1017 +msgid "Server opts" +msgstr "サーバオプション" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 +msgid "Parameters that are passed to Tentacle" +msgstr "Tentacle に渡されるパラメータ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1024 +msgid "tentacle or local" +msgstr "Tentacle またはローカル" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1029 +msgid "Verbosity" +msgstr "ログの詳細度" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1030 +msgid "Verbosity level from 0 (less verbose) to 10 (more verbose)" +msgstr "0 (詳細度が低い) から 10 (詳細度が高い) までの詳細度レベル" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1035 +msgid "VLAN cache enabled" +msgstr "VLAN キャッシュ有効" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1036 +msgid "Enable (1) or disable (0) the VLAN cache for host auto-discovery" +msgstr "ホスト自動検出用の VLAN キャッシュを有効 (1) または無効 (0) にします" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1041 +msgid "Enable XML buffer" +msgstr "XML バッファの有効化" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 +msgid "WMI authentication" +msgstr "WMI 認証" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 +msgid "Comma separated list of username%password pairs to try for WMI authentication" +msgstr "WMI 認証を試行する ユーザ名%パスワード のペアのカンマ区切りリスト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1052 +msgid "Full path to WMI client binary" +msgstr "WMI クライアントバイナリのフルパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1057 +msgid "WMI interval" +msgstr "WMI 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1058 +msgid "Time in seconds between WMI checks" +msgstr "秒単位の WMI 監視間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1063 +msgid "WMI NTLMv2" +msgstr "WMI NTLMv2" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1064 +msgid "Enable to use NTLMv2 authentication for WMI" +msgstr "WMI で NTLMv2 認証を使用できるようにする" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1069 +msgid "WMI threads" +msgstr "WMI スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1070 +msgid "Threads dedicated to WMI polling" +msgstr "WMI ポーリングのスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1077 +msgid "Secondary mode" +msgstr "セカンダリモード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1078 +msgid "" +"If secondary_mode is set to on_error, data files are copied to the secondary server " +"only if the primary server fails. If set to always, data files are always copied to " +"the secondary server" +msgstr "" +"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生した場合" +"にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定すると、デー" +"タ ファイルは常にセカンダリサーバにコピーされます。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1083 +msgid "Secondary server IP" +msgstr "セカンダリサーバ IP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 +msgid "Secondary server path" +msgstr "セカンダリサーバパス" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1093 +msgid "Secondary server port" +msgstr "セカンダリサーバポート" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1098 +msgid "Secondary transfer mode" +msgstr "セカンダリ転送モード" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 +msgid "Secondary server opts" +msgstr "セカンダリサーバオプション" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1188 +msgid "Delete remote conf server files" +msgstr "リモート設定サーバファイル削除" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1189 +msgid "Delete this conf file implies that server will send back local config to console" +msgstr "" +"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すことを意味し" +"ます" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1223 +msgid "General server configuration" +msgstr "一般サーバ設定" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1230 +msgid "Secondary server configuration" +msgstr "セカンダリサーバ設定" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1236 +msgid "Server features" +msgstr "サーバ機能" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1243 +msgid "Optimization settings" +msgstr "カスタム設定" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1250 +msgid "Other server settings" +msgstr "他のサーバ設定" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "認証情報ボックスの追加" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "対象ディレクトリ" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +#: ../../enterprise/include/class/Azure.cloud.php:823 +#: ../../enterprise/include/class/VMware.app.php:643 +#: ../../enterprise/include/class/Aws.S3.php:584 +#: ../../enterprise/include/class/Aws.cloud.php:566 +msgid "Extra options" +msgstr "拡張オプション" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "サテライトサーバ" + +#: ../../enterprise/include/functions_cron.php:178 +#: ../../enterprise/include/functions_cron.php:256 +#: ../../enterprise/include/functions_cron.php:331 +#: ../../enterprise/include/functions_cron.php:375 +msgid "Report to build" +msgstr "生成するレポート" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:236 +#: ../../enterprise/include/functions_reporting.php:8168 +#: ../../enterprise/operation/reporting/custom_reporting.php:124 +msgid "Send to emails (separated by comma)" +msgstr "メール送信 (カンマ区切り)" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:240 +#: ../../enterprise/include/functions_reporting.php:8176 +#: ../../enterprise/operation/reporting/custom_reporting.php:132 +#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/messages/message_edit.php:350 +msgid "Subject" +msgstr "件名" + +#: ../../enterprise/include/functions_cron.php:194 +#: ../../enterprise/include/functions_cron.php:244 +#: ../../enterprise/include/functions_reporting.php:8194 +#: ../../enterprise/operation/reporting/custom_reporting.php:150 +#: ../../operation/messages/message_edit.php:360 +msgid "Message" +msgstr "メッセージ" + +#: ../../enterprise/include/functions_cron.php:199 +#: ../../enterprise/include/functions_cron.php:249 +#: ../../enterprise/include/functions_cron.php:275 +msgid "Report Type" +msgstr "レポートタイプ" + +#: ../../enterprise/include/functions_cron.php:206 +#: ../../enterprise/include/functions_cron.php:353 +msgid "Template to build" +msgstr "ビルドするテンプレート" + +#: ../../enterprise/include/functions_cron.php:224 +msgid "Regexp agent filter" +msgstr "正規表現エージェントフィルタ" + +#: ../../enterprise/include/functions_cron.php:228 +#: ../../enterprise/include/functions_tasklist.php:367 +#: ../../include/functions_cron.php:693 +msgid "Report per agent" +msgstr "エージェントごとのレポート" + +#: ../../enterprise/include/functions_cron.php:264 +#: ../../enterprise/include/functions_cron.php:286 +#: ../../enterprise/include/functions_cron.php:376 +msgid "Save to disk into path" +msgstr "保存先パス" + +#: ../../enterprise/include/functions_cron.php:265 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "apache ユーザがこのフォルダに読み書き可能である必要があります。例: " + +#: ../../enterprise/include/functions_cron.php:271 +msgid "File name prefix" +msgstr "ファイル名プレフィックス" + +#: ../../enterprise/include/functions_cron.php:291 +msgid "Active backups" +msgstr "有効なバックアップ" + +#: ../../enterprise/include/functions_cron.php:299 +#: ../../enterprise/include/functions_tasklist.php:411 +#: ../../include/functions_cron.php:732 +msgid "Custom script" +msgstr "カスタムスクリプト" + +#: ../../enterprise/include/functions_cron.php:306 +#: ../../enterprise/include/functions_cron.php:332 +#: ../../enterprise/include/functions_cron.php:354 +msgid "Send to email" +msgstr "送信先メールアドレス" + +#: ../../enterprise/include/functions_cron.php:315 +msgid "Function name" +msgstr "機能名" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report by email" +msgstr "カスタムレポートをメールで送信" + +#: ../../enterprise/include/functions_cron.php:355 +msgid "Send custom report (from template) by email" +msgstr "(テンプレートから) email でカスタムレポートを送信" + +#: ../../enterprise/include/functions_cron.php:377 +msgid "Save custom report to disk" +msgstr "カスタムレポートをディスクに保存" + +#: ../../enterprise/include/functions_cron.php:397 +msgid "Backup Pandora database" +msgstr "Pandora データベースバックアップ" + +#: ../../enterprise/include/functions_cron.php:417 +msgid "Execute custom script" +msgstr "カスタムスクリプト実行" + +#: ../../enterprise/include/functions_cron.php:499 +msgid "Not scheduled" +msgstr "スケジュールされていません" + +#: ../../enterprise/include/functions_cron.php:500 +#: ../../include/functions_netflow.php:1849 +msgid "Hourly" +msgstr "毎時" + +#: ../../enterprise/include/functions_cron.php:504 +msgid "Yearly" +msgstr "年次" + +#: ../../enterprise/include/functions_cron.php:800 +#: ../../enterprise/include/functions_cron.php:833 +#: ../../enterprise/include/functions_reporting.php:8188 +#: ../../enterprise/include/functions_reporting.php:8202 +#: ../../enterprise/operation/reporting/custom_reporting.php:144 +#: ../../enterprise/operation/reporting/custom_reporting.php:158 +msgid "This is an optional field" +msgstr "これはオプションフィールドです" + +#: ../../enterprise/include/functions_cron.php:1531 +msgid "Scheduled report had an attempt to send an email without attachments." +msgstr "スケジュールされたレポートは、添付ファイルなしでメールを送信しました。" + +#: ../../enterprise/include/functions_cron.php:1534 +msgid "Scheduled report had an attempt to send an email with some attachments." +msgstr "" +"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しました。" + +#: ../../enterprise/include/functions_cron.php:1776 +#: ../../include/functions_reporting.php:15362 +msgid "Greetings" +msgstr "挨拶" + +#: ../../enterprise/include/functions_cron.php:1778 +msgid "Attached to this email there's a CSV file of the logs" +msgstr "このメールに添付されているのは、ログの CSV ファイルです。" + +#: ../../enterprise/include/functions_cron.php:1780 +#: ../../mobile/include/functions_web.php:84 ../../mobile/include/ui.class.php:327 +#: ../../include/functions_reporting.php:15368 +msgid "Generated at" +msgstr "更新日時:" + +#: ../../enterprise/include/functions_cron.php:1782 +#: ../../include/functions_reporting.php:15370 +msgid "Thanks for your time." +msgstr "お時間いただきありがとうございます。" + +#: ../../enterprise/include/functions_cron.php:1784 +#: ../../include/functions_reporting.php:15372 +msgid "Best regards, Pandora FMS" +msgstr "よろしくお願いします。Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1786 +#: ../../include/functions_reporting.php:15374 +msgid "This is an automatically generated email from Pandora FMS, please do not reply." +msgstr "これは、Pandora FMS から自動生成されたメールです。返信しないでください。" + +#: ../../enterprise/include/functions_cron.php:1788 +msgid "logs csv" +msgstr "ログ CSV" + +#: ../../enterprise/include/functions_cron.php:2207 +#, php-format +msgid "Error while executing task: %s, running %s, reason %s" +msgstr "%s タスク実行中にエラーです。実行中 %s, 理由 %s" + +#: ../../enterprise/include/functions_cron.php:2221 +#: ../../enterprise/include/functions_cron.php:2231 +msgid "Error while executing task" +msgstr "タスク実行中にエラーです" + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2378 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "自動検出コンソールタスクが正しく動作していません" + +#: ../../enterprise/include/functions_tasklist.php:58 +msgid "Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" +"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存していま" +"す" + +#: ../../enterprise/include/functions_tasklist.php:59 +#: ../../include/class/ConsoleSupervisor.php:2381 +msgid "Please, add the following line to your crontab file:" +msgstr "crontab ファイルに次の行を追加してください:" + +#: ../../enterprise/include/functions_tasklist.php:74 +#: ../../include/class/ConsoleSupervisor.php:2394 +msgid "Last execution" +msgstr "最後の実行" + +#: ../../enterprise/include/functions_tasklist.php:77 +msgid "Please check process is no locked." +msgstr "プロセスがロックされていないことを確認してください。" + +#: ../../enterprise/include/functions_tasklist.php:163 +#: ../../enterprise/include/functions_tasklist.php:716 +msgid "There are no console task defined yet." +msgstr "定義済のコンソールタスクがありません。" + +#: ../../enterprise/include/functions_tasklist.php:176 +#: ../../include/functions_cron.php:493 +msgid "Last run" +msgstr "最後の実行" + +#: ../../enterprise/include/functions_tasklist.php:245 +#: ../../enterprise/include/functions_tasklist.php:307 +#: ../../enterprise/include/functions_tasklist.php:393 +#: ../../enterprise/include/functions_tasklist.php:434 +#: ../../enterprise/include/functions_tasklist.php:487 +#: ../../enterprise/include/functions_tasklist.php:526 +#: ../../enterprise/include/functions_tasklist.php:563 +#: ../../include/functions_cron.php:527 ../../include/functions_cron.php:565 +#: ../../include/functions_cron.php:620 ../../include/functions_cron.php:712 +#: ../../include/functions_cron.php:748 ../../include/functions_cron.php:794 +#: ../../include/functions_cron.php:836 ../../include/functions_cron.php:870 +msgid "Force run" +msgstr "強制実行" + +#: ../../enterprise/include/functions_tasklist.php:281 +#: ../../enterprise/include/functions_tasklist.php:370 +#: ../../enterprise/include/functions_tasklist.php:464 +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1230 +#: ../../enterprise/include/functions_reporting_csv.php:1261 +#: ../../enterprise/include/functions_reporting_csv.php:1316 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting.php:8114 +#: ../../enterprise/include/functions_reporting.php:8148 +#: ../../enterprise/operation/reporting/custom_reporting.php:109 +#: ../../include/functions_cron.php:603 ../../include/functions_cron.php:696 +#: ../../include/functions_cron.php:820 +msgid "Report type" +msgstr "レポートタイプ" + +#: ../../enterprise/include/functions_tasklist.php:341 +#: ../../include/functions_cron.php:667 +msgid "regex" +msgstr "正規表現" + +#: ../../enterprise/include/functions_tasklist.php:461 +#: ../../extensions/resource_exportation.php:433 ../../include/functions_cron.php:776 +#: ../../include/functions_cron.php:817 +#: ../../include/lib/Dashboard/Widgets/reports.php:369 +#: ../../include/lib/Dashboard/Widgets/reports.php:414 +msgid "Report" +msgstr "レポート" + +#: ../../enterprise/include/functions_tasklist.php:463 +#: ../../enterprise/include/class/ManageBackups.class.php:166 +#: ../../include/functions_cron.php:778 ../../include/functions_cron.php:819 +#: ../../include/class/Diagnostics.class.php:2175 +msgid "Path" +msgstr "パス" + +#: ../../enterprise/include/functions_tasklist.php:597 +msgid "Task disabled" +msgstr "無効化タスク" + +#: ../../enterprise/include/functions_tasklist.php:600 +#: ../../enterprise/include/functions_ipam.php:2082 +#: ../../enterprise/include/functions_ipam.php:2083 +#: ../../enterprise/include/functions_ipam.php:2084 +#: ../../enterprise/tools/ipam/ipam_list.php:701 +#: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1330 ../../include/functions_cron.php:898 +#: ../../include/functions_treeview.php:660 ../../include/functions_ui.php:549 +#: ../../operation/agentes/estado_generalagente.php:367 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "未実行" + +#: ../../enterprise/include/functions_tasklist.php:699 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1026 +#: ../../include/functions_cron.php:973 +msgid "Disable task" +msgstr "タスク無効化" + +#: ../../enterprise/include/functions_tasklist.php:699 +#: ../../include/functions_cron.php:973 +msgid "Enable task" +msgstr "タスク有効化" + +#: ../../enterprise/include/functions_tasklist.php:721 +msgid "Console Tasks" +msgstr "コンソールタスク" + +#: ../../enterprise/include/functions_hostdevices.php:45 +msgid "Remote commands enabled" +msgstr "リモートコマンドが有効" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 +msgid "The phase does not have a defined script" +msgstr "フェーズに定義済スクリプトがありません" + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 +msgid "Edit Data" +msgstr "データ編集" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 +msgid "avg" +msgstr "平均" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4473 +msgid "max" +msgstr "最大" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4474 +msgid "min" +msgstr "最小" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4475 +msgid "sum" +msgstr "合計" + +#: ../../enterprise/include/ajax/ipam.ajax.php:249 +msgid "Current Networks" +msgstr "現在のネットワーク" + +#: ../../enterprise/include/ajax/ipam.ajax.php:296 +msgid "Please, create networks to assign to " +msgstr "次へ割り当てるネットワークを作成してください: " + +#: ../../enterprise/include/ajax/ipam.ajax.php:300 +msgid "No networks to assign to supernet" +msgstr "スーパーネットへ割り当てるネットワークがありません" + +#: ../../enterprise/include/ajax/ipam.ajax.php:302 +msgid "Please, create networks to assign to" +msgstr "次へ割り当てるネットワークを作成してください:" + +#: ../../enterprise/include/ajax/ipam.ajax.php:307 +msgid "Create and add networks in bulk" +msgstr "一括でのネットワーク作成と追加" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "Starting network" +msgstr "開始ネットワーク" + +#: ../../enterprise/include/ajax/ipam.ajax.php:316 +msgid "" +"The networks will be created/added starting from this address in the subnetting range " +"given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value was provided, " +"it uses the starting address of the supernet by default." +msgstr "" +"ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されます。 " +"CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デフォルトでスー" +"パーネットの開始アドレスが使用されます。" + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "Max. number" +msgstr "最大値" + +#: ../../enterprise/include/ajax/ipam.ajax.php:320 +msgid "" +"Maximum number of networks to be created/added from starting address of the range " +"specified above" +msgstr "上記で指定した範囲の開始アドレスから作成/追加するネットワークの最大数" + +#: ../../enterprise/include/ajax/ipam.ajax.php:385 +#: ../../enterprise/include/functions_ipam.php:1369 +#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/tools/ipam/ipam_list.php:97 +#: ../../enterprise/tools/ipam/ipam_list.php:612 +#: ../../enterprise/tools/ipam/ipam_editor.php:191 +#: ../../godmode/events/event_responses.editor.php:123 +msgid "Location" +msgstr "場所" + +#: ../../enterprise/include/ajax/ipam.ajax.php:386 +#: ../../enterprise/tools/ipam/ipam_editor.php:192 +msgid "For example: Central Data Center" +msgstr "例: 中央データセンター" + +#: ../../enterprise/include/ajax/ipam.ajax.php:418 +#: ../../enterprise/tools/ipam/ipam.php:171 ../../enterprise/tools/ipam/ipam.php:411 +#: ../../enterprise/tools/ipam/ipam_editor.php:224 +msgid "Sites" +msgstr "サイト" + +#: ../../enterprise/include/ajax/ipam.ajax.php:419 +#: ../../enterprise/tools/ipam/ipam_editor.php:225 +msgid "For example: Pandora" +msgstr "例: Pandora" + +#: ../../enterprise/include/ajax/ipam.ajax.php:437 +#: ../../enterprise/tools/ipam/ipam_list.php:633 +#: ../../enterprise/tools/ipam/ipam_editor.php:243 +msgid "Vrf" +msgstr "" + +#: ../../enterprise/include/ajax/ipam.ajax.php:438 +#: ../../enterprise/tools/ipam/ipam_editor.php:244 +msgid "Virtual Routing and Forwarding" +msgstr "仮想ルーティングとフォワーディング" + +#: ../../enterprise/include/ajax/ipam.ajax.php:456 +#: ../../enterprise/tools/ipam/ipam_editor.php:262 +msgid "Include statistical monitors" +msgstr "統計監視を含める" + +#: ../../enterprise/include/ajax/ipam.ajax.php:471 +#: ../../enterprise/tools/ipam/ipam_editor.php:277 +msgid "Lightweight mode" +msgstr "軽量モード" + +#: ../../enterprise/include/ajax/ipam.ajax.php:472 +#: ../../enterprise/tools/ipam/ipam_editor.php:278 +msgid "Use quicker network scan" +msgstr "より高速なネットワークスキャンを使用" + +#: ../../enterprise/include/ajax/ipam.ajax.php:488 +#: ../../enterprise/tools/ipam/ipam_editor.php:294 +msgid "Target group for monitoring agent" +msgstr "監視エージェントの対象グループ" + +#: ../../enterprise/include/ajax/ipam.ajax.php:509 +#: ../../enterprise/tools/ipam/ipam_editor.php:315 +msgid "Scan interval" +msgstr "スキャン間隔" + +#: ../../enterprise/include/ajax/ipam.ajax.php:510 +#: ../../enterprise/tools/ipam/ipam_editor.php:316 +msgid "0 for manually scan" +msgstr "0 を設定すると手動スキャンです" + +#: ../../enterprise/include/ajax/ipam.ajax.php:524 +#: ../../enterprise/tools/ipam/ipam_editor.php:330 +msgid "The list of users can manage the networks in the IPAM." +msgstr "IPAM でネットワークを管理できるユーザ一覧。" + +#: ../../enterprise/include/ajax/ipam.ajax.php:525 +#: ../../enterprise/tools/ipam/ipam_editor.php:331 +msgid " Only the admin users can manage networks and edit the networks" +msgstr "admin ユーザのみネットワーク管理とネットワークの編集ができます。" + +#: ../../enterprise/include/ajax/ipam.ajax.php:526 +#: ../../enterprise/tools/ipam/ipam_editor.php:332 +msgid "Operator users" +msgstr "オペレータユーザ" + +#: ../../enterprise/include/ajax/ipam.ajax.php:532 +#: ../../enterprise/tools/ipam/ipam_editor.php:338 +msgid "All users" +msgstr "全ユーザ" + +#: ../../enterprise/include/ajax/ipam.ajax.php:613 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 +msgid "Supernet" +msgstr "スーパーネット" + +#: ../../enterprise/include/ajax/ipam.ajax.php:614 +#: ../../enterprise/include/ajax/ipam.ajax.php:644 +#: ../../enterprise/include/functions_ipam.php:1986 +#: ../../enterprise/tools/ipam/ipam_list.php:594 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 +#: ../../enterprise/tools/ipam/ipam_calculator.php:185 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +#: ../../godmode/wizards/HostDevices.class.php:916 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:599 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:80 +msgid "Network" +msgstr "ネットワーク" + +#: ../../enterprise/include/ajax/ipam.ajax.php:622 +msgid "Go to supernet edition" +msgstr "スーパーネット編集へ行く" + +#: ../../enterprise/include/ajax/ipam.ajax.php:664 +msgid "Go to network edition" +msgstr "ネットワーク編集へ行く" + +#: ../../enterprise/include/ajax/ipam.ajax.php:691 +#: ../../enterprise/include/ajax/ipam.ajax.php:748 +#: ../../enterprise/include/ajax/ipam.ajax.php:779 +#: ../../enterprise/include/ajax/ipam.ajax.php:826 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 +msgid "No assigned networks" +msgstr "割当ネットワークがありません" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 +msgid "Group name" +msgstr "グループ名" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 +msgid "OS name" +msgstr "OS 名" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 +msgid "IP Network range" +msgstr "IP ネットワーク範囲" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 +msgid "Script" +msgstr "スクリプト" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 +msgid "Arguments" +msgstr "引数" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 +msgid "Unknown option" +msgstr "不明なオプションです" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 +#: ../../include/functions_treeview.php:783 ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:544 +msgid "Custom field" +msgstr "カスタムフィールド" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257 +msgid "IP range" +msgstr "IP 範囲" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 +msgid "Script output (> 0)" +msgstr "スクリプト出力 (> 0)" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1110 +#: ../../godmode/snmpconsole/snmp_alert.php:1257 +msgid "Alert action" +msgstr "アクション" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +msgid "Script path" +msgstr "スクリプトパス" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:566 +msgid "Script argument" +msgstr "スクリプト引数" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 +#: ../../godmode/alerts/alert_list.list.php:702 +#: ../../godmode/alerts/alert_list.list.php:1181 +msgid "Update action" +msgstr "アクションの更新" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "全体時間: " + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 +#: ../../enterprise/include/functions_reporting_csv.php:425 +#: ../../enterprise/include/functions_reporting_csv.php:447 +#: ../../enterprise/include/functions_reporting_csv.php:478 +#: ../../enterprise/include/functions_reporting_csv.php:701 +#: ../../enterprise/include/functions_reporting_csv.php:746 +#: ../../enterprise/include/functions_reporting_csv.php:787 +#: ../../enterprise/include/functions_reporting_csv.php:801 +#: ../../enterprise/include/functions_reporting_csv.php:815 +#: ../../enterprise/include/functions_reporting_csv.php:835 +#: ../../enterprise/include/functions_reporting_csv.php:864 +#: ../../enterprise/include/functions_reporting_csv.php:903 +#: ../../enterprise/include/functions_reporting_csv.php:947 +#: ../../enterprise/include/functions_reporting_csv.php:979 +#: ../../enterprise/include/functions_reporting_csv.php:1016 +#: ../../enterprise/include/functions_reporting_csv.php:1039 +#: ../../enterprise/include/functions_reporting_csv.php:1190 +#: ../../enterprise/include/functions_reporting_csv.php:1217 +#: ../../enterprise/include/functions_reporting_csv.php:1248 +#: ../../enterprise/include/functions_reporting_csv.php:1303 +#: ../../enterprise/include/functions_reporting_csv.php:1358 +#: ../../enterprise/include/functions_reporting_csv.php:1407 +#: ../../enterprise/include/functions_reporting_csv.php:1462 +#: ../../enterprise/include/functions_reporting_csv.php:1491 +#: ../../enterprise/include/functions_reporting_csv.php:1528 +#: ../../enterprise/include/functions_reporting_csv.php:1654 +#: ../../enterprise/include/functions_reporting_csv.php:1770 +#: ../../enterprise/include/functions_reporting_csv.php:1914 +#: ../../enterprise/include/functions_reporting_csv.php:1964 +#: ../../enterprise/include/functions_reporting_csv.php:2010 +#: ../../enterprise/include/functions_reporting_csv.php:2078 +#: ../../enterprise/include/functions_reporting_csv.php:2222 +#: ../../enterprise/include/functions_reporting_csv.php:2314 +#: ../../enterprise/include/functions_reporting_csv.php:2345 +#: ../../enterprise/include/functions_reporting_csv.php:2381 +#: ../../enterprise/include/functions_reporting_csv.php:2434 +#: ../../enterprise/include/functions_reporting_csv.php:2456 +#: ../../enterprise/include/functions_reporting_csv.php:2497 +#: ../../enterprise/include/functions_reporting_csv.php:2551 +#: ../../enterprise/include/functions_reporting_csv.php:2580 +#: ../../enterprise/include/functions_reporting_csv.php:2656 +#: ../../enterprise/include/functions_reporting_csv.php:2707 +#: ../../enterprise/include/functions_reporting_csv.php:2756 +#: ../../enterprise/include/functions_reporting_csv.php:2833 +#: ../../godmode/setup/setup_integria.php:333 ../../godmode/setup/setup_integria.php:454 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 +#: ../../include/lib/Dashboard/Widget.php:555 +#: ../../operation/agentes/estado_generalagente.php:649 +#: ../../operation/incidents/integriaims_export_csv.php:81 +#: ../../operation/incidents/configure_integriaims_incident.php:213 +#: ../../operation/incidents/list_integriaims_incidents.php:516 +msgid "Title" +msgstr "タイトル" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 +msgid "Capture regexp" +msgstr "正規表現キャプチャ" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 +#: ../../enterprise/include/functions_reporting_pdf.php:546 +#: ../../enterprise/include/functions_reporting_pdf.php:602 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:3810 +msgid "Average" +msgstr "平均" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 +msgid "Empty ip or port" +msgstr "IP またはポートが空です" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 +msgid "Curl Error: " +msgstr "Curl エラー: " + +#: ../../enterprise/include/process_reset_pass.php:53 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:136 +#: ../../general/login_page.php:139 ../../general/login_page.php:155 +msgid "Docs" +msgstr "ドキュメント" + +#: ../../enterprise/include/process_reset_pass.php:159 +#: ../../enterprise/include/process_reset_pass.php:162 +#: ../../enterprise/include/reset_pass.php:146 +#: ../../enterprise/include/reset_pass.php:149 ../../include/functions_config.php:2426 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "一つのツールですべてを監視" + +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +msgid "Lines" +msgstr "行" + +#: ../../enterprise/include/functions_inventory.php:115 +#: ../../enterprise/include/functions_inventory.php:868 +msgid "No changes found" +msgstr "変更がありません" + +#: ../../enterprise/include/functions_inventory.php:214 +msgid "Get CSV file" +msgstr "CSV ファイルを取得" + +#: ../../enterprise/include/functions_inventory.php:301 +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/services/services.treeview_services.php:255 +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 +#: ../../godmode/groups/group_list.php:1034 ../../include/class/Heatmap.class.php:684 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 ../../operation/tree.php:415 +#: ../../operation/tree.php:446 ../../operation/network/network_report.php:313 +msgid "No data found" +msgstr "データがありません" + +#: ../../enterprise/include/functions_inventory.php:885 +#: ../../enterprise/include/functions_inventory.php:948 +#: ../../include/functions_reporting_html.php:1831 +msgid "Added" +msgstr "追加済み" + +#: ../../enterprise/include/functions_inventory.php:891 +#: ../../enterprise/include/functions_inventory.php:956 +#: ../../include/functions_reporting_html.php:1842 +#: ../../include/functions_filemanager.php:342 +#: ../../include/functions_filemanager.php:359 +msgid "Deleted" +msgstr "削除しました" + +#: ../../enterprise/include/functions_transactional.php:631 +msgid "Error in dependencies field" +msgstr "依存フィールドでエラーです" + +#: ../../enterprise/include/functions_transactional.php:640 +msgid "Error in enables field" +msgstr "有効化フィールドでエラーです" + +#: ../../enterprise/include/auth/saml.php:119 +#, php-format +msgid "Pandora FMS SAML authentication error: %s" +msgstr "Pandora FMS SAML 認証エラー: %s" + +#: ../../enterprise/include/auth/saml.php:184 +msgid "Force log out" +msgstr "強制ログアウト" + +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:372 +#: ../../include/auth/mysql.php:402 ../../include/auth/mysql.php:437 +msgid "Please, login into metaconsole first" +msgstr "先にメタコンソールへログインしてください" + +#: ../../enterprise/include/functions_collection.php:39 +#, php-format +msgid "Collection %d does not exist" +msgstr "コレクション %d が存在しません" + +#: ../../enterprise/include/functions_collection.php:48 +msgid "Collection dir does not exist." +msgstr "コレクションディレクトリが存在しません。" + +#: ../../enterprise/include/functions_collection.php:57 +#, php-format +msgid "Failed to create collection path: %s" +msgstr "コレクションパスの作成に失敗しました: %s" + +#: ../../enterprise/include/functions_collection.php:66 +msgid "Target collection path is not writable" +msgstr "対象のコレクションパスに書き込めません" + +#: ../../enterprise/include/functions_collection.php:80 +msgid "Failed to create zip file for collection" +msgstr "コレクションの zip ファイル作成に失敗しました" + +#: ../../enterprise/include/functions_collection.php:87 +#, php-format +msgid "File of collection is bigger than the limit (%s bytes)" +msgstr "コレクションのファイルが制限より大きいです (%s バイト)" + +#: ../../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_ui.php:179 +msgid "Field name" +msgstr "フィールド名" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "それはパスワードです" + +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "フィールド追加" + +#: ../../enterprise/include/functions_reporting_pdf.php:72 +#: ../../include/class/Diagnostics.class.php:2130 +#: ../../include/class/Diagnostics.class.php:2248 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "ユーザ定義レポートのための自動 %s レポート" + +#: ../../enterprise/include/functions_reporting_pdf.php:530 +#: ../../enterprise/include/functions_reporting_pdf.php:562 +#: ../../enterprise/include/functions_reporting_pdf.php:588 +#: ../../enterprise/include/functions_reporting_pdf.php:613 +#: ../../enterprise/include/functions_reporting_pdf.php:616 +#: ../../enterprise/include/functions_reporting_pdf.php:623 +#: ../../enterprise/include/functions_reporting_csv.php:1336 +#: ../../include/functions_reporting_html.php:3725 +#: ../../include/functions_reporting_html.php:3754 +#: ../../include/functions_reporting_html.php:3795 +#: ../../include/functions_reporting_html.php:3818 +#: ../../include/functions_reporting_html.php:3821 +#: ../../include/functions_reporting_html.php:3828 +#: ../../include/functions_reporting.php:6995 ../../include/functions_reporting.php:7018 +#: ../../include/functions_reporting.php:7033 ../../include/functions_reporting.php:7049 +#: ../../include/functions_reporting.php:7064 +msgid "Maximun" +msgstr "最大" + +#: ../../enterprise/include/functions_reporting_pdf.php:538 +#: ../../enterprise/include/functions_reporting_pdf.php:595 +#: ../../include/functions_reporting_html.php:3733 +#: ../../include/functions_reporting_html.php:3802 +msgid "Minimun" +msgstr "最低" + +#: ../../enterprise/include/functions_reporting_pdf.php:587 +#: ../../enterprise/include/functions_reporting_pdf.php:594 +#: ../../enterprise/include/functions_reporting_pdf.php:601 +#: ../../enterprise/include/functions_reporting_pdf.php:615 +#: ../../enterprise/include/functions_reporting_pdf.php:620 +#: ../../enterprise/include/functions_reporting_csv.php:1281 +#: ../../enterprise/include/functions_reporting_csv.php:1336 +#: ../../enterprise/include/functions_reporting_csv.php:1440 +#: ../../include/functions_reporting_html.php:3794 +#: ../../include/functions_reporting_html.php:3801 +#: ../../include/functions_reporting_html.php:3809 +#: ../../include/functions_reporting_html.php:3820 +#: ../../include/functions_reporting_html.php:3825 +#: ../../include/functions_reporting.php:7013 +msgid "Lapse" +msgstr "経過" + +#: ../../enterprise/include/functions_reporting_pdf.php:969 +#: ../../include/functions_reporting_html.php:2158 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s (%s): 正常" + +#: ../../enterprise/include/functions_reporting_pdf.php:986 +#: ../../include/functions_reporting_html.php:2070 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s (%s): 障害" + +#: ../../enterprise/include/functions_reporting_pdf.php:1003 +#: ../../include/functions_reporting_html.php:2087 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s (%s): 警告" + +#: ../../enterprise/include/functions_reporting_pdf.php:1020 +#: ../../include/functions_reporting_html.php:2104 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s (%s): 不明" + +#: ../../enterprise/include/functions_reporting_pdf.php:1037 +#: ../../include/functions_reporting_html.php:2140 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s (%s): 未初期化" + +#: ../../enterprise/include/functions_reporting_pdf.php:1054 +#: ../../include/functions_reporting_html.php:2123 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s (%s): アラート発生" + +#: ../../enterprise/include/functions_reporting_pdf.php:1808 +#: ../../enterprise/include/functions_reporting_csv.php:2266 +#: ../../enterprise/include/functions_reporting_csv.php:2270 +#: ../../include/functions_reporting_html.php:138 +msgid "Generated" +msgstr "生成日" + +#: ../../enterprise/include/functions_reporting_pdf.php:1812 +#: ../../include/functions_reporting_html.php:141 +msgid "Report date" +msgstr "レポート日" + +#: ../../enterprise/include/functions_reporting_pdf.php:1831 +#: ../../include/functions_reporting_html.php:150 +#: ../../operation/reporting/reporting_viewer.php:307 +msgid "Items period before" +msgstr "次の日時以前" + +#: ../../enterprise/include/functions_reporting_pdf.php:1861 +msgid "Contents" +msgstr "目次" + +#: ../../enterprise/include/functions_reporting_pdf.php:2007 +#: ../../enterprise/include/functions_reporting_csv.php:720 +#: ../../enterprise/include/functions_reporting_csv.php:998 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../godmode/agentes/planned_downtime.list.php:302 +#: ../../include/functions_reporting_html.php:3911 ../../include/functions_snmp.php:413 +#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 +#: ../../operation/agentes/gis_view.php:221 +msgid "To" +msgstr "終了" + +#: ../../enterprise/include/functions_reporting_pdf.php:2011 +#: ../../include/functions_reporting_html.php:90 +#: ../../include/functions_reporting_html.php:5690 +#: ../../include/functions_treeview.php:319 +#: ../../operation/agentes/interface_view.functions.php:539 +msgid "Last data" +msgstr "最新データ" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "障害:" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "警告:" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "正常:" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "サービスが追加されませんでした" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "%d サービスを追加できませんでした" + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "ビジュアルマップ情報の取得エラー" + +#: ../../enterprise/include/functions_visual_map.php:683 +#: ../../enterprise/operation/services/services.list.php:104 +msgid "No services selected" +msgstr "サービスが選択されていません" + +#: ../../enterprise/include/functions_backup.php:162 +msgid "Command mysqldump not found." +msgstr "mysqldump コマンドが見つかりません。" + +#: ../../enterprise/include/functions_backup.php:177 +msgid "The mysqldump execution goes wrong." +msgstr "mysqldump の実行で問題が発生しました。" + +#: ../../enterprise/include/functions_backup.php:190 +msgid "" +"In order to make backups it is necessary to check if the configuration is correct." +msgstr "バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" + +#: ../../enterprise/include/functions_backup.php:256 +msgid "No description" +msgstr "説明がありません" + +#: ../../enterprise/include/functions_backup.php:408 +msgid "Restoring a backup" +msgstr "バックアップのリストア中" + +#: ../../enterprise/include/functions_backup.php:410 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "%s データベースバックアップの復元は手動で行う必要があります。" + +#: ../../enterprise/include/functions_backup.php:412 +msgid "" +"It's a complex operation that needs human intervation to avoid system failures and " +"data loosing" +msgstr "システム不整合およびデータ消失を防ぐために、人よる操作が必要な複雑な作業です。" + +#: ../../enterprise/include/functions_backup.php:414 +msgid "To restore the selected backup, please follow these steps" +msgstr "選択したバックアップをリストアするには、これらの手順に従ってください" + +#: ../../enterprise/include/functions_backup.php:420 +msgid "Open a root shell in your system located at " +msgstr "次の場所にある root のシェルを開いてください: " + +#: ../../enterprise/include/functions_backup.php:424 +msgid "Connect to MySQL database using the following command" +msgstr "次のコマンドで MySQL データベースへ接続します" + +#: ../../enterprise/include/functions_backup.php:430 +msgid "Create a new database" +msgstr "新規データベースを作成します" + +#: ../../enterprise/include/functions_backup.php:454 +msgid "Restore the backup" +msgstr "バックアップをリストアします" + +#: ../../enterprise/include/functions_backup.php:469 +msgid "Modify console configuration to use this new database" +msgstr "新たなデータベースを使うようにコンソール設定を修正します" + +#: ../../enterprise/include/functions_backup.php:470 +msgid "Open configuration file" +msgstr "設定ファイルを開きます" + +#: ../../enterprise/include/functions_backup.php:473 +#: ../../enterprise/include/functions_backup.php:483 +msgid "Find" +msgstr "以下をみつけ" + +#: ../../enterprise/include/functions_backup.php:475 +#: ../../enterprise/include/functions_backup.php:485 +msgid "and replace with" +msgstr "次の通り書き換えます" + +#: ../../enterprise/include/functions_backup.php:480 +msgid "Modify servers configuration to use this new database" +msgstr "新たなデータベースを使うようにサーバ設定を修正します" + +#: ../../enterprise/include/functions_backup.php:481 +msgid "Find servers configuration file and replace the following lines" +msgstr "サーバ設定ファイルを見つけ、次の行を書き換えます" + +#: ../../enterprise/include/functions_backup.php:490 +msgid "Restart the servers and login again into the console" +msgstr "サーバを再起動し、コンソールからログインしなおします" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "トラップ状態エージェントが復旧しました" + +#: ../../enterprise/include/functions_servicemap.php:80 +#: ../../enterprise/include/functions_servicemap.php:1203 +msgid "Failed to retrieve service elements: " +msgstr "サービス要素の取得に失敗しました: " + +#: ../../enterprise/include/functions_setup.php:79 +#: ../../enterprise/include/functions_setup.php:125 +msgid "Log collector" +msgstr "ログ収集" + +#: ../../enterprise/include/functions_setup.php:151 +msgid "Metaconsole link status" +msgstr "メタコンソールリンク状態" + +#: ../../enterprise/include/functions_setup.php:183 +msgid "DB connection" +msgstr "DB 接続" + +#: ../../enterprise/include/functions_setup.php:205 +msgid "This console is joining a metaconsole." +msgstr "このコンソールはメタコンソールに参加しています。" + +#: ../../enterprise/include/functions_setup.php:212 +msgid "There is no metaconsole defined." +msgstr "メタコンソールの定義がありません。" + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 +#: ../../include/functions_filemanager.php:641 +msgid "Image" +msgstr "画像" + +#: ../../enterprise/include/functions_reporting_csv.php:420 +msgid "Event report agent" +msgstr "イベントレポートエージェント" + +#: ../../enterprise/include/functions_reporting_csv.php:422 +msgid "Event report group" +msgstr "イベントレポートグループ" + +#: ../../enterprise/include/functions_reporting_csv.php:446 +msgid "Event report module" +msgstr "イベントレポートモジュール" + +#: ../../enterprise/include/functions_reporting_csv.php:477 +#: ../../enterprise/include/functions_reporting.php:1228 +#: ../../include/functions_reports.php:830 ../../include/functions_reporting.php:8460 +#: ../../include/functions_reporting.php:8852 +msgid "Availability" +msgstr "可用性" + +#: ../../enterprise/include/functions_reporting_csv.php:525 +#: ../../enterprise/include/functions_reporting_csv.php:1475 +msgid "% OK" +msgstr "正常%" + +#: ../../enterprise/include/functions_reporting_csv.php:534 +#: ../../include/functions_reporting_html.php:617 +msgid "Checks Failed" +msgstr "障害確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:666 +msgid "Maximum value" +msgstr "最大値" + +#: ../../enterprise/include/functions_reporting_csv.php:670 +#: ../../include/functions_reporting_html.php:4457 +msgid "Agent min value" +msgstr "エージェント最小値" + +#: ../../enterprise/include/functions_reporting_csv.php:671 +msgid "Minimum value" +msgstr "最小値" + +#: ../../enterprise/include/functions_reporting_csv.php:674 +msgid "Average value" +msgstr "平均値" + +#: ../../enterprise/include/functions_reporting_csv.php:700 +#: ../../include/functions_reports.php:879 +msgid "Agents inventory" +msgstr "エージェントインベントリ" + +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/operation/agentes/tag_view.php:601 +#: ../../include/functions_treeview.php:668 +#: ../../operation/agentes/estado_agente.php:745 +#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "リモート" + +#: ../../enterprise/include/functions_reporting_csv.php:722 +msgid "Sec. group" +msgstr "セカンダリグループ" + +#: ../../enterprise/include/functions_reporting_csv.php:722 +msgid "Custom Field" +msgstr "カスタムフィールド" + +#: ../../enterprise/include/functions_reporting_csv.php:745 +#: ../../include/functions_reports.php:886 +msgid "Modules inventory" +msgstr "モジュールインベントリ" + +#: ../../enterprise/include/functions_reporting_csv.php:759 +msgid "Agent groups" +msgstr "エージェントグループ" + +#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../include/functions_reporting_html.php:1720 +msgid "Agent secondary groups" +msgstr "エージェントセカンダリグループ" + +#: ../../enterprise/include/functions_reporting_csv.php:786 +#: ../../include/functions_reporting.php:2794 +msgid "Inventory Changes" +msgstr "インベントリ変更" + +#: ../../enterprise/include/functions_reporting_csv.php:814 +#: ../../include/functions_reports.php:725 +msgid "Prediction date" +msgstr "予測日" + +#: ../../enterprise/include/functions_reporting_csv.php:834 +#: ../../include/functions_reporting.php:6468 +msgid "Projection Graph" +msgstr "予想グラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:863 +msgid "Serialized data " +msgstr "連続データ " + +#: ../../enterprise/include/functions_reporting_csv.php:902 +msgid "Last Value " +msgstr "最新の値 " + +#: ../../enterprise/include/functions_reporting_csv.php:978 +#: ../../include/functions_reporting.php:1543 +#: ../../operation/snmpconsole/snmp_statistics.php:169 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#, php-format +msgid "Top %d" +msgstr "トップ %d" + +#: ../../enterprise/include/functions_reporting_csv.php:1015 +#: ../../include/functions_reporting.php:3874 +msgid "Group Report" +msgstr "グループレポート" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:263 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../mobile/operation/groups.php:147 ../../include/functions_reporting_html.php:5770 +#: ../../include/class/Diagnostics.class.php:549 +#: ../../include/functions_reporting.php:11803 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 ../../operation/tree.php:454 +msgid "Total agents" +msgstr "エージェント数" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +msgid "Uknown agents" +msgstr "不明エージェント" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:264 +#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/module_library/module_library_view.php:159 +#: ../../include/class/Diagnostics.class.php:553 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:652 ../../operation/tree.php:455 +msgid "Total modules" +msgstr "全モジュール" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../include/functions_reporting.php:11646 +msgid "Defined alerts" +msgstr "定義済みアラート" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/operation/services/services.treeview_services.php:268 +#: ../../enterprise/operation/services/services.treeview_services.php:269 +#: ../../enterprise/operation/services/services.treeview_services.php:270 +#: ../../godmode/groups/group_list.php:1047 ../../godmode/groups/group_list.php:1048 +#: ../../godmode/groups/group_list.php:1049 ../../include/functions_graph.php:2636 +#: ../../include/functions_reporting.php:11664 +#: ../../include/functions_reporting.php:11687 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:656 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:657 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 ../../operation/tree.php:459 +#: ../../operation/tree.php:460 ../../operation/tree.php:461 +msgid "Fired alerts" +msgstr "発生したアラート" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +msgid "Last 8 hours events" +msgstr "直近 8時間のイベント" + +#: ../../enterprise/include/functions_reporting_csv.php:1032 +#: ../../include/functions_reports.php:777 ../../include/functions_reports.php:783 +msgid "Group report" +msgstr "グループレポート" + +#: ../../enterprise/include/functions_reporting_csv.php:1161 +msgid "Illegal query or any other error" +msgstr "不正なクエリまたはその他エラー" + +#: ../../enterprise/include/functions_reporting_csv.php:1183 +#: ../../include/functions_reports.php:661 +msgid "SQL vertical bar graph" +msgstr "SQL 縦棒グラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:1185 +#: ../../include/functions_reports.php:669 +msgid "SQL horizontal bar graph" +msgstr "SQL 横棒グラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:1187 +#: ../../include/functions_reports.php:665 +msgid "SQL pie graph" +msgstr "SQL 円グラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:1216 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1236 +#: ../../include/functions_reports.php:754 ../../include/functions_reporting.php:6774 +#: ../../include/functions_reporting.php:10130 +msgid "Summatory" +msgstr "合計" + +#: ../../enterprise/include/functions_reporting_csv.php:1266 +#: ../../enterprise/include/functions_reporting_csv.php:1268 +#: ../../enterprise/include/functions_reporting_csv.php:1274 +#: ../../enterprise/include/functions_reporting_csv.php:1276 +msgid "Minimum Value" +msgstr "最小値" + +#: ../../enterprise/include/functions_reporting_csv.php:1281 +#: ../../include/functions_reporting.php:10134 +msgid "Minimum" +msgstr "最小" + +#: ../../enterprise/include/functions_reporting_csv.php:1321 +#: ../../enterprise/include/functions_reporting_csv.php:1323 +#: ../../enterprise/include/functions_reporting_csv.php:1329 +#: ../../enterprise/include/functions_reporting_csv.php:1331 +msgid "Maximun Value" +msgstr "最大値" + +#: ../../enterprise/include/functions_reporting_csv.php:1357 +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../enterprise/include/functions_reporting_csv.php:1386 +#: ../../include/functions_reporting_html.php:3914 +#: ../../include/functions_reports.php:762 ../../include/functions_reporting.php:9590 +msgid "Increment" +msgstr "増分" + +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../include/functions_reporting_html.php:3912 +msgid "From data" +msgstr "開始データ" + +#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../include/functions_reporting_html.php:3913 +msgid "To data" +msgstr "終了データ" + +#: ../../enterprise/include/functions_reporting_csv.php:1377 +#: ../../enterprise/include/functions_reporting_csv.php:1388 +#: ../../include/functions_reporting_html.php:3941 +msgid "Negative increase: " +msgstr "マイナス増加: " + +#: ../../enterprise/include/functions_reporting_csv.php:1379 +#: ../../enterprise/include/functions_reporting_csv.php:1390 +#: ../../include/functions_reporting_html.php:3943 +msgid "Positive increase: " +msgstr "プラス増加: " + +#: ../../enterprise/include/functions_reporting_csv.php:1381 +#: ../../enterprise/include/functions_reporting_csv.php:1392 +#: ../../include/functions_reporting_html.php:3945 +msgid "Neutral increase: " +msgstr "中立的な増加: " + +#: ../../enterprise/include/functions_reporting_csv.php:1406 +#: ../../enterprise/include/functions_reporting_csv.php:1425 +#: ../../enterprise/include/functions_reporting_csv.php:1427 +#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1435 +#: ../../include/functions_reporting.php:6779 +msgid "AVG. Value" +msgstr "平均値" + +#: ../../enterprise/include/functions_reporting_csv.php:1440 +msgid "AVG" +msgstr "平均" + +#: ../../enterprise/include/functions_reporting_csv.php:1461 +#: ../../enterprise/include/functions_reporting_csv.php:1479 +#: ../../enterprise/include/functions_reporting_csv.php:1481 +#: ../../include/functions_reporting.php:6110 +msgid "Monitor Report" +msgstr "モニタレポート" + +#: ../../enterprise/include/functions_reporting_csv.php:1475 +msgid "% Wrong" +msgstr "異常%" + +#: ../../enterprise/include/functions_reporting_csv.php:1490 +msgid "Simple Graph" +msgstr "単一グラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:1550 +#: ../../enterprise/include/functions_reporting_csv.php:1596 +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1788 +#: ../../enterprise/include/functions_reporting_csv.php:2096 +msgid "SLA Max" +msgstr "最大 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1551 +#: ../../enterprise/include/functions_reporting_csv.php:1597 +#: ../../enterprise/include/functions_reporting_csv.php:1670 +#: ../../enterprise/include/functions_reporting_csv.php:1789 +#: ../../enterprise/include/functions_reporting_csv.php:2097 +msgid "SLA Min" +msgstr "最小 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1552 +#: ../../enterprise/include/functions_reporting_csv.php:1598 +#: ../../enterprise/include/functions_reporting_csv.php:1671 +#: ../../enterprise/include/functions_reporting_csv.php:1790 +#: ../../enterprise/include/functions_reporting_csv.php:2098 +#: ../../enterprise/include/functions_reporting.php:1856 +#: ../../enterprise/include/functions_reporting.php:2895 +#: ../../enterprise/include/functions_reporting.php:3882 +#: ../../enterprise/include/functions_reporting.php:6132 +#: ../../include/functions_reporting_html.php:549 +msgid "SLA Limit" +msgstr "SLA 制限" + +#: ../../enterprise/include/functions_reporting_csv.php:1553 +#: ../../enterprise/include/functions_reporting_csv.php:1599 +msgid "Time Total " +msgstr "合計時間 " + +#: ../../enterprise/include/functions_reporting_csv.php:1554 +#: ../../enterprise/include/functions_reporting_csv.php:1600 +msgid "Time OK " +msgstr "正常時間 " + +#: ../../enterprise/include/functions_reporting_csv.php:1555 +#: ../../enterprise/include/functions_reporting_csv.php:1601 +msgid "Time Error " +msgstr "障害時間 " + +#: ../../enterprise/include/functions_reporting_csv.php:1556 +#: ../../enterprise/include/functions_reporting_csv.php:1602 +msgid "Time Unknown " +msgstr "不明時間 " + +#: ../../enterprise/include/functions_reporting_csv.php:1557 +#: ../../enterprise/include/functions_reporting_csv.php:1603 +msgid "Time Not Init " +msgstr "未初期化時間 " + +#: ../../enterprise/include/functions_reporting_csv.php:1558 +#: ../../enterprise/include/functions_reporting_csv.php:1604 +msgid "Time Downtime " +msgstr "計画停止時間 " + +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1605 +msgid "Checks Total " +msgstr "合計確認数 " + +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1606 +msgid "Checks OK " +msgstr "正常確認数 " + +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1607 +msgid "Checks Error " +msgstr "障害確認数 " + +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1608 +msgid "Checks Unknown " +msgstr "不明確認数 " + +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1609 +msgid "Checks Not Init " +msgstr "未初期化確認数 " + +#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1610 +msgid "SLA " +msgstr "SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1611 +msgid "Status " +msgstr "状態 " + +#: ../../enterprise/include/functions_reporting_csv.php:1587 +#: ../../enterprise/include/functions_reporting_csv.php:1633 +#: ../../enterprise/include/functions_reporting_csv.php:1951 +#: ../../enterprise/include/functions_reporting.php:1876 +#: ../../enterprise/include/functions_reporting.php:1917 +#: ../../enterprise/include/functions_reporting.php:2920 +#: ../../enterprise/include/functions_reporting.php:2979 +#: ../../enterprise/include/functions_reporting.php:3908 +#: ../../enterprise/include/functions_reporting.php:3967 +#: ../../enterprise/include/functions_reporting.php:6156 +#: ../../include/functions_reporting_html.php:666 +#: ../../include/functions_config.php:1286 ../../include/functions_config.php:3197 +msgid "Fail" +msgstr "失敗" + +#: ../../enterprise/include/functions_reporting_csv.php:1657 +#: ../../enterprise/include/functions_reporting_csv.php:1773 +#: ../../enterprise/include/functions_reporting_csv.php:2013 +#: ../../enterprise/include/functions_reporting_csv.php:2081 +msgid "Subtitle" +msgstr "サブタイトル" + +#: ../../enterprise/include/functions_reporting_csv.php:1672 +#: ../../enterprise/include/functions_reporting_csv.php:1804 +#: ../../enterprise/include/functions_reporting_csv.php:2112 +msgid "Time Total Month" +msgstr "月間合計時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1673 +#: ../../enterprise/include/functions_reporting_csv.php:1805 +#: ../../enterprise/include/functions_reporting_csv.php:2113 +msgid "Time OK Month" +msgstr "月間正常時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1674 +#: ../../enterprise/include/functions_reporting_csv.php:1806 +#: ../../enterprise/include/functions_reporting_csv.php:2114 +msgid "Time Error Month" +msgstr "月間障害時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1675 +#: ../../enterprise/include/functions_reporting_csv.php:1807 +#: ../../enterprise/include/functions_reporting_csv.php:2115 +msgid "Time Unknown Month" +msgstr "月間不明時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1676 +#: ../../enterprise/include/functions_reporting_csv.php:1808 +#: ../../enterprise/include/functions_reporting_csv.php:2116 +msgid "Time Downtime Month" +msgstr "月間計画停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1677 +#: ../../enterprise/include/functions_reporting_csv.php:1809 +#: ../../enterprise/include/functions_reporting_csv.php:2117 +msgid "Time Not Init Month" +msgstr "月間未初期化時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1678 +#: ../../enterprise/include/functions_reporting_csv.php:1810 +#: ../../enterprise/include/functions_reporting_csv.php:2118 +msgid "Checks Total Month" +msgstr "月間合計確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1679 +#: ../../enterprise/include/functions_reporting_csv.php:1811 +#: ../../enterprise/include/functions_reporting_csv.php:2119 +msgid "Checks OK Month" +msgstr "月間正常確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1680 +#: ../../enterprise/include/functions_reporting_csv.php:1812 +#: ../../enterprise/include/functions_reporting_csv.php:2120 +msgid "Checks Error Month" +msgstr "月間障害確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1681 +#: ../../enterprise/include/functions_reporting_csv.php:1813 +#: ../../enterprise/include/functions_reporting_csv.php:2121 +msgid "Checks Unknown Month" +msgstr "月間不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1682 +#: ../../enterprise/include/functions_reporting_csv.php:1814 +#: ../../enterprise/include/functions_reporting_csv.php:2122 +msgid "Checks Not Init Month" +msgstr "月間未初期化確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1683 +#: ../../enterprise/include/functions_reporting_csv.php:1815 +#: ../../enterprise/include/functions_reporting_csv.php:2123 +msgid "SLA Month" +msgstr "月間 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1684 +#: ../../enterprise/include/functions_reporting_csv.php:1816 +#: ../../enterprise/include/functions_reporting_csv.php:2124 +msgid "Status Month" +msgstr "月間状態" + +#: ../../enterprise/include/functions_reporting_csv.php:1706 +#: ../../enterprise/include/functions_reporting.php:2024 +msgid "Day" +msgstr "日" + +#: ../../enterprise/include/functions_reporting_csv.php:1707 +#: ../../enterprise/include/functions_reporting_csv.php:1862 +msgid "Time Total Day" +msgstr "日ごとの合計時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1708 +#: ../../enterprise/include/functions_reporting_csv.php:1863 +msgid "Time OK Day" +msgstr "日ごとの正常時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1709 +#: ../../enterprise/include/functions_reporting_csv.php:1864 +msgid "Time Error Day" +msgstr "日ごとの障害時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1710 +#: ../../enterprise/include/functions_reporting_csv.php:1865 +msgid "Time Unknown Day" +msgstr "日ごとの不明時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1711 +#: ../../enterprise/include/functions_reporting_csv.php:1866 +msgid "Time Not Init Day" +msgstr "日ごとの未初期化時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1712 +#: ../../enterprise/include/functions_reporting_csv.php:1867 +msgid "Time Downtime Day" +msgstr "日ごとの計画停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1713 +#: ../../enterprise/include/functions_reporting_csv.php:1868 +msgid "Time Out Day" +msgstr "日ごとの停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1714 +#: ../../enterprise/include/functions_reporting_csv.php:1869 +msgid "Checks Total Day" +msgstr "日ごとの合計確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1715 +#: ../../enterprise/include/functions_reporting_csv.php:1870 +msgid "Checks OK Day" +msgstr "日ごとの正常確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1716 +#: ../../enterprise/include/functions_reporting_csv.php:1871 +msgid "Checks Error Day" +msgstr "日ごとの障害確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1717 +#: ../../enterprise/include/functions_reporting_csv.php:1872 +msgid "Checks Unknown Day" +msgstr "日ごとの不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1718 +#: ../../enterprise/include/functions_reporting_csv.php:1873 +msgid "Checks Not Init Day" +msgstr "日ごとの不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1719 +#: ../../enterprise/include/functions_reporting_csv.php:1874 +msgid "SLA Day" +msgstr "日ごとの SLAd" + +#: ../../enterprise/include/functions_reporting_csv.php:1720 +#: ../../enterprise/include/functions_reporting_csv.php:1875 +msgid "SLA Fixed Day" +msgstr "日ごとの修正 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1721 +#: ../../enterprise/include/functions_reporting_csv.php:1876 +msgid "Date From Day" +msgstr "開始日" + +#: ../../enterprise/include/functions_reporting_csv.php:1722 +#: ../../enterprise/include/functions_reporting_csv.php:1877 +msgid "Date To Day" +msgstr "終了日" + +#: ../../enterprise/include/functions_reporting_csv.php:1723 +#: ../../enterprise/include/functions_reporting_csv.php:1878 +msgid "Status Day" +msgstr "日ごとの状態" + +#: ../../enterprise/include/functions_reporting_csv.php:1783 +#: ../../enterprise/include/functions_reporting_csv.php:2091 +#: ../../include/functions_html.php:2286 +msgid "Month" +msgstr "月" + +#: ../../enterprise/include/functions_reporting_csv.php:1784 +#: ../../enterprise/include/functions_reporting_csv.php:2092 +msgid "Month Number" +msgstr "月の数" + +#: ../../enterprise/include/functions_reporting_csv.php:1785 +#: ../../enterprise/include/functions_reporting_csv.php:2093 +msgid "Year" +msgstr "年" + +#: ../../enterprise/include/functions_reporting_csv.php:1835 +msgid "Time Total week" +msgstr "週間合計時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1836 +msgid "Time OK week" +msgstr "週間正常時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1837 +msgid "Time Error week" +msgstr "週間障害時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1838 +msgid "Time Unknown week" +msgstr "週間不明時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1839 +msgid "Time Downtime week" +msgstr "週間計画停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1840 +msgid "Time Not Init week" +msgstr "週間未初期化時間" + +#: ../../enterprise/include/functions_reporting_csv.php:1841 +msgid "Checks Total week" +msgstr "週間合計確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1842 +msgid "Checks OK week" +msgstr "週間正常確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1843 +msgid "Checks Error week" +msgstr "週間障害確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1844 +msgid "Checks Unknown week" +msgstr "週間不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1845 +msgid "Status week" +msgstr "週間状態" + +#: ../../enterprise/include/functions_reporting_csv.php:1861 +msgid "Day Week" +msgstr "週" + +#: ../../enterprise/include/functions_reporting_csv.php:1913 +msgid "S.L.A. Services" +msgstr "SLA サービス" + +#: ../../enterprise/include/functions_reporting_csv.php:1931 +msgid "Lost sercice " +msgstr "失われたサービス " + +#: ../../enterprise/include/functions_reporting_csv.php:1932 +msgid "Service " +msgstr "サービス " + +#: ../../enterprise/include/functions_reporting_csv.php:1933 +msgid "Limit " +msgstr "制限 " + +#: ../../enterprise/include/functions_reporting_csv.php:1934 +msgid "SLA Compilance " +msgstr "SLA コンプライアンス " + +#: ../../enterprise/include/functions_reporting_csv.php:1935 +msgid "Unknown " +msgstr "不明 " + +#: ../../enterprise/include/functions_reporting_csv.php:1936 +msgid "Ok " +msgstr "Ok " + +#: ../../enterprise/include/functions_reporting_csv.php:1937 +msgid "Fail " +msgstr "失敗 " + +#: ../../enterprise/include/functions_reporting_csv.php:1938 +msgid "Result " +msgstr "結果 " + +#: ../../enterprise/include/functions_reporting_csv.php:1963 +msgid "IPAM Networks" +msgstr "IPAM ネットワーク" + +#: ../../enterprise/include/functions_reporting_csv.php:1980 +#: ../../enterprise/include/functions_reporting.php:2317 +#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:244 +#: ../../operation/events/events.php:2434 +msgid "Agent ID" +msgstr "エージェント ID" + +#: ../../enterprise/include/functions_reporting_csv.php:1981 +#: ../../enterprise/include/functions_reporting.php:2318 +#: ../../enterprise/include/functions_ipam.php:2046 +#: ../../enterprise/tools/ipam/ipam_network.php:404 +#: ../../enterprise/tools/ipam/ipam_network.php:673 +#: ../../enterprise/tools/ipam/ipam_ajax.php:293 +#: ../../enterprise/tools/ipam/ipam_ajax.php:479 +#: ../../enterprise/tools/ipam/ipam_massive.php:83 +#: ../../godmode/users/configure_user.php:1050 ../../mobile/operation/events.php:849 +#: ../../include/functions_reporting_html.php:5889 ../../include/functions.php:3053 +#: ../../include/ajax/events.php:1722 ../../include/class/AuditLog.class.php:112 +#: ../../operation/users/user_edit.php:609 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 +#: ../../general/logon_ok.php:253 +msgid "Comments" +msgstr "コメント" + +#: ../../enterprise/include/functions_reporting_csv.php:1982 +#: ../../enterprise/include/functions_reporting.php:2319 +#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../enterprise/tools/ipam/ipam_network.php:415 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 +msgid "Alive" +msgstr "稼働" + +#: ../../enterprise/include/functions_reporting_csv.php:2023 +msgid "SLA max" +msgstr "最大 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:2024 +msgid "SLA min" +msgstr "最小 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:2025 +msgid "SLA limit" +msgstr "SLA 制限" + +#: ../../enterprise/include/functions_reporting_csv.php:2026 +#: ../../enterprise/include/functions_reporting.php:4967 +#: ../../include/functions_reporting_html.php:583 +msgid "Time Total" +msgstr "合計時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2027 +#: ../../enterprise/include/functions_reporting.php:4970 +#: ../../include/functions_reporting_html.php:585 +#: ../../include/functions_reporting_html.php:4053 +msgid "Time OK" +msgstr "正常時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2028 +msgid "Time Error" +msgstr "障害時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2029 +#: ../../enterprise/include/functions_reporting.php:4971 +#: ../../include/functions_reporting_html.php:586 +#: ../../include/functions_reporting_html.php:4065 +msgid "Time Unknown" +msgstr "不明時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2030 +#: ../../enterprise/include/functions_reporting.php:4972 +#: ../../include/functions_reporting_html.php:587 +msgid "Time Not Init" +msgstr "未初期化時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2031 +#: ../../include/functions_reporting_html.php:4077 +msgid "Time Downtime" +msgstr "計画停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2032 +#: ../../enterprise/include/functions_reporting.php:5062 +#: ../../include/functions_reporting_html.php:616 +msgid "Checks Total" +msgstr "合計確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2033 +#: ../../enterprise/include/functions_reporting.php:5065 +#: ../../include/functions_reporting_html.php:618 +#: ../../include/functions_reporting_html.php:4147 +msgid "Checks OK" +msgstr "正常確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2034 +msgid "Checks Error" +msgstr "エラー数" + +#: ../../enterprise/include/functions_reporting_csv.php:2035 +#: ../../enterprise/include/functions_reporting.php:5066 +#: ../../include/functions_reporting_html.php:619 +msgid "Checks Unknown" +msgstr "不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2036 +#: ../../enterprise/include/functions_reporting.php:5067 +msgid "Checks Not Init" +msgstr "未初期化数" + +#: ../../enterprise/include/functions_reporting_csv.php:2037 +#: ../../enterprise/operation/services/services.service.php:128 +#: ../../enterprise/operation/services/services.list.php:508 +#: ../../include/functions_reports.php:698 ../../include/functions_reports.php:703 +#: ../../include/functions_reports.php:707 ../../include/functions_reports.php:711 +#: ../../include/functions_reports.php:717 +msgid "SLA" +msgstr "SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:2038 +msgid "SLA Fixed" +msgstr "修正 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:2143 +msgid "Time Total day" +msgstr "日ごとの合計時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2144 +msgid "Time OK day" +msgstr "日ごとの正常時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2145 +msgid "Time Error day" +msgstr "日ごとの障害時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2146 +msgid "Time Unknown day" +msgstr "日ごとの不明時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2147 +msgid "Time Downtime day" +msgstr "日ごとの計画停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2148 +msgid "Time Not Init day" +msgstr "日ごとの未初期化時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2149 +msgid "Checks Total day" +msgstr "日ごとの合計確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2150 +msgid "Checks OK day" +msgstr "日ごとの正常確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2151 +msgid "Checks Error day" +msgstr "日ごとのエラー確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2152 +msgid "Checks Unknown day" +msgstr "日ごとの不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2153 +msgid "Status day" +msgstr "日ごとの状態" + +#: ../../enterprise/include/functions_reporting_csv.php:2169 +#: ../../enterprise/include/functions_events.php:163 +msgid "Hours" +msgstr "時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2170 +msgid "Time Total hours" +msgstr "1時間ごとの合計時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2171 +msgid "Time OK hours" +msgstr "1時間ごとの正常時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2172 +msgid "Time Error hours" +msgstr "1時間ごとの障害時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2173 +msgid "Time Unknown hours" +msgstr "1時間ごとの不明時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2174 +msgid "Time Not Init hours" +msgstr "1時間ごとの未初期化時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2175 +msgid "Time Downtime hours" +msgstr "1時間ごとの計画停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2176 +msgid "Time Out hours" +msgstr "1時間ごとの停止時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2177 +msgid "Checks Total hours" +msgstr "1時間ごとの確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2178 +msgid "Checks OK hours" +msgstr "1時間ごとの正常確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2179 +msgid "Checks Error hours" +msgstr "1時間ごとの障害確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2180 +msgid "Checks Unknown hours" +msgstr "1時間ごとの不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2181 +msgid "Checks Not Init hours" +msgstr "1時間ごとの未初期化確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:2182 +msgid "SLA hours" +msgstr "1時間ごとの SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:2183 +msgid "SLA Fixed hours" +msgstr "1時間ごとの修正 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:2184 +msgid "Date From hours" +msgstr "開始時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2185 +msgid "Date To hours" +msgstr "終了時間" + +#: ../../enterprise/include/functions_reporting_csv.php:2186 +msgid "Status hours" +msgstr "1時間ごとの状態" + +#: ../../enterprise/include/functions_reporting_csv.php:2313 +msgid "Simple Baseline Graph" +msgstr "シンプルベースライングラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:2344 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +msgid "Custom Graph" +msgstr "カスタムグラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:2489 +#: ../../include/functions_reporting.php:5818 +msgid "Alert Report Module" +msgstr "アラートレポートモジュール" + +#: ../../enterprise/include/functions_reporting_csv.php:2491 +#: ../../include/functions_reporting.php:5651 +msgid "Alert Report Agent" +msgstr "アラートレポートエージェント" + +#: ../../enterprise/include/functions_reporting_csv.php:2493 +#: ../../include/functions_reporting.php:5471 +msgid "Alert Report Group" +msgstr "アラートレポートグループ" + +#: ../../enterprise/include/functions_reporting_csv.php:2511 +msgid "Actions Triggered" +msgstr "実行されたアクション" + +#: ../../enterprise/include/functions_reporting_csv.php:2511 +msgid "Template Triggered" +msgstr "実行されたテンプレート" + +#: ../../enterprise/include/functions_reporting_csv.php:2548 +msgid "Event Report Log" +msgstr "イベントレポートログ" + +#: ../../enterprise/include/functions_reporting_csv.php:2577 +#: ../../include/functions_reports.php:939 ../../include/functions_reports.php:940 +#: ../../include/functions_reporting.php:4728 +msgid "Permissions report" +msgstr "権限レポート" + +#: ../../enterprise/include/functions_reporting_csv.php:2595 +#: ../../enterprise/include/functions_reporting_csv.php:2605 +#: ../../godmode/users/user_list.php:479 ../../godmode/users/configure_user.php:876 +#: ../../godmode/users/configure_user.php:892 +#: ../../include/functions_reporting_html.php:5179 +#: ../../include/functions_reporting_html.php:6351 +#: ../../include/functions_reporting_html.php:6374 ../../operation/search_users.php:43 +#: ../../operation/users/user_edit.php:261 ../../operation/snmpconsole/snmp_view.php:876 +msgid "User ID" +msgstr "ユーザ ID" + +#: ../../enterprise/include/functions_reporting_csv.php:2595 +#: ../../enterprise/include/functions_reporting_csv.php:2605 +#: ../../include/functions_reporting_html.php:6352 +#: ../../include/functions_reporting_html.php:6375 +msgid "Full name" +msgstr "フルネーム" + +#: ../../enterprise/include/functions_reporting_csv.php:2595 +#: ../../enterprise/include/functions_reporting_csv.php:2605 +#: ../../include/functions_reporting_html.php:6353 +#: ../../include/functions_reporting_html.php:6376 +msgid "Permissions" +msgstr "権限" + +#: ../../enterprise/include/functions_reporting_csv.php:2651 +msgid "Netflow data chart" +msgstr "Netflow データグラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:2653 +#: ../../include/functions_reports.php:914 +msgid "Netflow area chart" +msgstr "Netflow 塗り潰しグラフ" + +#: ../../enterprise/include/functions_reporting_csv.php:2706 +msgid "Netflow summary" +msgstr "Netflow 概要" + +#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../include/functions_netflow.php:416 +msgid "Total flows" +msgstr "全フロー数" + +#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../include/functions_netflow.php:421 +msgid "Total bytes" +msgstr "全バイト数" + +#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../include/functions_netflow.php:426 +msgid "Total packets" +msgstr "全パケット数" + +#: ../../enterprise/include/functions_reporting_csv.php:2726 +msgid "Avg. bits/sec" +msgstr "平均ビット/秒" + +#: ../../enterprise/include/functions_reporting_csv.php:2726 +msgid "Avg. packets/sec" +msgstr "平均パケット/秒" + +#: ../../enterprise/include/functions_reporting_csv.php:2726 +msgid "Avg. bytes/packet" +msgstr "平均バイト/パケット" + +#: ../../enterprise/include/functions_reporting_csv.php:2727 +msgid "Dst. IP" +msgstr "宛先 IP" + +#: ../../enterprise/include/functions_reporting_csv.php:2753 +msgid "Agent/module status" +msgstr "エージェント/モジュール状態" + +#: ../../enterprise/include/functions_reporting_csv.php:2788 +#: ../../include/functions_reporting_html.php:2260 +msgid "Last time" +msgstr "最新日時" + +#: ../../enterprise/include/functions_reporting_csv.php:2832 +#: ../../include/functions_reports.php:926 ../../include/functions_reporting.php:6265 +msgid "Netflow top-N connections" +msgstr "Netflow トップ N 接続" + +#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../mobile/operation/tactical.php:351 +#: ../../include/functions_reporting_html.php:5888 ../../include/functions.php:3053 +#: ../../include/functions_netflow.php:347 ../../include/class/AuditLog.class.php:111 +#: ../../operation/snmpconsole/snmp_statistics.php:182 ../../general/logon_ok.php:252 +msgid "Source IP" +msgstr "ソースIP" + +#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../include/functions_netflow.php:348 +msgid "Destination IP" +msgstr "宛先 IP" + +#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../include/functions_config.php:989 ../../include/functions_config.php:3109 +#: ../../include/functions_netflow.php:349 +#: ../../operation/network/network_report.php:206 +#: ../../operation/network/network_report.php:236 +msgid "Bytes" +msgstr "バイト" + +#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../include/functions_netflow.php:350 +msgid "% Traffic" +msgstr "% トラフィック" + +#: ../../enterprise/include/functions_reporting_csv.php:2854 +msgid "Average Throughput (bits/sec)" +msgstr "平均スループット (bits/sec)" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "$" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "現在のデプロイ" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "コスト分析" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "現在のコスト見積" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "前期間のコスト" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "予約状況" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +msgid "Deploy" +msgstr "デプロイ" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "復元" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "昇格" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "降格" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1944 +msgid "Cleanup" +msgstr "クリーンアップ" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "再同期" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "公開鍵認証に失敗しました" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "接続に失敗しました" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "登録" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "新規ノードの登録" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2957 +msgid "Update node" +msgstr "ノード更新" + +#: ../../enterprise/include/class/Azure.cloud.php:148 +#: ../../enterprise/include/class/Aws.cloud.php:113 +#: ../../enterprise/include/class/Google.cloud.php:142 +msgid "Cloud message" +msgstr "クラウドメッセージ" + +#: ../../enterprise/include/class/Azure.cloud.php:153 +#: ../../include/class/CredentialStore.class.php:947 +msgid "Azure" +msgstr "Azure" + +#: ../../enterprise/include/class/Azure.cloud.php:248 +#: ../../enterprise/include/class/Google.cloud.php:242 +msgid "Task details" +msgstr "タスク詳細" + +#: ../../enterprise/include/class/Azure.cloud.php:249 +#: ../../enterprise/include/class/Google.cloud.php:243 +msgid "Instance explorer" +msgstr "インスタンスエクスプローラ" + +#: ../../enterprise/include/class/Azure.cloud.php:250 +#: ../../enterprise/include/class/Google.cloud.php:244 +msgid "Metrics" +msgstr "メトリック" + +#: ../../enterprise/include/class/Azure.cloud.php:307 +msgid "Microsoft Compute" +msgstr "Microsoft コンピュート" + +#: ../../enterprise/include/class/Azure.cloud.php:355 +#: ../../enterprise/include/class/Aws.cloud.php:1492 +#: ../../enterprise/include/class/Google.cloud.php:349 +#, php-format +msgid "%s not found or not executable" +msgstr "%s が見つからないか実行できません" + +#: ../../enterprise/include/class/Azure.cloud.php:468 +#: ../../enterprise/include/class/Google.cloud.php:470 +msgid "Group not found." +msgstr "グループが見つかりません。" + +#: ../../enterprise/include/class/Azure.cloud.php:598 +#: ../../enterprise/include/class/Azure.cloud.php:646 +#: ../../enterprise/include/class/Google.cloud.php:597 +#: ../../enterprise/include/class/Google.cloud.php:643 +msgid "Unauthorized access" +msgstr "不正アクセス" + +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:583 +#: ../../enterprise/include/class/DB2.app.php:437 +#: ../../enterprise/include/class/Aws.S3.php:401 +#: ../../enterprise/include/class/SAP.app.php:469 +#: ../../enterprise/include/class/Aws.cloud.php:1201 +#: ../../enterprise/include/class/MySQL.app.php:442 +#: ../../enterprise/include/class/Google.cloud.php:759 +#: ../../enterprise/include/class/Oracle.app.php:444 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 +#: ../../godmode/wizards/HostDevices.class.php:838 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:590 +#: ../../include/class/CustomNetScan.class.php:446 +msgid "Task name" +msgstr "タスク名" + +#: ../../enterprise/include/class/Azure.cloud.php:797 +#: ../../enterprise/include/class/VMware.app.php:614 +#: ../../enterprise/include/class/Aws.S3.php:559 +#: ../../enterprise/include/class/Aws.cloud.php:540 +msgid "Tentacle options" +msgstr "Tentacle オプション" + +#: ../../enterprise/include/class/Azure.cloud.php:872 +#: ../../enterprise/include/class/Aws.cloud.php:742 +#: ../../enterprise/include/class/Aws.cloud.php:1274 +#: ../../enterprise/include/class/Google.cloud.php:822 +msgid "No instances found." +msgstr "インスタンスが見つかりません。" + +#: ../../enterprise/include/class/Azure.cloud.php:909 +#: ../../enterprise/include/class/Google.cloud.php:865 +msgid "Select target virtual machines" +msgstr "対象の仮想マシンを選択してください" + +#: ../../enterprise/include/class/Azure.cloud.php:928 +#: ../../enterprise/include/class/Aws.cloud.php:671 +msgid "Scan and general monitoring." +msgstr "スキャンと一般的な監視。" + +#: ../../enterprise/include/class/Azure.cloud.php:941 +#: ../../enterprise/include/class/Aws.cloud.php:688 +msgid "Cpu performance summary" +msgstr "CPU パフォーマンス概要" + +#: ../../enterprise/include/class/Azure.cloud.php:949 +#: ../../enterprise/include/class/Aws.cloud.php:698 +#: ../../enterprise/include/class/Google.cloud.php:911 +msgid "IOPS performance summary" +msgstr "IOPS パフォーマンス概要" + +#: ../../enterprise/include/class/Azure.cloud.php:957 +#: ../../enterprise/include/class/Aws.cloud.php:708 +#: ../../enterprise/include/class/Google.cloud.php:919 +msgid "Disk performance summary" +msgstr "ディスクパフォーマンス概要" + +#: ../../enterprise/include/class/Azure.cloud.php:965 +#: ../../enterprise/include/class/Aws.cloud.php:718 +#: ../../enterprise/include/class/Google.cloud.php:927 +msgid "Network performance summary" +msgstr "ネットワークパフォーマンス概要" + +#: ../../enterprise/include/class/Azure.cloud.php:990 +#: ../../enterprise/include/class/VMware.app.php:1014 +#: ../../enterprise/include/class/DB2.app.php:868 +#: ../../enterprise/include/class/Aws.S3.php:658 +#: ../../enterprise/include/class/SAP.app.php:924 +#: ../../enterprise/include/class/Aws.cloud.php:1590 +#: ../../enterprise/include/class/MySQL.app.php:944 +#: ../../enterprise/include/class/Google.cloud.php:952 +#: ../../enterprise/include/class/Oracle.app.php:977 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 +#: ../../godmode/wizards/HostDevices.class.php:1589 +#: ../../include/class/CustomNetScan.class.php:758 +msgid "Task configured." +msgstr "タスクを設定しました。" + +#: ../../enterprise/include/class/Azure.cloud.php:994 +#: ../../enterprise/include/class/VMware.app.php:1018 +#: ../../enterprise/include/class/DB2.app.php:872 +#: ../../enterprise/include/class/SAP.app.php:928 +#: ../../enterprise/include/class/MySQL.app.php:948 +#: ../../enterprise/include/class/Google.cloud.php:956 +#: ../../enterprise/include/class/Oracle.app.php:981 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 +#: ../../godmode/wizards/HostDevices.class.php:1593 +#: ../../include/class/CustomNetScan.class.php:762 +msgid "Wizard failed. Cannot configure task." +msgstr "ウィザードに失敗しました。タスクを設定できません。" + +#: ../../enterprise/include/class/VMware.app.php:230 +msgid "" +"This VMware configuration has been already defined. Please edit it or create a new " +"one." +msgstr "" +"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してください。" + +#: ../../enterprise/include/class/VMware.app.php:264 +#: ../../enterprise/include/class/DB2.app.php:197 +#: ../../enterprise/include/class/Aws.S3.php:183 +#: ../../enterprise/include/class/SAP.app.php:185 +#: ../../enterprise/include/class/Aws.cloud.php:917 +#: ../../enterprise/include/class/MySQL.app.php:206 +#: ../../enterprise/include/class/Oracle.app.php:204 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 +#: ../../godmode/wizards/HostDevices.class.php:422 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "タスク名を設定する必要があります。" + +#: ../../enterprise/include/class/VMware.app.php:269 +#: ../../enterprise/include/class/DB2.app.php:202 +#: ../../enterprise/include/class/Aws.S3.php:188 +#: ../../enterprise/include/class/SAP.app.php:190 +#: ../../enterprise/include/class/Aws.cloud.php:922 +#: ../../enterprise/include/class/MySQL.app.php:211 +#: ../../enterprise/include/class/Oracle.app.php:209 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 +#: ../../godmode/wizards/HostDevices.class.php:427 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "自動検出サーバを選択する必要があります。" + +#: ../../enterprise/include/class/VMware.app.php:274 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "正しい V-Center IP または FQDN を設定する必要があります。" + +#: ../../enterprise/include/class/VMware.app.php:279 +#: ../../enterprise/include/class/DB2.app.php:212 +#: ../../enterprise/include/class/Aws.S3.php:193 +#: ../../enterprise/include/class/SAP.app.php:200 +#: ../../enterprise/include/class/Aws.cloud.php:927 +#: ../../enterprise/include/class/MySQL.app.php:226 +#: ../../enterprise/include/class/Oracle.app.php:219 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 +#: ../../godmode/wizards/HostDevices.class.php:438 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "正しいグループを選択する必要があります。" + +#: ../../enterprise/include/class/VMware.app.php:291 +msgid "Discovery.Application.VMware" +msgstr "自動検出.アプリケーション.VMware" + +#: ../../enterprise/include/class/VMware.app.php:310 +msgid "Please select a valid group" +msgstr "正しいグループを選択してください" + +#: ../../enterprise/include/class/VMware.app.php:369 +msgid "Failed to find discovery VMware task." +msgstr "自動検出 VMware タスクを見つけられませんでした。" + +#: ../../enterprise/include/class/VMware.app.php:384 +msgid "Threads must be equal or greater than 1." +msgstr "スレッドは 1以上である必要があります。" + +#: ../../enterprise/include/class/VMware.app.php:486 +#: ../../enterprise/include/class/DB2.app.php:386 +#: ../../enterprise/include/class/SAP.app.php:336 +#: ../../enterprise/include/class/MySQL.app.php:403 +#: ../../enterprise/include/class/Oracle.app.php:393 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 +msgid "Application" +msgstr "アプリケーション" + +#: ../../enterprise/include/class/VMware.app.php:536 +#: ../../enterprise/include/class/DB2.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:444 +#: ../../enterprise/include/class/MySQL.app.php:591 +#: ../../enterprise/include/class/Oracle.app.php:576 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1236 +#: ../../godmode/setup/setup_integria.php:636 +#: ../../godmode/wizards/HostDevices.class.php:772 +#: ../../include/class/CustomNetScan.class.php:553 +msgid "Update and continue" +msgstr "更新して次へ" + +#: ../../enterprise/include/class/VMware.app.php:547 +#: ../../enterprise/include/class/Aws.S3.php:554 +#: ../../enterprise/include/class/Aws.cloud.php:500 +msgid "" +"This kind of task uses multipurpose plugins in order to generate monitoring data, " +"configure your desired tentacle target." +msgstr "" +"この種のタスクでは、多目的プラグインを使用して監視データを生成し、目的の tentacle を設" +"定します。" + +#: ../../enterprise/include/class/VMware.app.php:594 +#: ../../enterprise/include/class/DB2.app.php:449 +#: ../../enterprise/include/class/Aws.S3.php:413 +#: ../../enterprise/include/class/SAP.app.php:482 +#: ../../enterprise/include/class/Aws.cloud.php:1213 +#: ../../enterprise/include/class/MySQL.app.php:454 +#: ../../enterprise/include/class/Oracle.app.php:456 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 +#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../include/class/CustomNetScan.class.php:480 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task will " +"never run" +msgstr "" +"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出タスク" +"は実行されません。" + +#: ../../enterprise/include/class/VMware.app.php:656 +msgid "Datacenter user" +msgstr "データセンターユーザ" + +#: ../../enterprise/include/class/VMware.app.php:668 +#: ../../enterprise/include/class/DB2.app.php:537 +#: ../../enterprise/include/class/Aws.S3.php:507 +#: ../../enterprise/include/class/SAP.app.php:514 +#: ../../enterprise/include/class/Aws.cloud.php:1319 +#: ../../enterprise/include/class/MySQL.app.php:559 +#: ../../enterprise/include/class/Oracle.app.php:544 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 +#: ../../godmode/wizards/HostDevices.class.php:799 +#: ../../include/class/CustomNetScan.class.php:521 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "手動は、オンデマンドでのみの実行を意味します。" + +#: ../../enterprise/include/class/VMware.app.php:675 +#: ../../enterprise/include/class/VMware.app.php:887 +#: ../../enterprise/include/class/DB2.app.php:544 +#: ../../enterprise/include/class/Aws.S3.php:514 +#: ../../enterprise/include/class/SAP.app.php:521 +#: ../../enterprise/include/class/Aws.cloud.php:1326 +#: ../../enterprise/include/class/MySQL.app.php:566 +#: ../../enterprise/include/class/Oracle.app.php:551 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 +#: ../../godmode/wizards/HostDevices.class.php:806 +#: ../../include/functions_reporting_html.php:2489 +#: ../../include/class/CustomNetScan.class.php:528 +msgid "Defined" +msgstr "定義済み" + +#: ../../enterprise/include/class/VMware.app.php:693 +#: ../../enterprise/include/class/DB2.app.php:561 +#: ../../enterprise/include/class/Aws.S3.php:531 +#: ../../enterprise/include/class/SAPView.class.php:259 +#: ../../enterprise/include/class/SAPView.class.php:296 +#: ../../enterprise/include/class/SAP.app.php:540 +#: ../../enterprise/include/class/Aws.cloud.php:1343 +#: ../../enterprise/include/class/MySQL.app.php:583 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 +msgid "The minimum recomended interval is 5 minutes" +msgstr "推奨される最小間隔は 5分です" + +#: ../../enterprise/include/class/VMware.app.php:707 +msgid "V-Center IP" +msgstr "V-Center IP" + +#: ../../enterprise/include/class/VMware.app.php:718 +msgid "Datacenter name" +msgstr "データセンター名" + +#: ../../enterprise/include/class/VMware.app.php:719 +msgid "" +"This name must match with the name wich appears when you log in you VMware manager" +msgstr "" +"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があります" + +#: ../../enterprise/include/class/VMware.app.php:749 +msgid "Encrypt passwords" +msgstr "パスワード暗号化" + +#: ../../enterprise/include/class/VMware.app.php:763 +#: ../../enterprise/include/class/DB2.app.php:470 +#: ../../enterprise/include/class/Aws.S3.php:435 +#: ../../enterprise/include/class/SAP.app.php:644 +#: ../../enterprise/include/class/Aws.cloud.php:1234 +#: ../../enterprise/include/class/MySQL.app.php:475 +#: ../../enterprise/include/class/Oracle.app.php:477 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 +msgid "This group will be used also to classify discovered agents" +msgstr "このグループは、検出されたエージェントの分類にも使用されます" + +#: ../../enterprise/include/class/VMware.app.php:870 +msgid "Max threads" +msgstr "最大スレッド" + +#: ../../enterprise/include/class/VMware.app.php:879 +msgid "Re-scan interval" +msgstr "再スキャン間隔" + +#: ../../enterprise/include/class/VMware.app.php:880 +msgid "Enables re-scan entities process every interval defined." +msgstr "定義された間隔ごとに再スキャンエンティティが処理できるようにします。" + +#: ../../enterprise/include/class/VMware.app.php:913 +msgid "Retry send" +msgstr "送信リトライ" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Event mode" +msgstr "イベントモード" + +#: ../../enterprise/include/class/VMware.app.php:923 +msgid "Only for VCenter." +msgstr "VCenter のみ。" + +#: ../../enterprise/include/class/VMware.app.php:933 +msgid "Virtual network monitoring" +msgstr "仮想ネットワーク監視" + +#: ../../enterprise/include/class/VMware.app.php:964 +msgid "Extra settings" +msgstr "追加設定" + +#: ../../enterprise/include/class/VMware.app.php:965 +msgid "This RAW block will be directly added to config file." +msgstr "この RAW ブロックは、設定ファイルに直接追加されます。" + +#: ../../enterprise/include/class/VMware.app.php:1259 +msgid "Include datastores" +msgstr "データストアを含める" + +#: ../../enterprise/include/class/VMware.app.php:1269 +msgid "Include datacenters" +msgstr "データセンタを含める" + +#: ../../enterprise/include/class/VMware.app.php:1279 +msgid "Include esxs" +msgstr "esx を含める" + +#: ../../enterprise/include/class/VMware.app.php:1289 +msgid "Include vms" +msgstr "vm を含める" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "IP アドレスが必要です" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:439 +msgid "Target OS is required" +msgstr "対象 OS が必要です" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:441 +msgid "Target architecture is required" +msgstr "対象アーキテクチャが必要です" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "利用する認証情報が必要です" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "必要とするエージェントバージョンが必要です" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "対象は既に定義されています。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "対象を追加しました" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "対象を更新しました" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:631 +msgid "Target successfully deleted" +msgstr "対象を削除しました" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "自動検出サーバを指定する必要があります" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "デプロイする対象を選択する必要があります" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +msgid "Failed to schedule" +msgstr "スケジュール設定に失敗しました" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "スケジュールされたものを展開" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "CSV ファイルが必要です" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:480 +#, php-format +msgid "Credential identifier %s does not exist, please, add it to your repository %s " +msgstr "認証情報識別子 %s が存在しません。リポジトリ %s に追加してください " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:488 +#, php-format +msgid "OS %s does not math any existing, please, add it to OS list %s" +msgstr "OS%s が既存のものと一致しません。OSリスト %s に追加してください" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:496 +#, php-format +msgid "" +"Sofware agent version with id %s does not exist, please, add it to your repository %s " +msgstr "" +"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加してくだ" +"さい " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:518 +msgid "No target could be added. " +msgstr "対象を追加できませんでした。 " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:594 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:352 +msgid "Host & Devices" +msgstr "ホスト & デバイス" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:621 +msgid "Deployment center" +msgstr "デプロイセンター" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:637 +msgid "There are no targets defined yet, please add some." +msgstr "対象が定義されていません。追加してください。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "対象でソフトウェアを使用できるようにするには、%s を設定してください。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:656 +#, php-format +msgid "There are no software agents in your repository yet, please add some %s." +msgstr "リポジトリにはまだソフトウェアエージェントがありません。%s へ追加してください。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:675 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 +msgid "Scan for targets" +msgstr "対象のスキャン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:684 +msgid "Add target" +msgstr "対象の追加" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:693 +msgid "Load targets" +msgstr "対象をロード" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:757 +#: ../../enterprise/include/class/DeploymentCenter.class.php:825 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:364 +#: ../../enterprise/include/class/AgentRepository.class.php:671 +#: ../../enterprise/include/class/AgentRepository.class.php:724 +msgid "Architecture" +msgstr "アーキテクチャ" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:758 +msgid "Key identifier" +msgstr "鍵識別子" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:759 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 +msgid "Target server IP" +msgstr "対象サーバ IP" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:760 +msgid "Agent version installed" +msgstr "インストール済エージェントバージョン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:761 +msgid "Agent version desired" +msgstr "必要なエージェントバージョン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:762 +msgid "Installation date" +msgstr "インストール日時" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:763 +msgid "Last error" +msgstr "最新のエラー" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:836 +msgid "State" +msgstr "状態" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:868 +msgid "Deploy agent to targets" +msgstr "対象にエージェントをデプロイ" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:956 +#: ../../enterprise/include/class/AgentRepository.class.php:272 +msgid "Deploying" +msgstr "デプロイ中" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 +msgid "You must define a network." +msgstr "ネットワークを定義する必要があります。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 +msgid "You must select at least one credential to test." +msgstr "テストのために少なくとも一つ認証情報を選択する必要があります。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 +msgid "You must select a Discovery server." +msgstr "自動検出サーバを選択する必要があります。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 +msgid "Please select a desired software agent version." +msgstr "希望するソフトウェアエージェントのバージョンを選択してください。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +msgid "Please specify a server IP." +msgstr "サーバ IP を指定してください。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 +msgid "Discovery task list" +msgstr "自動検出タスク一覧" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "このネットワークはスキャン済です。%s で進捗を見ます" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "スキャンがスケジュールされているネットワーク。%s で進捗状況を見ることができます" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1268 +#: ../../enterprise/include/class/SAP.app.php:604 +#: ../../enterprise/include/class/SAP.app.php:607 +#: ../../godmode/wizards/HostDevices.class.php:1434 +#: ../../godmode/wizards/HostDevices.class.php:1437 +msgid "No credentials available" +msgstr "認証情報がありません" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 +#: ../../enterprise/include/class/SAP.app.php:605 +#: ../../godmode/agentes/module_manager_editor_network.php:474 +#: ../../godmode/wizards/HostDevices.class.php:1435 +msgid "Manage credentials" +msgstr "認証情報管理" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 +msgid "Network/mask" +msgstr "ネットワーク/マスク" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +msgid "Scan from" +msgstr "次からスキャン:" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 +#: ../../godmode/wizards/HostDevices.class.php:1447 +msgid "Credentials to try with" +msgstr "利用認証情報" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 +msgid "Desired agent version" +msgstr "必要なエージェントバージョン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 +msgid "CSV format" +msgstr "CSV フォーマット" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target agent version" +msgstr "対象エージェントバージョン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target server ip" +msgstr "対象サーバ IP" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 +msgid "CSV file" +msgstr "CSVファイル" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 +msgid "Select desired targets to be deployed" +msgstr "デプロイする必要な対象を選択してください" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 +msgid "Deploy from" +msgstr "次からデプロイ:" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 +msgid "Available targets" +msgstr "存在する対象" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +msgid "Add new target" +msgstr "新たな対象の追加" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 +msgid "Update target" +msgstr "対象の更新" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 +msgid "Import targets from CSV" +msgstr "CSV から対象をインポート" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 +#: ../../godmode/modules/manage_network_components_form_wizard.php:637 +msgid "Scan" +msgstr "スキャン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 +msgid "Select targets" +msgstr "対象を選択" + +#: ../../enterprise/include/class/DatabaseHA.class.php:137 +#: ../../enterprise/include/class/DatabaseHA.class.php:241 +#: ../../enterprise/include/class/DatabaseHA.class.php:423 +#: ../../enterprise/include/class/DatabaseHA.class.php:433 +#: ../../enterprise/include/class/DatabaseHA.class.php:525 +#: ../../enterprise/include/class/DatabaseHA.class.php:534 +#: ../../enterprise/include/class/DatabaseHA.class.php:651 +#: ../../enterprise/include/class/DatabaseHA.class.php:660 +msgid "Error, please refresh page" +msgstr "エラー、ページをリロードしてください" + +#: ../../enterprise/include/class/DatabaseHA.class.php:142 +msgid "Action already scheduled" +msgstr "アクションはすでに計画済です" + +#: ../../enterprise/include/class/DatabaseHA.class.php:148 +msgid "Unavailable action" +msgstr "存在しないアクション" + +#: ../../enterprise/include/class/DatabaseHA.class.php:160 +msgid "A node is already being synchronized, please wait until process finish." +msgstr "ノードはすでに同期済です。処理が完了するまでお待ちください。" + +#: ../../enterprise/include/class/DatabaseHA.class.php:172 +msgid "Please verify resync configuration is set before use this feature." +msgstr "この機能を使用する前に、再同期設定がされていることを確認してください。" + +#: ../../enterprise/include/class/DatabaseHA.class.php:190 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 +msgid "Successfully scheduled" +msgstr "スケジュール設定しました" + +#: ../../enterprise/include/class/DatabaseHA.class.php:205 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2039 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3262 +#: ../../enterprise/tools/ipam/ipam_network.php:403 +#: ../../enterprise/tools/ipam/ipam_ajax.php:419 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +#: ../../godmode/modules/manage_network_components_form_wizard.php:247 +#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/agentes/module_manager_editor_common.php:1061 +#: ../../godmode/agentes/module_manager_editor_common.php:1071 +#: ../../godmode/massive/massive_edit_agents.php:1137 +#: ../../godmode/alerts/configure_alert_template.php:900 +#: ../../include/functions_visual_map_editor.php:825 +#: ../../include/functions_reporting_html.php:3561 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 +msgid "Enabled" +msgstr "有効" + +#: ../../enterprise/include/class/DatabaseHA.class.php:214 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1087 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1847 +msgid "Pending" +msgstr "保留中" + +#: ../../enterprise/include/class/DatabaseHA.class.php:220 +msgid "Uninitialized" +msgstr "未初期化" + +#: ../../enterprise/include/class/DatabaseHA.class.php:476 +#: ../../enterprise/include/class/DatabaseHA.class.php:575 +#: ../../enterprise/include/class/DatabaseHA.class.php:1251 +msgid "This is not a cluster node" +msgstr "これはクラスタノードではありません" + +#: ../../enterprise/include/class/DatabaseHA.class.php:480 +#: ../../enterprise/include/class/DatabaseHA.class.php:1255 +msgid "Failed to retrieve master position" +msgstr "マスターポジションの取得に失敗しました" + +#: ../../enterprise/include/class/DatabaseHA.class.php:494 +#: ../../enterprise/include/class/DatabaseHA.class.php:1268 +msgid "Failed to retrieve slave information" +msgstr "スレーブ情報の取得に失敗しました" + +#: ../../enterprise/include/class/DatabaseHA.class.php:611 +msgid "Master" +msgstr "マスタ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:614 +msgid "Slave" +msgstr "スレーブ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:796 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 +#: ../../include/class/CalendarManager.class.php:535 +#: ../../include/class/CalendarManager.class.php:892 +msgid "Failed to update" +msgstr "更新に失敗しました" + +#: ../../enterprise/include/class/DatabaseHA.class.php:823 +#: ../../enterprise/include/class/DatabaseHA.class.php:1006 +msgid "DB Replication user" +msgstr "DB レプリケーションユーザ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:824 +msgid "User configured for Master to Slaves replication" +msgstr "マスター・スレーブレプリケーション設定用ユーザ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:834 +#: ../../enterprise/include/class/DatabaseHA.class.php:1015 +msgid "DB Replication user password" +msgstr "DB レプリケーションユーザパスワード" + +#: ../../enterprise/include/class/DatabaseHA.class.php:835 +msgid "User password" +msgstr "ユーザパスワード" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "Resync data dir" +msgstr "再同期データディレクトリ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:846 +msgid "Directory where mysql files are stored (must be common to all nodes)" +msgstr "" +"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があります)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:856 +msgid "Resync tmp directory" +msgstr "再同期テンポラリディレクトリ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:857 +msgid "" +"Temporary working directory where to store the backups that will be used to re-" +"synchronize a slave node" +msgstr "" +"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクトリ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:867 +msgid "Resync MySQL user" +msgstr "再同期 MySQL ユーザ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +msgid "" +"User of the system that owns the MySQL files, necessary for the adjustment of " +"permissions (by default mysql)" +msgstr "" +"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトでは mysql)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:878 +msgid "Resync MySQL group" +msgstr "再同期 MySQL グループ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:879 +msgid "" +"System group that owns the MySQL files, needed for permissions setting (default mysql)" +msgstr "" +"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは mysql)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:940 +msgid "IP or FQDN" +msgstr "IP または FQDN" + +#: ../../enterprise/include/class/DatabaseHA.class.php:941 +msgid "" +"This action only registers an already configured node. This action does not configure " +"any resource." +msgstr "" +"このアクションは、すでに設定されているノードのみを登録します。 このアクションでは、リ" +"ソースは設定されません。" + +#: ../../enterprise/include/class/DatabaseHA.class.php:951 +msgid "Cluster node label (pcs)" +msgstr "クラスタノードラベル (pcs)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:967 +msgid "SSH user" +msgstr "SSH ユーザ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:975 +msgid "SSH port" +msgstr "SSH ポート" + +#: ../../enterprise/include/class/DatabaseHA.class.php:983 +msgid "SSH key" +msgstr "SSH 鍵" + +#: ../../enterprise/include/class/DatabaseHA.class.php:991 +msgid "SSH public key" +msgstr "SSH 公開鍵" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1043 +msgid "Missed parameters" +msgstr "不足パラメータ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1090 +msgid "You must specify a host" +msgstr "ホストを指定する必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1092 +msgid "DB port must be a positive integer" +msgstr "DB ポートは正の整数である必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1094 +msgid "SSH port must be a positive integer" +msgstr "SSH ポートは正の整数である必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1096 +msgid "You must specify a SSH user" +msgstr "SSH ユーザを指定する必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1098 +msgid "You must specify a replication DB user" +msgstr "レプリケーション DB ユーザを指定する必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1100 +msgid "You must specify a replication DB pass" +msgstr "レプリケーション DB パスワードを指定する必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1102 +msgid "You must specify a public key path" +msgstr "公開鍵のパスを指定する必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1104 +msgid "You must specify a private path" +msgstr "秘密鍵のパスを指定する必要があります" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1154 +msgid "Successfully " +msgstr "成功 " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 +msgid "Perform action" +msgstr "アクションの実行" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 +msgid "NCM devices" +msgstr "NCM デバイス" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 +msgid "NCM templates" +msgstr "NCM テンプレート" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 +msgid "Registered vendors" +msgstr "登録ベンダ" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 +msgid "Registered models" +msgstr "登録モデル" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 +msgid "Registered snippets" +msgstr "登録スニペット" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 +msgid "Registered firmwares" +msgstr "登録ファームウエア" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 +msgid "No agents with NCM features enabled yet" +msgstr "NCM 機能が有効になっているエージェントがありません" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 +#, php-format +msgid "Template not found: %s" +msgstr "テンプレートが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template created" +msgstr "テンプレートを作成しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +msgid "Template updated" +msgstr "テンプレートを更新しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1453 +#: ../../include/class/CalendarManager.class.php:570 +#: ../../include/class/CalendarManager.class.php:946 +#: ../../include/functions_reporting.php:5082 ../../include/functions_reporting.php:5110 +#, php-format +msgid "Error: %s" +msgstr "エラー: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 +#, php-format +msgid "Vendor not found: %s" +msgstr "ベンダが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 +#: ../../include/class/CalendarManager.class.php:538 +#: ../../include/class/CalendarManager.class.php:895 +msgid "Failed to create" +msgstr "作成に失敗しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 +msgid "Failed saving vendor: " +msgstr "ベンダの保存に失敗しました: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 +#, php-format +msgid "model not found: %s" +msgstr "モデルが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 +msgid "you must select a valid vendor" +msgstr "正しいベンダを選択する必要があります。" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 +msgid "Failed saving model: " +msgstr "モデルの保存に失敗しました: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 +#, php-format +msgid "snippet not found: %s" +msgstr "スニペットが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 +msgid "Failed saving snippet: " +msgstr "スニペットを保存できませんでした" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 +#, php-format +msgid "firmware not found: %s" +msgstr "ファームウエアが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 +msgid "Firmware file missing" +msgstr "ファームウエアファイルがありません" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 +#: ../../enterprise/include/class/AgentRepository.class.php:467 +msgid "Cannot create target dir [" +msgstr "対象ディレクトリを作成できません [" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 +#, php-format +msgid "Failed to store file in %s" +msgstr "%s へのファイルの保存に失敗しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 +msgid "Failed saving firmware: " +msgstr "ファームウエアの保存に失敗しました: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 +msgid "" +"Upload only official binary files from your device provide in raw format (not " +"compressed)" +msgstr "" +"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロードしてくだ" +"さい" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 +#: ../../godmode/modules/manage_network_templates.php:83 +msgid "Template successfully deleted" +msgstr "テンプレートを削除しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 +msgid "Template successfully duplicated" +msgstr "テンプレートを複製しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 +#, php-format +msgid "Model not found: %s" +msgstr "モデルが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 +msgid "Model successfully deleted" +msgstr "モデルを削除しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 +msgid "Vendor successfully deleted" +msgstr "ベンダを削除しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 +#, php-format +msgid "Snippet not found: %s" +msgstr "スニペットが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 +msgid "Snippet successfully deleted" +msgstr "スニペットを削除しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 +#, php-format +msgid "Firmware not found: %s" +msgstr "ファームウエアが見つかりません: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 +msgid "Firmware successfully deleted" +msgstr "ファームウエアを削除しました" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 +msgid "Not executed yet, no content to display, define your own in following textarea." +msgstr "" +"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定義してく" +"ださい。" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 +msgid "" +"Following content is already queued to be executed! You must wait until execution is " +"finished before being able to modify this." +msgstr "" +"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了するまで" +"待つ必要があります。" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 +msgid "Check progress" +msgstr "進捗確認" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 +#, php-format +msgid "Script scheduled %s %s" +msgstr "計画スクリプト %s %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 +#, php-format +msgid "Error retrieving template: %s" +msgstr "テンプレート取得エラー: %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 +msgid "you must select a template" +msgstr "テンプレートを選択する必要があります" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 +msgid "you must select a valid model" +msgstr "正しいモデルを選択する必要があります。" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 +msgid "you must select a valid port" +msgstr "正しいポートを選択する必要があります。" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 +#, php-format +msgid "Failed to update%s" +msgstr "アップデートに失敗しました %s" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 +msgid "No configuration registers to backup" +msgstr "バックアップのための設定レジスタがありません" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 +msgid "Successfully backed up" +msgstr "バックアップしました: " + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 +msgid "Invalid id given" +msgstr "不正な ID 指定です" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 +msgid "" +"Is highly recommendable to execute this kind of operation from agent details to " +"preview the script content" +msgstr "" +"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューすることを強" +"くお勧めします" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 +msgid "This operation is not ready yet! Keep up to date with latest updates" +msgstr "" +"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってください" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 +msgid "Invalid action" +msgstr "不正なアクション" + +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 +msgid "Failed to schedule action." +msgstr "スケジュールアクションに失敗しました" + +#: ../../enterprise/include/class/AgentRepository.class.php:346 +msgid "Time in seconds before deployment is cancelled." +msgstr "デプロイがキャンセルされるまでの秒単位の時間。" + +#: ../../enterprise/include/class/AgentRepository.class.php:385 +msgid "Transfer timeout" +msgstr "転送タイムアウト" + +#: ../../enterprise/include/class/AgentRepository.class.php:393 +msgid "Installation file" +msgstr "インストールファイル" + +#: ../../enterprise/include/class/AgentRepository.class.php:433 +msgid "Agent version is required" +msgstr "エージェントバージョンが必要です" + +#: ../../enterprise/include/class/AgentRepository.class.php:450 +msgid "This version already exists" +msgstr "このバージョンはすでに存在します" + +#: ../../enterprise/include/class/AgentRepository.class.php:484 +#, php-format +msgid "Invalid installation file for %s" +msgstr "%s 向けに不正なインストールファイルです" + +#: ../../enterprise/include/class/AgentRepository.class.php:527 +msgid "Installation files not modified" +msgstr "インストールファイルが編集されていません" + +#: ../../enterprise/include/class/AgentRepository.class.php:549 +msgid "Installation files updated" +msgstr "インストールファイルをアップロードしました" + +#: ../../enterprise/include/class/AgentRepository.class.php:556 +msgid "You must provide installation files to create a new entry." +msgstr "新規エントリを作成するにはインストールファイルを提供する必要があります。" + +#: ../../enterprise/include/class/AgentRepository.class.php:577 +msgid "This agent has been already defined." +msgstr "このエージェントはすでに定義済です。" + +#: ../../enterprise/include/class/AgentRepository.class.php:593 +msgid "Agent successfully registered and uploaded" +msgstr "エージェントを登録しアップロードしました" + +#: ../../enterprise/include/class/AgentRepository.class.php:673 +msgid "Uploaded by" +msgstr "アップロード:" + +#: ../../enterprise/include/class/AgentRepository.class.php:674 +msgid "Upload date" +msgstr "アップロード日時" + +#: ../../enterprise/include/class/AgentRepository.class.php:756 +msgid "Add new software" +msgstr "新規ソフトウエアの追加" + +#: ../../enterprise/include/class/AgentRepository.class.php:943 +msgid "Add new Software agent" +msgstr "新規ソフトウエアエージェントの追加" + +#: ../../enterprise/include/class/AgentRepository.class.php:946 +msgid "Update Software agent" +msgstr "ソフトウエアエージェントの更新" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 +msgid "Please follow the wizard." +msgstr "ウィザードに従ってください。" + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 +msgid "You have no acess to edit this command." +msgstr "このコマンドを編集する権限がありません。" + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "コメントを保存できませんでした" + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "コマンドが見つかりません。" + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "ページが見つかりません" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "この機能を利用するには php-yaml をインストールする必要があります。" + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "未開始" + +#: ../../enterprise/include/class/Omnishell.class.php: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 "" +"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要があり" +"ます" + +#: ../../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 "" +"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要がありま" +"す" + +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../godmode/agentes/planned_downtime.editor.php:1103 +msgid "Available agents" +msgstr "エージェント" + +#: ../../enterprise/include/class/Omnishell.class.php:880 +msgid "Remove agents" +msgstr "エージェント削除" + +#: ../../enterprise/include/class/Omnishell.class.php:915 +#: ../../enterprise/operation/services/massive/services.create.php:1244 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:255 +#: ../../enterprise/operation/services/massive/service.create.elements.php:601 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:364 +msgid "Selected agents" +msgstr "選択したエージェント" + +#: ../../enterprise/include/class/Omnishell.class.php:1157 +msgid "Selected command definition will be erased" +msgstr "選択したコマンド定義は削除されます" + +#: ../../enterprise/include/class/Omnishell.class.php:1243 +msgid "Command viewer" +msgstr "コマンドビューワ" + +#: ../../enterprise/include/class/Omnishell.class.php:1251 +msgid "Detailed view" +msgstr "詳細表示" + +#: ../../enterprise/include/class/Omnishell.class.php:1392 +msgid "Not an array of ids" +msgstr "ID の配列ではありません" + +#: ../../enterprise/include/class/Omnishell.class.php:1450 +msgid "There are no targets for this remote command" +msgstr "このリモートコマンドの対象がありません" + +#: ../../enterprise/include/class/Omnishell.class.php:1457 +msgid "Command does not exist" +msgstr "コマンドが存在しません" + +#: ../../enterprise/include/class/Omnishell.class.php:1556 +msgid "timed out" +msgstr "タイムアウトしました" + +#: ../../enterprise/include/class/Omnishell.class.php:1559 +msgid "failed" +msgstr "失敗" + +#: ../../enterprise/include/class/Omnishell.class.php:1575 +msgid "Waiting results..." +msgstr "結果待ち..." + +#: ../../enterprise/include/class/Omnishell.class.php:1594 +msgid "RCMD does not exist" +msgstr "RCMD が存在しません" + +#: ../../enterprise/include/class/LogSource.class.php:455 +msgid "Source is required" +msgstr "ソースが必要です" + +#: ../../enterprise/include/class/LogSource.class.php:562 +msgid "id cannot be empty" +msgstr "ID は空にできません" + +#: ../../enterprise/include/class/LogSource.class.php:567 +#: ../../include/class/CredentialStore.class.php:747 +msgid "Not allowed" +msgstr "許可されません" + +#: ../../enterprise/include/class/LogSource.class.php:611 +#: ../../include/class/CredentialStore.class.php:786 +msgid "How to configure encryption." +msgstr "暗号化の設定方法。" + +#: ../../enterprise/include/class/LogSource.class.php:610 +#, php-format +msgid "Log monitoring is disabled. %s" +msgstr "ログ監視が無効です。%s" + +#: ../../enterprise/include/class/LogSource.class.php:680 +#: ../../enterprise/include/class/LogSource.class.php:846 +msgid "Add log source" +msgstr "ログソースを追加" + +#: ../../enterprise/include/class/LogSource.class.php:715 +msgid "Source name" +msgstr "ソース名" + +#: ../../enterprise/include/class/LogSource.class.php:850 +msgid "Update log source" +msgstr "ログソース更新" + +#: ../../enterprise/include/class/DB2.app.php:165 +msgid "" +"This DB2 configuration has been already defined. Please edit it or create a new one." +msgstr "この DB2 設定はすでに定義済です。 編集するか、新しいものを作成してください。" + +#: ../../enterprise/include/class/DB2.app.php:207 +msgid "You must provide a valid DB2 server IP or FQDN." +msgstr "正しい DB2 サーバ IP または FQDN を設定する必要があります。" + +#: ../../enterprise/include/class/DB2.app.php:219 +msgid "Discovery.Application.DB2" +msgstr "自動検出.アプリケーション.DB2" + +#: ../../enterprise/include/class/DB2.app.php:270 +msgid "Failed to find discovery DB2 task." +msgstr "自動検出 DB2 タスクを見つけられませんでした。" + +#: ../../enterprise/include/class/DB2.app.php:486 +msgid "DB2 target strings" +msgstr "DB2 対象文字列" + +#: ../../enterprise/include/class/DB2.app.php:487 +msgid "" +"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you need." +msgstr "" +"SERVER:PORT/DATABASE で、カンマ区切りまたは行ごとに必要な数のターゲッを設定します。" + +#: ../../enterprise/include/class/DB2.app.php:487 +#: ../../enterprise/include/class/Oracle.app.php:494 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "コメント行には # を使います。" + +#: ../../enterprise/include/class/DB2.app.php:634 +#: ../../enterprise/include/class/MySQL.app.php:656 +#: ../../enterprise/include/class/Oracle.app.php:641 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 +msgid "Target agent" +msgstr "対象エージェント" + +#: ../../enterprise/include/class/DB2.app.php:635 +#: ../../enterprise/include/class/Oracle.app.php:642 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have defined " +"multiple targets, define a comma separated list of names here or leave in blank to " +"use target as name." +msgstr "" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定義した" +"場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象を名前として使用" +"します。" + +#: ../../enterprise/include/class/DB2.app.php:654 +#: ../../enterprise/include/class/MySQL.app.php:676 +#: ../../enterprise/include/class/Oracle.app.php:661 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 +msgid "Custom module prefix" +msgstr "カスタムモジュールプレフィックス" + +#: ../../enterprise/include/class/DB2.app.php:655 +#: ../../enterprise/include/class/MySQL.app.php:677 +#: ../../enterprise/include/class/Oracle.app.php:662 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by this task." +msgstr "" +"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックスを定義し" +"ます。" + +#: ../../enterprise/include/class/DB2.app.php:673 +msgid "Get database summary" +msgstr "データベース概要の取得" + +#: ../../enterprise/include/class/DB2.app.php:689 +msgid "Check transactional log utilization" +msgstr "トランザクションログ使用率の確認" + +#: ../../enterprise/include/class/DB2.app.php:705 +msgid "Get number of connections" +msgstr "接続数の取得" + +#: ../../enterprise/include/class/DB2.app.php:721 +msgid "Check DB size" +msgstr "DB サイズ確認" + +#: ../../enterprise/include/class/DB2.app.php:737 +#: ../../enterprise/include/class/MySQL.app.php:821 +#: ../../enterprise/include/class/Oracle.app.php:760 +msgid "Retrieve cache statistics" +msgstr "キャッシュ統計の取得" + +#: ../../enterprise/include/class/DB2.app.php:753 +#: ../../enterprise/include/class/MySQL.app.php:837 +#: ../../enterprise/include/class/Oracle.app.php:776 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 +msgid "Execute custom queries" +msgstr "カスタムクエリの実行" + +#: ../../enterprise/include/class/DB2.app.php:821 +#: ../../enterprise/include/class/MySQL.app.php:889 +#: ../../enterprise/include/class/Oracle.app.php:930 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 +msgid "Custom queries" +msgstr "カスタムクエリ" + +#: ../../enterprise/include/class/DB2.app.php:822 +#: ../../enterprise/include/class/MySQL.app.php:890 +#: ../../enterprise/include/class/Oracle.app.php:931 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 +msgid "Define here your custom queries." +msgstr "ここにカスタムクエリを定義します。" + +#: ../../enterprise/include/class/Aws.S3.php:60 +msgid "Aws S3" +msgstr "AWS S3" + +#: ../../enterprise/include/class/Aws.S3.php:166 +#: ../../enterprise/include/class/Aws.cloud.php:886 +#: ../../include/class/CustomNetScan.class.php:134 +msgid "This task has been already defined. Please edit it or create a new one." +msgstr "このタスクはすでに定義済です。これを編集するか新たに作成してください。" + +#: ../../enterprise/include/class/Aws.S3.php:214 +msgid "You must select something." +msgstr "何かを選択する必要があります。" + +#: ../../enterprise/include/class/Aws.S3.php:236 +msgid "Discovery.Cloud.AWS.S3" +msgstr "自動検出.クラウド.AWS.S3" + +#: ../../enterprise/include/class/Aws.S3.php:294 +msgid "Unknown task" +msgstr "不明なタスク" + +#: ../../enterprise/include/class/Aws.S3.php:313 +msgid "Unknown section." +msgstr "不明なセクション。" + +#: ../../enterprise/include/class/Aws.S3.php:339 +msgid "S3" +msgstr "S3" + +#: ../../enterprise/include/class/Aws.S3.php:344 +msgid "Bucket monitoring" +msgstr "バケット監視" + +#: ../../enterprise/include/class/Aws.S3.php:454 +msgid "No buckets found." +msgstr "バケットがありません。" + +#: ../../enterprise/include/class/Aws.S3.php:598 +msgid "Select Buckets to be monitored" +msgstr "監視するバケットを選択" + +#: ../../enterprise/include/class/Aws.S3.php:633 +msgid "Monitor bucket size" +msgstr "監視バケットサイズ" + +#: ../../enterprise/include/class/Aws.S3.php:643 +msgid "Monitor bucket total items" +msgstr "監視バケット全アイテム" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "CSV ファイルは次の順番のフィールドでなければいけません:" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "エージェント別名, IPアドレス, OS ID, 間隔, グループID, 説明" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:127 +msgid "" +"Warning, this CSV importer will not perform any discovery, it will only create empty " +"agents with the name, IP, OS type, description and group provided in the CSV." +msgstr "" +"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、IP、OSタイ" +"プ、説明、グループを使って、空のエージェントを作成するだけです。" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:179 +msgid "Alias as name" +msgstr "名前としての別名" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:244 +msgid "No data or wrong separator" +msgstr "データが無いか不正なセパレータ" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:250 +#, php-format +msgid "Agent %s duplicated." +msgstr "エージェント %s が重複しています。" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:257 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "グループ ID %s は %s に存在しません" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:265 +msgid "General failure." +msgstr "一般的な失敗。" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:286 +msgid "No input file detected" +msgstr "入力ファイルがありません" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:375 +msgid "Agent processed successfully" +msgstr "エージェントの処理をしました" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:381 +msgid "Some errors while processing CSV." +msgstr "CSV 処理中にエラーです。" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:384 +msgid "All agents processed correctly" +msgstr "全エージェントを正しく処理しました。" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:391 +#, php-format +msgid "Line %s" +msgstr "行 %s" + +#: ../../enterprise/include/class/SAPView.class.php:146 +#: ../../enterprise/include/class/SAPView.class.php:190 +msgid "SAP View" +msgstr "SAP 表示" + +#: ../../enterprise/include/class/SAPView.class.php:164 +msgid "SAP data not found." +msgstr "SAP データがありません。" + +#: ../../enterprise/include/class/SAPView.class.php:258 +msgid "Refresh Every" +msgstr "更新間隔:" + +#: ../../enterprise/include/class/SAPView.class.php:295 +msgid "Graph Interval" +msgstr "グラフ間隔" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is usually " +"configured to retry. You have not configured a Discovery SAP R3 task yet, please visit" +msgstr "" +"SAP 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモジュールを" +"確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にアクセスしてくださ" +"い:" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "to start monitoring your SAP infrastructure." +msgstr "SAP インフラを監視するためです。" + +#: ../../enterprise/include/class/SAPView.class.php:633 +msgid "Discover SAP" +msgstr "自動検出 SAP" + +#: ../../enterprise/include/class/SAP.app.php:154 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a new one." +msgstr "この SAP 設定はすでに定義済です。 編集するか、新しいものを作成してください。" + +#: ../../enterprise/include/class/SAP.app.php:195 +msgid "You must specify at last one SAP hostname." +msgstr "少なくとも 1つの SAP ホスト名を指定する必要があります。" + +#: ../../enterprise/include/class/SAP.app.php:206 +msgid "Discovery.Application.SAP" +msgstr "自動検出.アプリケーション.SAP" + +#: ../../enterprise/include/class/SAP.app.php:262 +msgid "Failed to find discovery SAP task." +msgstr "自動検出 SAP タスクを見つけられませんでした。" + +#: ../../enterprise/include/class/SAP.app.php:286 +msgid "Select at least a module." +msgstr "少なくとも一つのモジュールを選択してください。" + +#: ../../enterprise/include/class/SAP.app.php:354 +msgid "SAP R3" +msgstr "SAP R3" + +#: ../../enterprise/include/class/SAP.app.php:547 +msgid "SAP Hostname" +msgstr "SAP ホスト名" + +#: ../../enterprise/include/class/SAP.app.php:571 +msgid "SAP Client" +msgstr "SAP クライアント" + +#: ../../enterprise/include/class/SAP.app.php:585 +msgid "SAP System Number" +msgstr "SAP システム番号" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "SAP Credentials" +msgstr "SAP 認証情報" + +#: ../../enterprise/include/class/SAP.app.php:617 +#: ../../enterprise/include/class/SAP.app.php:631 +msgid "Optional" +msgstr "オプション" + +#: ../../enterprise/include/class/SAP.app.php:727 +#: ../../include/functions_agents.php:4000 +msgid "SAP Login OK" +msgstr "SAP ログイン OK" + +#: ../../enterprise/include/class/SAP.app.php:728 +#: ../../include/functions_agents.php:4001 +msgid "SAP Dumps" +msgstr "SAP ダンプ" + +#: ../../enterprise/include/class/SAP.app.php:729 +#: ../../include/functions_agents.php:4002 +msgid "SAP lock entry list" +msgstr "SAP ロックエントリー一覧" + +#: ../../enterprise/include/class/SAP.app.php:730 +#: ../../include/functions_agents.php:4003 +msgid "SAP canceled Jobs" +msgstr "SAP キャンセルジョブ" + +#: ../../enterprise/include/class/SAP.app.php:731 +#: ../../include/functions_agents.php:4004 +msgid "SAP Batch inputs erroneous" +msgstr "SAPバッチ入力に誤りがあります" + +#: ../../enterprise/include/class/SAP.app.php:732 +#: ../../include/functions_agents.php:4005 +msgid "SAP IDOC erroneous" +msgstr "SAP IDOC に誤りがあります" + +#: ../../enterprise/include/class/SAP.app.php:733 +#: ../../include/functions_agents.php:4006 +msgid "SAP IDOC OK" +msgstr "SAP IDOC OK" + +#: ../../enterprise/include/class/SAP.app.php:734 +#: ../../include/functions_agents.php:4007 +msgid "SAP WP without active restart" +msgstr "アクティブな再起動なしの SAP WP" + +#: ../../enterprise/include/class/SAP.app.php:735 +#: ../../include/functions_agents.php:4008 +msgid "SAP WP stopped" +msgstr "SAP WP が停止しました" + +#: ../../enterprise/include/class/SAP.app.php:736 +#: ../../include/functions_agents.php:4009 +msgid "Average time of SAPGUI response" +msgstr "SAPGUI 応答の平均時間" + +#: ../../enterprise/include/class/SAP.app.php:737 +#: ../../include/functions_agents.php:4011 +msgid "Dialog Logged users" +msgstr "ダイアログログユーザ" + +#: ../../enterprise/include/class/SAP.app.php:738 +#: ../../include/functions_agents.php:4012 +msgid "TRFC in error" +msgstr "エラー TRFC" + +#: ../../enterprise/include/class/SAP.app.php:739 +#: ../../include/functions_agents.php:4013 +msgid "QRFC in error SMQ2" +msgstr "SMQ2 エラーの QRFC" + +#: ../../enterprise/include/class/SAP.app.php:740 +#: ../../include/functions_agents.php:4014 +msgid "Number of Update WPs in error" +msgstr "エラーアップデート WP 数" + +#: ../../enterprise/include/class/SAP.app.php:764 +#, php-format +msgid "" +"Module 180 must be customized before being used, please use advanced options to " +"define the module following the documentation:
    %s" +msgstr "" +"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを使用し" +"て、ドキュメントに従ってモジュールを定義してください。
    %s" + +#: ../../enterprise/include/class/SAP.app.php:785 +msgid "Available modules" +msgstr "存在するモジュール" + +#: ../../enterprise/include/class/SAP.app.php:821 +msgid "Add monitors" +msgstr "監視追加" + +#: ../../enterprise/include/class/SAP.app.php:834 +msgid "Remove monitors" +msgstr "監視削除" + +#: ../../enterprise/include/class/SAP.app.php:845 +#: ../../enterprise/operation/services/massive/services.create.php:1259 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:270 +#: ../../enterprise/operation/services/massive/service.create.elements.php:616 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:379 +msgid "Selected modules" +msgstr "選択したモジュール" + +#: ../../enterprise/include/class/SAP.app.php:885 +msgid "Define your custom SAP modules." +msgstr "カスタム SAP モジュールを定義してください。" + +#: ../../enterprise/include/class/SAP.app.php:884 +msgid "Advanced module configuration" +msgstr "高度なモジュール設定" + +#: ../../enterprise/include/class/SAP.app.php:894 +msgid "Custom module definitions" +msgstr "カスタムモジュール定義" + +#: ../../enterprise/include/class/SAP.app.php:895 +msgid "" +"Each line is a module definition using following format: module name ; module_type ; " +"SAP check definition." +msgstr "" +"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイプ ; SAP" +"チェック定義" + +#: ../../enterprise/include/class/Aws.cloud.php:118 +#: ../../include/class/CredentialStore.class.php:946 +msgid "Aws" +msgstr "AWS" + +#: ../../enterprise/include/class/Aws.cloud.php:343 +msgid "Recon" +msgstr "自動検出" + +#: ../../enterprise/include/class/Aws.cloud.php:344 +msgid "Costs" +msgstr "コスト" + +#: ../../enterprise/include/class/Aws.cloud.php:346 +msgid "Instances" +msgstr "インスタンス" + +#: ../../enterprise/include/class/Aws.cloud.php:441 +msgid "Amazon EC2" +msgstr "Amazon EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:446 +msgid "Amazon RDS" +msgstr "Amazon RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:451 +msgid "S3 Buckets" +msgstr "S3 バケット" + +#: ../../enterprise/include/class/Aws.cloud.php:471 +#: ../../godmode/wizards/HostDevices.class.php:696 +msgid "NetScan" +msgstr "ネットスキャン" + +#: ../../enterprise/include/class/Aws.cloud.php:510 +msgid "Discovery task name" +msgstr "自動検出タスク名" + +#: ../../enterprise/include/class/Aws.cloud.php:614 +msgid "Total cost" +msgstr "全体のコスト" + +#: ../../enterprise/include/class/Aws.cloud.php:631 +msgid "Cost by region" +msgstr "リージョンごとのコスト" + +#: ../../enterprise/include/class/Aws.cloud.php:645 +msgid "Cost interval" +msgstr "コスト間隔" + +#: ../../enterprise/include/class/Aws.cloud.php:773 +msgid "Select EC2 instances" +msgstr "EC2 インスタンスの選択" + +#: ../../enterprise/include/class/Aws.cloud.php:789 +msgid "Storage" +msgstr "ストレージ" + +#: ../../enterprise/include/class/Aws.cloud.php:799 +msgid "Elastic IP Adresses" +msgstr "Elastic IP アドレス" + +#: ../../enterprise/include/class/Aws.cloud.php:982 +msgid "You must select at least one RDS instance." +msgstr "少なくとも一つの RDS インスタンスを選択する必要があります。" + +#: ../../enterprise/include/class/Aws.cloud.php:987 +msgid "" +"You cannot monitor RDS instances from different types. Please define several tasks " +"for several types." +msgstr "" +"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対してそ" +"れぞれのタスクを定義してください。" + +#: ../../enterprise/include/class/Aws.cloud.php:994 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "自動検出.クラウド.AWS.RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1160 +msgid "RDS" +msgstr "RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1165 +msgid "DB monitoring" +msgstr "DB 監視" + +#: ../../enterprise/include/class/Aws.cloud.php:1175 +msgid "AWS RDS" +msgstr "AWS RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1249 +msgid "Global DB User" +msgstr "グローバル DB ユーザ" + +#: ../../enterprise/include/class/Aws.cloud.php:1259 +msgid "Global DB password" +msgstr "グローバル DB パスワード" + +#: ../../enterprise/include/class/Aws.cloud.php:1349 +msgid "Select RDS instances" +msgstr "RDS インスタンスの選択" + +#: ../../enterprise/include/class/Aws.cloud.php:1652 +msgid "Invalid group" +msgstr "不正なグループ" + +#: ../../enterprise/include/class/Aws.cloud.php:1710 +msgid "Cannot update the recon database" +msgstr "自動検出データベースを更新できません" + +#: ../../enterprise/include/class/Aws.cloud.php:1732 +msgid "Engine not supported" +msgstr "エンジンがサポートされていません" + +#: ../../enterprise/include/class/MySQL.app.php:173 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create a new one." +msgstr "この MySQL 設定は既に定義済です。編集または新規作成してください。" + +#: ../../enterprise/include/class/MySQL.app.php:216 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "正しい MySQL サーバ IP または FQDN を設定する必要があります。" + +#: ../../enterprise/include/class/MySQL.app.php:221 +msgid "You must provide a valid port number." +msgstr "正しいポート番号を設定する必要があります。" + +#: ../../enterprise/include/class/MySQL.app.php:233 +msgid "Discovery.Application.MySQL" +msgstr "自動検出.アプリケーション.MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:285 +msgid "Failed to find discovery MySQL task." +msgstr "自動検出 MySQL タスクを見つけられませんでした。" + +#: ../../enterprise/include/class/MySQL.app.php:491 +msgid "MySQL server IP" +msgstr "MySQL サーバ IP" + +#: ../../enterprise/include/class/MySQL.app.php:492 +msgid "Comma separated, as many targets as you need." +msgstr "寒波区切りで、必要な数の対象。" + +#: ../../enterprise/include/class/MySQL.app.php:511 +msgid "MySQL server Port" +msgstr "MySQL サーバポート" + +#: ../../enterprise/include/class/MySQL.app.php:657 +msgid "" +"Defines a target agent where this task will store data detected, if you have defined " +"multiple targets, define a comma separated list of names here or leave in blank to " +"use server IP address/ FQDN." +msgstr "" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定義した" +"場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレス/ FQDN を使用す" +"るために空白のままにします。" + +#: ../../enterprise/include/class/MySQL.app.php:698 +msgid "Scan databases" +msgstr "データベーススキャン" + +#: ../../enterprise/include/class/MySQL.app.php:714 +msgid "Create agent per database" +msgstr "データベースごとにエージェントを作成" + +#: ../../enterprise/include/class/MySQL.app.php:735 +msgid "Custom database agent prefix" +msgstr "カスタムデータベースエージェントプレフィックス" + +#: ../../enterprise/include/class/MySQL.app.php:736 +msgid "" +"Defines a custom prefix to be concatenated before database agent names generated by " +"this task." +msgstr "" +"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタムプレ" +"フィックスを定義します。" + +#: ../../enterprise/include/class/MySQL.app.php:757 +#: ../../enterprise/include/class/Oracle.app.php:680 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 +msgid "Check engine uptime" +msgstr "エンジンの起動時間確認" + +#: ../../enterprise/include/class/MySQL.app.php:773 +#: ../../enterprise/include/class/Oracle.app.php:696 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 +msgid "Retrieve query statistics" +msgstr "クエリ統計の取得" + +#: ../../enterprise/include/class/MySQL.app.php:789 +#: ../../enterprise/include/class/Oracle.app.php:712 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 +msgid "Analyze connections" +msgstr "接続分析" + +#: ../../enterprise/include/class/MySQL.app.php:805 +msgid "Retrieve InnoDB statistics" +msgstr "InnoDB 統計の取得" + +#: ../../enterprise/include/class/Google.cloud.php:147 +#: ../../include/class/CredentialStore.class.php:949 +msgid "Google" +msgstr "Google" + +#: ../../enterprise/include/class/Google.cloud.php:301 +msgid "Compute Engine" +msgstr "コンピュートエンジン" + +#: ../../enterprise/include/class/Google.cloud.php:877 +msgid "This options only applies to zone (region) agents." +msgstr "このオプションはゾーン(リージョン)エージェントにのみ適用されます。" + +#: ../../enterprise/include/class/Google.cloud.php:890 +msgid "Scan and general monitoring" +msgstr "スキャンおよび一般的な監視" + +#: ../../enterprise/include/class/Google.cloud.php:903 +msgid "CPU performance summary" +msgstr "CPU パフォーマンス概要" + +#: ../../enterprise/include/class/Oracle.app.php:172 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create a new " +"one." +msgstr "この Oracle 設定はすでに定義済です。 編集するか、新しいものを作成してください。" + +#: ../../enterprise/include/class/Oracle.app.php:214 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "正しい Oracle サーバ IP または FQDN を設定する必要があります。" + +#: ../../enterprise/include/class/Oracle.app.php:226 +msgid "Discovery.Application.Oracle" +msgstr "自動検出.アプリケーション.Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:277 +msgid "Failed to find discovery Oracle task." +msgstr "自動検出 Oracle タスクを見つけられませんでした。" + +#: ../../enterprise/include/class/Oracle.app.php:493 +msgid "Oracle target strings" +msgstr "Oracle 対象文字列" + +#: ../../enterprise/include/class/Oracle.app.php:494 +msgid "SERVER:PORT/SID, comma separated or line by line, as many targets as you need." +msgstr "SERVER:PORT/SID で、カンマ区切り、または行ごとに必要な数の対象を定義。" + +#: ../../enterprise/include/class/Oracle.app.php:728 +msgid "Calculate fragmentation ratio" +msgstr "断片化率の計算" + +#: ../../enterprise/include/class/Oracle.app.php:744 +msgid "Monitor tablespaces" +msgstr "テーブルスペース監視" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 +msgid "" +"This Microsoft SQL Server configuration has been already defined. Please edit it or " +"create a new one." +msgstr "" +"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成してく" +"ださい。" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 +msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." +msgstr "正しい Microsoft SQL Server の IP または FQDN を指定する必要があります。" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 +msgid "Failed to find discovery Microsoft SQL Server task." +msgstr "自動検出 Microsoft SQL Server タスクを見つけられませんでした。" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 +msgid "Microsoft SQL Server targets" +msgstr "対象の Microsoft SQL Server" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +msgid "" +"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you need." +msgstr "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 +msgid "Alert not found." +msgstr "アラートが見つかりません。" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 +msgid "Invalid json data" +msgstr "不正な json データ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 +msgid "Rules updated." +msgstr "ルールを更新しました。" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 +msgid "JSON decoding error. Please call support." +msgstr "JSON デコードエラー: サポートに問い合わせてください。" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 +msgid "There was a problem creating Action. You must select an action" +msgstr "アクション作成で問題が発生しました。アクションを選択する必要があります。" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898 +msgid "Pass" +msgstr "Pass" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 +msgid "Drop" +msgstr "Drop" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 +msgid "Module alert" +msgstr "モジュールアラート" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:945 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 +msgid "Load from template" +msgstr "テンプレートから読み込む" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:962 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2241 +#: ../../godmode/alerts/configure_alert_template.php:625 +#: ../../godmode/alerts/alert_view.php:258 +msgid "Use special days list" +msgstr "特別日一覧を利用する" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:979 +#: ../../godmode/alerts/configure_alert_template.php:661 +msgid "Schedule" +msgstr "スケジュール" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:982 +#: ../../godmode/alerts/configure_alert_template.php:665 +msgid "No alert has been scheduled yet" +msgstr "アラートがスケジューリングされていません" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1004 +msgid "Execute alert" +msgstr "アラート実行" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1007 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3501 +msgid "from" +msgstr "開始" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1027 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3519 +msgid "times in" +msgstr "時間範囲" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1037 +msgid "threshold" +msgstr "しきい値" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Rule evaluation mode" +msgstr "ルール評価モード" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" +"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止します。" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1064 +msgid "Grouped by" +msgstr "グループ化:" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 +msgid "" +"The templates shown are only for correlative alerts, event alert (legacy) will be " +"deprecated in the future" +msgstr "" +"表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)は将来非" +"推奨になります" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213 +msgid "Available items" +msgstr "存在するアイテム" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 +msgid "Block" +msgstr "ブロック" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +msgid "Log content" +msgstr "ログの内容" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +msgid "Log source" +msgstr "ログソース" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +msgid "Log agent" +msgstr "ログエージェント" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1330 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +msgid "Event content" +msgstr "イベントの内容" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1335 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +msgid "Event user comment" +msgstr "イベントユーザコメント" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1340 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +msgid "Event agent" +msgstr "イベントエージェント" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1345 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +msgid "Event module" +msgstr "イベントモジュール" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1350 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +msgid "Event module alerts" +msgstr "イベントモジュールアラート" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1355 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +msgid "Event group" +msgstr "イベントグループ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1361 +msgid "Event group (recursive)" +msgstr "イベントグループ(再帰)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1367 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +msgid "Event severity" +msgstr "イベント重要度" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1372 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +msgid "Event tag" +msgstr "イベントタグ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1377 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +msgid "Event user" +msgstr "イベントユーザ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1407 +msgid "Operators" +msgstr "演算子" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1412 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1456 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +msgid "greater than" +msgstr "より大きい" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1417 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1460 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +msgid "less than" +msgstr "より小さい" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1422 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +msgid "greater or equal than" +msgstr "より大きいか等しい" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1427 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1468 +msgid "less or equal than" +msgstr "次より小さいか等しい: " + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1432 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1472 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +msgid "is equal" +msgstr "同じ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1437 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1476 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +msgid "is different" +msgstr "異なる" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1442 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1480 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +msgid "is like (regex)" +msgstr "一致 (正規表現)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1484 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +msgid "is not like (regex)" +msgstr "不一致 (正規表現)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1517 +msgid "Modifiers" +msgstr "修飾子" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1522 +msgid "within an interval (seconds)" +msgstr "間隔内 (秒)" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1527 +msgid "repeated at least" +msgstr "繰り返された最低数" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1567 +msgid "Matches on both true" +msgstr "両方が真の時にマッチ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1573 +msgid "Matches when any is false" +msgstr "いずれかが偽の時にマッチ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1579 +msgid "Matches on any true" +msgstr "いずれかが真の時にマッチ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1585 +msgid "Matches when both are false" +msgstr "両方が偽の時にマッチ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1591 +msgid "Matches when only one is true" +msgstr "一つだけ真の時にマッチ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1597 +msgid "Matches when both are either true or false" +msgstr "両方が真または偽の時にマッチ" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1633 +msgid "Rule definition" +msgstr "ルール定義" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +msgid "Remove rule" +msgstr "ルール削除" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1933 +msgid "Remove item" +msgstr "アイテム削除" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1954 +#: ../../operation/agentes/estado_monitores.php:602 +msgid "Reset" +msgstr "リセット" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2048 +#: ../../godmode/alerts/configure_alert_template.php:897 +msgid "Alert recovery" +msgstr "復旧アラート" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2076 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2733 +#: ../../godmode/alerts/alert_commands.php:101 +#: ../../godmode/alerts/alert_commands.php:106 +#: ../../godmode/alerts/alert_commands.php:122 +#: ../../godmode/alerts/alert_commands.php:128 +#: ../../godmode/alerts/configure_alert_template.php:928 +#: ../../godmode/alerts/alert_view.php:484 ../../godmode/alerts/alert_view.php:603 +#, php-format +msgid "Field %s" +msgstr "フィールド %s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2088 +#, php-format +msgid "Recovery Field %s" +msgstr "復旧フィールド %s" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2157 +msgid "Triggering Condition" +msgstr "発報条件" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../godmode/alerts/alert_view.php:266 +msgid "Number of alerts" +msgstr "アラート数" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2338 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2601 +#: ../../godmode/alerts/configure_alert_action.php:305 +#: ../../godmode/alerts/alert_view.php:403 +msgid "Firing" +msgstr "障害通知" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2453 +msgid "There are no defined actions for this alert" +msgstr "このアラートには定義済のアクションがありません" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3498 +msgid "Number of alerts match" +msgstr "アラートマッチ数" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../godmode/alerts/alert_view.php:404 +msgid "Recovering" +msgstr "リカバリ中" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2619 +msgid "Select the desired action and mode to view the Triggering fields for this action" +msgstr "目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2636 +#: ../../godmode/alerts/alert_view.php:395 +msgid "Select the action" +msgstr "アクションを選択" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2694 +#: ../../godmode/alerts/configure_alert_template.php:918 +#: ../../godmode/alerts/alert_view.php:435 ../../godmode/alerts/alert_view.php:569 +msgid "Firing fields" +msgstr "発報フィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 +#: ../../godmode/alerts/alert_view.php:437 +msgid "Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"アラートが発報されたときに、このアクションによって実行されるコマンドに渡されるフィール" +"ド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2700 +#: ../../godmode/agentes/fields_manager.php:119 ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:564 ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "フィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 +#: ../../godmode/alerts/alert_view.php:443 ../../godmode/alerts/alert_view.php:566 +msgid "Fields configured on the command associated to the action" +msgstr "アクションに関連付けられたコマンドで設定されたフィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2705 +msgid "Alerts fields" +msgstr "アラートフィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +msgid "Triggering fields configured in Alerts" +msgstr "アラートで設定された発報フィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2710 +#: ../../godmode/alerts/alert_view.php:451 +msgid "Action fields" +msgstr "アクションフィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 +#: ../../godmode/alerts/alert_view.php:453 +msgid "Triggering fields configured in action" +msgstr "アクションで設定したトリガーフィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2715 +#: ../../godmode/alerts/alert_view.php:457 +msgid "Executed on firing" +msgstr "発報時の実行" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 +#: ../../godmode/alerts/alert_view.php:459 ../../godmode/alerts/alert_view.php:571 +msgid "Fields used on execution when the alert is fired" +msgstr "アラートが発報したときに実行に使われるフィールド" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2766 +msgid "Correlated alerts" +msgstr "関連付け" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2790 +msgid "Alert succesfully deleted" +msgstr "アラートを削除しました" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 +msgid "Alerts validated" +msgstr "アラートを承諾しました" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +msgid "Failed to process validation" +msgstr "承諾処理に失敗しました" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 +msgid "Matched" +msgstr "マッチしました" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 +#: ../../godmode/alerts/alert_list.list.php:147 ../../mobile/operation/alerts.php:66 +#: ../../include/functions_reporting_html.php:2490 +#: ../../include/functions_reporting_html.php:3344 +#: ../../include/functions_reporting_html.php:3345 +#: ../../operation/agentes/alerts_status.functions.php:97 +#: ../../operation/snmpconsole/snmp_view.php:229 +#: ../../operation/snmpconsole/snmp_view.php:1254 +msgid "Fired" +msgstr "通知済" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2970 +#: ../../enterprise/include/class/CommandCenter.class.php:329 +msgid "Sort elements" +msgstr "要素の並べ替え" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3015 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 +msgid "No associated actions" +msgstr "関連アクションがありません" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3049 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3065 +msgid "Add Actions" +msgstr "アクション追加" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3120 +msgid "There are no defined correlated alerts" +msgstr "定義済の相関アラートがありません" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3256 +msgid "Are you sure you want to disable the alert" +msgstr "アラートを無効化してよろしいですか" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +msgid "Are you sure you want to enable the alert" +msgstr "アラートを有効化してよろしいですか" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 +msgid "Disabled Alert" +msgstr "無効化アラート" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3311 +#: ../../godmode/alerts/alert_list.list.php:154 ../../mobile/operation/alerts.php:74 +#: ../../operation/agentes/alerts_status.functions.php:103 +msgid "Standby off" +msgstr "非スタンバイ状態" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3312 +msgid "Are you sure you want to standby the alert" +msgstr "アラートをスタンバイにしてよろしいですか" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3317 +#: ../../enterprise/operation/agentes/policy_view.php:292 +#: ../../godmode/alerts/alert_list.list.php:153 ../../mobile/operation/alerts.php:73 +#: ../../include/functions_ui.php:1155 +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Standby on" +msgstr "スタンバイ状態" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 +msgid "Are you sure you want to activate the alert" +msgstr "アラートを有効化してよろしいですか" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3327 +msgid "Standby Alert" +msgstr "スタンバイアラート" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3399 +msgid "Delete Actions" +msgstr "アクション削除" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3578 +msgid "Successfully added action" +msgstr "アクションを追加しました" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3616 +msgid "Successfully delete action" +msgstr "アクションを削除しました" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4029 +msgid "Choosetime" +msgstr "時間選択" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4236 +msgid "Drop Here" +msgstr "ここにドロップしてください" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4294 +#: ../../godmode/alerts/configure_alert_template.php:1495 +msgid "Simple" +msgstr "シンプル" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4295 +#: ../../godmode/alerts/configure_alert_template.php:1496 +msgid "Detailed" +msgstr "詳細" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4350 +#: ../../godmode/alerts/configure_alert_template.php:1551 +msgid "Drag out to remove" +msgstr "削除にはドラッグアウトします" + +#: ../../enterprise/include/class/CommandCenter.class.php:146 +msgid "Command center" +msgstr "コマンドセンター" + +#: ../../enterprise/include/class/CommandCenter.class.php:160 +msgid "Could not be start merge process, no nodes in the metaconsole " +msgstr "マージ処理を開始できませんでした。メタコンソールにノードがありません " + +#: ../../enterprise/include/class/CommandCenter.class.php:169 +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "メタコンソール" + +#: ../../enterprise/include/class/CommandCenter.class.php:265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 +msgid "" +"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in php." +"ini." +msgstr "" +"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に設定して" +"ください。" + +#: ../../enterprise/include/class/CommandCenter.class.php:312 +msgid "Nodes priority order" +msgstr "ノード優先順位" + +#: ../../enterprise/include/class/CommandCenter.class.php:366 +msgid "Unify databases" +msgstr "データベース統合" + +#: ../../enterprise/include/class/CommandCenter.class.php:383 +msgid "merge process" +msgstr "マージ処理" + +#: ../../enterprise/include/class/CommandCenter.class.php:391 +msgid "Process detail of node" +msgstr "ノードの処理詳細" + +#: ../../enterprise/include/class/CommandCenter.class.php:392 +msgid "Errors of node" +msgstr "ノードのエラー" + +#: ../../enterprise/include/class/CommandCenter.class.php:421 +msgid "Unexpected end of process" +msgstr "処理の予期しない終了" + +#: ../../enterprise/include/class/CommandCenter.class.php:422 +msgid "Please retry" +msgstr "再試行してください" + +#: ../../enterprise/include/class/CommandCenter.class.php:443 +msgid "Critical issues while merging" +msgstr "マージ中にクリティカルな問題が発生" + +#: ../../enterprise/include/class/CommandCenter.class.php:444 +msgid "Please restore your backups" +msgstr "バックアップをリストアしてください" + +#: ../../enterprise/include/class/CommandCenter.class.php:452 +#: ../../include/functions_ui.php:6625 +msgid "Query" +msgstr "クエリ" + +#: ../../enterprise/include/class/CommandCenter.class.php:453 +#: ../../include/lib/Dashboard/Widgets/service_view.php:245 +msgid "Table" +msgstr "表" + +#: ../../enterprise/include/class/CommandCenter.class.php:454 +#: ../../include/class/Heatmap.class.php:743 ../../general/reporting_console_node.php:65 +msgid "Info" +msgstr "情報" + +#: ../../enterprise/include/class/CommandCenter.class.php:455 +#: ../../enterprise/include/class/CommandCenter.class.php:1126 +msgid "Error message" +msgstr "エラーメッセージ" + +#: ../../enterprise/include/class/CommandCenter.class.php:457 +msgid "Process details" +msgstr "処理詳細" + +#: ../../enterprise/include/class/CommandCenter.class.php:458 +msgid "" +"System is not unified yet, something is wrong, please troubleshoot the errors and " +"retry the merge process. Your data have not been modified." +msgstr "" +"システムはまだ統合されていません。何らかの問題があります。エラーのトラブルシューティン" +"グを行い、マージ処理を再試行してください。 データは変更されていません。" + +#: ../../enterprise/include/class/CommandCenter.class.php:459 +msgid "Errors while merging" +msgstr "マージ中にエラー" + +#: ../../enterprise/include/class/CommandCenter.class.php:460 +msgid "The process has been completed correctly" +msgstr "処理が正しく完了しました" + +#: ../../enterprise/include/class/CommandCenter.class.php:461 +#: ../../enterprise/include/functions_login.php:145 +#: ../../include/class/Diagnostics.class.php:1818 +msgid "Successfully" +msgstr "正常に終了" + +#: ../../enterprise/include/class/CommandCenter.class.php:462 +msgid "System is merging your environment, please wait" +msgstr "システムは環境をマージしています。お待ちください。" + +#: ../../enterprise/include/class/CommandCenter.class.php:464 +#: ../../enterprise/include/class/CommandCenter.class.php:891 +msgid "Initialice merge" +msgstr "マージの初期化" + +#: ../../enterprise/include/class/CommandCenter.class.php:465 +#: ../../enterprise/include/class/CommandCenter.class.php:897 +msgid "Apply merge" +msgstr "マージを適用" + +#: ../../enterprise/include/class/CommandCenter.class.php:466 +msgid "Finished merge" +msgstr "完了したマージ" + +#: ../../enterprise/include/class/CommandCenter.class.php:467 +#: ../../enterprise/include/class/CommandCenter.class.php:903 +msgid "Restore merge" +msgstr "マージのリストア" + +#: ../../enterprise/include/class/CommandCenter.class.php:469 +msgid "Succesfully" +msgstr "正常終了" + +#: ../../enterprise/include/class/CommandCenter.class.php:470 +msgid "Pending operations" +msgstr "保留中操作" + +#: ../../enterprise/include/class/CommandCenter.class.php:472 +msgid "Error. Synchronization aborted. Backup restored" +msgstr "エラー。同期が中止され、バックアップが復元されました" + +#: ../../enterprise/include/class/CommandCenter.class.php:542 +#: ../../enterprise/include/class/CommandCenter.class.php:548 +msgid "Update priority nodes" +msgstr "優先ノードを更新" + +#: ../../enterprise/include/class/CommandCenter.class.php:543 +msgid "Successfully updated priority order nodes" +msgstr "優先ノードの更新を完了しました" + +#: ../../enterprise/include/class/CommandCenter.class.php:549 +msgid "Could not be updated priority order nodes" +msgstr "優先ノードの更新ができませんでした" + +#: ../../enterprise/include/class/CommandCenter.class.php:565 +msgid "" +"By unifying databases all information across your infrastructure will be merged to " +"gain integrity" +msgstr "" +"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマージされ、" +"整合性が得られます" + +#: ../../enterprise/include/class/CommandCenter.class.php:578 +#: ../../enterprise/include/class/CommandCenter.class.php:588 +msgid "Blocked" +msgstr "ブロックされています" + +#: ../../enterprise/include/class/CommandCenter.class.php:579 +msgid "This process already running" +msgstr "この処理は既に動作中です" + +#: ../../enterprise/include/class/CommandCenter.class.php:589 +msgid "You cannot start a new merge because system is merging events data." +msgstr "システムがイベントデータをマージ中のため、新しいマージを開始できません。" + +#: ../../enterprise/include/class/CommandCenter.class.php:597 +msgid "Press OK button to start the process" +msgstr "処理を開始するには OK ボタンを押します" + +#: ../../enterprise/include/class/CommandCenter.class.php:599 +msgid "" +"There are backups from a previous merging process, are you sure you want to overwrite " +"those backups? Press OK button to ignore this message and start the process." +msgstr "" +"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書きしてもよ" +"ろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタンを押してくださ" +"い。" + +#: ../../enterprise/include/class/CommandCenter.class.php:647 +msgid "System is merging events..." +msgstr "システムはイベントをマージしています..." + +#: ../../enterprise/include/class/CommandCenter.class.php:654 +msgid "System pandoradb is running..." +msgstr "システム pandoradb が実行されています..." + +#: ../../enterprise/include/class/CommandCenter.class.php:661 +msgid "Already working..." +msgstr "すでに動作中です..." + +#: ../../enterprise/include/class/CommandCenter.class.php:767 +#: ../../enterprise/include/class/CommandCenter.class.php:768 +msgid "Initilize" +msgstr "初期化" + +#: ../../enterprise/include/class/CommandCenter.class.php:873 +#: ../../enterprise/include/class/CommandCenter.class.php:1061 +msgid "Waiting" +msgstr "待機中" + +#: ../../enterprise/include/class/CommandCenter.class.php:880 +msgid "Process detail" +msgstr "処理詳細" + +#: ../../enterprise/include/class/CommandCenter.class.php:885 +msgid "Display errors" +msgstr "エラー表示" + +#: ../../enterprise/include/class/CommandCenter.class.php:916 +msgid "There are no nodes to do the merge process." +msgstr "マージ処理を行うノードがありません。" + +#: ../../enterprise/include/class/CommandCenter.class.php:1024 +msgid "merge events" +msgstr "マージイベント" + +#: ../../enterprise/include/class/CommandCenter.class.php:1067 +msgid "Retry process" +msgstr "処理の再試行" + +#: ../../enterprise/include/class/CommandCenter.class.php:1072 +msgid "Display events errors" +msgstr "イベントエラー表示" + +#: ../../enterprise/include/class/CommandCenter.class.php:1085 +msgid "Events History" +msgstr "ヒストリイベント" + +#: ../../enterprise/include/class/CommandCenter.class.php:1147 +msgid "merge process events" +msgstr "マージ処理イベント" + +#: ../../enterprise/include/class/ManageBackups.class.php:106 +#, php-format +msgid "%s database backup manager" +msgstr "%s データベースバックアップ管理" + +#: ../../enterprise/include/class/ManageBackups.class.php:117 +#: ../../include/class/AuditLog.class.php:145 +msgid "Admin Tools" +msgstr "管理ツール" + +#: ../../enterprise/include/class/ManageBackups.class.php:121 +#: ../../enterprise/operation/menu.php:200 +msgid "DB Backup Manager" +msgstr "DB バックアップ管理" + +#: ../../enterprise/include/class/ManageBackups.class.php:129 +#, php-format +msgid "To schedule a periodic (or one-time) backup task you can do it through %s." +msgstr "定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" + +#: ../../enterprise/include/class/ManageBackups.class.php:164 +#: ../../extensions/files_repo/files_repo_list.php:57 +#: ../../godmode/events/event_responses.editor.php:130 +#: ../../include/functions_visual_map_editor.php:125 +#: ../../include/functions_visual_map_editor.php:178 +#: ../../include/functions_visual_map_editor.php:838 +#: ../../include/functions_visual_map_editor.php:933 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 +#: ../../include/rest-api/models/VisualConsole/Item.php:1991 +#: ../../include/functions_filemanager.php:606 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 +msgid "Size" +msgstr "サイズ" + +#: ../../enterprise/include/class/ManageBackups.class.php:189 +msgid "Path backups" +msgstr "バックアップパス" + +#: ../../enterprise/include/class/ManageBackups.class.php:314 +msgid "Rollback to this backup" +msgstr "このバックアップへロールバックする" + +#: ../../enterprise/include/class/ManageBackups.class.php:323 +msgid "Lost" +msgstr "失敗" + +#: ../../enterprise/include/class/ManageBackups.class.php:330 +msgid "In Progress" +msgstr "処理中" + +#: ../../enterprise/include/class/ManageBackups.class.php:361 +msgid "The backup was successfully deleted" +msgstr "バックアップを削除しました" + +#: ../../enterprise/include/class/ManageBackups.class.php:367 +msgid "Missed id parameter" +msgstr "ID パラメータがありません" + +#: ../../enterprise/include/class/ManageBackups.class.php:386 +msgid "Something was wrong with the rollback action." +msgstr "ロールバック処理で問題が発生しました。" + +#: ../../enterprise/include/class/ManageBackups.class.php:389 +msgid "Missed id parameter." +msgstr "ID パラメータがありません。" + +#: ../../enterprise/include/class/ManageBackups.class.php:424 +#: ../../include/class/AuditLog.class.php:376 +msgid "There is no additional information to display" +msgstr "表示する追加情報がありません:" + +#: ../../enterprise/include/class/ManageBackups.class.php:437 +msgid "" +"Are you sure you want to delete this database backup file? Once deleted you will not " +"be able to recover it." +msgstr "" +"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に戻すこ" +"とはできません。" + +#: ../../enterprise/include/class/ManageBackups.class.php:439 +msgid "Do you like perform a database restoration?" +msgstr "データベースの復元を実行しますか?" + +#: ../../enterprise/include/functions_enterprise.php:464 +msgid "Tree view by tags" +msgstr "タグごとのツリー表示" + +#: ../../enterprise/include/functions_enterprise.php:494 +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:496 +msgid "Problems with event days purge and event days that pass data to history DB." +msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" + +#: ../../enterprise/include/functions_enterprise.php:507 +msgid "" +"If days purge is less than history days pass to history db, you will have a problems " +"and you lost data. Recommended that days purge will more taller than days to history " +"DB" +msgstr "" +"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失します。" +"データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてください。" + +#: ../../enterprise/include/functions_enterprise.php:509 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "データの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" + +#: ../../enterprise/include/functions_reporting.php:93 +msgid "Advance options" +msgstr "拡張オプション" + +#: ../../enterprise/include/functions_reporting.php:117 +msgid "Templates list" +msgstr "テンプレート一覧" + +#: ../../enterprise/include/functions_reporting.php:152 +msgid "Templates Wizard" +msgstr "テンプレートウィザード" + +#: ../../enterprise/include/functions_reporting.php:1233 +msgid "Availability item created from wizard." +msgstr "ウィザードから作成された可用性アイテム" + +#: ../../enterprise/include/functions_reporting.php:1855 +#: ../../enterprise/include/functions_reporting.php:2894 +#: ../../enterprise/include/functions_reporting.php:3881 +#: ../../include/functions_reporting_html.php:548 +msgid "Max/Min Values" +msgstr "最大/最小値" + +#: ../../enterprise/include/functions_reporting.php:1857 +#: ../../enterprise/include/functions_reporting.php:2025 +#: ../../enterprise/include/functions_reporting.php:2896 +#: ../../enterprise/include/functions_reporting.php:3883 +#: ../../enterprise/include/functions_reporting.php:6133 +#: ../../include/functions_reporting_html.php:550 +msgid "SLA Compliance" +msgstr "SLA準拠" + +#: ../../enterprise/include/functions_reporting.php:1897 +#: ../../enterprise/include/functions_reporting.php:2950 +#: ../../enterprise/include/functions_reporting.php:3201 +#: ../../enterprise/include/functions_reporting.php:3938 +#: ../../enterprise/include/functions_reporting.php:4202 +#: ../../enterprise/include/functions_reporting.php:4853 +#: ../../include/functions_reporting_html.php:873 +#: ../../include/functions_reporting_html.php:4775 +msgid "Not Init" +msgstr "未初期化" + +#: ../../enterprise/include/functions_reporting.php:1904 +#: ../../enterprise/include/functions_reporting.php:2960 +#: ../../enterprise/include/functions_reporting.php:3948 +msgid "Planned Downtimes" +msgstr "計画停止" + +#: ../../enterprise/include/functions_reporting.php:1911 +msgid "Ignore time" +msgstr "除外時間" + +#: ../../enterprise/include/functions_reporting.php:1931 +msgid "SLA Compliance per days" +msgstr "日ごとの SLA 準拠" + +#: ../../enterprise/include/functions_reporting.php:2022 +msgid "Summary of SLA Failures" +msgstr "条件を満たさない SLA の概要" + +#: ../../enterprise/include/functions_reporting.php:2042 +#: ../../enterprise/include/functions_reporting.php:2043 +msgid "Out of SLA limits" +msgstr "SLA 制限外" + +#: ../../enterprise/include/functions_reporting.php:2048 +#: ../../enterprise/include/functions_reporting.php:2049 +msgid "IN of SLA limits" +msgstr "SLA 制限内" + +#: ../../enterprise/include/functions_reporting.php:2132 +#: ../../include/functions_reports.php:933 +msgid "Log report" +msgstr "ログレポート" + +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../include/functions_reports.php:932 +msgid "Log" +msgstr "ログ" + +#: ../../enterprise/include/functions_reporting.php:2494 +#: ../../enterprise/include/functions_reporting.php:3438 +#: ../../enterprise/include/functions_reporting.php:4413 +#: ../../include/functions_reporting.php:1005 ../../include/functions_reporting.php:8894 +msgid "There are no SLAs defined" +msgstr "SLA が定義されていません。" + +#: ../../enterprise/include/functions_reporting.php:2547 +#: ../../enterprise/include/functions_reporting.php:3491 +#: ../../enterprise/include/functions_reporting.php:4466 +#: ../../include/functions_reporting.php:1080 ../../include/functions_reporting.php:9272 +msgid "Inverse" +msgstr "反転" + +#: ../../enterprise/include/functions_reporting.php:2970 +#: ../../enterprise/include/functions_reporting.php:3211 +#: ../../enterprise/include/functions_reporting.php:3958 +msgid "Planned Downtime" +msgstr "計画停止" + +#: ../../enterprise/include/functions_reporting.php:3000 +msgid "T. Total" +msgstr "合計時間" + +#: ../../enterprise/include/functions_reporting.php:3001 +#: ../../enterprise/include/functions_reporting.php:3985 +msgid "T. OK" +msgstr "正常時間" + +#: ../../enterprise/include/functions_reporting.php:3002 +#: ../../enterprise/include/functions_reporting.php:3986 +msgid "T. Error" +msgstr "障害時間" + +#: ../../enterprise/include/functions_reporting.php:3003 +#: ../../enterprise/include/functions_reporting.php:3987 +msgid "T. Unknown" +msgstr "不明時間" + +#: ../../enterprise/include/functions_reporting.php:3004 +#: ../../enterprise/include/functions_reporting.php:3988 +msgid "T. Not_init" +msgstr "未初期化時間" + +#: ../../enterprise/include/functions_reporting.php:3005 +#: ../../enterprise/include/functions_reporting.php:3989 +msgid "T. Downtime" +msgstr "計画停止時間" + +#: ../../enterprise/include/functions_reporting.php:3006 +#: ../../enterprise/include/functions_reporting.php:3990 +msgid "SLA %" +msgstr "SLA %" + +#: ../../enterprise/include/functions_reporting.php:3196 +#: ../../enterprise/include/functions_reporting.php:4197 +#: ../../enterprise/include/functions_reporting.php:6198 +#: ../../enterprise/include/functions_services.php:1453 +#: ../../include/functions_reporting_html.php:868 +#: ../../include/functions_reporting_html.php:4770 +msgid "Unknow" +msgstr "不明" + +#: ../../enterprise/include/functions_reporting.php:3206 +#: ../../enterprise/include/functions_reporting.php:4207 +#: ../../enterprise/include/functions_reporting.php:6203 +#: ../../include/functions_reporting_html.php:878 +#: ../../include/functions_reporting_html.php:4780 +msgid "Downtimes" +msgstr "停止時間" + +#: ../../enterprise/include/functions_reporting.php:4212 +msgid "Ignore Planned Downtime" +msgstr "計画停止を無視" + +#: ../../enterprise/include/functions_reporting.php:4302 +#: ../../include/functions_reports.php:712 +msgid "Hourly S.L.A." +msgstr "1時間ごとの S.L.A." + +#: ../../enterprise/include/functions_reporting.php:4905 +msgid "Max/Min Critical" +msgstr "障害の最大/最小" + +#: ../../enterprise/include/functions_reporting.php:4906 +msgid "Max/Min Warning" +msgstr "警告の最大/最小" + +#: ../../enterprise/include/functions_reporting.php:4907 +msgid "Total checks ok/total" +msgstr "合計チェック ok/合計" + +#: ../../enterprise/include/functions_reporting.php:4908 +msgid "% time ok" +msgstr "% 時間 ok" + +#: ../../enterprise/include/functions_reporting.php:4926 +#: ../../include/functions_reporting_html.php:637 +#: ../../include/functions_reporting_html.php:676 +#: ../../include/functions_reporting_html.php:747 +#: ../../include/functions_reporting_html.php:825 +#: ../../include/functions_reporting_html.php:4229 +#: ../../include/functions_reporting_html.php:4376 +msgid "24 x 7" +msgstr "24時間365日" + +#: ../../enterprise/include/functions_reporting.php:4966 +#: ../../include/functions_reporting_html.php:582 +msgid "Global Time" +msgstr "グローバル時間" + +#: ../../enterprise/include/functions_reporting.php:4968 +msgid "Time Critical" +msgstr "障害時間" + +#: ../../enterprise/include/functions_reporting.php:5061 +#: ../../include/functions_reporting_html.php:615 +msgid "Checks Time" +msgstr "確認数" + +#: ../../enterprise/include/functions_reporting.php:5063 +msgid "Checks Critical" +msgstr "障害チェック" + +#: ../../enterprise/include/functions_reporting.php:5064 +#: ../../include/functions_reporting_html.php:4153 +msgid "Checks Warning" +msgstr "警告チェック" + +#: ../../enterprise/include/functions_reporting.php:5147 +#: ../../include/functions_reporting_html.php:805 +#: ../../include/functions_reporting_html.php:4418 +#: ../../include/functions_reporting_html.php:4968 +#: ../../include/functions_reporting_html.php:4971 +#: ../../include/functions_reporting.php:1650 ../../include/functions_reporting.php:3500 +msgid "There are no Agent/Modules defined" +msgstr "定義済のエージェント/モジュールがありません" + +#: ../../enterprise/include/functions_reporting.php:5583 +msgid "There are no SLAs defined." +msgstr "定義済のSLAがありません。" + +#: ../../enterprise/include/functions_reporting.php:5798 +#: ../../enterprise/include/functions_services.php:1368 +#: ../../enterprise/include/functions_services.php:1370 +#: ../../enterprise/include/functions_services.php:1404 +#: ../../enterprise/include/functions_services.php:1405 +#: ../../enterprise/include/functions_services.php:1407 +#: ../../enterprise/include/functions_services.php:1458 +#: ../../enterprise/include/functions_services.php:1460 +msgid "Nonexistent" +msgstr "なし" + +#: ../../enterprise/include/functions_reporting.php:6208 +msgid "Scheduled shutdow" +msgstr "計画停止" + +#: ../../enterprise/include/functions_reporting.php:6574 +#: ../../enterprise/include/functions_reporting.php:7464 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "エージェントグラフ(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7372 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "エージェントグラフ(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7819 +msgid "There is not data for the selected conditions" +msgstr "選択した状態のデータがありません" + +#: ../../enterprise/include/functions_reporting.php:8011 +#: ../../enterprise/include/functions_reporting.php:8077 +msgid "Template editor" +msgstr "テンプレート編集" + +#: ../../enterprise/include/functions_reporting.php:8140 +#: ../../enterprise/operation/reporting/custom_reporting.php:101 +msgid "ID Report" +msgstr "レポートID" + +#: ../../enterprise/include/functions_reporting.php:8208 +#: ../../enterprise/operation/reporting/custom_reporting.php:90 +#: ../../enterprise/operation/reporting/custom_reporting.php:164 +msgid "Send by email" +msgstr "Eメールで送信" + +#: ../../enterprise/include/functions_reporting.php:8296 +#: ../../enterprise/operation/reporting/custom_reporting.php:200 +msgid "Send by email " +msgstr "Eメールで送信 " + +#: ../../enterprise/include/functions_reporting.php:8337 +#: ../../include/functions_reports.php:643 +msgid "Simple baseline graph" +msgstr "シンプルベースライングラフ" + +#: ../../enterprise/include/functions_reporting.php:8507 +msgid "Configuration changes" +msgstr "設定変更" + +#: ../../enterprise/include/functions_reporting.php:8524 +msgid "No NCM capabilities detected" +msgstr "NCM 機能がありません" + +#: ../../enterprise/include/functions_enterprise_api.php:1119 +msgid "Is not metaconsole" +msgstr "メタコンソールではありません" + +#: ../../enterprise/include/functions_enterprise_api.php:2580 +msgid "Error getting alert actions." +msgstr "アラートアクション取得エラー" + +#: ../../enterprise/include/functions_enterprise_api.php:3553 +#: ../../enterprise/include/functions_enterprise_api.php:3607 +#, php-format +msgid "%d agents added to apply queue." +msgstr "適用キューへ %d エージェントを追加しました" + +#: ../../enterprise/include/functions_enterprise_api.php:3576 +#: ../../enterprise/include/functions_policies.php:4860 +#, php-format +msgid "Successfully applied to node %s." +msgstr "ノード %s へ適用しました。" + +#: ../../enterprise/include/functions_enterprise_api.php:3578 +#: ../../enterprise/include/functions_policies.php:4862 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "ノードへ適用しました: %s" + +#: ../../enterprise/include/functions_enterprise_api.php:3617 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "ポリシー ID %d はすでに適用保留中です。" + +#: ../../enterprise/include/functions_enterprise_api.php:3619 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "ポリシー ID %d は、すでにエージェント ID %d への適用保留中です。" + +#: ../../enterprise/include/functions_enterprise_api.php:4039 +#: ../../enterprise/include/functions_enterprise_api.php:4066 +msgid "" +"Error adding web analysis module to policy. Id_module_type is not correct for web " +"analysis modules." +msgstr "" +"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 Id_module_type が、" +"ウェブ分析モジュールに対して正しくありません。" + +#: ../../enterprise/include/functions_enterprise_api.php:4048 +msgid "" +"Network Module could not be added to policy. Id_module_type is not correct for " +"network modules." +msgstr "" +"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネットワーク" +"モジュールに対して正しくありません。" + +#: ../../enterprise/include/functions_enterprise_api.php:4057 +msgid "" +"Error adding web module to policy. Id_module_type is not correct for web modules." +msgstr "" +"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対して正し" +"くありません。" + +#: ../../enterprise/include/functions_enterprise_api.php:4078 +msgid "Error adding module to policy configuration_data is not a valid base64." +msgstr "ポリシーへのモジュール追加エラー。設定データが正しい base64 ではありません。" + +#: ../../enterprise/include/functions_enterprise_api.php:6079 +msgid "The agent could not be added to the policy." +msgstr "エージェントをポリシーに追加できませんでした。" + +#: ../../enterprise/include/functions_enterprise_api.php:6296 +#, php-format +msgid "Failed Updated remote config files %d" +msgstr "リモート設定ファイル %d の更新に失敗しました。" + +#: ../../enterprise/include/functions_enterprise_api.php:6306 +#, php-format +msgid "Updated remote config files: %d => %d" +msgstr "リモート設定ファイルを更新しました: %d -> %d" + +#: ../../enterprise/include/functions_services.php:108 +msgid "There is no information about" +msgstr "次に関する情報がありません: " + +#: ../../enterprise/include/functions_services.php:113 +msgid "Service does not exist." +msgstr "サービスがありません。" + +#: ../../enterprise/include/functions_services.php:125 +msgid "module that stores the service" +msgstr "サービスを保存するモジュール" + +#: ../../enterprise/include/functions_services.php:137 +msgid "module that stores SLA service" +msgstr "SLA サービスを保存するモジュール" + +#: ../../enterprise/include/functions_services.php:150 +msgid "agent that stores the service" +msgstr "サービスを保存するエージェント" + +#: ../../enterprise/include/functions_services.php:163 +msgid "agent that stores SLA service" +msgstr "SLA サービスを保存するエージェント" + +#: ../../enterprise/include/functions_services.php:184 +msgid "alert critical SLA service" +msgstr "SLA サービス障害アラート" + +#: ../../enterprise/include/functions_services.php:205 +msgid "alert warning service" +msgstr "サービス警告アラート" + +#: ../../enterprise/include/functions_services.php:226 +msgid "alert critical service" +msgstr "サービス障害アラート" + +#: ../../enterprise/include/functions_services.php:247 +msgid "alert unknown service" +msgstr "サービス不明アラート" + +#: ../../enterprise/include/functions_services.php:528 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "サービス %s のモジュール自動生成" + +#: ../../enterprise/include/functions_services.php:1432 +msgid "Normal (Alert)" +msgstr "正常 (アラート)" + +#: ../../enterprise/include/functions_services.php:1436 +msgid "Critical (Alert)" +msgstr "障害 (アラート)" + +#: ../../enterprise/include/functions_services.php:1444 +msgid "Warning (Alert)" +msgstr "警告 (アラート)" + +#: ../../enterprise/include/functions_services.php:1582 +msgid "There are no service elements defined" +msgstr "サービス要素が定義されていません" + +#: ../../enterprise/include/functions_services.php:1606 +msgid "Weight Critical" +msgstr "障害ウエイト" + +#: ../../enterprise/include/functions_services.php:1607 +msgid "Weight Warning" +msgstr "警告ウエイト" + +#: ../../enterprise/include/functions_services.php:1608 +msgid "Weight Unknown" +msgstr "不明ウエイト" + +#: ../../enterprise/include/functions_services.php:1609 +msgid "Weight Ok" +msgstr "正常ウエイト" + +#: ../../enterprise/include/functions_services.php:1672 +#: ../../enterprise/include/functions_services.php:1717 +#: ../../enterprise/include/functions_services.php:1785 +msgid "Nonexistent. This element should be deleted" +msgstr "存在しません。要素が削除されています。" + +#: ../../enterprise/include/functions_services.php:1700 +#: ../../enterprise/include/functions_services.php:1767 +#: ../../enterprise/include/functions_services.php:1813 +msgid "This element does not affect service weigth because is disabled." +msgstr "この要素は無効化されているためサービスのウエイトに影響しません。" + +#: ../../enterprise/include/functions_services.php:1828 +#, php-format +msgid "Dynamic element (%d) '%s' does not match any target" +msgstr "動的要素 (%d) '%s' は対象にマッチしません" + +#: ../../enterprise/include/functions_services.php:1837 +#, php-format +msgid "Dynamic element (%d) '%s' causes an error: %s" +msgstr "動的要素 (%d) '%s' でエラー発生: %s" + +#: ../../enterprise/include/functions_services.php:1849 +msgid "Dynamic element" +msgstr "動的要素" + +#: ../../enterprise/include/functions_services.php:1855 +#, php-format +msgid "agents like \"%s\"" +msgstr "次のエージェント: \"%s\"" + +#: ../../enterprise/include/functions_services.php:1860 +#, php-format +msgid "modules like \"%s\"" +msgstr "次のモジュール: \"%s\"" + +#: ../../enterprise/include/functions_services.php:1993 +msgid "NOT INITIALIZED" +msgstr "未初期化" + +#: ../../enterprise/include/functions_services.php:2027 +msgid "Delete service element" +msgstr "サービス要素削除" + +#: ../../enterprise/include/functions_services.php:2086 +msgid "FAIL" +msgstr "失敗" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "パスワードを変更する必要があります:" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "パスワードは、過去 3回と異なる必要があります。" + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "旧パスワード: " + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "新パスワード: " + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "確認: " + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "変更" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "ログインがブロックされました" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "ユーザがブロックされました。次の時間経過後に再度試してください: " + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr " 分" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "ログイン成功" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "パスワードを更新しました" + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "パスワードは、次と異なっている必要があります: " + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr " 回前までの変更" + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "パスワードは違うものでなければいけません" + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "パスワードが短すぎます" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "パスワードには数字を含めなければいけません" + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "パスワードには記号を含めなければいけません" + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "旧パスワードが不正です" + +#: ../../enterprise/include/functions_login.php:361 +msgid "Password confirm does not match" +msgstr "パスワード確認が一致しません" + +#: ../../enterprise/include/functions_login.php:368 +msgid "Password empty" +msgstr "パスワードが空です" + +#: ../../enterprise/include/functions_login.php:485 +#: ../../godmode/users/configure_user.php:1853 +#: ../../godmode/users/configure_user.php:1923 +#: ../../godmode/users/configure_user.php:1995 +#: ../../include/ajax/double_auth.ajax.php:252 +#: ../../include/ajax/double_auth.ajax.php:350 +#: ../../include/ajax/double_auth.ajax.php:396 +#: ../../include/ajax/double_auth.ajax.php:512 ../../operation/users/user_edit.php:1088 +#: ../../operation/users/user_edit.php:1154 ../../operation/users/user_edit.php:1225 +#: ../../general/register.php:154 ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "認証エラー" + +#: ../../enterprise/include/functions_login.php:492 +#: ../../godmode/users/configure_user.php:1860 +#: ../../godmode/users/configure_user.php:1930 +#: ../../include/ajax/double_auth.ajax.php:259 +#: ../../include/ajax/double_auth.ajax.php:357 +#: ../../include/ajax/double_auth.ajax.php:403 +#: ../../include/ajax/double_auth.ajax.php:520 ../../operation/users/user_edit.php:1095 +#: ../../operation/users/user_edit.php:1161 ../../general/register.php:161 +msgid "There was an error loading the data" +msgstr "データのロードでエラーが発生しました" + +#: ../../enterprise/include/functions_login.php:501 +#: ../../godmode/users/configure_user.php:1938 +#: ../../godmode/users/configure_user.php:2016 ../../operation/users/user_edit.php:1169 +#: ../../operation/users/user_edit.php:1245 ../../general/register.php:170 +msgid "Double autentication activation" +msgstr "二段階認証の有効化" + +#: ../../enterprise/include/lib/Agent.php:99 +msgid " error, invalid agent." +msgstr " エラー、不正なエージェント。" + +#: ../../enterprise/include/lib/Agent.php:677 +#, php-format +msgid "Log module \"%s\" does not exist" +msgstr "ログモジュール \"%s\" が存在しません" + +#: ../../enterprise/include/lib/Agent.php:699 +#, php-format +msgid "Plugin \"%s\" does not exist" +msgstr "プラグイン \"%s\" が存在しません" + +#: ../../enterprise/include/lib/Agent.php:831 +#, php-format +msgid "Log module \"%s\" does not exist, %s skipped" +msgstr "ログモジュール \"%s\" が存在しません。%s はスキップされました。" + +#: ../../enterprise/include/lib/Agent.php:866 +#, php-format +msgid "Plugin \"%s\" does not exist, %s skipped" +msgstr "プラグイン \"%s\" は存在しません。%s はスキップされました。" + +#: ../../enterprise/include/lib/Agent.php:937 +#, php-format +msgid "Log module %s already defined" +msgstr "ログモジュール %s はすでに定義済です" + +#: ../../enterprise/include/lib/Agent.php:954 +#, php-format +msgid "Invalid module type %s" +msgstr "不正なモジュールタイプ %s" + +#: ../../enterprise/include/lib/Agent.php:984 +#, php-format +msgid "Plugin %s already defined" +msgstr "プラグイン %s はすでに定義済です" + +#: ../../enterprise/include/lib/Agent.php:998 +msgid "Invalid plugin definition" +msgstr "不正なプラグイン定義" + +#: ../../enterprise/include/lib/NetworkManager.php:82 +#: ../../godmode/setup/setup_ehorus.php:111 ../../godmode/setup/setup_integria.php:566 +#: ../../operation/users/user_edit.php:738 ../../operation/users/user_edit.php:784 +msgid "Test" +msgstr "テスト" + +#: ../../enterprise/include/lib/NetworkManager.php:83 +msgid "Retrieve config" +msgstr "設定取得" + +#: ../../enterprise/include/lib/NetworkManager.php:84 +msgid "Restore backed up config" +msgstr "設定バックアップのリストア" + +#: ../../enterprise/include/lib/NetworkManager.php:86 +msgid "Send firmware" +msgstr "ファームウエア送信" + +#: ../../enterprise/include/lib/NetworkManager.php:88 +#: ../../godmode/setup/setup_general.php:408 +msgid "On demand" +msgstr "オンデマンド" + +#: ../../enterprise/include/lib/NetworkManager.php:93 +msgid "Executing test" +msgstr "テストの実行中" + +#: ../../enterprise/include/lib/NetworkManager.php:94 +msgid "Retrieving config" +msgstr "設定の取得中" + +#: ../../enterprise/include/lib/NetworkManager.php:95 +msgid "Restoring backup" +msgstr "バックアップのリストア中" + +#: ../../enterprise/include/lib/NetworkManager.php:96 +msgid "Retrieving firmware version" +msgstr "ファームウェアバージョンの取得中" + +#: ../../enterprise/include/lib/NetworkManager.php:97 +msgid "Sending firmware update" +msgstr "ファームウェアアップデートの送信中" + +#: ../../enterprise/include/lib/NetworkManager.php:98 +msgid "Executing custom script" +msgstr "カスタムスクリプト実行中" + +#: ../../enterprise/include/lib/NetworkManager.php:99 +msgid "Executing on demand script" +msgstr "オンデマンドスクリプトの実行中" + +#: ../../enterprise/include/lib/NetworkManager.php:186 +msgid "Montly" +msgstr "月次" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +msgid "There was a problem creating Action" +msgstr "アクション作成で問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:889 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:902 +msgid "There was a problem updating Action" +msgstr "アクションの更新で問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:938 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:952 +msgid "There was a problem deleting Action" +msgstr "アクション削除で問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +msgid "There was a problem standby alert" +msgstr "スタンバイアラートで問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +msgid "There was a problem standby off alert" +msgstr "アラートのスタンバイ解除で問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1045 +msgid "There was a problem enabled alert" +msgstr "アラート有効化で問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +msgid "There was a problem disabled alert" +msgstr "アラート無効化で問題が発生しました" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +msgid "Event group Recursive" +msgstr "イベントグループ再帰" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../include/functions_reporting_html.php:1051 +#: ../../include/functions_reporting_html.php:1317 +#: ../../include/functions_reporting_html.php:2537 +#: ../../operation/snmpconsole/snmp_view.php:865 +msgid "Count" +msgstr "回数" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +msgid "Time window" +msgstr "時刻ウィンドウ" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +msgid "Failed to cleanup old rules." +msgstr "古いルールのクリーンアップに失敗しました。" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#, php-format +msgid "Failed SQL: %s" +msgstr "失敗した SQL: %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#, php-format +msgid "Failed to apply rule: %s." +msgstr "ルール適用に失敗しました: %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +msgid "any" +msgstr "すべて" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 +msgid "No template assigned" +msgstr "テンプレートが割り当てられていません" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 +msgid "NCM Agent without template assigned." +msgstr "テンプレートが割り当てられていない NCM エージェント" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 +msgid "Current selected template does not match vendor configured." +msgstr "現在選択されているテンプレートが、設定されているベンダーと一致しません。" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 +msgid "Current selected template does not match model configured." +msgstr "現在選択されているテンプレートが、設定されているモデルと一致しません。" + +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 +#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 +#, php-format +msgid "No %s script available for this agent, check template %s" +msgstr "" +"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認してくだ" +"さい" + +#: ../../enterprise/include/lib/NetworkManager/Template.php:192 +msgid "Error linking script: " +msgstr "スクリプトリンクエラー: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "クラスタが見つかりません: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "クラスタエージェントが見つかりません: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "削除中にエラーです。理由: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "クラスタを削除しました" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "強制中にエラーです。理由: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "クラスタを強制しました。" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 +msgid "Not set" +msgstr "未設定" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 +msgid "Active-Active" +msgstr "アクティブ-アクティブ" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 +msgid "Active-Passive" +msgstr "アクティブ-スタンバイ" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "クラスタは定義済です。他の名前を利用してください。" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 +msgid "Cluster name" +msgstr "クラスタ名" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 +msgid "" +"An agent with the same name of the cluster will be created, as well a special service " +"with the same name" +msgstr "クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 +msgid "Cluster type" +msgstr "クラスタタイプ" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master member is " +"working" +msgstr "" +"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-スタン" +"バイクラスタでは、マスターのみが稼働しています" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 +msgid "Active - Active" +msgstr "アクティブ - アクティブ" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 +msgid "Active - Pasive" +msgstr "アクティブ - スタンバイ" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 +msgid "Target cluster agent will be stored under this group" +msgstr "対象のクラスタエージェントはこのグループに保存されます" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 +msgid "You must select a Prediction Server to perform all cluster status calculations" +msgstr "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1037 +msgid "critical if" +msgstr "次の場合に障害" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1046 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1069 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "% (またはそれ以上)のバランスモジュールがダウンしています。" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1085 +msgid "Please, set thresholds for all active-passive modules" +msgstr "全アクティブ - スタンバイモジュールのしきい値を設定してください" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1096 +msgid "Please, set thresholds for all active-active modules" +msgstr "全アクティブ - アクティブモジュールのしきい値を設定してください" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1201 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "このクラスタに重要な全アクティブ-スタンバイモジュールをチェックしてください" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1203 +msgid "" +"If a critical balanced module is going to critical status, then cluster will be " +"critical." +msgstr "クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。" + +#: ../../enterprise/include/lib/Service.php:152 +msgid "Service module does not match pointed one" +msgstr "サービスモジュールが指定のものと一致しません" + +#: ../../enterprise/include/lib/Service.php:158 +#, php-format +msgid "Service module not found %s
    " +msgstr "サービスモジュールが見つかりません %s
    " + +#: ../../enterprise/include/lib/Service.php:177 +msgid "Service module SLA not found" +msgstr "サービスモジュール SLA が見つかりません" + +#: ../../enterprise/include/lib/Service.php:183 +#, php-format +msgid "SLA service module not found %s
    " +msgstr "SLA サービスモジュールが見つかりません %s
    " + +#: ../../enterprise/include/lib/Service.php:202 +msgid "Service module SLA does not match pointed one" +msgstr "サービスモジュール SLA が指定のものと一致しません" + +#: ../../enterprise/include/lib/Service.php:208 +#, php-format +msgid "SLA service value module not found %s
    " +msgstr "SLA サービス値モジュールが見つかりません %s
    " + +#: ../../enterprise/include/lib/Service.php:221 +#, php-format +msgid "Service agent not found %s
    " +msgstr "サービスエージェントが見つかりません %s
    " + +#: ../../enterprise/include/lib/Service.php:232 +#, php-format +msgid "Service children could not be fully retrieved: %s
    " +msgstr "サービスの子を完全に取得できませんでした: %s
    " + +#: ../../enterprise/include/lib/Service.php:313 +msgid "" +" Cannot switch from SMART to MANUAL if there are dynamic elements attached to the " +"service. Please erase dynamic elements before change to MANUAL" +msgstr "" +" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 手動に変" +"更する前に、動的要素を消去してください" + +#: ../../enterprise/include/lib/Service.php:397 +#: ../../enterprise/include/lib/Service.php:740 +#: ../../enterprise/include/lib/Service.php:921 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1353 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 +#: ../../enterprise/include/lib/ServiceElement.php:390 +#: ../../enterprise/include/lib/ServiceElement.php:921 +#: ../../enterprise/include/lib/ServiceElement.php:963 +#: ../../enterprise/include/lib/ServiceElement.php:1005 +#: ../../enterprise/include/lib/ServiceElement.php:1111 +#: ../../enterprise/include/lib/ServiceElement.php:1153 ../../include/lib/Agent.php:349 +#: ../../include/lib/Module.php:1172 ../../include/lib/Entity.php:303 +#, php-format +msgid "Cannot connect to node %d" +msgstr "ノード %d へ接続できません" + +#: ../../enterprise/include/lib/Service.php:777 +#, php-format +msgid "Failed to update CPS for moduleValue for service %s: " +msgstr "サービス %s のモジュール値の CPS の更新に失敗しました: " + +#: ../../enterprise/include/lib/Service.php:1445 +msgid "Error: id agent must be defined." +msgstr "エラー: エージェント ID が定義されている必要があります。" + +#: ../../enterprise/include/lib/Service.php:1533 +msgid " error: Target agent does not exist." +msgstr " エラー: 対象のエージェントがありません。" + +#: ../../enterprise/include/lib/Core/SSH.php:163 +msgid "php-ssh2 not available" +msgstr "php-ssh2 がありません" + +#: ../../enterprise/include/lib/Core/SSH.php:184 +msgid "Failed to connect" +msgstr "接続に失敗しました" + +#: ../../enterprise/include/lib/Core/SSH.php:239 +#, php-format +msgid "Unable to open public key file %s" +msgstr "公開鍵ファイルを開けません %s" + +#: ../../enterprise/include/lib/Core/SSH.php:257 +msgid "Failed to login to target" +msgstr "対象へのログインに失敗しました" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:144 +msgid "auth error." +msgstr "認証エラー" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:148 +msgid "connection error." +msgstr "接続エラー" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:152 +msgid "could not resolve the host." +msgstr "ホストの名前解決ができませんでした。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:156 +#: ../../enterprise/include/lib/Metaconsole/Node.php:205 +#: ../../enterprise/include/lib/Metaconsole/Node.php:252 +#: ../../enterprise/include/lib/Metaconsole/Node.php:457 +msgid "unknown error." +msgstr "不明なエラー" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:193 +msgid "missing credentials." +msgstr "認証情報がありません。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:197 +msgid "cannot connect to host." +msgstr "ホストに接続できません。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:201 +msgid "database does not exist." +msgstr "データベースが存在しません。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:244 +msgid "failed to connect to node database." +msgstr "ノードデータベースへの接続に失敗しました。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:248 +msgid "MR version mistmatch." +msgstr "MR バージョン不一致" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:288 +msgid "agent cache failed" +msgstr "エージェントキャッシュに失敗しました" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:292 +#: ../../enterprise/include/lib/Metaconsole/Node.php:353 +msgid "unknown error" +msgstr "不明なエラー" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:341 +msgid "node is not recognized as metaconsole node." +msgstr "ノードはメタコンソールノードとして認識できません。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:345 +msgid "node license missmatch." +msgstr "ノードライセンス不整合" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:349 +msgid "cannot connect to node" +msgstr "ノードへ接続できません" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:381 +msgid "Database is up to date with this Metaconsole" +msgstr "このメタコンソールでデータベースは最新です" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:391 +msgid "Node not found" +msgstr "ノードが見つかりません" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:396 +#, php-format +msgid "There are %d queries pending to be applied, click in the eye to see results" +msgstr "" +"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認してくだ" +"さい" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:405 +msgid "Database synchronization state and pending tasks" +msgstr "データベース同期状態と保留中タスク" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:540 +msgid "Operation and table" +msgstr "操作とテーブル" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:655 +#, php-format +msgid "" +"Failed synchronizing %s, please check node PHP configuration issues and collection " +"max sizes" +msgstr "" +"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確認してく" +"ださい" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1173 +msgid "" +"The elimination of this node will lead to the suppression of its agents from " +"metaconsole and all the configuration assigned to them. " +msgstr "" +"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てられている" +"すべての設定が抑制されます。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1177 +msgid "The rules for this node may stop working. " +msgstr "このノードのルールが機能しなくなる可能性があります。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1181 +msgid "The deleted node will lose its license, and you must license it manually again. " +msgstr "" +"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があります。" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1685 +#, php-format +msgid "Failed to overwrite node data: %s" +msgstr "ノードデータの上書きに失敗しました: %s" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1703 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3008 +msgid "Final step" +msgstr "最終ステップ" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:1704 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3009 +msgid "Database merged" +msgstr "データベースをマージしました" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 +msgid "Activating node" +msgstr "ノードをアクティベート中" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:396 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:443 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:752 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1150 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1244 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1596 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1893 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2262 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3467 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3621 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3696 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3995 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4211 +msgid "Connect node" +msgstr "ノード接続" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:659 +msgid "Create table tmerge_error" +msgstr "テーブル tmerge_error を作成" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:685 +msgid "Create table tmerge_steps" +msgstr "テーブル tmerge_steps 作成" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:710 +msgid "Create table tmerge_queries" +msgstr "テーブル tmerge_queries 作成" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:851 +#, php-format +msgid "%s console" +msgstr "%s コンソール" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:856 +msgid "Check cron task" +msgstr "cron タスクチェック" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:857 +msgid "Please login into this node before using this feature" +msgstr "この機能を使う前にこのノードへログインしてください" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:939 +msgid "memory_limit current value" +msgstr "memory_limit 現在値" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:946 +msgid "Check current packages, all nodes and metaconsole, are not in the same version" +msgstr "" +"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンではありま" +"せん。" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 +msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" +msgstr "" +"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではありません。" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 +msgid "Max size collection, all nodes and metaconsole, are not equal" +msgstr "全ノードとメタコンソールで最大コレクションサイズが同じではありません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:995 +#, php-format +msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" +msgstr "" +"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010 +#, php-format +msgid "" +"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" +msgstr "" +"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより小さくす" +"ることはできません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1072 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1088 +msgid "Problems with the backup directory" +msgstr "バックアップディレクトリに問題があります" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1073 +msgid "Cannot create \"merge_backups\" folder in attachment directory" +msgstr "添付ファイルディレクトリに \"merge_backups\" フォルダを作成できません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1089 +msgid "The \"merge_backpus\" directory does not have the correct permissions" +msgstr "\"merge_backpus\" ディレクトリが正しいパーミッションではありません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1099 +msgid "Extension ZIP" +msgstr "拡張 ZIP" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 +msgid "The ZIP extension is not loaded, please install this dependency" +msgstr "ZIP 拡張機能がロードされていません。この依存ファイルをインストールしてください" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1201 +msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" +msgstr "バックアップの挿入、外部キーの無効化、tmerge_queries で例外発生" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1227 +msgid "Resets foreing keys and exceptions and ends the merge preparation process" +msgstr "外部キーと例外をリセットし、マージ準備処理を終了します" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1274 +msgid "Enable exceptions in tmerge_queries" +msgstr "tmerge_queries で例外を有効化" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1298 +msgid "Enable foreing keys in tmerge_queries" +msgstr "tmerge_queries で外部キーを有効化" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1577 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1862 +msgid "Preparation of all nodes for the table merge process" +msgstr "テーブルマージ処理のためのすべてのノードの準備" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1653 +msgid "This table does not have the id" +msgstr "このテーブルには id がありません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1654 +msgid "Prepare merge request" +msgstr "マージリクエストの準備" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1980 +msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" +msgstr "tmerge_queries の切り捨て、自動インクリメント、挿入" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2150 +msgid "Inserts updates in tmerge_queries" +msgstr "tmerge_queries へのインサート更新" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2187 +msgid "Merging collections files" +msgstr "コレクションファイルのマージ中" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2243 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2389 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2560 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 +#, php-format +msgid "Api call: %s" +msgstr "API 呼出: %s" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2301 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2302 +msgid "Problems while backing up collections from: " +msgstr "次のコレクションのバックアップで問題が発生しました: " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2319 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2323 +#, php-format +msgid "Problems downloading collections from %s" +msgstr "%s からのコレクションのダウンロードで問題が発生しました" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2335 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2339 +#, php-format +msgid "Problems unzipping collection file from %s" +msgstr "%s からのコレクションファイルの unzip で問題が発生しました" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2618 +msgid "Start phase merge" +msgstr "フェーズマージを開始" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 +msgid "Create backups" +msgstr "バックアップの作成" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2698 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2699 +msgid "Problems creating the backup conf agents" +msgstr "エージェント設定バックアップの作成で問題が発生しました" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2709 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2947 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3317 +msgid "Class agent" +msgstr "クラスエージェント" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2733 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2745 +msgid "Disable_foreing" +msgstr "強制を無効" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2757 +msgid "Truncate table" +msgstr "テーブルの切り捨て" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2775 +msgid "Autoincrement" +msgstr "自動インクリメント" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2787 +msgid "Inserts" +msgstr "挿入" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2805 +msgid "Disabling constraints" +msgstr "制約の無効化" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2823 +msgid "Updates" +msgstr "アップデート" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2846 +msgid "Restoring constraints" +msgstr "制約の復元" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2864 +msgid "Enable exceptions" +msgstr "例外の有効化" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2882 +msgid "Enable foreings keys" +msgstr "外部キーの有効化" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2899 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2900 +msgid "Update conf agent policies" +msgstr "エージェント設定ポリシーの更新" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2936 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2937 +msgid "Error updating agent conf" +msgstr "エージェント設定更新エラー" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2958 +msgid "Synchronizing collections" +msgstr "コレクションの同期中" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2970 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2971 +msgid "Error synchronizing collections" +msgstr "コレクションの同期エラー" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3067 +msgid "Problems unzipping collections at: " +msgstr "次のコレクションの unzip で問題が発生しました: " + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3068 +#, php-format +msgid "File is not a valid zip file \"%s\"" +msgstr "ファイルが正しい zip ファイルではありません \"%s\"" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3226 +msgid "Restoring database backup" +msgstr "データベースバックアップのリストア中" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3252 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4476 +msgid "Problems creating the backup" +msgstr "バックアップ作成で問題が発生しました" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3265 +msgid "Restore backups conf agents" +msgstr "エージェント設定バックアップのリストア" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3302 +msgid "Problems restoring the backup conf agents" +msgstr "エージェント設定バックアップのリストアで問題が発生しました" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3304 +#, php-format +msgid "Agent \"%s\" with md5 file \"%s\"" +msgstr "エージェント \"%s\" と md5 ファイル \"%s\"" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3330 +msgid "Restore collections" +msgstr "コレクションのリストア" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3345 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 +msgid "Error Synch collections" +msgstr "コレクション同期エラー" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3563 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3803 +msgid "Insert info steps" +msgstr "情報挿入ステップ" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3728 +msgid "Node not ready" +msgstr "ノードが準備できていません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3729 +msgid "Pending to be unified" +msgstr "統合待ち" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3962 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3967 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4019 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4024 +msgid "Initialize" +msgstr "初期化" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4158 +msgid "Backup" +msgstr "バックアップ" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4188 +msgid "Applying" +msgstr "適用中" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4407 +msgid "Error updating events" +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:548 +msgid "There was a problem creating RCMD" +msgstr "RCMD 作成で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:693 +#: ../../enterprise/include/lib/RCMDFile.class.php:717 +msgid "There was a problem deleting RCMD" +msgstr "RCMD 削除で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:865 +msgid "No agent configuration file" +msgstr "エージェント設定ファイルがありません" + +#: ../../enterprise/include/lib/RCMDFile.class.php:873 +msgid "you don't have write permissions in the configuration file" +msgstr "設定ファイルに書き込む権限がありません" + +#: ../../enterprise/include/lib/RCMDFile.class.php:914 +msgid "This agent is already a target" +msgstr "このエージェントはすでに対象です" + +#: ../../enterprise/include/lib/RCMDFile.class.php:945 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "このエージェント %s へアクセスする権限がありません" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1011 +msgid "There was a problem creating RCMD files" +msgstr "RCMD ファイルの作成で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1058 +msgid "There was a problem creating target" +msgstr "対象作成で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1092 +msgid "There was a problem adding items in the configuration file" +msgstr "設定ファイルへのアイテム追加で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1118 +#: ../../enterprise/include/lib/RCMDFile.class.php:1285 +msgid "No agent has been selected" +msgstr "エージェントが選択されていません" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1151 +msgid "Target doesn't exist" +msgstr "対象が存在しません" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1223 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "設定ファイル内のトークン削除で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1259 +msgid "There was a problem deleting target from DB" +msgstr "DB からの対象削除で問題が発生しました" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1417 +msgid "Yaml is empty" +msgstr "Yaml が空です" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1426 +msgid "Doesn't have a valid YAML format" +msgstr "正しい YAML フォーマットではありません" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1444 +#, php-format +msgid "%s field is not allowed" +msgstr "%s フィールドは許可されていません" + +#: ../../enterprise/include/lib/Policy/Inventory.php:156 +#, php-format +msgid "inventory module already registered: \"%d\"" +msgstr "インベントリモジュールはすでに登録済です: \"%d\"" + +#: ../../enterprise/include/lib/Policy/Inventory.php:181 +#, php-format +msgid "Failed to update, already exists: \"%d\"" +msgstr "更新に失敗しました。すでに存在します: \"%d\"" + +#: ../../enterprise/include/lib/Policy/Module.php:201 +#: ../../enterprise/include/lib/Policy.php:1196 ../../include/lib/Module.php:805 +#, php-format +msgid "Module already exists: \"%s\"" +msgstr "モジュールがすでに存在します: \"%s\"" + +#: ../../enterprise/include/lib/Policy/Module.php:227 +#, php-format +msgid "Failed to update: \"%s\"" +msgstr "更新に失敗しました: \"%s\"" + +#: ../../enterprise/include/lib/Policy/Queue.php:378 +#, php-format +msgid "Already queued in %s" +msgstr "%s にすでにキューイングされています" + +#: ../../enterprise/include/lib/ServiceElement.php:611 +#, php-format +msgid "This filters will cause slowdown on server (%s ms)" +msgstr "このフィルタはサーバの速度を低下させます (%s ms)" + +#: ../../enterprise/include/lib/ServiceElement.php:625 +#, php-format +msgid "Regular expression is not valid: %s." +msgstr "正規表現が正しくありません: %s" + +#: ../../enterprise/include/lib/ServiceElement.php:864 +#, php-format +msgid " error while decoding rules: %s" +msgstr " ルールデコードエラー: %s" + +#: ../../enterprise/include/lib/ServiceElement.php:1271 +#, php-format +msgid " error: Failed to delete element: %s" +msgstr " エラー: 要素の削除に失敗しました: %s" + +#: ../../enterprise/include/lib/Policy.php:281 +#, php-format +msgid "Invalid operation %s" +msgstr "不正な操作 %s" + +#: ../../enterprise/include/lib/Policy.php:1171 +#, php-format +msgid "Policy already defined: \"%s\"" +msgstr "ポリシーはすでに定義済です: \"%s\"" + +#: ../../enterprise/include/functions_events.php:40 +#: ../../godmode/events/event_filter.php:139 +#: ../../godmode/events/event_edit_filter.php:355 +#: ../../include/lib/Dashboard/Widgets/events_list.php:389 +#: ../../operation/events/events.php:1609 ../../operation/events/events.php:2183 +msgid "Event status" +msgstr "状態" + +#: ../../enterprise/include/functions_events.php:101 +#: ../../godmode/events/event_edit_filter.php:419 ../../operation/events/events.php:1835 +msgid "User ack." +msgstr "承諾したユーザ" + +#: ../../enterprise/include/functions_events.php:111 +#: ../../godmode/events/event_edit_filter.php:454 +msgid "Date from" +msgstr "開始日" + +#: ../../enterprise/include/functions_events.php:121 +#: ../../godmode/events/event_edit_filter.php:457 +msgid "Date to" +msgstr "終了日" + +#: ../../enterprise/include/functions_events.php:131 +#: ../../godmode/events/event_edit_filter.php:443 ../../mobile/operation/events.php:816 +#: ../../include/functions_events.php:4645 ../../operation/events/events.php:1640 +msgid "Repeated" +msgstr "複数回発生イベント" + +#: ../../enterprise/include/functions_events.php:141 +#: ../../godmode/events/event_edit_filter.php:603 ../../operation/events/events.php:1858 +msgid "Alert events" +msgstr "アラートイベント" + +#: ../../enterprise/include/functions_events.php:152 +msgid "Id source events" +msgstr "ソースイベントID" + +#: ../../enterprise/include/functions_events.php:162 +#: ../../godmode/events/event_edit_filter.php:409 ../../mobile/operation/events.php:997 +#: ../../include/functions_snmp.php:401 ../../include/class/AuditLog.class.php:187 +#: ../../include/lib/Dashboard/Widgets/events_list.php:347 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/snmpconsole/snmp_view.php:616 ../../operation/events/events.php:1622 +#: ../../operation/events/events.php:2213 +msgid "Max. hours old" +msgstr "最大表示範囲(時間)" + +#: ../../enterprise/include/functions_events.php:178 +#: ../../enterprise/include/functions_events.php:200 +msgid "More than 5 tags" +msgstr "5つ以上のタグ" + +#: ../../enterprise/include/functions_events.php:184 +#: ../../godmode/events/event_edit_filter.php:498 ../../operation/events/events.php:2054 +#: ../../operation/events/events.php:2057 +msgid "Events with following tags" +msgstr "次のタグを含むイベント" + +#: ../../enterprise/include/functions_events.php:206 +#: ../../godmode/events/event_edit_filter.php:551 ../../operation/events/events.php:2055 +#: ../../operation/events/events.php:2058 +msgid "Events without following tags" +msgstr "次のタグを含まないイベント" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filter" +msgstr "有効なフィルタ" + +#: ../../enterprise/include/functions_events.php:224 +#: ../../include/functions_snmp.php:441 +msgid "Active filters" +msgstr "有効なフィルタ" + +#: ../../enterprise/include/functions_metaconsole.php:2838 +msgid "Agent alerts action does not exist in target node" +msgstr "エージェントアラートアクションが対象ノードに存在しません" + +#: ../../enterprise/include/functions_metaconsole.php:2845 +msgid "Agent alerts template does not exist in target node" +msgstr "エージェントアラートテンプレートが対象ノードに存在しません" + +#: ../../enterprise/include/functions_metaconsole.php:2852 +msgid "Agent inventory does not exist in target node" +msgstr "エージェントインベントリが対象ノードに存在しません" + +#: ../../enterprise/include/functions_metaconsole.php:2859 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "エージェント設定が存在します。対象ノードから設定ファイルを削除してください。" + +#: ../../enterprise/include/functions_metaconsole.php:2866 +msgid "Agent collections does not exist in target node" +msgstr "エージェントコレクションが対象ノードに存在しません" + +#: ../../enterprise/include/functions_metaconsole.php:2873 +msgid "Agent plugins does not exist in target node" +msgstr "エージェントプラグインが対象ノードに存在しません" + +#: ../../enterprise/include/functions_metaconsole.php:2880 +msgid "Agent policies definitions does not match with defined ones in target node" +msgstr "エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" + +#: ../../enterprise/include/functions_metaconsole.php:2887 +msgid "Agent group does not exist in target node" +msgstr "エージェントグループが対象ノードに存在しません" + +#: ../../enterprise/include/functions_metaconsole.php:2894 +msgid "Agent already exists in target node" +msgstr "エージェントが対象ノードにすでに存在します" + +#: ../../enterprise/include/functions_metaconsole.php:2918 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "エージェント: 挿入に問題があるため、追加されていません" + +#: ../../enterprise/include/functions_metaconsole.php:2923 +msgid "The agent: has already been added to the migration queue" +msgstr "エージェント: すでに移行キューに追加されています" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Perpetual" +msgstr "永続" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "サブスクリプション" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1156 +msgid "Support expires" +msgstr "サポート切れ" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "有効期限" + +#: ../../enterprise/include/functions_ipam.php:288 +msgid "Export to Excel" +msgstr "Excel にエクスポート" + +#: ../../enterprise/include/functions_ipam.php:395 +msgid "Assign next free IP" +msgstr "次の空き IP を割り当てる" + +#: ../../enterprise/include/functions_ipam.php:413 +msgid "Next available IP" +msgstr "次の空き IP" + +#: ../../enterprise/include/functions_ipam.php:1341 +#: ../../enterprise/tools/ipam/ipam_ajax.php:483 ../../include/ajax/events.php:1712 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 +msgid "Details" +msgstr "詳細" + +#: ../../enterprise/include/functions_ipam.php:1559 +#: ../../operation/snmpconsole/snmp_statistics.php:78 +#: ../../operation/snmpconsole/snmp_view.php:99 +#: ../../operation/incidents/incident_statistics.php:21 +msgid "Statistics" +msgstr "統計" + +#: ../../enterprise/include/functions_ipam.php:1561 +#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/tools/ipam/ipam_excel.php:136 +#: ../../enterprise/tools/ipam/ipam_excel.php:202 +msgid "Total IPs" +msgstr "全IP" + +#: ../../enterprise/include/functions_ipam.php:1567 +msgid "Occupied" +msgstr "占有済" + +#: ../../enterprise/include/functions_ipam.php:1573 +#: ../../enterprise/include/functions_ipam.php:2048 +#: ../../enterprise/tools/ipam/ipam_network.php:401 +#: ../../enterprise/tools/ipam/ipam_ajax.php:406 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "管理対象" + +#: ../../enterprise/include/functions_ipam.php:1575 +msgid "Not managed" +msgstr "管理対象外" + +#: ../../enterprise/include/functions_ipam.php:1579 +#: ../../enterprise/include/functions_ipam.php:1734 +#: ../../enterprise/include/functions_ipam.php:2049 +#: ../../enterprise/tools/ipam/ipam_network.php:402 +#: ../../enterprise/tools/ipam/ipam_ajax.php:432 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "予約済み" + +#: ../../enterprise/include/functions_ipam.php:1581 +msgid "Not Reserved" +msgstr "未予約" + +#: ../../enterprise/include/functions_ipam.php:1590 +msgid "Occupancy statistics" +msgstr "占有率統計" + +#: ../../enterprise/include/functions_ipam.php:1646 +msgid "DESC" +msgstr "降順" + +#: ../../enterprise/include/functions_ipam.php:1647 +msgid "ASC" +msgstr "昇順" + +#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/tools/ipam/ipam_network.php:397 +#: ../../enterprise/tools/ipam/ipam_ajax.php:364 +#: ../../include/class/Diagnostics.class.php:734 +#: ../../include/class/Diagnostics.class.php:752 +msgid "Hostname" +msgstr "ホスト名" + +#: ../../enterprise/include/functions_ipam.php:1648 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/include/functions_ipam.php:1649 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Last check" +msgstr "最新の確認" + +#: ../../enterprise/include/functions_ipam.php:1650 +msgid "Newer -> Older" +msgstr "新しい -> 古い" + +#: ../../enterprise/include/functions_ipam.php:1651 +msgid "Older -> Newer" +msgstr "古い -> 新しい" + +#: ../../enterprise/include/functions_ipam.php:1678 +msgid "Exact address match" +msgstr "アドレスの完全一致" + +#: ../../enterprise/include/functions_ipam.php:1682 +msgid "S.O" +msgstr "OS" + +#: ../../enterprise/include/functions_ipam.php:1695 +msgid "Big" +msgstr "大" + +#: ../../enterprise/include/functions_ipam.php:1696 +msgid "Tiny" +msgstr "小" + +#: ../../enterprise/include/functions_ipam.php:1697 +msgid "Icons style" +msgstr "アイコンスタイル" + +#: ../../enterprise/include/functions_ipam.php:1714 +msgid "Show not alive hosts" +msgstr "非稼働ホスト表示" + +#: ../../enterprise/include/functions_ipam.php:1722 +msgid "Show only managed addresses" +msgstr "管理対象アドレスのみ表示" + +#: ../../enterprise/include/functions_ipam.php:1730 +msgid "Reserved addresses" +msgstr "予約済アドレス" + +#: ../../enterprise/include/functions_ipam.php:1735 +msgid "Unreserved" +msgstr "未予約" + +#: ../../enterprise/include/functions_ipam.php:1745 +msgid "Last Contact" +msgstr "最終接続" + +#: ../../enterprise/include/functions_ipam.php:1788 +msgid "Filter options" +msgstr "フィルターオプション" + +#: ../../enterprise/include/functions_ipam.php:1985 +msgid "id Network" +msgstr "ネットワーク ID" + +#: ../../enterprise/include/functions_ipam.php:1990 +msgid "ID recon task" +msgstr "自動検出タスク ID" + +#: ../../enterprise/include/functions_ipam.php:1991 +msgid "Scan Interval" +msgstr "スキャン間隔" + +#: ../../enterprise/include/functions_ipam.php:1992 +msgid "Users Operator" +msgstr "管理ユーザ" + +#: ../../enterprise/include/functions_ipam.php:1993 +msgid "Total Ips" +msgstr "全 IP" + +#: ../../enterprise/include/functions_ipam.php:1994 +msgid "Last Update" +msgstr "最終更新" + +#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/tools/ipam/ipam_excel.php:137 +#: ../../enterprise/tools/ipam/ipam_excel.php:203 +msgid "Alive IPs" +msgstr "応答 IP" + +#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/tools/ipam/ipam_excel.php:138 +#: ../../enterprise/tools/ipam/ipam_excel.php:204 +msgid "Occupied %" +msgstr "占有 %" + +#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/tools/ipam/ipam_excel.php:139 +#: ../../enterprise/tools/ipam/ipam_excel.php:205 +msgid "Available %" +msgstr "残り %" + +#: ../../enterprise/include/functions_ipam.php:1999 +#: ../../enterprise/tools/ipam/ipam_excel.php:140 +#: ../../enterprise/tools/ipam/ipam_excel.php:206 +msgid "Managed IPs" +msgstr "管理 IP" + +#: ../../enterprise/include/functions_ipam.php:2000 +#: ../../enterprise/tools/ipam/ipam_excel.php:141 +#: ../../enterprise/tools/ipam/ipam_excel.php:207 +msgid "Managed %" +msgstr "管理 %" + +#: ../../enterprise/include/functions_ipam.php:2001 +#: ../../enterprise/tools/ipam/ipam_excel.php:142 +#: ../../enterprise/tools/ipam/ipam_excel.php:208 +msgid "Unmanaged %" +msgstr "非管理 %" + +#: ../../enterprise/include/functions_ipam.php:2002 +#: ../../enterprise/tools/ipam/ipam_excel.php:143 +#: ../../enterprise/tools/ipam/ipam_excel.php:209 +msgid "Reserved IPs" +msgstr "予約済 IP" + +#: ../../enterprise/include/functions_ipam.php:2003 +#: ../../enterprise/tools/ipam/ipam_excel.php:144 +#: ../../enterprise/tools/ipam/ipam_excel.php:210 +msgid "Reserved %" +msgstr "予約済 %" + +#: ../../enterprise/include/functions_ipam.php:2004 +#: ../../enterprise/tools/ipam/ipam_excel.php:145 +#: ../../enterprise/tools/ipam/ipam_excel.php:211 +msgid "Not reserved %" +msgstr "未予約 %" + +#: ../../enterprise/include/functions_ipam.php:2047 +msgid "OS Name" +msgstr "OS 名" + +#: ../../enterprise/include/functions_ipam.php:2050 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 +msgid "Created at" +msgstr "作成日時" + +#: ../../enterprise/include/functions_ipam.php:2051 +msgid "Last updated" +msgstr "最終更新" + +#: ../../enterprise/include/functions_ipam.php:2052 +msgid "Last modified" +msgstr "最終更新" + +#: ../../enterprise/include/functions_ipam.php:2053 +msgid "Dhcp Leased" +msgstr "DHCP リース済" + +#: ../../enterprise/include/functions_ipam.php:2054 +msgid "Dhcp Leased Mode" +msgstr "DHCP リースモード" + +#: ../../enterprise/include/functions_ipam.php:2055 +msgid "Dhcp Leased Expiration" +msgstr "DHCP リース期限切れ" + +#: ../../enterprise/include/functions_ipam.php:2056 +msgid "Mac address" +msgstr "MAC アドレス" + +#: ../../enterprise/include/functions_policies.php:424 +#: ../../enterprise/include/functions_policies.php:439 +#: ../../include/functions_alerts.php:477 +msgid "copy" +msgstr "コピー" + +#: ../../enterprise/include/functions_policies.php:676 +#, php-format +msgid "%s success" +msgstr "%s 成功" + +#: ../../enterprise/include/functions_policies.php:676 +#, php-format +msgid "%s failed" +msgstr "%s 失敗" + +#: ../../enterprise/include/functions_policies.php:681 +msgid "Policy cleaned from nodes: " +msgstr "ポリシーがノードから削除されました: " + +#: ../../enterprise/include/functions_policies.php:935 +#, php-format +msgid "Failed to connect to node %s" +msgstr "ノード %s への接続に失敗しました" + +#: ../../enterprise/include/functions_policies.php:3507 +msgid "Policy linkation" +msgstr "ポリシーリンク" + +#: ../../enterprise/include/functions_policies.php:3512 +msgid "Module linked" +msgstr "リンク済モジュール" + +#: ../../enterprise/include/functions_policies.php:3517 +#: ../../enterprise/include/functions_policies.php:3537 +msgid "Unlink from policy" +msgstr "ポリシーからリンクを外す" + +#: ../../enterprise/include/functions_policies.php:3522 +msgid "Module unlinked" +msgstr "未リンクモジュール" + +#: ../../enterprise/include/functions_policies.php:3527 +#: ../../enterprise/include/functions_policies.php:3547 +msgid "Relink to policy" +msgstr "ポリシーへの再リンク" + +#: ../../enterprise/include/functions_policies.php:3532 +msgid "Module pending to link" +msgstr "リンク待ちモジュール" + +#: ../../enterprise/include/functions_policies.php:3532 +#: ../../godmode/agentes/module_manager_editor.php:548 +msgid "Module will be linked in the next application" +msgstr "モジュールは次回適用時にリンクされます。" + +#: ../../enterprise/include/functions_policies.php:3542 +msgid "Module pending to unlink" +msgstr "リンク解除待ちモジュール" + +#: ../../enterprise/include/functions_policies.php:3542 +#: ../../godmode/agentes/module_manager_editor.php:562 +msgid "Module will be unlinked in the next application" +msgstr "モジュールは次回適用時にリンク解除されます。" + +#: ../../enterprise/include/functions_policies.php:3738 +#: ../../godmode/agentes/configurar_agente.php:542 +#: ../../godmode/agentes/configurar_agente.php:763 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "SNMPウィザード" + +#: ../../enterprise/include/functions_policies.php:3741 +#: ../../godmode/agentes/configurar_agente.php:552 +#: ../../godmode/agentes/configurar_agente.php:769 +msgid "SNMP Interfaces wizard" +msgstr "SNMP インタフェースウィザード" + +#: ../../enterprise/include/functions_policies.php:3744 +#: ../../godmode/agentes/configurar_agente.php:562 +#: ../../godmode/agentes/configurar_agente.php:775 +msgid "WMI Wizard" +msgstr "WMIウィザード" + +#: ../../enterprise/include/functions_policies.php:4061 +msgid "Create a new policy map" +msgstr "新規ポリシーマップ作成" + +#: ../../enterprise/include/functions_policies.php:4449 +#: ../../extensions/resource_registration.php:1098 +msgid "Error, please install the PHP libXML in the system." +msgstr "エラー。PHP libXML をインストールしてください。" + +#: ../../enterprise/include/functions_policies.php:4461 +#, php-format +msgid "" +"This extension makes registration of policies enterprise.
    You can get more " +"policies in our Public Resource Library" +msgstr "" +"この拡張は、Enterprise ポリシーを登録します。
    追加のポリシーは我々のリ" +"ソースライブラリから入手できます。" + +#: ../../enterprise/include/functions_policies.php:4468 +#: ../../extensions/resource_registration.php:1133 +msgid "Group filter: " +msgstr "グループフィルター: " + +#: ../../enterprise/include/functions_policies.php:4493 +#: ../../extensions/resource_registration.php:1150 +msgid "" +"Error uploading resource. Check if the selected file is a valid resource template in ." +"ptr format" +msgstr "" +"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の有効な" +"リソーステンプレートであるかどうかを確認してください" + +#: ../../enterprise/include/functions_policies.php:4519 +msgid "Policy does not exist" +msgstr "ポリシーがありません。" + +#: ../../enterprise/include/functions_policies.php:4909 +msgid "This will not produce any action." +msgstr "これはアクションを起こしません。" + +#: ../../enterprise/include/functions_policies.php:4938 +#, php-format +msgid "Error connecting with node %s." +msgstr "ノード %s への接続エラー。" + +#: ../../enterprise/include/functions_policies.php:4945 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "このポリシーはノード %s に適用されています。" + +#: ../../enterprise/include/functions_policies.php:4983 +msgid "Error syncronizing ." +msgstr "同期エラー。" + +#: ../../enterprise/include/functions_local_components.php:179 +msgid "Empty configuration" +msgstr "設定が空です" + +#: ../../enterprise/include/functions_local_components.php:184 +msgid "Empty OS" +msgstr "OS が空です" + +#: ../../enterprise/include/functions_local_components.php:354 +#: ../../include/functions_alerts.php:1124 +#: ../../include/functions_network_components.php:590 +msgid "Copy of" +msgstr "複製" + +#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/operation/agentes/tag_view.php:873 +#: ../../enterprise/operation/agentes/tag_view.php:883 +#: ../../enterprise/operation/agentes/ux_console_view.php:102 +#: ../../enterprise/operation/agentes/ux_console_view.php:297 +#: ../../enterprise/operation/agentes/ux_console_view.php:377 +#: ../../enterprise/operation/agentes/wux_console_view.php:352 +#: ../../include/functions_ui.php:6295 +msgid "Snapshot view" +msgstr "スナップショット表示" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "モジュールのインベントリデータ取得に失敗しました。" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 +#: ../../mobile/operation/module_graph.php:477 ../../mobile/operation/events.php:1150 +#: ../../mobile/operation/tactical.php:239 +msgid "Loading..." +msgstr "読み込み中..." + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:56 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 +msgid "Transactions List" +msgstr "トランザクション一覧" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:96 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 +msgid "Edit Transaction" +msgstr "トランザクション編集" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "フェーズ一覧に戻る" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "トランザクションマップ - フェーズ - " + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "このエージェントにはポリシーが適用されていません" + +#: ../../enterprise/operation/agentes/policy_view.php:70 +#: ../../include/functions_events.php:2462 +msgid "V." +msgstr "V." + +#: ../../enterprise/operation/agentes/policy_view.php:89 +msgid "Policy outdate" +msgstr "期限切れポリシー" + +#: ../../enterprise/operation/agentes/policy_view.php:159 +#: ../../enterprise/operation/agentes/policy_view.php:169 +msgid "Toggle the collection table" +msgstr "コレクションテーブル切り替え" + +#: ../../enterprise/operation/agentes/policy_view.php:165 +msgid "Descripttion" +msgstr "説明" + +#: ../../enterprise/operation/agentes/policy_view.php:173 +msgid "Show Collection" +msgstr "コレクション表示" + +#: ../../enterprise/operation/agentes/policy_view.php:253 +#: ../../enterprise/operation/agentes/policy_view.php:265 +msgid "Toggle the alert table" +msgstr "アラートテーブル切り替え" + +#: ../../enterprise/operation/agentes/policy_view.php:257 +#: ../../godmode/alerts/alert_list.list.php:151 +#: ../../include/ajax/alert_list.ajax.php:286 ../../include/ajax/alert_list.ajax.php:311 +#: ../../operation/agentes/alerts_status.functions.php:124 +msgid "Standby" +msgstr "スタンバイ" + +#: ../../enterprise/operation/agentes/policy_view.php:269 +msgid "Show Alert" +msgstr "アラート表示" + +#: ../../enterprise/operation/agentes/policy_view.php:345 +#: ../../godmode/alerts/alert_list.list.php:573 ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +msgid "time(s)" +msgstr "回" + +#: ../../enterprise/operation/agentes/policy_view.php:351 +#: ../../godmode/alerts/alert_list.list.php:579 ../../godmode/alerts/alert_view.php:111 +#: ../../mobile/operation/alerts.php:330 ../../include/functions_agents.php:2944 +#: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 +#: ../../include/class/AgentsAlerts.class.php:943 +#: ../../include/functions_reporting.php:12561 +#: ../../operation/snmpconsole/snmp_view.php:1020 +msgid "Alert not fired" +msgstr "未通知アラート" + +#: ../../enterprise/operation/agentes/policy_view.php:390 +#: ../../enterprise/operation/agentes/policy_view.php:402 +msgid "Toggle the module table" +msgstr "モジュールテーブル切り替え" + +#: ../../enterprise/operation/agentes/policy_view.php:394 +msgid "Relationship" +msgstr "関連" + +#: ../../enterprise/operation/agentes/policy_view.php:406 +msgid "Show Modules" +msgstr "モジュール表示" + +#: ../../enterprise/operation/agentes/policy_view.php:425 +msgid "(Un-adopted)" +msgstr "(未適用)" + +#: ../../enterprise/operation/agentes/policy_view.php:428 +msgid "(Adopted)" +msgstr "(適用)" + +#: ../../enterprise/operation/agentes/policy_view.php:433 +msgid "(Un-adopted) (Unlinked)" +msgstr "(未適用) (未リンク)" + +#: ../../enterprise/operation/agentes/policy_view.php:436 +msgid "(Adopted) (Unlinked)" +msgstr "(適用) (未リンク)" + +#: ../../enterprise/operation/agentes/policy_view.php:457 +#: ../../godmode/agentes/module_manager.php:1111 +msgid "Non initialized module" +msgstr "未初期化モジュール" + +#: ../../enterprise/operation/agentes/policy_view.php:485 +#: ../../enterprise/operation/agentes/policy_view.php:490 +#: ../../enterprise/operation/agentes/policy_view.php:495 +#: ../../enterprise/operation/agentes/transactional_map.php:210 +#: ../../enterprise/operation/agentes/tag_view.php:989 +#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:1005 +#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:1021 +#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 +#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 +#: ../../include/functions_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 +#: ../../operation/agentes/status_monitor.php:1662 +#: ../../operation/agentes/status_monitor.php:1668 +#: ../../operation/agentes/status_monitor.php:1678 +#: ../../operation/agentes/status_monitor.php:1684 +#: ../../operation/agentes/status_monitor.php:1694 +#: ../../operation/agentes/status_monitor.php:1700 +#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 +#: ../../operation/search_modules.php:157 +msgid "Last status" +msgstr "最新の状態" + +#: ../../enterprise/operation/agentes/transactional_map.php:61 +msgid "List of transactions" +msgstr "トランザクション一覧" + +#: ../../enterprise/operation/agentes/transactional_map.php:74 +#: ../../enterprise/operation/agentes/manage_transmap.php:176 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 +msgid "Transactional Map" +msgstr "トランザクションマップ" + +#: ../../enterprise/operation/agentes/transactional_map.php:149 +msgid "Name can't be empty" +msgstr "名前は空にできません" + +#: ../../enterprise/operation/agentes/transactional_map.php:206 +msgid "Transaction name" +msgstr "トランザクション名" + +#: ../../enterprise/operation/agentes/transactional_map.php:209 +msgid "Running status" +msgstr "実行状態" + +#: ../../enterprise/operation/agentes/transactional_map.php:211 +msgid "Time spent" +msgstr "経過時間" + +#: ../../enterprise/operation/agentes/transactional_map.php:212 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:611 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 +msgid "Updated at" +msgstr "更新日時" + +#: ../../enterprise/operation/agentes/transactional_map.php:254 +msgid "Stopped" +msgstr "停止" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Starting" +msgstr "開始中" + +#: ../../enterprise/operation/agentes/transactional_map.php:260 +msgid "Stopping" +msgstr "停止中" + +#: ../../enterprise/operation/agentes/transactional_map.php:439 +msgid "Edit phases" +msgstr "フェーズ編集" + +#: ../../enterprise/operation/agentes/transactional_map.php:461 +msgid "Go to `Status` module" +msgstr "モジュールの状態へ行く" + +#: ../../enterprise/operation/agentes/transactional_map.php:492 +msgid "Error in phases section" +msgstr "フェーズセクションエラー" + +#: ../../enterprise/operation/agentes/transactional_map.php:512 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 +msgid "Create Transaction" +msgstr "トランザクション作成" + +#: ../../enterprise/operation/agentes/tag_view.php:41 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "タグ表示" + +#: ../../enterprise/operation/agentes/tag_view.php:54 +#: ../../extensions/agents_modules.php:478 ../../extensions/module_groups.php:264 +#: ../../extensions/realtime_graphs.php:71 +#: ../../include/class/AgentsAlerts.class.php:742 ../../operation/heatmap.php:137 +#: ../../operation/agentes/alerts_status.php:203 +#: ../../operation/agentes/estado_agente.php:228 +#: ../../operation/agentes/interface_view.php:76 +#: ../../operation/agentes/status_monitor.php:108 +#: ../../operation/agentes/group_view.php:102 ../../operation/agentes/tactical.php:82 +#: ../../operation/menu.php:39 +msgid "Views" +msgstr "表示" + +#: ../../enterprise/operation/agentes/tag_view.php:139 +#: ../../operation/agentes/status_monitor.php:500 +msgid "Monitor status" +msgstr "モニタ項目の状態" + +#: ../../enterprise/operation/agentes/tag_view.php:223 +#: ../../enterprise/operation/agentes/tag_view.php:225 +#: ../../operation/agentes/status_monitor.php:550 +#: ../../operation/agentes/alerts_status.functions.php:108 +msgid "Only it is show tags in use." +msgstr "利用中のタグのみ表示します。" + +#: ../../enterprise/operation/agentes/tag_view.php:229 +#: ../../operation/agentes/status_monitor.php:555 +#: ../../operation/agentes/alerts_status.functions.php:113 +msgid "No tags" +msgstr "タグ無し" + +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:621 +msgid "Data server module" +msgstr "データサーバモジュール" + +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:623 +msgid "Network server module" +msgstr "ネットワークサーバモジュール" + +#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:627 +msgid "Plugin server module" +msgstr "プラグインサーバモジュール" + +#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:631 +msgid "WMI server module" +msgstr "WMI サーバモジュール" + +#: ../../enterprise/operation/agentes/tag_view.php:292 +#: ../../godmode/agentes/module_manager_editor_prediction.php:107 +#: ../../operation/agentes/status_monitor.php:635 +msgid "Prediction server module" +msgstr "予測サーバモジュール" + +#: ../../enterprise/operation/agentes/tag_view.php:296 +#: ../../godmode/agentes/module_manager_editor_web.php:55 +#: ../../operation/agentes/status_monitor.php:639 +msgid "Web server module" +msgstr "ウェブサーバモジュール" + +#: ../../enterprise/operation/agentes/tag_view.php:299 +#: ../../enterprise/operation/agentes/tag_view.php:680 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:646 +#: ../../operation/agentes/status_monitor.php:1323 +msgid "Server type" +msgstr "サーバの種類" + +#: ../../enterprise/operation/agentes/tag_view.php:305 +#: ../../godmode/agentes/modificar_agente.php:337 +#: ../../operation/agentes/status_monitor.php:652 +msgid "Only enabled" +msgstr "有効のもののみ" + +#: ../../enterprise/operation/agentes/tag_view.php:306 +#: ../../godmode/agentes/modificar_agente.php:336 +#: ../../operation/agentes/status_monitor.php:653 +msgid "Only disabled" +msgstr "無効のもののみ" + +#: ../../enterprise/operation/agentes/tag_view.php:309 +#: ../../operation/agentes/status_monitor.php:656 +msgid "Show monitors..." +msgstr "監視の有効・無効" + +#: ../../enterprise/operation/agentes/tag_view.php:319 +#: ../../enterprise/operation/agentes/tag_view.php:679 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:666 +msgid "Data type" +msgstr "データのタイプ" + +#: ../../enterprise/operation/agentes/tag_view.php:447 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:831 +msgid "Agent custom fields" +msgstr "エージェントカスタムフィールド" + +#: ../../enterprise/operation/agentes/tag_view.php:682 +#: ../../enterprise/operation/services/services.service.php:130 +#: ../../enterprise/operation/services/services.list.php:509 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 ../../include/ajax/module.php:983 +#: ../../include/class/NetworkMap.class.php:2908 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 +#: ../../include/functions_events.php:4198 +#: ../../operation/agentes/status_monitor.php:1346 ../../operation/search_modules.php:37 +msgid "Graph" +msgstr "グラフ" + +#: ../../enterprise/operation/agentes/tag_view.php:683 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:151 +#: ../../godmode/agentes/module_manager.php:871 +#: ../../operation/agentes/status_monitor.php:1351 +msgid "Warn" +msgstr "警告" + +#: ../../enterprise/operation/agentes/tag_view.php:935 +#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 +#: ../../include/functions_modules.php:2874 ../../include/functions_modules.php:4114 +#: ../../include/functions_events.php:70 ../../operation/agentes/status_monitor.php:1572 +#: ../../operation/search_modules.php:108 ../../operation/events/events.php:656 +msgid "NOT INIT" +msgstr "未初期化" + +#: ../../enterprise/operation/agentes/tag_view.php:1075 +#: ../../include/functions_reporting.php:12683 +#: ../../include/functions_reporting.php:12692 +#, php-format +msgid "%d Total modules" +msgstr "全モジュール数 %d" + +#: ../../enterprise/operation/agentes/tag_view.php:1076 +#: ../../include/functions_reporting.php:12684 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d モジュールが正常状態" + +#: ../../enterprise/operation/agentes/tag_view.php:1077 +#: ../../include/functions_reporting.php:12685 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d モジュールが障害状態" + +#: ../../enterprise/operation/agentes/tag_view.php:1078 +#: ../../include/functions_reporting.php:12686 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d モジュールが警告状態" + +#: ../../enterprise/operation/agentes/tag_view.php:1079 +#: ../../include/functions_reporting.php:12687 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d モジュールが不明状態" + +#: ../../enterprise/operation/agentes/tag_view.php:1080 +#: ../../include/functions_reporting.php:12688 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d モジュールが未初期化状態" + +#: ../../enterprise/operation/agentes/manage_transmap.php:84 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 +msgid "Edit main data" +msgstr "メインデータ編集" + +#: ../../enterprise/operation/agentes/manage_transmap.php:109 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 +msgid "View Transaction" +msgstr "トランザクション表示" + +#: ../../enterprise/operation/agentes/manage_transmap.php:153 +msgid "Return to windowed mode" +msgstr "ウインドウモードへ戻る" + +#: ../../enterprise/operation/agentes/manage_transmap.php:182 +msgid "Transaction not found" +msgstr "トランザクションが見つかりません" + +#: ../../enterprise/operation/agentes/manage_transmap.php:185 +msgid "Master lock file not found (No data to show)" +msgstr "マスターロックファイルが見つかりません (表示するデータがありません)" + +#: ../../enterprise/operation/agentes/manage_transmap.php:188 +msgid "Transaction is stopped" +msgstr "トランザクションが停止しました" + +#: ../../enterprise/operation/agentes/manage_transmap.php:191 +msgid "Error, please check the transaction phases" +msgstr "エラー、トランザクションフェーズをチェックしてください" + +#: ../../enterprise/operation/agentes/ver_agente.php:72 +#: ../../operation/agentes/ver_agente.php:1017 +msgid "Main IP" +msgstr "代表 IP" + +#: ../../enterprise/operation/agentes/ver_agente.php:78 +#: ../../include/functions_events.php:4125 ../../operation/agentes/ver_agente.php:1029 +msgid "Last remote contact" +msgstr "最終リモート接続" + +#: ../../enterprise/operation/agentes/ver_agente.php:122 +#: ../../operation/agentes/ver_agente.php:1074 +msgid "Monitors down" +msgstr "停止中のモニタ項目" + +#: ../../enterprise/operation/agentes/ver_agente.php:164 +#: ../../mobile/operation/groups.php:174 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 +#: ../../operation/agentes/ver_agente.php:1115 +msgid "Alerts fired" +msgstr "発生中アラート" + +#: ../../enterprise/operation/agentes/ver_agente.php:258 +msgid "URL Route Analyzer" +msgstr "URL ルートアナライザー" + +#: ../../enterprise/operation/agentes/ver_agente.php:274 +msgid "UX Console" +msgstr "UX コンソール" + +#: ../../enterprise/operation/agentes/ver_agente.php:290 +msgid "WUX Console" +msgstr "WUX コンソール" + +#: ../../enterprise/operation/agentes/collection_view.php:66 +msgid "No collection assigned to this agent" +msgstr "このエージェントに割り当てられたコレクションがありません" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 +msgid "Please, reset the transaction" +msgstr "トランザクションをリセットしてください" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 +msgid "Successfully data updated" +msgstr "データを更新しました" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 +msgid "Could not be data updated" +msgstr "データを更新できませんでした" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 +msgid "Create Phase" +msgstr "フェーズ作成" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 +msgid "Index" +msgstr "目次" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 +msgid "Dependencies" +msgstr "依存関係" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 +msgid "Enables" +msgstr "有効" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 +msgid "Not valid dependencies field" +msgstr "正しい依存フィールドではありません" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 +msgid "Not valid enables field" +msgstr "正しい有効フィールドではありません" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 +msgid "Loop interval" +msgstr "ループ間隔" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 +msgid "Transactional Map - Edit Transaction" +msgstr "トランザクションマップ - トランザクション編集" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "エージェント選択なし" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +msgid "Route not found" +msgstr "ルートが見つかりません" + +#: ../../enterprise/operation/agentes/agent_inventory.php:73 +msgid "This agent has not modules inventory" +msgstr "このエージェントにはインベントリモジュールがありません" + +#: ../../enterprise/operation/agentes/agent_inventory.php:193 +#: ../../enterprise/operation/agentes/agent_inventory.php:194 +msgid "Diff view" +msgstr "差分表示" + +#: ../../enterprise/operation/agentes/ux_console_view.php:43 +msgid "No ux transaction selected." +msgstr "UX トランザクションが選択されていません。" + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +msgid "No ux transactions found." +msgstr "UX トランザクションが見つかりません。" + +#: ../../enterprise/operation/agentes/ux_console_view.php:133 +#: ../../enterprise/operation/agentes/wux_console_view.php:261 +msgid "Transaction" +msgstr "トランザクション" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:286 +msgid "Show transaction" +msgstr "トランザクション表示" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +msgid "Execution results for transaction " +msgstr "トランザクションの実行結果 " + +#: ../../enterprise/operation/agentes/ux_console_view.php:266 +#: ../../enterprise/operation/agentes/wux_console_view.php:332 +msgid "Global results" +msgstr "全体の結果" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +msgid "Transaction history" +msgstr "トランザクション履歴" + +#: ../../enterprise/operation/agentes/wux_console_view.php:75 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "WUX トランザクションが選択されていません。" + +#: ../../enterprise/operation/agentes/wux_console_view.php:149 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "フェーズモジュールがありません" + +#: ../../enterprise/operation/agentes/wux_console_view.php:224 +msgid "Selected transaction has no stats" +msgstr "選択したトランザクションには状態がありません" + +#: ../../enterprise/operation/agentes/wux_console_view.php:242 +msgid "No WUX transactions found." +msgstr "WUX トランザクションが見つかりません。" + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +msgid "Failed: " +msgstr "失敗: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../godmode/setup/performance.php:188 ../../godmode/setup/performance.php:243 +#: ../../general/logon_ok.php:193 +msgid "ago" +msgstr "前" + +#: ../../enterprise/operation/agentes/wux_console_view.php:369 +#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../include/functions_alerts.php:681 +msgid "Unknown status" +msgstr "不明状態" + +#: ../../enterprise/operation/agentes/wux_console_view.php:378 +msgid "Success: " +msgstr "成功: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:384 +msgid "Total transaction time: " +msgstr "全トランザクション時間: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#, php-format +msgid "Execution results for transaction %s" +msgstr "トランザクション %s の実行結果" + +#: ../../enterprise/operation/agentes/wux_console_view.php:527 +msgid "View all stats" +msgstr "全状態表示" + +#: ../../enterprise/operation/agentes/wux_console_view.php:595 +#: ../../operation/snmpconsole/snmp_view.php:1061 +#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:241 +#: ../../operation/menu.php:243 ../../operation/events/events.php:500 +#: ../../operation/events/events.php:765 +msgid "Show more" +msgstr "詳細を表示する" + +#: ../../enterprise/operation/agentes/wux_console_view.php:611 +msgid "Invalid transaction." +msgstr "不正なトランザクション。" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:39 +#: ../../enterprise/operation/log/log_viewer.php:391 +#: ../../enterprise/operation/menu.php:211 +msgid "Elasticsearch Interface" +msgstr "Elasticsearch インタフェース" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:49 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly what are " +"you are doing. \n" +"This view is intended to be used only by users with a knowledge of Elasticsearch" +msgstr "" +"これは、WEBコンソールから直接 Elasticsearch を操作するための画面です。\n" +"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意してくだ" +"さい。\n" +"この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としています。" + +#: ../../enterprise/operation/log/log_viewer.php:405 +#: ../../enterprise/operation/log/log_viewer.php:424 +#: ../../enterprise/operation/log/log_viewer.php:435 +msgid "Log sources" +msgstr "ログソース" + +#: ../../enterprise/operation/log/log_viewer.php:478 +msgid "All words" +msgstr "全単語" + +#: ../../enterprise/operation/log/log_viewer.php:479 +msgid "Any word" +msgstr "任意の単語" + +#: ../../enterprise/operation/log/log_viewer.php:482 +msgid "Search mode" +msgstr "検索モード" + +#: ../../enterprise/operation/log/log_viewer.php:529 +msgid "Full context" +msgstr "全文章" + +#: ../../enterprise/operation/log/log_viewer.php:552 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:271 +msgid "Start date" +msgstr "開始日時" + +#: ../../enterprise/operation/log/log_viewer.php:579 +#: ../../operation/agentes/exportdata.php:347 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:295 +msgid "End date" +msgstr "終了日時" + +#: ../../enterprise/operation/log/log_viewer.php:667 +#: ../../enterprise/operation/log/log_viewer.php:668 +msgid "Edit sources" +msgstr "ソース編集" + +#: ../../enterprise/operation/log/log_viewer.php:711 +msgid "Show log entries" +msgstr "ログエントリ表示" + +#: ../../enterprise/operation/log/log_viewer.php:712 +msgid "Graph log results" +msgstr "ログ結果グラフ表示" + +#: ../../enterprise/operation/log/log_viewer.php:714 +msgid "Display mode" +msgstr "表示モード" + +#: ../../enterprise/operation/log/log_viewer.php:727 +msgid "Use capture model" +msgstr "キャプチャモデルの利用" + +#: ../../enterprise/operation/log/log_viewer.php:757 +msgid "Create new model" +msgstr "新規モデル作成" + +#: ../../enterprise/operation/log/log_viewer.php:761 +#: ../../godmode/reporting/graph_builder.main.php:220 +msgid "Horizontal bars" +msgstr "水平バー" + +#: ../../enterprise/operation/log/log_viewer.php:762 +#: ../../godmode/reporting/graph_builder.main.php:221 +msgid "Vertical bars" +msgstr "垂直バー" + +#: ../../enterprise/operation/log/log_viewer.php:764 +msgid "Graph type" +msgstr "グラフタイプ" + +#: ../../enterprise/operation/log/log_viewer.php:779 +msgid "Advanced options " +msgstr "高度なオプション " + +#: ../../enterprise/operation/log/log_viewer.php:899 +msgid "" +"The maximum limit of rows has been exceeded. Please enter an email to send the csv " +"file" +msgstr "行の上限を超えました。 CSV ファイルを送信するメールアドレスを入力してください" + +#: ../../enterprise/operation/log/log_viewer.php:901 +msgid "e-mail address" +msgstr "メールアドレス" + +#: ../../enterprise/operation/log/log_viewer.php:904 +msgid "" +"WARNING: If your email size exceeds your mail attachment size limit, the file will be " +"saved in the local attachment folder." +msgstr "" +"警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファイルフォ" +"ルダに保存されます。" + +#: ../../enterprise/operation/log/log_viewer.php:1022 +msgid "The start date cannot be greater than the end date" +msgstr "開始日は終了日より後にできません" + +#: ../../enterprise/operation/log/log_viewer.php:1450 +msgid "Add new capture model" +msgstr "新たなキャプチャモデル追加" + +#: ../../enterprise/operation/log/log_viewer.php:1453 +msgid "Edit capture model" +msgstr "キャプチャモデル編集" + +#: ../../enterprise/operation/log/log_viewer.php:1536 +msgid "Error create new model" +msgstr "新規モデル作成エラー" + +#: ../../enterprise/operation/log/log_viewer.php:1563 +msgid "Error delete model" +msgstr "モデル削除エラー" + +#: ../../enterprise/operation/log/log_viewer.php:1609 +msgid "Error update model" +msgstr "モデル更新エラー" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "クラスタ表示" + +#: ../../enterprise/operation/menu.php:61 ../../operation/agentes/ver_agente.php:1683 +#: ../../operation/agentes/ver_agente.php:1882 +msgid "SAP view" +msgstr "SAP 表示" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "トランザクションマップ" + +#: ../../enterprise/operation/inventory/inventory.php:203 +#: ../../include/chart_generator.php:125 ../../operation/agentes/stat_win.php:51 +#: ../../operation/agentes/stat_win.php:176 ../../operation/agentes/realtime_win.php:51 +#: ../../operation/agentes/interface_traffic_graph_win.php:54 +msgid "There was a problem connecting with the node" +msgstr "ノード接続で問題が発生しました" + +#: ../../enterprise/operation/inventory/inventory.php:289 +msgid "You must select at least one filter." +msgstr "少なくとも一つのフィルタを選択する必要があります。" + +#: ../../enterprise/operation/inventory/inventory.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2190 +msgid "Last" +msgstr "最新" + +#: ../../enterprise/operation/inventory/inventory.php:438 +msgid "Order by agent" +msgstr "エージェントで並べ替え" + +#: ../../enterprise/operation/inventory/inventory.php:482 +msgid "Export this list to CSV" +msgstr "この一覧を CSV へエクスポートする" + +#: ../../enterprise/operation/services/services.service.php:63 +#: ../../enterprise/operation/services/services.service_map.php:78 +#: ../../include/lib/Dashboard/Widgets/service_map.php:192 +msgid "Service Map" +msgstr "サービスマップ" + +#: ../../enterprise/operation/services/services.service.php:90 +msgid "No Services" +msgstr "サービスがありません" + +#: ../../enterprise/operation/services/services.service.php:203 +#: ../../enterprise/operation/services/services.list.php:586 +msgid "SLA graph" +msgstr "SLA グラフ" + +#: ../../enterprise/operation/services/services.service.php:227 +msgid "List of elements" +msgstr "要素一覧" + +#: ../../enterprise/operation/services/services.php:229 +msgid "Service table view" +msgstr "サービス一覧表示" + +#: ../../enterprise/operation/services/services.php:244 +msgid "Service tree view" +msgstr "サービスツリー表示" + +#: ../../enterprise/operation/services/services.php:261 +#: ../../enterprise/operation/services/massive/services.create.php:599 +msgid "Creation services" +msgstr "サービス作成" + +#: ../../enterprise/operation/services/services.php:274 +#: ../../enterprise/operation/services/massive/services.delete.php:46 +msgid "Deletion services" +msgstr "サービス削除" + +#: ../../enterprise/operation/services/massive/services.delete.php:76 +#, php-format +msgid "Failed to delete: %s" +msgstr "削除に失敗しました: %s" + +#: ../../enterprise/operation/services/massive/services.create.php:212 +#, php-format +msgid "Failed to create service for agent %s, %s" +msgstr "エージェント %s, %s のサービス作成に失敗しました" + +#: ../../enterprise/operation/services/massive/services.create.php:296 +#, php-format +msgid "Failed to create service for module %s, %s" +msgstr "モジュール %s, %s のサービス作成に失敗しました" + +#: ../../enterprise/operation/services/massive/services.create.php:382 +#, php-format +msgid "Failed to create service for service %s, %s" +msgstr "サービス %s, %s のサービス作成に失敗しました" + +#: ../../enterprise/operation/services/massive/services.create.php:437 +#, php-format +msgid "Agent selected %d not found" +msgstr "選択したエージェント %d が見つかりません" + +#: ../../enterprise/operation/services/massive/services.create.php:483 +#, php-format +msgid "Module selected %d not found" +msgstr "選択したモジュール %d が見つかりません" + +#: ../../enterprise/operation/services/massive/services.create.php:530 +#, php-format +msgid "Service selected %d not found" +msgstr "選択したサービス %d が見つかりません" + +#: ../../enterprise/operation/services/massive/services.create.php:564 +#, php-format +msgid "Failed to create service for agent %s" +msgstr "エージェント %s のサービス作成に失敗しました" + +#: ../../enterprise/operation/services/massive/services.create.php:575 +#, php-format +msgid "Failed to create services: %s" +msgstr "サービス作成に失敗しました: %s" + +#: ../../enterprise/operation/services/massive/services.create.php:630 +#, php-format +msgid "%d services created with %d items" +msgstr "%d サービスが %d アイテムで作成されました" + +#: ../../enterprise/operation/services/massive/services.create.php:636 +msgid "No services created" +msgstr "サービスが作成されませんでした" + +#: ../../enterprise/operation/services/massive/services.create.php:656 +msgid "Service(s) definition" +msgstr "サービス定義" + +#: ../../enterprise/operation/services/massive/services.create.php:789 +msgid "Create a service per item" +msgstr "アイテムごとにサービスを作成する" + +#: ../../enterprise/operation/services/massive/services.create.php:790 +msgid "If enabled multiple services will be created." +msgstr "有効にすると、複数のサービスが作成されます。" + +#: ../../enterprise/operation/services/massive/services.create.php:808 +msgid "Services header" +msgstr "サービスヘッダ" + +#: ../../enterprise/operation/services/massive/services.create.php:809 +msgid "All services names created will start with selected name." +msgstr "作成されるすべてのサービス名は、選択した名前で始まります。" + +#: ../../enterprise/operation/services/massive/services.create.php:863 +msgid "SLA calculation" +msgstr "SLA 計算" + +#: ../../enterprise/operation/services/massive/services.create.php:970 +msgid "Items selected here will be added to the lists at Service items summary." +msgstr "ここで選択したアイテムは、サービスアイテム概要の一覧に追加されます。" + +#: ../../enterprise/operation/services/massive/services.create.php:973 +msgid "Item(s) definition" +msgstr "アイテム定義" + +#: ../../enterprise/operation/services/massive/services.create.php:981 +msgid "Item type" +msgstr "アイテムタイプ" + +#: ../../enterprise/operation/services/massive/services.create.php:998 +#: ../../enterprise/operation/services/massive/service.create.elements.php:393 +msgid "Add selected" +msgstr "選択中を追加" + +#: ../../enterprise/operation/services/massive/services.create.php:1168 +msgid "" +"Weights configured are common for every item added to the service, if you want to " +"customize them, please edit the service." +msgstr "" +"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらをカスタマ" +"イズする場合は、サービスを編集してください。" + +#: ../../enterprise/operation/services/massive/services.create.php:1172 +#: ../../enterprise/operation/services/massive/service.create.elements.php:528 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:291 +msgid "Service items summary" +msgstr "サービス要素概要" + +#: ../../enterprise/operation/services/massive/services.create.php:1175 +#: ../../enterprise/operation/services/massive/service.create.elements.php:531 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:294 +#: ../../include/functions_visual_map_editor.php:1148 +#: ../../include/rest-api/models/VisualConsole/Item.php:2522 +msgid "Critical weight" +msgstr "障害ウエイト" + +#: ../../enterprise/operation/services/massive/services.create.php:1188 +#: ../../enterprise/operation/services/massive/service.create.elements.php:544 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:307 +#: ../../include/functions_visual_map_editor.php:1174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2536 +msgid "Warning weight" +msgstr "警告ウエイト" + +#: ../../enterprise/operation/services/massive/services.create.php:1201 +#: ../../enterprise/operation/services/massive/service.create.elements.php:557 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:320 +msgid "Unknown weight" +msgstr "不明ウエイト" + +#: ../../enterprise/operation/services/massive/services.create.php:1214 +#: ../../enterprise/operation/services/massive/service.create.elements.php:570 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:333 +msgid "Normal weight" +msgstr "通常ウエイト" + +#: ../../enterprise/operation/services/massive/services.create.php:1229 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:240 +#: ../../enterprise/operation/services/massive/service.create.elements.php:586 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:349 +msgid "Selected services" +msgstr "選択したサービス" + +#: ../../enterprise/operation/services/massive/services.create.php:1284 +msgid "Create services" +msgstr "サービスの作成" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:70 +#: ../../enterprise/operation/services/massive/service.create.elements.php:74 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:68 +msgid "You must select a service" +msgstr "サービスを選択する必要があります" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:93 +msgid "Failed to process deleting services elements: " +msgstr "サービス要素の削除に失敗しました: " + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:109 +msgid "Delete elements" +msgstr "要素削除" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:141 +#: ../../enterprise/operation/services/massive/service.create.elements.php:280 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:182 +#, php-format +msgid "%d modules" +msgstr "%d モジュール" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:149 +#: ../../enterprise/operation/services/massive/service.create.elements.php:288 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:190 +#, php-format +msgid "%d agents" +msgstr "%d エージェント" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:157 +#: ../../enterprise/operation/services/massive/service.create.elements.php:296 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:198 +#, php-format +msgid "%d services" +msgstr "%d サービス" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:160 +msgid "removed" +msgstr "削除しました" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:164 +#: ../../enterprise/operation/services/massive/service.create.elements.php:303 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:205 +msgid "No changes made" +msgstr "変更されませんでした" + +#: ../../enterprise/operation/services/massive/service.delete.elements.php:293 +msgid "Remove selected" +msgstr "選択したものを削除" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:115 +#, php-format +msgid "Problems while adding module element: %d, %s" +msgstr "モジュール要素追加中に問題が発生: %d, %s" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:160 +#, php-format +msgid "Problems while adding agent element: %d, %s" +msgstr "エージェント要素追加中に問題が発生: %d, %s" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:208 +#, php-format +msgid "%s: %d, %s" +msgstr "%s: %d, %s" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:231 +msgid "Failed to process adding elements in services: " +msgstr "サービス要素の追加に失敗しました: " + +#: ../../enterprise/operation/services/massive/service.create.elements.php:247 +#: ../../enterprise/operation/services/massive/service.create.elements.php:638 +#: ../../include/functions_notifications.php:928 +msgid "Add elements" +msgstr "要素追加" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:299 +msgid "added" +msgstr "追加しました" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:376 +msgid "Item type to be added" +msgstr "追加されるアイテムタイプ" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:518 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:281 +msgid "In smart services weights are automatically calculated." +msgstr "スマートサービスウエイトは自動的に計算されます。" + +#: ../../enterprise/operation/services/massive/service.create.elements.php:523 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:286 +msgid "" +"Weights configured are common for every item added to the service, if you want to " +"customize them, please edit each element at service element editor." +msgstr "" +"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらをカスタマ" +"イズする場合は、サービス要素エディタで各要素を編集してください。" + +#: ../../enterprise/operation/services/massive/service.edit.elements.php:134 +msgid "Failed to process updating elements in services: " +msgstr "サービス要素の更新に失敗しました: " + +#: ../../enterprise/operation/services/massive/service.edit.elements.php:150 +msgid "Edit elements" +msgstr "要素編集" + +#: ../../enterprise/operation/services/massive/service.edit.elements.php:201 +#: ../../include/class/ConfigPEN.class.php:564 +msgid "updated" +msgstr "更新しました" + +#: ../../enterprise/operation/services/massive/service.edit.elements.php:402 +msgid "Update selected service elements" +msgstr "選択したサービス要素を更新" + +#: ../../enterprise/operation/services/services.service_map.php:116 +msgid "Show tree" +msgstr "ツリー表示" + +#: ../../enterprise/operation/services/services.service_map.php:130 +msgid "Show sunburst" +msgstr "サンバースト表示" + +#: ../../enterprise/operation/services/services.service_map.php:139 +#: ../../extensions/agents_modules.php:947 ../../extensions/module_groups.php:391 +#: ../../godmode/snmpconsole/snmp_alert.php:1518 +#: ../../include/functions_reporting_html.php:2183 +#: ../../operation/snmpconsole/snmp_view.php:1272 +msgid "Legend" +msgstr "凡例" + +#: ../../enterprise/operation/services/services.treeview_services.php:117 +msgid "Search service" +msgstr "サービス検索" + +#: ../../enterprise/operation/services/services.treeview_services.php:119 +#: ../../enterprise/operation/services/services.list.php:284 +#: ../../enterprise/operation/services/services.table_services.php:206 +msgid "Show only favourites" +msgstr "お気に入りのみ表示" + +#: ../../enterprise/operation/services/services.treeview_services.php:157 +msgid "No favourite services defined." +msgstr "お気に入りサービスがありません" + +#: ../../enterprise/operation/services/services.treeview_services.php:159 +msgid "No services matched." +msgstr "マッチするサービスがありません。" + +#: ../../enterprise/operation/services/services.treeview_services.php:161 +#: ../../enterprise/operation/services/services.list.php:447 +#: ../../enterprise/operation/services/services.list.php:456 +#: ../../enterprise/operation/services/services.table_services.php:359 +#: ../../enterprise/operation/services/services.table_services.php:365 +msgid "No services defined." +msgstr "サービスが定義されていません" + +#: ../../enterprise/operation/services/services.treeview_services.php:189 +#: ../../enterprise/operation/services/services.list.php:719 +#: ../../enterprise/operation/services/services.table_services.php:450 +msgid "Create Service" +msgstr "サービスの作成" + +#: ../../enterprise/operation/services/services.treeview_services.php:256 +#: ../../godmode/groups/group_list.php:1035 +msgid "Found groups" +msgstr "見つかったグループ" + +#: ../../enterprise/operation/services/services.treeview_services.php:350 +#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 +#: ../../operation/agentes/estado_monitores.php:421 +msgid "Module: " +msgstr "モジュール: " + +#: ../../enterprise/operation/services/services.list.php:62 +msgid "List of services" +msgstr "サービス一覧" + +#: ../../enterprise/operation/services/services.list.php:100 +msgid "Services successfully deleted" +msgstr "サービスを削除しました" + +#: ../../enterprise/operation/services/services.list.php:101 +#, php-format +msgid "Error while deleting services: %s" +msgstr "サービス削除エラー: %s" + +#: ../../enterprise/operation/services/services.list.php:118 +msgid "Service deleted successfully" +msgstr "サービスを削除しました" + +#: ../../enterprise/operation/services/services.list.php:119 +#, php-format +msgid "Error deleting service %s" +msgstr "サービス削除エラー %s" + +#: ../../enterprise/operation/services/services.list.php:127 +msgid "Service forced successfully" +msgstr "サービスの強制実行をしました" + +#: ../../enterprise/operation/services/services.list.php:128 +msgid "Error service forced" +msgstr "サービスの強制実行エラー" + +#: ../../enterprise/operation/services/services.list.php:298 +#: ../../enterprise/operation/services/services.table_services.php:220 +msgid "Show only root services" +msgstr "ルートサービスのみ表示" + +#: ../../enterprise/operation/services/services.list.php:590 +msgid "Status graph" +msgstr "状態グラフ" + +#: ../../enterprise/operation/services/services.list.php:625 +#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 +#: ../../operation/agentes/pandora_networkmap.php:800 +msgid "Config" +msgstr "設定" + +#: ../../enterprise/operation/services/services.table_services.php:45 +#: ../../godmode/groups/group_list.php:355 +msgid "Table view" +msgstr "表形式表示" + +#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 +#: ../../extensions/files_repo.php:210 +msgid "Operation view" +msgstr "操作画面" + +#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 +msgid "Subnetworks calculator" +msgstr "サブネット計算" + +#: ../../enterprise/tools/ipam/ipam.php:96 +msgid "Vlan config" +msgstr "VLAN 設定" + +#: ../../enterprise/tools/ipam/ipam.php:114 +msgid "Vlan wizard" +msgstr "VLAN ウィザード" + +#: ../../enterprise/tools/ipam/ipam.php:133 +msgid "Supernet treeview" +msgstr "スーパーネットツリー表示" + +#: ../../enterprise/tools/ipam/ipam.php:152 +msgid "Network locations" +msgstr "ネットワーク位置" + +#: ../../enterprise/tools/ipam/ipam.php:196 +msgid "Vlan statistics" +msgstr "VLAN 統計" + +#: ../../enterprise/tools/ipam/ipam.php:216 ../../enterprise/tools/ipam/ipam.php:381 +msgid "Supernet config" +msgstr "スーパーネット設定" + +#: ../../enterprise/tools/ipam/ipam.php:237 ../../enterprise/tools/ipam/ipam.php:396 +msgid "Supernet statistics" +msgstr "スーパーネット統計" + +#: ../../enterprise/tools/ipam/ipam.php:257 +msgid "Supernet map" +msgstr "スーパーネットマップ" + +#: ../../enterprise/tools/ipam/ipam.php:280 +#: ../../enterprise/tools/ipam/ipam_list.php:711 +msgid "Manage addresses" +msgstr "アドレス管理" + +#: ../../enterprise/tools/ipam/ipam.php:320 +#: ../../enterprise/tools/ipam/ipam_list.php:720 +msgid "Addresses view" +msgstr "アドレス表示" + +#: ../../enterprise/tools/ipam/ipam.php:352 +msgid "/tools/ipam/ipam_network.php" +msgstr "/tools/ipam/ipam_network.php" + +#: ../../enterprise/tools/ipam/ipam.php:366 +msgid "VLAN Config" +msgstr "VLAN 設定" + +#: ../../enterprise/tools/ipam/ipam.php:371 +msgid "VLAN Wizard" +msgstr "VLAN ウィザード" + +#: ../../enterprise/tools/ipam/ipam.php:376 +msgid "VLAN Statistics" +msgstr "VLAN 統計" + +#: ../../enterprise/tools/ipam/ipam.php:386 +msgid "Network location config" +msgstr "ネットワーク位置設定" + +#: ../../enterprise/tools/ipam/ipam.php:391 +msgid "Supernet wizard" +msgstr "スーパーネットウィザード" + +#: ../../enterprise/tools/ipam/ipam.php:401 +msgid "Supernet Map" +msgstr "スーパーネットマップ" + +#: ../../enterprise/tools/ipam/ipam.php:406 +msgid "Supernet Treeview" +msgstr "スーパーネットツリー表示" + +#: ../../enterprise/tools/ipam/ipam.php:432 +msgid "Operation View" +msgstr "操作画面" + +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:396 +#: ../../godmode/setup/file_manager.php:56 +msgid "Admin tools" +msgstr "管理ツール" + +#: ../../enterprise/tools/ipam/ipam_sites.php:70 +msgid "Successfully saved" +msgstr "保存しました" + +#: ../../enterprise/tools/ipam/ipam_sites.php:76 +#, php-format +msgid "Failed to save site %s" +msgstr "サイト %s の保存に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_sites.php:132 +#, php-format +msgid "Failed to delete site %s" +msgstr "サイト %s の削除に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_network.php:164 +msgid "No addresses found on this network" +msgstr "このネットワークにアドレスが見つかりませんでした" + +#: ../../enterprise/tools/ipam/ipam_network.php:315 +msgid "Edit address" +msgstr "アドレス編集" + +#: ../../enterprise/tools/ipam/ipam_network.php:328 +msgid "Disabled address" +msgstr "無効化アドレス" + +#: ../../enterprise/tools/ipam/ipam_network.php:328 +msgid "This address will not be updated by the server" +msgstr "このアドレスは、サーバにより更新されません" + +#: ../../enterprise/tools/ipam/ipam_network.php:424 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1398 +msgid "Not alive" +msgstr "停止" + +#: ../../enterprise/tools/ipam/ipam_network.php:455 +#: ../../enterprise/tools/ipam/ipam_network.php:534 +#: ../../enterprise/tools/ipam/ipam_network.php:576 +msgid "Change to automatic mode" +msgstr "自動モードに切り替える" + +#: ../../enterprise/tools/ipam/ipam_network.php:464 +#: ../../enterprise/tools/ipam/ipam_network.php:543 +#: ../../enterprise/tools/ipam/ipam_network.php:585 +msgid "Change to manual mode" +msgstr "手動モードに切り替える" + +#: ../../enterprise/tools/ipam/ipam_network.php:664 +msgid "Add comments" +msgstr "コメント追加" + +#: ../../enterprise/tools/ipam/ipam_network.php:692 +msgid "Update agent address" +msgstr "エージェントアドレス更新" + +#: ../../enterprise/tools/ipam/ipam_network.php:858 +msgid "Please, uncheck auto option to set manual agent." +msgstr "手動エージェントを設定するには、自動オプションを外してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 +msgid "There is no supernet name. Please introduce a name" +msgstr "スーパーネット名がありません。名前を設定してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 +msgid "There is no supernet address. Please introduce a address" +msgstr "スーパーネットアドレスがありません。アドレスを設定してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "スーパーネットマスクがありません。マスクを設定してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 +msgid "There is no valid address. Please introduce a address" +msgstr "正しいアドレスがありません。アドレスを設定してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 +msgid "There is no valid mask. Please introduce a mask" +msgstr "正しいマスクがありません。マスクを設定してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 +msgid "Supernet created" +msgstr "スーパーネットを作成しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 +msgid "Supernet not created" +msgstr "スーパーネットを作成できませんでした" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "DB にスーパーネット名が存在します。他の名前を選択してください" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 +msgid "Supernet updated" +msgstr "スーパーネットを更新しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 +msgid "Supernet not updated" +msgstr "スーパーネットを更新できませんでした" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 +msgid "Could not be deleted, please select supernet" +msgstr "削除できませんでした。スーパーネットを選択してください" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 +#: ../../enterprise/tools/ipam/ipam_list.php:395 +#: ../../enterprise/tools/ipam/ipam_action.php:121 +#: ../../enterprise/tools/ipam/ipam_action.php:264 +msgid "The location is not filled, please add a location." +msgstr "位置情報が入力されていません。位置情報を追加してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 +#, php-format +msgid "Successfully created %d networks" +msgstr "%d ネットワークを作成しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 +msgid "Failed to create networks" +msgstr "ネットワークの作成に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 +msgid "Entered range address is not valid" +msgstr "入力されたアドレス範囲が不正です" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 +msgid "Network name cannot be repeated in this supernet" +msgstr "このスーパーネットでネットワーク名は繰り返しできません" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 +msgid "Successfully added networks" +msgstr "ネットワークを追加しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 +msgid "Network could not be added" +msgstr "ネットワークを追加できませんでした" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 +msgid "No networks to be added to supernet" +msgstr "スーパーネットへ追加されるネットワークがありません" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 +msgid "supernet name could not be added, please select supernet" +msgstr "スーパーネット名を追加できませんでした。スーパーネットを選択してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 +msgid "Could not be deleted, please select supernet and network" +msgstr "削除できませんでした。スーパーネットとネットワークを選択してください。" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 +#, php-format +msgid "Failed to delete %d/%d networks from supernet" +msgstr "スーパーネットから %d/%d ネットワークの削除に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 +msgid "Successfully deleted network from supernet" +msgstr "スーパーネットからネットワークを削除しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 +#, php-format +msgid "Successfully deleted %d/%d networks from supernet" +msgstr "スーパーネットから %d/%d ネットワークを削除しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 +msgid "No items selected" +msgstr "テーマが選択されていません" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 +#: ../../enterprise/tools/ipam/ipam_excel.php:134 +#: ../../enterprise/tools/ipam/ipam_calculator.php:84 +msgid "Mask" +msgstr "マスク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 +msgid "Subnetting Mask" +msgstr "サブネットマスク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 +#: ../../enterprise/tools/ipam/ipam_list.php:129 +#: ../../enterprise/tools/ipam/ipam_list.php:619 +msgid "Site" +msgstr "サイト" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 +msgid "Update Supernet" +msgstr "スーパーネット更新" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 +msgid "New Supernet" +msgstr "新規スーパーネット" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 +#, php-format +msgid "%s supernets created" +msgstr "%s スーパーネットを作成しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 +msgid "supernets creation failed" +msgstr "スーパーネットの作成に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 +#: ../../enterprise/tools/ipam/ipam_list.php:93 +msgid "Search filter by name, network address or description" +msgstr "名前、ネットワークアドレス、説明による検索フィルタ" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 +msgid "Min. networks range" +msgstr "最小ネットワーク範囲" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 +msgid "Max. networks range" +msgstr "最大ネットワーク範囲" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 +msgid "Address / Masks" +msgstr "アドレス / マスク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 +msgid "Subnetting mask" +msgstr "サブネットマスク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 +msgid "Networks range" +msgstr "ネットワーク範囲" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 +msgid "Networks" +msgstr "ネットワーク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 +msgid "Delete network in supernet" +msgstr "スーパーネットのネットワーク削除" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 +msgid "Manage networks in supernet" +msgstr "スーパーネットのネットワーク管理" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 +msgid "Add network to supernet" +msgstr "スーパーネットへネットワーク追加" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 +msgid "Next network" +msgstr "次のネットワーク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 +msgid "Delete Supernet" +msgstr "スーパーネット削除" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 +#: ../../include/functions_visual_map_editor.php:793 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 +msgid "Show statistics" +msgstr "統計表示" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 +msgid "No Supernet found" +msgstr "スーパーネットがありません" + +#: ../../enterprise/tools/ipam/ipam_list.php:151 +#: ../../enterprise/tools/ipam/ipam_list.php:626 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 +msgid "Vlan" +msgstr "VLAN" + +#: ../../enterprise/tools/ipam/ipam_list.php:412 +#: ../../enterprise/tools/ipam/ipam_action.php:150 +#: ../../enterprise/tools/ipam/ipam_action.php:341 +msgid "Incorrect format in Subnet field" +msgstr "ネットワークの範囲指定が正しくありません。" + +#: ../../enterprise/tools/ipam/ipam_list.php:437 +#: ../../enterprise/tools/ipam/ipam_action.php:244 +#, php-format +msgid "Could not be created: %s" +msgstr "作成できませんでした: %s" + +#: ../../enterprise/tools/ipam/ipam_list.php:446 +#, php-format +msgid "%s networks created" +msgstr "%s ネットワークを作成しました" + +#: ../../enterprise/tools/ipam/ipam_list.php:448 +msgid "Networks creation failed" +msgstr "ネットワーク作成エラー" + +#: ../../enterprise/tools/ipam/ipam_list.php:513 +msgid "No networks found" +msgstr "ネットワークが見つかりません" + +#: ../../enterprise/tools/ipam/ipam_list.php:649 +msgid "IPs" +msgstr "IP" + +#: ../../enterprise/tools/ipam/ipam_list.php:734 +msgid "Edit network" +msgstr "ネットワーク編集" + +#: ../../enterprise/tools/ipam/ipam_list.php:745 +msgid "Delete network" +msgstr "ネットワーク削除" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 +#: ../../operation/agentes/interface_view.functions.php:93 +#: ../../operation/agentes/interface_view.functions.php:131 +#: ../../operation/agentes/ver_agente.php:1410 +msgid "Interfaces" +msgstr "インタフェース" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +msgid "succesfully created" +msgstr "作成しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +msgid "not created" +msgstr "作成できませんでした" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +msgid "exists in bbdd, please select other name" +msgstr "DB に存在します。他の名前を選択してください。" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 +msgid "please, select VLAN to be created" +msgstr "作成する VLAN を選択してください" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 +msgid "Please enter adress, for search vlans" +msgstr "VLAN 検索のためのアドレスを入力してください" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:712 +msgid "SNMP community" +msgstr "SNMPコミュニティ" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 +msgid "privacy pass" +msgstr "暗号化パスワード" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 +#: ../../godmode/wizards/HostDevices.class.php:1248 +msgid "Context" +msgstr "コンテキスト" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 +msgid "Run" +msgstr "実行" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 +msgid "Vlan name" +msgstr "VLAN 名" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 +#: ../../enterprise/tools/ipam/ipam_ajax.php:489 +msgid "Created" +msgstr "作成" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 +msgid "No vlans found" +msgstr "VLAN がありません" + +#: ../../enterprise/tools/ipam/ipam_action.php:146 +#: ../../enterprise/tools/ipam/ipam_action.php:337 +msgid "Invalid network address" +msgstr "不正なネットワークアドレス" + +#: ../../enterprise/tools/ipam/ipam_action.php:212 +#, php-format +msgid "Network could not be added to supernet %s (%s)" +msgstr "スーパーネット %s (%s) にネットワークを追加できませんでした" + +#: ../../enterprise/tools/ipam/ipam_action.php:220 +#, php-format +msgid "Network added to supernet %s (%s)" +msgstr "スーパーネット %s (%s) へネットワーク追加しました" + +#: ../../enterprise/tools/ipam/ipam_action.php:229 +#, php-format +msgid "Network name already exists in supernet %s (%s)" +msgstr "スーパーネット %s (%s) にネットワーク名がすでに存在します" + +#: ../../enterprise/tools/ipam/ipam_action.php:445 +#: ../../operation/agentes/pandora_networkmap.view.php:1613 +msgid "Could not be updated." +msgstr "更新できませんでした。" + +#: ../../enterprise/tools/ipam/ipam_action.php:451 +#: ../../update_manager_client/views/offline.php:78 +#: ../../update_manager_client/views/online.php:94 +msgid "Successfully updated." +msgstr "更新しました。" + +#: ../../enterprise/tools/ipam/ipam_action.php:456 +#: ../../include/functions_reporting.php:2867 +msgid "No changes found." +msgstr "変更が見つかりません。" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 +#: ../../godmode/modules/manage_nc_groups.php:64 +msgid "Could not be created. Blank name" +msgstr "作成できませんでした。名前が空です。" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 +#: ../../godmode/modules/manage_nc_groups.php:119 +#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 +#: ../../godmode/events/event_edit_filter.php:221 +msgid "Not updated. Error updating data" +msgstr "データの更新に失敗しました。" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 +#, php-format +msgid "%d/%d items deleted" +msgstr "%d/%d アイテムを削除しました" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 +msgid "Failed to delete items" +msgstr "アイテムの削除に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 +msgid "Search filter by name or network address" +msgstr "名前またはネットワークアドレスでの検索フィルタ" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 +msgid "No locations found" +msgstr "場所がありません" + +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 +msgid "There are no defined network locations" +msgstr "定義済のネットワークの場所がありません" + +#: ../../enterprise/tools/ipam/ipam_excel.php:135 +msgid "Subneting Mask" +msgstr "サブネットマスク" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:285 +msgid "There is not an available IP." +msgstr "空き IP がありません。" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:287 +msgid "Next available IP Address is:" +msgstr "次の空き IP アドレス:" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:313 +msgid "Reserve this IP now" +msgstr "この IP を予約する" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:329 +msgid "Manage this IP now" +msgstr "この IP を管理対象にする" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:374 +msgid "Operating system" +msgstr "オペレーティングシステム" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:384 +msgid "This agent has other IPs" +msgstr "このエージェントには他の IP があります" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:393 +msgid "Generate events" +msgstr "イベント生成" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:445 +msgid "Leases Dhcp" +msgstr "DHCP リース" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:455 +msgid "leased mode" +msgstr "リースモード" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:468 +msgid "leased expiration" +msgstr "リース期限切れ" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:473 +#: ../../include/class/NetworkMap.class.php:2910 +msgid "MAC" +msgstr "MAC" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:499 +msgid "Edited" +msgstr "編集" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:509 +msgid "Tracking" +msgstr "トラッキング" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:524 +msgid "Ping" +msgstr "Ping" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:540 ../../include/ajax/events.php:1365 +#, php-format +msgid "Executing command: %s" +msgstr "コマンド実行中: %s" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:551 ../../include/ajax/events.php:1382 +#: ../../include/ajax/events.php:1409 +msgid "Execute again" +msgstr "再実行" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:565 +msgid "Ping to host" +msgstr "ホストへの Ping" + +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 +msgid "Found supernets" +msgstr "見つかったスーパーネット" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 +msgid "There is no VLAN name. Please introduce a name" +msgstr "VLAN 名がありません。名前を設定してください" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 +msgid "Custom ID is not valid" +msgstr "カスタム ID が不正です" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 +msgid "Vlan created" +msgstr "VLAN を作成しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 +msgid "Vlan not created" +msgstr "VLAN を作成できませんでした" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 +msgid "VLAN name exists in database, please select another name" +msgstr "VLAN 名が DB に存在します。他の名前を選択してください" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 +msgid "There is no vlan name. Please introduce a name" +msgstr "VLAN 名がありません。名前を設定してください。" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 +msgid "Vlan updated" +msgstr "VLAN を更新しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 +msgid "Vlan not updated" +msgstr "VLAN を更新できませんでした" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 +msgid "Vlan name exists in database, please select other name" +msgstr "VLAN 名が DB に存在します。他の名前を選択してください" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 +msgid "Could not be deleted, please select vlan" +msgstr "削除できませんでした。VLAN を選択してください。" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 +msgid "Network name cannot be repeated in this Vlan" +msgstr "この VLAN でネットワーク名は繰り返せません" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 +msgid "Network name could not be added, please select network" +msgstr "ネットワーク名を追加できませんでした。ネットワークを選択してください。" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 +msgid "Vlan name could not be added, please select vlan" +msgstr "VLAN 名を追加できませんでした。VLAN を選択してください。" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 +msgid "Could not be deleted, please select VLAN and network" +msgstr "削除できませんでした。VLAN およびネットワークを選択してください" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 +#, php-format +msgid "Failed to delete %d/%d networks from VLAN" +msgstr "VLAN から %d/%d ネットワークの削除に失敗しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 +msgid "Successfully deleted network from VLAN" +msgstr "VLAN からネットワークを削除しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 +#, php-format +msgid "Successfully deleted %d/%d networks from VLAN" +msgstr "VLAN から %d/%d ネットワークを削除しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 +#, php-format +msgid "%s VLAN networks have been created" +msgstr "%s VLAN ネットワークを作成しました" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 +msgid "Could not create VLAN networks" +msgstr "VLAN ネットワークを作成できませんでした" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 +msgid "Update Vlan" +msgstr "VLAN 更新" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 +msgid "New Vlan" +msgstr "新規 VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 +msgid "Search filter by name" +msgstr "名前での検索フィルタ" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 +msgid "Delete network to vlan" +msgstr "VLAN のネットワーク削除" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 +msgid "Manage networks in VLAN" +msgstr "VLAN のネットワーク管理" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 +msgid "Not assigned networks" +msgstr "未割当ネットワーク" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 +msgid "Add network to Vlan" +msgstr "VLAN へネットワーク追加" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 +msgid "Create network" +msgstr "ネットワーク作成" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 +msgid "Delete Vlan" +msgstr "VLAN 削除" + +#: ../../enterprise/tools/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "アドレス" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:64 +#: ../../enterprise/tools/ipam/ipam_calculator.php:66 +#: ../../enterprise/tools/ipam/ipam_calculator.php:87 +#: ../../enterprise/tools/ipam/ipam_calculator.php:90 +#: ../../enterprise/tools/ipam/ipam_calculator.php:93 +#: ../../enterprise/tools/ipam/ipam_calculator.php:96 +msgid "Example:" +msgstr "例:" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:70 +msgid "Bit mask" +msgstr "ビットマスク" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:71 +msgid "Net mask" +msgstr "ネットマスク" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:74 +msgid "Mask format" +msgstr "マスクフォーマット" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:105 +msgid "Calculate" +msgstr "計算" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:112 +msgid "Address field is empty" +msgstr "アドレスフィールドが空です" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:120 +msgid "Mask field is empty" +msgstr "マスクフィールドが空です" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:139 +#: ../../enterprise/tools/ipam/ipam_calculator.php:152 +msgid "Incorrect address format" +msgstr "アドレスフォーマットが不正です" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:144 +#: ../../enterprise/tools/ipam/ipam_calculator.php:157 +#: ../../enterprise/tools/ipam/ipam_calculator.php:162 +msgid "Incorrect mask format" +msgstr "マスクフォーマットが不正です" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:190 +msgid "Network mask" +msgstr "ネットワークマスク" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:211 +msgid "Network wildcard" +msgstr "ネットワークワイルドカード" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:220 +msgid "Network address" +msgstr "ネットワークアドレス" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:229 +msgid "Broadcast address" +msgstr "ブロードキャストアドレス" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:238 +msgid "First valid IP" +msgstr "最初の有効IP" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:247 +msgid "Last valid IP" +msgstr "最後の有効IP" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:257 +msgid "Hosts/Net" +msgstr "ホスト/ネット" + +#: ../../enterprise/tools/ipam/ipam_editor.php:56 +msgid "Network not found" +msgstr "ネットワークが見つかりません" + +#: ../../enterprise/tools/ipam/ipam_editor.php:122 +msgid "Format: IP/Mask" +msgstr "フォーマット: IP/マスク" + +#: ../../enterprise/tools/ipam/ipam_editor.php:136 +msgid "Examples" +msgstr "例" + +#: ../../update_manager_client/views/offline.php:65 +msgid "Drop the package here or" +msgstr "ここにパッケージをドロップするかまたは" + +#: ../../update_manager_client/views/offline.php:66 +msgid "Browse it" +msgstr "ブラウズする" + +#: ../../update_manager_client/views/offline.php:67 +msgid "The package has been uploaded successfully." +msgstr "パッケージをアップロードしました。" + +#: ../../update_manager_client/views/offline.php:68 +#, php-format +msgid "" +"Please keep in mind that this package is going to override your actual %s files and " +"that it's recommended to conduct a backup before continuing the updating process." +msgstr "" +"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバックアップ" +"を取ることをお勧めします。" + +#: ../../update_manager_client/views/offline.php:69 +msgid "Click on the file below to begin." +msgstr "開始するには以下のファイルをクリックします。" + +#: ../../update_manager_client/views/offline.php:70 +#: ../../update_manager_client/views/online.php:123 +#: ../../update_manager_client/views/online.php:164 +msgid "This action will upgrade this console to version " +msgstr "このアクションは、このコンソールを次のバージョンへアップグレードします: " + +#: ../../update_manager_client/views/offline.php:71 +msgid "This action will upgrade all servers to version " +msgstr "このアクションは全サーバを次のバージョンへアップグレードします: " + +#: ../../update_manager_client/views/offline.php:73 +#: ../../update_manager_client/views/online.php:89 +msgid "Updating to" +msgstr "アップデート中:" + +#: ../../update_manager_client/views/offline.php:74 +#: ../../update_manager_client/views/online.php:90 +msgid "Do you really want to leave our brilliant application?" +msgstr "あなたは本当にこの素晴らしいアプリケーションを使いませんか?" + +#: ../../update_manager_client/views/offline.php:75 +#: ../../update_manager_client/views/online.php:91 +msgid "There are no updates available" +msgstr "アップデートがありません" + +#: ../../update_manager_client/views/offline.php:76 +#: ../../update_manager_client/views/online.php:92 +msgid "Searching for updates..." +msgstr "アップデートを検索中..." + +#: ../../update_manager_client/views/offline.php:77 +#: ../../update_manager_client/views/online.php:93 +msgid "Package" +msgstr "パッケージ" + +#: ../../update_manager_client/views/offline.php:79 +msgid "Package rejected. These package changes will not apply." +msgstr "パッケージを受け付けられません。これらのパッケージは適用されません。" + +#: ../../update_manager_client/views/offline.php:81 +#, php-format +msgid "" +"This update does not correspond with next version of %s. Are you sure you want to " +"install it?" +msgstr "" +"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしいですか?" + +#: ../../update_manager_client/views/offline.php:82 +msgid "" +"This server update does not correspond with current console version. Are you sure you " +"want to install it?" +msgstr "" +"このサーバアップデートは、現在のコンソールバージョンに対応していません。 インストール" +"してもよろしいですか?" + +#: ../../update_manager_client/views/offline.php:83 +msgid "" +"File name does not match required format: package_NUMBER.oum or " +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers with " +"decimals." +msgstr "" +"ファイル名が所定の形式と一致しません: package_数字.oum または " +"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含むことがあ" +"ります。" + +#: ../../update_manager_client/views/offline.php:84 +msgid "Files included in this package" +msgstr "パッケージに含まれるファイル" + +#: ../../update_manager_client/views/offline.php:85 +msgid "Ignore" +msgstr "無視する" + +#: ../../update_manager_client/views/offline.php:86 +msgid "Verify package signature" +msgstr "パッケージの署名を確認" + +#: ../../update_manager_client/views/offline.php:87 +#, php-format +msgid "" +"Copy into the textarea the signature validation token you can retrieve from %s and " +"press OK to verify the package, press ignore to avoid signature verification" +msgstr "" +"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケージを確認" +"します。'無視する' を押すと署名の確認を回避します。" + +#: ../../update_manager_client/views/offline.php:88 +msgid "" +"This server update does not correspond with current console version and is not going " +"to be installed unless patches are allowed. Please enable patches in update manager " +"settings." +msgstr "" +"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ適用が許" +"可されていない限りインストールされません。 アップデートマネージャの設定でパッチを有効" +"にしてください。" + +#: ../../update_manager_client/views/offline.php:89 +#, php-format +msgid "" +"This update does not correspond with next version of %s and is not going to be " +"installed unless patches are allowed. Please enable patches in update manager " +"settings." +msgstr "" +"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されていない限" +"りインストールされません。 アップデートマネージャの設定でパッチを有効にしてください。" + +#: ../../update_manager_client/views/register.php:47 +msgid "Register to Warp Update" +msgstr "ワープアップデートに登録" + +#: ../../update_manager_client/views/register.php:54 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "この %s コンソールを最新のアップデートで最新の状態に保ちます。" + +#: ../../update_manager_client/views/register.php:61 +#, php-format +msgid "" +"When you subscribe to the Warp update service for %s, you accept that we\n" +" register your %s instance as an identifier on a database owned by %s. " +"This data will solely be used to\n" +" provide you with information about %s and will not be conceded to third " +"parties. You can unregister from\n" +" said database at any time from the Warp update options." +msgstr "" +"%s ワープアップデートサーバを購読すると、\n" +" %s インスタンスを %s が所有するデータベースの識別子として登録します。 この" +"データは、\n" +" %s に関する情報提供のために利用され、第三者に提供されることはありません。 " +"登録は\n" +" ワープアップデートオプションからいつでも解除できます。" + +#: ../../update_manager_client/views/register.php:74 +msgid "Visit our privacy policy for more information" +msgstr "詳細についてはプライバシーポリシーをご覧ください" + +#: ../../update_manager_client/views/register.php:78 +#: ../../include/class/Diagnostics.class.php:1910 +msgid "Your email" +msgstr "あなたのメールアドレス" + +#: ../../update_manager_client/views/register.php:97 +msgid "OK!" +msgstr "OK!" + +#: ../../update_manager_client/views/register.php:112 +msgid "Are you sure you don't want to use Warp update?" +msgstr "ワープアップデートを使用しませんが、よいですか?" + +#: ../../update_manager_client/views/register.php:116 +msgid "" +"You will need to update your system manually, through source code or RPM\n" +" packages to be up to date with latest updates." +msgstr "" +"ソースコードまたは RPM を使用して、システムを手動で更新する必要があります\n" +" パッケージはアップデートで最新になります。" + +#: ../../update_manager_client/views/register.php:208 +msgid "Unsuccessful subscription" +msgstr "購読に失敗しました" + +#: ../../update_manager_client/views/register.php:213 +msgid "Pandora successfully subscribed with UID: " +msgstr "次のUIDで購読しました: " + +#: ../../update_manager_client/views/online.php:44 +msgid "The latest version of package installed is" +msgstr "最新のインストールされている最新バージョンのパッケージ:" + +#: ../../update_manager_client/views/online.php:64 +msgid "Update to next version" +msgstr "次のバージョンに更新" + +#: ../../update_manager_client/views/online.php:65 +msgid "Update to latest version" +msgstr "最新バージョンに更新" + +#: ../../update_manager_client/views/online.php:124 +#: ../../update_manager_client/views/online.php:165 +msgid "Update to" +msgstr "次に更新:" + +#: ../../update_manager_client/views/online.php:145 +#: ../../update_manager_client/views/online.php:149 +msgid "Failed to update to " +msgstr "次へのアップデートに失敗しました: " + +#: ../../update_manager_client/views/online.php:188 +msgid "Failed to update:" +msgstr "アップデートに失敗しました:" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 +msgid "Next update" +msgstr "次のアップデート" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 +msgid "Show details" +msgstr "詳細表示" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 +#, php-format +msgid "%s update(s) available more" +msgstr "%s アップデートが利用可能" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 +msgid "details" +msgstr "詳細" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 +msgid "Failed creating temporary directory." +msgstr "一時ディレクトリの作成に失敗しました。" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 +msgid "Failed storing uploaded file." +msgstr "アップロードしたファイルの保存に失敗しました。" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 +#, php-format +msgid "Invalid extension. The package needs to be in `%s` or `%s` format." +msgstr "拡張子が無効です。 パッケージは `%s` または `%s` 形式である必要があります。" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 +msgid "Failed uploading file." +msgstr "ファイルのアップロードに失敗しました。" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 +msgid "Signatures does not match." +msgstr "署名が一致しません。" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 +#, php-format +msgid "Update %s successfully installed." +msgstr "アップデート %s をインストールしました。" + +#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 +#, php-format +msgid "Failed while updating: %s" +msgstr "アップデートに失敗しました: %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:712 +#, php-format +msgid "server update %d" +msgstr "サーバアップデート %d" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:714 +#, php-format +msgid "console update %d" +msgstr "コンソールアップデート %d" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:734 +#, php-format +msgid "Downloading %s %.2f/ %.2f MB." +msgstr "%s のダウンロード中 %.2f/ %.2f MB" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:745 +#, php-format +msgid "Downloading %.2f MB" +msgstr "ダウンロード中 %.2f MB" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 +#, php-format +msgid "Failed to analyze package: %s" +msgstr "パッケージの分析に失敗しました: %s" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 +msgid "Searching update package" +msgstr "アップデートパッケージを検索中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 +msgid "Retrieving update" +msgstr "アップデートを取得中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 +msgid "Extracting package" +msgstr "パッケージを展開中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 +msgid "Testing files" +msgstr "ファイルのテスト中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 +#, php-format +msgid "Applying MR %s" +msgstr "MR %s 適用中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 +msgid "Applying file updates" +msgstr "ファイルアップデートを適用中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 +msgid "Retrieving server update" +msgstr "サーバアップデートを取得中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 +msgid "Cleaning" +msgstr "クリーニング中" + +#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 +msgid "Updating to " +msgstr "次へのアップデート中: " + +#: ../../extensions/disabled/matrix_events.php:30 +msgid "Matrix events" +msgstr "Matrix イベント" + +#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 +msgid "WebService engine has not been started, please check documentation." +msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" + +#: ../../extensions/quick_shell.php:152 +msgid "Retry" +msgstr "再試行" + +#: ../../extensions/quick_shell.php:196 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:204 +msgid "Connect" +msgstr "接続" + +#: ../../extensions/quick_shell.php:232 +msgid "Please use SSH or Telnet." +msgstr "SSH または Telnet を利用してください。" + +#: ../../extensions/quick_shell.php:266 +msgid "WebService engine is not working properly, please check documentation." +msgstr "" +"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。" + +#: ../../extensions/quick_shell.php:425 +#, php-format +msgid "%d Updated" +msgstr "%d 更新" + +#: ../../extensions/quick_shell.php:428 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d 更新、WebSocket サービスを再起動してください。" + +#: ../../extensions/quick_shell.php:438 +msgid "Quickshell" +msgstr "クイックシェル" + +#: ../../extensions/quick_shell.php:448 +msgid "Gotty path" +msgstr "Gotty パス" + +#: ../../extensions/quick_shell.php:458 +msgid "Gotty host" +msgstr "Gotty ホスト" + +#: ../../extensions/quick_shell.php:468 +msgid "Gotty ssh port" +msgstr "Gotty ssh ポート" + +#: ../../extensions/quick_shell.php:478 +msgid "Gotty telnet port" +msgstr "Gotty telnet ポート" + +#: ../../extensions/quick_shell.php:495 +msgid "Gotty user" +msgstr "Gotty ユーザ" + +#: ../../extensions/quick_shell.php:505 +msgid "Gotty password" +msgstr "Gotty パスワード" + +#: ../../extensions/quick_shell.php:545 +msgid "QuickShell" +msgstr "クイックシェル" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "拡張アップローダ" + +#: ../../extensions/extension_uploader.php:72 +msgid "Success to upload extension" +msgstr "拡張をアップロードしました" + +#: ../../extensions/extension_uploader.php:73 +msgid "Fail to upload extension" +msgstr "拡張のアップロードに失敗しました" + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload extension" +msgstr "拡張のアップロード" + +#: ../../extensions/extension_uploader.php:83 +msgid "Upload the extension as a zip file." +msgstr "zipファイルで拡張をアップロードしてください。" + +#: ../../extensions/extension_uploader.php:85 +msgid "Upload enterprise extension" +msgstr "Enterprise 拡張のアップロード" + +#: ../../extensions/extension_uploader.php:98 +msgid "Extension uploader" +msgstr "拡張アップローダ" + +#: ../../extensions/resource_registration.php:55 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "レポート '%s' に、アイテム '%s' を追加しました。" + +#: ../../extensions/resource_registration.php:60 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "レポート '%s' にアイテム '%s' の追加でエラーになりました。" + +#: ../../extensions/resource_registration.php:96 +#, php-format +msgid "Error create '%s' report, the name exist and there aren't free name." +msgstr "レポート '%s' でエラーです。指定の名前はすでに使われています。" + +#: ../../extensions/resource_registration.php:104 +#, php-format +msgid "Warning create '%s' report, the name exist, the report have a name %s." +msgstr "" +"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s です。" + +#: ../../extensions/resource_registration.php:113 +msgid "Error the report haven't name." +msgstr "レポートに名前がありません。" + +#: ../../extensions/resource_registration.php:127 +msgid "Error the report haven't group." +msgstr "レポートにグループがありません。" + +#: ../../extensions/resource_registration.php:140 +#, php-format +msgid "Success create '%s' report." +msgstr "レポート '%s' を作成しました。" + +#: ../../extensions/resource_registration.php:141 +#, php-format +msgid "Error create '%s' report." +msgstr "レポート '%s' の作成に失敗しました。" + +#: ../../extensions/resource_registration.php:435 +#: ../../extensions/resource_registration.php:457 +#: ../../extensions/resource_registration.php:468 +#, php-format +msgid "Success add '%s' content." +msgstr "コンテンツ '%s'を追加しました。" + +#: ../../extensions/resource_registration.php:445 +#, php-format +msgid "Success add '%s' SLA." +msgstr "SLA '%s' を追加しました。" + +#: ../../extensions/resource_registration.php:446 +#, php-format +msgid "Error add '%s' SLA." +msgstr "SLA '%s' の追加に失敗しました。" + +#: ../../extensions/resource_registration.php:489 +#, php-format +msgid "Error create '%s' visual map, lost tag name." +msgstr "ビジュアルマップ '%s' の作成に失敗しました。タグ名がありません。" + +#: ../../extensions/resource_registration.php:532 +#, php-format +msgid "Error create '%s' visual map, the name exist and there aren't free name." +msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前がすでに存在します。" + +#: ../../extensions/resource_registration.php:540 +#, php-format +msgid "Warning create '%s' visual map, the name exist, the report have a name %s." +msgstr "" +"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s です。" + +#: ../../extensions/resource_registration.php:552 +#, php-format +msgid "Success create '%s' visual map." +msgstr "ビジュアルマップ '%s' を作成しました。" + +#: ../../extensions/resource_registration.php:553 +#, php-format +msgid "Error create '%s' visual map." +msgstr "ビジュアルマップ '%s' の作成に失敗しました。" + +#: ../../extensions/resource_registration.php:718 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "アイテムタイプ '%d' のビジュアルマップを作成しました。" + +#: ../../extensions/resource_registration.php:719 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "アイテムタイム '%d' のビジュアルマップを作成できませんでした。" + +#: ../../extensions/resource_registration.php:742 +#: ../../extensions/resource_registration.php:763 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "'%s'ビジュアルマップ用エージェント項目を作成しました。" + +#: ../../extensions/resource_registration.php:743 +#: ../../extensions/resource_registration.php:764 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "'%s'ビジュアルマップ用エージェント項目の作成に失敗しました。" + +#: ../../extensions/resource_registration.php:1028 +#, php-format +msgid "Success create '%s' component." +msgstr "コンポーネント '%s' を作成しました。" + +#: ../../extensions/resource_registration.php:1029 +#, php-format +msgid "Error create '%s' component." +msgstr "コンポーネント '%s' の作成に失敗しました。" + +#: ../../extensions/resource_registration.php:1095 +#: ../../extensions/resource_registration.php:1158 +msgid "Resource registration" +msgstr "リソース登録" + +#: ../../extensions/resource_registration.php:1114 +#, php-format +msgid "This node is configured with centralized mode. Go to %s to create a policy." +msgstr "このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。" + +#: ../../extensions/resource_registration.php:1123 +msgid "This extension makes registering resource templates easier." +msgstr "この拡張機能により、リソーステンプレートの登録が簡単になります。" + +#: ../../extensions/resource_registration.php:1123 +msgid "Here you can upload a resource template in .ptr format." +msgstr "ここに、.ptr フォーマットでリソーステンプレートをアップロードできます。" + +#: ../../extensions/resource_registration.php:1123 +#, php-format +msgid "" +"Please refer to our documentation for more information on how to obtain and use %s " +"resources." +msgstr "" +"%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してください。" + +#: ../../extensions/resource_registration.php:1123 +msgid "" +"You can get more resurces in our Public Resource Library" +msgstr "" +"公開リソースライブラリから追加の" +"リソースを入手できます。" + +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +msgid "API checker" +msgstr "API チェッカ" + +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "%s コンソールURL" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "API パス" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "アクション (get または set)" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "ID 2" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "Return Type" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "Other Mode" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "詳細 URL" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "呼び出しパラメータ" + +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "アクション: get操作: module_last_value id:63" + +#: ../../extensions/api_checker.php:207 +msgid "Custom URL" +msgstr "カスタムURL" + +#: ../../extensions/api_checker.php:213 +msgid "Call" +msgstr "呼び出し" + +#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +msgid "Show URL" +msgstr "URL を表示" + +#: ../../extensions/api_checker.php:235 +msgid "Hide URL" +msgstr "URL を隠す" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:453 +msgid "DB Schema check" +msgstr "DBスキーマチェック" + +#: ../../extensions/db_status.php:43 +msgid "" +"This extension checks the DB is correct. Because sometimes the old DB from a " +"migration has not some fields in the tables or the data is changed." +msgstr "" +"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーションでテー" +"ブルのフィールドが不足していたりデータが変更されていなかったりするためです。" + +#: ../../extensions/db_status.php:46 +msgid "At the moment the checks is for MySQL/MariaDB." +msgstr "現時点では、MySQL/MariaDB 用です。" + +#: ../../extensions/db_status.php:52 +msgid "DB settings" +msgstr "DB 設定" + +#: ../../extensions/db_status.php:56 +msgid "DB User with privileges" +msgstr "権限のある DB ユーザ" + +#: ../../extensions/db_status.php:58 +msgid "DB Password for this user" +msgstr "この DB ユーザのパスワード" + +#: ../../extensions/db_status.php:62 +msgid "DB Hostname" +msgstr "DB ホスト名" + +#: ../../extensions/db_status.php:64 +msgid "DB Name (temporal for testing)" +msgstr "DB 名 (一時的なテスト用)" + +#: ../../extensions/db_status.php:72 +msgid "Execute Test" +msgstr "テスト実行" + +#: ../../extensions/db_status.php:108 +msgid "Unsuccessful connected to the DB" +msgstr "DB 接続に失敗しました" + +#: ../../extensions/db_status.php:119 +msgid "Unsuccessful created the testing DB" +msgstr "テスト DB の作成に失敗しました" + +#: ../../extensions/db_status.php:135 +msgid "Unsuccessful installed tables into the testing DB" +msgstr "テスト DB へのテーブル設定に失敗しました" + +#: ../../extensions/db_status.php:219 +#, php-format +msgid "Success! %s DB contains all tables" +msgstr "成功! %s DB はすべてのテーブルを含んでいます" + +#: ../../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:343 +#, php-format +msgid "Unsuccessful the table %s has not the field %s" +msgstr "テーブル %s に、フィールド %s がありません。" + +#: ../../extensions/db_status.php:408 +msgid "Successful all the tables have the correct fields" +msgstr "すべてのテーブルにおいてフィールドは正しい状態です" + +#: ../../extensions/agents_alerts.php:37 +msgid "Agents/Alerts view" +msgstr "エージェント/アラート 表示" + +#: ../../extensions/resource_exportation.php:50 +#: ../../extensions/resource_exportation.php:420 +msgid "Resource exportation" +msgstr "リソースのエクスポート" + +#: ../../extensions/resource_exportation.php:423 +msgid "This extension makes exportation of resource template more easy." +msgstr "この拡張機能により、リソーステンプレートのエクスポートがより簡単になります。" + +#: ../../extensions/resource_exportation.php:423 +msgid "You can export resource templates in .ptr format." +msgstr "リソーステンプレートを .ptr フォーマットでエクスポートできます。" + +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "拡張がインストールされていません" + +#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 +msgid "Administration view" +msgstr "管理画面" + +#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 +msgid "Files repository manager" +msgstr "ファイルリポジトリ管理" + +#: ../../extensions/files_repo.php:148 +msgid "" +"Problem uploading. Please check this PHP runtime variable values:
      "
    +"post_max_size (currently "
    +msgstr ""
    +"アップロードに問題があります。 次の PHP ランタイム変数値を確認してください: 
     "
    +"post_max_size(現在 "
    +
    +#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
    +msgid "Files repository"
    +msgstr "ファイルリポジトリ"
    +
    +#: ../../extensions/dbmanager.php:95
    +msgid "Database interface"
    +msgstr "DBインタフェース"
    +
    +#: ../../extensions/dbmanager.php:108
    +msgid ""
    +"Warning, you are accessing the database directly. You can leave the system "
    +"inoperative if you run an inappropriate SQL statement"
    +msgstr ""
    +"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行すると、シ"
    +"ステムが動作しなくなる可能性があります"
    +
    +#: ../../extensions/dbmanager.php:146
    +#, 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:193
    +msgid "Select query target"
    +msgstr "クエリ対象を選択"
    +
    +#: ../../extensions/dbmanager.php:200
    +msgid "Execute SQL"
    +msgstr "SQLの実行"
    +
    +#: ../../extensions/dbmanager.php:241
    +msgid "Error querying database node"
    +msgstr "データベースノードへのクエリ中にエラー"
    +
    +#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:453
    +msgid "DB interface"
    +msgstr "DBインタフェース"
    +
    +#: ../../extensions/agents_modules.php:396
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1969
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
    +msgid "Show module status"
    +msgstr "モジュールの状態表示"
    +
    +#: ../../extensions/agents_modules.php:397
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1970
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
    +msgid "Show module data"
    +msgstr "モジュールの値表示"
    +
    +#: ../../extensions/agents_modules.php:400
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1965
    +#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
    +msgid "Information to be shown"
    +msgstr "表示情報"
    +
    +#: ../../extensions/agents_modules.php:465 ../../include/functions_reports.php:795
    +msgid "Agents/Modules"
    +msgstr "エージェント/モジュール"
    +
    +#: ../../extensions/agents_modules.php:564
    +msgid "Agent/module view"
    +msgstr "エージェント/モジュール表示"
    +
    +#: ../../extensions/agents_modules.php:605
    +msgid "Filters "
    +msgstr "フィルタ "
    +
    +#: ../../extensions/agents_modules.php:605
    +msgid "Secondary groups and agent subgroups will be taken into account."
    +msgstr "セカンダリグループとエージェントサブグループが考慮されます。"
    +
    +#: ../../extensions/agents_modules.php:750 ../../include/functions_reporting.php:3141
    +msgid "There are no agents with modules"
    +msgstr "モジュールが定義されたエージェントがありません。"
    +
    +#: ../../extensions/agents_modules.php:765
    +msgid "Previous modules"
    +msgstr "前のモジュールへ"
    +
    +#: ../../extensions/agents_modules.php:791
    +msgid "More modules"
    +msgstr "次のモジュールへ"
    +
    +#: ../../extensions/agents_modules.php:934
    +#: ../../include/functions_reporting_html.php:2184
    +msgid "Orange cell when the module has fired alerts"
    +msgstr "オレンジのセルは、アラート発生中を示します。"
    +
    +#: ../../extensions/agents_modules.php:936
    +#: ../../include/functions_reporting_html.php:2185
    +msgid "Red cell when the module has a critical status"
    +msgstr "赤のセルは、障害状態を示します。"
    +
    +#: ../../extensions/agents_modules.php:939
    +#: ../../include/functions_reporting_html.php:2186
    +msgid "Yellow cell when the module has a warning status"
    +msgstr "黄色のセルは、警告状態を示します。"
    +
    +#: ../../extensions/agents_modules.php:941
    +#: ../../include/functions_reporting_html.php:2187
    +msgid "Green cell when the module has a normal status"
    +msgstr "緑のセルは、正常状態を示します。"
    +
    +#: ../../extensions/agents_modules.php:943
    +#: ../../include/functions_reporting_html.php:2188
    +msgid "Grey cell when the module has an unknown status"
    +msgstr "グレーのセルは、不明状態を示します。"
    +
    +#: ../../extensions/agents_modules.php:945
    +msgid "Cell turns blue when the module is in 'not initialize' status"
    +msgstr "モジュールが未初期化状態のときにセルが青になります。"
    +
    +#: ../../extensions/agents_modules.php:959
    +msgid "Agents/Modules view"
    +msgstr "エージェント/モジュール表示"
    +
    +#: ../../extensions/pandora_logs.php:29
    +msgid "Cannot find file"
    +msgstr "ファイルが見つかりません"
    +
    +#: ../../extensions/pandora_logs.php:34
    +msgid "File is too large than PHP memory allocated in the system."
    +msgstr "PHP のメモリ割り当てよりもファイルが大きすぎます。"
    +
    +#: ../../extensions/pandora_logs.php:35
    +msgid "The preview file is imposible."
    +msgstr "ファイルのプレビューはできません。"
    +
    +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
    +msgid "The folder /var/log/pandora must have pandora:apache and its content too."
    +msgstr "/var/log/pandora フォルダ以下は、pandora:apache である必要があります。"
    +
    +#: ../../extensions/pandora_logs.php:67
    +msgid "System logfile viewer"
    +msgstr "システムログファイルビューワ"
    +
    +#: ../../extensions/pandora_logs.php:69
    +#, php-format
    +msgid "Use this tool to view your %s logfiles directly on the console"
    +msgstr "コンソールで %s ログファイルを直接参照するためにこのツールを利用"
    +
    +#: ../../extensions/pandora_logs.php:71
    +msgid ""
    +"You can choose the amount of information shown in general setup (Log size limit in "
    +"system logs viewer extension), "
    +msgstr ""
    +"一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できます。 "
    +
    +#: ../../extensions/pandora_logs.php:85
    +msgid "System logfiles"
    +msgstr "システムログファイル"
    +
    +#: ../../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: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:248
    +msgid "The file could not be copied"
    +msgstr "ファイルをコピーできませんでした"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:251
    +msgid "There was an error creating the file"
    +msgstr "ファイル作成でエラーが発生しました"
    +
    +#: ../../extensions/files_repo/functions_files_repo.php:295
    +msgid "There was an error updating the file"
    +msgstr "ファイル更新でエラーが発生しました"
    +
    +#: ../../extensions/files_repo/files_repo_get_file.php:66
    +msgid "Unreliable petition"
    +msgstr "信頼性の低い操作"
    +
    +#: ../../extensions/files_repo/files_repo_get_file.php:66
    +msgid "Please contact the administrator"
    +msgstr "管理者に連絡してください"
    +
    +#: ../../extensions/files_repo/files_repo_form.php:84
    +msgid "Only 200 characters are permitted"
    +msgstr "200文字までです"
    +
    +#: ../../extensions/files_repo/files_repo_form.php:95 ../../godmode/extensions.php:138
    +msgid "File"
    +msgstr "ファイル"
    +
    +#: ../../extensions/files_repo/files_repo_form.php:98
    +#: ../../extensions/files_repo/files_repo_form.php:104
    +#: ../../extensions/files_repo/files_repo_list.php:112
    +msgid "Public link"
    +msgstr "公開リンク"
    +
    +#: ../../extensions/files_repo/files_repo_list.php:58
    +#: ../../include/functions_filemanager.php:605
    +msgid "Last modification"
    +msgstr "最終更新"
    +
    +#: ../../extensions/files_repo/files_repo_list.php:106
    +msgid "Copy to clipboard"
    +msgstr "クリップボードへコピー"
    +
    +#: ../../extensions/files_repo/files_repo_list.php:164
    +#: ../../include/functions_reporting_html.php:2216
    +#: ../../include/functions_reporting_html.php:2220
    +msgid "No items"
    +msgstr "アイテムがありません。"
    +
    +#: ../../extensions/module_groups.php:48
    +msgid "Counters Module"
    +msgstr "カウンタモジュール"
    +
    +#: ../../extensions/module_groups.php:49
    +msgid "Alerts_Fired"
    +msgstr "アラート発報"
    +
    +#: ../../extensions/module_groups.php:51
    +msgid "warning"
    +msgstr "警告"
    +
    +#: ../../extensions/module_groups.php:54
    +msgid "Not_init"
    +msgstr "未初期化"
    +
    +#: ../../extensions/module_groups.php:251
    +msgid "Combined table of agent group and module group"
    +msgstr "エージェントグループとモジュールグループの一覧"
    +
    +#: ../../extensions/module_groups.php:275
    +msgid "Search by agent group"
    +msgstr "エージェントグループでの検索"
    +
    +#: ../../extensions/module_groups.php:279
    +msgid "Search by module group"
    +msgstr "モジュールグループでの検索"
    +
    +#: ../../extensions/module_groups.php:392
    +msgid "Orange cell when the module group and agent have at least one alarm fired."
    +msgstr ""
    +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが発生して"
    +"いる時にオレンジになります。"
    +
    +#: ../../extensions/module_groups.php:393
    +msgid ""
    +"Red cell when the module group and agent have at least one module in critical status "
    +"and the others in any status"
    +msgstr ""
    +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の時に赤に"
    +"なります。"
    +
    +#: ../../extensions/module_groups.php:394
    +msgid ""
    +"Yellow cell when the module group and agent have at least one in warning status and "
    +"the others in grey or green status"
    +msgstr ""
    +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態で、その他"
    +"のモジュールが不明か正常状態の時にに黄色なります。"
    +
    +#: ../../extensions/module_groups.php:395
    +msgid ""
    +"Grey cell when the module group and agent have at least one in unknown status and the "
    +"others in green status"
    +msgstr ""
    +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態で、その他"
    +"のモジュールが正常状態の時にグレーになります。"
    +
    +#: ../../extensions/module_groups.php:396
    +msgid "Green cell when the module group and agent have all modules in OK status"
    +msgstr ""
    +"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑になります。"
    +
    +#: ../../extensions/module_groups.php:397
    +msgid "Blue cell when the module group and agent have all modules in not init status."
    +msgstr "青のセルは、全モジュールが未初期化状態であることを示します。"
    +
    +#: ../../extensions/module_groups.php:401
    +msgid ""
    +"This table shows in columns the modules group and in rows agents group. The cell "
    +"shows all modules"
    +msgstr ""
    +"列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モジュール"
    +"の状態を表示しています。"
    +
    +#: ../../extensions/module_groups.php:402
    +msgid "There are no defined groups or module groups"
    +msgstr "定義済のグループまたはモジュールグループがありません。"
    +
    +#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:112
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:86
    +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 ../../operation/tree.php:102
    +msgid "Module groups"
    +msgstr "モジュールグループ"
    +
    +#: ../../extensions/insert_data.php:58
    +msgid "Insert data"
    +msgstr "データの挿入"
    +
    +#: ../../extensions/insert_data.php:89
    +msgid "You haven't privileges for insert data in the agent."
    +msgstr "エージェントにデータを挿入する権限がありません。"
    +
    +#: ../../extensions/insert_data.php:125
    +#, php-format
    +msgid "Can't save agent (%s), module (%s) data xml."
    +msgstr "エージェント(%s)、モジュール(%s) のデータを保存できません。"
    +
    +#: ../../extensions/insert_data.php:134
    +#, php-format
    +msgid "Save agent (%s), module (%s) data xml."
    +msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。"
    +
    +#: ../../extensions/insert_data.php:145
    +#, php-format
    +msgid ""
    +"Please check that the directory \"%s\" is writeable by the apache user. 

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

    CSV ファイルフォーマットは、date;value<newline>date;value<newline>... で" +"す。CSV 内の日時フォーマットは Y/m/d H:i:s です。" + +#: ../../extensions/insert_data.php:273 +msgid "Insert Data" +msgstr "データの挿入" + +#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:268 +msgid "Realtime graphs" +msgstr "リアルタイムグラフ" + +#: ../../extensions/realtime_graphs.php:134 +#, php-format +msgid "%s Server CPU" +msgstr "%s サーバ CPU" + +#: ../../extensions/realtime_graphs.php:136 +#, php-format +msgid "Pending packages from %s Server" +msgstr "%s サーバの保留中 XML 処理" + +#: ../../extensions/realtime_graphs.php:140 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "%s サーバディスク IO ウエイト" + +#: ../../extensions/realtime_graphs.php:144 +#, php-format +msgid "%s Server Apache load" +msgstr "%s サーバ Apache 負荷" + +#: ../../extensions/realtime_graphs.php:148 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s サーバ MySQL 負荷" + +#: ../../extensions/realtime_graphs.php:152 +#, php-format +msgid "%s Server load" +msgstr "%s サーバ負荷" + +#: ../../extensions/realtime_graphs.php:155 +msgid "SNMP Interface throughput" +msgstr "SNMP インタフェーススループット" + +#: ../../extensions/realtime_graphs.php:206 +msgid "Refresh interval" +msgstr "更新間隔" + +#: ../../extensions/realtime_graphs.php:217 +#: ../../godmode/modules/manage_network_components_form_wizard.php:135 +msgid "Incremental" +msgstr "インクリメンタル" + +#: ../../extensions/realtime_graphs.php:222 +msgid "Clear graph" +msgstr "グラフをクリア" + +#: ../../extensions/realtime_graphs.php:249 +#: ../../godmode/agentes/module_manager_editor_network.php:43 +msgid "Use this OID" +msgstr "この OID を利用" + +#: ../../extensions/users_connected.php:37 ../../extensions/users_connected.php:209 +msgid "Users connected" +msgstr "接続ユーザ" + +#: ../../extensions/users_connected.php:42 +msgid "This user does not have any associated profile" +msgstr "このユーザに関連付けられたプロファイルがありません" + +#: ../../extensions/users_connected.php:132 +msgid "No other users connected" +msgstr "他のユーザは接続していません" + +#: ../../extensions/users_connected.php:145 +msgid "Last login" +msgstr "最終ログイン" + +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "グループコンポーネント更新" + +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "グループコンポーネント作成" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "モジュールテンプレート管理" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "プロファイルからモジュールを削除しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "プロファイルからのモジュール削除に失敗しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "プロファイルにモジュールを追加しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "プロファイルへのモジュール追加に失敗しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:113 +msgid "Successfully updated network profile" +msgstr "ネットワークプロファイルを更新しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:114 +msgid "Error updating network profile" +msgstr "ネットワークプロファイルの更新に失敗しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:138 +msgid "Successfully added network profile" +msgstr "ネットワークプロファイルを追加しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:139 +msgid "Error adding network profile" +msgstr "ネットワークプロファイルの追加に失敗しました。" + +#: ../../godmode/modules/manage_network_templates_form.php:145 +msgid "Cannot create a template without name" +msgstr "名前無しではテンプレートを作成できません" + +#: ../../godmode/modules/manage_network_templates_form.php:219 +msgid "No modules for this profile" +msgstr "このプロファイルにはモジュールがありません。" + +#: ../../godmode/modules/manage_network_templates_form.php:260 +#: ../../operation/snmpconsole/snmp_browser.php:155 +#: ../../operation/snmpconsole/snmp_browser.php:175 +msgid "Add modules" +msgstr "モジュール追加" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "コンポーネントグループ管理" + +#: ../../godmode/modules/manage_nc_groups.php:293 +#, php-format +msgid "" +"This node is configured with centralized mode. Component groups are read only. Go to " +"%s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り専用で" +"す。管理は %s にて行います。" + +#: ../../godmode/modules/manage_nc_groups.php:311 +msgid "There are no defined component groups" +msgstr "定義済のコンポーネントグループがありません" + +#: ../../godmode/modules/manage_network_components_form_common.php:712 +#: ../../godmode/agentes/module_manager_editor_common.php:2000 +msgid "Please introduce a positive percentage value" +msgstr "正のパーセント値を設定してください" + +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "SNMP Enterprise 文字列" + +#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_wizard.php:315 +msgid "Name OID" +msgstr "OID 名" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Namespace" +msgstr "名前空間" + +#: ../../godmode/modules/manage_network_components_form.php:355 +msgid "Update Network Component" +msgstr "ネットワークコンポーネント更新" + +#: ../../godmode/modules/manage_network_components_form.php:357 +msgid "Create Network Component" +msgstr "ネットワークコンポーネント作成" + +#: ../../godmode/modules/manage_network_components.php:290 +msgid "Remote component management" +msgstr "リモートコンポーネント管理" + +#: ../../godmode/modules/manage_network_components.php:313 +#, php-format +msgid "" +"This node is configured with centralized mode. All remote components are read only. " +"Go to %s to manage them." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは読み取" +"り専用です。 それらを管理するには、%s に移動します。" + +#: ../../godmode/modules/manage_network_components.php:424 +msgid "Could not be created because the component exists" +msgstr "コンポーネントが存在するため、作成できませんでした" + +#: ../../godmode/modules/manage_network_components.php:660 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "名前、説明、tcp送受信による検索にマッチした一覧を表示" + +#: ../../godmode/modules/manage_network_components.php:753 +msgid "Max/Min" +msgstr "最大/最小" + +#: ../../godmode/modules/manage_network_components.php:804 +#: ../../include/class/ModuleTemplates.class.php:1234 +msgid "Network module" +msgstr "ネットワークモジュール" + +#: ../../godmode/modules/manage_network_components.php:815 +#: ../../include/class/ModuleTemplates.class.php:1245 +msgid "WMI module" +msgstr "WMIモジュール" + +#: ../../godmode/modules/manage_network_components.php:826 +#: ../../include/class/ModuleTemplates.class.php:1256 +msgid "Plug-in module" +msgstr "プラグインモジュール" + +#: ../../godmode/modules/manage_network_components.php:837 +msgid "Wizard module" +msgstr "ウィザードモジュール" + +#: ../../godmode/modules/manage_network_components.php:910 +msgid "There are no defined network components" +msgstr "定義済のネットワークコンポーネントがありません" + +#: ../../godmode/modules/manage_network_components.php:921 +msgid "Create a new network component" +msgstr "ネットワークコンポーネントを新規作成する。" + +#: ../../godmode/modules/manage_network_components.php:922 +msgid "Create a new plugin component" +msgstr "プラグインコンポーネントを新規作成する。" + +#: ../../godmode/modules/manage_network_components.php:923 +msgid "Create a new WMI component" +msgstr "WMIコンポーネントを新規作成する。" + +#: ../../godmode/modules/manage_network_components.php:924 +msgid "Create a new wizard component" +msgstr "ウィザードコンポーネントを新規作成する。" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:92 +msgid "Add a macro oid" +msgstr "マクロ OID の追加" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:110 +msgid "Remove last macro oid" +msgstr "最後のマクロ OID の削除" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:134 +msgid "Numeric" +msgstr "数値" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:136 +msgid "Boolean" +msgstr "ブーリアン" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:137 +msgid "Alphanumeric" +msgstr "英数字" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:258 +msgid "Add by default" +msgstr "デフォルトで追加" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:286 +msgid "Module protocol" +msgstr "モジュールプロトコル" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:302 +msgid "Protocol" +msgstr "プロトコル" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:318 +msgid "Manufacturer ID" +msgstr "製造者ID" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:350 +msgid "Component Group" +msgstr "コンポーネントグループ" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:368 +msgid "Module unit" +msgstr "モジュール単位" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:458 +msgid "Scan Type" +msgstr "スキャンタイプ" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:472 +#: ../../godmode/agentes/planned_downtime.list.php:322 +msgid "Execution type" +msgstr "実行タイプ" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:492 +msgid "Value OID" +msgstr "OID 値" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:509 +msgid "Macros OID" +msgstr "マクロ OID" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:517 +#: ../../godmode/modules/manage_network_components_form_wizard.php:702 +msgid "Value operation" +msgstr "値の操作" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:534 +#: ../../godmode/modules/manage_network_components_form_wizard.php:719 +msgid "Satellite execution" +msgstr "サテライト実行" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:551 +#: ../../godmode/modules/manage_network_components_form_wizard.php:736 +msgid "Server plugin" +msgstr "サーバプラグイン" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:589 +msgid "WMI class" +msgstr "WMI クラス" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:606 +msgid "Query key field" +msgstr "クエリキーフィールド" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:623 +msgid "Query extra fields" +msgstr "クエリ追加フィールド" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:631 +msgid "Query filters" +msgstr "クエリフィルタ" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:674 +msgid "Field value" +msgstr "フィールド値" + +#: ../../godmode/modules/module_list.php:29 +msgid "Defined modules" +msgstr "定義済みモジュール" + +#: ../../godmode/modules/module_list.php:51 +msgid "Problem modifying module" +msgstr "モジュールの更新に失敗しました。" + +#: ../../godmode/modules/module_list.php:53 +msgid "Module updated successfully" +msgstr "モジュールを更新しました。" + +#: ../../godmode/modules/manage_network_templates.php:84 +msgid "Error deleting template" +msgstr "テンプレートの削除に失敗しました。" + +#: ../../godmode/modules/manage_network_templates.php:124 +msgid "This template does not exist" +msgstr "このテンプレートは存在しません" + +#: ../../godmode/modules/manage_network_templates.php:304 +msgid "There are no defined network profiles" +msgstr "ネットワークプロファイルが定義されていません。" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "現在のデータベース設定" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "データベース設定" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "データ保持日数(未圧縮)" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "データ保持日数" + +#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:230 +msgid "Database size stats" +msgstr "データベースサイズ" + +#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:569 +#: ../../include/functions_reporting.php:14235 +msgid "Total events" +msgstr "イベント数" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "データ要素数 (tagente_datos)" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "log4x 要素数 (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "文字列データ要素数 (tagente_datos_string)" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "定義済モジュール数" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "エージェントアクセス数" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "データベースの健全性" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "不明なエージェント数" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "未初期化モジュール数" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "最終 DB メンテナンス日時" + +#: ../../godmode/db/db_main.php:208 +#, php-format +msgid "" +"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 "" +"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されているこ" +"とを確認してください。 %s の最高のパフォーマンスと結果を得るには、データベースを最新の" +"状態に保つことが非常に重要です。" + +#: ../../godmode/groups/configure_group.php:87 +#: ../../godmode/groups/configure_modu_group.php:49 +msgid "There was a problem loading group" +msgstr "グループの読み込みに失敗しました。" + +#: ../../godmode/groups/configure_group.php:106 +msgid "Update group" +msgstr "グループ情報の更新" + +#: ../../godmode/groups/configure_group.php:108 ../../godmode/groups/group_list.php:981 +msgid "Create group" +msgstr "グループの作成" + +#: ../../godmode/groups/configure_group.php:126 ../../godmode/groups/group_list.php:384 +msgid "Manage agents group" +msgstr "エージェントグループ管理" + +#: ../../godmode/groups/configure_group.php:138 +msgid "Update Group" +msgstr "グループの更新" + +#: ../../godmode/groups/configure_group.php:140 +msgid "Create Group" +msgstr "グループの作成" + +#: ../../godmode/groups/configure_group.php:178 +msgid "You have not access to the parent." +msgstr "親へアクセスできません" + +#: ../../godmode/groups/configure_group.php:226 +msgid "Group Password" +msgstr "グループパスワード" + +#: ../../godmode/groups/configure_group.php:230 +msgid "Enable alert use in this group." +msgstr "このグループでアラート利用を有効化" + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate ACL" +msgstr "ACL の伝播" + +#: ../../godmode/groups/configure_group.php:234 +msgid "Propagate the same ACL security into the child subgroups." +msgstr "子のサブグループへ同じ ACL を適用します。" + +#: ../../godmode/groups/configure_group.php:246 ../../include/functions_events.php:4734 +msgid "Contact" +msgstr "連絡先" + +#: ../../godmode/groups/configure_group.php:246 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "_groupcontact_ マクロで参照可能な連絡先情報" + +#: ../../godmode/groups/configure_group.php:250 +msgid "Information accessible through the _group_other_ macro" +msgstr "_group_other_ マクロで参照可能な情報" + +#: ../../godmode/groups/configure_group.php:259 +msgid "Max agents allowed" +msgstr "最大エージェント数" + +#: ../../godmode/groups/configure_group.php:259 +msgid "Set the maximum of agents allowed for this group. 0 is unlimited." +msgstr "このグループの最大エージェント数を設定します。0 は無制限です。" + +#: ../../godmode/groups/group_list.php:309 +msgid "Tree Group view" +msgstr "グループツリー表示" + +#: ../../godmode/groups/group_list.php:333 +msgid "Credential Store" +msgstr "認証情報ストア" + +#: ../../godmode/groups/group_list.php:339 +#, php-format +msgid "Groups defined in %s" +msgstr "%s に定義済のグループ" + +#: ../../godmode/groups/group_list.php:349 ../../godmode/menu.php:220 +msgid "Credential store" +msgstr "認証情報ストア" + +#: ../../godmode/groups/group_list.php:365 +msgid "Edit or delete groups can cause problems with synchronization" +msgstr "グループの編集や削除は、同期で問題が発生する可能性があります。" + +#: ../../godmode/groups/group_list.php:403 +#, php-format +msgid "" +"This node is configured with centralized mode. All groups information is read only. " +"Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専用で" +"す。管理するには %s に移動します。" + +#: ../../godmode/groups/group_list.php:468 ../../godmode/groups/modu_group_list.php:119 +msgid "Group successfully created" +msgstr "グループを作成しました。" + +#: ../../godmode/groups/group_list.php:470 ../../godmode/groups/modu_group_list.php:122 +msgid "There was a problem creating group" +msgstr "グループの作成に失敗しました。" + +#: ../../godmode/groups/group_list.php:473 ../../godmode/groups/group_list.php:545 +msgid "Each group must have a different name" +msgstr "各グループは異なる名前でなければいけません" + +#: ../../godmode/groups/group_list.php:476 ../../godmode/groups/group_list.php:548 +msgid "Group must have a name" +msgstr "グループには名前が必要です" + +#: ../../godmode/groups/group_list.php:540 ../../godmode/groups/modu_group_list.php:155 +msgid "Group successfully updated" +msgstr "グループを更新しました。" + +#: ../../godmode/groups/group_list.php:542 ../../godmode/groups/modu_group_list.php:158 +msgid "There was a problem modifying group" +msgstr "グループの更新に失敗しました。" + +#: ../../godmode/groups/group_list.php:605 +#, php-format +msgid "The group %s could not be deleted because it is not empty in the nodes" +msgstr "グループ %s はノードが空ではないため、削除できませんでした" + +#: ../../godmode/groups/group_list.php:679 +msgid "" +"The group has not been deleted in the metaconsole due to an error in the node database" +msgstr "ノードデータベースのエラーのため、グループはメタコンソールで削除されていません" + +#: ../../godmode/groups/group_list.php:688 +#, php-format +msgid "The group %s has been deleted in the nodes" +msgstr "グループ %s をノードで削除しました" + +#: ../../godmode/groups/group_list.php:720 ../../godmode/groups/modu_group_list.php:229 +msgid "Group successfully deleted" +msgstr "グループを削除しました。" + +#: ../../godmode/groups/group_list.php:723 ../../godmode/groups/modu_group_list.php:227 +msgid "There was a problem deleting group" +msgstr "グループの削除に失敗しました。" + +#: ../../godmode/groups/group_list.php:730 +#, php-format +msgid "The group is not empty. It is use in %s." +msgstr "グループが空ではありません。%s で利用されています。" + +#: ../../godmode/groups/group_list.php:775 ../../godmode/groups/group_list.php:969 +msgid "There are no defined groups" +msgstr "グループが定義されていません" + +#: ../../godmode/groups/group_list.php:924 +msgid "Are you sure? This group will also be deleted in all the nodes." +msgstr "よろしいですか? このグループはすべてのノードで削除されます。" + +#: ../../godmode/groups/group_list.php:930 +msgid "The child groups will be updated to use the parent id of the deleted group" +msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます" + +#: ../../godmode/groups/configure_modu_group.php:31 +msgid "Module group management" +msgstr "モジュールグループ管理" + +#: ../../godmode/groups/modu_group_list.php:70 +#, php-format +msgid "Module groups defined in %s" +msgstr "%s に定義済のモジュールグループ" + +#: ../../godmode/groups/modu_group_list.php:92 +#, php-format +msgid "" +"This node is configured with centralized mode. All module groups information is read " +"only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は読み取" +"り専用です。管理するには %s に移動します。" + +#: ../../godmode/groups/modu_group_list.php:127 +#: ../../godmode/groups/modu_group_list.php:163 +msgid "Each module group must have a different name" +msgstr "各モジュールグループは、異なる名前でなければいけません。" + +#: ../../godmode/groups/modu_group_list.php:131 +#: ../../godmode/groups/modu_group_list.php:167 +msgid "Module group must have a name" +msgstr "モジュールグループには名前が必要です" + +#: ../../godmode/groups/modu_group_list.php:294 +msgid "There are no defined module groups" +msgstr "定義済のモジュールグループがありません" + +#: ../../godmode/groups/modu_group_list.php:303 +msgid "Create module group" +msgstr "モジュールグループの作成" + +#: ../../godmode/extensions.php:28 +msgid "Defined extensions" +msgstr "定義されている拡張" + +#: ../../godmode/extensions.php:33 +msgid "There are no extensions defined" +msgstr "「拡張」が定義されていません。" + +#: ../../godmode/extensions.php:141 +msgid "Godmode Function" +msgstr "システム管理機能" + +#: ../../godmode/extensions.php:142 +msgid "Godmode Menu" +msgstr "システム管理メニュー" + +#: ../../godmode/extensions.php:143 +msgid "Operation Menu" +msgstr "操作メニュー" + +#: ../../godmode/extensions.php:144 +msgid "Operation Function" +msgstr "操作機能" + +#: ../../godmode/extensions.php:145 +msgid "Login Function" +msgstr "ログイン機能" + +#: ../../godmode/extensions.php:146 +msgid "Agent operation tab" +msgstr "エージェント操作タブ" + +#: ../../godmode/extensions.php:147 +msgid "Agent godmode tab" +msgstr "エージェント管理タブ" + +#: ../../godmode/update_manager/update_manager.setup.php:271 +msgid "Warp Update URL" +msgstr "ワープアップデート URL" + +#: ../../godmode/update_manager/update_manager.setup.php:275 +msgid "URL update manager" +msgstr "アップデートマネージャ URL" + +#: ../../godmode/update_manager/update_manager.setup.php:282 +msgid "Use secured Warp Update" +msgstr "安全なワープアップデートを使用" + +#: ../../godmode/update_manager/update_manager.setup.php:291 +#: ../../godmode/update_manager/update_manager.setup.php:295 +msgid "Proxy server" +msgstr "プロキシサーバ" + +#: ../../godmode/update_manager/update_manager.setup.php:301 +#: ../../godmode/update_manager/update_manager.setup.php:305 +msgid "Proxy port" +msgstr "プロキシのポート番号" + +#: ../../godmode/update_manager/update_manager.setup.php:311 +#: ../../godmode/update_manager/update_manager.setup.php:315 +msgid "Proxy user" +msgstr "プロキシのユーザ" + +#: ../../godmode/update_manager/update_manager.setup.php:321 +#: ../../godmode/update_manager/update_manager.setup.php:325 +msgid "Proxy password" +msgstr "プロキシのパスワード" + +#: ../../godmode/update_manager/update_manager.setup.php:331 +msgid "Allow no-consecutive patches" +msgstr "不連続パッチを許可" + +#: ../../godmode/update_manager/update_manager.setup.php:340 +msgid "Limit to LTS updates" +msgstr "LTS アップデートに限定" + +#: ../../godmode/update_manager/update_manager.setup.php:350 +msgid "Registration ID" +msgstr "登録 ID" + +#: ../../godmode/update_manager/update_manager.setup.php:351 +msgid "Not registred yet" +msgstr "登録されていません" + +#: ../../godmode/update_manager/update_manager.setup.php:354 +msgid "Cancel registration" +msgstr "登録のキャンセル" + +#: ../../godmode/update_manager/update_manager.setup.php:366 +msgid "Unregister" +msgstr "登録解除" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "%s community reminder" +msgstr "%s コミュニティリマインダ" + +#: ../../godmode/update_manager/update_manager.setup.php:371 +#, php-format +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register this %s " +"instance" +msgstr "" +"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに表示しま" +"す。" + +#: ../../godmode/update_manager/update_manager.history.php:42 +msgid "Origin" +msgstr "オリジナル" + +#: ../../godmode/update_manager/update_manager.php:64 +#: ../../godmode/update_manager/update_manager.php:83 +msgid "Journal" +msgstr "ジャーナル" + +#: ../../godmode/update_manager/update_manager.php:71 +msgid "Offline update" +msgstr "オフラインアップデート" + +#: ../../godmode/update_manager/update_manager.php:78 +msgid "Online update" +msgstr "オンラインアップデート" + +#: ../../godmode/update_manager/update_manager.php:91 +msgid "Offline" +msgstr "オフライン" + +#: ../../godmode/update_manager/update_manager.php:96 +msgid "Online" +msgstr "オンライン" + +#: ../../godmode/update_manager/update_manager.php:159 +msgid "Please register on metaconsole first." +msgstr "先にメタコンソールで登録してください。" + +#: ../../godmode/users/profile_list.php:84 ../../godmode/users/configure_profile.php:76 +#, php-format +msgid "Profiles defined on %s" +msgstr "%s に定義済のプロファイル" + +#: ../../godmode/users/profile_list.php:115 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles information is read only. " +"Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取り専用" +"です。管理には %s に移動します。" + +#: ../../godmode/users/profile_list.php:127 ../../godmode/users/user_list.php:341 +msgid "There was a problem deleting the profile" +msgstr "プロファイルの削除に失敗しました。" + +#: ../../godmode/users/profile_list.php:254 +msgid "There was a problem updating this profile" +msgstr "プロファイルの更新に失敗しました。" + +#: ../../godmode/users/profile_list.php:257 +msgid "Profile name cannot be empty" +msgstr "プロファイル名は空にできません" + +#: ../../godmode/users/profile_list.php:303 ../../godmode/users/profile_list.php:306 +msgid "There was a problem creating this profile" +msgstr "プロファイルの作成に失敗しました。" + +#: ../../godmode/users/profile_list.php:456 +msgid "There are no defined profiles" +msgstr "定義済のプロファイルがありません" + +#: ../../godmode/users/configure_profile.php:142 +msgid "Create profile" +msgstr "プロファイル作成" + +#: ../../godmode/users/configure_profile.php:147 +msgid "There was a problem loading profile" +msgstr "プロファイルの読み込みに失敗しました。" + +#: ../../godmode/users/configure_profile.php:239 +msgid "Update profile" +msgstr "プロファイルを更新しました。" + +#: ../../godmode/users/configure_profile.php:249 +msgid "Update Profile" +msgstr "プロファイル更新" + +#: ../../godmode/users/configure_profile.php:251 +msgid "Create Profile" +msgstr "プロファイル作成" + +#: ../../godmode/users/configure_profile.php:272 +msgid "View agents" +msgstr "エージェント参照" + +#: ../../godmode/users/configure_profile.php:276 +msgid "Disable agents" +msgstr "エージェント無効化" + +#: ../../godmode/users/configure_profile.php:280 +msgid "Edit agents" +msgstr "エージェント編集" + +#: ../../godmode/users/configure_profile.php:287 +msgid "Edit alerts" +msgstr "アラート編集" + +#: ../../godmode/users/configure_profile.php:302 +msgid "Edit events" +msgstr "イベント編集" + +#: ../../godmode/users/configure_profile.php:306 ../../godmode/events/events.php:133 +#: ../../operation/events/events.php:1418 +msgid "Manage events" +msgstr "イベント管理" + +#: ../../godmode/users/configure_profile.php:313 +msgid "View reports" +msgstr "レポート表示" + +#: ../../godmode/users/configure_profile.php:317 +msgid "Edit reports" +msgstr "レポート編集" + +#: ../../godmode/users/configure_profile.php:321 +msgid "Manage reports" +msgstr "レポート管理" + +#: ../../godmode/users/configure_profile.php:328 +msgid "View network maps" +msgstr "ネットワークマップ参照" + +#: ../../godmode/users/configure_profile.php:332 +msgid "Edit network maps" +msgstr "ネットワークマップ編集" + +#: ../../godmode/users/configure_profile.php:336 +msgid "Manage network maps" +msgstr "ネットワークマップ管理" + +#: ../../godmode/users/configure_profile.php:343 ../../include/functions_menu.php:496 +msgid "View visual console" +msgstr "ビジュアルコンソール表示" + +#: ../../godmode/users/configure_profile.php:347 +msgid "Edit visual console" +msgstr "ビジュアルコンソール編集" + +#: ../../godmode/users/configure_profile.php:351 +msgid "Manage visual console" +msgstr "ビジュアルコンソール管理" + +#: ../../godmode/users/configure_profile.php:363 +msgid "View NCM data" +msgstr "NCM データ表示" + +#: ../../godmode/users/configure_profile.php:367 +msgid "Operate NCM" +msgstr "NCM 操作" + +#: ../../godmode/users/configure_profile.php:371 +msgid "Manage NCM" +msgstr "NCM 管理" + +#: ../../godmode/users/configure_profile.php:378 +msgid "Manage users" +msgstr "ユーザ管理" + +#: ../../godmode/users/configure_profile.php:385 +msgid "Manage database" +msgstr "データベース管理" + +#: ../../godmode/users/configure_profile.php:392 +#, php-format +msgid "%s management" +msgstr "%s 管理" + +#: ../../godmode/users/user_list.php:250 +#, php-format +msgid "Users defined on %s" +msgstr "%s に定義済のユーザ" + +#: ../../godmode/users/user_list.php:287 ../../godmode/users/configure_user.php:166 +#, php-format +msgid "Deleted user %s" +msgstr "ユーザ %s を削除しました" + +#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332 +#: ../../godmode/users/configure_user.php:173 +msgid "There was a problem deleting the user" +msgstr "ユーザの削除に失敗しました。" + +#: ../../godmode/users/user_list.php:308 ../../godmode/users/configure_user.php:188 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "メタコンソールから、ユーザ %s を削除しました" + +#: ../../godmode/users/user_list.php:320 ../../godmode/users/configure_user.php:199 +#, php-format +msgid "Deleted user %s from %s" +msgstr "ユーザ %s を %s から削除しました" + +#: ../../godmode/users/user_list.php:326 ../../godmode/users/configure_user.php:205 +#, php-format +msgid "Successfully deleted from %s" +msgstr "%s から削除しました" + +#: ../../godmode/users/user_list.php:327 ../../godmode/users/configure_user.php:206 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "%s からのユーザ削除で問題が発生しました" + +#: ../../godmode/users/user_list.php:367 +msgid "There was a problem disabling user" +msgstr "ユーザの無効化で問題が発生しました" + +#: ../../godmode/users/user_list.php:373 +msgid "There was a problem enabling user" +msgstr "ユーザの有効化で問題が発生しました" + +#: ../../godmode/users/user_list.php:432 ../../operation/users/user_edit.php:254 +#, php-format +msgid "" +"This node is configured with centralized mode. All users information is read only. Go " +"to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用です。" +"管理には %s に移動します。" + +#: ../../godmode/users/user_list.php:484 +msgid "Profile / Group" +msgstr "プロファイル / グループ" + +#: ../../godmode/users/user_list.php:665 ../../operation/search_users.php:63 +msgid "Administrator" +msgstr "管理者" + +#: ../../godmode/users/user_list.php:714 +msgid "Other profiles are also assigned." +msgstr "他のプロファイルも割り当てられています。" + +#: ../../godmode/users/user_list.php:716 +msgid "" +"Other profiles you cannot manage are also assigned. These profiles are not shown. You " +"cannot enable/disable or delete this user." +msgstr "" +"管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示されてい" +"ません。このユーザを有効/無効または削除することはできません。" + +#: ../../godmode/users/user_list.php:723 ../../include/functions_reporting.php:4760 +#: ../../include/functions_reporting.php:4807 ../../operation/search_users.php:87 +msgid "The user doesn't have any assigned profile/group" +msgstr "このユーザには、プロファイル/グループの組み合わせが何も割り当てられていません。" + +#: ../../godmode/users/user_list.php:873 ../../godmode/users/configure_user.php:223 +msgid "Create user" +msgstr "ユーザの作成" + +#: ../../godmode/users/user_list.php:876 ../../godmode/users/configure_user.php:331 +#, php-format +msgid "The current authentication scheme doesn't support creating users on %s" +msgstr "現在の認証スキーマは、%s のユーザ作成に対応していません。" + +#: ../../godmode/users/configure_user.php:221 +msgid "Update user" +msgstr "ユーザ更新" + +#: ../../godmode/users/configure_user.php:259 ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "ユーザ情報の編集" + +#: ../../godmode/users/configure_user.php:418 +msgid "User ID cannot be empty" +msgstr "ユーザ ID は空に設定できません。" + +#: ../../godmode/users/configure_user.php:425 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" +msgstr "不正なユーザID: 先頭または末尾にスペースを含めることはできません" + +#: ../../godmode/users/configure_user.php:433 +msgid "Passwords cannot be empty" +msgstr "パスワードは空に設定できません。" + +#: ../../godmode/users/configure_user.php:440 +msgid "Passwords didn't match" +msgstr "パスワードが一致しません。" + +#: ../../godmode/users/configure_user.php:502 +msgid "" +"Strict ACL is not recommended for admin users because performance could be affected." +msgstr "パフォーマンスに影響するため、管理者ユーザへの厳重な ACL 設定はお勧めしません。" + +#: ../../godmode/users/configure_user.php:537 ../../godmode/users/configure_user.php:829 +msgid "Profile added successfully" +msgstr "プロファイルを追加しました。" + +#: ../../godmode/users/configure_user.php:538 ../../godmode/users/configure_user.php:830 +msgid "Profile cannot be added" +msgstr "プロファイルの追加に失敗しました。" + +#: ../../godmode/users/configure_user.php:662 ../../godmode/users/configure_user.php:686 +#: ../../godmode/users/configure_user.php:760 ../../godmode/users/configure_user.php:767 +#: ../../godmode/users/configure_user.php:799 ../../operation/users/user_edit.php:187 +#: ../../operation/users/user_edit.php:232 +msgid "User info successfully updated" +msgstr "ユーザ情報を更新しました。" + +#: ../../godmode/users/configure_user.php:663 ../../godmode/users/configure_user.php:687 +#: ../../godmode/users/configure_user.php:761 ../../godmode/users/configure_user.php:768 +#: ../../godmode/users/configure_user.php:800 +msgid "Error updating user info (no change?)" +msgstr "ユーザ情報の更新に失敗しました。(変更なし?)" + +#: ../../godmode/users/configure_user.php:692 +msgid "Password of the active user is required to perform password change" +msgstr "パスワード変更を行うには、アクティブユーザのパスワードが必要です" + +#: ../../godmode/users/configure_user.php:694 +msgid "Password of active user is not correct" +msgstr "アクティブユーザのパスワードが正しくありません" + +#: ../../godmode/users/configure_user.php:710 +msgid "Passwords does not match" +msgstr "パスワードが一致しません。" + +#: ../../godmode/users/configure_user.php:789 +msgid "Strict ACL is not recommended for this user. Performance could be affected." +msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。" + +#: ../../godmode/users/configure_user.php:870 +msgid "Update User" +msgstr "ユーザ更新" + +#: ../../godmode/users/configure_user.php:870 +msgid "Create User" +msgstr "ユーザ作成" + +#: ../../godmode/users/configure_user.php:923 ../../operation/users/user_edit.php:275 +msgid "Full (display) name" +msgstr "表示名" + +#: ../../godmode/users/configure_user.php:940 ../../operation/users/user_edit.php:422 +msgid "Timezone" +msgstr "タイムゾーン" + +#: ../../godmode/users/configure_user.php:941 ../../operation/users/user_edit.php:422 +msgid "The timezone must be that of the associated server." +msgstr "タイムゾーンは、関連付けられているサーバのタイムゾーンである必要があります。" + +#: ../../godmode/users/configure_user.php:974 ../../operation/users/user_edit.php:302 +msgid "Password confirmation" +msgstr "パスワード確認" + +#: ../../godmode/users/configure_user.php:992 +msgid "Own password confirmation" +msgstr "自分自身のパスワードの確認" + +#: ../../godmode/users/configure_user.php:1002 +msgid "Administrator user" +msgstr "管理者" + +#: ../../godmode/users/configure_user.php:1029 ../../operation/users/user_edit.php:295 +msgid "E-mail" +msgstr "メールアドレス" + +#: ../../godmode/users/configure_user.php:1045 ../../operation/users/user_edit.php:297 +msgid "Phone number" +msgstr "電話番号" + +#: ../../godmode/users/configure_user.php:1061 ../../operation/users/user_edit.php:621 +msgid "Login allowed IP list" +msgstr "ログイン許可 IP 一覧" + +#: ../../godmode/users/configure_user.php:1062 ../../operation/users/user_edit.php:622 +msgid "" +"Add the source IPs that will allow console access. Each IP must be separated only by " +"comma. * allows all." +msgstr "" +"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る必要があ" +"ります。* はすべてを許可します。" + +#: ../../godmode/users/configure_user.php:1100 ../../operation/users/user_edit.php:404 +#: ../../operation/users/user_edit.php:413 +msgid "Skin" +msgstr "スキン" + +#: ../../godmode/users/configure_user.php:1109 +msgid "Search custom field view" +msgstr "カスタムフィールド表示検索" + +#: ../../godmode/users/configure_user.php:1109 +msgid "Load by default the selected view in custom field view" +msgstr "デフォルトでは、選択した表示をカスタムフィールド表示に読み込みます" + +#: ../../godmode/users/configure_user.php:1126 +msgid "Use global conf" +msgstr "グローバル設定を利用します。" + +#: ../../godmode/users/configure_user.php:1131 ../../operation/users/user_edit.php:357 +msgid "Home screen" +msgstr "ホーム画面" + +#: ../../godmode/users/configure_user.php:1132 ../../operation/users/user_edit.php:357 +msgid "" +"User can customize the home page. By default, will display 'Agent Detail'. Example: " +"Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" +"ver_agente&id_agente=1 to show agent detail view" +msgstr "" +"ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳細' が表" +"示されます。 例: 'その他' を選択し、index.php?sec=estado&sec2=operation/agentes/" +"ver_agente&id_agente=1 と入力すると、エージェントの詳細を表示します。" + +#: ../../godmode/users/configure_user.php:1139 ../../godmode/events/events.php:41 +#: ../../operation/users/user_edit.php:361 ../../operation/events/events.php:1361 +msgid "Event list" +msgstr "イベント一覧" + +#: ../../godmode/users/configure_user.php:1142 ../../operation/users/user_edit.php:364 +#: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:68 +msgid "Alert detail" +msgstr "アラート詳細" + +#: ../../godmode/users/configure_user.php:1143 +msgid "External link" +msgstr "外部リンク" + +#: ../../godmode/users/configure_user.php:1236 +msgid "Metaconsole access" +msgstr "メタコンソールアクセス" + +#: ../../godmode/users/configure_user.php:1254 +msgid "Not Login" +msgstr "ログイン無し" + +#: ../../godmode/users/configure_user.php:1256 +msgid "The user with not login set only can access to API." +msgstr "ログイン無しを設定したユーザは、API にのみアクセスできます。" + +#: ../../godmode/users/configure_user.php:1266 +msgid "Local user" +msgstr "ローカルユーザ" + +#: ../../godmode/users/configure_user.php:1268 +msgid "The user with local authentication enabled will always use local authentication." +msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。" + +#: ../../godmode/users/configure_user.php:1278 +msgid "Session Time" +msgstr "セッション時間" + +#: ../../godmode/users/configure_user.php:1280 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting -1 in this " +"field." +msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" + +#: ../../godmode/users/configure_user.php:1314 +msgid "Default event filter" +msgstr "デフォルトイベントフィルタ" + +#: ../../godmode/users/configure_user.php:1328 +msgid "eHorus user access enabled" +msgstr "eHorus ユーザアクセス有効化" + +#: ../../godmode/users/configure_user.php:1336 ../../include/functions_config.php:1683 +msgid "eHorus user" +msgstr "eHorus ユーザ" + +#: ../../godmode/users/configure_user.php:1345 ../../include/functions_config.php:1687 +msgid "eHorus password" +msgstr "eHorus パスワード" + +#: ../../godmode/users/configure_user.php:1368 +msgid "User must be created before activating double authentication." +msgstr "二段階認証を有効にする前に、ユーザを作成する必要があります。" + +#: ../../godmode/users/configure_user.php:1378 ../../operation/users/user_edit.php:443 +msgid "Show information" +msgstr "情報表示" + +#: ../../godmode/users/configure_user.php:1396 +msgid "Enable agents managment" +msgstr "エージェント管理を有効にする" + +#: ../../godmode/users/configure_user.php:1404 +msgid "Enable node access" +msgstr "ノードアクセスを有効にする" + +#: ../../godmode/users/configure_user.php:1404 +msgid "With this option enabled, the user will can access to nodes console" +msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" + +#: ../../godmode/users/configure_user.php:1633 +msgid "yes" +msgstr "はい" + +#: ../../godmode/users/configure_user.php:1636 +msgid "no" +msgstr "いいえ" + +#: ../../godmode/users/configure_user.php:1640 +msgid "please select profile and group" +msgstr "プロファイルとグループを選択してください" + +#: ../../godmode/users/configure_user.php:1666 +msgid "Deleting last profile will delete this user" +msgstr "最後のプロファイルを削除すると、このユーザが削除されます" + +#: ../../godmode/users/configure_user.php:1706 +msgid "" +"User will be created without profiles assigned and won't be able to log in, are you " +"sure?" +msgstr "" +"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなります。よ" +"ろしいですか?" + +#: ../../godmode/users/configure_user.php:1871 ../../operation/users/user_edit.php:1106 +msgid "Double autentication information" +msgstr "二段階認証情報" + +#: ../../godmode/users/configure_user.php:1961 ../../operation/users/user_edit.php:1195 +msgid "The double authentication will be deactivated" +msgstr "二段階認証は無効化されます" + +#: ../../godmode/users/configure_user.php:1962 ../../operation/users/user_edit.php:1196 +msgid "Deactivate" +msgstr "無効化" + +#: ../../godmode/users/configure_user.php:1998 ../../operation/users/user_edit.php:1228 +msgid "The double autentication was deactivated successfully" +msgstr "二段階認証を無効化しました" + +#: ../../godmode/users/configure_user.php:2002 +#: ../../godmode/users/configure_user.php:2006 ../../operation/users/user_edit.php:1231 +#: ../../operation/users/user_edit.php:1235 +msgid "There was an error deactivating the double autentication" +msgstr "二段階認証の無効化でエラーが発生しました" + +#: ../../godmode/agentes/agent_template.php:67 ../../include/functions_api.php:15251 +msgid "Created by template " +msgstr "テンプレートにより作成 " + +#: ../../godmode/agentes/agent_template.php:156 +msgid "Error adding modules" +msgstr "モジュールを追加できませんでした。" + +#: ../../godmode/agentes/agent_template.php:158 +msgid "Error adding modules. The following errors already exists: " +msgstr "モジュールを追加できませんでした。次のモジュールは存在します: " + +#: ../../godmode/agentes/agent_template.php:163 ../../include/functions_api.php:15345 +msgid "Modules successfully added" +msgstr "モジュールを追加しました。" + +#: ../../godmode/agentes/agent_template.php:188 +msgid "Assign" +msgstr "割当" + +#: ../../godmode/agentes/agent_template.php:269 ../../mobile/operation/modules.php:772 +msgid "No modules" +msgstr "モジュールがありません" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "オプション。WMI 名前空間。不明な場合は空白のままにします。" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns 1 if " +"found, 0 if not." +msgstr "" +"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 を返" +"し、見つからない場合は 0 を返します。" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +msgid "Column number to retrieve from the WQL query result (starting from zero)." +msgstr "WQL クエリ結果から取得する列番号(ゼロから開始)。" + +#: ../../godmode/agentes/module_manager_editor_web.php:155 +msgid "Debug remotely this module" +msgstr "このモジュールをリモートデバッグ" + +#: ../../godmode/agentes/module_manager_editor_web.php:158 +msgid "Debug this module once it has been initialized" +msgstr "初期化されたら、このモジュールをデバッグ" + +#: ../../godmode/agentes/module_manager_editor_web.php:180 +#: ../../include/class/WebServerModuleDebug.class.php:325 +msgid "Debug" +msgstr "デバッグ" + +#: ../../godmode/agentes/module_manager_editor_web.php:205 +msgid "Requests" +msgstr "リクエスト" + +#: ../../godmode/agentes/module_manager_editor_web.php:208 +msgid "Agent browser id" +msgstr "エージェントブラウザID" + +#: ../../godmode/agentes/module_manager_editor_web.php:214 +msgid "HTTP auth (login)" +msgstr "HTTP 認証 (ログイン)" + +#: ../../godmode/agentes/module_manager_editor_web.php:217 +msgid "HTTP auth (password)" +msgstr "HTTP 認証(パスワード)" + +#: ../../godmode/agentes/module_manager_editor_web.php:231 +msgid "Proxy auth (login)" +msgstr "プロキシ認証(ログイン)" + +#: ../../godmode/agentes/module_manager_editor_web.php:235 +msgid "Proxy auth (pass)" +msgstr "プロキシ認証(パスワード)" + +#: ../../godmode/agentes/module_manager_editor_web.php:242 +msgid "Proxy auth (server)" +msgstr "プロキシ認証(サーバ)" + +#: ../../godmode/agentes/module_manager_editor_web.php:246 +msgid "Proxy auth (realm)" +msgstr "プロキシ認証(レルム)" + +#: ../../godmode/agentes/module_manager_editor_web.php:258 +msgid "There isn't get or post" +msgstr "get または post がありません" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:326 +#: ../../operation/agentes/status_monitor.php:1340 +#: ../../operation/agentes/estado_generalagente.php:436 +msgid "Last status change" +msgstr "最新の状態変化" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "監視詳細フィールド表示" + +#: ../../godmode/agentes/configurar_agente.php:246 +#: ../../godmode/agentes/configurar_agente.php:1046 +msgid "No agent alias specified" +msgstr "エージェントの別名が定義されていません" + +#: ../../godmode/agentes/configurar_agente.php:249 +msgid "Agent cannot be created due to the maximum agent limit for this group" +msgstr "このグループのエージェント上限のため、エージェントを作成できません" + +#: ../../godmode/agentes/configurar_agente.php:356 +msgid "Could not be created, because name already exists" +msgstr "名前がすでに存在するため、作成できませんでした。" + +#: ../../godmode/agentes/configurar_agente.php:358 +msgid "Could not be created, because IP already exists" +msgstr "IP はすでに存在するため作成できません" + +#: ../../godmode/agentes/configurar_agente.php:441 ../../godmode/menu.php:173 +#: ../../godmode/wizards/HostDevices.class.php:1077 +msgid "Module templates" +msgstr "モジュールテンプレート" + +#: ../../godmode/agentes/configurar_agente.php:513 +#: ../../operation/agentes/ver_agente.php:1487 +msgid "GIS data" +msgstr "GIS データ" + +#: ../../godmode/agentes/configurar_agente.php:585 +#: ../../godmode/agentes/configurar_agente.php:753 +#: ../../operation/agentes/ver_agente.php:1507 ../../operation/menu.php:496 +#: ../../operation/incidents/incident_statistics.php:21 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "インシデント" + +#: ../../godmode/agentes/configurar_agente.php:748 +msgid "Gis" +msgstr "GIS" + +#: ../../godmode/agentes/configurar_agente.php:790 +msgid "SNMP explorer" +msgstr "SNMPエクスプローラ" + +#: ../../godmode/agentes/configurar_agente.php:821 +#: ../../godmode/agentes/configurar_agente.php:843 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:128 +msgid "Resources" +msgstr "リソース" + +#: ../../godmode/agentes/configurar_agente.php:831 +msgid "Agent manager" +msgstr "エージェントマネージャ" + +#: ../../godmode/agentes/configurar_agente.php:871 +#: ../../godmode/servers/modificar_server.php:240 +msgid "Conf file deleted successfully" +msgstr "conf ファイルを削除しました。" + +#: ../../godmode/agentes/configurar_agente.php:872 +#: ../../godmode/servers/modificar_server.php:241 +msgid "Could not delete conf file" +msgstr "conf ファイルの削除に失敗しました。" + +#: ../../godmode/agentes/configurar_agente.php:889 +#: ../../godmode/agentes/configurar_agente.php:1041 +#: ../../include/class/ExternalTools.class.php:756 +msgid "The ip or dns name entered cannot be resolved" +msgstr "入力された IP または DNS 名の名前解決ができません。" + +#: ../../godmode/agentes/configurar_agente.php:916 +#: ../../godmode/agentes/configurar_agente.php:920 +msgid "No data to normalize" +msgstr "正規化するデータがありません。" + +#: ../../godmode/agentes/configurar_agente.php:925 +#, php-format +msgid "Deleted data above %f" +msgstr "%f を超えるデータを削除しました。" + +#: ../../godmode/agentes/configurar_agente.php:926 +#, php-format +msgid "Error normalizing module %s" +msgstr "モジュール %s において正規化に失敗しました。" + +#: ../../godmode/agentes/configurar_agente.php:1057 +#, php-format +msgid "The group id %d is incorrect." +msgstr "グループ ID %d は不正です。" + +#: ../../godmode/agentes/configurar_agente.php:1059 +msgid "Agent cannot be updated due to the maximum agent limit for this group" +msgstr "このグループのエージェント上限のため、エージェントを更新できません" + +#: ../../godmode/agentes/configurar_agente.php:1061 +msgid "Duplicate main IP address" +msgstr "メイン IP が重複しています" + +#: ../../godmode/agentes/configurar_agente.php:1115 +msgid "There was a problem updating the agent" +msgstr "エージェントの更新に失敗しました。" + +#: ../../godmode/agentes/configurar_agente.php:1208 +msgid "There was a problem loading the agent" +msgstr "エージェントのロードに失敗しました。" + +#: ../../godmode/agentes/configurar_agente.php:1720 +msgid "" +"There was a problem updating module. Another module already exists with the same name." +msgstr "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" + +#: ../../godmode/agentes/configurar_agente.php:1724 +msgid "There was a problem updating module. Some required fields are missed: (name)" +msgstr "" +"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" + +#: ../../godmode/agentes/configurar_agente.php:1728 +msgid "There was a problem updating module. \"No change\"" +msgstr "モジュールの更新で問題が発生しました。\"変更点がありません\"" + +#: ../../godmode/agentes/configurar_agente.php:1734 +msgid "There was a problem updating module. Processing error" +msgstr "モジュールの更新で問題が発生しました。処理エラー" + +#: ../../godmode/agentes/configurar_agente.php:1763 +msgid "Module successfully updated" +msgstr "モジュールの更新が完了しました。" + +#: ../../godmode/agentes/configurar_agente.php:1910 +msgid "" +"There was a problem adding module. Another module already exists with the same name." +msgstr "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" + +#: ../../godmode/agentes/configurar_agente.php:1914 +msgid "There was a problem adding module. Some required fields are missed : (name)" +msgstr "" +"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" + +#: ../../godmode/agentes/configurar_agente.php:1920 +msgid "There was a problem adding module. Processing error" +msgstr "モジュールの追加で問題が発生しました。処理エラー" + +#: ../../godmode/agentes/configurar_agente.php:1949 +#: ../../godmode/reporting/graph_builder.php:386 +msgid "Module added successfully" +msgstr "モジュールを追加しました。" + +#: ../../godmode/agentes/configurar_agente.php:2100 +msgid "There was a problem deleting the module" +msgstr "モジュールの削除に失敗しました。" + +#: ../../godmode/agentes/configurar_agente.php:2104 +msgid "Module deleted succesfully" +msgstr "モジュールを削除しました。" + +#: ../../godmode/agentes/configurar_agente.php:2243 +#: ../../include/functions_api.php:11144 +#, php-format +msgid "Save by %s Console" +msgstr "%s コンソールでの保存" + +#: ../../godmode/agentes/configurar_agente.php:2261 +#: ../../include/functions_api.php:11145 +#, php-format +msgid "Update by %s Console" +msgstr "%s コンソールでの更新" + +#: ../../godmode/agentes/configurar_agente.php:2277 +#: ../../include/functions_api.php:11146 +#, php-format +msgid "Insert by %s Console" +msgstr "%s コンソールによる挿入" + +#: ../../godmode/agentes/configurar_agente.php:2350 +#: ../../godmode/agentes/configurar_agente.php:2362 +msgid "Invalid tab specified" +msgstr "不正なタブが指定されました" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +msgid "Source module" +msgstr "対象モジュール" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:148 +#: ../../godmode/agentes/module_manager_editor_prediction.php:169 +msgid "Select Module" +msgstr "モジュールの選択" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:195 +msgid "Calculation type" +msgstr "計算タイプ" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:203 +msgid "Estimated absolute value" +msgstr "推定絶対値" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:204 +msgid "Calculation of days to reach limit" +msgstr "制限に達するまでの日数の計算" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:213 +msgid "Future estimation" +msgstr "将来の見積" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:228 +msgid "Limit value" +msgstr "制限値" + +#: ../../godmode/agentes/module_manager_editor.php:718 +msgid "Invalid module type" +msgstr "不正なモジュールタイプ" + +#: ../../godmode/agentes/module_manager_editor.php:762 +msgid "Module relations" +msgstr "モジュール関係" + +#: ../../godmode/agentes/module_manager_editor.php:852 +msgid "No module to predict" +msgstr "予測モジュールがありません。" + +#: ../../godmode/agentes/module_manager_editor.php:862 +msgid "No plug-in provided" +msgstr "プラグインがありません" + +#: ../../godmode/agentes/module_manager_editor.php:872 +msgid "No server provided" +msgstr "サーバがありません" + +#: ../../godmode/agentes/module_manager_editor.php:903 +msgid "" +"Error, The field name and name in module_name in data configuration are different." +msgstr "エラー、データ設定におけるフィールド名と module_name 内の名前が異なります。" + +#: ../../godmode/agentes/module_manager_editor.php:941 +msgid "The File APIs are not fully supported in this browser." +msgstr "このブラウザでは、ファイル API は完全にはサポートされていません。" + +#: ../../godmode/agentes/module_manager_editor.php:942 +msgid "Couldn`t find the fileinput element." +msgstr "ファイル入力要素がみつかりません。" + +#: ../../godmode/agentes/module_manager_editor.php:943 +msgid "This browser doesn`t seem to support the files property of file inputs." +msgstr "" +"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。" + +#: ../../godmode/agentes/module_manager_editor.php:944 +msgid "Please select a file before clicking Load" +msgstr "読み込みをクリックする前にファイルを選択してください。" + +#: ../../godmode/agentes/modificar_agente.php:95 +#, php-format +msgid "Agents defined in %s" +msgstr "%s で定義されたエージェント" + +#: ../../godmode/agentes/modificar_agente.php:124 +#, php-format +msgid "This node is configured with centralized mode. Go to %s to delete an agent" +msgstr "" +"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に移動し" +"ます" + +#: ../../godmode/agentes/modificar_agente.php:170 +msgid "Success deleted agent." +msgstr "エージェントを削除しました" + +#: ../../godmode/agentes/modificar_agente.php:171 +msgid "Could not be deleted." +msgstr "削除できませんでした。" + +#: ../../godmode/agentes/modificar_agente.php:186 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "confまたはmd5ファイルを削除できませんでした" + +#: ../../godmode/agentes/modificar_agente.php:333 +msgid "Show Agents" +msgstr "エージェント表示" + +#: ../../godmode/agentes/modificar_agente.php:335 +msgid "Everyone" +msgstr "全て" + +#: ../../godmode/agentes/modificar_agente.php:349 +msgid "Operative System" +msgstr "オペレーションシステム" + +#: ../../godmode/agentes/modificar_agente.php:367 +#: ../../include/class/SatelliteAgent.class.php:163 +msgid "Search filter by alias, name, description, IP address or custom fields content" +msgstr "別名、名前、説明、IPドレス、カスタムフィールドの内容による検索フィルタ" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "Remote agent configuration" +msgstr "リモートエージェント設定" + +#: ../../godmode/agentes/modificar_agente.php:648 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:859 +msgid "Edit remote config" +msgstr "リモート設定" + +#: ../../godmode/agentes/modificar_agente.php:909 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "クラスタエージェントを有効化します。よろしいですか?" + +#: ../../godmode/agentes/modificar_agente.php:912 +msgid "Enable agent" +msgstr "エージェントの有効化" + +#: ../../godmode/agentes/modificar_agente.php:919 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "クラスタエージェントを無効化します。よろしいですか?" + +#: ../../godmode/agentes/modificar_agente.php:922 +msgid "Disable agent" +msgstr "エージェントの無効化" + +#: ../../godmode/agentes/modificar_agente.php:932 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "警告! - クラスタエージェントを削除します。よろしいですか?" + +#: ../../godmode/agentes/agent_conf_gis.php:38 ../../operation/agentes/gis_view.php:59 +msgid "There is no default map. Please go to the setup for to set a default map." +msgstr "デフォルトマップがありません。デフォルトマップ設定を行ってください。" + +#: ../../godmode/agentes/agent_conf_gis.php:50 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position of map." +msgstr "" +"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配置し" +"ます。" + +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the 'Ignore new " +"GIS data' option" +msgstr "" +"エージェントの位置を変更すると、エージェントは '新たなGISデータを無視する' オプション" +"を自動的に有効化します。" + +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "エージェントの位置" + +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "緯度: " + +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "経度: " + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "高度: " + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:1072 +msgid "Ignore new GIS data:" +msgstr "新たな GIS データを無視する:" + +#: ../../godmode/agentes/planned_downtime.list.php:174 +#: ../../godmode/agentes/planned_downtime.editor.php:68 +#: ../../include/functions_reporting_html.php:883 +#: ../../include/functions_reporting_html.php:4785 +msgid "Scheduled Downtime" +msgstr "計画停止" + +#: ../../godmode/agentes/planned_downtime.list.php:206 +msgid "An error occurred stopping the scheduled downtime" +msgstr "計画停止の中止中にエラーが発生しました" + +#: ../../godmode/agentes/planned_downtime.list.php:233 +msgid "This scheduled downtime is running" +msgstr "この計画停止を実行中" + +#: ../../godmode/agentes/planned_downtime.list.php:318 +#: ../../godmode/agentes/planned_downtime.list.php:672 +#: ../../godmode/agentes/planned_downtime.editor.php:881 +msgid "Once" +msgstr "一回のみ" + +#: ../../godmode/agentes/planned_downtime.list.php:319 +#: ../../godmode/agentes/planned_downtime.list.php:673 +#: ../../godmode/agentes/planned_downtime.editor.php:882 +msgid "Periodically" +msgstr "定期的" + +#: ../../godmode/agentes/planned_downtime.list.php:320 +#: ../../godmode/agentes/planned_downtime.list.php:674 +msgid "Cron" +msgstr "Cron" + +#: ../../godmode/agentes/planned_downtime.list.php:334 +msgid "Show past downtimes" +msgstr "終了した計画停止の表示" + +#: ../../godmode/agentes/planned_downtime.list.php:583 +#: ../../godmode/agentes/planned_downtime.export_csv.php:202 +msgid "No scheduled downtime" +msgstr "計画停止がありません" + +#: ../../godmode/agentes/planned_downtime.list.php:619 +msgid "Name #Ag." +msgstr "名前" + +#: ../../godmode/agentes/planned_downtime.list.php:626 +msgid "Affected" +msgstr "対象" + +#: ../../godmode/agentes/planned_downtime.list.php:631 +#: ../../godmode/agentes/planned_downtime.list.php:735 +#: ../../godmode/agentes/planned_downtime.list.php:741 +msgid "Stop downtime" +msgstr "計画停止の中止" + +#: ../../godmode/agentes/planned_downtime.list.php:665 +#: ../../godmode/agentes/planned_downtime.editor.php:863 +msgid "Disabled Agents" +msgstr "エージェント無効化" + +#: ../../godmode/agentes/planned_downtime.list.php:666 +#: ../../godmode/agentes/planned_downtime.editor.php:865 +msgid "Disabled only Alerts" +msgstr "アラートのみ無効化" + +#: ../../godmode/agentes/planned_downtime.list.php:688 +msgid "Not running" +msgstr "停止中" + +#: ../../godmode/agentes/planned_downtime.list.php:706 +msgid "Agents / Modules affected" +msgstr "対象エージェント/モジュール" + +#: ../../godmode/agentes/planned_downtime.list.php:715 +msgid "Agents and modules affected" +msgstr "対象エージェントとモジュール" + +#: ../../godmode/agentes/planned_downtime.list.php:913 +msgid "" +"WARNING: If you delete this scheduled downtime, it will not be taken into account in " +"future SLA reports" +msgstr "警告: この計画停止を削除すると、将来の SLA レポートには考慮されません" + +#: ../../godmode/agentes/planned_downtime.list.php:919 +msgid "WARNING: There are malformed scheduled downtimes" +msgstr "警告: 不正な計画停止があります" + +#: ../../godmode/agentes/planned_downtime.list.php:919 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "不正な要素を自動的に移動しますか。" + +#: ../../godmode/agentes/planned_downtime.editor.php:221 +#: ../../godmode/agentes/planned_downtime.editor.php:1427 +#: ../../godmode/agentes/planned_downtime.editor.php:1569 +msgid "This elements cannot be modified while the downtime is being executed" +msgstr "計画停止実行中は、この要素は変更できません。" + +#: ../../godmode/agentes/planned_downtime.editor.php:254 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:759 +msgid "" +"Not created. Error inserting data. Start time must be higher than the current time" +msgstr "" +"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければいけま" +"せん。" + +#: ../../godmode/agentes/planned_downtime.editor.php:258 +#: ../../godmode/agentes/planned_downtime.editor.php:262 +#: ../../godmode/agentes/planned_downtime.editor.php:270 +#: ../../godmode/agentes/planned_downtime.editor.php:274 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:771 +#: ../../include/functions_planned_downtimes.php:779 +#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:802 +#: ../../include/functions_planned_downtimes.php:807 +#: ../../include/functions_planned_downtimes.php:812 +#: ../../include/functions_planned_downtimes.php:817 +msgid "Not created. Error inserting data" +msgstr "設定できませんでした。入力データエラーです。" + +#: ../../godmode/agentes/planned_downtime.editor.php:258 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:771 +msgid "The end date must be higher than the start date" +msgstr "終了日は開始日より後でなければいけません" + +#: ../../godmode/agentes/planned_downtime.editor.php:262 +#: ../../include/functions_planned_downtimes.php:764 +msgid "The end date must be higher than the current time" +msgstr "終了日時は開始日時より後でなければいけません" + +#: ../../godmode/agentes/planned_downtime.editor.php:270 +#: ../../godmode/agentes/planned_downtime.editor.php:992 +#: ../../godmode/agentes/planned_downtime.editor.php:1005 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:779 +msgid "The end time must be higher than the start time" +msgstr "終了時刻は開始時刻より後でなければいけません" + +#: ../../godmode/agentes/planned_downtime.editor.php:274 +#: ../../godmode/agentes/planned_downtime.editor.php:977 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:787 +msgid "The end day must be higher than the start day" +msgstr "終了日は開始日より後でなければいけません" + +#: ../../godmode/agentes/planned_downtime.editor.php:287 +msgid "hour (from)" +msgstr "時間(開始)" + +#: ../../godmode/agentes/planned_downtime.editor.php:304 +msgid "minute (from)" +msgstr "分(開始)" + +#: ../../godmode/agentes/planned_downtime.editor.php:321 +msgid "month day (from)" +msgstr "日にち(開始)" + +#: ../../godmode/agentes/planned_downtime.editor.php:338 +msgid "month (from)" +msgstr "月(開始)" + +#: ../../godmode/agentes/planned_downtime.editor.php:355 +msgid "week day (from)" +msgstr "曜日(開始)" + +#: ../../godmode/agentes/planned_downtime.editor.php:372 +msgid "hour (to)" +msgstr "時間(終了)" + +#: ../../godmode/agentes/planned_downtime.editor.php:389 +msgid "minute (to)" +msgstr "分(終了)" + +#: ../../godmode/agentes/planned_downtime.editor.php:406 +msgid "month day (to)" +msgstr "日にち(終了)" + +#: ../../godmode/agentes/planned_downtime.editor.php:423 +msgid "month (to)" +msgstr "月(終了)" + +#: ../../godmode/agentes/planned_downtime.editor.php:440 +msgid "week day (to)" +msgstr "曜日(終了)" + +#: ../../godmode/agentes/planned_downtime.editor.php:479 +#: ../../godmode/agentes/planned_downtime.editor.php:614 +msgid "Downtime start cron expression is not correct" +msgstr "計画停止開始の cron 書式が正しくありません" + +#: ../../godmode/agentes/planned_downtime.editor.php:485 +#: ../../godmode/agentes/planned_downtime.editor.php:620 +msgid "Downtime stop cron expression is not correct" +msgstr "計画停止 cron 書式が正しくありません" + +#: ../../godmode/agentes/planned_downtime.editor.php:530 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:831 +msgid "Each scheduled downtime must have a different name" +msgstr "それぞれの計画停止は異なる名前である必要があります" + +#: ../../godmode/agentes/planned_downtime.editor.php:535 +#: ../../godmode/agentes/planned_downtime.editor.php:568 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:837 +msgid "Scheduled downtime must have a name" +msgstr "計画停止には名前が必要です" + +#: ../../godmode/agentes/planned_downtime.editor.php:857 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "静観: モジュールはイベント生成やアラートの発報を行いません" + +#: ../../godmode/agentes/planned_downtime.editor.php:857 +msgid "Disable Agents: Disables the selected agents." +msgstr "エージェント無効化: 選択したエージェントを無効化します。" + +#: ../../godmode/agentes/planned_downtime.editor.php:857 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "アラートのみ無効化: 選択したエージェントのアラートを無効化します。" + +#: ../../godmode/agentes/planned_downtime.editor.php:864 +msgid "Disable Modules" +msgstr "モジュール無効化" + +#: ../../godmode/agentes/planned_downtime.editor.php:883 +msgid "Cron from/to" +msgstr "Cron 開始/終了" + +#: ../../godmode/agentes/planned_downtime.editor.php:904 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5697 +#: ../../include/ajax/alert_list.ajax.php:592 +msgid "From:" +msgstr "開始日時:" + +#: ../../godmode/agentes/planned_downtime.editor.php:908 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5697 +#: ../../include/ajax/alert_list.ajax.php:606 +msgid "To:" +msgstr "終了日時:" + +#: ../../godmode/agentes/planned_downtime.editor.php:963 +msgid "To day:" +msgstr "終了日:" + +#: ../../godmode/agentes/planned_downtime.editor.php:995 +msgid "To hour:" +msgstr "終了時間:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1017 +msgid "Cron from:" +msgstr "Cron 開始: " + +#: ../../godmode/agentes/planned_downtime.editor.php:1021 +msgid "Cron to:" +msgstr "Cron 終了: " + +#: ../../godmode/agentes/planned_downtime.editor.php:1084 +msgid "Group filter" +msgstr "グループフィルタ" + +#: ../../godmode/agentes/planned_downtime.editor.php:1133 +msgid "Available modules:" +msgstr "存在するモジュール:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1134 +msgid "Only for type Quiet for downtimes." +msgstr "静観タイプの場合のみ" + +#: ../../godmode/agentes/planned_downtime.editor.php:1192 +msgid "Agents planned for this downtime" +msgstr "この計画停止が予定される対象エージェント" + +#: ../../godmode/agentes/planned_downtime.editor.php:1210 +msgid "There are no agents" +msgstr "エージェントがありません" + +#: ../../godmode/agentes/planned_downtime.editor.php:1252 +msgid "All alerts" +msgstr "全アラート" + +#: ../../godmode/agentes/planned_downtime.editor.php:1254 +msgid "Entire agent" +msgstr "エージェント全体" + +#: ../../godmode/agentes/planned_downtime.editor.php:1257 +#: ../../godmode/agentes/planned_downtime.editor.php:1379 +msgid "All modules" +msgstr "全モジュール" + +#: ../../godmode/agentes/planned_downtime.editor.php:1259 +#: ../../godmode/agentes/planned_downtime.editor.php:1371 +#: ../../godmode/agentes/planned_downtime.editor.php:1375 +msgid "Some modules" +msgstr "いくつかのモジュール" + +#: ../../godmode/agentes/planned_downtime.editor.php:1325 +msgid "Add Module:" +msgstr "モジュール追加:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1699 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4815 +msgid "Please select a module." +msgstr "モジュールを選択してください。" + +#: ../../godmode/agentes/planned_downtime.editor.php:1834 +msgid "" +"WARNING: If you edit this scheduled downtime, the data of future SLA reports may be " +"altered" +msgstr "警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます" + +#: ../../godmode/agentes/fields_manager.php:30 +msgid "Agents custom fields manager" +msgstr "エージェントカスタムフィールド管理" + +#: ../../godmode/agentes/fields_manager.php:46 ../../include/ajax/custom_fields.php:737 +msgid "The name must not be empty" +msgstr "名前は空ではいけません" + +#: ../../godmode/agentes/fields_manager.php:48 +msgid "The name must be unique" +msgstr "名前はユニークである必要があります" + +#: ../../godmode/agentes/fields_manager.php:59 +msgid "Field successfully created" +msgstr "フィールドを作成しました。" + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "Field successfully updated" +msgstr "フィールドを更新しました。" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem modifying field" +msgstr "フィールドの修正で問題が発生しました。" + +#: ../../godmode/agentes/fields_manager.php:94 +msgid "There was a problem deleting field" +msgstr "フィールドの削除で問題が発生しました。" + +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Field successfully deleted" +msgstr "フィールドを削除しました。" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:95 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "前面に表示" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:96 +#: ../../operation/agentes/custom_fields.php:67 +msgid "" +"The fields with display on front enabled will be displayed into the agent details" +msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" + +#: ../../godmode/agentes/fields_manager.php:168 +msgid "Create field" +msgstr "フィールド作成" + +#: ../../godmode/agentes/module_manager_editor_network.php:266 +msgid "SNMP walk" +msgstr "snmpwalk" + +#: ../../godmode/agentes/module_manager_editor_network.php:448 +msgid "" +"Please use single quotation marks when necessary. \n" +"\n" +"If double quotation marks are needed, please escape them with a backslash (\\")" +msgstr "" +"必要であれば、シングルクォーテーションを使ってください。\n" +"\n" +"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープしてくださ" +"い。" + +#: ../../godmode/agentes/module_manager_editor_network.php:479 +msgid "Windows remote" +msgstr "リモート Windows" + +#: ../../godmode/agentes/agent_manager.php:226 +#: ../../operation/agentes/estado_agente.php:215 ../../operation/menu.php:56 +msgid "Agent detail" +msgstr "エージェント詳細" + +#: ../../godmode/agentes/agent_manager.php:241 +msgid "Delete agent" +msgstr "エージェント削除" + +#: ../../godmode/agentes/agent_manager.php:275 +msgid "QR Code Agent view" +msgstr "エージェント表示 QR コード" + +#: ../../godmode/agentes/agent_manager.php:296 +msgid "Use alias as name" +msgstr "名前に別名を利用" + +#: ../../godmode/agentes/agent_manager.php:304 ../../godmode/setup/setup_general.php:459 +#: ../../include/functions_config.php:368 +msgid "Unique IP" +msgstr "ユニーク IP" + +#: ../../godmode/agentes/agent_manager.php:312 +msgid "Fix IP address" +msgstr "IP アドレスの固定" + +#: ../../godmode/agentes/agent_manager.php:312 +msgid "Avoid automatic IP address update when agent IP changes." +msgstr "エージェント IP が変更された場合、IP アドレスの自動更新を回避します" + +#: ../../godmode/agentes/agent_manager.php:322 +msgid "Delete selected IPs" +msgstr "選択 IP を削除します" + +#: ../../godmode/agentes/agent_manager.php:347 +msgid "Primary group" +msgstr "プライマリグループ" + +#: ../../godmode/agentes/agent_manager.php:461 ../../godmode/setup/license.php:153 +#: ../../godmode/servers/modificar_server.php:42 ../../include/functions_ui.php:866 +#: ../../include/class/Diagnostics.class.php:1184 +msgid "Satellite" +msgstr "サテライト" + +#: ../../godmode/agentes/agent_manager.php:527 +#: ../../godmode/massive/massive_edit_agents.php:1128 +msgid "Safe operation mode" +msgstr "セーフオペレーションモード" + +#: ../../godmode/agentes/agent_manager.php:568 +msgid "Cascade protection services" +msgstr "サービス関連障害検知抑制" + +#: ../../godmode/agentes/agent_manager.php:599 +#: ../../godmode/massive/massive_edit_agents.php:668 +msgid "Cascade protection" +msgstr "関連障害検知抑制" + +#: ../../godmode/agentes/agent_manager.php:615 +#: ../../godmode/massive/massive_edit_agents.php:879 +msgid "Module definition" +msgstr "モジュール定義" + +#: ../../godmode/agentes/agent_manager.php:620 +#: ../../godmode/massive/massive_edit_agents.php:891 +msgid "Learning mode" +msgstr "学習モード" + +#: ../../godmode/agentes/agent_manager.php:630 +#: ../../godmode/massive/massive_edit_agents.php:902 +msgid "Normal mode" +msgstr "通常モード" + +#: ../../godmode/agentes/agent_manager.php:640 +#: ../../godmode/massive/massive_edit_agents.php:913 +msgid "Autodisable mode" +msgstr "自動無効化モード" + +#: ../../godmode/agentes/agent_manager.php:657 +msgid "Disabled mode" +msgstr "無効化モード" + +#: ../../godmode/agentes/agent_manager.php:662 +#: ../../godmode/agentes/agent_manager.php:679 ../../include/functions_treeview.php:759 +#: ../../operation/agentes/ver_agente.php:1526 +#: ../../operation/agentes/estado_generalagente.php:495 +msgid "Url address" +msgstr "URLアドレス" + +#: ../../godmode/agentes/agent_manager.php:704 +#: ../../godmode/massive/massive_edit_agents.php:1014 +msgid "Agent icon" +msgstr "エージェントアイコン" + +#: ../../godmode/agentes/agent_manager.php:754 +msgid "Update new GIS data:" +msgstr "新たな GIS データ更新:" + +#: ../../godmode/agentes/agent_manager.php:812 +msgid "Click to display" +msgstr "クリックして表示" + +#: ../../godmode/agentes/agent_manager.php:1064 +msgid "Secondary group cannot be primary too." +msgstr "セカンダリグループはプライマリにできません。" + +#: ../../godmode/agentes/agent_incidents.php:22 +#: ../../operation/incidents/incident_statistics.php:24 +#: ../../operation/incidents/configure_integriaims_incident.php:33 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 +#: ../../operation/incidents/list_integriaims_incidents.php:34 +msgid "" +"In order to access ticket management system, integration with Integria IMS must be " +"enabled and properly configured" +msgstr "" +"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正しく設" +"定されている必要があります" + +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "このエージェントに関連付けられたインシデントがありません" + +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Incident" +msgstr "インシデント" + +#: ../../godmode/agentes/configure_field.php:41 +msgid "Update agent custom field" +msgstr "エージェントカスタムフィールドの更新" + +#: ../../godmode/agentes/configure_field.php:43 +msgid "Create agent custom field" +msgstr "エージェントカスタムフィールドの作成" + +#: ../../godmode/agentes/configure_field.php:55 +#: ../../godmode/agentes/configure_field.php:59 +#: ../../godmode/agentes/configure_field.php:63 +#: ../../godmode/agentes/configure_field.php:67 +msgid "Agent Custom Fields Information" +msgstr "エージェントカスタムフィールド情報" + +#: ../../godmode/agentes/configure_field.php:56 +msgid "" +"You cannot set the Password type until you clear the combo values and click on update " +"button." +msgstr "" +"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定することはでき" +"ません。" + +#: ../../godmode/agentes/configure_field.php:60 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click on " +"update." +msgstr "" +"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできません。" + +#: ../../godmode/agentes/configure_field.php:64 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "有効な設定を選択すると、パスワードタイプは無効になります。" + +#: ../../godmode/agentes/configure_field.php:68 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "パスワードを選択すると、有効な設定が無効化されます。" + +#: ../../godmode/agentes/configure_field.php:84 +msgid "Pass type" +msgstr "パスタイプ" + +#: ../../godmode/agentes/configure_field.php:85 +msgid "" +"The fields with pass type enabled will be displayed like html input type pass in html" +msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" + +#: ../../godmode/agentes/configure_field.php:106 +msgid "Enabled combo" +msgstr "有効な設定" + +#: ../../godmode/agentes/configure_field.php:118 +msgid "Combo values" +msgstr "選択肢" + +#: ../../godmode/agentes/configure_field.php:119 +msgid "Set values separated by comma" +msgstr "カンマ区切りで値を設定" + +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "Using module component" +msgstr "モジュールコンポーネント" + +#: ../../godmode/agentes/module_manager_editor_common.php:413 +msgid "Warning threshold" +msgstr "警告閾値" + +#: ../../godmode/agentes/module_manager_editor_common.php:415 +#: ../../godmode/agentes/module_manager_editor_common.php:476 +msgid "Min. " +msgstr "最小 " + +#: ../../godmode/agentes/module_manager_editor_common.php:474 +msgid "Critical threshold" +msgstr "障害閾値" + +#: ../../godmode/agentes/module_manager_editor_common.php:673 +msgid "Dynamic Threshold Interval" +msgstr "動的しきい値の間隔" + +#: ../../godmode/agentes/module_manager_editor_common.php:700 +msgid "Dynamic Threshold Min. " +msgstr "最小動的しきい値 " + +#: ../../godmode/agentes/module_manager_editor_common.php:713 +msgid "Dynamic Threshold Max. " +msgstr "最大動的しきい値 " + +#: ../../godmode/agentes/module_manager_editor_common.php:726 +msgid "Dynamic Threshold Two Tailed: " +msgstr "2つの動的しきい値を使う: " + +#: ../../godmode/agentes/module_manager_editor_common.php:737 +msgid "Not needed" +msgstr "不要です。" + +#: ../../godmode/agentes/module_manager_editor_common.php:1035 +msgid "Tags from policy" +msgstr "ポリシーからのタグ" + +#: ../../godmode/agentes/module_manager_editor_common.php:1075 +msgid "Cascade Protection Services" +msgstr "サービス関連障害検知抑制" + +#: ../../godmode/agentes/module_manager_editor_common.php:1109 +#: ../../godmode/agentes/module_manager_editor_common.php:1117 +#: ../../godmode/agentes/module_manager_editor_common.php:1126 +msgid "Cron from" +msgstr "Cron 開始" + +#: ../../godmode/agentes/module_manager_editor_common.php:1113 +#: ../../godmode/agentes/module_manager_editor_common.php:1121 +#: ../../godmode/agentes/module_manager_editor_common.php:1130 +msgid "Cron to" +msgstr "Cron 終了" + +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +msgid "Module parent" +msgstr "モジュールの親" + +#: ../../godmode/agentes/module_manager_editor_common.php:1264 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +msgid "Direct" +msgstr "直接" + +#: ../../godmode/agentes/module_manager_editor_common.php:1265 +#: ../../godmode/agentes/module_manager_editor_common.php:1375 +#: ../../include/functions_reporting_html.php:4028 +#: ../../include/functions_reporting_html.php:4122 +#: ../../include/functions_reporting_html.php:4202 +#: ../../include/functions_reporting_html.php:4211 +#: ../../include/functions_reporting_html.php:4349 +#: ../../include/functions_reporting_html.php:4358 +#: ../../include/functions_reporting_html.php:4682 +#: ../../include/functions_reporting_html.php:4688 +msgid "Failover" +msgstr "フェイルオーバ" + +#: ../../godmode/agentes/module_manager_editor_common.php:1266 +msgid "Rel. type" +msgstr "関係タイプ" + +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +msgid "Add relationship" +msgstr "関係の追加" + +#: ../../godmode/agentes/module_manager_editor_common.php:1306 +msgid "Changes" +msgstr "変更" + +#: ../../godmode/agentes/module_manager.php:130 +msgid "Create a new data server module" +msgstr "データサーバモジュールの新規作成" + +#: ../../godmode/agentes/module_manager.php:132 +msgid "Create a new network server module" +msgstr "ネットワークサーバモジュールの新規作成" + +#: ../../godmode/agentes/module_manager.php:136 +msgid "Create a new plugin server module" +msgstr "プラグインサーバモジュールの新規作成" + +#: ../../godmode/agentes/module_manager.php:140 +msgid "Create a new WMI server module" +msgstr "WMI サーバモジュールの新規作成" + +#: ../../godmode/agentes/module_manager.php:144 +msgid "Create a new prediction server module" +msgstr "予測サーバモジュールの新規作成" + +#: ../../godmode/agentes/module_manager.php:148 +msgid "Create a new web Server module" +msgstr "ウェブサーバモジュールの新規作成" + +#: ../../godmode/agentes/module_manager.php:192 +#: ../../operation/agentes/estado_monitores.php:582 +msgid "Show in hierachy mode" +msgstr "階層モードで表示" + +#: ../../godmode/agentes/module_manager.php:211 +msgid "

    Type

    " +msgstr "

    タイプ

    " + +#: ../../godmode/agentes/module_manager.php:241 +msgid "Get more modules on Monitoring Library" +msgstr "ライブラリからモジュールを取得" + +#: ../../godmode/agentes/module_manager.php:280 +msgid "There was a problem completing the operation" +msgstr "処理が正しく終了しませんでした。" + +#: ../../godmode/agentes/module_manager.php:437 +#: ../../godmode/agentes/module_manager.php:485 +#, php-format +msgid "There was a problem completing the operation. Applied to 0/%d modules." +msgstr "処理が正しく終了しませんでした。 0 /%d モジュールに適用されます。" + +#: ../../godmode/agentes/module_manager.php:443 +#: ../../godmode/agentes/module_manager.php:491 +msgid "Operation finished successfully." +msgstr "処理が正常に終了しました。" + +#: ../../godmode/agentes/module_manager.php:447 +#: ../../godmode/agentes/module_manager.php:495 +#, php-format +msgid "There was a problem completing the operation. Applied to %d/%d modules." +msgstr "処理が正しく完了しませんでした。%d/%d モジュールに適用されます。" + +#: ../../godmode/agentes/module_manager.php:801 +#: ../../godmode/reporting/map_builder.php:452 +#: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:560 +#: ../../operation/agentes/datos_agente.php:295 +msgid "No available data to show" +msgstr "表示するデータがありません。" + +#: ../../godmode/agentes/module_manager.php:875 +msgid "Del." +msgstr "削除" + +#: ../../godmode/agentes/module_manager.php:1015 +msgid "Module in scheduled downtime" +msgstr "計画停止内エージェント" + +#: ../../godmode/agentes/module_manager.php:1067 +#: ../../godmode/agentes/module_manager.php:1075 ../../include/ajax/module.php:1084 +#: ../../include/ajax/module.php:1092 +msgid "Adopted" +msgstr "適用" + +#: ../../godmode/agentes/module_manager.php:1205 +msgid "Normalize" +msgstr "正規化" + +#: ../../godmode/agentes/module_manager.php:1215 +msgid "Normalize (Disabled)" +msgstr "正規化 (無効)" + +#: ../../godmode/agentes/module_manager.php:1230 +#: ../../include/functions_snmp_browser.php:638 +msgid "Create network component" +msgstr "ネットワークコンポーネントの作成" + +#: ../../godmode/agentes/module_manager.php:1239 +msgid "Create network component (Disabled)" +msgstr "ネットワークコンポーネントの作成 (無効)" + +#: ../../godmode/agentes/module_manager.php:1299 +msgid "Execute action" +msgstr "アクション実行" + +#: ../../godmode/netflow/nf_item_list.php:27 +#: ../../operation/reporting/reporting_viewer.php:119 +msgid "Report list" +msgstr "レポート一覧" + +#: ../../godmode/netflow/nf_item_list.php:30 ../../godmode/netflow/nf_item_list.php:38 +msgid "Report items" +msgstr "レポートアイテム" + +#: ../../godmode/netflow/nf_item_list.php:33 +msgid "Edit report" +msgstr "レポートの編集" + +#: ../../godmode/netflow/nf_item_list.php:53 +msgid "Netflow reports" +msgstr "Netflow レポート" + +#: ../../godmode/netflow/nf_item_list.php:57 +msgid "Item list" +msgstr "アイテム一覧" + +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2501 +#: ../../operation/netflow/nf_live_view.php:330 +msgid "Max. values" +msgstr "最大値" + +#: ../../godmode/netflow/nf_item_list.php:177 ../../operation/agentes/graphs.php:233 +msgid "Chart type" +msgstr "グラフタイプ" + +#: ../../godmode/netflow/nf_item_list.php:277 +msgid "There are no defined items" +msgstr "定義済のアイテムがありません" + +#: ../../godmode/netflow/nf_edit.php:38 +msgid "Manage Netflow Filter" +msgstr "Netflow フィルタ管理" + +#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 +#: ../../godmode/netflow/nf_edit_form.php:73 ../../godmode/netflow/nf_edit_form.php:83 +#: ../../godmode/menu.php:122 +msgid "Netflow filters" +msgstr "Netflow フィルタ" + +#: ../../godmode/netflow/nf_edit.php:212 ../../godmode/events/event_filter.php:215 +msgid "There are no defined filters" +msgstr "定義済のフィルタがありません" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54 +msgid "Filter list" +msgstr "フィルタ一覧" + +#: ../../godmode/netflow/nf_edit_form.php:55 ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "フィルタの追加" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "Netflow フィルタ" + +#: ../../godmode/netflow/nf_edit_form.php:188 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:756 +#: ../../include/ajax/events.php:816 +msgid "Update filter" +msgstr "フィルタの更新" + +#: ../../godmode/netflow/nf_edit_form.php:235 +msgid "Filter:" +msgstr "フィルタ:" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Dst Ip" +msgstr "宛先 IP" + +#: ../../godmode/netflow/nf_edit_form.php:239 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "" +"Destination IP. A comma separated list of destination ip. If we leave the field " +"blank, will show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" +msgstr "" +"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によるフィ" +"ルタ例:
    25.46.157.214,160.253.135.249" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "Src Ip" +msgstr "送信元IP" + +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:422 +msgid "" +"Source IP. A comma separated list of source ip. If we leave the field blank, will " +"show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" +msgstr "" +"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IPによる" +"フィルタ例:
    25.46.157.214,160.253.135.249" + +#: ../../godmode/netflow/nf_edit_form.php:245 ../../godmode/netflow/nf_edit_form.php:258 +#: ../../operation/netflow/nf_live_view.php:350 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Dst Port" +msgstr "宛先ポート" + +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "" +"Destination port. A comma separated list of destination ports. If we leave the field " +"blank, will show all ports. Example filter by ports 80 and 22:
    80,22" +msgstr "" +"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポート " +"80 および 22 のフィルタ例:
    80,22" + +#: ../../godmode/netflow/nf_edit_form.php:248 ../../godmode/netflow/nf_edit_form.php:257 +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "Src Port" +msgstr "送信元ポート" + +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../operation/netflow/nf_live_view.php:441 +msgid "" +"Source port. A comma separated list of source ports. If we leave the field blank, " +"will show all ports. Example filter by ports 80 and 22:
    80,22" +msgstr "" +"カンマ区切りの発信元ポート一覧です。何も入力しない場合は全てのポートを表示します。ポー" +"ト 80 と 22 でのフィルタ例:
    80,22" + +#: ../../godmode/netflow/nf_edit_form.php:253 +#: ../../operation/netflow/nf_live_view.php:344 +msgid "Aggregate by" +msgstr "集約" + +#: ../../godmode/netflow/nf_edit_form.php:255 +#: ../../operation/netflow/nf_live_view.php:347 +msgid "Src Ip Address" +msgstr "送信元 IP アドレス" + +#: ../../godmode/netflow/nf_edit_form.php:256 +#: ../../operation/netflow/nf_live_view.php:348 +msgid "Dst Ip Address" +msgstr "宛先 IP アドレス" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 +msgid "SNMP Trap generator" +msgstr "SNMPトラップジェネレータ" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 +msgid "Empty parameters" +msgstr "パラメータが空です" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 +msgid "Successfully generated" +msgstr "生成しました" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 +#, php-format +msgid "Could not be generated: %s" +msgstr "生成できません: %s" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +msgid "Host address" +msgstr "ホストアドレス" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 +#: ../../include/functions_snmp_browser.php:727 +msgid "Community" +msgstr "コミュニティ" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 +#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../operation/snmpconsole/snmp_view.php:859 +msgid "Enterprise String" +msgstr "Enterprise文字列" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 +msgid "SNMP Type" +msgstr "SNMPタイプ" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 +msgid "Generate trap" +msgstr "トラップ生成" + +#: ../../godmode/snmpconsole/snmp_alert.php:100 +msgid "Alert overview" +msgstr "アラート一覧" + +#: ../../godmode/snmpconsole/snmp_alert.php:118 +#: ../../godmode/snmpconsole/snmp_filters.php:46 +#: ../../operation/snmpconsole/snmp_view.php:681 +#: ../../operation/snmpconsole/snmp_view.php:789 +msgid "SNMP Console" +msgstr "SNMP コンソール" + +#: ../../godmode/snmpconsole/snmp_alert.php:293 +msgid "There was a problem creating the alert" +msgstr "アラートの作成に失敗しました。" + +#: ../../godmode/snmpconsole/snmp_alert.php:435 +msgid "There was a problem updating the alert" +msgstr "アラートの編集に失敗しました。" + +#: ../../godmode/snmpconsole/snmp_alert.php:637 +#: ../../godmode/snmpconsole/snmp_alert.php:656 +msgid "There was a problem duplicating the alert" +msgstr "アラートの複製で問題が発生しました" + +#: ../../godmode/snmpconsole/snmp_alert.php:646 +msgid "Successfully Duplicate" +msgstr "複製しました" + +#: ../../godmode/snmpconsole/snmp_alert.php:677 +msgid "There was a problem deleting the alert" +msgstr "アラートの削除に失敗しました。" + +#: ../../godmode/snmpconsole/snmp_alert.php:774 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "部分文字列に一致します。 完全に一致させるには、文字列を $ で終了します。" + +#: ../../godmode/snmpconsole/snmp_alert.php:842 +#: ../../godmode/snmpconsole/snmp_alert.php:852 +#: ../../godmode/snmpconsole/snmp_alert.php:862 +#: ../../godmode/snmpconsole/snmp_alert.php:872 +#: ../../godmode/snmpconsole/snmp_alert.php:882 +#: ../../godmode/snmpconsole/snmp_alert.php:892 +#: ../../godmode/snmpconsole/snmp_alert.php:902 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:922 +#: ../../godmode/snmpconsole/snmp_alert.php:932 +#: ../../godmode/snmpconsole/snmp_alert.php:942 +#: ../../godmode/snmpconsole/snmp_alert.php:952 +#: ../../godmode/snmpconsole/snmp_alert.php:962 +#: ../../godmode/snmpconsole/snmp_alert.php:972 +#: ../../godmode/snmpconsole/snmp_alert.php:982 +#: ../../godmode/snmpconsole/snmp_alert.php:992 +#: ../../godmode/snmpconsole/snmp_alert.php:1002 +#: ../../godmode/snmpconsole/snmp_alert.php:1012 +#: ../../godmode/snmpconsole/snmp_alert.php:1022 +#: ../../godmode/snmpconsole/snmp_alert.php:1032 +msgid "Variable bindings/Data" +msgstr "変数バインディング/データ" + +#: ../../godmode/snmpconsole/snmp_alert.php:1162 +msgid "" +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " +"each Variable bindings/Datas." +msgstr "" +"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、変数の割り当て・データのフィール" +"ドで検索します" + +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +msgid "Alert SNMP control filter" +msgstr "SNMPアラート管理フィルタ" + +#: ../../godmode/snmpconsole/snmp_alert.php:1232 +msgid "There are no SNMP alerts" +msgstr "SNMP アラートはありません。" + +#: ../../godmode/snmpconsole/snmp_alert.php:1266 +msgid "Custom Value/Enterprise String" +msgstr "カスタム値/Enterprise文字列" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +#: ../../include/functions_reporting_html.php:5247 +#: ../../include/functions_reporting_html.php:5369 +#: ../../include/functions_treeview.php:454 +msgid "Times fired" +msgstr "通知回数" + +#: ../../godmode/snmpconsole/snmp_alert.php:1271 +msgid "TF." +msgstr "回数" + +#: ../../godmode/snmpconsole/snmp_alert.php:1427 +msgid "ID Alert SNMP" +msgstr "SNMPアラートID" + +#: ../../godmode/snmpconsole/snmp_alert.php:1545 +#: ../../godmode/snmpconsole/snmp_alert.php:1560 +msgid "Confirmation" +msgstr "確認" + +#: ../../godmode/snmpconsole/snmp_alert.php:1546 +msgid "Do you want delete this alert?" +msgstr "このエージェントを削除しますか?" + +#: ../../godmode/snmpconsole/snmp_alert.php:1561 +msgid "Do you want delete the selected alerts?" +msgstr "選択したアラートを削除しますか?" + +#: ../../godmode/snmpconsole/snmp_alert.php:1671 +msgid "Add action " +msgstr "アクション追加 " + +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "フィルタの概要" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "There was a problem updating the filter" +msgstr "フィルタの更新に問題が発生しました。" + +#: ../../godmode/snmpconsole/snmp_filters.php:126 +#: ../../godmode/snmpconsole/snmp_filters.php:152 +msgid "Description is empty" +msgstr "説明が空です" + +#: ../../godmode/snmpconsole/snmp_filters.php:129 +msgid "Filter is empty" +msgstr "フィルタが空です" + +#: ../../godmode/snmpconsole/snmp_filters.php:149 +msgid "Filters are empty" +msgstr "フィルタが空です" + +#: ../../godmode/snmpconsole/snmp_filters.php:159 +msgid "There was a problem creating the filter" +msgstr "フィルタの作成に問題が発生しました。" + +#: ../../godmode/snmpconsole/snmp_filters.php:178 +msgid "There was a problem deleting the filter" +msgstr "フィルタの削除で問題が発生しました。" + +#: ../../godmode/snmpconsole/snmp_filters.php:221 +#: ../../godmode/snmpconsole/snmp_filters.php:231 +msgid "" +"This field contains a substring, could be part of a IP address, a numeric OID, or a " +"plain substring" +msgstr "このフィールドには、IPアドレス、OID、文字列の一部を入力します。" + +#: ../../godmode/snmpconsole/snmp_filters.php:223 +msgid "Click to remove the filter" +msgstr "フィルタ削除" + +#: ../../godmode/snmpconsole/snmp_filters.php:254 +#: ../../godmode/snmpconsole/snmp_filters.php:255 +msgid "Click to add new filter" +msgstr "新規フィルタ追加" + +#: ../../godmode/menu.php:62 +msgid "Network scan" +msgstr "ネットワークスキャン" + +#: ../../godmode/menu.php:64 +msgid "Custom network scan" +msgstr "カスタムネットワークスキャン" + +#: ../../godmode/menu.php:68 +msgid "Manage scan scripts" +msgstr "スキャンスクリプト管理" + +#: ../../godmode/menu.php:71 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "ホスト & デバイス" + +#: ../../godmode/menu.php:105 +msgid "Module categories" +msgstr "モジュールカテゴリ" + +#: ../../godmode/menu.php:109 +msgid "Module types" +msgstr "モジュールタイプ" + +#: ../../godmode/menu.php:115 +msgid "Operating systems" +msgstr "オペレーティングシステム" + +#: ../../godmode/menu.php:136 +msgid "Manage agents groups" +msgstr "エージェントグループ管理" + +#: ../../godmode/menu.php:175 ../../include/class/ConfigPEN.class.php:337 +#: ../../include/class/ConfigPEN.class.php:345 +msgid "Private Enterprise Numbers" +msgstr "プライベートエンタープライズ番号" + +#: ../../godmode/menu.php:179 +msgid "Remote components" +msgstr "リモートコンポーネント" + +#: ../../godmode/menu.php:203 ../../godmode/massive/massive_operations.php:241 +msgid "Agents operations" +msgstr "エージェント操作" + +#: ../../godmode/menu.php:204 ../../godmode/massive/massive_operations.php:253 +msgid "Modules operations" +msgstr "モジュール操作" + +#: ../../godmode/menu.php:205 ../../godmode/massive/massive_operations.php:265 +msgid "Plugins operations" +msgstr "プラグイン操作" + +#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:229 +msgid "Users operations" +msgstr "ユーザ操作" + +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:217 +msgid "Alerts operations" +msgstr "アラート操作" + +#: ../../godmode/menu.php:228 +msgid "Event filters" +msgstr "イベントフィルタ" + +#: ../../godmode/menu.php:233 ../../godmode/events/events.php:80 +#: ../../godmode/events/events.php:95 +msgid "Custom columns" +msgstr "カスタムカラム" + +#: ../../godmode/menu.php:264 +msgid "List of Alerts" +msgstr "アラート一覧" + +#: ../../godmode/menu.php:279 ../../godmode/menu.php:280 +msgid "Special days list" +msgstr "特別日一覧" + +#: ../../godmode/menu.php:284 +msgid "SNMP alerts" +msgstr "SNMPアラート" + +#: ../../godmode/menu.php:301 +msgid "Manage servers" +msgstr "サーバ管理" + +#: ../../godmode/menu.php:312 +msgid "Register Plugin" +msgstr "プラグイン登録" + +#: ../../godmode/menu.php:338 ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" +msgstr "基本設定" + +#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1609 +msgid "eHorus" +msgstr "eHorus" + +#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:165 +#: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 +msgid "Integria IMS" +msgstr "Integria IMS" + +#: ../../godmode/menu.php:374 +msgid "Websocket Engine" +msgstr "Websocket エンジン" + +#: ../../godmode/menu.php:377 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1695 +msgid "External Tools" +msgstr "外部ツール" + +#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:295 +msgid "Map conections GIS" +msgstr "GIS 利用マップ" + +#: ../../godmode/menu.php:409 +msgid "Diagnostic info" +msgstr "診断情報" + +#: ../../godmode/menu.php:414 +msgid "Site news" +msgstr "サイトニュース" + +#: ../../godmode/menu.php:423 +msgid "DB Schema Check" +msgstr "DB スキーマチェック" + +#: ../../godmode/menu.php:426 +msgid "DB Interface" +msgstr "DB インタフェース" + +#: ../../godmode/menu.php:508 +msgid "Extension manager view" +msgstr "拡張マネージャ表示" + +#: ../../godmode/menu.php:512 +msgid "Extension manager" +msgstr "拡張マネージャ" + +#: ../../godmode/menu.php:544 ../../include/class/OrderInterpreter.class.php:339 +msgid "Warp Update" +msgstr "ワープアップデート" + +#: ../../godmode/menu.php:549 +msgid "Update offline" +msgstr "オフラインアップデート" + +#: ../../godmode/menu.php:552 +msgid "Update online" +msgstr "オンラインアップデート" + +#: ../../godmode/menu.php:558 +msgid "Warp journal" +msgstr "ワープ履歴" + +#: ../../godmode/menu.php:567 ../../godmode/module_library/module_library_view.php:81 +msgid "Module library" +msgstr "モジュールライブラリ" + +#: ../../godmode/menu.php:574 ../../godmode/module_library/module_library_view.php:54 +#: ../../godmode/module_library/module_library_view.php:68 +#: ../../godmode/module_library/module_library_view.php:104 +msgid "Categories" +msgstr "分類" + +#: ../../godmode/gis_maps/configure_gis_map.php:86 +#: ../../operation/gis_maps/gis_map.php:30 ../../operation/gis_maps/render_view.php:130 +msgid "GIS Maps list" +msgstr "GIS マップ一覧" + +#: ../../godmode/gis_maps/configure_gis_map.php:98 +msgid "View GIS" +msgstr "GIS 表示" + +#: ../../godmode/gis_maps/configure_gis_map.php:106 +msgid "GIS Maps builder" +msgstr "GIS マップビルダ" + +#: ../../godmode/gis_maps/configure_gis_map.php:196 +msgid "Map successfully created" +msgstr "マップを作成しました。" + +#: ../../godmode/gis_maps/configure_gis_map.php:197 +msgid "Map could not be created" +msgstr "マップを作成できませんでした。" + +#: ../../godmode/gis_maps/configure_gis_map.php:299 +msgid "Map successfully update" +msgstr "マップを更新しました。" + +#: ../../godmode/gis_maps/configure_gis_map.php:300 +msgid "Map could not be updated" +msgstr "マップを更新できませんでした" + +#: ../../godmode/gis_maps/configure_gis_map.php:353 +msgid "Do you want to use the default data from the connection?" +msgstr "利用マップのデフォルトデータを利用しますか。" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "The connection" +msgstr "利用マップ" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "just added previously." +msgstr "すでに追加されています。" + +#: ../../godmode/gis_maps/configure_gis_map.php:455 +msgid "Map Name" +msgstr "マップ名" + +#: ../../godmode/gis_maps/configure_gis_map.php:474 +msgid "Add Map connection" +msgstr "利用マップの追加" + +#: ../../godmode/gis_maps/configure_gis_map.php:523 +msgid "Default zoom" +msgstr "デフォルトの拡大率" + +#: ../../godmode/gis_maps/configure_gis_map.php:530 +msgid "Center Latitude" +msgstr "中心の緯度" + +#: ../../godmode/gis_maps/configure_gis_map.php:533 +msgid "Center Longitude" +msgstr "中心の経度" + +#: ../../godmode/gis_maps/configure_gis_map.php:536 +msgid "Center Altitude" +msgstr "中心の高度" + +#: ../../godmode/gis_maps/configure_gis_map.php:539 +msgid "Default Latitude" +msgstr "デフォルトの緯度" + +#: ../../godmode/gis_maps/configure_gis_map.php:542 +msgid "Default Longitude" +msgstr "デフォルトの経度" + +#: ../../godmode/gis_maps/configure_gis_map.php:545 +msgid "Default Altitude" +msgstr "デフォルトの高度" + +#: ../../godmode/gis_maps/configure_gis_map.php:552 +#: ../../godmode/setup/gis_step_2.php:395 +msgid "Layers" +msgstr "レイヤ" + +#: ../../godmode/gis_maps/configure_gis_map.php:561 +msgid "List of layers" +msgstr "レイヤ一覧" + +#: ../../godmode/gis_maps/configure_gis_map.php:562 +msgid "New layer" +msgstr "新規レイヤ" + +#: ../../godmode/gis_maps/configure_gis_map.php:568 +msgid "Layer name" +msgstr "レイヤ名" + +#: ../../godmode/gis_maps/configure_gis_map.php:570 +msgid "Visible" +msgstr "可視化" + +#: ../../godmode/gis_maps/configure_gis_map.php:574 +msgid "Show agents from group" +msgstr "表示するエージェントのグループ" + +#: ../../godmode/gis_maps/configure_gis_map.php:575 +#: ../../godmode/setup/setup_general.php:585 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/create_container.php:310 ../../include/ajax/events.php:1018 +#: ../../include/ajax/graph.ajax.php:145 +msgid "none" +msgstr "なし" + +#: ../../godmode/gis_maps/configure_gis_map.php:586 +msgid "Add agent" +msgstr "エージェント追加" + +#: ../../godmode/gis_maps/configure_gis_map.php:608 +msgid "List of Agents to be shown in the layer" +msgstr "レイヤ内に表示されるエージェント一覧" + +#: ../../godmode/gis_maps/configure_gis_map.php:639 +msgid "Use the data of this agent" +msgstr "このエージェントのデータを利用" + +#: ../../godmode/gis_maps/configure_gis_map.php:647 +msgid "List of groups to be shown in the layer" +msgstr "レイヤーに表示されるグループの一覧" + +#: ../../godmode/gis_maps/configure_gis_map.php:654 +msgid "Save Layer" +msgstr "レイヤの保存" + +#: ../../godmode/gis_maps/configure_gis_map.php:670 +#: ../../godmode/gis_maps/configure_gis_map.php:677 +msgid "Save map" +msgstr "マップの保存" + +#: ../../godmode/gis_maps/configure_gis_map.php:672 +msgid "Update map" +msgstr "マップの更新" + +#: ../../godmode/gis_maps/configure_gis_map.php:1060 +msgid "Using data from" +msgstr "次のデータを利用" + +#: ../../godmode/gis_maps/configure_gis_map.php:1218 +msgid "Empty layer names are not supported" +msgstr "空のレイヤ名には対応していません" + +#: ../../godmode/massive/massive_copy_modules.php:193 +msgid "Copy alerts" +msgstr "アラートのコピー" + +#: ../../godmode/massive/massive_copy_modules.php:196 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_edit_modules.php:420 +msgid "Filter Modules" +msgstr "モジュールフィルタ" + +#: ../../godmode/massive/massive_copy_modules.php:230 +msgid "No alerts for this agent" +msgstr "このエージェントにはアラートが定義されていません。" + +#: ../../godmode/massive/massive_copy_modules.php:292 +#: ../../godmode/massive/massive_delete_modules.php:530 +msgid "Filter Agents" +msgstr "エージェントフィルタ" + +#: ../../godmode/massive/massive_copy_modules.php:309 +msgid "To agent(s)" +msgstr "適用先エージェント" + +#: ../../godmode/massive/massive_copy_modules.php:559 +msgid "No operation selected" +msgstr "操作が選択されていません。" + +#: ../../godmode/massive/massive_copy_modules.php:569 +#: ../../include/functions_agents.php:845 +msgid "No destiny agent(s) to copy" +msgstr "コピー先エージェントがありません。" + +#: ../../godmode/massive/massive_operations.php:59 +msgid "Bulk alert add" +msgstr "一括アラート追加" + +#: ../../godmode/massive/massive_operations.php:60 +msgid "Bulk alert delete" +msgstr "一括アラート削除" + +#: ../../godmode/massive/massive_operations.php:61 +msgid "Bulk alert actions add" +msgstr "一括アラートアクション追加" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk alert actions delete" +msgstr "一括アラートアクション削除" + +#: ../../godmode/massive/massive_operations.php:63 +msgid "Bulk alert enable/disable" +msgstr "一括アラート有効化/無効化" + +#: ../../godmode/massive/massive_operations.php:64 +msgid "Bulk alert setting standby" +msgstr "一括アラートスタンバイ設定" + +#: ../../godmode/massive/massive_operations.php:68 +msgid "Bulk agent edit" +msgstr "一括エージェント編集" + +#: ../../godmode/massive/massive_operations.php:69 +msgid "Bulk agent delete" +msgstr "一括エージェント削除" + +#: ../../godmode/massive/massive_operations.php:74 +msgid "Bulk profile add" +msgstr "一括プロファイル追加" + +#: ../../godmode/massive/massive_operations.php:75 +msgid "Bulk profile delete" +msgstr "一括プロファイル削除" + +#: ../../godmode/massive/massive_operations.php:82 +msgid "Bulk module edit" +msgstr "一括モジュール編集" + +#: ../../godmode/massive/massive_operations.php:83 +msgid "Bulk module copy" +msgstr "一括モジュールコピー" + +#: ../../godmode/massive/massive_operations.php:84 +msgid "Bulk module delete" +msgstr "一括モジュール削除" + +#: ../../godmode/massive/massive_operations.php:88 +msgid "Bulk plugin edit" +msgstr "一括プラグイン編集" + +#: ../../godmode/massive/massive_operations.php:367 +#, php-format +msgid "" +"No changes have been made because they exceed the maximum allowed (%d). Make fewer " +"changes or contact the administrator." +msgstr "" +"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理者に連" +"絡してください。" + +#: ../../godmode/massive/massive_operations.php:395 +#, php-format +msgid "This node is configured with centralized mode. To delete agents go to %s" +msgstr "" +"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s に移動し" +"ます" + +#: ../../godmode/massive/massive_operations.php:418 +msgid "The blank fields will not be updated" +msgstr "未入力の項目は更新されません。" + +#: ../../godmode/massive/massive_standby_alerts.php:223 +msgid "Not standby alerts" +msgstr "非スタンバイ状態アラート" + +#: ../../godmode/massive/massive_standby_alerts.php:252 +#: ../../godmode/massive/massive_standby_alerts.php:256 +msgid "Set standby selected alerts" +msgstr "選択したアラートをスタンバイ状態にする" + +#: ../../godmode/massive/massive_standby_alerts.php:258 +msgid "Standby alerts" +msgstr "スタンバイ状態アラート" + +#: ../../godmode/massive/massive_delete_action_alerts.php:75 +msgid "Could not be deleted. No agents selected" +msgstr "削除できません。エージェントが選択されていません。" + +#: ../../godmode/massive/massive_delete_action_alerts.php:122 +msgid "Could not be deleted. No alerts selected" +msgstr "削除できません。アラートが選択されていません。" + +#: ../../godmode/massive/massive_delete_action_alerts.php:181 +msgid "Could not be deleted. No action selected" +msgstr "削除できません。アクションが選択されていません。" + +#: ../../godmode/massive/massive_delete_action_alerts.php:230 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +msgid "Agents with templates" +msgstr "テンプレートがあるエージェント" + +#: ../../godmode/massive/massive_delete_action_alerts.php:239 +#: ../../godmode/massive/massive_add_action_alerts.php:218 +#: ../../godmode/alerts/alert_templates.php:131 +#: ../../godmode/alerts/alert_templates.php:183 +#: ../../godmode/alerts/alert_templates.php:206 +#: ../../godmode/alerts/alert_templates.php:227 +msgid "Alert templates" +msgstr "アラートテンプレート" + +#: ../../godmode/massive/massive_delete_action_alerts.php:247 +#: ../../godmode/massive/massive_delete_modules.php:557 +#: ../../godmode/massive/massive_add_action_alerts.php:226 +#: ../../godmode/massive/massive_edit_modules.php:530 +msgid "Show unknown and not init modules" +msgstr "不明および未初期化モジュールを表示" + +#: ../../godmode/massive/massive_delete_modules.php:82 +msgid "No module selected" +msgstr "モジュールが選択されていません。" + +#: ../../godmode/massive/massive_delete_modules.php:156 +msgid "There was an error deleting the modules, the operation has been cancelled" +msgstr "モジュール削除でエラーが発生しました。操作はキャンセルされます。" + +#: ../../godmode/massive/massive_delete_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:304 +msgid "Selection mode" +msgstr "選択モード" + +#: ../../godmode/massive/massive_delete_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:305 +msgid "Select modules first " +msgstr "モジュールを先に選択 " + +#: ../../godmode/massive/massive_delete_modules.php:320 +#: ../../godmode/massive/massive_edit_modules.php:306 +msgid "Select agents first " +msgstr "エージェントを先に選択 " + +#: ../../godmode/massive/massive_delete_modules.php:343 +#: ../../godmode/massive/massive_edit_modules.php:325 +msgid "Select all modules of this type" +msgstr "このタイプの全てのモジュールを選択" + +#: ../../godmode/massive/massive_delete_modules.php:387 +#: ../../godmode/massive/massive_edit_modules.php:371 +msgid "Select all modules of this group" +msgstr "このグループの全てのモジュールを選択" + +#: ../../godmode/massive/massive_delete_modules.php:436 +#: ../../godmode/massive/massive_edit_modules.php:382 +#: ../../godmode/events/custom_events.php:116 ../../include/functions_events.php:304 +msgid "Module Status" +msgstr "モジュールの状態" + +#: ../../godmode/massive/massive_delete_modules.php:477 +#: ../../godmode/massive/massive_edit_modules.php:436 +msgid "Select all modules" +msgstr "全モジュールを選択" + +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_edit_modules.php:438 +msgid "When select modules" +msgstr "モジュール選択時の動作" + +#: ../../godmode/massive/massive_delete_modules.php:483 +#: ../../godmode/massive/massive_edit_modules.php:442 +msgid "Show common agents" +msgstr "共通エージェントの表示" + +#: ../../godmode/massive/massive_delete_modules.php:484 +#: ../../godmode/massive/massive_edit_modules.php:443 +msgid "Show all agents" +msgstr "全エージェント表示" + +#: ../../godmode/massive/massive_delete_modules.php:549 +#: ../../godmode/massive/massive_edit_modules.php:522 +msgid "Select all agents" +msgstr "全エージェントを選択" + +#: ../../godmode/massive/massive_delete_modules.php:595 +#: ../../godmode/massive/massive_edit_modules.php:1260 +msgid "Please, select an agent first" +msgstr "エージェントを先に選択してください" + +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:108 +#: ../../operation/agentes/alerts_status.php:531 +#: ../../operation/agentes/alerts_status.functions.php:54 +msgid "No alert selected" +msgstr "アラートが選択されていません。" + +#: ../../godmode/massive/massive_delete_agents.php:122 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled Could not " +"delete agent %s" +msgstr "" +"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェント %s " +"は削除できません。" + +#: ../../godmode/massive/massive_delete_agents.php:132 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "削除しました。(%s)" + +#: ../../godmode/massive/massive_edit_plugins.php:177 +msgid "Error retrieving the plugin macros" +msgstr "プラグインマクロ検索エラー" + +#: ../../godmode/massive/massive_edit_plugins.php:185 +msgid "Error retrieving the modified macros" +msgstr "編集済マクロ検索エラー" + +#: ../../godmode/massive/massive_edit_plugins.php:208 +msgid "Error retrieving the module plugin macros" +msgstr "モジュールプラグインマクロ検索エラー" + +#: ../../godmode/massive/massive_edit_plugins.php:226 +msgid "Error retrieving the module plugin macros data" +msgstr "モジュールプラグインマクロデータ検索エラー" + +#: ../../godmode/massive/massive_edit_plugins.php:264 +msgid "Error building the new macros" +msgstr "新規マクロ作成エラー" + +#: ../../godmode/massive/massive_edit_plugins.php:290 +#, php-format +msgid "%d modules updated" +msgstr "%d個のモジュールを更新しました。" + +#: ../../godmode/massive/massive_edit_plugins.php:321 +msgid "There are not registered plugins" +msgstr "登録済のプラグインがありません" + +#: ../../godmode/massive/massive_edit_plugins.php:464 +msgid "Invalid plugin data" +msgstr "不正なプラグインデータ" + +#: ../../godmode/massive/massive_edit_plugins.php:571 +msgid "Clear" +msgstr "消去" + +#: ../../godmode/massive/massive_edit_plugins.php:599 +msgid "Invalid macros array" +msgstr "マクロ配列が不正です" + +#: ../../godmode/massive/massive_edit_plugins.php:624 +msgid "Multiple values" +msgstr "複数の値" + +#: ../../godmode/massive/massive_edit_plugins.php:656 +#: ../../godmode/massive/massive_edit_plugins.php:792 +#: ../../godmode/massive/massive_edit_plugins.php:808 +msgid "Invalid agents array" +msgstr "エージェント配列が不正です" + +#: ../../godmode/massive/massive_edit_plugins.php:672 +msgid "Invalid agent element" +msgstr "エージェントの要素が不正です" + +#: ../../godmode/massive/massive_edit_plugins.php:683 +msgid "Invalid modules array" +msgstr "モジュール配列が不正です" + +#: ../../godmode/massive/massive_edit_plugins.php:711 +msgid "Invalid module element" +msgstr "モジュールの要素が不正です" + +#: ../../godmode/massive/massive_edit_plugins.php:920 +msgid "There are no modules using this plugin" +msgstr "このプラグインを使っているモジュールはありません" + +#: ../../godmode/massive/massive_edit_plugins.php:1005 +msgid "There was a problem loading the module plugin macros data" +msgstr "モジュールプラグインマクロデータのロード中に問題が発生しました" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +msgid "Enabled alerts" +msgstr "有効なアラート" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:224 +msgid "Disable selected alerts" +msgstr "選択したアラートを無効にする" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:228 +msgid "Enable selected alerts" +msgstr "選択したアラートを有効にする" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +msgid "Disabled alerts" +msgstr "無効なアラート" + +#: ../../godmode/massive/massive_edit_agents.php:218 +msgid "No values changed" +msgstr "値が変更されていません。" + +#: ../../godmode/massive/massive_edit_agents.php:274 +msgid "Configuration files deleted successfully" +msgstr "設定ファイルを削除しました。" + +#: ../../godmode/massive/massive_edit_agents.php:275 +msgid "Configuration files cannot be deleted" +msgstr "設定ファイルを削除できませんでした。" + +#: ../../godmode/massive/massive_edit_agents.php:382 +#, php-format +msgid "Agents updated successfully (%d)" +msgstr "エージェントをアップデートしました (%d)" + +#: ../../godmode/massive/massive_edit_agents.php:397 +#, php-format +msgid "Agents cannot be updated (%d), ids (%s)" +msgstr "エージェントの更新ができませんでした (%d), ID (%s)" + +#: ../../godmode/massive/massive_edit_agents.php:412 +#, php-format +msgid "Agent ID: %s cannot be updated custom fields (%s)" +msgstr "エージェントID: %s はカスタムフィールド (%s) を更新できません" + +#: ../../godmode/massive/massive_edit_agents.php:432 +#, php-format +msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" +msgstr "エージェントID: %s は %s セカンダリグループ (%s) を更新できません" + +#: ../../godmode/massive/massive_edit_agents.php:940 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode when " +"disabling it." +msgstr "リモート設定が有効になっている場合、無効にするとスタンバイモードになります。" + +#: ../../godmode/massive/massive_edit_agents.php:953 +msgid "Active" +msgstr "有効" + +#: ../../godmode/massive/massive_edit_agents.php:969 +msgid "Delete available remote configurations" +msgstr "リモート設定の削除" + +#: ../../godmode/massive/massive_edit_agents.php:1025 +msgid "Without status" +msgstr "状態不明" + +#: ../../godmode/massive/massive_edit_agents.php:1052 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:371 +msgid "Bad" +msgstr "障害" + +#: ../../godmode/massive/massive_edit_agents.php:1110 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "エージェントは実行しますが、アラートとイベントは停止します" + +#: ../../godmode/massive/massive_edit_agents.php:1130 +#, php-format +msgid "" +"This mode allow %s to disable all modules of this agent while the selected module is " +"on CRITICAL status" +msgstr "" +"このモードでは、選択したモジュールが障害状態の際に、%s はこのエージェントの全モジュー" +"ルを無効化することができます。" + +#: ../../godmode/massive/massive_delete_profiles.php:52 +#: ../../godmode/massive/massive_add_profiles.php:52 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles user information is read " +"only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報は読み" +"取り専用です。管理するには %s に移動します。" + +#: ../../godmode/massive/massive_delete_profiles.php:133 +msgid "Profiles deleted successfully" +msgstr "プロファイルを削除しました。" + +#: ../../godmode/massive/massive_delete_profiles.php:134 +msgid "Profiles cannot be deleted" +msgstr "プロファイルを削除できませんでした。" + +#: ../../godmode/massive/massive_delete_profiles.php:153 +#: ../../godmode/massive/massive_add_profiles.php:204 +#: ../../include/functions_reporting.php:11892 ../../operation/search_results.php:93 +msgid "Users" +msgstr "ユーザ" + +#: ../../godmode/massive/massive_delete_alerts.php:307 +msgid "Show alerts on disabled modules" +msgstr "無効化モジュールのアラート表示" + +#: ../../godmode/massive/massive_add_action_alerts.php:134 +msgid "No alerts selected" +msgstr "アラートが選択されていません。" + +#: ../../godmode/massive/massive_add_action_alerts.php:166 +msgid "No actions selected" +msgstr "アクションが選択されていません" + +#: ../../godmode/massive/massive_add_profiles.php:184 +msgid "Profiles added successfully" +msgstr "プロファイルを追加しました。" + +#: ../../godmode/massive/massive_add_profiles.php:185 +msgid "Profiles cannot be added" +msgstr "プロファイルの追加ができませんでした。" + +#: ../../godmode/massive/massive_edit_modules.php:137 +msgid "Error updating the modules from a module type" +msgstr "モジュールタイプからのモジュール更新エラー" + +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules from an agent group" +msgstr "エージェントグループからのモジュール更新エラー" + +#: ../../godmode/massive/massive_edit_modules.php:178 +msgid "Error updating the modules (maybe there was no field to update)" +msgstr "モジュール更新エラー (更新するフィールドがない可能性があります)" + +#: ../../godmode/massive/massive_edit_modules.php:506 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 +msgid "Filter agents" +msgstr "エージェントフィルタ" + +#: ../../godmode/alerts/configure_alert_command.php:60 +msgid "Configure alert command" +msgstr "コマンドの作成" + +#: ../../godmode/alerts/configure_alert_command.php:196 +#: ../../godmode/alerts/alert_commands.php:729 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert commands information is read " +"only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読み取り" +"専用です。管理するには %s に移動します。" + +#: ../../godmode/alerts/configure_alert_command.php:207 +msgid "Update Command" +msgstr "コマンドの更新" + +#: ../../godmode/alerts/configure_alert_command.php:207 +#: ../../godmode/alerts/configure_alert_action.php:275 +msgid "Create Command" +msgstr "コマンドの作成" + +#: ../../godmode/alerts/configure_alert_command.php:297 +#, php-format +msgid "Field %s description" +msgstr "フィールド %s の説明" + +#: ../../godmode/alerts/configure_alert_command.php:325 +#, php-format +msgid "Field %s values" +msgstr "フィールド %s の値" + +#: ../../godmode/alerts/configure_alert_command.php:327 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "値1,タグ1;値2,タグ2;値3,タグ3" + +#: ../../godmode/alerts/configure_alert_command.php:363 +msgid "Hide" +msgstr "隠す" + +#: ../../godmode/alerts/alert_actions.php:74 ../../include/functions_reporting.php:2991 +msgid "Alert actions" +msgstr "アクション" + +#: ../../godmode/alerts/alert_actions.php:222 +#: ../../godmode/alerts/configure_alert_action.php:120 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert actions information is read " +"only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は読み取" +"り専用です。管理するには %s に移動します。" + +#: ../../godmode/alerts/alert_actions.php:396 +msgid "You cannot edit this action, You don't have the permission to edit All group." +msgstr "このアクションは編集できません。'全て' グループを編集する権限がありません。" + +#: ../../godmode/alerts/alert_actions.php:407 +msgid "" +"The action and the command associated with it do not have the same group. Please " +"contact an administrator to fix it." +msgstr "" +"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連絡して" +"修正してください。" + +#: ../../godmode/alerts/alert_actions.php:465 +msgid "No alert actions configured" +msgstr "アクションが設定されていません。" + +#: ../../godmode/alerts/alert_list.list.php:133 +msgid "Field content" +msgstr "フィールドの内容" + +#: ../../godmode/alerts/alert_list.list.php:145 ../../mobile/operation/alerts.php:64 +#: ../../operation/agentes/alerts_status.functions.php:95 +msgid "All (Enabled)" +msgstr "全て(有効状態のもの)" + +#: ../../godmode/alerts/alert_list.list.php:148 ../../mobile/operation/alerts.php:67 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/snmpconsole/snmp_view.php:228 +#: ../../operation/snmpconsole/snmp_view.php:1263 +msgid "Not fired" +msgstr "未通知" + +#: ../../godmode/alerts/alert_list.list.php:676 ../../godmode/alerts/alert_view.php:317 +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:944 +msgid "View alert advanced details" +msgstr "アラートの拡張詳細表示" + +#: ../../godmode/alerts/alert_list.list.php:960 +#: ../../include/functions_reporting_html.php:3334 +msgid "No alerts defined" +msgstr "アラートが定義されていません" + +#: ../../godmode/alerts/alert_commands.php:144 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, type it " +"between the following labels:
    "
    +msgstr ""
    +"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキストを使"
    +"いたい場合は、ラベル 
     の間に入力してください。"
    +
    +#: ../../godmode/alerts/alert_commands.php:220
    +#: ../../godmode/alerts/alert_commands.php:251
    +msgid "Text/plain"
    +msgstr "Text/plain"
    +
    +#: ../../godmode/alerts/alert_commands.php:222
    +#: ../../godmode/alerts/alert_commands.php:253
    +msgid "For sending emails only text plain"
    +msgstr "プレーンテキストのみでのメール送信"
    +
    +#: ../../godmode/alerts/alert_commands.php:236
    +#: ../../godmode/alerts/alert_commands.php:267
    +msgid "Text/html"
    +msgstr "Text/html"
    +
    +#: ../../godmode/alerts/alert_commands.php:560
    +msgid "Permissions warning"
    +msgstr "権限の警告"
    +
    +#: ../../godmode/alerts/alert_commands.php:563
    +msgid ""
    +"Command management is limited to administrator users or user profiles with "
    +"permissions PM"
    +msgstr ""
    +"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられたユーザに制"
    +"限されています"
    +
    +#: ../../godmode/alerts/alert_commands.php:580
    +msgid "Alert commands"
    +msgstr "アラートコマンド"
    +
    +#: ../../godmode/alerts/alert_commands.php:649 ../../include/functions_alerts.php:2652
    +msgid "No name specified"
    +msgstr "名前が指定されていません"
    +
    +#: ../../godmode/alerts/alert_commands.php:653 ../../include/functions_alerts.php:2647
    +msgid "No command specified"
    +msgstr "コマンドが指定されていません。"
    +
    +#: ../../godmode/alerts/alert_commands.php:705
    +msgid " (copy)"
    +msgstr " (コピー)"
    +
    +#: ../../godmode/alerts/alert_commands.php:826
    +msgid "No alert commands configured"
    +msgstr "アラートコマンドが設定されていません"
    +
    +#: ../../godmode/alerts/alert_templates.php:268
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All alert templates information is "
    +"read only. Go to %s to manage it."
    +msgstr ""
    +"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は読み"
    +"取り専用です。管理するには %s に移動します。"
    +
    +#: ../../godmode/alerts/alert_templates.php:413
    +msgid ""
    +"You cannot edit this alert template, You don't have the permission to edit All group."
    +msgstr ""
    +"このアラートテンプレートを編集することはできません。'全て' グループを編集する権限があ"
    +"りません。"
    +
    +#: ../../godmode/alerts/alert_templates.php:474
    +msgid "No alert templates defined"
    +msgstr "アラートテンプレートが定義されていません"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:74
    +#: ../../godmode/alerts/configure_alert_action.php:87
    +msgid "Configure alert action"
    +msgstr "アクションの作成"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:167
    +msgid "Update Action"
    +msgstr "アクションの更新"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:169
    +#: ../../godmode/alerts/alert_list.builder.php:136
    +#: ../../include/class/AgentsAlerts.class.php:332
    +msgid "Create Action"
    +msgstr "アクションの作成"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:204
    +msgid "This action may stop working, if you change its name."
    +msgstr "名前を変更すると、このアクションは動作を停止します。"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:306
    +msgid "Recovery"
    +msgstr "復旧通知"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:310
    +#: ../../godmode/alerts/alert_view.php:527 ../../godmode/alerts/alert_view.php:654
    +#: ../../godmode/servers/plugin.php:422
    +msgid "Command preview"
    +msgstr "実行されるコマンドのプレビュー"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:330
    +msgid "Create workunit on recovery"
    +msgstr "リカバリ時のワークユニットを作成"
    +
    +#: ../../godmode/alerts/configure_alert_action.php:331
    +msgid ""
    +"If closed status is set on recovery, a workunit will be added to the ticket in "
    +"Integria IMS rather that closing the ticket."
    +msgstr ""
    +"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットをクローズ"
    +"するのではなく、Integria IMS のチケットに追加されます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:99
    +#: ../../godmode/alerts/configure_alert_template.php:123
    +#: ../../godmode/alerts/configure_alert_template.php:155
    +#: ../../include/functions_menu.php:494
    +msgid "Configure alert template"
    +msgstr "アラートテンプレート設定"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:250
    +#: ../../godmode/alerts/configure_alert_template.php:254
    +msgid "Conditions"
    +msgstr "状態"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:271
    +#: ../../godmode/alerts/configure_alert_template.php:275
    +msgid "Advanced fields"
    +msgstr "拡張フィールド"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:419
    +#, php-format
    +msgid ""
    +"This node is configured with centralized mode. All alerts templates information is "
    +"read only. Go to Go to %s to manage it."
    +msgstr ""
    +"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は読み"
    +"取り専用です。 管理するには、%s に移動します。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:531
    +msgid "No template name specified"
    +msgstr "テンプレート名が指定されていません"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:607
    +#: ../../godmode/alerts/alert_list.builder.php:169
    +#: ../../include/class/AgentsAlerts.class.php:379
    +msgid "Create Template"
    +msgstr "テンプレートの作成"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:712
    +msgid "Reset counter for non-sustained alerts"
    +msgstr "アラートが継続しない場合にカウンターをリセット"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:714
    +msgid ""
    +"Enable this option if you want the counter to be reset when the alert is not being "
    +"fired consecutively, even if it's within the time threshold"
    +msgstr ""
    +"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタをリセッ"
    +"トしたい場合にこのオプションを有効化します。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:788
    +msgid ""
    +"Unless they're left blank, the fields from the action will override those set on the "
    +"template."
    +msgstr ""
    +"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優先され"
    +"ます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:792
    +msgid "Condition type"
    +msgstr "条件種別"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:809
    +msgid "Trigger when matches the value"
    +msgstr "以下の値にマッチしたら、条件を満たしたと判断する。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:832
    +msgid "The regular expression is valid"
    +msgstr "この正規表現は正しいです。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:842
    +msgid "The regular expression is not valid"
    +msgstr "この正規表現は間違っています。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:919
    +msgid "Recovery fields"
    +msgstr "復旧フィールド"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1136
    +msgid "No wizard"
    +msgstr "ウィザードがありません"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1216
    +#: ../../godmode/alerts/alert_view.php:166 ../../include/functions_ui.php:1340
    +msgid "The alert would fire when the value matches "
    +msgstr ""
    +"取得した値が  にマッチした場合、アラートを発生させます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1217
    +#, php-format
    +msgid "The alert would fire when the value doesn\\'t match %s"
    +msgstr "値が %s にマッチしなかったときにアラートが発報します"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1218
    +#: ../../godmode/alerts/alert_view.php:175 ../../include/functions_ui.php:1329
    +msgid "The alert would fire when the value is "
    +msgstr "取得した値が  の場合、アラートを発生させます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1219
    +#: ../../godmode/alerts/alert_view.php:180 ../../include/functions_ui.php:1334
    +msgid "The alert would fire when the value is not "
    +msgstr "取得した値が  以外の場合、アラートを発生させます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1220
    +#: ../../godmode/alerts/alert_view.php:187 ../../include/functions_ui.php:1352
    +msgid ""
    +"The alert would fire when the value is between  and "
    +msgstr ""
    +"取得した値が  の間になったら、ア"
    +"ラートを発生させます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1221
    +msgid ""
    +"The alert would fire when the value is not between  and "
    +msgstr ""
    +"値が  の間にない場合、アラートが発生しま"
    +"す。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1222
    +#: ../../godmode/alerts/alert_view.php:200
    +msgid "The alert would fire when the value is below "
    +msgstr "値が  より小さかったときにアラートが発報します"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1223
    +#: ../../godmode/alerts/alert_view.php:205
    +msgid "The alert would fire when the value is above "
    +msgstr "値が  を超えたときにアラートが発報されます"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1224
    +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions_ui.php:1371
    +msgid "The alert would fire when the module is in warning status"
    +msgstr "該当モジュールが警告状態になったら、アラートを発生させます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1225
    +#: ../../godmode/alerts/alert_view.php:222 ../../include/functions_ui.php:1376
    +msgid "The alert would fire when the module is in critical status"
    +msgstr "該当モジュールが障害になったら、アラートを発生させます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1226
    +#: ../../godmode/alerts/alert_view.php:211
    +msgid "The alert would fire when the module value changes"
    +msgstr "モジュールの値が変化したときにアラートが上がります。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1227
    +#: ../../godmode/alerts/alert_view.php:213
    +msgid "The alert would fire when the module value does not change"
    +msgstr "モジュールの値が変化しなかったときにアラートが上がります。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1228
    +#: ../../godmode/alerts/alert_view.php:230
    +msgid "The alert would fire when the module is in unknown status"
    +msgstr "モジュールが不明状態になるとアラートが発生します。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1229
    +msgid "The alert template cannot have the same value for min and max thresholds."
    +msgstr "アラートテンプレートは最小と最大の閾値に同じ値を設定できません。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1230
    +#: ../../godmode/alerts/alert_view.php:226
    +msgid "The alert would fire when the module is in not normal status"
    +msgstr "モジュールが正常状態でない場合にアラートが発報されます。"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1407
    +msgid ""
    +"The alert would fire when the module is in unknown status. Warning: unknown_updates "
    +"of pandora_server.conf must be equal to 1"
    +msgstr ""
    +"モジュールのステータスが不明の場合、アラートが発生します。 警告: pandora_server.conf "
    +"の unknown_updates を 1 にする必要があります"
    +
    +#: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:280
    +#: ../../include/functions_events.php:4241
    +msgid "Alert details"
    +msgstr "アラート詳細"
    +
    +#: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84
    +#: ../../godmode/alerts/alert_list.php:480
    +msgid "List alerts"
    +msgstr "アラート一覧"
    +
    +#: ../../godmode/alerts/alert_view.php:128 ../../mobile/operation/alerts.php:125
    +#: ../../mobile/operation/alerts.php:126 ../../mobile/operation/alerts.php:256
    +#: ../../mobile/operation/alerts.php:257
    +msgid "Stand by"
    +msgstr "スタンバイ"
    +
    +#: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1343
    +msgid "The alert would fire when the value doesn't match "
    +msgstr ""
    +"取得した値が  にマッチしない場合、アラートを発生させます。"
    +
    +#: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1355
    +msgid ""
    +"The alert would fire when the value is not between  and "
    +msgstr ""
    +"取得した値が  の間を外れたら、ア"
    +"ラートを発生させます。"
    +
    +#: ../../godmode/alerts/alert_view.php:281
    +msgid "Firing conditions"
    +msgstr "発報条件"
    +
    +#: ../../godmode/alerts/alert_view.php:305 ../../godmode/alerts/alert_view.php:339
    +msgid "Every time that the alert is fired"
    +msgstr "アラート発生のたび"
    +
    +#: ../../godmode/alerts/alert_view.php:385
    +msgid ""
    +"Select the desired action and mode to see the Firing/Recovery fields for this action"
    +msgstr ""
    +"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選択して"
    +"ください。"
    +
    +#: ../../godmode/alerts/alert_view.php:446
    +msgid "Template fields"
    +msgstr "テンプレートフィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:448
    +msgid "Triggering fields configured in template"
    +msgstr "テンプレートで設定したトリガーフィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:542
    +msgid "The alert recovering is disabled on this template."
    +msgstr "このテンプレートでは復旧アラートが無効です。"
    +
    +#: ../../godmode/alerts/alert_view.php:558
    +msgid "Recovering fields"
    +msgstr "復旧フィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:560
    +msgid "Fields passed to the command executed by this action when the alert is recovered"
    +msgstr ""
    +"アラートが復旧したときに、このアクションによって実行されるコマンドに渡されるフィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:574
    +msgid "Template recovery fields"
    +msgstr "テンプレート復旧フィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:576
    +msgid "Recovery fields configured in alert template"
    +msgstr "アラートテンプレートで設定した復旧フィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:579
    +msgid "Action recovery fields"
    +msgstr "アクション復旧フィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:581
    +msgid "Recovery fields configured in alert action"
    +msgstr "アラートアクションで設定した復旧フィールド"
    +
    +#: ../../godmode/alerts/alert_view.php:584
    +msgid "Executed on recovery"
    +msgstr "復旧時の実行"
    +
    +#: ../../godmode/alerts/alert_view.php:586
    +msgid "Fields used on execution when the alert is recovered"
    +msgstr "アラートが復旧した時に実行に使われるフィールド"
    +
    +#: ../../godmode/alerts/alert_list.builder.php:91
    +msgid "Latest value"
    +msgstr "最新の値"
    +
    +#: ../../godmode/alerts/alert_list.builder.php:201
    +msgid "Finish and view cluster"
    +msgstr "終了しクラスタを見る"
    +
    +#: ../../godmode/alerts/alert_list.php:115
    +msgid "Already added"
    +msgstr "すでに追加されています。"
    +
    +#: ../../godmode/alerts/alert_list.php:169
    +msgid "No template specified"
    +msgstr "テンプレートが指定されていません"
    +
    +#: ../../godmode/alerts/alert_list.php:484
    +msgid "Builder alert"
    +msgstr "アラート作成"
    +
    +#: ../../godmode/setup/license.php:51
    +msgid "License management"
    +msgstr "ライセンス管理"
    +
    +#: ../../godmode/setup/license.php:99
    +msgid "Error while connecting to licence server."
    +msgstr "ライセンスサーバへの接続エラー"
    +
    +#: ../../godmode/setup/license.php:100
    +msgid "Invalid response while validating license."
    +msgstr "ライセンスの検証に失敗しました。"
    +
    +#: ../../godmode/setup/license.php:121
    +msgid "Licence"
    +msgstr "ライセンス"
    +
    +#: ../../godmode/setup/license.php:129 ../../include/class/Diagnostics.class.php:1152
    +msgid "Customer key"
    +msgstr "カスタマーキー"
    +
    +#: ../../godmode/setup/license.php:135 ../../include/class/Diagnostics.class.php:1160
    +msgid "Platform Limit"
    +msgstr "ライセンス数上限"
    +
    +#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
    +#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
    +msgid "agents"
    +msgstr "エージェント"
    +
    +#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
    +#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
    +#: ../../operation/tree.php:158
    +msgid "modules"
    +msgstr "モジュール"
    +
    +#: ../../godmode/setup/license.php:138 ../../include/class/Diagnostics.class.php:1164
    +msgid "Current Platform Count"
    +msgstr "現在の利用数"
    +
    +#: ../../godmode/setup/license.php:141 ../../include/class/Diagnostics.class.php:1168
    +msgid "Current Platform Count (enabled: items)"
    +msgstr "現在の利用数 (有効のもの)"
    +
    +#: ../../godmode/setup/license.php:144 ../../include/class/Diagnostics.class.php:1172
    +msgid "Current Platform Count (disabled: items)"
    +msgstr "現在の利用数 (無効のもの)"
    +
    +#: ../../godmode/setup/license.php:147 ../../include/class/Diagnostics.class.php:1176
    +msgid "License Mode"
    +msgstr "ライセンスモード"
    +
    +#: ../../godmode/setup/license.php:150
    +msgid "NMS"
    +msgstr "NMS"
    +
    +#: ../../godmode/setup/license.php:156 ../../include/class/Diagnostics.class.php:1188
    +msgid "Licensed to"
    +msgstr "ライセンス先"
    +
    +#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
    +msgid "Request new license"
    +msgstr "新規ライセンス要求"
    +
    +#: ../../godmode/setup/license.php:186
    +#, php-format
    +msgid "To get your %s Enterprise License:"
    +msgstr "%s Enterprise ライセンスの取得:"
    +
    +#: ../../godmode/setup/license.php:189
    +#, php-format
    +msgid "Go to %s"
    +msgstr "%s へ移動"
    +
    +#: ../../godmode/setup/license.php:192
    +msgid "Enter the auth key and the following request key:"
    +msgstr "auth key と次の  request key を入力してください:"
    +
    +#: ../../godmode/setup/license.php:198
    +msgid "Enter your name (or a company name) and a contact email address."
    +msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
    +
    +#: ../../godmode/setup/license.php:201
    +msgid "Click on Generate."
    +msgstr "
    生成 をクリックします。" + +#: ../../godmode/setup/license.php:204 +msgid "" +"Click here, enter the " +"generated license key and click on Validate." +msgstr "" +"ここをクリックし、生成された" +"ライセンスキーを入力し有効化をクリックします。" + +#: ../../godmode/setup/news.php:29 +msgid "Site news management" +msgstr "サイトニュース管理" + +#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92 +msgid "Name error" +msgstr "名前が不正です。" + +#: ../../godmode/setup/news.php:191 +msgid "Modal screen" +msgstr "別ウインドウ" + +#: ../../godmode/setup/news.php:194 +msgid "Expire" +msgstr "有効期限" + +#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250 +msgid "Expiration" +msgstr "有効期限" + +#: ../../godmode/setup/news.php:241 +msgid "There are no defined news" +msgstr "定義済のニュースがありません" + +#: ../../godmode/setup/news.php:248 ../../operation/agentes/estado_generalagente.php:642 +msgid "Author" +msgstr "作者" + +#: ../../godmode/setup/news.php:268 +msgid "Modal" +msgstr "別ウインドウ" + +#: ../../godmode/setup/news.php:270 +msgid "Board" +msgstr "ボード" + +#: ../../godmode/setup/news.php:281 +msgid "Expired" +msgstr "期限切れ" + +#: ../../godmode/setup/gis.php:68 +msgid "Map connection name" +msgstr "GIS 利用マップ名" + +#: ../../godmode/setup/gis.php:86 +msgid "Do you wan delete this connection?" +msgstr "このマップ利用設定を削除しますか。" + +#: ../../godmode/setup/setup.php:216 +msgid "Websocket engine" +msgstr "Websocket エンジン" + +#: ../../godmode/setup/setup.php:234 +msgid "GIS Map connection" +msgstr "GIS マップ接続" + +#: ../../godmode/setup/setup.php:305 +msgid "Pandora Websocket Engine" +msgstr "Pandora Websocket エンジン" + +#: ../../godmode/setup/setup.php:349 +msgid "Correct update the setup options" +msgstr "設定オプションを更新しました" + +#: ../../godmode/setup/setup_ehorus.php:58 ../../include/functions_config.php:1675 +msgid "Enable eHorus" +msgstr "eHorus の有効化" + +#: ../../godmode/setup/setup_ehorus.php:93 +msgid "API Hostname" +msgstr "API ホスト名" + +#: ../../godmode/setup/setup_ehorus.php:99 +msgid "API Port" +msgstr "API ポート" + +#: ../../godmode/setup/setup_ehorus.php:105 ../../godmode/setup/setup_integria.php:309 +msgid "Request timeout" +msgstr "要求タイムアウト" + +#: ../../godmode/setup/setup_ehorus.php:139 +msgid "Remote Management System" +msgstr "リモート管理システム" + +#: ../../godmode/setup/setup_ehorus.php:147 +msgid "Custom field eHorusID created" +msgstr "カスタムフィールド eHorusID を作成しました" + +#: ../../godmode/setup/setup_ehorus.php:147 +msgid "Error creating custom field" +msgstr "カスタムフィールド作成エラー" + +#: ../../godmode/setup/setup_ehorus.php:151 +msgid "eHorus has his own agent identifiers" +msgstr "eHorus には独自のエージェント識別があります" + +#: ../../godmode/setup/setup_ehorus.php:152 +msgid "To store them, it will be necessary to use an agent custom field" +msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります" + +#: ../../godmode/setup/setup_ehorus.php:153 +msgid "Possibly the eHorus id will have to be filled in by hand for every agent" +msgstr "eHorus ID は、エージェントごとに設定する必要があります" + +#: ../../godmode/setup/setup_ehorus.php:158 +msgid "The custom field does not exists already" +msgstr "カスタムフィールドが存在しません" + +#: ../../godmode/setup/setup_ehorus.php:172 +msgid "eHorus API" +msgstr "eHorus API" + +#: ../../godmode/setup/setup_ehorus.php:254 ../../godmode/setup/setup_integria.php:719 +msgid "Connection timeout" +msgstr "接続タイムアウト" + +#: ../../godmode/setup/setup_ehorus.php:255 ../../godmode/setup/setup_integria.php:720 +#: ../../godmode/setup/setup_integria.php:801 ../../operation/users/user_edit.php:1270 +#: ../../operation/users/user_edit.php:1348 +msgid "Empty user or password" +msgstr "ユーザまたはパスワードが空です" + +#: ../../godmode/setup/setup_ehorus.php:256 ../../godmode/setup/setup_integria.php:721 +#: ../../godmode/setup/setup_integria.php:802 ../../operation/users/user_edit.php:1271 +#: ../../operation/users/user_edit.php:1349 +msgid "User not found" +msgstr "ユーザが見つかりません" + +#: ../../godmode/setup/setup_ehorus.php:257 ../../godmode/setup/setup_integria.php:722 +#: ../../godmode/setup/setup_integria.php:803 ../../operation/users/user_edit.php:1272 +#: ../../operation/users/user_edit.php:1350 +msgid "Invalid password" +msgstr "パスワードが正しくありません" + +#: ../../godmode/setup/setup_websocket_engine.php:38 +msgid "WebSocket settings" +msgstr "Websocket 設定" + +#: ../../godmode/setup/setup_websocket_engine.php:47 +msgid "Bind address" +msgstr "待ち受けアドレス" + +#: ../../godmode/setup/setup_websocket_engine.php:57 +msgid "Bind port" +msgstr "待ち受けポート" + +#: ../../godmode/setup/setup_websocket_engine.php:67 +#: ../../include/functions_config.php:1827 +msgid "WebSocket proxy url" +msgstr "Websocket プロキシ URL" + +#: ../../godmode/setup/os.list.php:56 +#, php-format +msgid "" +"This node is configured with centralized mode. All OS definitions are read only. Go " +"to %s to manage them." +msgstr "" +"このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用です。 そ" +"れらを管理するには、%s に移動します。" + +#: ../../godmode/setup/os.list.php:141 +msgid "There are no defined operating systems" +msgstr "定義済のオペレーティングシステムがありません" + +#: ../../godmode/setup/os.list.php:147 +msgid "Create OS" +msgstr "OS を作成" + +#: ../../godmode/setup/os.php:190 +msgid "List OS" +msgstr "OS 一覧" + +#: ../../godmode/setup/os.php:202 +msgid "Builder OS" +msgstr "OS 設定" + +#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229 +msgid "Edit OS" +msgstr "OS の編集" + +#: ../../godmode/setup/os.php:211 +msgid "List of Operating Systems" +msgstr "オペレーティングシステム一覧" + +#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2015 +msgid "Success creating OS" +msgstr "OS を作成しました" + +#: ../../godmode/setup/os.php:242 +msgid "Fail creating OS" +msgstr "OS の作成に失敗しました" + +#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2054 +msgid "Success updating OS" +msgstr "OS を更新しました" + +#: ../../godmode/setup/os.php:250 +msgid "Error updating OS" +msgstr "OS の更新に失敗しました" + +#: ../../godmode/setup/os.php:254 +msgid "There are agents with this OS." +msgstr "この OS のエージェントがあります。" + +#: ../../godmode/setup/os.php:258 +msgid "Success deleting" +msgstr "削除しました" + +#: ../../godmode/setup/os.php:262 +msgid "Error deleting" +msgstr "削除に失敗しました" + +#: ../../godmode/setup/gis_step_2.php:37 +msgid "GIS Maps connections" +msgstr "GIS マップ接続" + +#: ../../godmode/setup/gis_step_2.php:54 +msgid "Create new map connection" +msgstr "新たな利用マップ設定" + +#: ../../godmode/setup/gis_step_2.php:81 +msgid "Edit map connection" +msgstr "利用マップ編集" + +#: ../../godmode/setup/gis_step_2.php:213 +msgid "Connection Name" +msgstr "名称" + +#: ../../godmode/setup/gis_step_2.php:219 +msgid "Number of zoom levels" +msgstr "選択可能な拡大率の数" + +#: ../../godmode/setup/gis_step_2.php:223 +msgid "Default zoom level" +msgstr "デフォルト拡大レベル" + +#: ../../godmode/setup/gis_step_2.php:226 +msgid "Basic configuration" +msgstr "基本設定" + +#: ../../godmode/setup/gis_step_2.php:231 +msgid "Open Street Maps" +msgstr "Open Street マップ" + +#: ../../godmode/setup/gis_step_2.php:232 +msgid "Google Maps" +msgstr "Google マップ" + +#: ../../godmode/setup/gis_step_2.php:233 +#: ../../godmode/reporting/visual_console_builder.elements.php:183 +#: ../../include/functions_visual_map_editor.php:1387 +#: ../../include/functions_visual_map.php:4247 +#: ../../operation/visual_console/view.php:296 +msgid "Static Image" +msgstr "静的画像" + +#: ../../godmode/setup/gis_step_2.php:234 +msgid "WMS Server" +msgstr "WMS サーバ" + +#: ../../godmode/setup/gis_step_2.php:236 +msgid "Please select the connection type" +msgstr "利用マップタイプを選択してください" + +#: ../../godmode/setup/gis_step_2.php:238 +msgid "Map connection type" +msgstr "利用マップタイプ" + +#: ../../godmode/setup/gis_step_2.php:286 +msgid "Tile Server URL" +msgstr "サーバ URL" + +#: ../../godmode/setup/gis_step_2.php:299 +msgid "Google Physical" +msgstr "地形" + +#: ../../godmode/setup/gis_step_2.php:300 +msgid "Google Hybrid" +msgstr "航空写真" + +#: ../../godmode/setup/gis_step_2.php:301 +msgid "Google Satelite" +msgstr "地図" + +#: ../../godmode/setup/gis_step_2.php:303 +msgid "Google Map Type" +msgstr "Google マップタイプ" + +#: ../../godmode/setup/gis_step_2.php:327 +msgid "Google Maps Key" +msgstr "Google マップキー" + +#: ../../godmode/setup/gis_step_2.php:336 +msgid "Image URL" +msgstr "画像 URL" + +#: ../../godmode/setup/gis_step_2.php:343 +msgid "Corners of the area of the image" +msgstr "画像が表す領域の範囲" + +#: ../../godmode/setup/gis_step_2.php:343 +#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +msgid "Left" +msgstr "左" + +#: ../../godmode/setup/gis_step_2.php:350 +#: ../../include/rest-api/models/VisualConsole/Item.php:1957 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 +msgid "Bottom" +msgstr "下" + +#: ../../godmode/setup/gis_step_2.php:357 +#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +msgid "Right" +msgstr "右" + +#: ../../godmode/setup/gis_step_2.php:364 +#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +msgid "Top" +msgstr "上" + +#: ../../godmode/setup/gis_step_2.php:371 +msgid "Image Size" +msgstr "画像サイズ" + +#: ../../godmode/setup/gis_step_2.php:388 +msgid "WMS Server URL" +msgstr "WMS サーバ URL" + +#: ../../godmode/setup/gis_step_2.php:430 +msgid "" +"Preview to select the center of the map and the default position of an agent without " +"gis data" +msgstr "マップの中心選択と、GISデータが無い場合のエージェントのデフォルト位置プレビュー" + +#: ../../godmode/setup/gis_step_2.php:431 +msgid "Load preview map" +msgstr "マッププレビュー" + +#: ../../godmode/setup/gis_step_2.php:440 +msgid "Map Center" +msgstr "マップの中心" + +#: ../../godmode/setup/gis_step_2.php:441 +msgid "Default position for agents without GIS data" +msgstr "GIS データが無い場合のエージェントのデフォルト位置" + +#: ../../godmode/setup/gis_step_2.php:443 +msgid "Change in the map" +msgstr "マップ内での変更" + +#: ../../godmode/setup/gis_step_2.php:465 ../../operation/agentes/gis_view.php:218 +msgid "Latitude" +msgstr "緯度" + +#: ../../godmode/setup/gis_step_2.php:483 ../../operation/agentes/gis_view.php:217 +msgid "Longitude" +msgstr "経度" + +#: ../../godmode/setup/gis_step_2.php:501 ../../operation/agentes/gis_view.php:219 +msgid "Altitude" +msgstr "高度" + +#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659 +msgid "Center" +msgstr "中心" + +#: ../../godmode/setup/gis_step_2.php:624 +msgid "Refresh preview map" +msgstr "マッププレビューの再実行" + +#: ../../godmode/setup/setup_auth.php:207 +msgid "Enable secondary LDAP" +msgstr "セカンダリ LDAP の有効化" + +#: ../../godmode/setup/setup_auth.php:278 +msgid "Secondary Base DN" +msgstr "セカンダリ Base DN" + +#: ../../godmode/setup/setup_auth.php:291 +msgid "Secondary Login attribute" +msgstr "セカンダリログイン属性" + +#: ../../godmode/setup/setup_auth.php:368 +msgid "Force 2FA for all users is enabled" +msgstr "全ユーザに二段階認証を強制する" + +#: ../../godmode/setup/setup_auth.php:389 +msgid "Session timeout (mins)" +msgstr "セッションタイムアウト(分)" + +#: ../../godmode/setup/setup_auth.php:432 +#, php-format +msgid "Local %s" +msgstr "ローカル %s" + +#: ../../godmode/setup/setup_auth.php:433 +msgid "ldap" +msgstr "LDAP" + +#: ../../godmode/setup/setup_integria.php:64 +#: ../../operation/incidents/configure_integriaims_incident.php:41 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31 +#: ../../operation/incidents/list_integriaims_incidents.php:42 +msgid "Integria IMS API is not reachable" +msgstr "Integria IMS API に通信できません" + +#: ../../godmode/setup/setup_integria.php:261 ../../include/functions_config.php:1713 +msgid "Enable Integria IMS" +msgstr "Integria IMS の有効化" + +#: ../../godmode/setup/setup_integria.php:296 +msgid "URL to Integria IMS setup" +msgstr "Integria IMS セットアップ URL" + +#: ../../godmode/setup/setup_integria.php:296 +msgid "" +"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://" +"support.mycompany.com)." +msgstr "" +"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, https://" +"support.mycompany.com)" + +#: ../../godmode/setup/setup_integria.php:302 +msgid "API Password" +msgstr "API パスワード" + +#: ../../godmode/setup/setup_integria.php:315 +msgid "Sync inventory" +msgstr "インベントリ同期" + +#: ../../godmode/setup/setup_integria.php:348 ../../godmode/setup/setup_integria.php:469 +msgid "Ticket body" +msgstr "チケット本文" + +#: ../../godmode/setup/setup_integria.php:603 +msgid "Integria API settings" +msgstr "Integria API 設定" + +#: ../../godmode/setup/setup_integria.php:614 +msgid "Alert default values" +msgstr "アラートデフォルト値" + +#: ../../godmode/setup/setup_integria.php:624 +msgid "Event custom response default values" +msgstr "イベントカスタム応答デフォルト値" + +#: ../../godmode/setup/links.php:28 +msgid "Link management" +msgstr "リンク管理" + +#: ../../godmode/setup/snmp_wizard.php:155 +msgid "Unsucessful update the snmp translation" +msgstr "SNMP翻訳の更新に失敗しました" + +#: ../../godmode/setup/snmp_wizard.php:162 +msgid "Unsucessful update the snmp translation." +msgstr "SNMP翻訳の更新に失敗しました。" + +#: ../../godmode/setup/snmp_wizard.php:210 +msgid "Unsucessful delete the snmp translation" +msgstr "SNMP翻訳の削除に失敗しました" + +#: ../../godmode/setup/snmp_wizard.php:217 +msgid "Unsucessful delete the snmp translation." +msgstr "SNMP翻訳の削除に失敗しました。" + +#: ../../godmode/setup/snmp_wizard.php:278 +msgid "Unsucessful save the snmp translation" +msgstr "SNMP翻訳の保存に失敗しました" + +#: ../../godmode/setup/snmp_wizard.php:287 +msgid "Unsucessful save the snmp translation." +msgstr "SNMP翻訳の保存に失敗しました。" + +#: ../../godmode/setup/setup_netflow.php:47 ../../include/functions_config.php:1471 +msgid "Data storage path" +msgstr "データストアのパス" + +#: ../../godmode/setup/setup_netflow.php:50 ../../include/functions_config.php:1475 +msgid "Daemon interval" +msgstr "デーモン間隔" + +#: ../../godmode/setup/setup_netflow.php:53 ../../include/functions_config.php:1479 +msgid "Daemon binary path" +msgstr "デーモンのバイナリパス" + +#: ../../godmode/setup/setup_netflow.php:56 ../../include/functions_config.php:1483 +msgid "Nfdump binary path" +msgstr "nfdump バイナリのパス" + +#: ../../godmode/setup/setup_netflow.php:59 ../../include/functions_config.php:1487 +msgid "Nfexpire binary path" +msgstr "nfexpire バイナリのパス" + +#: ../../godmode/setup/setup_netflow.php:62 ../../include/functions_config.php:1491 +msgid "Maximum chart resolution" +msgstr "最大グラフ解像度" + +#: ../../godmode/setup/setup_netflow.php:67 ../../include/functions_config.php:1499 +msgid "Netflow max lifetime" +msgstr "Netflow 最大保持期間" + +#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions_config.php:1503 +msgid "Name resolution for IP address" +msgstr "IP アドレスの名前解決" + +#: ../../godmode/setup/setup_netflow.php:71 ../../operation/netflow/nf_live_view.php:459 +msgid "IP address resolution can take a lot of time" +msgstr "IP アドレスの解決には多くの時間がかかります" + +#: ../../godmode/setup/setup_visuals.php:79 +msgid "Paginated module view" +msgstr "ページ区切りモジュール表示" + +#: ../../godmode/setup/setup_visuals.php:106 +msgid "Click to display lateral menus" +msgstr "クリックして横のメニューを表示" + +#: ../../godmode/setup/setup_visuals.php:116 ../../include/functions_config.php:1296 +msgid "Service label font size" +msgstr "サービスラベルフォントサイズ" + +#: ../../godmode/setup/setup_visuals.php:120 +msgid "Space between items in Service maps" +msgstr "サービスマップにおける要素間のスペース" + +#: ../../godmode/setup/setup_visuals.php:137 ../../include/functions_config.php:1003 +msgid "Style template" +msgstr "スタイルテンプレート" + +#: ../../godmode/setup/setup_visuals.php:150 ../../include/functions_config.php:1023 +msgid "Status icon set" +msgstr "ステータスアイコンの種類" + +#: ../../godmode/setup/setup_visuals.php:151 +msgid "Colors" +msgstr "色" + +#: ../../godmode/setup/setup_visuals.php:152 +msgid "Faces" +msgstr "顔" + +#: ../../godmode/setup/setup_visuals.php:153 +msgid "Colors and text" +msgstr "色と文字" + +#: ../../godmode/setup/setup_visuals.php:176 ../../include/functions_config.php:1099 +msgid "Login background" +msgstr "ログイン背景" + +#: ../../godmode/setup/setup_visuals.php:394 ../../include/functions_config.php:1059 +msgid "Custom documentation logo" +msgstr "カスタムドキュメントロゴ" + +#: ../../godmode/setup/setup_visuals.php:414 ../../include/functions_config.php:1063 +msgid "Custom support logo" +msgstr "カスタムサポートロゴ" + +#: ../../godmode/setup/setup_visuals.php:433 ../../include/functions_config.php:1067 +#: ../../include/functions_config.php:1071 +msgid "Custom networkmap center logo" +msgstr "カスタムネットワークマップセンターロゴ" + +#: ../../godmode/setup/setup_visuals.php:452 +msgid "Custom mobile console icon" +msgstr "カスタムモバイルコンソールアイコン" + +#: ../../godmode/setup/setup_visuals.php:520 +msgid "Disable logo in graphs" +msgstr "グラフ内ロゴの無効化" + +#: ../../godmode/setup/setup_visuals.php:536 +msgid "Disable helps" +msgstr "ヘルプの無効化" + +#: ../../godmode/setup/setup_visuals.php:545 ../../include/functions_config.php:1235 +msgid "Fixed header" +msgstr "ヘッダーの固定" + +#: ../../godmode/setup/setup_visuals.php:556 +msgid "Automatically hide submenu" +msgstr "サブメニューを自動的に隠す" + +#: ../../godmode/setup/setup_visuals.php:584 ../../include/functions_config.php:1207 +msgid "GIS Labels" +msgstr "GIS ラベル" + +#: ../../godmode/setup/setup_visuals.php:599 ../../include/functions_config.php:1215 +msgid "Default icon in GIS" +msgstr "GIS でのデフォルトアイコン" + +#: ../../godmode/setup/setup_visuals.php:605 +msgid "Agent icon group" +msgstr "エージェントアイコングループ" + +#: ../../godmode/setup/setup_visuals.php:623 +msgid "Graphs font size" +msgstr "グラフフォントサイズ" + +#: ../../godmode/setup/setup_visuals.php:654 ../../include/functions_config.php:1183 +#: ../../include/functions_config.php:1187 +msgid "Agent size text" +msgstr "エージェント名の表示長さ" + +#: ../../godmode/setup/setup_visuals.php:655 ../../godmode/setup/setup_visuals.php:660 +msgid "Small:" +msgstr "小:" + +#: ../../godmode/setup/setup_visuals.php:656 ../../godmode/setup/setup_visuals.php:661 +msgid "Normal:" +msgstr "通常:" + +#: ../../godmode/setup/setup_visuals.php:659 ../../include/functions_config.php:1191 +msgid "Module size text" +msgstr "モジュール名の表示長さ" + +#: ../../godmode/setup/setup_visuals.php:664 ../../include/functions_config.php:1195 +#: ../../include/functions_config.php:1199 +msgid "Description size text" +msgstr "説明の表示長さ" + +#: ../../godmode/setup/setup_visuals.php:668 ../../include/functions_config.php:1203 +msgid "Item title size text" +msgstr "アイテムタイトルの表示長さ" + +#: ../../godmode/setup/setup_visuals.php:679 +msgid "Show unit along with value in reports" +msgstr "レポート内に値に加えて単位を表示する" + +#: ../../godmode/setup/setup_visuals.php:732 ../../include/functions_config.php:962 +msgid "Graph color #4" +msgstr "グラフの色 #4" + +#: ../../godmode/setup/setup_visuals.php:743 ../../include/functions_config.php:966 +msgid "Graph color #5" +msgstr "グラフの色 #5" + +#: ../../godmode/setup/setup_visuals.php:754 ../../include/functions_config.php:970 +msgid "Graph color #6" +msgstr "グラフの色 #6" + +#: ../../godmode/setup/setup_visuals.php:765 ../../include/functions_config.php:974 +msgid "Graph color #7" +msgstr "グラフの色 #7" + +#: ../../godmode/setup/setup_visuals.php:776 ../../include/functions_config.php:978 +msgid "Graph color #8" +msgstr "グラフの色 #8" + +#: ../../godmode/setup/setup_visuals.php:787 ../../include/functions_config.php:982 +msgid "Graph color #9" +msgstr "グラフの色 #9" + +#: ../../godmode/setup/setup_visuals.php:798 ../../include/functions_config.php:986 +msgid "Graph color #10" +msgstr "グラフの色 #10" + +#: ../../godmode/setup/setup_visuals.php:825 +msgid "Data precision" +msgstr "データ精度" + +#: ../../godmode/setup/setup_visuals.php:843 +msgid "Data precision in graphs" +msgstr "グラフにおけるデータの精度" + +#: ../../godmode/setup/setup_visuals.php:858 ../../include/functions_config.php:1263 +msgid "Default line thickness for the Custom Graph." +msgstr "カスタムグラフのデフォルトの線の太さ" + +#: ../../godmode/setup/setup_visuals.php:919 +msgid "Type of interface charts" +msgstr "インタフェースグラフのタイプ" + +#: ../../godmode/setup/setup_visuals.php:947 +msgid "Graph TIP view:" +msgstr "グラフ詳細表示:" + +#: ../../godmode/setup/setup_visuals.php:1070 +msgid "Classic view" +msgstr "クラシック表示" + +#: ../../godmode/setup/setup_visuals.php:1071 +msgid "View of favorites" +msgstr "お気に入りの表示" + +#: ../../godmode/setup/setup_visuals.php:1072 +msgid "Type of view of visual consoles" +msgstr "ビジュアルコンソールの表示タイプ" + +#: ../../godmode/setup/setup_visuals.php:1084 +msgid "Number of favorite visual consoles to show in the menu" +msgstr "メニューに表示するお気に入りビジュアルコンソールの数" + +#: ../../godmode/setup/setup_visuals.php:1088 ../../include/functions_config.php:1171 +msgid "Default line thickness for the Visual Console" +msgstr "ビジュアルコンソールのデフォルトの線の太さ" + +#: ../../godmode/setup/setup_visuals.php:1118 +msgid "Number of favorite services to show in the menu" +msgstr "メニューに表示するお気に入りのサービスの数" + +#: ../../godmode/setup/setup_visuals.php:1195 +msgid "" +"The dir of custom logos is in your www Console in 'images/custom_logo'. You can " +"upload more files (ONLY JPEG AND PNG) in upload tool in console." +msgstr "" +"カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にあります。 コ" +"ンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップロードできま" +"す。" + +#: ../../godmode/setup/setup_visuals.php:1281 ../../include/functions_config.php:1247 +msgid "Networkmap max width" +msgstr "ネットワークマップ最大幅" + +#: ../../godmode/setup/setup_visuals.php:1301 +msgid "Show empty groups in group view" +msgstr "グループ表示で空のグループを表示する" + +#: ../../godmode/setup/setup_visuals.php:1341 +msgid "Custom values post process" +msgstr "保存倍率のカスタム値" + +#: ../../godmode/setup/setup_visuals.php:1362 ../../godmode/setup/setup_visuals.php:1430 +msgid "Delete custom values" +msgstr "カスタム値の削除" + +#: ../../godmode/setup/setup_visuals.php:1394 +msgid "Interval values" +msgstr "間隔値" + +#: ../../godmode/setup/setup_visuals.php:1422 +msgid "Module units" +msgstr "モジュール単位" + +#: ../../godmode/setup/setup_visuals.php:1538 +msgid "Behaviour configuration" +msgstr "動作設定" + +#: ../../godmode/setup/setup_visuals.php:1543 +msgid "GIS configuration" +msgstr "GIS設定" + +#: ../../godmode/setup/setup_visuals.php:1548 +msgid "Style configuration" +msgstr "スタイル設定" + +#: ../../godmode/setup/setup_visuals.php:1553 +msgid "Charts configuration" +msgstr "グラフ設定" + +#: ../../godmode/setup/setup_visuals.php:1558 +msgid "Font and Text configuration" +msgstr "フォントおよびテキスト設定" + +#: ../../godmode/setup/setup_visuals.php:1563 +msgid "Visual consoles configuration" +msgstr "ビジュアルコンソール設定" + +#: ../../godmode/setup/setup_visuals.php:1568 +msgid "Reports configuration " +msgstr "レポート設定 " + +#: ../../godmode/setup/setup_visuals.php:1573 +msgid "Services configuration" +msgstr "サービス設定" + +#: ../../godmode/setup/setup_visuals.php:1578 +msgid "Other configuration" +msgstr "その他設定" + +#: ../../godmode/setup/setup_visuals.php:1855 +msgid "Mobile console logo preview" +msgstr "モバイルコンソールロゴプレビュー" + +#: ../../godmode/setup/setup_visuals.php:1890 +msgid "Gis icons preview" +msgstr "GISアイコンのプレビュー" + +#: ../../godmode/setup/setup_visuals.php:1956 +msgid "Status set preview" +msgstr "状態表示プレビュー" + +#: ../../godmode/setup/setup_general.php:77 ../../include/functions_register.php:122 +msgid "Language code" +msgstr "言語" + +#: ../../godmode/setup/setup_general.php:137 ../../include/functions_config.php:200 +msgid "Automatic check for updates" +msgstr "更新の自動チェック" + +#: ../../godmode/setup/setup_general.php:145 +msgid "Enforce https Information" +msgstr "https の利用" + +#: ../../godmode/setup/setup_general.php:146 +msgid "If SSL is not properly configured you will lose access to " +msgstr "SSL が正しく設定されていないと、こちらへのアクセスができなくなります: " + +#: ../../godmode/setup/setup_general.php:146 ../../godmode/setup/setup_general.php:340 +msgid " Console" +msgstr " コンソール" + +#: ../../godmode/setup/setup_general.php:160 +msgid "Use cert of SSL" +msgstr "SSL証明書の利用" + +#: ../../godmode/setup/setup_general.php:173 +msgid "Path of SSL Cert." +msgstr "SSL証明書のパス" + +#: ../../godmode/setup/setup_general.php:223 ../../include/functions_config.php:240 +msgid "Enable GIS features" +msgstr "GIS 機能の有効化" + +#: ../../godmode/setup/setup_general.php:231 ../../include/functions_config.php:256 +msgid "Enable Netflow" +msgstr "Netflow を利用する" + +#: ../../godmode/setup/setup_general.php:338 +msgid "Enforce public URL usage information" +msgstr "公開 URL 利用に関する情報" + +#: ../../godmode/setup/setup_general.php:340 +msgid "If public URL is not properly configured you will lose access to " +msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: " + +#: ../../godmode/setup/setup_general.php:353 ../../include/functions_config.php:304 +msgid "Referer security" +msgstr "リファラーセキュリティ" + +#: ../../godmode/setup/setup_general.php:361 ../../include/functions_config.php:308 +msgid "Event storm protection" +msgstr "イベントストーム保護" + +#: ../../godmode/setup/setup_general.php:378 +msgid "Change remote config encoding" +msgstr "リモートコンフィグのエンコーディング自動調整" + +#: ../../godmode/setup/setup_general.php:386 ../../include/functions_config.php:320 +msgid "Server logs directory" +msgstr "サーバログディレクトリ" + +#: ../../godmode/setup/setup_general.php:396 ../../include/functions_config.php:324 +msgid "Log size limit in system logs viewer extension" +msgstr "システムログビューワ拡張でのログサイズ制限" + +#: ../../godmode/setup/setup_general.php:407 +msgid "Full mode" +msgstr "フルモード" + +#: ../../godmode/setup/setup_general.php:409 +msgid "Expert" +msgstr "上級者" + +#: ../../godmode/setup/setup_general.php:411 ../../include/functions_config.php:328 +msgid "Tutorial mode" +msgstr "チュートリアルモード" + +#: ../../godmode/setup/setup_general.php:425 ../../include/functions_config.php:332 +msgid "Allow create scheduled downtimes in the past" +msgstr "過去の計画停止の作成を許可する" + +#: ../../godmode/setup/setup_general.php:433 +msgid "Limit for bulk operations" +msgstr "一括操作制限" + +#: ../../godmode/setup/setup_general.php:443 +msgid "Include agents manually disabled" +msgstr "手動で無効化したエージェントを含める" + +#: ../../godmode/setup/setup_general.php:451 +msgid "Set alias as name by default in agent creation" +msgstr "エージェント作成でデフォルトでエイリアスを名前にする" + +#: ../../godmode/setup/setup_general.php:468 ../../godmode/setup/setup_general.php:479 +msgid "Log location" +msgstr "ログの場所" + +#: ../../godmode/setup/setup_general.php:489 +msgid "Module custom ID readonly" +msgstr "モジュールカスタム ID を読み出し専用にする" + +#: ../../godmode/setup/setup_general.php:490 +msgid "Useful for integrations" +msgstr "統合に便利です" + +#: ../../godmode/setup/setup_general.php:514 +msgid "General options" +msgstr "全般オプション" + +#: ../../godmode/setup/setup_general.php:533 +msgid "" +"Please notice that some providers like Gmail or Office365 need to setup/enable " +"manually external connections using SMTP and you need to use STARTTLS on port 587.\n" +"\n" +" If you have manual settings in your pandora_server.conf, please note these " +"settings will ignore this console setup." +msgstr "" +"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有効化す" +"る必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してください。" + +#: ../../godmode/setup/setup_general.php:539 +msgid "From address" +msgstr "発信元アドレス" + +#: ../../godmode/setup/setup_general.php:559 +msgid "SMTP Server" +msgstr "SMTP サーバ" + +#: ../../godmode/setup/setup_general.php:569 +msgid "SMTP Port" +msgstr "SMTP ポート" + +#: ../../godmode/setup/setup_general.php:579 ../../include/functions_config.php:388 +msgid "Encryption" +msgstr "暗号化" + +#: ../../godmode/setup/setup_general.php:619 +msgid "Email test" +msgstr "Email テスト" + +#: ../../godmode/setup/setup_general.php:671 ../../general/header.php:826 +msgid "Send" +msgstr "送信" + +#: ../../godmode/setup/setup_general.php:681 +msgid "Check mail configuration" +msgstr "メール設定確認" + +#: ../../godmode/setup/performance.php:181 +msgid "Pandora_db running in active database." +msgstr "アクティブデータベースで pandora_db が動作しています。" + +#: ../../godmode/setup/performance.php:182 ../../godmode/setup/performance.php:238 +msgid "Executed:" +msgstr "実行済:" + +#: ../../godmode/setup/performance.php:237 +msgid "Pandora_db running in historical database." +msgstr "ヒストリデータベースで pandora_db が動作しています。" + +#: ../../godmode/setup/performance.php:245 +msgid "not executed" +msgstr "未実行" + +#: ../../godmode/setup/performance.php:273 ../../include/functions_config.php:798 +msgid "Max. days before delete traps" +msgstr "トラップデータ保持日数" + +#: ../../godmode/setup/performance.php:293 ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:802 +msgid "Max. days before delete string data" +msgstr "文字列データ保持日数" + +#: ../../godmode/setup/performance.php:303 ../../include/functions_config.php:810 +msgid "Max. days before delete GIS data" +msgstr "GIS データ保持日数" + +#: ../../godmode/setup/performance.php:313 ../../godmode/setup/performance.php:430 +#: ../../include/functions_config.php:814 +msgid "Max. days before purge" +msgstr "データ保持日数" + +#: ../../godmode/setup/performance.php:323 ../../godmode/setup/performance.php:440 +#: ../../include/functions_config.php:826 +msgid "Max. days before compact data" +msgstr "データ保持日数(丸め込みなし)" + +#: ../../godmode/setup/performance.php:333 ../../include/functions_config.php:818 +msgid "Max. days before delete unknown modules" +msgstr "不明モジュール保持日数" + +#: ../../godmode/setup/performance.php:344 ../../include/functions_config.php:822 +msgid "Max. days before delete not initialized modules" +msgstr "未初期化モジュール保持日数" + +#: ../../godmode/setup/performance.php:354 +msgid "Max. days before delete autodisabled agents" +msgstr "自動無効化エージェントを削除せず保持する日数" + +#: ../../godmode/setup/performance.php:364 ../../include/functions_config.php:874 +msgid "Retention period of past special days" +msgstr "過去の特別日の保存期間" + +#: ../../godmode/setup/performance.php:388 ../../include/functions_config.php:883 +msgid "Max. days before delete inventory data" +msgstr "インベントリデータの保持日数" + +#: ../../godmode/setup/performance.php:450 ../../godmode/setup/performance.php:531 +#: ../../include/functions_config.php:838 +msgid "Compact interpolation in hours (1 Fine-20 bad)" +msgstr "データ縮小時の丸め込み単位時間 (1〜20)" + +#: ../../godmode/setup/performance.php:488 ../../include/functions_config.php:888 +msgid "Max. days before delete old messages" +msgstr "古いメッセージの保持日数" + +#: ../../godmode/setup/performance.php:501 ../../include/functions_config.php:892 +msgid "Max. days before delete old network matrix data" +msgstr "ネットワークマトリックスデータ保持日数" + +#: ../../godmode/setup/performance.php:521 +msgid "Item limit for realtime reports" +msgstr "リアルタイムレポートのアイテム制限" + +#: ../../godmode/setup/performance.php:544 +msgid "Last day" +msgstr "昨日" + +#: ../../godmode/setup/performance.php:546 +msgid "10 days" +msgstr "10日" + +#: ../../godmode/setup/performance.php:548 +msgid "2 weeks" +msgstr "2週間" + +#: ../../godmode/setup/performance.php:561 ../../include/functions_config.php:846 +msgid "Use realtime statistics" +msgstr "リアルタイム更新の利用" + +#: ../../godmode/setup/performance.php:569 ../../include/functions_config.php:850 +msgid "Batch statistics period (secs)" +msgstr "バッチ更新間隔(秒)" + +#: ../../godmode/setup/performance.php:582 ../../include/functions_config.php:858 +msgid "Max. recommended number of files in attachment directory" +msgstr "添付ディレクトリファイルの推奨上限数" + +#: ../../godmode/setup/performance.php:592 ../../include/functions_config.php:862 +msgid "Delete not init modules" +msgstr "未初期化モジュールの削除" + +#: ../../godmode/setup/performance.php:595 +msgid "Big Operation Step to purge old data" +msgstr "古いデータ削除のための大きい処理の分割数" + +#: ../../godmode/setup/performance.php:605 ../../include/functions_config.php:870 +msgid "Small Operation Step to purge old data" +msgstr "古いデータ削除のための小さな操作ステップ" + +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:896 +msgid "Graph container - Max. Items" +msgstr "グラフコンテナ - 最大アイテム" + +#: ../../godmode/setup/performance.php:645 +msgid "SNMP walk binary" +msgstr "snmpwalk バイナリ" + +#: ../../godmode/setup/performance.php:656 +msgid "" +"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead (by " +"default snmpwalk, slower)." +msgstr "" +"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されます。(デ" +"フォルトで snmpwalk で遅くなります)" + +#: ../../godmode/setup/performance.php:659 +msgid "SNMP walk binary (fallback)" +msgstr "snmpwalk バイナリ (フォールバック)" + +#: ../../godmode/setup/performance.php:677 +msgid "WMI binary" +msgstr "WMI バイナリ" + +#: ../../godmode/setup/performance.php:712 +msgid "Database maintenance options" +msgstr "データベースメンテナンスオプション" + +#: ../../godmode/setup/performance.php:718 +msgid "Historical database maintenance options" +msgstr "ヒストリデータベースメンテナンスオプション" + +#: ../../godmode/setup/performance.php:724 ../../include/functions_visual_map.php:2874 +#: ../../include/functions_netflow.php:2078 +#: ../../operation/network/network_report.php:324 +msgid "Others" +msgstr "その他" + +#: ../../godmode/setup/file_manager.php:83 ../../godmode/servers/plugin.php:235 +#: ../../include/functions_filemanager.php:590 +#, php-format +msgid "Index of %s" +msgstr "%s 一覧" + +#: ../../godmode/reporting/visual_console_builder.data.php:94 +msgid "Create visual console" +msgstr "ビジュアルコンソールの作成" + +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "" +"Use [ or ( as first character, for example '[*] Map name', to render this map name in " +"main menu" +msgstr "" +"最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに表示する" +"には、'[*] Map name' です。" + +#: ../../godmode/reporting/visual_console_builder.data.php:169 +#: ../../godmode/reporting/visual_console_builder.elements.php:151 +#: ../../include/functions_visual_map_editor.php:55 +#: ../../include/functions_visual_map_editor.php:632 +#: ../../include/lib/Dashboard/Widget.php:566 +msgid "Background" +msgstr "背景" + +#: ../../godmode/reporting/visual_console_builder.data.php:179 +msgid "Background image" +msgstr "背景画像" + +#: ../../godmode/reporting/visual_console_builder.data.php:181 +#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524 +msgid "Background color" +msgstr "背景色" + +#: ../../godmode/reporting/visual_console_builder.data.php:211 +msgid "Layout size" +msgstr "レイアウトサイズ" + +#: ../../godmode/reporting/visual_console_builder.data.php:214 +msgid "Set custom size" +msgstr "カスタムサイズを設定" + +#: ../../godmode/reporting/visual_console_builder.data.php:220 +msgid "Get default image size" +msgstr "デフォルトのイメージサイズ取得" + +#: ../../godmode/reporting/visual_console_builder.data.php:222 +msgid "Favourite visual console" +msgstr "お気に入りのビジュアルコンソール" + +#: ../../godmode/reporting/visual_console_builder.data.php:225 +msgid "Auto adjust to screen in fullscreen" +msgstr "全画面時の画面自動調整" + +#: ../../godmode/reporting/visual_console_builder.php:226 +msgid "This file isn't image" +msgstr "このファイルは画像ではありません" + +#: ../../godmode/reporting/visual_console_builder.php:229 +msgid "This file isn't image." +msgstr "このファイルは画像ではありません。" + +#: ../../godmode/reporting/visual_console_builder.php:235 +#: ../../godmode/reporting/visual_console_builder.php:238 +msgid "File already are exists." +msgstr "ファイルが既に存在します。" + +#: ../../godmode/reporting/visual_console_builder.php:246 +#: ../../godmode/reporting/visual_console_builder.php:249 +msgid "The file have not image extension." +msgstr "画像ファイルの拡張子ではありません。" + +#: ../../godmode/reporting/visual_console_builder.php:261 +#: ../../godmode/reporting/visual_console_builder.php:264 +#: ../../godmode/reporting/visual_console_builder.php:274 +#: ../../godmode/reporting/visual_console_builder.php:280 +msgid "Problems with move file to target." +msgstr "対象へのファイルの移動で問題が発生しました。" + +#: ../../godmode/reporting/visual_console_builder.php:317 +msgid "Successfully update." +msgstr "更新しました。" + +#: ../../godmode/reporting/visual_console_builder.php:336 +msgid "Could not be update." +msgstr "更新に失敗しました。" + +#: ../../godmode/reporting/visual_console_builder.php:356 +msgid "Successfully created." +msgstr "作成しました。" + +#: ../../godmode/reporting/visual_console_builder.php:375 +msgid "Could not be created." +msgstr "作成に失敗しました。" + +#: ../../godmode/reporting/visual_console_builder.php:423 +msgid "Successfully multiple delete." +msgstr "複数削除をしました。" + +#: ../../godmode/reporting/visual_console_builder.php:424 +msgid "Unsuccessful multiple delete." +msgstr "複数削除失敗。" + +#: ../../godmode/reporting/visual_console_builder.php:544 +msgid "Successfully delete." +msgstr "削除しました。" + +#: ../../godmode/reporting/visual_console_builder.php:834 +#: ../../operation/visual_console/view.php:178 +#: ../../operation/visual_console/legacy_view.php:165 +msgid "Services wizard" +msgstr "サービスウィザード" + +#: ../../godmode/reporting/reporting_builder.list_items.php:706 +#: ../../godmode/reporting/reporting_builder.list_items.php:710 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 +#: ../../godmode/reporting/graph_builder.graph_editor.php:288 +msgid "Sort items" +msgstr "アイテムの並び替え" + +#: ../../godmode/reporting/reporting_builder.list_items.php:713 +msgid "Sort selected items from position: " +msgstr "選択したアイテムを次の位置から並び替え: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:716 +msgid "Move before to" +msgstr "この前に移動:" + +#: ../../godmode/reporting/reporting_builder.list_items.php:717 +msgid "Move after to" +msgstr "この後ろに移動:" + +#: ../../godmode/reporting/reporting_builder.list_items.php:764 +msgid "Delete selected items from position: " +msgstr "次の場所から選択したアイテムを削除する: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:767 +msgid "Delete above to" +msgstr "次の上を削除" + +#: ../../godmode/reporting/reporting_builder.list_items.php:768 +msgid "Delete below to" +msgstr "次の下を削除" + +#: ../../godmode/reporting/reporting_builder.list_items.php:824 +msgid "" +"Are you sure to sort the items into the report?\\n. This action change the sorting of " +"items into data base." +msgstr "" +"レポートのアイテムを並べ替えますか?\\n この操作は、データベースでのアイテムのソートを" +"変更します。" + +#: ../../godmode/reporting/reporting_builder.list_items.php:844 +#: ../../godmode/reporting/graph_builder.graph_editor.php:407 +msgid "Please select any item to order" +msgstr "並び替えるアイテムを選択してください" + +#: ../../godmode/reporting/reporting_builder.list_items.php:874 +msgid "Are you sure to delete the items into the report?\\n" +msgstr "レポートのアイテムを削除しますがよろしいですか?\\n" + +#: ../../godmode/reporting/reporting_builder.list_items.php:901 +msgid "Please select any item to delete" +msgstr "削除するアイテムを選択してください" + +#: ../../godmode/reporting/create_container.php:155 +msgid "Container name is missing." +msgstr "コンテナ名がありません。" + +#: ../../godmode/reporting/create_container.php:196 +#: ../../godmode/reporting/graph_container.php:134 +msgid "Create container" +msgstr "コンテナ作成" + +#: ../../godmode/reporting/create_container.php:205 +msgid "Container stored successfully" +msgstr "コンテナを保存しました" + +#: ../../godmode/reporting/create_container.php:205 +msgid "There was a problem storing container" +msgstr "コンテナの保存に問題が発生しました" + +#: ../../godmode/reporting/create_container.php:212 +msgid "Update the container" +msgstr "コンテナの更新" + +#: ../../godmode/reporting/create_container.php:212 +msgid "Bad update the container" +msgstr "コンテナの更新に失敗しました" + +#: ../../godmode/reporting/create_container.php:287 +msgid "Parent container" +msgstr "親コンテナ" + +#: ../../godmode/reporting/create_container.php:345 ../../include/functions.php:2688 +msgid "custom" +msgstr "カスタム" + +#: ../../godmode/reporting/create_container.php:347 +#: ../../godmode/reporting/create_container.php:348 +#: ../../godmode/reporting/create_container.php:349 ../../include/functions.php:2700 +#: ../../include/functions.php:2701 ../../include/ajax/graph.ajax.php:147 +#: ../../include/ajax/graph.ajax.php:148 ../../include/ajax/graph.ajax.php:149 +#, php-format +msgid "%s hours" +msgstr "%s 時間" + +#: ../../godmode/reporting/create_container.php:351 +#: ../../godmode/reporting/create_container.php:352 +#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 +#, php-format +msgid "%s days" +msgstr "%s 日" + +#: ../../godmode/reporting/create_container.php:353 ../../include/functions.php:2703 +#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153 +msgid "1 week" +msgstr "1週間" + +#: ../../godmode/reporting/create_container.php:355 ../../include/functions.php:2705 +#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155 +msgid "1 month" +msgstr "1ヵ月" + +#: ../../godmode/reporting/create_container.php:365 +#: ../../godmode/reporting/create_container.php:474 +#: ../../godmode/reporting/create_container.php:528 +msgid "" +"This is the interval or period of time with which the graph data will be obtained. " +"For example, a week means data from a week ago from now. " +msgstr "" +"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味します。 " + +#: ../../godmode/reporting/create_container.php:428 +#: ../../godmode/reporting/create_container.php:583 +#: ../../godmode/reporting/graph_builder.main.php:208 +#: ../../include/functions_visual_map_editor.php:554 +msgid "Type of graph" +msgstr "グラフのタイプ" + +#: ../../godmode/reporting/create_container.php:437 +#: ../../godmode/reporting/create_container.php:494 +#: ../../godmode/reporting/create_container.php:589 +#: ../../godmode/reporting/graph_builder.main.php:285 +#: ../../operation/agentes/stat_win.php:395 +#: ../../operation/agentes/interface_traffic_graph_win.php:238 +msgid "Show full scale graph (TIP)" +msgstr "詳細グラフ表示 (TIP)" + +#: ../../godmode/reporting/create_container.php:448 +#: ../../godmode/reporting/create_container.php:501 +#: ../../godmode/reporting/create_container.php:596 +msgid "Add item" +msgstr "アイテムの追加" + +#: ../../godmode/reporting/create_container.php:614 +msgid "There are no items in this container." +msgstr "このコンテナにはアイテムがありません。" + +#: ../../godmode/reporting/create_container.php:623 +msgid "Agent/Module" +msgstr "エージェント/モジュール" + +#: ../../godmode/reporting/create_container.php:626 +msgid "M.Group" +msgstr "モジュールグループ" + +#: ../../godmode/reporting/map_builder.php:318 +#: ../../godmode/reporting/map_builder.php:326 +msgid "Not copied. Error copying data" +msgstr "コピーできませんでした。データのコピーでエラーが発生しました。" + +#: ../../godmode/reporting/map_builder.php:368 +#: ../../godmode/reporting/visual_console_favorite.php:185 +msgid "Group Recursion" +msgstr "子グループを含む" + +#: ../../godmode/reporting/map_builder.php:384 +msgid "Map name" +msgstr "マップ名" + +#: ../../godmode/reporting/map_builder.php:386 +msgid "Items" +msgstr "アイテム" + +#: ../../godmode/reporting/map_builder.php:462 +#: ../../general/first_task/map_builder.php:23 +msgid "There are no visual console defined yet." +msgstr "ビジュアルコンソールが定義されていません。" + +#: ../../godmode/reporting/graph_builder.php:309 +#: ../../operation/reporting/graph_viewer.php:204 +msgid "Graph editor" +msgstr "グラフ編集" + +#: ../../godmode/reporting/graph_builder.php:320 +#: ../../operation/reporting/graph_viewer.php:223 +msgid "View graph" +msgstr "グラフ表示" + +#: ../../godmode/reporting/graph_builder.php:336 +msgid "Graph builder" +msgstr "グラフビルダー" + +#: ../../godmode/reporting/graph_builder.php:378 +msgid "Graph stored successfully" +msgstr "グラフを作成しました。" + +#: ../../godmode/reporting/graph_builder.php:379 +msgid "There was a problem storing Graph" +msgstr "グラフの作成に失敗しました。" + +#: ../../godmode/reporting/graph_builder.php:387 +msgid "There was a problem adding Module" +msgstr "モジュール追加で問題が発生しました。" + +#: ../../godmode/reporting/graph_builder.php:394 +msgid "Update the graph" +msgstr "グラフを更新しました。" + +#: ../../godmode/reporting/graph_builder.php:395 +msgid "Bad update the graph" +msgstr "グラフ更新に失敗しました。" + +#: ../../godmode/reporting/graph_builder.php:402 +msgid "Graph deleted successfully" +msgstr "グラフを削除しました。" + +#: ../../godmode/reporting/graph_builder.php:403 +msgid "There was a problem deleting Graph" +msgstr "グラフの削除で問題が発生しました。" + +#: ../../godmode/reporting/graphs.php:106 +msgid "Graphs containers" +msgstr "グラフコンテナ" + +#: ../../godmode/reporting/graphs.php:120 +msgid "List of custom graphs" +msgstr "カスタムグラフ一覧" + +#: ../../godmode/reporting/graphs.php:235 +#: ../../godmode/reporting/reporting_builder.php:780 +msgid "Free text for search: " +msgstr "文字列検索: " + +#: ../../godmode/reporting/graphs.php:236 +#: ../../godmode/reporting/reporting_builder.php:782 +msgid "Search by report name or description, list matches." +msgstr "レポート名または説明で検索したリスト。" + +#: ../../godmode/reporting/graphs.php:248 +#: ../../godmode/reporting/reporting_builder.php:808 +msgid "Show Option" +msgstr "オプション表示" + +#: ../../godmode/reporting/graphs.php:310 ../../include/functions_container.php:146 +#: ../../operation/search_graphs.php:30 ../../operation/reporting/graph_viewer.php:524 +msgid "Graph name" +msgstr "グラフ名" + +#: ../../godmode/reporting/graphs.php:312 ../../include/functions_container.php:148 +msgid "Number of Graphs" +msgstr "グラフ数" + +#: ../../godmode/reporting/graphs.php:402 +msgid "Create graph" +msgstr "グラフ作成" + +#: ../../godmode/reporting/visual_console_favorite.php:223 +msgid "No favourite consoles defined" +msgstr "お気に入りコンソールが定義されていません" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:199 +#, php-format +msgid "" +"The maximum number of items in a chart is %d. You have %d elements, only first %d " +"will be displayed." +msgstr "" +"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムのみ表示さ" +"れます。" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:291 +msgid "Sort selected items" +msgstr "選択アイテムの並べ替え" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:294 +msgid "before to" +msgstr "この前へ:" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:295 +msgid "after to" +msgstr "この後へ:" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1062 +msgid "Not valid" +msgstr "不正です" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1070 +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:1266 +msgid "Log number" +msgstr "ログ番号" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1268 +msgid "" +"Warning: this parameter limits the contents of the logs and affects the performance." +msgstr "警告: このパラメータはログの内容を制限しパフォーマンスに影響します。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 +msgid "" +"This is the range, or period of time over which the report renders the information " +"for this report type. For example, a week means data from a week ago from now. " +msgstr "" +"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 たと" +"えば、1週間は、今から1週間前のデータを意味します。 " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1888 +msgid "Show modules" +msgstr "モジュール表示" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 +msgid "Target server" +msgstr "対象サーバ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2570 +msgid "Macros definition" +msgstr "マクロ定義" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 +msgid "Render definition" +msgstr "描画定義" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2582 +msgid "Please note that not all CSS styles are supported by PDF reports." +msgstr "" +"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意してくださ" +"い。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2679 +msgid "Greater or equal (>=)" +msgstr "以上 (>=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 +msgid "Less or equal (<=)" +msgstr "以下 (<=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2681 +msgid "Less (<)" +msgstr "未満 (<)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 +msgid "Greater (>)" +msgstr "超えて (>)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2683 +msgid "Equal (=)" +msgstr "同じ (=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2684 +msgid "Not equal (!=)" +msgstr "異なる (!=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2809 +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:2864 +msgid "Checks in Warning status" +msgstr "警告状態のチェック" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 +msgid "Only data" +msgstr "ベースのみ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3032 +msgid "Include extended events" +msgstr "拡張イベントを含める" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3049 +msgid "Show custom data" +msgstr "カスタムデータを表示" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3068 +msgid "By agent " +msgstr "エージェントごと " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3078 +msgid "By user validator " +msgstr "承諾ユーザごと " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3088 +msgid "By criticity " +msgstr "重要度ごと " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +msgid "Validated vs unvalidated " +msgstr "承諾済 / 未承諾 " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +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:3298 +msgid "Include filter" +msgstr "含めるフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3302 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3311 +msgid "Free text string search on event description" +msgstr "イベントの説明の任意のテキスト検索" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3307 +msgid "Exclude filter" +msgstr "除外フィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3437 +#: ../../include/functions_reporting.php:4783 +msgid "Unassigned group" +msgstr "未割当グループ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3483 +#: ../../include/functions_reporting.php:4777 +msgid "Unnasigned group" +msgstr "未割当グループ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3506 +msgid "Select by group" +msgstr "グループ選択" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3594 +msgid "Display options" +msgstr "表示オプション" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3652 +msgid "Agent group filter" +msgstr "エージェントグループフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3687 +msgid "Agent OS filter" +msgstr "エージェント OS フィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3713 +msgid "Agent custom field" +msgstr "エージェントカスタムフィールド" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3735 +msgid "Agent custom field filter" +msgstr "エージェントカスタムフィールドフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3759 +msgid "Agent status filter" +msgstr "エージェント状態フィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +msgid "Agent version filter" +msgstr "エージェントバージョンフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3821 +msgid "Agent has remote configuration" +msgstr "リモート設定エージェント" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3822 +msgid "Filter agents by remote configuration enabled." +msgstr "リモート設定が有効化されているエージェントのフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +msgid "Agent module filter" +msgstr "エージェントモジュールフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3857 +msgid "Module group filter" +msgstr "モジュールグループフィルタ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3981 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4496 +msgid "Agent Failover" +msgstr "エージェントフェイルオーバー" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3986 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4499 +msgid "Module Failover" +msgstr "モジュールフェイルオーバー" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4026 +msgid "Please save the item before adding entries to this list." +msgstr "一覧へのエントリ追加の前に、アイテムを保存してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4472 +msgid "rate" +msgstr "律" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4520 +msgid "" +"Please be careful, when the module have diferent intervals in their life, the " +"summatory maybe get bad result." +msgstr "" +"モジュールの間隔が異なる場合、合計は正しい値にならない場合があることに注意してくださ" +"い。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4540 +msgid "Please save the report to start adding items into the list." +msgstr "リストに項目を追加する前にレポートを保存してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4806 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4810 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4814 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4818 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4822 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4826 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4830 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4834 +msgid "Item Editor Information" +msgstr "アイテムエディタ情報" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4807 +msgid "Please select a name." +msgstr "名前を選択してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4811 +msgid "Please select an agent." +msgstr "エージェントを選択してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4819 +msgid "Please insert a SQL query." +msgstr "SQL クエリを入力してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4823 +msgid "Please insert a URL." +msgstr "URL を入力してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4827 +msgid "Please checked a custom interval option." +msgstr "カスタム間隔オプションを確認してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4831 +msgid "Please select a user." +msgstr "ユーザを選択して下さい。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4835 +msgid "Please select a group." +msgstr "グループを選択してください。" + +#: ../../godmode/reporting/visual_console_builder.elements.php:106 +msgid "Width x Height
    Max value" +msgstr "幅 x 高さ
    最大値" + +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "リンク先マップ" + +#: ../../godmode/reporting/visual_console_builder.elements.php:194 +msgid "Percentile Bar" +msgstr "パーセントバー" + +#: ../../godmode/reporting/visual_console_builder.elements.php:204 +msgid "Percentile Bubble" +msgstr "パーセント円表示" + +#: ../../godmode/reporting/visual_console_builder.elements.php:222 +#: ../../mobile/operation/events.php:837 +#: ../../include/functions_visual_map_editor.php:1389 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555 +#: ../../operation/visual_console/view.php:306 +msgid "Module Graph" +msgstr "モジュールグラフ" + +#: ../../godmode/reporting/visual_console_builder.elements.php:232 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:1392 +#: ../../include/functions_visual_map.php:4227 +#: ../../operation/visual_console/view.php:326 +msgid "Event history graph" +msgstr "イベント履歴グラフ" + +#: ../../godmode/reporting/visual_console_builder.elements.php:241 +#: ../../include/functions_visual_map_editor.php:1393 +#: ../../include/functions_visual_map.php:4252 +#: ../../include/rest-api/models/VisualConsole/Item.php:2131 +#: ../../operation/visual_console/view.php:331 +msgid "Simple Value" +msgstr "数値" + +#: ../../godmode/reporting/visual_console_builder.elements.php:252 +msgid "Simple Value (Process Max)" +msgstr "値 (最大値)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:263 +msgid "Simple Value (Process Min)" +msgstr "値 (最小値)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:274 +msgid "Simple Value (Process Avg)" +msgstr "値 (平均値)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:304 +#: ../../include/functions_visual_map_editor.php:71 +#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map.php:4207 +#: ../../operation/visual_console/view.php:356 +msgid "Box" +msgstr "ボックス" + +#: ../../godmode/reporting/visual_console_builder.elements.php:323 +#: ../../include/functions_visual_map_editor.php:1405 +#: ../../operation/visual_console/view.php:371 +msgid "Network link" +msgstr "ネットワークリンク" + +#: ../../godmode/reporting/visual_console_builder.elements.php:344 +#: ../../include/functions_visual_map_editor.php:73 +#: ../../include/functions_visual_map_editor.php:1400 +#: ../../include/functions_visual_map.php:4267 +#: ../../include/rest-api/models/VisualConsole/Item.php:2143 +#: ../../operation/visual_console/view.php:366 +msgid "Color cloud" +msgstr "カラークラウド" + +#: ../../godmode/reporting/visual_console_builder.elements.php:352 +#: ../../include/rest-api/models/VisualConsole/Item.php:2155 +#: ../../operation/visual_console/view.php:311 +msgid "Basic chart" +msgstr "基本グラフ" + +#: ../../godmode/reporting/visual_console_builder.elements.php:360 +#: ../../include/rest-api/models/VisualConsole/Item.php:2151 +#: ../../operation/visual_console/view.php:376 +msgid "Odometer" +msgstr "オドメーター" + +#: ../../godmode/reporting/visual_console_builder.elements.php:368 +#: ../../include/functions_visual_map_editor.php:69 +#: ../../include/functions_visual_map_editor.php:1396 +#: ../../include/functions_visual_map.php:4217 +#: ../../include/rest-api/models/VisualConsole/Item.php:2103 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:346 +msgid "Clock" +msgstr "時計" + +#: ../../godmode/reporting/visual_console_builder.elements.php:395 +#: ../../godmode/reporting/visual_console_builder.elements.php:853 +msgid "Edit label" +msgstr "ラベル編集" + +#: ../../godmode/reporting/reporting_builder.main.php:146 +msgid "Only the group can view the report" +msgstr "指定のグループのみレポートを参照可能" + +#: ../../godmode/reporting/reporting_builder.main.php:147 +msgid "The next group can edit the report" +msgstr "グループがレポートを編集可能" + +#: ../../godmode/reporting/reporting_builder.main.php:148 +msgid "Only the user and admin user can edit the report" +msgstr "ユーザおよび管理者のみがレポートを編集可能" + +#: ../../godmode/reporting/reporting_builder.main.php:150 +msgid "Write Access" +msgstr "書き込みアクセス" + +#: ../../godmode/reporting/reporting_builder.main.php:152 +msgid "" +"For example, you want a report that the people of \"All\" groups can see but you want " +"to edit only for you or your group." +msgstr "" +"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分のグルー" +"プのみが編集できるようにしたい場合等に利用します。" + +#: ../../godmode/reporting/reporting_builder.main.php:193 +msgid "Non interactive report" +msgstr "非対話型レポート" + +#: ../../godmode/reporting/reporting_builder.php:210 +#: ../../operation/reporting/reporting_viewer.php:101 +msgid "Your report has been planned, and the system will email you a " +msgstr "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: " + +#: ../../godmode/reporting/reporting_builder.php:211 +#: ../../operation/reporting/reporting_viewer.php:102 +msgid "An error has ocurred" +msgstr "エラーが発生しました" + +#: ../../godmode/reporting/reporting_builder.php:535 +#: ../../godmode/reporting/reporting_builder.php:3499 +#: ../../godmode/reporting/reporting_builder.php:3582 +#: ../../godmode/reporting/reporting_builder.php:3630 +msgid "Reports list" +msgstr "レポート一覧" + +#: ../../godmode/reporting/reporting_builder.php:551 +#: ../../godmode/reporting/reporting_builder.php:3510 ../../operation/menu.php:319 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "カスタムレポート" + +#: ../../godmode/reporting/reporting_builder.php:583 +msgid "List of reports" +msgstr "レポート一覧" + +#: ../../godmode/reporting/reporting_builder.php:1044 +msgid "This report exceeds the item limit for realtime operations" +msgstr "このレポートはリアルタイム処理のアイテム数制限を超過しています" + +#: ../../godmode/reporting/reporting_builder.php:1276 +msgid "Create report" +msgstr "レポートの作成" + +#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../operation/reporting/reporting_viewer.php:173 +msgid "View report" +msgstr "レポート参照" + +#: ../../godmode/reporting/reporting_builder.php:3633 +msgid "Create Custom Report" +msgstr "カスタムレポートの作成" + +#: ../../godmode/reporting/reporting_builder.php:3721 +msgid "Unsuccessful action

    " +msgstr "アクション失敗

    " + +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "静的グラフ" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1388 +#: ../../operation/visual_console/view.php:301 +msgid "Percentile Item" +msgstr "パーセント表示" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../mobile/operation/home.php:102 ../../include/functions_visual_map_editor.php:397 +#: ../../include/functions_visual_map.php:4212 +#: ../../include/rest-api/models/VisualConsole/Item.php:2099 +msgid "Module graph" +msgstr "モジュールデータのグラフ" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 +msgid "Simple value" +msgstr "値" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "エレメント間の幅 (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "サイズ (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:228 +#: ../../include/functions_config.php:1031 +msgid "Font size" +msgstr "フォントサイズ" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:256 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 +msgid "Process" +msgstr "処理" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:259 +#: ../../include/functions_visual_map_editor.php:615 +msgid "Min value" +msgstr "最小値" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 +#: ../../godmode/reporting/visual_console_builder.wizard.php:278 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:682 +msgid "Max value" +msgstr "最大値" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:261 +#: ../../include/functions_visual_map_editor.php:617 +msgid "Avg value" +msgstr "平均値" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:273 +msgid "Width (px)" +msgstr "幅 (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:295 +#: ../../include/functions_visual_map_editor.php:687 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 +msgid "Bubble" +msgstr "バブル" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:307 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:729 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 +msgid "Value to show" +msgstr "表示する値" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:309 +#: ../../include/functions_visual_map_editor.php:692 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 +msgid "Percent" +msgstr "パーセント" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:378 +msgid "One item per agent" +msgstr "1エージェントに 1アイテム" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:448 +#: ../../godmode/reporting/visual_console_builder.wizard.php:765 +msgid "Agent - Module" +msgstr "エージェント - モジュール" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:465 +msgid "Enable link agent" +msgstr "エージェントのリンクを有効にする" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:476 +msgid "Set Parent" +msgstr "親を設定" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:479 +msgid "Item created in the visualmap" +msgstr "ビジュアルマップに作成したアイテム" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:480 +msgid "Use the agents relationship (from selected agents)" +msgstr "エージェント関係を利用する (選択したエージェント)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:489 +msgid "Item in the map" +msgstr "マップ内のアイテム" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:490 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "%s の親子関係がマップに描画されます。" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#: ../../godmode/reporting/visual_console_builder.wizard.php:514 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" +"ビジュアルマップに多くのエレメントを追加しようとしています。\n" +"よろしいですか。" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:686 +msgid "Please select any module or modules." +msgstr "モジュールを選択してください。" + +#: ../../godmode/reporting/visual_console_builder.editor.php:163 +msgid "Min allowed size is 1024x768" +msgstr "最小サイズは 1024x768 です" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../operation/snmpconsole/snmp_browser.php:225 +msgid "Action in progress" +msgstr "アクション実行中" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +msgid "Loading in progress" +msgstr "読み込み中" + +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +msgid "Saving in progress" +msgstr "保存中" + +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +msgid "Deletion in progress" +msgstr "削除中" + +#: ../../godmode/reporting/graph_builder.main.php:218 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:356 +#: ../../operation/reporting/graph_viewer.php:374 +msgid "Bullet chart" +msgstr "ブレットグラフ" + +#: ../../godmode/reporting/graph_builder.main.php:219 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:357 +#: ../../operation/reporting/graph_viewer.php:375 +msgid "Gauge" +msgstr "ゲージ" + +#: ../../godmode/reporting/graph_builder.main.php:222 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:360 +#: ../../operation/reporting/graph_viewer.php:378 +msgid "Pie" +msgstr "円" + +#: ../../godmode/reporting/graph_builder.main.php:230 +msgid "Equalize maximum thresholds" +msgstr "最大閾値を合わせる" + +#: ../../godmode/reporting/graph_builder.main.php:258 +msgid "Add summatory series" +msgstr "合計の表示" + +#: ../../godmode/reporting/graph_builder.main.php:268 +msgid "Add average series" +msgstr "平均の表示" + +#: ../../godmode/reporting/graph_builder.main.php:279 +msgid "Modules and series" +msgstr "モジュール値と統計値" + +#: ../../godmode/um_client/index.php:96 +#, php-format +msgid "" +"You cannot use update manager %s. You are exceding monitoring limits by %s elements. " +"Please update your license or disable enterprise section by moving enterprise " +"directory to another location and try again." +msgstr "" +"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライセンスを" +"更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の機能を無効にし" +"て、再試行してください。" + +#: ../../godmode/um_client/index.php:107 +#, php-format +msgid "" +"You cannot use update manager %s. This license has expired %d days ago. Please update " +"your license or disable enterprise section by moving enterprise directory to another " +"location and try again." +msgstr "" +"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れになり" +"ました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動して " +"Enterprise 版の機能を無効にして、再試行してください。" + +#: ../../godmode/um_client/index.php:120 +#, php-format +msgid "" +"You cannot use update manager %s. This license is a trial license to test all %s " +"features. Please update your license to unlock all %s features." +msgstr "" +"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能をテス" +"トするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能のロックを解除" +"してください。" + +#: ../../godmode/um_client/index.php:216 +#, php-format +msgid "Master server version %s does not match console version %s." +msgstr "マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。" + +#: ../../godmode/um_client/index.php:229 +#, php-format +msgid "" +"'%s' recommended value is %s or greater. Please, change it on your PHP configuration " +"file (php.ini) or contact with administrator" +msgstr "" +"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連絡して" +"ください 。" + +#: ../../godmode/um_client/index.php:318 +msgid "Update online requires registration." +msgstr "オンラインアップデートは登録が必要です。" + +#: ../../godmode/um_client/index.php:323 +msgid "" +"Applying offline patches may make your console unusable, we recommend to completely " +"backup your files before applying any patch." +msgstr "" +"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。パッチを適" +"用する前に、ファイルを完全にバックアップすることをお勧めします。" + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "Edit event responses" +msgstr "イベント応答の編集" + +#: ../../godmode/events/event_responses.editor.php:123 +msgid "For Command type Modal Window mode is enforced" +msgstr "種類がコマンドの場合は、専用ウインドウになります。" + +#: ../../godmode/events/event_responses.editor.php:125 +msgid "Modal window" +msgstr "専用ウインドウ" + +#: ../../godmode/events/event_responses.editor.php:126 +msgid "New window" +msgstr "新しいウィンドウ" + +#: ../../godmode/events/event_responses.editor.php:175 +#: ../../include/class/AgentWizard.class.php:549 +#: ../../include/functions_snmp_browser.php:766 +msgid "Local console" +msgstr "ローカルコンソール" + +#: ../../godmode/events/event_responses.editor.php:192 +#: ../../include/class/AgentWizard.class.php:696 +msgid "Server to execute command" +msgstr "コマンドを実行するサーバ" + +#: ../../godmode/events/event_responses.editor.php:198 +msgid "Command timeout (s)" +msgstr "コマンドタイムアウト: (s)" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "Display command" +msgstr "表示コマンド" + +#: ../../godmode/events/event_responses.editor.php:204 +msgid "" +"If enabled the command will be displayed to any user that can execute this event " +"response" +msgstr "" +"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されます" + +#: ../../godmode/events/event_edit_filter.php:254 +msgid "Update Filter" +msgstr "フィルタ更新" + +#: ../../godmode/events/event_edit_filter.php:256 +msgid "Create Filter" +msgstr "フィルタ作成" + +#: ../../godmode/events/event_edit_filter.php:266 +#: ../../include/ajax/custom_fields.php:571 ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:763 +msgid "Filter name" +msgstr "フィルタ名" + +#: ../../godmode/events/event_edit_filter.php:269 +msgid "Save in group" +msgstr "保存グループ" + +#: ../../godmode/events/event_edit_filter.php:269 +msgid "This group will be use to restrict the visibility of this filter with ACLs" +msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます" + +#: ../../godmode/events/event_edit_filter.php:419 +msgid "Choose between the users who have validated an event. " +msgstr "イベントを承諾したユーザを選択します。 " + +#: ../../godmode/events/event_edit_filter.php:441 ../../operation/events/events.php:1629 +msgid "All events" +msgstr "全イベント一覧表示" + +#: ../../godmode/events/event_edit_filter.php:442 ../../operation/events/events.php:1630 +#: ../../operation/events/events.php:2233 +msgid "Group events" +msgstr "グルーピング・回数表示" + +#: ../../godmode/events/event_edit_filter.php:607 ../../operation/events/events.php:1842 +msgid "Filter alert events" +msgstr "アラートイベントフィルター" + +#: ../../godmode/events/event_edit_filter.php:608 ../../operation/events/events.php:1843 +msgid "Only alert events" +msgstr "アラートイベントのみ" + +#: ../../godmode/events/event_edit_filter.php:635 ../../operation/events/events.php:1731 +msgid "Extra ID" +msgstr "拡張 ID" + +#: ../../godmode/events/event_edit_filter.php:641 +msgid "Custom data filter type" +msgstr "カスタムデータフィルタタイプ" + +#: ../../godmode/events/event_edit_filter.php:644 +msgid "Filter custom data by name field" +msgstr "名前フィールドでカスタムデータをフィルタ" + +#: ../../godmode/events/event_edit_filter.php:645 +msgid "Filter custom data by value field" +msgstr "値フィールドでカスタムデータをフィルタ" + +#: ../../godmode/events/event_edit_filter.php:655 +#: ../../godmode/events/custom_events.php:119 +#: ../../include/functions_reporting_html.php:1069 +#: ../../include/functions_reporting_html.php:1330 +#: ../../include/functions_reporting_html.php:2546 ../../include/ajax/events.php:1757 +#: ../../include/functions_events.php:221 ../../include/functions_events.php:323 +msgid "Custom data" +msgstr "カスタムデータ" + +#: ../../godmode/events/event_edit_filter.php:659 +msgid "Id souce event" +msgstr "ソースイベントID" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "応答がありません" + +#: ../../godmode/events/event_responses.list.php:92 +msgid "Create response" +msgstr "応答の作成" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "前のイベントからフィールドをロード" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "イベントフィールドが読み込まれます。続けますか?" + +#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:238 +msgid "Event Id" +msgstr "イベント ID" + +#: ../../godmode/events/custom_events.php:95 ../../mobile/operation/events.php:237 +#: ../../include/functions_events.php:241 +msgid "Event Name" +msgstr "イベント名" + +#: ../../godmode/events/custom_events.php:97 +#: ../../include/class/SatelliteAgent.class.php:127 +msgid "Agent Name" +msgstr "エージェント名" + +#: ../../godmode/events/custom_events.php:98 ../../include/functions_events.php:320 +msgid "Agent IP" +msgstr "エージェント IP" + +#: ../../godmode/events/custom_events.php:103 ../../include/functions_events.php:265 +msgid "Event Type" +msgstr "イベントタイプ" + +#: ../../godmode/events/custom_events.php:104 +#: ../../include/class/ModuleTemplates.class.php:1207 +#: ../../include/class/AgentWizard.class.php:1195 +#: ../../include/class/AgentWizard.class.php:4047 ../../include/functions_events.php:268 +msgid "Module Name" +msgstr "モジュール名" + +#: ../../godmode/events/custom_events.php:110 ../../include/functions_events.php:286 +msgid "Extra Id" +msgstr "追加 ID" + +#: ../../godmode/events/custom_events.php:114 ../../include/functions_events.php:298 +msgid "Server Name" +msgstr "サーバ名" + +#: ../../godmode/events/custom_events.php:117 ../../include/functions_events.php:316 +msgid "Severity mini" +msgstr "重要度(縮小表示)" + +#: ../../godmode/events/custom_events.php:118 ../../include/functions_events.php:307 +#: ../../include/functions_events.php:4769 +msgid "Module custom ID" +msgstr "モジュールカスタム ID" + +#: ../../godmode/events/custom_events.php:171 +msgid "Move up selected fields" +msgstr "選択したフィールドを上へ" + +#: ../../godmode/events/custom_events.php:179 +msgid "Move down selected fields" +msgstr "選択したフィールドを下へ" + +#: ../../godmode/events/event_responses.php:51 +msgid "Response added succesfully" +msgstr "応答を追加しました" + +#: ../../godmode/events/event_responses.php:53 +msgid "Response cannot be added" +msgstr "応答を追加できません" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response updated succesfully" +msgstr "応答を更新しました" + +#: ../../godmode/events/event_responses.php:79 +msgid "Response cannot be updated" +msgstr "応答を更新できません" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response deleted succesfully" +msgstr "応答を削除しました" + +#: ../../godmode/events/event_responses.php:91 +msgid "Response cannot be deleted" +msgstr "応答を削除できません" + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "ネットスキャン" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "カスタムネットスキャン" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "ネットスキャンスクリプト管理" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "CSV ファイルの mime タイプが不正です: %s" + +#: ../../godmode/wizards/HostDevices.class.php:348 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "CSV ファイルから読み込んだ内容が不正です: %s" + +#: ../../godmode/wizards/HostDevices.class.php:391 +msgid "" +"This network scan task has been already defined. Please edit it or create a new one." +msgstr "" +"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作成して" +"ください。" + +#: ../../godmode/wizards/HostDevices.class.php:433 +msgid "You must provide a valid network." +msgstr "正しいネットワークを指定する必要があります。" + +#: ../../godmode/wizards/HostDevices.class.php:483 +#: ../../godmode/wizards/HostDevices.class.php:595 +#: ../../include/class/CustomNetScan.class.php:222 +msgid "Failed to find network scan task." +msgstr "ネットワークスキャンタスクを見つけられませんでした。" + +#: ../../godmode/wizards/HostDevices.class.php:700 +#, php-format +msgid "\"%s\" features" +msgstr "\"%s\" 機能" + +#: ../../godmode/wizards/HostDevices.class.php:728 +#: ../../include/class/CustomNetScan.class.php:403 +msgid "Internal error, please re-run this wizard." +msgstr "内部エラー。このウィザードを再実行してください。" + +#: ../../godmode/wizards/HostDevices.class.php:813 +#: ../../include/class/CustomNetScan.class.php:545 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "自動検出タスクの最小間隔は、5分をお勧めします。" + +#: ../../godmode/wizards/HostDevices.class.php:868 +msgid "Use CSV file definition" +msgstr "CSV ファイルの定義を利用" + +#: ../../godmode/wizards/HostDevices.class.php:869 +msgid "Define targets using csv o network definition." +msgstr "CSV またはネットワーク定義を利用して対象を定義" + +#: ../../godmode/wizards/HostDevices.class.php:887 +msgid "Networks (csv)" +msgstr "ネットワーク (CSV)" + +#: ../../godmode/wizards/HostDevices.class.php:888 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK format. For " +"instance: 192.168.1.1/32" +msgstr "" +"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含まれている" +"必要があります。例: 192.168.1.1/32" + +#: ../../godmode/wizards/HostDevices.class.php:900 +msgid "Networks (current)" +msgstr "ネットワーク (現在)" + +#: ../../godmode/wizards/HostDevices.class.php:901 +msgid "Please upload a new file to overwrite this content." +msgstr "この内容を上書きするために新たなファイルをアップロードしてください。" + +#: ../../godmode/wizards/HostDevices.class.php:917 +msgid "" +"You can specify networks or fully qualified domain names of a specific host, " +"separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname.artica.es" +msgstr "" +"特定のホストのネットワーク名または FQDN 名をカンマで区切って指定できます。例: " +"192.168.50.0/24,192.168.60.0/24, hostname.artica.es" + +#: ../../godmode/wizards/HostDevices.class.php:1047 +msgid "Filter by opened ports" +msgstr "開いているポートでフィルタ" + +#: ../../godmode/wizards/HostDevices.class.php:1049 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) is open." +msgstr "" +"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャンされま" +"す。" + +#: ../../godmode/wizards/HostDevices.class.php:1062 +msgid "Auto discover known hardware" +msgstr "既知のハードウェアの自動検出" + +#: ../../godmode/wizards/HostDevices.class.php:1064 +msgid "" +"Targets will be monitorized based on its Private Enterprise Number. Requires " +"SNMP." +msgstr "" +"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP が必要" +"です。" + +#: ../../godmode/wizards/HostDevices.class.php:1079 +msgid "Module Host Alive will be added to discovered agents by default." +msgstr "" +"モジュール Host Alive が検出されたエージェントにデフォルトで追加されます。" + +#: ../../godmode/wizards/HostDevices.class.php:1127 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, 'review " +"results' is mandatory." +msgstr "" +"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセンスは %d " +"までです。'結果の確認' は必須です。" + +#: ../../godmode/wizards/HostDevices.class.php:1135 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:910 +msgid "Review results" +msgstr "結果確認" + +#: ../../godmode/wizards/HostDevices.class.php:1137 +msgid "Targets must be validated by user before create agents." +msgstr "エージェントを作成する前に、ユーザが対象を検証する必要があります。" + +#: ../../godmode/wizards/HostDevices.class.php:1163 +msgid "Apply autoconfiguration rules" +msgstr "自動設定ルールの適用" + +#: ../../godmode/wizards/HostDevices.class.php:1165 +msgid "" +"System is able to auto configure detected host & devices by applying your defined " +"configuration rules." +msgstr "" +"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイスを自動" +"設定できます。" + +#: ../../godmode/wizards/HostDevices.class.php:1181 +msgid "SNMP enabled" +msgstr "SNMP 有効化" + +#: ../../godmode/wizards/HostDevices.class.php:1223 +msgid "SNMP communities to try with" +msgstr "処理実行時の SNMP コミュニティ" + +#: ../../godmode/wizards/HostDevices.class.php:1225 +msgid "" +"You can specify several values, separated by commas, for example: public,mysecret,1234" +msgstr "カンマ区切りで複数の値を指定できます。例: public,mysecret,1234" + +#: ../../godmode/wizards/HostDevices.class.php:1353 +msgid "OS detection" +msgstr "OSの検出" + +#: ../../godmode/wizards/HostDevices.class.php:1365 +msgid "Name resolution" +msgstr "名前解決" + +#: ../../godmode/wizards/HostDevices.class.php:1376 +msgid "Parent detection" +msgstr "親の検出" + +#: ../../godmode/wizards/HostDevices.class.php:1387 +msgid "Parent recursion" +msgstr "親の再帰検出" + +#: ../../godmode/wizards/HostDevices.class.php:1398 +msgid "VLAN enabled" +msgstr "VLAN 有効" + +#: ../../godmode/wizards/HostDevices.class.php:1409 +msgid "WMI enabled" +msgstr "WMI 有効" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:256 +msgid "Task successfully deleted" +msgstr "タスクを削除しました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:363 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:490 +msgid "Task successfully enabled" +msgstr "タスクが有効化されました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:363 +msgid "Task succesfully disabled" +msgstr "タスクを無効化しました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:403 +msgid "Console Task successfully deleted" +msgstr "コンソールタスクを削除しました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:445 +msgid "Task successfully disabled" +msgstr "タスクが無効化されました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:522 +msgid "Discovery Server is disabled" +msgstr "自動検出サーバが無効です" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:605 +msgid "Task type" +msgstr "タスクタイプ" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:667 +msgid "This action will rescan the target networks." +msgstr "対象ネットワークを再スキャンします。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:684 +msgid "This task has not been completely defined, please edit it" +msgstr "このタスクは定義が完了していません。編集してください。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:734 +msgid "Discovery Cloud Azure Compute" +msgstr "Cloud Azure Compute の自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:738 +msgid "Cloud.Azure.Compute" +msgstr "Cloud.Azure.Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:747 +msgid "Discovery Cloud AWS EC2" +msgstr "Cloud AWS EC2 の自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:751 +msgid "Cloud.AWS.EC2" +msgstr "Cloud.AWS.EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:760 +msgid "Discovery Cloud RDS" +msgstr "Cloud RDS の自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:764 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "Discovery.Cloud.Aws.RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:773 +msgid "Discovery Cloud S3" +msgstr "クラウド検出 S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:777 +msgid "Discovery.Cloud.Aws.S3" +msgstr "クラウド検出 AWS.S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:786 +msgid "Discovery Applications MySQL" +msgstr "MySQL アプリケーションの自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:790 +msgid "Discovery.App.MySQL" +msgstr "Discovery.App.MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +msgid "Discovery Applications Oracle" +msgstr "Oracle アプリケーションの自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:803 +msgid "Discovery.App.Oracle" +msgstr "Discovery.App.Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:812 +msgid "Discovery Applications DB2" +msgstr "アプリケーション検出 DB2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:816 +msgid "Discovery.App.DB2" +msgstr "検出.App.DB2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:827 +msgid "Discovery.Agent.Deployment" +msgstr "Discovery.Agent.Deployment" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 +msgid "Discovery Applications Microsoft SQL Server" +msgstr "アプリケーション検出 Microsoft SQL Server" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:837 +msgid "Discovery.App.Microsoft SQL Server" +msgstr "検出.App.Microsoft SQL Server" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:848 +msgid "Discovery NetScan" +msgstr "NetScan 自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:852 +msgid "Discovery.NetScan" +msgstr "Discovery.NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:898 +msgid "Not executed yet" +msgstr "未実行" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:922 +msgid "View summary" +msgstr "概要表示" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:943 +msgid "View map" +msgstr "マップ表示" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:967 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:993 +msgid "Edit task" +msgstr "タスク編集" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:977 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1003 +msgid "Delete task" +msgstr "タスク削除" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1016 +msgid "enable task" +msgstr "タスク有効化" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 +msgid "has no discovery tasks assigned" +msgstr "に自動検出タスクが割り当てられていません。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1052 +msgid "Server Tasks" +msgstr "サーバタスク" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1199 +msgid "Overall Progress" +msgstr "全体の進捗" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1218 +msgid "Scanning network" +msgstr "ネットワークスキャン中" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1222 +msgid "Checking" +msgstr "確認中" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1226 +msgid "Finding AFT connectivity" +msgstr "AFT 接続検出中" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1230 +msgid "Finding traceroute connectivity" +msgstr "traceroute 到達性検出中" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1234 +msgid "Finding gateway connectivity" +msgstr "ゲートウェイ到達性検出中" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1238 +msgid "Searching for devices..." +msgstr "デバイスを検索中..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1242 +msgid "Analyzing application..." +msgstr "アプリケーションの分析中..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1246 +msgid "Executing custom queries..." +msgstr "カスタムクエリの実行中..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1250 +msgid "Testing modules..." +msgstr "モジュールのテスト中..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1254 +msgid "Processing results..." +msgstr "結果の処理中..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1258 +msgid "Processing..." +msgstr "処理中..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1291 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1855 +#: ../../operation/agentes/log_sources_status.php:57 +msgid "Review" +msgstr "確認" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1371 +msgid "Host&devices total" +msgstr "全ホスト&デバイス" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1376 +msgid "Agents monitored" +msgstr "監視対象エージェント" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1381 +msgid "Agents pending" +msgstr "保留中エージェント" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1388 +msgid "Hosts discovered" +msgstr "ホストが見つかりました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1404 +msgid "Responding SNMP" +msgstr "SNMP 応答" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1409 +msgid "Responding WMI" +msgstr "WMI 応答" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 +msgid "Task completed." +msgstr "タスク完了" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1456 +msgid "This task has never executed" +msgstr "このタスクは一度も実行されていません" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1468 +msgid "Task queued, please wait." +msgstr "タスクがキューに入っています。お待ちください。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1512 +msgid "" +"Please ensure instances or regions are being monitorized and 'scan and general " +"monitoring' is enabled." +msgstr "" +"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有効に" +"なっていることを確認してください。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1530 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1672 +msgid "Invalid task" +msgstr "不正なタスク" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1629 +msgid "Please select devices to be monitored" +msgstr "監視するデバイスを選択してください" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1632 +msgid "select all" +msgstr "全て選択" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1635 +msgid "deselect all" +msgstr "全て未選択" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1638 +msgid "expand all" +msgstr "すべて展開" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1641 +msgid "collapse all" +msgstr "すべて折りたたむ" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1655 +msgid "No devices found in temporary resources, please re-launch." +msgstr "一時リソースにデバイスが見つかりません。再実行してください。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1722 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "選択内容がライセンスで利用可能なエージェント数を超えています。制限: %d" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1746 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1765 +msgid "Removed" +msgstr "削除済" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 +msgid "No changes. Re-Scheduled" +msgstr "変更なし。再スケジュール" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1804 +msgid "Scheduled for creation" +msgstr "作成予定" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1831 +msgid "Cancelled" +msgstr "取消済" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1832 +msgid "Server has been restarted while executing this task, please retry." +msgstr "このタスクの実行中にサーバが再起動されました。再試行してください。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1839 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +msgid "Done" +msgstr "完了" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1860 +msgid "Not started" +msgstr "開始していません" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 +msgid "Searching" +msgstr "検索中" + +#: ../../godmode/servers/servers.build_table.php:118 +msgid "Server has crashed." +msgstr "サーバがクラッシュしました。" + +#: ../../godmode/servers/servers.build_table.php:126 +msgid "Server is stopped." +msgstr "サーバが停止しました。" + +#: ../../godmode/servers/servers.build_table.php:138 +msgid "Exec server enabled" +msgstr "Exec サーバが有効化されています" + +#: ../../godmode/servers/servers.build_table.php:196 +msgid "Manage Discovery tasks" +msgstr "自動検出タスク管理" + +#: ../../godmode/servers/servers.build_table.php:211 +msgid "Reset module status and fired alert counts" +msgstr "モジュールの状態とアラート発報回数のリセット" + +#: ../../godmode/servers/servers.build_table.php:222 +msgid "Claim back SNMP modules" +msgstr "SNMP モジュールに戻す" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "サーバ情報の更新" + +#: ../../godmode/servers/modificar_server.php:40 ../../godmode/servers/plugin.php:346 +#: ../../godmode/servers/plugin.php:845 +msgid "Standard" +msgstr "標準" + +#: ../../godmode/servers/modificar_server.php:77 +msgid "Exec Server" +msgstr "実行サーバ" + +#: ../../godmode/servers/modificar_server.php:85 +msgid "Leave blank to use SSH default port (22)" +msgstr "SSH デフォルトポート(22)を使うには空のままにします" + +#: ../../godmode/servers/modificar_server.php:90 +msgid "Check Exec Server" +msgstr "実行サーバ確認" + +#: ../../godmode/servers/modificar_server.php:106 +msgid "Credential boxes" +msgstr "認証情報ボックス" + +#: ../../godmode/servers/modificar_server.php:129 +msgid "Standard editor" +msgstr "標準エディタ" + +#: ../../godmode/servers/modificar_server.php:133 +#: ../../godmode/servers/modificar_server.php:140 +msgid "Advanced editor" +msgstr "高度なエディタ" + +#: ../../godmode/servers/modificar_server.php:147 +msgid "Remote Configuration" +msgstr "リモート設定" + +#: ../../godmode/servers/modificar_server.php:156 +msgid "Dynamic search" +msgstr "動的検索" + +#: ../../godmode/servers/modificar_server.php:168 +#, php-format +msgid "%s servers" +msgstr "%s サーバ" + +#: ../../godmode/servers/modificar_server.php:177 +#: ../../godmode/servers/modificar_server.php:188 +msgid "Successfully action" +msgstr "アクションに成功しました。" + +#: ../../godmode/servers/modificar_server.php:219 +msgid "Server updated successfully" +msgstr "サーバを更新しました。" + +#: ../../godmode/servers/modificar_server.php:221 +msgid "There was a problem updating the server" +msgstr "サーバの更新に失敗しました。" + +#: ../../godmode/servers/plugin_registration.php:59 ../../godmode/servers/plugin.php:290 +#: ../../godmode/servers/plugin.php:617 +msgid "To manage plugin you must activate centralized management" +msgstr "プラグインを管理するには、中央管理を有効化する必要があります。" + +#: ../../godmode/servers/plugin_registration.php:65 +msgid "PLUGIN REGISTRATION" +msgstr "プラグイン登録" + +#: ../../godmode/servers/plugin_registration.php:76 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature from " +"feature from %s." +msgstr "" +"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理してく" +"ださい。" + +#: ../../godmode/servers/plugin_registration.php:95 +msgid "Plugin Registration" +msgstr "プラグイン登録" + +#: ../../godmode/servers/plugin_registration.php:103 +msgid "You can get more plugins in our" +msgstr "追加プラグインは次から入手できます:" + +#: ../../godmode/servers/plugin_registration.php:105 +msgid "Public Resource Library" +msgstr "公開リソースライブラリ" + +#: ../../godmode/servers/plugin_registration.php:133 +msgid "Failed to create temporary directory" +msgstr "一時ディレクトリの作成に失敗しました" + +#: ../../godmode/servers/plugin_registration.php:152 +msgid "Cannot load INI file" +msgstr "INI ファイルをロードできません。" + +#: ../../godmode/servers/plugin_registration.php:177 +msgid "Plugin exec not found. Aborting!" +msgstr "実行可能なプラグインがありません。中止します。" + +#: ../../godmode/servers/plugin_registration.php:188 +msgid "Plugin already registered. Aborting!" +msgstr "プラグインは既に登録されています。中止します。" + +#: ../../godmode/servers/plugin_registration.php:355 +msgid "Plug-in Remote Registered unsuccessfull" +msgstr "プラグインのリモート登録に失敗しました" + +#: ../../godmode/servers/plugin_registration.php:358 +msgid "Please check the syntax of file \"plugin_definition.ini\"" +msgstr "\"plugin_definition.ini\" の書式を確認してください。" + +#: ../../godmode/servers/plugin_registration.php:498 +msgid "Module plugin registered" +msgstr "モジュールプラグインを登録しました。" + +#: ../../godmode/servers/plugin_registration.php:503 +msgid "Registered successfully" +msgstr "登録しました。" + +#: ../../godmode/servers/plugin_registration.php:516 +msgid "Unable to uncompress uploaded file" +msgstr "アップロードされたファイルを展開できません" + +#: ../../godmode/servers/plugin_registration.php:534 +#, php-format +msgid "Cannot move uploaded file to %s." +msgstr "アップロードされたファイルを %s へ移動できません。" + +#: ../../godmode/servers/plugin.php:73 +msgid "Network Components" +msgstr "ネットワークコンポーネント" + +#: ../../godmode/servers/plugin.php:303 +msgid "Plugin update" +msgstr "プラグインの更新" + +#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 +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:345 +msgid "Plugin type" +msgstr "プラグインタイプ" + +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:352 +msgid "Max. timeout" +msgstr "最大タイムアウト" + +#: ../../godmode/servers/plugin.php:352 +msgid "" +"This value only will be applied if is minor than the server general configuration " +"plugin timeout" +msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。" + +#: ../../godmode/servers/plugin.php:352 +msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "タイムアウトを 0 に設定した場合、plugin_timeout の値が利用されます。" + +#: ../../godmode/servers/plugin.php:401 +msgid "Plugin command" +msgstr "プラグインコマンド" + +#: ../../godmode/servers/plugin.php:401 +msgid "Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" +"インタプリタとプラグインのパスを指定します。サーバでそれを実行する権限が必要です。" + +#: ../../godmode/servers/plugin.php:413 +msgid "Plug-in parameters" +msgstr "プラグインパラメータ" + +#: ../../godmode/servers/plugin.php:505 +#: ../../include/class/ManageNetScanScripts.class.php:667 +msgid "Hide value" +msgstr "値を隠す" + +#: ../../godmode/servers/plugin.php:506 +#: ../../include/class/ManageNetScanScripts.class.php:669 +msgid "This field will show up as dots like a password" +msgstr "このフィールドは、パスワードのようにドットで表示されます。" + +#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 +msgid "Parameters macros" +msgstr "パラメータマクロ" + +#: ../../godmode/servers/plugin.php:623 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "%s に登録されているプラグイン" + +#: ../../godmode/servers/plugin.php:645 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "Windows に対応したプラグインを作成する必要があります" + +#: ../../godmode/servers/plugin.php:711 +msgid "Problem updating plugin" +msgstr "プラグインの更新に失敗しました。" + +#: ../../godmode/servers/plugin.php:713 +msgid "Plugin updated successfully" +msgstr "プラグインを更新しました。" + +#: ../../godmode/servers/plugin.php:771 +msgid "Problem creating plugin" +msgstr "プラグインの作成に失敗しました。" + +#: ../../godmode/servers/plugin.php:773 +msgid "Plugin created successfully" +msgstr "プラグインを作成しました。" + +#: ../../godmode/servers/plugin.php:785 +msgid "Problem deleting plugin" +msgstr "プラグインの削除に失敗しました。" + +#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 +msgid "Plugin deleted successfully" +msgstr "プラグインを削除しました。" + +#: ../../godmode/servers/plugin.php:884 +msgid "All the modules that are using this plugin will be deleted" +msgstr "このプラグインを利用しているすべてのモジュールが削除されます" + +#: ../../godmode/servers/plugin.php:901 +msgid "There are no plugins in the system" +msgstr "プラグインがありません。" + +#: ../../godmode/servers/plugin.php:915 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "\"%s\" にて作成されたモジュールおよびコンポーネントの一覧 " + +#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 +msgid "Some modules or components are using the plugin" +msgstr "いくつかのモジュールまたはコンポーネントがプラグインを利用しています" + +#: ../../godmode/servers/plugin.php:1022 +msgid "" +"The modules or components should be updated manually or using the bulk operations for " +"plugins after this change" +msgstr "" +"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作を使う必" +"要があります。" + +#: ../../godmode/servers/plugin.php:1024 +msgid "Are you sure you want to perform this action?" +msgstr "この処理を実行してもよろしいですか。" + +#: ../../godmode/servers/plugin.php:1038 +msgid "Are you sure you want to unlock this item?" +msgstr "このアイテムをロック解除してもよろしいですか。" + +#: ../../godmode/servers/plugin.php:1058 +msgid "" +"The plugin command cannot be updated because some modules or components are using the " +"plugin." +msgstr "" +"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインコマ" +"ンドを更新できません。" + +#: ../../godmode/servers/plugin.php:1064 +msgid "" +"The plugin macros cannot be updated because some modules or components are using the " +"plugin" +msgstr "" +"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインマク" +"ロは更新できません。" + +#: ../../godmode/servers/discovery.php:188 +msgid "You must create a task first" +msgstr "タスクを最初に作成する必要があります。" + +#: ../../godmode/tag/tag.php:117 +msgid "Number of modules" +msgstr "モジュール数" + +#: ../../godmode/tag/tag.php:119 +msgid "Number of policy modules" +msgstr "ポリシーモジュール数" + +#: ../../godmode/tag/tag.php:140 ../../godmode/tag/edit_tag.php:57 +#: ../../godmode/tag/edit_tag.php:75 +msgid "List tags" +msgstr "タグ一覧" + +#: ../../godmode/tag/tag.php:152 ../../godmode/tag/edit_tag.php:85 +msgid "Tags configuration" +msgstr "タグ設定" + +#: ../../godmode/tag/tag.php:178 +msgid "Successfully deleted tag" +msgstr "タグを削除しました" + +#: ../../godmode/tag/tag.php:179 +msgid "Error deleting tag" +msgstr "タグを削除できません" + +#: ../../godmode/tag/tag.php:195 +#, php-format +msgid "" +"This node is configured with centralized mode. All tags information is read only. Go " +"to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。すべてのタグ情報は読み取り専用です。管理" +"するには %s に移動します。" + +#: ../../godmode/tag/tag.php:277 +msgid "Tag name" +msgstr "タグ名" + +#: ../../godmode/tag/tag.php:279 +msgid "Detail information" +msgstr "詳細情報" + +#: ../../godmode/tag/tag.php:280 +msgid "Number of modules affected" +msgstr "影響するモジュール数" + +#: ../../godmode/tag/tag.php:282 ../../godmode/tag/edit_tag.php:251 +msgid "Phone" +msgstr "電話番号" + +#: ../../godmode/tag/tag.php:311 +msgid "Tag details" +msgstr "タグ詳細" + +#: ../../godmode/tag/tag.php:344 +#, php-format +msgid "Emails for the tag: %s" +msgstr "タグ %s のメールアドレス" + +#: ../../godmode/tag/tag.php:367 +#, php-format +msgid "Phones for the tag: %s" +msgstr "タグ %s の電話番号" + +#: ../../godmode/tag/tag.php:413 +msgid "No tags defined" +msgstr "タグが定義されていません" + +#: ../../godmode/tag/tag.php:428 +msgid "Create tag" +msgstr "タグの作成" + +#: ../../godmode/tag/edit_tag.php:128 +msgid "Successfully updated tag" +msgstr "タグを更新しました" + +#: ../../godmode/tag/edit_tag.php:129 +msgid "Error updating tag" +msgstr "タグ更新に失敗" + +#: ../../godmode/tag/edit_tag.php:169 +msgid "Successfully created tag" +msgstr "タグを作成しました" + +#: ../../godmode/tag/edit_tag.php:170 +msgid "Error creating tag" +msgstr "タグを作成できません" + +#: ../../godmode/tag/edit_tag.php:201 +msgid "Update Tag" +msgstr "タグの更新" + +#: ../../godmode/tag/edit_tag.php:205 +msgid "Create Tag" +msgstr "タグの作成" + +#: ../../godmode/tag/edit_tag.php:229 +msgid "Hyperlink to help information that has to exist previously." +msgstr "情報がある場所へのハイパーリンク" + +#: ../../godmode/tag/edit_tag.php:241 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "タグに関連付けられるアラートで利用するためのメール送信先" + +#: ../../godmode/tag/edit_tag.php:253 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "タグに関連付けられるアラートで利用するための電話番号" + +#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 +#: ../../godmode/category/edit_category.php:47 +#: ../../godmode/category/edit_category.php:61 +msgid "List categories" +msgstr "カテゴリ一覧" + +#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 +#: ../../godmode/category/edit_category.php:73 +#: ../../godmode/category/edit_category.php:75 +msgid "Categories configuration" +msgstr "カテゴリ設定" + +#: ../../godmode/category/category.php:108 +#, php-format +msgid "" +"This node is configured with centralized mode. All categories information is read " +"only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専用です。" +"管理するには %s に移動します。" + +#: ../../godmode/category/category.php:123 +msgid "Error deleting category" +msgstr "カテゴリの削除に失敗しました" + +#: ../../godmode/category/category.php:129 +msgid "Successfully deleted category" +msgstr "カテゴリを削除しました" + +#: ../../godmode/category/category.php:168 +msgid "Category name" +msgstr "カテゴリ名" + +#: ../../godmode/category/category.php:226 +msgid "No categories found" +msgstr "カテゴリがありません" + +#: ../../godmode/category/category.php:239 ../../godmode/category/edit_category.php:171 +msgid "Create category" +msgstr "カテゴリの作成" + +#: ../../godmode/category/edit_category.php:73 +msgid "Editor" +msgstr "編集" + +#: ../../godmode/category/edit_category.php:95 +msgid "Error updating category" +msgstr "カテゴリの更新に失敗しました" + +#: ../../godmode/category/edit_category.php:101 +msgid "Successfully updated category" +msgstr "カテゴリを更新しました" + +#: ../../godmode/category/edit_category.php:123 +msgid "Error creating category" +msgstr "カテゴリの作成に失敗しました" + +#: ../../godmode/category/edit_category.php:131 +msgid "Successfully created category" +msgstr "カテゴリを作成しました" + +#: ../../godmode/category/edit_category.php:163 +msgid "Update category" +msgstr "カテゴリ更新" + +#: ../../godmode/module_library/module_library_view.php:68 +msgid "Main view" +msgstr "メイン表示" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "View all categories" +msgstr "全カテゴリ表示" + +#: ../../godmode/module_library/module_library_view.php:158 +msgid "More details" +msgstr "詳細" + +#: ../../godmode/module_library/module_library_view.php:160 +msgid "View in Module Library" +msgstr "モジュールライブラリの参照" + +#: ../../godmode/module_library/module_library_view.php:161 +msgid "No module found" +msgstr "モジュールが見つかりません" + +#: ../../godmode/module_library/module_library_view.php:164 +msgid "Error loading Module Library" +msgstr "モジュールライブラリのロードエラー" + +#: ../../godmode/module_library/module_library_view.php:165 +msgid "Error loading category" +msgstr "カテゴリ読み込みエラー" + +#: ../../godmode/module_library/module_library_view.php:166 +msgid "Error loading categories" +msgstr "カテゴリ読み込みエラー" + +#: ../../godmode/module_library/module_library_view.php:167 +msgid "There is no such category" +msgstr "そのようなカテゴリがありません" + +#: ../../godmode/module_library/module_library_view.php:168 +msgid "Error loading results" +msgstr "結果の読み込みエラー" + +#: ../../mobile/include/functions_web.php:83 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - ビルド %s" + +#: ../../mobile/include/system.class.php:156 +msgid "" +"Access to this page is restricted to authorized users only, please contact your " +"system administrator if you should need help." +msgstr "" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合" +"は、システム管理者に連絡してください。" + +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on the %s " +"System Database." +msgstr "このページへのアクセスは、%s システムデータベースに記録されます。" + +#: ../../mobile/include/ui.class.php:120 +#, php-format +msgid "%s mobile" +msgstr "%s モバイル" + +#: ../../mobile/include/ui.class.php:217 +#, php-format +msgid "%s : Mobile" +msgstr "%s : モバイル" + +#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161 +msgid "Home" +msgstr "ホーム" + +#: ../../mobile/include/ui.class.php:327 +#, php-format +msgid "%s %s - Build %s" +msgstr "%s %s - ビルド %s" + +#: ../../mobile/include/ui.class.php:773 +msgid "Not found header." +msgstr "ヘッダーがありません" + +#: ../../mobile/include/ui.class.php:775 +msgid "Not found content." +msgstr "コンテンツがありません" + +#: ../../mobile/include/ui.class.php:777 +msgid "Not found footer." +msgstr "フッターがありません" + +#: ../../mobile/include/ui.class.php:779 +msgid "Incorrect form." +msgstr "フォームが不正です" + +#: ../../mobile/include/ui.class.php:781 +msgid "Incorrect grid." +msgstr "グリッドが不正です" + +#: ../../mobile/include/ui.class.php:783 +msgid "Incorrect collapsible." +msgstr "折り返しが不正です" + +#: ../../mobile/include/user.class.php:171 +msgid "User cannot log in into this console, please contact administrator" +msgstr "ユーザはこのコンソールにログインできません。管理者に連絡してください。" + +#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302 +#: ../../mobile/include/user.class.php:309 +msgid "Double authentication failed" +msgstr "二段階認証に失敗しました" + +#: ../../mobile/include/user.class.php:288 +msgid "Secret code not found" +msgstr "シークレットコードがありません" + +#: ../../mobile/include/user.class.php:288 +msgid "Please contact the administrator to reset your double authentication" +msgstr "二段階認証をリセットするには管理者へ連絡してください。" + +#: ../../mobile/include/user.class.php:310 +msgid "There was an error checking the code" +msgstr "コードの確認でエラーが発生しました" + +#: ../../mobile/include/user.class.php:351 +msgid "Login Failed" +msgstr "ログイン失敗" + +#: ../../mobile/include/user.class.php:355 +msgid "User not found in database or incorrect password." +msgstr "ユーザが存在しないかパスワードが異なります。" + +#: ../../mobile/include/user.class.php:364 +msgid "Login out" +msgstr "ログアウト" + +#: ../../mobile/include/user.class.php:395 +msgid "user" +msgstr "ユーザ" + +#: ../../mobile/include/user.class.php:402 +msgid "password" +msgstr "パスワード" + +#: ../../mobile/include/user.class.php:491 ../../mobile/include/user.class.php:492 +msgid "Authenticator code" +msgstr "認証コード" + +#: ../../mobile/operation/agents.php:218 +#, php-format +msgid "Filter Agents by %s" +msgstr "%s によるエージェントフィルタ" + +#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009 +msgid "Apply Filter" +msgstr "フィルタの適用" + +#: ../../mobile/operation/agents.php:454 +msgid "No agents" +msgstr "エージェントがありません" + +#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885 +#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450 +msgid "(Default)" +msgstr "(デフォルト)" + +#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891 +#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483 +#, php-format +msgid "Group: %s" +msgstr "グループ: %s" + +#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913 +#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503 +#, php-format +msgid "Status: %s" +msgstr "状態: %s" + +#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920 +#: ../../mobile/operation/alerts.php:406 +#, php-format +msgid "Free Search: %s" +msgstr "検索: %s" + +#: ../../mobile/operation/modules.php:250 +#, php-format +msgid "Filter Modules by %s" +msgstr "%s によるモジュールのフィルタ" + +#: ../../mobile/operation/modules.php:659 +msgid "Interval." +msgstr "間隔" + +#: ../../mobile/operation/modules.php:661 +msgid "Last update." +msgstr "最新の更新" + +#: ../../mobile/operation/modules.php:906 +#, php-format +msgid "Module group: %s" +msgstr "モジュールグループ: %s" + +#: ../../mobile/operation/modules.php:928 +#, php-format +msgid "Tag: %s" +msgstr "タグ: %s" + +#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:184 +#: ../../operation/search_results.php:145 ../../operation/search_main.php:70 +msgid "Visual consoles" +msgstr "ビジュアルコンソール" + +#: ../../mobile/operation/agent.php:162 +msgid "No agent found" +msgstr "エージェントがありません" + +#: ../../mobile/operation/agent.php:238 +msgid "Modules by status" +msgstr "状態ごとのモジュール" + +#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:831 +msgid "Events (24h)" +msgstr "イベント (24時間)" + +#: ../../mobile/operation/agent.php:369 +#, php-format +msgid "Last %s Events" +msgstr "最新の %s イベント" + +#: ../../mobile/operation/alerts.php:208 +#, php-format +msgid "Filter Alerts by %s" +msgstr "%sによる発報アラート" + +#: ../../mobile/operation/alerts.php:346 +msgid "Last Fired" +msgstr "直近の発報" + +#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2434 +msgid "No alerts" +msgstr "アラートなし" + +#: ../../mobile/operation/alerts.php:385 +#, php-format +msgid "Standby: %s" +msgstr "スタンバイ: %s" + +#: ../../mobile/operation/visualmaps.php:242 +msgid "All visual consoles" +msgstr "全てのビジュアルコンソール" + +#: ../../mobile/operation/visualmaps.php:254 +msgid "Favourite visual consoles" +msgstr "お気に入りのビジュアルコンソール" + +#: ../../mobile/operation/visualmaps.php:263 +msgid "No maps defined" +msgstr "定義済マップがありません" + +#: ../../mobile/operation/module_graph.php:359 +#: ../../mobile/operation/module_graph.php:372 +#, php-format +msgid "%s: %s" +msgstr "%s: %s" + +#: ../../mobile/operation/module_graph.php:405 +#, php-format +msgid "Options for %s : %s" +msgstr "%s : %s のオプション" + +#: ../../mobile/operation/module_graph.php:412 +msgid "Show Alerts" +msgstr "アラート表示" + +#: ../../mobile/operation/module_graph.php:420 +msgid "Show Events" +msgstr "イベント表示" + +#: ../../mobile/operation/module_graph.php:428 ../../operation/agentes/stat_win.php:377 +#: ../../operation/agentes/stat_win.php:439 +msgid "Time compare (Separated)" +msgstr "時間比較 (分割)" + +#: ../../mobile/operation/module_graph.php:444 ../../operation/agentes/stat_win.php:317 +msgid "Show unknown graph" +msgstr "不明グラフ表示" + +#: ../../mobile/operation/module_graph.php:449 +msgid "Time range (hours)" +msgstr "時間範囲 (時間)" + +#: ../../mobile/operation/module_graph.php:461 ../../operation/agentes/stat_win.php:289 +#: ../../operation/agentes/stat_win.php:408 +#: ../../operation/agentes/interface_traffic_graph_win.php:181 +#: ../../operation/agentes/graphs.php:207 ../../operation/agentes/exportdata.php:318 +msgid "Begin date" +msgstr "開始日時" + +#: ../../mobile/operation/module_graph.php:468 +msgid "Update graph" +msgstr "グラフ更新" + +#: ../../mobile/operation/module_graph.php:478 +msgid "Error get the graph" +msgstr "グラフ生成エラー" + +#: ../../mobile/operation/events.php:450 ../../include/functions_reporting_html.php:1108 +#: ../../include/functions_reporting_html.php:1359 +#: ../../include/functions_reporting_html.php:2571 +#: ../../include/functions_events.php:2485 ../../include/functions_events.php:4434 +#: ../../operation/events/events.php:689 +msgid "New event" +msgstr "新規イベント" + +#: ../../mobile/operation/events.php:455 ../../include/functions_reporting_html.php:1097 +#: ../../include/functions_reporting_html.php:1364 +#: ../../include/functions_reporting_html.php:2576 +#: ../../include/functions_events.php:2490 ../../include/functions_events.php:4440 +#: ../../operation/events/events.php:702 +msgid "Event validated" +msgstr "承諾済" + +#: ../../mobile/operation/events.php:460 ../../include/functions_reporting_html.php:1102 +#: ../../include/functions_reporting_html.php:1369 +#: ../../include/functions_reporting_html.php:2581 +#: ../../include/functions_events.php:2495 ../../include/functions_events.php:4446 +#: ../../operation/events/events.php:714 +msgid "Event in process" +msgstr "処理中イベント" + +#: ../../mobile/operation/events.php:768 +msgid "ERROR: Event detail" +msgstr "エラー: イベント詳細" + +#: ../../mobile/operation/events.php:769 +msgid "Error connecting to DB." +msgstr "DB 接続エラー。" + +#: ../../mobile/operation/events.php:789 +msgid "Event detail" +msgstr "イベント詳細" + +#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4587 +msgid "Event ID" +msgstr "イベントID" + +#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4689 +msgid "Acknowledged by" +msgstr "承諾者" + +#: ../../mobile/operation/events.php:878 +msgid "Sucessful validate" +msgstr "承諾しました" + +#: ../../mobile/operation/events.php:880 +msgid "Fail validate" +msgstr "承諾に失敗しました" + +#: ../../mobile/operation/events.php:924 +#, php-format +msgid "Filter Events by %s" +msgstr "%s によるイベントのフィルタ" + +#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935 +msgid "Preset Filters" +msgstr "定義済フィルタ" + +#: ../../mobile/operation/events.php:1144 +#: ../../include/functions_reporting_html.php:6091 +#: ../../include/functions_reporting_html.php:6250 +#: ../../include/functions_reporting.php:2138 ../../include/functions_reporting.php:2428 +#: ../../include/functions_events.php:2409 ../../include/functions_events.php:2412 +msgid "No events" +msgstr "イベントがありません。" + +#: ../../mobile/operation/events.php:1455 +#, php-format +msgid "Filter: %s" +msgstr "フィルタ: %s" + +#: ../../mobile/operation/events.php:1467 +#, php-format +msgid "Severity: %s" +msgstr "重要度: %s" + +#: ../../mobile/operation/events.php:1496 +#, php-format +msgid "Type: %s" +msgstr "タイプ: %s" + +#: ../../mobile/operation/events.php:1510 +#, php-format +msgid "Free search: %s" +msgstr "検索: %s" + +#: ../../mobile/operation/events.php:1517 +#, php-format +msgid "Hours: %s" +msgstr "時間: %s" + +#: ../../mobile/operation/tactical.php:216 +msgid "Last activity" +msgstr "最近の操作" + +#: ../../include/functions_visual_map_editor.php:62 +msgid "" +"To use 'label'field, you should write\n" +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be printed " +"at the end." +msgstr "" +"'ラベル' フィールドを利用するには、'(_VALUE_)'を\n" +"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。" + +#: ../../include/functions_visual_map_editor.php:107 +#: ../../include/functions_visual_map_editor.php:133 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 +msgid "Border color" +msgstr "枠の色" + +#: ../../include/functions_visual_map_editor.php:151 +msgid "Border width" +msgstr "枠の幅" + +#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 +msgid "Fill color" +msgstr "塗りつぶしの色" + +#: ../../include/functions_visual_map_editor.php:239 +msgid "Scroll the mouse wheel over the label editor to change the background color" +msgstr "背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします" + +#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 +msgid "Clock animation" +msgstr "時計アニメーション" + +#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 +msgid "Simple analogic" +msgstr "シンプルアナログ" + +#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 +msgid "Simple digital" +msgstr "シンプルデジタル" + +#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 +msgid "Time format" +msgstr "時間書式" + +#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 +msgid "Only time" +msgstr "時間のみ" + +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 +msgid "Time and date" +msgstr "時間および日付" + +#: ../../include/functions_visual_map_editor.php:313 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" +msgstr "タイムゾーン" + +#: ../../include/functions_visual_map_editor.php:329 +msgid "Enable link" +msgstr "リンクを有効にする" + +#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518 +msgid "White" +msgstr "白" + +#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519 +msgid "Black" +msgstr "黒" + +#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520 +msgid "Transparent" +msgstr "透過" + +#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499 +msgid "Grid color" +msgstr "グリッドの色" + +#: ../../include/functions_visual_map_editor.php:498 +msgid "Data image" +msgstr "データ画像" + +#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258 +msgid "Resume data color" +msgstr "データの色を戻す" + +#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269 +msgid "24h" +msgstr "24時間" + +#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271 +msgid "8h" +msgstr "8時間" + +#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272 +msgid "2h" +msgstr "2時間" + +#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273 +msgid "1h" +msgstr "1時間" + +#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 +msgid "Max. Time" +msgstr "最大時間" + +#: ../../include/functions_visual_map_editor.php:640 +msgid "Original Size" +msgstr "オリジナルのサイズ" + +#: ../../include/functions_visual_map_editor.php:648 +msgid "Aspect ratio" +msgstr "縦横比:" + +#: ../../include/functions_visual_map_editor.php:649 +msgid "Proportional Width" +msgstr "プロポーショナル幅" + +#: ../../include/functions_visual_map_editor.php:657 +msgid "Height proportional" +msgstr "高さに比例" + +#: ../../include/functions_visual_map_editor.php:688 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 +msgid "Circular porgress bar" +msgstr "円進捗バー" + +#: ../../include/functions_visual_map_editor.php:689 +#: ../../include/functions_visual_map.php:4242 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 +#: ../../include/rest-api/models/VisualConsole/Item.php:2127 +msgid "Circular progress bar (interior)" +msgstr "円進捗バー(内部)" + +#: ../../include/functions_visual_map_editor.php:739 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 +msgid "Element color" +msgstr "要素の色" + +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 +msgid "Value color" +msgstr "値の色" + +#: ../../include/functions_visual_map_editor.php:801 +msgid "Diameter" +msgstr "直径" + +#: ../../include/functions_visual_map_editor.php:808 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 +msgid "Default color" +msgstr "デフォルト色" + +#: ../../include/functions_visual_map_editor.php:812 +msgid "" +"The color of the element will be the one selected in the first range created in which " +"the value of the module is found (with the initial and final values of the range " +"included)" +msgstr "" +"要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色になります" +"(含まれる範囲の初期値と最終値)。" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "Ranges" +msgstr "範囲" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "From value" +msgstr "開始値" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "To value" +msgstr "終了値" + +#: ../../include/functions_visual_map_editor.php:815 +#: ../../include/rest-api/index.php:363 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 +msgid "Color" +msgstr "色" + +#: ../../include/functions_visual_map_editor.php:820 +msgid "Always show on top" +msgstr "常に上に表示" + +#: ../../include/functions_visual_map_editor.php:821 +msgid "" +"It allows the element to be superimposed to the rest of items of the visual console" +msgstr "要素をビジュアルコンソールの残りの項目に重ね合わせることができます。" + +#: ../../include/functions_visual_map_editor.php:824 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 +msgid "Hide last value on boolean modules" +msgstr "boolean モジュールでは最新の値を隠す" + +#: ../../include/functions_visual_map_editor.php:830 +msgid "Show last value" +msgstr "最新の値を表示" + +#: ../../include/functions_visual_map_editor.php:934 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "オリジナルの画像サイズを利用するためには、幅と高さを 0 に設定してください。" + +#: ../../include/functions_visual_map_editor.php:974 +#: ../../include/rest-api/models/VisualConsole/Item.php:2433 +msgid "Linked visual console" +msgstr "リンクされたビジュアルコンソール" + +#: ../../include/functions_visual_map_editor.php:1081 +#: ../../include/rest-api/models/VisualConsole/Item.php:2484 +msgid "By status weight" +msgstr "状態ウエイトごと" + +#: ../../include/functions_visual_map_editor.php:1082 +#: ../../include/rest-api/models/VisualConsole/Item.php:2485 +msgid "By critical elements" +msgstr "障害要素ごと" + +#: ../../include/functions_visual_map_editor.php:1097 +#: ../../include/rest-api/models/VisualConsole/Item.php:2492 +msgid "Type of the status calculation of the linked visual console" +msgstr "リンクされたビジュアルコンソールの状態計算のタイプ" + +#: ../../include/functions_visual_map_editor.php:1102 +#: ../../include/rest-api/models/VisualConsole/Item.php:2483 +msgid "By default" +msgstr "デフォルト" + +#: ../../include/functions_visual_map_editor.php:1122 +#: ../../include/rest-api/models/VisualConsole/Item.php:2508 +msgid "Linked visual console weight" +msgstr "リンクされたビジュアルコンソールのウエイト" + +#: ../../include/functions_visual_map_editor.php:1189 +msgid "Lines haven't advanced options" +msgstr "拡張オプションがありません" + +#: ../../include/functions_visual_map_editor.php:1206 +#: ../../include/rest-api/models/VisualConsole/Item.php:2188 +msgid "Restrict access to group" +msgstr "グループへの制限アクセス" + +#: ../../include/functions_visual_map_editor.php:1217 +msgid "" +"If selected, restrict visualization of this item in the visual console to users who " +"have access to selected group. This is also used on calculating child visual consoles." +msgstr "" +"選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアクセスでき" +"るユーザーに制限します。 これは、子ビジュアルコンソールにも使用されます。" + +#: ../../include/functions_visual_map_editor.php:1248 +#: ../../include/rest-api/models/VisualConsole/Item.php:2201 +msgid "Cache expiration" +msgstr "キャッシュ有効期限" + +#: ../../include/functions_visual_map_editor.php:1287 +msgid "Click start point
    of the line" +msgstr "線の開始場所
    をクリックしてください" + +#: ../../include/functions_visual_map_editor.php:1290 +msgid "Click end point
    of the line" +msgstr "線の終了場所
    をクリックしてください" + +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../operation/visual_console/view.php:316 +msgid "Serialized pie graph" +msgstr "連続円グラフ" + +#: ../../include/functions_visual_map_editor.php:1391 +#: ../../operation/visual_console/view.php:321 +msgid "Bars Graph" +msgstr "棒グラフ" + +#: ../../include/functions_visual_map_editor.php:1420 +msgid "Show grid" +msgstr "グリッド表示" + +#: ../../include/functions_visual_map_editor.php:1422 +msgid "Delete item" +msgstr "アイテムの削除" + +#: ../../include/functions_visual_map_editor.php:1423 +msgid "Copy item" +msgstr "アイテムのコピー" + +#: ../../include/functions_visual_map_editor.php:1463 +#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1535 +msgid "Visual Console Builder Information" +msgstr "ビジュアルコンソールビルダ情報" + +#: ../../include/functions_visual_map_editor.php:1464 +msgid "Min allowed size is 1024x768." +msgstr "最小サイズは 1024x768 です。" + +#: ../../include/functions_visual_map_editor.php:1468 +#: ../../include/functions_visual_map_editor.php:1536 +msgid "No custom graph defined." +msgstr "カスタムグラフがありません。" + +#: ../../include/functions_visual_map_editor.php:1472 +msgid "No image or name defined." +msgstr "画像や名前が定義されていません。" + +#: ../../include/functions_visual_map_editor.php:1476 +msgid "No label defined." +msgstr "ラベルが定義されていません。" + +#: ../../include/functions_visual_map_editor.php:1480 +msgid "No service defined." +msgstr "サービスがありません。" + +#: ../../include/functions_visual_map_editor.php:1484 +msgid "No image defined." +msgstr "画像が定義されていません。" + +#: ../../include/functions_visual_map_editor.php:1488 +msgid "No process defined." +msgstr "処理が定義されていません。" + +#: ../../include/functions_visual_map_editor.php:1492 +msgid "No Max value defined." +msgstr "最大値が定義されていません" + +#: ../../include/functions_visual_map_editor.php:1496 +msgid "No width defined." +msgstr "幅が定義されていません" + +#: ../../include/functions_visual_map_editor.php:1500 +msgid "No height defined." +msgstr "高さが定義されていません。" + +#: ../../include/functions_visual_map_editor.php:1504 +msgid "The width must not exceed the size of the visual console container." +msgstr "幅はビジュアルコンソールコンテナのサイズを超えてはいけません。" + +#: ../../include/functions_visual_map_editor.php:1508 +msgid "The height must not exceed the size of the visual console container." +msgstr "高さはビジュアルコンソールコンテナのサイズを超えてはいけません。" + +#: ../../include/functions_visual_map_editor.php:1512 +msgid "No period defined." +msgstr "期間が定義されていません。" + +#: ../../include/functions_visual_map_editor.php:1516 +msgid "No agent defined." +msgstr "エージェントが定義されていません" + +#: ../../include/functions_visual_map_editor.php:1520 +msgid "No module defined." +msgstr "モジュールが定義されていません" + +#: ../../include/functions_visual_map_editor.php:1524 +msgid "No module defined. This module must be string type." +msgstr "" +"モジュールが定義されていません。このモジュールは文字列タイプである必要があります。" + +#: ../../include/functions_visual_map_editor.php:1528 +msgid "Successfully save the changes." +msgstr "変更を保存しました。" + +#: ../../include/functions_visual_map_editor.php:1532 +msgid "Could not be save." +msgstr "保存できません。" + +#: ../../include/graphs/export_data.php:88 ../../include/graphs/export_data.php:154 +msgid "An error occured exporting the data" +msgstr "データエクスポートエラー" + +#: ../../include/graphs/functions_gd.php:183 ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2903 ../../include/functions_graph.php:2951 +msgid "Out of limits" +msgstr "範囲外" + +#: ../../include/graphs/functions_flot.php:365 +msgid "Cancel zoom" +msgstr "ズーム中止" + +#: ../../include/graphs/functions_flot.php:367 +msgid "Warning and Critical thresholds" +msgstr "警告と障害の閾値" + +#: ../../include/graphs/functions_flot.php:372 +msgid "Overview graph" +msgstr "概要グラフ" + +#: ../../include/graphs/functions_flot.php:509 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:4576 +#: ../../include/functions_treeview.php:315 +msgid "No data" +msgstr "データがありません" + +#: ../../include/functions_servers.php:582 +msgid "SNMP Trap server" +msgstr "SNMPトラップサーバ" + +#: ../../include/functions_servers.php:699 +msgid "Correlation server" +msgstr "相関サーバ" + +#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1314 +msgid "Enterprise ICMP server" +msgstr "エンタープライズ ICMP サーバ" + +#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1317 +msgid "Enterprise SNMP server" +msgstr "エンタープライズSNMPサーバ" + +#: ../../include/functions_servers.php:738 +#: ../../include/class/AgentWizard.class.php:1267 +msgid "Enterprise Satellite server" +msgstr "Enterprise サテライトサーバ" + +#: ../../include/functions_servers.php:751 +msgid "Enterprise Transactional server" +msgstr "Enterprise トランザクションサーバ" + +#: ../../include/functions_servers.php:764 +msgid "Mainframe server" +msgstr "メインフレームサーバ" + +#: ../../include/functions_servers.php:777 +msgid "Sync server" +msgstr "同期サーバ" + +#: ../../include/functions_servers.php:790 +msgid "Wux server" +msgstr "Wux サーバ" + +#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1344 +msgid "Log server" +msgstr "ログサーバ" + +#: ../../include/functions_servers.php:829 +msgid "Autoprovision server" +msgstr "自動プロビジョニングサーバ" + +#: ../../include/functions_servers.php:842 +msgid "Migration server" +msgstr "マイグレーションサーバ" + +#: ../../include/functions_servers.php:1323 +msgid "Prediction Server" +msgstr "予測サーバ" + +#: ../../include/functions_servers.php:1350 +msgid "Satellite server" +msgstr "サテライトサーバ" + +#: ../../include/functions_servers.php:1353 +msgid "Transactional server" +msgstr "トランザクションサーバ" + +#: ../../include/functions_reporting_html.php:109 +msgid "Label: " +msgstr "ラベル: " + +#: ../../include/functions_reporting_html.php:584 +msgid "Time Failed" +msgstr "障害時間" + +#: ../../include/functions_reporting_html.php:588 +msgid "Downtime" +msgstr "停止時間" + +#: ../../include/functions_reporting_html.php:999 +#: ../../include/functions_reporting_html.php:2413 +#: ../../include/functions_reporting_html.php:4458 +#: ../../include/functions_reporting_html.php:4995 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 +msgid "Min Value" +msgstr "最小値" + +#: ../../include/functions_reporting_html.php:1000 +#: ../../include/functions_reporting_html.php:2414 +#: ../../include/functions_reporting_html.php:4459 +#: ../../include/functions_reporting_html.php:4996 +msgid "Average Value" +msgstr "平均値" + +#: ../../include/functions_reporting_html.php:1001 +#: ../../include/functions_reporting_html.php:2415 +#: ../../include/functions_reporting_html.php:4456 +#: ../../include/functions_reporting_html.php:4998 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Max Value" +msgstr "最大値" + +#: ../../include/functions_reporting_html.php:1056 +#: ../../include/functions_reporting_html.php:1064 +#: ../../include/functions_reporting_html.php:2543 +msgid "Val. by" +msgstr "承諾ユーザ" + +#: ../../include/functions_reporting_html.php:1144 +#, php-format +msgid "%s System" +msgstr "%s システム" + +#: ../../include/functions_reporting_html.php:1213 +#: ../../include/functions_reporting_html.php:1435 +msgid "Events by agent" +msgstr "エージェントで分類したイベント" + +#: ../../include/functions_reporting_html.php:1230 +#: ../../include/functions_reporting_html.php:1452 +msgid "Events by user validator" +msgstr "承諾したユーザごとのイベント" + +#: ../../include/functions_reporting_html.php:1247 +#: ../../include/functions_reporting_html.php:1469 +msgid "Events by Severity" +msgstr "重要度ごとのイベント" + +#: ../../include/functions_reporting_html.php:1264 +#: ../../include/functions_reporting_html.php:1486 +msgid "Events validated vs unvalidated" +msgstr "承諾済と未承諾イベント" + +#: ../../include/functions_reporting_html.php:1577 +msgid "Sec. groups" +msgstr "セカンダリグループ" + +#: ../../include/functions_reporting_html.php:1597 +msgid "Remote conf." +msgstr "リモート設定" + +#: ../../include/functions_reporting_html.php:2189 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "青色のセルは、不明状態を示します。" + +#: ../../include/functions_reporting_html.php:2479 +#: ../../include/functions_reporting_html.php:5565 +msgid "Monitors" +msgstr "モニタ項目" + +#: ../../include/functions_reporting_html.php:2498 +msgid "Events (not validated)" +msgstr "イベント (未承諾)" + +#: ../../include/functions_reporting_html.php:2664 +msgid "Events validated by user" +msgstr "ユーザで分類したイベント" + +#: ../../include/functions_reporting_html.php:2681 +#: ../../include/functions_reporting_html.php:5854 +msgid "Events by severity" +msgstr "重要度ごとのイベント" + +#: ../../include/functions_reporting_html.php:2698 +msgid "Amount events validated" +msgstr "承諾済みイベントの割合" + +#: ../../include/functions_reporting_html.php:3122 +msgid "Total summary" +msgstr "全体概要" + +#: ../../include/functions_reporting_html.php:3129 +msgid "No alerts fired" +msgstr "アラート未発報" + +#: ../../include/functions_reporting_html.php:3220 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "インタフェース '%s' スループットグラフ" + +#: ../../include/functions_reporting_html.php:3224 +msgid "Mac" +msgstr "Mac" + +#: ../../include/functions_reporting_html.php:3225 +msgid "Actual status" +msgstr "現在の状態" + +#: ../../include/functions_reporting_html.php:3589 +#: ../../include/functions_reporting_html.php:3591 +msgid "Empty modules" +msgstr "モジュールなし" + +#: ../../include/functions_reporting_html.php:3598 +msgid "Warning
    Critical" +msgstr "警告
    障害" + +#: ../../include/functions_reporting_html.php:4071 +msgid "Time Not Init Module" +msgstr "未初期化モジュール時間" + +#: ../../include/functions_reporting_html.php:4082 +msgid "% Ok" +msgstr "正常%" + +#: ../../include/functions_reporting_html.php:4159 +msgid "Checks Uknown" +msgstr "不明確認数" + +#: ../../include/functions_reporting_html.php:4198 +#: ../../include/functions_reporting_html.php:4345 +#: ../../include/functions_reporting_html.php:4670 +#: ../../include/functions_reporting_html.php:4676 +msgid "Primary" +msgstr "プライマリ" + +#: ../../include/functions_reporting_html.php:5110 +#: ../../include/functions_reporting.php:11585 +#: ../../include/functions_reporting.php:11606 +msgid "Alert level" +msgstr "アラートレベル" + +#: ../../include/functions_reporting_html.php:5339 +#, php-format +msgid "Agents in group: %s" +msgstr "グループに含まれるエージェント: %s" + +#: ../../include/functions_reporting_html.php:5441 +msgid "Last failure" +msgstr "最新の障害" + +#: ../../include/functions_reporting_html.php:5531 +msgid "N/A(*)" +msgstr "N/A(*)" + +#: ../../include/functions_reporting_html.php:5779 +#: ../../include/functions_reporting.php:11817 +msgid "Monitor checks" +msgstr "モニタ項目" + +#: ../../include/functions_reporting_html.php:5786 +#: ../../include/functions_reporting.php:11836 +msgid "Total agents and monitors" +msgstr "全エージェントと監視項目" + +#: ../../include/functions_reporting_html.php:5805 +#: ../../include/functions_reporting_html.php:5810 +msgid "Node overview" +msgstr "ノードの概要" + +#: ../../include/functions_reporting_html.php:5830 +#: ../../include/functions_reporting_html.php:5842 +msgid "Critical events" +msgstr "障害イベント" + +#: ../../include/functions_reporting_html.php:5833 +#: ../../include/functions_reporting_html.php:5844 +msgid "Warning events" +msgstr "警告イベント" + +#: ../../include/functions_reporting_html.php:5836 +#: ../../include/functions_reporting_html.php:5846 +msgid "OK events" +msgstr "正常イベント" + +#: ../../include/functions_reporting_html.php:5839 +#: ../../include/functions_reporting_html.php:5848 +msgid "Unknown events" +msgstr "不明イベント" + +#: ../../include/functions_reporting_html.php:5864 +msgid "Important Events by Criticity" +msgstr "重要度ごとのイベント" + +#: ../../include/functions_reporting_html.php:5890 +#, php-format +msgid "Last activity in %s console" +msgstr "%s コンソールの最新の操作" + +#: ../../include/functions_reporting_html.php:5981 +#: ../../include/functions_reporting_html.php:6123 +msgid "Events info (1hr.)" +msgstr "イベント情報 (1時間)" + +#: ../../include/functions_reporting_html.php:6280 +msgid "This SLA has been affected by the following scheduled downtimes" +msgstr "このSLAは、次の計画停止の影響を受けています" + +#: ../../include/functions_reporting_html.php:6281 +msgid "" +"If the duration of the scheduled downtime is less than 5 minutes it will not be " +"represented in the graph" +msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。" + +#: ../../include/functions_reporting_html.php:6288 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 +msgid "Dates" +msgstr "日付" + +#: ../../include/functions_reporting_html.php:6319 +msgid "This item is affected by a malformed scheduled downtime" +msgstr "このアイテムは、不正な形式の計画停止の影響を受けます" + +#: ../../include/functions_reporting_html.php:6319 +msgid "Go to the scheduled downtimes section to solve this" +msgstr "これを解決するには、計画停止の画面に移動します" + +#: ../../include/functions.php:231 +msgid "." +msgstr "." + +#: ../../include/functions.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:488 ../../include/functions.php:640 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:489 ../../include/functions.php:641 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:490 ../../include/functions.php:642 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:491 ../../include/functions.php:643 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 +#: ../../include/rest-api/models/VisualConsole/Item.php:2036 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:492 ../../include/functions.php:644 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:493 ../../include/functions.php:645 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:494 ../../include/functions.php:646 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1023 ../../include/functions.php:1269 +#: ../../include/functions.php:1303 ../../include/functions_graph.php:3473 +#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:5056 +#: ../../include/functions_incidents.php:34 ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:3006 +msgid "Maintenance" +msgstr "メンテナンス" + +#: ../../include/functions.php:1027 ../../include/functions.php:1270 +#: ../../include/functions.php:1307 ../../include/functions_graph.php:3478 +#: ../../include/functions_graph.php:3479 ../../include/functions_graph.php:5060 +#: ../../include/functions_events.php:3010 +msgid "Informational" +msgstr "情報" + +#: ../../include/functions.php:1043 ../../include/functions.php:1272 +#: ../../include/functions.php:1323 ../../include/functions_graph.php:3488 +#: ../../include/functions_graph.php:3489 ../../include/functions_graph.php:5076 +msgid "Minor" +msgstr "マイナー" + +#: ../../include/functions.php:1047 ../../include/functions.php:1274 +#: ../../include/functions.php:1327 ../../include/functions_graph.php:3498 +#: ../../include/functions_graph.php:3499 ../../include/functions_graph.php:5080 +msgid "Major" +msgstr "メジャー" + +#: ../../include/functions.php:1222 ../../include/functions_events.php:2926 +msgid "Monitor Critical" +msgstr "障害" + +#: ../../include/functions.php:1223 ../../include/functions_events.php:2930 +msgid "Monitor Warning" +msgstr "警告" + +#: ../../include/functions.php:1224 ../../include/functions_events.php:2934 +msgid "Monitor Normal" +msgstr "正常" + +#: ../../include/functions.php:1226 +msgid "Monitor Unknown" +msgstr "不明状態" + +#: ../../include/functions.php:1229 ../../include/functions_events.php:2710 +#: ../../include/functions_events.php:2942 +msgid "Alert recovered" +msgstr "復旧したアラート" + +#: ../../include/functions.php:1230 ../../include/functions_events.php:2758 +#: ../../include/functions_events.php:2946 +msgid "Alert ceased" +msgstr "停止されたアラート" + +#: ../../include/functions.php:1231 ../../include/functions_events.php:2950 +msgid "Alert manual validation" +msgstr "承諾されたアラート" + +#: ../../include/functions.php:1233 +msgid "Agent created" +msgstr "エージェント作成" + +#: ../../include/functions.php:1234 ../../include/functions_events.php:2954 +msgid "Recon host detected" +msgstr "自動検出" + +#: ../../include/functions.php:1237 ../../include/functions_events.php:2754 +#: ../../include/functions_events.php:2966 +msgid "Configuration change" +msgstr "設定変更" + +#: ../../include/functions.php:1354 ../../include/functions.php:1384 +msgid "ALERT FIRED" +msgstr "アラート発報" + +#: ../../include/functions.php:1357 ../../include/functions.php:1394 +#: ../../include/functions_modules.php:4126 ../../include/class/Tree.class.php:646 +#: ../../include/lib/Module.php:567 ../../operation/agentes/status_monitor.php:1641 +#: ../../operation/agentes/status_monitor.php:1649 +msgid "NO DATA" +msgstr "データがありません" + +#: ../../include/functions.php:2694 +#, php-format +msgid "%s seconds" +msgstr "%s 秒" + +#: ../../include/functions.php:2697 ../../include/functions.php:2698 +#, php-format +msgid "%s minutes" +msgstr "%s 分" + +#: ../../include/functions.php:2706 ../../include/functions.php:2707 +#, php-format +msgid "%s months" +msgstr "%s ヶ月" + +#: ../../include/functions.php:2709 ../../include/functions.php:2710 +#, php-format +msgid "%s years" +msgstr "%s 年" + +#: ../../include/functions.php:2712 +msgid "Default values will be used" +msgstr "デフォルト値を利用します" + +#: ../../include/functions.php:2897 ../../include/functions.php:2902 +msgid "The file exceeds the maximum size" +msgstr "ファイルサイズが上限を超えています。" + +#: ../../include/functions.php:2898 +msgid "" +"Please check this PHP runtime variable values:
      upload_max_filesize (currently "
    +msgstr "PHP 実行時の変数値を確認してください: 
     upload_max_filesize(現在"
    +
    +#: ../../include/functions.php:2906
    +msgid "The uploaded file was only partially uploaded"
    +msgstr "ファイルは部分的にのみアップロードされました"
    +
    +#: ../../include/functions.php:2910
    +msgid "No file was uploaded"
    +msgstr "ファイルがアップロードされませんでした"
    +
    +#: ../../include/functions.php:2914
    +msgid "Missing a temporary folder"
    +msgstr "テンポラリフォルダがありません"
    +
    +#: ../../include/functions.php:2918
    +msgid "Failed to write file to disk"
    +msgstr "ファイルのディスクへの書き込みに失敗しました"
    +
    +#: ../../include/functions.php:2922
    +msgid "File upload stopped by extension"
    +msgstr "拡張によりファイルのアップロードが停止されました"
    +
    +#: ../../include/functions.php:2926
    +msgid "Unknown upload error"
    +msgstr "不明なアップロードエラー"
    +
    +#: ../../include/functions.php:3037
    +msgid "No data found to export"
    +msgstr "エクスポートするデータがありません"
    +
    +#: ../../include/functions.php:3358 ../../operation/gis_maps/render_view.php:149
    +msgid "5 seconds"
    +msgstr "5 秒"
    +
    +#: ../../include/functions.php:3359 ../../operation/gis_maps/render_view.php:150
    +msgid "10 seconds"
    +msgstr "10 秒"
    +
    +#: ../../include/functions.php:3360
    +msgid "15 seconds"
    +msgstr "15秒"
    +
    +#: ../../include/functions.php:3361 ../../include/ajax/heatmap.ajax.php:50
    +#: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:171
    +#: ../../operation/gis_maps/render_view.php:151
    +msgid "30 seconds"
    +msgstr "30 秒"
    +
    +#: ../../include/functions.php:3362 ../../include/ajax/heatmap.ajax.php:51
    +#: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:172
    +#: ../../operation/gis_maps/render_view.php:152
    +msgid "1 minute"
    +msgstr "1 分"
    +
    +#: ../../include/functions.php:3363 ../../include/class/AgentsAlerts.class.php:806
    +#: ../../operation/gis_maps/render_view.php:153
    +msgid "2 minutes"
    +msgstr "2 分"
    +
    +#: ../../include/functions.php:3364 ../../include/ajax/heatmap.ajax.php:53
    +#: ../../include/ajax/module.php:198 ../../include/class/AgentsAlerts.class.php:807
    +#: ../../operation/heatmap.php:174 ../../operation/gis_maps/render_view.php:154
    +msgid "5 minutes"
    +msgstr "5 分"
    +
    +#: ../../include/functions.php:3365
    +msgid "15 minutes"
    +msgstr "15 分"
    +
    +#: ../../include/functions.php:3366 ../../include/ajax/module.php:199
    +msgid "30 minutes"
    +msgstr "30 分"
    +
    +#: ../../include/functions.php:3881
    +msgid "Summatory series"
    +msgstr "合計シリーズ"
    +
    +#: ../../include/functions.php:3885
    +msgid "Average series"
    +msgstr "平均シリーズ"
    +
    +#: ../../include/functions.php:3913 ../../include/functions.php:3932
    +#: ../../include/functions.php:3946 ../../include/functions.php:3968
    +#: ../../include/functions.php:4049 ../../include/functions.php:4121
    +msgid "Unit "
    +msgstr "単位 "
    +
    +#: ../../include/functions.php:3994 ../../include/functions.php:4059
    +msgid "Min:"
    +msgstr "最小:"
    +
    +#: ../../include/functions.php:4001 ../../include/functions.php:4066
    +msgid "Max:"
    +msgstr "最大:"
    +
    +#: ../../include/functions.php:4008 ../../include/functions.php:4073
    +msgid "Avg:"
    +msgstr "平均:"
    +
    +#: ../../include/functions.php:4118 ../../include/functions.php:4126
    +msgid "of module"
    +msgstr "のモジュール"
    +
    +#: ../../include/functions.php:4143
    +msgid "Projection"
    +msgstr "投影"
    +
    +#: ../../include/functions.php:5963
    +msgid "Testing Pandora FMS email"
    +msgstr "Pandora FMS メールのテスト"
    +
    +#: ../../include/functions.php:5976
    +msgid ""
    +"This is an email test sent from Pandora FMS. If you can read this, your configuration "
    +"works."
    +msgstr ""
    +"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機能し"
    +"ています。"
    +
    +#: ../../include/functions.php:6210 ../../include/class/ConsoleSupervisor.php:1493
    +#: ../../include/class/ConsoleSupervisor.php:1517
    +#: ../../include/class/ConsoleSupervisor.php:1546
    +#: ../../include/class/ConsoleSupervisor.php:1624
    +#, php-format
    +msgid "Not recommended '%s' value in PHP configuration"
    +msgstr "PHP 設定における値 '%s' はおすすめしません"
    +
    +#: ../../include/functions.php:6211
    +msgid "Recommended value is: -1"
    +msgstr "推奨値は -1 です"
    +
    +#: ../../include/functions.php:6212 ../../include/class/ConsoleSupervisor.php:1552
    +#: ../../include/class/ConsoleSupervisor.php:1630
    +msgid ""
    +"Please, change it on your PHP configuration file (php.ini) or contact with "
    +"administrator"
    +msgstr "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。"
    +
    +#: ../../include/functions.php:6213 ../../general/login_help_dialog.php:96
    +#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
    +msgid "Documentation"
    +msgstr "ドキュメント"
    +
    +#: ../../include/functions_cron.php:481
    +msgid "Scheduled jobs"
    +msgstr "スケジュールされたジョブ"
    +
    +#: ../../include/functions_api.php:125
    +msgid "Not `set`, `get` or `help` operation selected."
    +msgstr "`set`, `get` または `help` 操作が選択されていません。"
    +
    +#: ../../include/functions_api.php:135
    +msgid "This operation does not exist."
    +msgstr "この操作は存在しません。"
    +
    +#: ../../include/functions_api.php:145
    +msgid "The Id does not exist in database."
    +msgstr "データベースに ID が存在しません。"
    +
    +#: ../../include/functions_api.php:155
    +msgid "This operation can not be used in cluster elements."
    +msgstr "クラスタ要素ではこの操作は使えません。"
    +
    +#: ../../include/functions_api.php:165
    +msgid "The user has not enough permissions for perform this action."
    +msgstr "このアクションを実行するための十分な権限がありません。"
    +
    +#: ../../include/functions_api.php:185
    +msgid ""
    +"This console is not the environment administrator. Please, manage this feature from "
    +"centralized manager console (Metaconsole)."
    +msgstr ""
    +"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタコンソー"
    +"ル)から管理してください。"
    +
    +#: ../../include/functions_api.php:195
    +msgid "Auth error"
    +msgstr "認証エラー"
    +
    +#: ../../include/functions_api.php:1463
    +msgid "The agent could not be modified. For security reasons, use a group other than 0."
    +msgstr ""
    +"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループを利用"
    +"してください。"
    +
    +#: ../../include/functions_api.php:1818
    +#, php-format
    +msgid "Updated %d/%d agents"
    +msgstr "%d/%d エージェントを更新しました"
    +
    +#: ../../include/functions_api.php:1826
    +msgid "Agent updated."
    +msgstr "エージェントを更新しました。"
    +
    +#: ../../include/functions_api.php:2017
    +msgid "Could not create OS"
    +msgstr "OS を作成できませんでした"
    +
    +#: ../../include/functions_api.php:2056
    +msgid "Could not update OS"
    +msgstr "OS を更新できませんでした"
    +
    +#: ../../include/functions_api.php:2257
    +msgid "The agent was successfully deleted"
    +msgstr "エージェントを削除しました"
    +
    +#: ../../include/functions_api.php:3752
    +msgid "Network module updated."
    +msgstr "ネットワークモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:4048
    +msgid "Plugin module updated."
    +msgstr "プラグインモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:4404
    +#, php-format
    +msgid "Synthetic module created ID: %s"
    +msgstr "合成モジュールが作成したID: %s"
    +
    +#: ../../include/functions_api.php:4557
    +msgid "Synthetic module created ID: "
    +msgstr "統合モジュールを作成しました。ID: "
    +
    +#: ../../include/functions_api.php:4674
    +msgid "Data module updated."
    +msgstr "データモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:5047
    +msgid "SNMP module updated."
    +msgstr "SNMPモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:5654
    +msgid "Error creating alert template. Id_group cannot be left blank."
    +msgstr ""
    +"アラートテンプレートの作成中にエラーが発生しました。 id_group は空白にできません。"
    +
    +#: ../../include/functions_api.php:5668
    +msgid ""
    +"Error creating alert template. Invalid id_group or the user has not enough permission "
    +"to make this action."
    +msgstr ""
    +"アラートテンプレートの作成中にエラーが発生しました。 id_group が無効であるか、ユーザに"
    +"このアクションを実行するための十分な権限がありません。"
    +
    +#: ../../include/functions_api.php:5814
    +msgid ""
    +"Error updating alert template. Invalid id_group or the user has not enough permission "
    +"to make this action."
    +msgstr ""
    +"アラートテンプレートの更新中にエラーが発生しました。 id_group が無効であるか、ユーザに"
    +"このアクションを実行するための十分な権限がありません。"
    +
    +#: ../../include/functions_api.php:5898
    +msgid "Successful update of the alert template"
    +msgstr "アラートテンプレートを更新しました"
    +
    +#: ../../include/functions_api.php:5946
    +msgid "Error deleting alert template. Id_template doesn't exist."
    +msgstr "アラートテンプレート削除エラー。id_template が存在しません。"
    +
    +#: ../../include/functions_api.php:5975
    +msgid "Successful delete of alert template."
    +msgstr "アラートテンプレートを削除しました。"
    +
    +#: ../../include/functions_api.php:6395 ../../include/functions_api.php:12222
    +#: ../../include/functions_api.php:12288 ../../include/functions_api.php:12569
    +#: ../../include/functions_api.php:12649
    +#, php-format
    +msgid "%d agents affected"
    +msgstr "%d エージェントに影響します"
    +
    +#: ../../include/functions_api.php:6541
    +msgid "Correct deleting of module template."
    +msgstr "モジュールテンプレートの削除内容を修正してください。"
    +
    +#: ../../include/functions_api.php:6649
    +msgid "Successful delete of module template."
    +msgstr "モジュールテンプレートを削除しました。"
    +
    +#: ../../include/functions_api.php:6682
    +msgid "Error validating alert. Id_template cannot be left blank."
    +msgstr "アラート承諾エラー。id_template は空にできません。"
    +
    +#: ../../include/functions_api.php:6690
    +msgid "Error validating alert. Id_agent cannot be left blank."
    +msgstr "アラート承諾エラー。id_agent は空にできません。"
    +
    +#: ../../include/functions_api.php:6698
    +msgid "Error validating alert. Id_module cannot be left blank."
    +msgstr "アラート承諾エラー。id_module は空にできません。"
    +
    +#: ../../include/functions_api.php:6769
    +msgid "Error validating alert. Specified alert does not exist."
    +msgstr "アラート承諾エラー。指定のアラートが存在しません。"
    +
    +#: ../../include/functions_api.php:6780
    +msgid "Error validating alert"
    +msgstr "アラート承諾エラー"
    +
    +#: ../../include/functions_api.php:6854
    +#, php-format
    +msgid "Correct validation of all alerts (total %d)."
    +msgstr "全アラートの承諾をしました(合計 %d)。"
    +
    +#: ../../include/functions_api.php:6948
    +msgid "Correct validation of all policy alerts."
    +msgstr "全ポリシーアラートを承諾しました。"
    +
    +#: ../../include/functions_api.php:6990
    +msgid ""
    +"Error stopping downtime. Periodical and running scheduled downtime cannot be stopped."
    +msgstr ""
    +"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止することは"
    +"できません。"
    +
    +#: ../../include/functions_api.php:7003
    +msgid "Downtime stopped."
    +msgstr "計画停止を中断しました。"
    +
    +#: ../../include/functions_api.php:7485
    +msgid "and this modules are doesn't exists or not applicable a this agents: "
    +msgstr "これらのモジュールが存在しないかまたはエージェントに適用できません : "
    +
    +#: ../../include/functions_api.php:7489
    +msgid "and this agents are generate problems: "
    +msgstr "これらのエージェントでエラーです : "
    +
    +#: ../../include/functions_api.php:7493
    +msgid "and this agents with ids are doesn't exists: "
    +msgstr "これらのエージェントIDは存在しません : "
    +
    +#: ../../include/functions_api.php:7641
    +msgid "Planned downtime updated"
    +msgstr "計画停止を更新しました"
    +
    +#: ../../include/functions_api.php:7717
    +msgid " Agents deleted"
    +msgstr " エージェントを削除しました"
    +
    +#: ../../include/functions_api.php:7798
    +msgid " Agents added"
    +msgstr " エージェントを追加しました"
    +
    +#: ../../include/functions_api.php:7918
    +msgid "Data policy module updated."
    +msgstr "データポリシーモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:8151
    +msgid "Network policy module updated."
    +msgstr "ネットワークポリシーモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:8408
    +msgid "Plugin policy module updated."
    +msgstr "プラグインポリシーモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:8917
    +msgid "SNMP policy module updated."
    +msgstr "SNMPポリシーモジュールを更新しました。"
    +
    +#: ../../include/functions_api.php:9262
    +msgid "Successful deletion"
    +msgstr "削除しました"
    +
    +#: ../../include/functions_api.php:9578
    +msgid "User created."
    +msgstr "ユーザを作成しました"
    +
    +#: ../../include/functions_api.php:9673
    +msgid "User updated."
    +msgstr "ユーザを更新しました。"
    +
    +#: ../../include/functions_api.php:9752
    +msgid "Enabled user."
    +msgstr "ユーザを有効化しました。"
    +
    +#: ../../include/functions_api.php:9760
    +msgid "Disabled user."
    +msgstr "ユーザを無効化しました。"
    +
    +#: ../../include/functions_api.php:10057
    +#, php-format
    +msgid "Template have been inserted in %d agents."
    +msgstr "%d エージェントにテンプレートを挿入しました。"
    +
    +#: ../../include/functions_api.php:10229
    +msgid "XML file was generated successfully in path: "
    +msgstr "次のパスに XML ファイルを生成しました: "
    +
    +#: ../../include/functions_api.php:10369
    +#, php-format
    +msgid "Module has been created in %d agents."
    +msgstr "%d エージェントにモジュールを作成しました。"
    +
    +#: ../../include/functions_api.php:10499
    +#, php-format
    +msgid "Action has been set for %d agents."
    +msgstr "%d エージェントにアクションを設定しました。"
    +
    +#: ../../include/functions_api.php:11812
    +msgid "User deleted."
    +msgstr "ユーザを削除しました。"
    +
    +#: ../../include/functions_api.php:11873
    +msgid "User profile added."
    +msgstr "ユーザプロファイルを追加しました。"
    +
    +#: ../../include/functions_api.php:11940
    +msgid "User profile deleted."
    +msgstr "ユーザプロファイルを削除しました。"
    +
    +#: ../../include/functions_api.php:12229
    +msgid "Module disabled successfully."
    +msgstr "モジュールを無効化しました。"
    +
    +#: ../../include/functions_api.php:12231
    +msgid "The module could not be disabled."
    +msgstr "モジュールを無効化できませんでした。"
    +
    +#: ../../include/functions_api.php:12295
    +msgid "Module enabled successfully."
    +msgstr "モジュールを有効化しました。"
    +
    +#: ../../include/functions_api.php:12297
    +msgid "The module could not be enabled."
    +msgstr "モジュールを有効化できませんでした。"
    +
    +#: ../../include/functions_api.php:12345 ../../include/functions_api.php:12398
    +msgid "The alert could not be disabled."
    +msgstr "アラートを無効化できませんでえした。"
    +
    +#: ../../include/functions_api.php:12445 ../../include/functions_api.php:12498
    +msgid "The alert could not be enabled."
    +msgstr "アラートを有効化できませんでした。"
    +
    +#: ../../include/functions_api.php:13750
    +msgid "Enabled agent."
    +msgstr "エージェントを有効化しました"
    +
    +#: ../../include/functions_api.php:13758
    +msgid "Disabled agent."
    +msgstr "エージェントを無効化しました"
    +
    +#: ../../include/functions_api.php:14737
    +msgid "Metaconsole and the licenses of all nodes were updated."
    +msgstr "メタコンソールと全ノードのライセンスを更新しました。"
    +
    +#: ../../include/functions_api.php:14739
    +#, php-format
    +msgid "Metaconsole license updated but %d of %d node failed to sync."
    +msgstr "メタコンソールライセンスを更新しましたが、%d/%d ノードの同期に失敗しました。"
    +
    +#: ../../include/functions_api.php:14742
    +msgid "This function is for metaconsole only."
    +msgstr "この機能はメタコンソールのみです。"
    +
    +#: ../../include/functions_api.php:15127 ../../include/functions_api.php:15198
    +msgid "Successfully deleted."
    +msgstr "削除しました。"
    +
    +#: ../../include/functions_api.php:15157
    +msgid "The user cannot access the cluster."
    +msgstr "ユーザがクラスタにアクセスできません。"
    +
    +#: ../../include/functions_api.php:16043
    +msgid "Event filter successfully created."
    +msgstr "イベントフィルタを作成しました。"
    +
    +#: ../../include/functions_api.php:16276
    +msgid "Event filter successfully updated."
    +msgstr "イベントフィルタを更新しました。"
    +
    +#: ../../include/functions_api.php:16317
    +msgid "Event filter successfully deleted."
    +msgstr "イベントフィルタを削除しました。"
    +
    +#: ../../include/functions_api.php:16633
    +msgid "Validated traps."
    +msgstr "トラップを承諾しました。"
    +
    +#: ../../include/functions_api.php:16660
    +msgid "Deleted traps."
    +msgstr "トラップを削除しました。"
    +
    +#: ../../include/functions_api.php:16853
    +#, php-format
    +msgid "Successfully updated module/alert count in id agent %d."
    +msgstr "エージェント ID %d のモジュール/アラートカウントを更新しました。"
    +
    +#: ../../include/functions_api.php:16855
    +msgid "Successfully updated module/alert count in all agents"
    +msgstr "全エージェントのモジュール/アラートカウントを更新しました。"
    +
    +#: ../../include/functions_api.php:17307
    +#, php-format
    +msgid "Successfully added to delete pending id agent %d to id policy %d."
    +msgstr "削除保留エージェント ID %d をポリシー ID %d に追加しました。"
    +
    +#: ../../include/functions_api.php:17496
    +msgid "Error enable/disable discovery task. Id_user cannot be left blank."
    +msgstr "自動検出タスクの有効化/無効化エラー。id_user は空にできません。"
    +
    +#: ../../include/functions_api.php:17504
    +msgid "Error enable/disable discovery task. Enable/disable value cannot be left blank."
    +msgstr "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
    +
    +#: ../../include/functions_api.php:17529
    +msgid "Error in discovery task enabling/disabling."
    +msgstr "自動検出タスクの有効化/無効化エラー。"
    +
    +#: ../../include/functions_api.php:17537
    +msgid "Enabled discovery task."
    +msgstr "自動検出タスクを有効化しました。"
    +
    +#: ../../include/functions_api.php:17545
    +msgid "Disabled discovery task."
    +msgstr "自動検出タスクを無効化しました。"
    +
    +#: ../../include/functions_networkmap.php:1303
    +msgid "Radial dynamic"
    +msgstr "放射状で動的"
    +
    +#: ../../include/functions_networkmap.php:1307 ../../include/functions_maps.php:38
    +msgid "Topology"
    +msgstr "トポロジ"
    +
    +#: ../../include/functions_networkmap.php:1332
    +msgid "Create a new topology map"
    +msgstr "トポロジマップの新規作成"
    +
    +#: ../../include/functions_networkmap.php:1333
    +msgid "Create a new group map"
    +msgstr "グループマップの新規作成"
    +
    +#: ../../include/functions_networkmap.php:1334
    +msgid "Create a new dynamic map"
    +msgstr "新たな動的マップの作成"
    +
    +#: ../../include/functions_networkmap.php:1336
    +msgid "Create a new radial dynamic map"
    +msgstr "放射状の動的マップを新規作成"
    +
    +#: ../../include/functions_networkmap.php:2068 ../../include/functions_maps.php:73
    +#: ../../include/functions_planned_downtimes.php:966
    +msgid "Copy of "
    +msgstr "コピー: "
    +
    +#: ../../include/functions_networkmap.php:3404
    +msgid "Map not found."
    +msgstr "マップがありません。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:144
    +msgid "This is the private code that you should use with your authenticator app"
    +msgstr "これは、認証アプリケーションで利用するプライベートコードです"
    +
    +#: ../../include/ajax/double_auth.ajax.php:145
    +#: ../../include/ajax/double_auth.ajax.php:288
    +msgid "You could enter the code manually or use the QR code to add it automatically"
    +msgstr "コードを手動で入力するか、QRコードを使って自動追加できます。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:151
    +#: ../../include/ajax/double_auth.ajax.php:294
    +msgid "QR"
    +msgstr "QR"
    +
    +#: ../../include/ajax/double_auth.ajax.php:190
    +msgid "You are about to activate the double authentication"
    +msgstr "二段階認証を有効化しようとしています"
    +
    +#: ../../include/ajax/double_auth.ajax.php:192
    +msgid ""
    +"With this option enabled, your account access will be more secure, \n"
    +"\t\tcause a code generated by other application will be required after the login"
    +msgstr ""
    +"このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n"
    +"\t\tログイン後、他のアプリケーションで生成したコードが必要になります。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:197
    +msgid "You will need to install the app from the following link before continue"
    +msgstr "先に進む前に、次のリンクからアプリケーションをインストールする必要があります。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:202
    +msgid "Download the app"
    +msgstr "アプリケーションをダウンロード"
    +
    +#: ../../include/ajax/double_auth.ajax.php:206
    +#: ../../include/ajax/double_auth.ajax.php:299 ../../include/functions_register.php:188
    +msgid "Continue"
    +msgstr "続ける"
    +
    +#: ../../include/ajax/double_auth.ajax.php:222
    +msgid "Are you installed the app yet?"
    +msgstr "アプリケーションをインストールしましたか。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:282
    +msgid "A private code has been generated"
    +msgstr "プライベートコードを生成しました"
    +
    +#: ../../include/ajax/double_auth.ajax.php:287
    +msgid "Before continue, you should create a new entry into the authenticator app"
    +msgstr "次に進む前に、認証アプリケーションに新たなエントリーを作成する必要があります。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:297
    +msgid "Refresh code"
    +msgstr "コードのリフレッシュ"
    +
    +#: ../../include/ajax/double_auth.ajax.php:366
    +msgid "Are you introduced the code in the authenticator app yet?"
    +msgstr "認証アプリケーションにコードを入力しましたか。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:429
    +msgid "Introduce a code generated by the app"
    +msgstr "アプリケーションにより生成されたコードを入力してください"
    +
    +#: ../../include/ajax/double_auth.ajax.php:430
    +msgid "If the code is valid, the double authentication will be activated"
    +msgstr "コードが正しければ、二段階認証が有効化されます。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:439
    +msgid "Validate code"
    +msgstr "コードを確認"
    +
    +#: ../../include/ajax/double_auth.ajax.php:491
    +msgid "The code is valid, you can exit now"
    +msgstr "正しいコードです。終了します。"
    +
    +#: ../../include/ajax/double_auth.ajax.php:508
    +msgid "The code is valid, but it was an error saving the data"
    +msgstr "正しいコードですが、データの保存でエラーが発生しました。"
    +
    +#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:173
    +msgid "3 minutes"
    +msgstr "3 分"
    +
    +#: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1631
    +msgid "Group agents"
    +msgstr "グループエージェント"
    +
    +#: ../../include/ajax/heatmap.ajax.php:79
    +msgid "Group modules by tag"
    +msgstr "タグでモジュールをグループ化"
    +
    +#: ../../include/ajax/heatmap.ajax.php:80
    +msgid "Group modules by module group"
    +msgstr "モジュールグループでモジュールをグループ化"
    +
    +#: ../../include/ajax/heatmap.ajax.php:97
    +msgid "Show groups"
    +msgstr "グループ表示"
    +
    +#: ../../include/ajax/alert_list.ajax.php:289 ../../include/ajax/alert_list.ajax.php:314
    +#: ../../include/ajax/module.php:970
    +msgid "Force execution"
    +msgstr "確認の強制(再)実行"
    +
    +#: ../../include/ajax/alert_list.ajax.php:289 ../../include/ajax/alert_list.ajax.php:314
    +#: ../../include/ajax/module.php:970
    +msgid "F."
    +msgstr "F."
    +
    +#: ../../include/ajax/alert_list.ajax.php:341
    +#: ../../operation/agentes/alerts_status.php:365
    +#: ../../operation/agentes/alerts_status.php:366
    +#: ../../operation/agentes/alerts_status.php:406
    +#: ../../operation/agentes/alerts_status.php:407
    +msgid "No alerts found"
    +msgstr "該当するアラートがありません。"
    +
    +#: ../../include/ajax/alert_list.ajax.php:633
    +msgid "Insufficient permissions to validate alerts"
    +msgstr "アラートを承諾するのに必要な権限がありません。"
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:113
    +#: ../../include/ajax/snmp_browser.ajax.php:124
    +#: ../../include/ajax/snmp_browser.ajax.php:134
    +msgid "SNMP modules"
    +msgstr "SNMP モジュール"
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:117
    +msgid "Error creating the following modules:"
    +msgstr "以下のモジュール作成エラー:"
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:128
    +msgid "Modules successfully created"
    +msgstr "モジュールを作成しました"
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:138
    +msgid "Module must be applied to an agent or a policy"
    +msgstr "モジュールがエージェントもしくはポリシーに割り当てられる必要があります"
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:263
    +msgid "Failed to create policy"
    +msgstr "ポリシー作成に失敗しました"
    +
    +#: ../../include/ajax/snmp_browser.ajax.php:264
    +msgid "Policy created succesfully"
    +msgstr "ポリシーを作成しました"
    +
    +#: ../../include/ajax/module.php:207
    +msgid "3 months"
    +msgstr "3ヵ月"
    +
    +#: ../../include/ajax/module.php:210
    +msgid "2 years"
    +msgstr "2年"
    +
    +#: ../../include/ajax/module.php:211
    +msgid "3 years"
    +msgstr "3 年"
    +
    +#: ../../include/ajax/module.php:223 ../../operation/agentes/datos_agente.php:194
    +msgid "Choose a time from now"
    +msgstr "現在からさかのぼって表示する期間を選択"
    +
    +#: ../../include/ajax/module.php:249 ../../operation/agentes/datos_agente.php:197
    +msgid "Specify time range"
    +msgstr "時間範囲指定"
    +
    +#: ../../include/ajax/module.php:307
    +msgid "Exact phrase"
    +msgstr "完全なフレーズ"
    +
    +#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:491
    +#: ../../operation/agentes/interface_traffic_graph_win.php:308
    +msgid ""
    +"In Pandora FMS, data is stored compressed. The data visualization in database, charts "
    +"or CSV exported data won't match, because is interpreted at runtime. Please check "
    +"'Pandora FMS Engineering' chapter from documentation."
    +msgstr ""
    +"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラフ、また"
    +"は CSV エクスポートデータは、実行時に解釈されるため一致しません。 ドキュメントの "
    +"'Pandora FMS の技術情報' の章を確認してください。"
    +
    +#: ../../include/ajax/module.php:1304
    +msgid "Any monitors aren't with this filter."
    +msgstr "このフィルタに合うモニタ項目がありません。"
    +
    +#: ../../include/ajax/module.php:1306
    +msgid "This agent doesn't have any active monitors."
    +msgstr "エージェントに有効な監視がありません。"
    +
    +#: ../../include/ajax/custom_fields.php:414
    +msgid "Current interval"
    +msgstr "現在の間隔"
    +
    +#: ../../include/ajax/custom_fields.php:460 ../../include/ajax/custom_fields.php:513
    +msgid "Modules normal"
    +msgstr "正常状態のモジュール"
    +
    +#: ../../include/ajax/custom_fields.php:471
    +msgid "Modules critical"
    +msgstr "障害状態のモジュール"
    +
    +#: ../../include/ajax/custom_fields.php:482
    +msgid "Modules warning"
    +msgstr "警告状態のモジュール"
    +
    +#: ../../include/ajax/custom_fields.php:492
    +msgid "Modules unknown"
    +msgstr "不明状態のモジュール"
    +
    +#: ../../include/ajax/custom_fields.php:503
    +msgid "Modules no init"
    +msgstr "未初期化モジュール"
    +
    +#: ../../include/ajax/custom_fields.php:545
    +msgid "New Filter"
    +msgstr "新規フィルタ"
    +
    +#: ../../include/ajax/custom_fields.php:552
    +msgid "Existing Filter"
    +msgstr "既存フィルタ"
    +
    +#: ../../include/ajax/custom_fields.php:700
    +msgid "Delete filter"
    +msgstr "フィルタの削除"
    +
    +#: ../../include/ajax/custom_fields.php:750
    +msgid "Filter name already exists in the bbdd"
    +msgstr "データベースにフィルタがすでに存在します"
    +
    +#: ../../include/ajax/custom_fields.php:762
    +msgid "Please, select a custom field"
    +msgstr "カスタムフィールドを選択してください"
    +
    +#: ../../include/ajax/custom_fields.php:790
    +msgid "Success create filter."
    +msgstr "フィルタを作成しました。"
    +
    +#: ../../include/ajax/custom_fields.php:797
    +msgid "Error create filter."
    +msgstr "フィルタ作成エラー。"
    +
    +#: ../../include/ajax/custom_fields.php:822 ../../include/ajax/custom_fields.php:895
    +msgid "please, select a filter"
    +msgstr "フィルタを選択してください。"
    +
    +#: ../../include/ajax/custom_fields.php:838
    +msgid "please, select a custom field"
    +msgstr "カスタムフィールドを選択してください。"
    +
    +#: ../../include/ajax/custom_fields.php:864
    +msgid "Success update filter."
    +msgstr "フィルタを更新しました。"
    +
    +#: ../../include/ajax/custom_fields.php:871
    +msgid "Error update filter."
    +msgstr "フィルタ更新エラー。"
    +
    +#: ../../include/ajax/custom_fields.php:914
    +msgid "Success delete filter."
    +msgstr "フィルタを削除しました。"
    +
    +#: ../../include/ajax/custom_fields.php:921
    +msgid "Error delete filter."
    +msgstr "フィルタ削除エラー。"
    +
    +#: ../../include/ajax/events.php:95
    +msgid "Failed to retrieve comments"
    +msgstr "コメントを取得できませんでした"
    +
    +#: ../../include/ajax/events.php:748
    +msgid "New filter"
    +msgstr "新規フィルタ"
    +
    +#: ../../include/ajax/events.php:766
    +msgid "Save in Group"
    +msgstr "保存グループ"
    +
    +#: ../../include/ajax/events.php:802
    +msgid "Overwrite filter"
    +msgstr "フィルタの上書き"
    +
    +#: ../../include/ajax/events.php:873
    +msgid "Filter name cannot be left blank"
    +msgstr "フィルタ名は空にできません"
    +
    +#: ../../include/ajax/events.php:1328
    +msgid "Error executing response"
    +msgstr "応答の実行エラー"
    +
    +#: ../../include/ajax/events.php:1705
    +msgid "Related"
    +msgstr "関連"
    +
    +#: ../../include/ajax/events.php:1717
    +msgid "Agent fields"
    +msgstr "エージェントフィールド"
    +
    +#: ../../include/ajax/events.php:1855
    +msgid "Error adding comment"
    +msgstr "コメント追加エラー"
    +
    +#: ../../include/ajax/events.php:1862
    +msgid "Comment added successfully"
    +msgstr "コメントを追加しました"
    +
    +#: ../../include/ajax/events.php:1869
    +msgid "Error changing event status"
    +msgstr "イベント状態変更エラー"
    +
    +#: ../../include/ajax/events.php:1876
    +msgid "Event status changed successfully"
    +msgstr "イベントの状態を変更しました"
    +
    +#: ../../include/ajax/events.php:1883
    +msgid "Error changing event owner"
    +msgstr "イベント所有者変更エラー"
    +
    +#: ../../include/ajax/events.php:1890
    +msgid "Event owner changed successfully"
    +msgstr "イベントの所有者を変更しました"
    +
    +#: ../../include/ajax/events.php:1897
    +msgid "Error deleting event"
    +msgstr "イベントの削除エラー"
    +
    +#: ../../include/ajax/events.php:2023
    +msgid "Show all Events 24h"
    +msgstr "24h以内の全イベント表示"
    +
    +#: ../../include/ajax/events.php:2113
    +msgid "These commands will apply to all selected events"
    +msgstr "これらのコマンドは、選択したすべてのイベントに適用されます。"
    +
    +#: ../../include/ajax/events.php:2175
    +msgid "Total number of events in this node reached"
    +msgstr "このノードのイベントの総数に達しました"
    +
    +#: ../../include/ajax/events.php:2209
    +msgid "Total Events per node"
    +msgstr "ノードごとの全イベント"
    +
    +#: ../../include/ajax/events.php:2263 ../../operation/events/events.php:1470
    +msgid "Events list"
    +msgstr "イベント一覧"
    +
    +#: ../../include/ajax/events.php:2274
    +msgid "Console configuration"
    +msgstr "コンソール設定"
    +
    +#: ../../include/ajax/events.php:2281
    +msgid "Set condition"
    +msgstr "状態設定"
    +
    +#: ../../include/ajax/events.php:2288 ../../operation/events/sound_events.php:192
    +msgid "All new events"
    +msgstr "全新規イベント"
    +
    +#: ../../include/ajax/events.php:2325 ../../operation/events/sound_events.php:229
    +msgid "Time Sound"
    +msgstr "タイムサウンド"
    +
    +#: ../../include/ajax/events.php:2356
    +msgid "Sound melody"
    +msgstr "サウンドメロディ"
    +
    +#: ../../include/ajax/events.php:2370
    +msgid "Test sound"
    +msgstr "サウンドテスト"
    +
    +#: ../../include/ajax/events.php:2394
    +msgid "Discovered alerts"
    +msgstr "検出されたアラート"
    +
    +#: ../../include/ajax/events.php:2401
    +msgid "No alerts discovered"
    +msgstr "アラートが検出されません"
    +
    +#: ../../include/ajax/events.php:2406
    +msgid "Congrats! there’s nothing to show"
    +msgstr "おめでとうございます! 表示するものはありません"
    +
    +#: ../../include/ajax/graph.ajax.php:161
    +msgid "Time container lapse"
    +msgstr "時間コンテナの経過"
    +
    +#: ../../include/functions_agents.php:1009
    +msgid "There was an error copying the agent configuration, the copy has been cancelled"
    +msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。"
    +
    +#: ../../include/functions_agents.php:2966 ../../include/functions_agents.php:3005
    +#: ../../include/functions_agents.php:3076
    +msgid "No Monitors"
    +msgstr "モニタ項目なし"
    +
    +#: ../../include/functions_agents.php:2974 ../../include/functions_agents.php:3029
    +#: ../../include/functions_agents.php:3084 ../../include/functions_reporting.php:12606
    +msgid "At least one module in CRITICAL status"
    +msgstr "一つ以上のモジュールが致命的な状態です。"
    +
    +#: ../../include/functions_agents.php:2980 ../../include/functions_agents.php:3039
    +#: ../../include/functions_agents.php:3092 ../../include/functions_reporting.php:12613
    +msgid "At least one module in WARNING status"
    +msgstr "一つ以上のモジュールが警告状態です。"
    +
    +#: ../../include/functions_agents.php:2986 ../../include/functions_agents.php:3049
    +#: ../../include/functions_agents.php:3100 ../../include/functions_reporting.php:12620
    +msgid "At least one module is in UKNOWN status"
    +msgstr "一つ以上のモジュールが不明な状態です。"
    +
    +#: ../../include/functions_agents.php:2992 ../../include/functions_agents.php:3059
    +#: ../../include/functions_agents.php:3108 ../../include/functions_reporting.php:12627
    +msgid "All Monitors OK"
    +msgstr "全モニタ項目が正常"
    +
    +#: ../../include/functions_agents.php:3017
    +msgid "Alert fired on agent"
    +msgstr "エージェントでアラート発報"
    +
    +#: ../../include/functions_agents.php:4010
    +msgid "Dialog response time"
    +msgstr "ダイアログ応答時間"
    +
    +#: ../../include/functions_plugins.php:58
    +#, php-format
    +msgid "Failed to erase module %d: %s"
    +msgstr "次のモジュールの削除に失敗しました %d:%s"
    +
    +#: ../../include/functions_plugins.php:72
    +#, php-format
    +msgid "Failed to erase policy module: %d"
    +msgstr "ポリシーモジュールの削除に失敗しました: %d"
    +
    +#: ../../include/functions_integriaims.php:42
    +msgid "Configure Integria IMS"
    +msgstr "Integria IMS 設定"
    +
    +#: ../../include/functions_integriaims.php:43
    +msgid "Ticket list"
    +msgstr "チケット一覧"
    +
    +#: ../../include/functions_integriaims.php:44
    +msgid "New ticket"
    +msgstr "新規チケット"
    +
    +#: ../../include/functions_integriaims.php:73
    +msgid "Edit ticket"
    +msgstr "チケット編集"
    +
    +#: ../../include/functions_integriaims.php:74
    +msgid "View ticket"
    +msgstr "チケット表示"
    +
    +#: ../../include/functions_integriaims.php:307
    +msgid ""
    +"API request failed. Please check Integria IMS' access credentials in Pandora setup."
    +msgstr ""
    +"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証情報"
    +"を確認してください。"
    +
    +#: ../../include/functions_integriaims.php:557
    +msgid "File successfully added"
    +msgstr "ファイルを追加しました"
    +
    +#: ../../include/functions_integriaims.php:558
    +msgid "File could not be added"
    +msgstr "ファイルを追加できませんでした"
    +
    +#: ../../include/functions_integriaims.php:561
    +msgid "File has an invalid extension"
    +msgstr "ファイルの拡張子が不正です"
    +
    +#: ../../include/functions_modules.php:4053
    +msgid "Realtime SNMP graph"
    +msgstr "リアルタイム SNMP グラフ"
    +
    +#: ../../include/functions_modules.php:4118
    +msgid "ALL"
    +msgstr "すべて"
    +
    +#: ../../include/functions_modules.php:4134
    +msgid "NOT NORMAL"
    +msgstr "非正常"
    +
    +#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
    +msgid "Problems with configuration permissions. Please contact with Administrator"
    +msgstr "パーミッション設定に問題があります。管理者に連絡してください。"
    +
    +#: ../../include/auth/mysql.php:334 ../../include/auth/mysql.php:397
    +#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
    +msgid "User not found in database or incorrect password"
    +msgstr "データベース上にユーザが存在しないかパスワードが不正です"
    +
    +#: ../../include/auth/mysql.php:360
    +msgid ""
    +"Ooops User not found in \n"
    +"\t\t\t\tdatabase or incorrect password"
    +msgstr ""
    +"データベースにユーザがいないか\n"
    +"\t\t\t\tパスワードが不正です。"
    +
    +#: ../../include/auth/mysql.php:718
    +msgid "Could not changes password on remote pandora"
    +msgstr "リモートの pandora のパスワードを変更できません"
    +
    +#: ../../include/auth/mysql.php:766
    +msgid "Your installation of PHP does not support LDAP"
    +msgstr "インストールされている PHP が LDAP に対応していません"
    +
    +#: ../../include/api.php:237
    +msgid "User or group not specified"
    +msgstr "ユーザまたはグループが指定されていません"
    +
    +#: ../../include/api.php:238
    +msgid "User, group not specified"
    +msgstr "ユーザ、グループが指定されていません"
    +
    +#: ../../include/api.php:269
    +msgid "User, group or profile not specified"
    +msgstr "ユーザ、グループまたは、プロファイルが指定されていません"
    +
    +#: ../../include/api.php:270
    +msgid "User, group or profile status not specified"
    +msgstr "ユーザ、グループまたは、プロファイルの状態が指定されていません"
    +
    +#: ../../include/functions_graph.php:1089 ../../include/functions_reporting.php:4665
    +#: ../../include/functions_reporting.php:4708
    +msgid "No data to display within the selected interval"
    +msgstr "選択した期間では表示するデータがありません"
    +
    +#: ../../include/functions_graph.php:2635
    +msgid "Not fired alerts"
    +msgstr "未発報アラート"
    +
    +#: ../../include/functions_graph.php:2654 ../../include/functions_graph.php:2790
    +#: ../../include/functions_graph.php:2888 ../../include/functions_graph.php:3858
    +#: ../../include/functions_reporting.php:1931 ../../include/functions_reporting.php:2186
    +#: ../../include/functions_reporting.php:2201 ../../include/functions_reporting.php:2229
    +#: ../../include/functions_reporting.php:2261 ../../include/functions_reporting.php:3820
    +#: ../../include/functions_reporting.php:4188 ../../include/functions_reporting.php:4216
    +#: ../../include/functions_reporting.php:4248 ../../include/functions_reporting.php:5221
    +#: ../../include/functions_reporting.php:10852
    +#: ../../include/functions_reporting.php:10880
    +#: ../../include/functions_reporting.php:10912
    +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:514
    +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:479
    +msgid "other"
    +msgstr "その他"
    +
    +#: ../../include/functions_graph.php:3395 ../../include/functions_ui.php:3815
    +#: ../../include/functions_events.php:108 ../../include/functions_events.php:2742
    +#: ../../operation/events/events.php:608
    +msgid "SYSTEM"
    +msgstr "システム"
    +
    +#: ../../include/functions_graph.php:5459
    +msgid "Main node"
    +msgstr "メインノード"
    +
    +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
    +#: ../../include/functions_gis.php:36
    +msgid "Hierarchy of agents"
    +msgstr "エージェントの階層"
    +
    +#: ../../include/functions_treeview.php:52
    +msgid "There was a problem loading module"
    +msgstr "モジュールの読み込みで問題が発生しました。"
    +
    +#: ../../include/functions_treeview.php:342
    +msgid "Go to module edition"
    +msgstr "モジュールの編集へ行く"
    +
    +#: ../../include/functions_treeview.php:393
    +msgid "There was a problem loading alerts"
    +msgstr "アラートの読み込みで問題が発生しました。"
    +
    +#: ../../include/functions_treeview.php:478
    +msgid "Go to alerts edition"
    +msgstr "アラートの編集へ行く"
    +
    +#: ../../include/functions_treeview.php:564 ../../operation/agentes/agent_fields.php:24
    +#: ../../operation/agentes/custom_fields.php:24
    +#: ../../operation/agentes/estado_generalagente.php:62
    +msgid "There was a problem loading agent"
    +msgstr "エージェントのロードに失敗しました。"
    +
    +#: ../../include/functions_treeview.php:634
    +#: ../../operation/agentes/estado_generalagente.php:505
    +msgid "Other IP addresses"
    +msgstr "他のIPアドレス"
    +
    +#: ../../include/functions_treeview.php:676
    +msgid "Next agent contact"
    +msgstr "次の接続予定"
    +
    +#: ../../include/functions_treeview.php:703
    +msgid "Edit cluster"
    +msgstr "クラスタ編集"
    +
    +#: ../../include/functions_treeview.php:707
    +msgid "Go to agent edition"
    +msgstr "エージェントの編集へ行く"
    +
    +#: ../../include/functions_treeview.php:719
    +msgid "Agent data"
    +msgstr "エージェントデータ"
    +
    +#: ../../include/functions_treeview.php:750
    +#: ../../operation/agentes/estado_generalagente.php:471
    +msgid "Position (Long, Lat)"
    +msgstr "位置 (経度、緯度)"
    +
    +#: ../../include/functions_treeview.php:767
    +#: ../../operation/agentes/estado_generalagente.php:513
    +msgid "Timezone Offset"
    +msgstr "タイムゾーンオフセット"
    +
    +#: ../../include/functions_treeview.php:799
    +msgid "Advanced information"
    +msgstr "拡張情報"
    +
    +#: ../../include/functions_treeview.php:812
    +msgid "Agent access rate (24h)"
    +msgstr "エージェントアクセス頻度(過去24時間)"
    +
    +#: ../../include/functions_treeview.php:878
    +#: ../../operation/agentes/pandora_networkmap.view.php:1234
    +#: ../../operation/agentes/estado_generalagente.php:720
    +msgid "Interface traffic"
    +msgstr "インタフェーストラフィック"
    +
    +#: ../../include/functions_treeview.php:901
    +msgid "Interface information"
    +msgstr "インタフェース情報"
    +
    +#: ../../include/functions_menu.php:486
    +msgid "Configure user"
    +msgstr "ユーザ設定"
    +
    +#: ../../include/functions_menu.php:487
    +msgid "Configure profile"
    +msgstr "プロファイル設定"
    +
    +#: ../../include/functions_menu.php:489
    +msgid "Module templates management"
    +msgstr "モジュールテンプレート管理"
    +
    +#: ../../include/functions_menu.php:490
    +msgid "Inventory modules management"
    +msgstr "インベントリモジュール管理"
    +
    +#: ../../include/functions_menu.php:497
    +msgid "Builder visual console"
    +msgstr "ビジュアルコンソールビルダ"
    +
    +#: ../../include/functions_menu.php:499
    +msgid "View reporting"
    +msgstr "レポート表示"
    +
    +#: ../../include/functions_menu.php:500
    +msgid "Graph viewer"
    +msgstr "グラフ表示"
    +
    +#: ../../include/functions_menu.php:502
    +msgid "Manage custom graphs"
    +msgstr "カスタムグラフ管理"
    +
    +#: ../../include/functions_menu.php:503
    +msgid "View graph containers"
    +msgstr "グラフコンテナ表示"
    +
    +#: ../../include/functions_menu.php:504
    +msgid "Manage graph containers"
    +msgstr "グラフコンテナ管理"
    +
    +#: ../../include/functions_menu.php:505
    +msgid "View graph templates"
    +msgstr "グラフテンプレート表示"
    +
    +#: ../../include/functions_menu.php:506
    +msgid "Manage graph templates"
    +msgstr "グラフテンプレート管理"
    +
    +#: ../../include/functions_menu.php:507
    +msgid "Graph template items"
    +msgstr "グラフテンプレートアイテム"
    +
    +#: ../../include/functions_menu.php:508
    +msgid "Graph template wizard"
    +msgstr "グラフテンプレートウィザード"
    +
    +#: ../../include/functions_menu.php:512
    +msgid "Manage GIS Maps"
    +msgstr "GIS マップ管理"
    +
    +#: ../../include/functions_menu.php:515
    +msgid "Manage messages"
    +msgstr "メッセージ管理"
    +
    +#: ../../include/functions_menu.php:517
    +msgid "Manage module groups"
    +msgstr "モジュールグループ管理"
    +
    +#: ../../include/functions_menu.php:518
    +msgid "Manage custom field"
    +msgstr "カスタムフィールド管理"
    +
    +#: ../../include/functions_menu.php:520
    +msgid "Manage alert actions"
    +msgstr "アラートアクション管理"
    +
    +#: ../../include/functions_menu.php:521
    +msgid "Manage commands"
    +msgstr "コマンド管理"
    +
    +#: ../../include/functions_menu.php:523
    +msgid "Manage export targets"
    +msgstr "エクスポートターゲット管理"
    +
    +#: ../../include/functions_menu.php:525 ../../operation/menu.php:138
    +msgid "SNMP trap generator"
    +msgstr "SNMPトラップジェネレータ"
    +
    +#: ../../include/functions_menu.php:526 ../../operation/menu.php:127
    +msgid "SNMP console"
    +msgstr "SNMPコンソール"
    +
    +#: ../../include/functions_menu.php:528
    +msgid "Manage incident"
    +msgstr "インシデント管理"
    +
    +#: ../../include/functions_menu.php:530
    +msgid "Manage groups"
    +msgstr "グループ管理"
    +
    +#: ../../include/functions_menu.php:590
    +msgid "Administration"
    +msgstr "システム管理"
    +
    +#: ../../include/functions_incidents.php:29 ../../include/functions_incidents.php:55
    +msgid "Informative"
    +msgstr "情報"
    +
    +#: ../../include/functions_incidents.php:30 ../../include/functions_incidents.php:59
    +#: ../../include/functions_netflow.php:1845
    +msgid "Low"
    +msgstr "低い"
    +
    +#: ../../include/functions_incidents.php:31 ../../include/functions_incidents.php:63
    +#: ../../include/functions_netflow.php:1846
    +msgid "Medium"
    +msgstr "中くらい"
    +
    +#: ../../include/functions_incidents.php:32 ../../include/functions_incidents.php:67
    +msgid "Serious"
    +msgstr "深刻"
    +
    +#: ../../include/functions_incidents.php:33 ../../include/functions_incidents.php:71
    +msgid "Very serious"
    +msgstr "とても深刻"
    +
    +#: ../../include/functions_incidents.php:95 ../../include/functions_incidents.php:116
    +msgid "Active incidents"
    +msgstr "アクティブ"
    +
    +#: ../../include/functions_incidents.php:96 ../../include/functions_incidents.php:120
    +msgid "Active incidents, with comments"
    +msgstr "アクティブ(コメント付き)"
    +
    +#: ../../include/functions_incidents.php:97 ../../include/functions_incidents.php:124
    +msgid "Rejected incidents"
    +msgstr "却下"
    +
    +#: ../../include/functions_incidents.php:98 ../../include/functions_incidents.php:128
    +msgid "Expired incidents"
    +msgstr "期限切れ"
    +
    +#: ../../include/functions_incidents.php:99 ../../include/functions_incidents.php:132
    +msgid "Closed incidents"
    +msgstr "終了"
    +
    +#: ../../include/help/clippy/topology_group.php:35
    +msgid "Topology Group"
    +msgstr "トポロジグループ"
    +
    +#: ../../include/help/clippy/topology_group.php:35
    +msgid ""
    +"Please note that group topology maps do not show the parent relationship between "
    +"nodes, it only shows the group parentship and the agent distribution inside them. "
    +msgstr ""
    +"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グループ"
    +"の親子関係とその中にあるエージェントのみを表示します。 "
    +
    +#: ../../include/help/clippy/homepage.php:75
    +msgid "Hi, can I help you?"
    +msgstr "こんにちは、お手伝いしましょうか?"
    +
    +#: ../../include/help/clippy/homepage.php:75
    +#, php-format
    +msgid ""
    +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can follow "
    +"my steps to do basic tasks in %s or you can close me and never see me again."
    +msgstr ""
    +"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私の手順"
    +"に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わないようにすること"
    +"ができます。"
    +
    +#: ../../include/help/clippy/homepage.php:75
    +msgid "Close this wizard and don't open it again."
    +msgstr "このウィザードを閉じて、再度開かないでください。"
    +
    +#: ../../include/help/clippy/homepage.php:79
    +msgid "Which task would you like to do first?"
    +msgstr "どのタスクを最初に実行したいですか。"
    +
    +#: ../../include/help/clippy/homepage.php:79
    +#, php-format
    +msgid "Ping a Linux or Windows server using a %s agent."
    +msgstr "%s エージェントで Linux または Windows サーバへの ping を実行します。"
    +
    +#: ../../include/help/clippy/homepage.php:79
    +msgid "Create a alert by email in a critical module."
    +msgstr "障害モジュールで email によるアラートを作成します。"
    +
    +#: ../../include/help/clippy/homepage.php:190
    +#, php-format
    +msgid "The first thing you have to do is to setup the e-mail config on the %s Server."
    +msgstr "最初に実行すべきは、%s サーバでの e-mail 設定です。"
    +
    +#: ../../include/help/clippy/homepage.php:190
    +msgid "If you have it already configured you can go to the next step."
    +msgstr "すでに設定済であれば、次のステップへ行きます。"
    +
    +#: ../../include/help/clippy/homepage.php:195
    +msgid "Now, pull down the Manage alerts menu and click on Actions. "
    +msgstr "ここで、アラート管理メニューからアクションをクリックします。 "
    +
    +#: ../../include/help/clippy/module_unknow.php:35
    +msgid "You have unknown modules in this agent."
    +msgstr "このエージェントには不明モジュールがあります。"
    +
    +#: ../../include/help/clippy/module_unknow.php:35
    +msgid ""
    +"Unknown modules are modules which receive data normally at least in one occassion, "
    +"but at this time are not receving data. Please check our troubleshoot help page to "
    +"help you determine why you have unknown modules."
    +msgstr ""
    +"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデータを受信"
    +"していないモジュールです。なぜ不明モジュールがあるのか原因を特定するには、トラブル"
    +"シュートのためのヘルプページを確認してください。"
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"Please note that you have your agent setup to do not add new modules coming from the "
    +"data XML."
    +msgstr ""
    +"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっているこ"
    +"とに注意してください。"
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"That means if you have a local plugin or add manually new modules to the "
    +"configuration file, you won't have it in your agent, unless you first create manually "
    +"in the interface (with the exact name and type as coming in the XML file)."
    +msgstr ""
    +"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加した場合"
    +"は、インタフェースで手動作成するまでエージェントに反映されないということを意味します"
    +"(正しい名前とタイプは XML で送られます)。"
    +
    +#: ../../include/help/clippy/modules_not_learning_mode.php:46
    +msgid ""
    +"You should use the \"normal\" mode (non learn) only when you don't intend to add more "
    +"modules to the agent."
    +msgstr ""
    +"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使います。"
    +
    +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
    +msgid ""
    +"The last step is to check the alert created. Click on the round icon to force the "
    +"action execution and after a few minutes you will receive the alert in your email."
    +msgstr ""
    +"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイコンをク"
    +"リックします。数分のうちにアラートをメールで受信するでしょう。"
    +
    +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
    +msgid "And restart your pandora server to read again general configuration tokens."
    +msgstr "そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
    +
    +#: ../../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:49
    +msgid ""
    +"Now, you have to go to the monitors list and look for a critical module to apply the "
    +"alert."
    +msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。"
    +
    +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
    +msgid ""
    +"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
    +msgstr ""
    +"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を選択し"
    +"ます。"
    +
    +#: ../../include/help/clippy/agent_out_of_limits.php:35
    +msgid "Agent contact date passed it's ETA!."
    +msgstr "エージェント接続日時が予想時間を過ぎました。"
    +
    +#: ../../include/help/clippy/agent_out_of_limits.php:35
    +msgid ""
    +"This happen when your agent stopped reporting or the server have any problem (too "
    +"load or just down). Check also connectivity between the agent and the server."
    +msgstr ""
    +"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)していると"
    +"きにこれが起こります。エージェントとサーバの間の通信も確認してください。"
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
    +msgid "I'm going to show you how to monitor a server."
    +msgstr "サーバの監視の仕方をお見せします。"
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38
    +msgid "Please, type an agent to save the modules for monitoring a server."
    +msgstr "サーバ監視のモジュールを保存するためにエージェントを入力してください。"
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43
    +msgid "If you have typed the name correctly you will see the agent."
    +msgstr "正しく名前を入力したら、エージェントが表示されます。"
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57
    +msgid "Now, please choose the agent you searched."
    +msgstr "検索したエージェントを選択してください。"
    +
    +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62
    +msgid "Choose the agent and click on the name."
    +msgstr "エージェントを選択し名前をクリックします。"
    +
    +#: ../../include/help/clippy/modules_not_init.php:35
    +msgid "You have non initialized modules"
    +msgstr "未初期化モジュールがあります。"
    +
    +#: ../../include/help/clippy/modules_not_init.php:35
    +msgid ""
    +"This happen when you have just created a module and it's not executed at first time. "
    +"Usually in a few seconds should be initialized and you will be able to see in main "
    +"view. If you keep non-init modules for more than 24hr (due a problem in it's "
    +"execution or configuration) they will be automatically deleted by the system. Non-"
    +"init are not visible in the “main view”, you can see/edit them in the module "
    +"administration section, in the agent administrator."
    +msgstr ""
    +"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で初期化さ"
    +"れメイン画面で参照できるようになります。24時間以上(実行や設定に問題がある等で)未初期化"
    +"モジュールが放置された場合は、システムにより自動的に削除されます。未初期化モジュール"
    +"は、メインがメインに表示されません。エージェント管理のモジュール管理画面でのみ参照や編"
    +"集ができます。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
    +msgid "Fill the name of your action."
    +msgstr "アクション名を入力します。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38
    +msgid ""
    +"Select the group in the drop-down list and filter for ACL (the user in this group can "
    +"use your action to create an alert)."
    +msgstr ""
    +"ドロップダウンリストのグループとACLフィルタ(アラート作成のためにこのグループのユーザが"
    +"あなたのアクションを利用できます)を選択してください。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42
    +msgid "In the command field select \"email\"."
    +msgstr "コマンドフィールドで \"email\" を選択します。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46
    +msgid "In the threshold field enter the seconds. The help icon show more information."
    +msgstr ""
    +"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示します。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
    +msgid ""
    +"In the first field enter the email address/addresses where you want to receive the "
    +"email alerts separated with comas ( , ) or white spaces."
    +msgstr ""
    +"最初のフィールドにメールでアラートを受け取りたい email アドレスを入力してください。カ"
    +"ンマ(,)またはスペース区切りで複数指定できます。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56
    +msgid ""
    +"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for each name."
    +msgstr ""
    +"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが利用"
    +"できます。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
    +msgid ""
    +"In the text field, you can also use macros. Get more information about the macros by "
    +"clicking on the help icon."
    +msgstr ""
    +"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイコンをク"
    +"リックしてください。"
    +
    +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
    +msgid "Click on Create button to create the action."
    +msgstr "アクションを作成するには、作成ボタンをクリックします。"
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid "Data Configuration Module."
    +msgstr "データ設定モジュール"
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid ""
    +"Please note that information provided here affects how the agent collect information "
    +"and generate the data XML. Any data/configuration reported by the agent, different "
    +"from data or description is discarded, and the configuration shown in the console "
    +"prevails over any configuration coming from the agent, this applies for example for "
    +"crit/warn thresholds, interval, module group, min/max value, tags, etc."
    +msgstr ""
    +"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で影響が"
    +"あるということに注意してください。エージェントから送られてくるデータや設定のうち、デー"
    +"タおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、最小・最大の値、タグな"
    +"どは、コンソールに設定されているものが優先されます。"
    +
    +#: ../../include/help/clippy/data_configuration_module.php:35
    +msgid ""
    +"Information imported FIRST time from the XML will fill the information you can see in "
    +"the console, but after the first import, system will ignore any update coming from "
    +"the XML/Agent."
    +msgstr ""
    +"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができます"
    +"が、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無視します。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
    +msgid "Now you must go to Modules. Don't worry I'll lead you."
    +msgstr "ここでモジュールへ行きます。誘導しますので心配はいりません。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39
    +msgid "Click in this tab.."
    +msgstr "このタブをクリックします。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53
    +msgid "Now you must create the module. Don't worry, i'll teach you."
    +msgstr ""
    +"ここでモジュールを作成する必要があります。心配する必要はありません。お教えします。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57
    +msgid "Choose the network server module."
    +msgstr "ネットワークサーバモジュールを選択します。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61
    +msgid "And click the button."
    +msgstr "そしてボタンをクリックします。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
    +msgid "Now you must create the module. Don't worry, i'll teach you ."
    +msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
    +msgid "Now we are going to fill the form."
    +msgstr "ここでフォームに入力します。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83
    +msgid "Please choose Network Management."
    +msgstr "ネットワーク管理を選択してください。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87
    +msgid "Choose the component named \"Host alive\"."
    +msgstr "コンポーネント名 \"Host alive\" を選択してください。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91
    +msgid "You can change the name if you want."
    +msgstr "必要であれば名前を変更できます。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95
    +msgid "Check if the IP showed is the IP of your machine."
    +msgstr "表示された IP があなたのマシンの IP かどうか確認します。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99
    +msgid "And only to finish it is clicking this button."
    +msgstr "そしてこのボタンをクリックするだけで終了です。"
    +
    +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
    +msgid ""
    +"Congrats! Your module has been created. 
    and the status color is blue.
    That color means that the module hasn't been executed for the first time. In " +"the next seconds, if there is no problem, the status color will turn into red " +"or green." +msgstr "" +"おめでとうございます! モジュールが作成されました。
    そして、状態の色は で" +"す。
    この色は、モジュールの初回実行が完了していないことを意味しています。問題が" +"なければ数秒のうちに状態の色がまたはに変わります。" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "アラートを追加するために、アラートタブをクリックしフォームに入力します。" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "障害モジュールを選択します。" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "テンプレートで \"Critical Condition\" を選択します。" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "ここで事前に作成したアクションを選択します。" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "アラートを作成するために、アラートの追加ボタンをクリックします。" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the eye tab." +msgstr "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "実行キュー" + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your server is " +"too loaded and/or not properly configured. This could be something temporal, or a " +"bottleneck. One possible solution is increase number of server threads, but you " +"should consider getting support about this." +msgstr "" +"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、または" +"サーバが正しく設定されていません。これは一時的なものかもしれませんが、ボトルネックにな" +"ります。一つの解決策としてはサーバのスレッド数を増やすことです。しかし、これについては" +"支援を得ることを考慮した方がよいでしょう。" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "全てのサーバが停止しています。" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next command: " +"\"sudo /etc/init.d/pandora_server restart\". It's possible need introduce root pass." +msgstr "" +"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server " +"restart\" を実行します。root のパスワードが必要です。" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "エージェントの間隔" + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds is not " +"recommended. This will impact seriously in the performance of the server. For " +"example, having 200 agents with one minute interval, is the same than having 1000 " +"agents with a 5 minute interval. The probability of getting unknown modules is " +"higher, and the impact on the server is higher because it requires a shorter response " +"time." +msgstr "" +"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意してくださ" +"い。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間隔で 200エー" +"ジェントがある場合は、5分間隔で 1000エージェントがあるのと同じです。おそらく短時間の応" +"答が必要になるため、不明モジュールが多くなりサーバへのインパクトは大きくなるでしょう。" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module to apply " +"the alert." +msgstr "" +"ここでアラートを適用するには、監視一覧へ行き \"障害\" 状態のモジュールを探します。" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical status, type " +"it in this field to make the module list shorter. You can write the entire name or " +"just a part of it." +msgstr "" +"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧を短くす" +"るためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力ができます。" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "フィルタしたモジュール一覧は、表示ボタンをクリックします。" + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"ここでモジュールを編集するには、タイプカラムにあるスパナアイコンをクリックします。" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "The configuration of email for the task email is in the enterprise setup:" +msgstr "タスクメールの設定は、Enterprise 設定にあります:" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "Please check if the email configuration is correct." +msgstr "メール設定が正しいか確認してください。" + +#: ../../include/functions_profile.php:188 ../../operation/users/user_edit.php:814 +#: ../../operation/users/user_edit.php:823 +msgid "Profiles/Groups assigned to this user" +msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" + +#: ../../include/functions_network.php:34 +msgid "Top listeners" +msgstr "上位の受信先" + +#: ../../include/functions_network.php:35 +msgid "Top talkers" +msgstr "上位の発信元" + +#: ../../include/functions_network.php:45 +msgid "Top TCP protocols" +msgstr "上位の TCP プロトコル" + +#: ../../include/functions_network.php:46 +msgid "Top UDP protocols" +msgstr "上位の UDP プロトコル" + +#: ../../include/functions_ui.php:287 +msgid "Information" +msgstr "情報" + +#: ../../include/functions_ui.php:465 +msgid "Request successfully processed" +msgstr "要求された処理を実行しました。" + +#: ../../include/functions_ui.php:469 +msgid "Error processing request" +msgstr "要求された処理の実行に失敗しました。" + +#: ../../include/functions_ui.php:625 +msgid "" +"Is possible that this view uses part of information which your user has not access" +msgstr "あなたのユーザでアクセスできない情報の一部を利用している可能性があります" + +#: ../../include/functions_ui.php:874 +msgid "Software" +msgstr "ソフトウェア" + +#: ../../include/functions_ui.php:1361 +msgid "The alert would fire when the value is over " +msgstr "取得した値が 以上になったら、アラートを発生させます。" + +#: ../../include/functions_ui.php:1366 +msgid "The alert would fire when the value is under " +msgstr "取得した値が 未満になったら、アラートを発生させます。" + +#: ../../include/functions_ui.php:1381 +msgid "Unknown option." +msgstr "不明なオプション。" + +#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2410 +msgid "the Flexible Monitoring System" +msgstr "the Flexible Monitoring System" + +#: ../../include/functions_ui.php:2113 ../../include/functions_ui.php:2139 +#, php-format +msgid "Total items: %s" +msgstr "全アイテム数: %s" + +#: ../../include/functions_ui.php:2540 +msgid "Unknown type" +msgstr "不明なタイプ" + +#: ../../include/functions_ui.php:3443 +msgid "No matching records found" +msgstr "マッチするレコードが見つかりません" + +#: ../../include/functions_ui.php:3444 +msgid "No data available in table" +msgstr "テーブルにデータがありません" + +#: ../../include/functions_ui.php:3536 ../../include/functions_ui.php:3537 +msgid "Export current page to CSV" +msgstr "現在のページを CSV へエクスポート" + +#: ../../include/functions_ui.php:3806 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:599 +#: ../../operation/events/events.php:663 +msgid "ALERT" +msgstr "アラート" + +#: ../../include/functions_ui.php:3884 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:523 +msgid "MAINTENANCE" +msgstr "メンテナンス" + +#: ../../include/functions_ui.php:3889 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:528 +msgid "INFORMATIONAL" +msgstr "情報" + +#: ../../include/functions_ui.php:3909 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:538 +msgid "MINOR" +msgstr "マイナー" + +#: ../../include/functions_ui.php:3914 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:533 +msgid "MAJOR" +msgstr "メジャー" + +#: ../../include/functions_ui.php:4728 ../../include/functions_html.php:930 +#: ../../include/functions_html.php:3399 ../../include/functions_html.php:3891 +#: ../../include/functions_reporting.php:11657 +#: ../../include/functions_reporting.php:11814 +#: ../../include/functions_reporting.php:11828 +#: ../../include/functions_reporting.php:14167 +#: ../../include/functions_reporting.php:14242 +msgid "Enterprise version not installed" +msgstr "Enterprise 版がインストールされていません" + +#: ../../include/functions_ui.php:5110 +msgid "Type at least two characters to search." +msgstr "2文字以上入力するとマッチするエージェント名が検索されます" + +#: ../../include/functions_ui.php:6049 +msgid "Unhandled error" +msgstr "処理できないエラー" + +#: ../../include/functions_ui.php:6050 +msgid "An unhandled error occurs" +msgstr "処理できないエラーが発生しました" + +#: ../../include/functions_ui.php:6321 +#, php-format +msgid "" +"These controls are using the timezone of the system (%s) instead of yours (%s). The " +"difference with your time zone in hours is %s." +msgstr "" +"これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイムゾーン" +"(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。" + +#: ../../include/functions_ui.php:6642 +msgid "Execute query" +msgstr "クエリの実行" + +#: ../../include/functions_ui.php:6664 +msgid "Results" +msgstr "結果" + +#: ../../include/functions_ui.php:6728 +msgid "Show password" +msgstr "パスワードを表示" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:287 +msgid "Last value: " +msgstr "最新の値: " + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "エージェントが追加されました。" + +#: ../../include/functions_visual_map.php:2824 +msgid "Modules successfully added to layout" +msgstr "モジュールが追加されました。" + +#: ../../include/functions_visual_map.php:3157 +msgid "Agents successfully added to layout" +msgstr "レイアウトにエージェントを追加しました" + +#: ../../include/functions_visual_map.php:3553 +msgid "Cannot load the visualmap" +msgstr "ビジュアルマップを読み込めません" + +#: ../../include/functions_visual_map.php:4222 +#: ../../include/rest-api/models/VisualConsole/Item.php:2107 +msgid "Bars graph" +msgstr "棒グラフ" + +#: ../../include/functions_visual_map.php:4232 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 +msgid "Percentile bar" +msgstr "パーセント(バー)" + +#: ../../include/functions_visual_map.php:4237 +#: ../../include/rest-api/models/VisualConsole/Item.php:2123 +msgid "Circular progress bar" +msgstr "円形進捗バー" + +#: ../../include/functions_clippy.php:152 +#, php-format +msgid "%s assistant" +msgstr "%s アシスタント" + +#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "ウィザードの終了" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "次へ →" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "← 戻る" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "ヘルプツアーを終了しますか。" + +#: ../../include/functions_alerts.php:674 +msgid "Max and min" +msgstr "最大および最小" + +#: ../../include/functions_alerts.php:677 +msgid "Equal to" +msgstr "同じ値" + +#: ../../include/functions_alerts.php:678 +msgid "Not equal to" +msgstr "異なる値" + +#: ../../include/functions_alerts.php:682 +msgid "On Change" +msgstr "変化発生" + +#: ../../include/functions_alerts.php:684 +msgid "Not normal status" +msgstr "非正常状態" + +#: ../../include/functions_alerts.php:1685 +msgid "No actions defined" +msgstr "アクションが定義されていません" + +#: ../../include/functions_alerts.php:2658 +msgid "Alert and command group does not match" +msgstr "アラートとコマンドグループが一致しません" + +#: ../../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_db.php:147 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "データベース %s@%s への接続エラー。" + +#: ../../include/functions_db.php:1900 +msgid "Database debug" +msgstr "DBのデバッグ" + +#: ../../include/functions_db.php:1917 +msgid "SQL sentence" +msgstr "SQL 構文" + +#: ../../include/functions_db.php:1919 +msgid "Rows" +msgstr "行" + +#: ../../include/functions_db.php:1920 +msgid "Saved" +msgstr "保存" + +#: ../../include/functions_db.php:1921 +msgid "Time (ms)" +msgstr "時間 (ミリ秒)" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 +msgid "Add new range" +msgstr "新しい範囲を追加" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 +msgid "Current ranges" +msgstr "現在の範囲" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1994 +msgid "width" +msgstr "幅" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:2004 +msgid "height" +msgstr "高さ" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:2026 +msgid "X" +msgstr "X" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 +#: ../../include/rest-api/models/VisualConsole/Item.php:2063 +msgid "Show on top" +msgstr "上に表示" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "枠の幅" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "透明に塗り潰す" + +#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 +msgid "Module name color" +msgstr "モジュール名の色" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:410 +msgid "Show Last Value" +msgstr "最新の値を表示" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Avg Value" +msgstr "平均値" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 +msgid "Graph Type" +msgstr "グラフタイプ" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 +msgid "12h" +msgstr "12時間" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 +msgid "Legend color" +msgstr "凡例の色" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:376 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:336 +msgid "Show legend" +msgstr "凡例を表示" + +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 +#: ../../include/rest-api/models/VisualConsole/View.php:712 +#: ../../include/rest-api/models/VisualConsole/View.php:791 +msgid "Failed to connect to node" +msgstr "ノードへの接続に失敗しました" + +#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 +msgid "Title color" +msgstr "タイトルの色" + +#: ../../include/rest-api/models/VisualConsole/View.php:66 +msgid "Label settings" +msgstr "ラベル設定" + +#: ../../include/rest-api/models/VisualConsole/View.php:72 +#: ../../include/rest-api/models/VisualConsole/View.php:104 +msgid "General settings" +msgstr "一般設定" + +#: ../../include/rest-api/models/VisualConsole/View.php:78 +#: ../../include/rest-api/models/VisualConsole/View.php:94 +#: ../../include/rest-api/models/VisualConsole/View.php:110 +msgid "Specific settings" +msgstr "特定の設定" + +#: ../../include/rest-api/models/VisualConsole/View.php:213 +msgid "Item type not valid [" +msgstr "アイテムタイプが不正です [" + +#: ../../include/rest-api/models/VisualConsole/View.php:218 +msgid "Item type has no getFormInputs method [" +msgstr "アイテムタイプに getFormInputs メソッドがありません [" + +#: ../../include/rest-api/models/VisualConsole/View.php:729 +msgid "NetworkLink from" +msgstr "次からのネットワークリンク" + +#: ../../include/rest-api/models/VisualConsole/View.php:733 +#: ../../include/rest-api/models/VisualConsole/View.php:812 +#, php-format +msgid "Interface %s status" +msgstr "インタフェース %s の状態" + +#: ../../include/rest-api/models/VisualConsole/View.php:738 +#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../operation/agentes/interface_traffic_graph_win.php:78 +msgid "In" +msgstr "入力" + +#: ../../include/rest-api/models/VisualConsole/View.php:739 +#: ../../include/rest-api/models/VisualConsole/View.php:818 +#: ../../operation/agentes/interface_traffic_graph_win.php:79 +msgid "Out" +msgstr "出力" + +#: ../../include/rest-api/models/VisualConsole/View.php:808 +msgid "NetworkLink to" +msgstr "次へのネットワークリンク" + +#: ../../include/rest-api/models/VisualConsole/View.php:860 +#, php-format +msgid "Failed to generate charts: %s" +msgstr "グラフ生成に失敗しました: %s" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1964 +msgid "Label position" +msgstr "ラベルの位置" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2051 +msgid "Link enabled" +msgstr "リンクが有効" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2093 +msgid "Static graph" +msgstr "状態を表すアイコン" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2111 +msgid "Event History Graph" +msgstr "イベント履歴グラフ" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2119 +msgid "Percentile bubble" +msgstr "パーセンタイルバブル" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2584 +#: ../../include/rest-api/models/VisualConsole/Item.php:2585 +msgid "Image Vc" +msgstr "Vc 画像" + +#: ../../include/functions_notifications.php:807 +msgid "Subtype customization" +msgstr "サブタイプのカスタマイズ" + +#: ../../include/functions_notifications.php:834 +msgid "Notified users" +msgstr "通知されたユーザ" + +#: ../../include/functions_notifications.php:834 +msgid "Notified groups" +msgstr "通知されたグループ" + +#: ../../include/functions_notifications.php:835 +msgid "Add users" +msgstr "ユーザ追加" + +#: ../../include/functions_notifications.php:835 +msgid "Add groups" +msgstr "グループ追加" + +#: ../../include/functions_notifications.php:836 +msgid "Delete users" +msgstr "ユーザ削除" + +#: ../../include/functions_notifications.php:836 +msgid "Delete groups" +msgstr "グループ削除" + +#: ../../include/functions_notifications.php:941 +msgid "Remove elements" +msgstr "要素削除" + +#: ../../include/functions_notifications.php:1058 +msgid "Click here to get more information" +msgstr "詳細についてはこちらをクリックしてください" + +#: ../../include/functions_reports.php:638 ../../include/functions_reports.php:642 +#: ../../include/functions_reports.php:647 ../../include/functions_reports.php:653 +#: ../../include/functions_reports.php:660 ../../include/functions_reports.php:664 +#: ../../include/functions_reports.php:668 ../../include/functions_reports.php:675 +#: ../../include/functions_reports.php:681 ../../include/functions_reports.php:686 +#: ../../include/functions_groups.php:123 ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:119 ../../operation/agentes/ver_agente.php:1560 +msgid "Graphs" +msgstr "グラフ" + +#: ../../include/functions_reports.php:639 ../../include/functions_reports.php:1090 +#: ../../include/functions_reporting.php:10288 +#: ../../include/functions_reporting.php:10448 +msgid "Simple graph" +msgstr "単一グラフ" + +#: ../../include/functions_reports.php:676 +msgid "Automatic combined Graph" +msgstr "自動合成グラフ" + +#: ../../include/functions_reports.php:682 +msgid "Availability graph" +msgstr "可用性グラフ" + +#: ../../include/functions_reports.php:687 +msgid "Module Histogram graph" +msgstr "モジュールヒストグラムグラフ" + +#: ../../include/functions_reports.php:693 +msgid "IPAM networks" +msgstr "IPAM ネットワーク" + +#: ../../include/functions_reports.php:724 ../../include/functions_reports.php:728 +msgid "Forecasting" +msgstr "予測" + +#: ../../include/functions_reports.php:729 +msgid "Projection graph" +msgstr "予想グラフ" + +#: ../../include/functions_reports.php:734 +msgid "Avg. value" +msgstr "平均値" + +#: ../../include/functions_reports.php:738 +msgid "Max. value" +msgstr "最大値" + +#: ../../include/functions_reports.php:742 +msgid "Min. value" +msgstr "最小値" + +#: ../../include/functions_reports.php:746 +msgid "Monitor report" +msgstr "モニタ項目レポート" + +#: ../../include/functions_reports.php:750 +msgid "Serialize data" +msgstr "データの並び" + +#: ../../include/functions_reports.php:758 +msgid "Historical Data" +msgstr "保存データ" + +#: ../../include/functions_reports.php:770 ../../include/functions_reports.php:776 +#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:801 +#: ../../include/functions_reports.php:808 ../../include/functions_reports.php:814 +#: ../../include/functions_reports.php:818 ../../include/functions_reports.php:823 +#: ../../include/functions_reports.php:829 +msgid "Grouped" +msgstr "グループ化" + +#: ../../include/functions_reports.php:802 +msgid "Agents/Modules status" +msgstr "エージェント/モジュール状態" + +#: ../../include/functions_reports.php:819 +msgid "Network interfaces" +msgstr "ネットワークインタフェース" + +#: ../../include/functions_reports.php:824 +msgid "Custom Render" +msgstr "カスタムレンダリング" + +#: ../../include/functions_reports.php:834 ../../include/functions_reports.php:838 +msgid "Text/HTML " +msgstr "テキスト/HTML " + +#: ../../include/functions_reports.php:839 +msgid "Import text from URL" +msgstr "URL からテキストをインポート" + +#: ../../include/functions_reports.php:844 +msgid "Module alert report" +msgstr "モジュールアラートレポート" + +#: ../../include/functions_reports.php:848 +msgid "Agent alert report " +msgstr "エージェントアラートレポート " + +#: ../../include/functions_reports.php:854 +msgid "Group alert report" +msgstr "グループアラートレポート" + +#: ../../include/functions_reports.php:860 +msgid "Actions alert report " +msgstr "アクションアラートレポート" + +#: ../../include/functions_reports.php:865 +msgid "Module event report" +msgstr "モジュールイベントレポート" + +#: ../../include/functions_reports.php:869 +msgid "Agent event report" +msgstr "エージェントイベントレポート" + +#: ../../include/functions_reports.php:873 +msgid "Group event report" +msgstr "グループイベントレポート" + +#: ../../include/functions_reports.php:898 +msgid "Inventory changes" +msgstr "インベントリ変更" + +#: ../../include/functions_reports.php:906 ../../include/functions_reporting.php:6589 +msgid "Agent configuration" +msgstr "エージェント設定" + +#: ../../include/functions_reports.php:910 ../../include/functions_reporting.php:4850 +msgid "Group configuration" +msgstr "グループ設定" + +#: ../../include/functions_reports.php:918 +msgid "Netflow data table" +msgstr "Netflow データ表" + +#: ../../include/functions_reports.php:922 +msgid "Netflow summary table" +msgstr "Netflow サマリ表" + +#: ../../include/functions_reports.php:946 +msgid "Network configuration changes" +msgstr "ネットワーク設定変更" + +#: ../../include/functions_reports.php:1073 +msgid "Macro" +msgstr "マクロ" + +#: ../../include/functions_reports.php:1088 ../../include/functions_reports.php:1217 +#: ../../include/functions_reports.php:1237 +msgid "Sql" +msgstr "SQL" + +#: ../../include/functions_reports.php:1089 +msgid "Graph Sql" +msgstr "グラフ SQL" + +#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 +msgid "Please select an item from this list." +msgstr "この一覧からアイテムを選択してください。" + +#: ../../include/functions_html.php:621 ../../include/functions_html.php:5996 +msgid "Please select..." +msgstr "選択してください..." + +#: ../../include/functions_html.php:1592 +msgid "Type to search agents" +msgstr "エージェント検索タイプ" + +#: ../../include/functions_html.php:1606 +msgid "Type to search modules" +msgstr "モジュール検索タイプ" + +#: ../../include/functions_html.php:1677 +msgid "Only common modules" +msgstr "共通モジュールのみ" + +#: ../../include/functions_html.php:2123 +msgid "weeks" +msgstr "週" + +#: ../../include/functions_html.php:2285 +msgid "Month day" +msgstr "日にち" + +#: ../../include/functions_html.php:2287 +msgid "Week day" +msgstr "曜日" + +#: ../../include/functions_html.php:4664 +msgid "Type at least two characters to search the module." +msgstr "モジュールを検索するには、少なくとも二文字入力してください。" + +#: ../../include/functions_html.php:4825 ../../index.php:521 ../../index.php:803 +#: ../../index.php:877 +#, php-format +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "%s はリクエストを確認できません。 もう一度やり直してください。" + +#: ../../include/functions_html.php:5751 +msgid "Type at least two characters to search the user." +msgstr "ユーザを検索するには、少なくとも 2文字入力してください。" + +#: ../../include/functions_html.php:6140 +msgid "Primary group cannot be secondary too." +msgstr "プライマリグループはセカンダリにできません。" + +#: ../../include/functions_register.php:105 +#, php-format +msgid "%s configuration wizard" +msgstr "%s 設定ウィザード" + +#: ../../include/functions_register.php:108 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "%s インスタンスを正常に設定するには、次の情報を入力してください" + +#: ../../include/functions_register.php:165 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches of time." +msgstr "" +"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必要があ" +"ります。" + +#: ../../include/functions_register.php:171 +msgid "E-mail for receiving alerts" +msgstr "アラート受信メールアドレス" + +#: ../../include/functions_register.php:196 +msgid "All fields required" +msgstr "全フィールドが必須です" + +#: ../../include/functions_register.php:205 +msgid "Are you sure you don't want to configure a base email?" +msgstr "基本メールを設定しなくて良いですか?" + +#: ../../include/functions_register.php:207 +msgid "" +"You could change this options later in \"alert actions\" and setting your account." +msgstr "" +"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できます。" + +#: ../../include/functions_massive_operations.php:165 +msgid "Show agents" +msgstr "エージェント表示" + +#: ../../include/functions_config.php:146 +msgid "Failed updated: User did not login." +msgstr "更新失敗: ユーザがログインしていません。" + +#: ../../include/functions_config.php:154 +msgid "Failed updated: User is not admin." +msgstr "更新失敗: ユーザは管理者ではありません。" + +#: ../../include/functions_config.php:188 +msgid "phantomjs config directory" +msgstr "phantomjs 設定ディレクトリ" + +#: ../../include/functions_config.php:204 +msgid "SSL cert path" +msgstr "SSL証明書パス" + +#: ../../include/functions_config.php:212 +msgid "Use cert." +msgstr "証明書利用" + +#: ../../include/functions_config.php:244 +msgid "Integria inventory" +msgstr "Integria インベントリ" + +#: ../../include/functions_config.php:248 ../../include/functions_config.php:1739 +msgid "Integria API password" +msgstr "Integria API パスワード" + +#: ../../include/functions_config.php:252 +msgid "Integria URL" +msgstr "Integria URL" + +#: ../../include/functions_config.php:265 +#: ../../include/class/ExternalTools.class.php:213 +msgid "Sound for Alert fired" +msgstr "アラート発生時のサウンド" + +#: ../../include/functions_config.php:269 +#: ../../include/class/ExternalTools.class.php:243 +msgid "Sound for Monitor critical" +msgstr "障害状態時のサウンド" + +#: ../../include/functions_config.php:273 +#: ../../include/class/ExternalTools.class.php:273 +msgid "Sound for Monitor warning" +msgstr "警告状態時のサウンド" + +#: ../../include/functions_config.php:286 +msgid "License information" +msgstr "ライセンス情報" + +#: ../../include/functions_config.php:316 +msgid "Use custom encoding" +msgstr "エンコードの自動判定の利用" + +#: ../../include/functions_config.php:336 +msgid "Limit parameters bulk" +msgstr "一括処理制限" + +#: ../../include/functions_config.php:340 +msgid "Identification_reminder" +msgstr "識別リマインダ" + +#: ../../include/functions_config.php:344 +msgid "Include_agents" +msgstr "エージェントのインクルード" + +#: ../../include/functions_config.php:348 +msgid "alias_as_name" +msgstr "名前としてのエイリアス" + +#: ../../include/functions_config.php:352 +msgid "Console log enabled" +msgstr "コンソールログ有効化" + +#: ../../include/functions_config.php:356 +msgid "Audit log enabled" +msgstr "監査ログ有効化" + +#: ../../include/functions_config.php:360 +msgid "Module Custom ID read only" +msgstr "モジュールカスタム ID の読み出し専用" + +#: ../../include/functions_config.php:419 +msgid "Replication DB host" +msgstr "複製 DB ホスト" + +#: ../../include/functions_config.php:423 +msgid "Replication DB database" +msgstr "複製データベース" + +#: ../../include/functions_config.php:427 +msgid "Replication DB user" +msgstr "複製 DB ユーザ" + +#: ../../include/functions_config.php:431 +msgid "Replication DB password" +msgstr "複製 DB パスワード" + +#: ../../include/functions_config.php:435 +msgid "Replication DB port" +msgstr "複製 DB ポート" + +#: ../../include/functions_config.php:439 +msgid "Metaconsole agent cache" +msgstr "メタコンソールエージェントキャッシュ" + +#: ../../include/functions_config.php:447 +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:628 +msgid "Secontary start TLS" +msgstr "セカンダリ TLS の開始" + +#: ../../include/functions_config.php:744 +msgid "Saml profile parameters" +msgstr "SAML プロファイルパラメータ" + +#: ../../include/functions_config.php:760 +msgid "2FA all users" +msgstr "全ユーザの二段階認証" + +#: ../../include/functions_config.php:767 +msgid "Session timeout forced to 90 minutes" +msgstr "セッションタイムアウトを 90分に強制" + +#: ../../include/functions_config.php:830 +msgid "Max. days before autodisable deletion" +msgstr "自動無効化エージェントの保持日数" + +#: ../../include/functions_config.php:834 +msgid "Item limit for realtime reports)" +msgstr "リアルタイムレポートのアイテム制限" + +#: ../../include/functions_config.php:866 +msgid "Big Operatiopn Step to purge old data" +msgstr "古いデータ削除のための大きな操作ステップ" + +#: ../../include/functions_config.php:900 +msgid "Max execution event response" +msgstr "最大実行イベント応答" + +#: ../../include/functions_config.php:908 +msgid "SNMP walk binary path" +msgstr "snmpwalk バイナリパス" + +#: ../../include/functions_config.php:912 +msgid "SNMP walk binary path (fallback for v1)" +msgstr "snmpwalk バイナリパス (v1 フォールバック)" + +#: ../../include/functions_config.php:916 +msgid "Default WMI Binary" +msgstr "デフォルト WMI バイナリ" + +#: ../../include/functions_config.php:1019 +msgid "Show QR code header" +msgstr "QR コードヘッダー表示" + +#: ../../include/functions_config.php:1047 +msgid "Custom logo white background" +msgstr "白背景カスタムロゴ" + +#: ../../include/functions_config.php:1075 +msgid "Custom title header" +msgstr "カスタムタイトルヘッダ" + +#: ../../include/functions_config.php:1079 +msgid "Custom subtitle header" +msgstr "カスタムサブタイトルヘッダ" + +#: ../../include/functions_config.php:1103 ../../include/functions_config.php:1143 +msgid "Custom Docs url" +msgstr "カスタムドキュメントURL" + +#: ../../include/functions_config.php:1107 ../../include/functions_config.php:1147 +msgid "Custom support url" +msgstr "カスタムサポートURL" + +#: ../../include/functions_config.php:1119 +msgid "Custom logo metaconsole (white background)" +msgstr "メタコンソールカスタムロゴ(白背景)" + +#: ../../include/functions_config.php:1123 +msgid "Custom logo login metaconsole" +msgstr "メタコンソールログインカスタムロゴ" + +#: ../../include/functions_config.php:1127 +msgid "Custom splash login metaconsole" +msgstr "カスタムスプラッシュログイン メタコンソール" + +#: ../../include/functions_config.php:1131 +msgid "Custom title1 login metaconsole" +msgstr "カスタムタイトル1 メタコンソールログイン" + +#: ../../include/functions_config.php:1135 +msgid "Custom title2 login metaconsole" +msgstr "カスタムタイトル2 メタコンソールログイン" + +#: ../../include/functions_config.php:1139 +msgid "Login background metaconsole" +msgstr "メタコンソールログイン背景" + +#: ../../include/functions_config.php:1163 +msgid "Default line favourite_view for the Visual Console" +msgstr "ビジュアルコンソールのデフォルトお気に入り" + +#: ../../include/functions_config.php:1167 +msgid "Default line menu items for the Visual Console" +msgstr "ビジュアルコンソールのデフォルトメニューアイテム" + +#: ../../include/functions_config.php:1179 +msgid "Default line menu items for the Services" +msgstr "サービス用のデフォルトラインメニューアイテム" + +#: ../../include/functions_config.php:1211 +msgid "Show units in values report" +msgstr "値のレポートに単位を表示" + +#: ../../include/functions_config.php:1219 +msgid "Autohidden menu" +msgstr "メニューを自動的に隠す" + +#: ../../include/functions_config.php:1223 +msgid "visual_animation" +msgstr "ビジュアルアニメーション" + +#: ../../include/functions_config.php:1231 +msgid "Fixed graph" +msgstr "グラフの固定" + +#: ../../include/functions_config.php:1239 +msgid "Paginate module" +msgstr "モジュール画面分割" + +#: ../../include/functions_config.php:1243 +#: ../../include/class/ExternalTools.class.php:303 +msgid "Custom graphviz directory" +msgstr "カスタム graphviz ディレクトリ" + +#: ../../include/functions_config.php:1251 +msgid "Shortened module graph data" +msgstr "短縮モジュールグラフデータ" + +#: ../../include/functions_config.php:1259 +msgid "Show empty groups in group view." +msgstr "グループ表示に空のグループを表示する" + +#: ../../include/functions_config.php:1267 +msgid "Default type of module charts." +msgstr "モジュールグラフのデフォルトタイプ" + +#: ../../include/functions_config.php:1271 +msgid "Default Number of elements in Custom Graph." +msgstr "カスタムグラフのデフォルト要素数" + +#: ../../include/functions_config.php:1275 +msgid "Default type of interface charts." +msgstr "インタフェースグラフのデフォルトタイプ" + +#: ../../include/functions_config.php:1291 +msgid "Display lateral menus with left click" +msgstr "クリックでサイドメニューを表示" + +#: ../../include/functions_config.php:1300 +msgid "Service item padding size" +msgstr "サービス要素の間隔" + +#: ../../include/functions_config.php:1305 +msgid "Default percentil" +msgstr "デフォルトのパーセンテージ" + +#: ../../include/functions_config.php:1309 +msgid "Default full scale (TIP)" +msgstr "デフォルトフルスケール(TIP)" + +#: ../../include/functions_config.php:1313 +msgid "Default soft graphs" +msgstr "デフォルトグラフソフト" + +#: ../../include/functions_config.php:1317 +msgid "Default zoom graphs" +msgstr "デフォルトグラフ拡大率" + +#: ../../include/functions_config.php:1326 +msgid "Default height of the chart image" +msgstr "グラフ画像のデフォルトの高さ" + +#: ../../include/functions_config.php:1348 +msgid "Add the custom post process" +msgstr "カスタム保存倍率を追加" + +#: ../../include/functions_config.php:1356 +msgid "Delete the custom post process" +msgstr "カスタム保存倍率を削除" + +#: ../../include/functions_config.php:1410 +msgid "Add custom module unit" +msgstr "カスタムモジュール単位追加" + +#: ../../include/functions_config.php:1416 +msgid "Delete custom module unit" +msgstr "カスタムモジュール単位削除" + +#: ../../include/functions_config.php:1509 +msgid "IP ElasticSearch server" +msgstr "ElasticSearch サーバ IP" + +#: ../../include/functions_config.php:1513 +msgid "Port ElasticSearch server" +msgstr "ElasticSearch サーバポート番号" + +#: ../../include/functions_config.php:1576 +msgid "Enable history database advanced" +msgstr "ヒストリデータベース詳細の有効化" + +#: ../../include/functions_config.php:1584 +msgid "String Days" +msgstr "文字列日数" + +#: ../../include/functions_config.php:1679 +msgid "eHorus user login" +msgstr "eHorus ユーザログイン" + +#: ../../include/functions_config.php:1691 +msgid "eHorus API hostname" +msgstr "eHorus API ホスト名" + +#: ../../include/functions_config.php:1695 +msgid "eHorus API port" +msgstr "eHorus API ポート" + +#: ../../include/functions_config.php:1699 +msgid "eHorus request timeout" +msgstr "eHorus リクエストタイムアウト" + +#: ../../include/functions_config.php:1703 +msgid "eHorus id custom field" +msgstr "eHorus id カスタムフィールド" + +#: ../../include/functions_config.php:1709 +msgid "Integria user login" +msgstr "Integria ユーザログイン" + +#: ../../include/functions_config.php:1717 +msgid "Integria user" +msgstr "Integria ユーザ" + +#: ../../include/functions_config.php:1721 +msgid "Integria password" +msgstr "Integria パスワード" + +#: ../../include/functions_config.php:1735 +msgid "integria API hostname" +msgstr "Integria API ホスト名" + +#: ../../include/functions_config.php:1743 +msgid "Integria request timeout" +msgstr "Integria 要求タイムアウト" + +#: ../../include/functions_config.php:1747 +msgid "Integria default group" +msgstr "Integria デフォルトグループ" + +#: ../../include/functions_config.php:1751 +msgid "Integria custom response default group" +msgstr "Integria カスタム応答デフォルトグループ" + +#: ../../include/functions_config.php:1755 +msgid "Integria default priority" +msgstr "Integria デフォルト優先順位" + +#: ../../include/functions_config.php:1759 +msgid "Integria custom response default priority" +msgstr "Integria カスタム応答デフォルト優先順位" + +#: ../../include/functions_config.php:1763 +msgid "Integria default creator" +msgstr "Integria デフォルト作成者" + +#: ../../include/functions_config.php:1767 +msgid "Integria default owner" +msgstr "Integria デフォルト所有者" + +#: ../../include/functions_config.php:1771 +msgid "Integria custom response default owner" +msgstr "Integria カスタム応答デフォルト所有者" + +#: ../../include/functions_config.php:1775 +msgid "Integria default ticket type" +msgstr "Integria デフォルトチケットタイプ" + +#: ../../include/functions_config.php:1779 +msgid "Integria custom response default ticket type" +msgstr "Integria カスタム応答デフォルトチケットタイプ" + +#: ../../include/functions_config.php:1783 +msgid "Integria default ticket status" +msgstr "Integria デフォルトチケット状態" + +#: ../../include/functions_config.php:1787 +msgid "Integria custom response default ticket status" +msgstr "Integria カスタム応答デフォルトチケット状態" + +#: ../../include/functions_config.php:1791 +msgid "Integria default ticket title" +msgstr "Integria デフォルトチケットタイトル" + +#: ../../include/functions_config.php:1795 +msgid "Integria custom response default ticket title" +msgstr "Integria カスタム応答デフォルトチケットタイトル" + +#: ../../include/functions_config.php:1799 +msgid "Integria default ticket content" +msgstr "Integria デフォルトチケット内容" + +#: ../../include/functions_config.php:1803 +msgid "Integria custom response default ticket content" +msgstr "Integria カスタム応答デフォルトチケット内容" + +#: ../../include/functions_config.php:1809 +msgid "Module Library User" +msgstr "モジュールライブラリユーザ" + +#: ../../include/functions_config.php:1813 +msgid "Module Library Password" +msgstr "モジュールライブラリパスワード" + +#: ../../include/functions_config.php:1819 +msgid "WebSocket bind address" +msgstr "WebSocket 待受アドレス" + +#: ../../include/functions_config.php:1823 +msgid "WebSocket port" +msgstr "WebSocket ポート" + +#: ../../include/functions_config.php:1846 +#, php-format +msgid "Failed updated: the next values cannot update:
    -%s" +msgstr "更新失敗: 次の値は更新できません:
    -%s" + +#: ../../include/functions_config.php:2406 +#: ../../operation/agentes/networkmap.dinamic.php:226 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../include/functions_config.php:2414 +msgid "PandoraFMS Metaconsole" +msgstr "Pandora FMS メタコンソール" + +#: ../../include/functions_config.php:2418 +msgid "Centralized operation console" +msgstr "中央操作コンソール" + +#: ../../include/functions_config.php:2422 +msgid "PANDORA FMS" +msgstr "PANDORA FMS" + +#: ../../include/get_file.php:57 +msgid "Security error. Please contact the administrator." +msgstr "セキュリティエラー。管理者に連絡してください。" + +#: ../../include/get_file.php:92 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "ファイルが存在しません。管理者に連絡してください。" + +#: ../../include/functions_netflow.php:351 +msgid "Avg. Throughput" +msgstr "平均スループット" + +#: ../../include/functions_netflow.php:431 +msgid "Average bits per second" +msgstr "平均ビット/秒" + +#: ../../include/functions_netflow.php:436 +msgid "Average packets per second" +msgstr "平均パケット/秒" + +#: ../../include/functions_netflow.php:441 +msgid "Average bytes per packet" +msgstr "平均バイト/パケット" + +#: ../../include/functions_netflow.php:1182 +msgid "Area graph" +msgstr "塗り潰しグラフ" + +#: ../../include/functions_netflow.php:1184 ../../operation/agentes/exportdata.php:378 +msgid "Data table" +msgstr "データの表示" + +#: ../../include/functions_netflow.php:1185 +msgid "Top-N connections" +msgstr "トップ N 接続" + +#: ../../include/functions_netflow.php:1186 +msgid "Circular mesh" +msgstr "円形メッシュ" + +#: ../../include/functions_netflow.php:1187 ../../include/functions_netflow.php:1452 +msgid "Host detailed traffic" +msgstr "ホストの詳細トラフィック" + +#: ../../include/functions_netflow.php:1439 +msgid "Sent" +msgstr "送信" + +#: ../../include/functions_netflow.php:1447 +msgid "Received" +msgstr "受信" + +#: ../../include/functions_netflow.php:1628 +msgid "Dst port" +msgstr "宛先ポート" + +#: ../../include/functions_netflow.php:1631 +msgid "Dst IP" +msgstr "宛先 IP" + +#: ../../include/functions_netflow.php:1634 +msgid "Src IP" +msgstr "送信元 IP" + +#: ../../include/functions_netflow.php:1637 +msgid "Src port" +msgstr "送信元ポート" + +#: ../../include/functions_netflow.php:1823 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump バイナリ (%s) が見つかりません!" + +#: ../../include/functions_netflow.php:1830 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" + +#: ../../include/functions_netflow.php:1847 +msgid "High" +msgstr "高い" + +#: ../../include/functions_netflow.php:1848 +msgid "Ultra High" +msgstr "とても高い" + +#: ../../include/functions_netflow.php:1881 +#, php-format +msgid "Agregate by %s" +msgstr "%s 集計" + +#: ../../include/functions_netflow.php:1889 +#, php-format +msgid "Resolution %s" +msgstr "解像度 %s" + +#: ../../include/class/Tree.class.php:775 ../../include/class/Tree.class.php:777 +msgid "Module alerts" +msgstr "モジュールアラート" + +#: ../../include/class/ConfigPEN.class.php:428 +#: ../../include/class/ConfigPEN.class.php:597 +#: ../../include/class/ModuleTemplates.class.php:1074 +msgid "PEN" +msgstr "PEN" + +#: ../../include/class/ConfigPEN.class.php:435 +#: ../../include/class/ConfigPEN.class.php:598 +msgid "Manufacturer" +msgstr "製造元" + +#: ../../include/class/ConfigPEN.class.php:483 +msgid "PEN is required" +msgstr "PEN が必要です" + +#: ../../include/class/ConfigPEN.class.php:509 +msgid "PEN is required." +msgstr "PEN が必要です。" + +#: ../../include/class/ConfigPEN.class.php:513 +msgid "Manufacturer is required" +msgstr "製造元が必要です" + +#: ../../include/class/ConfigPEN.class.php:530 +msgid "This PEN definition does not exist" +msgstr "この PEN 定義がありませえん" + +#: ../../include/class/ConfigPEN.class.php:544 +msgid "created" +msgstr "作成しました" + +#: ../../include/class/ConfigPEN.class.php:550 +msgid "This PEN definition already exists" +msgstr "この PEN 定義はすでに存在します" + +#: ../../include/class/ConfigPEN.class.php:571 +#, php-format +msgid "Succesfully %s" +msgstr "成功 %s" + +#: ../../include/class/ConfigPEN.class.php:651 +msgid "Register manufacturer" +msgstr "製造元登録" + +#: ../../include/class/ConfigPEN.class.php:667 +msgid "Are you sure you want to delete this PEN?" +msgstr "この PEN を削除してもよろしいですか?" + +#: ../../include/class/ConfigPEN.class.php:694 +msgid "Register new manufacturer" +msgstr "新たな製造元を登録" + +#: ../../include/class/SatelliteAgent.class.php:128 +msgid "IP Adrress" +msgstr "IP アドレス" + +#: ../../include/class/SatelliteAgent.class.php:194 +msgid "Add host" +msgstr "ホストを追加" + +#: ../../include/class/SatelliteAgent.class.php:352 +msgid "Agent address" +msgstr "エージェントアドレス" + +#: ../../include/class/SatelliteAgent.class.php:396 +#: ../../include/class/SatelliteAgent.class.php:417 +msgid "Error saving agent" +msgstr "エージェント保存エラー" + +#: ../../include/class/SatelliteAgent.class.php:398 +#: ../../include/class/SatelliteAgent.class.php:419 +msgid "Host " +msgstr "ホスト" + +#: ../../include/class/SatelliteAgent.class.php:674 +msgid "Add agent to satellite" +msgstr "サテライトにエージェントを追加" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "ブラウザに互換性がありません。" + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "提案" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "何かおかしいです" + +#: ../../include/class/HelpFeedBack.class.php:171 +#: ../../include/class/Diagnostics.class.php:1894 +msgid "What happened?" +msgstr "何が発生しましたか?" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "あなたのメールアドレス" + +#: ../../include/class/HelpFeedBack.class.php:198 +msgid "Submit" +msgstr "実行" + +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1967 ../../general/header.php:356 +#: ../../general/header.php:358 +msgid "Feedback" +msgstr "フィードバック" + +#: ../../include/class/HelpFeedBack.class.php:253 +msgid "[pandorafms wiki] New suggestion" +msgstr "[pandorafms wiki] 新規提案" + +#: ../../include/class/HelpFeedBack.class.php:255 +msgid "[pandorafms wiki] New report" +msgstr "[pandorafms wiki] 新規レポート" + +#: ../../include/class/HelpFeedBack.class.php:261 +msgid "Please provide your email address, we promise not to bother you" +msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" + +#: ../../include/class/HelpFeedBack.class.php:309 +msgid "Something went wrong while sending the report." +msgstr "レポート送信時に異常が発生しました。" + +#: ../../include/class/HelpFeedBack.class.php:360 +msgid "Your report had been successfully sent to Artica." +msgstr "レポートを Artica へ送信しました。" + +#: ../../include/class/HelpFeedBack.class.php:360 +msgid "Thank you!" +msgstr "ありがとうございます!" + +#: ../../include/class/Diagnostics.class.php:157 +#, php-format +msgid "%s Diagnostic tool" +msgstr "%s 診断ツール" + +#: ../../include/class/Diagnostics.class.php:222 +#, php-format +msgid "Info status %s" +msgstr "情報ステータス %s" + +#: ../../include/class/Diagnostics.class.php:226 +msgid "PHP setup" +msgstr "PHP 設定" + +#: ../../include/class/Diagnostics.class.php:234 +msgid "Database health status" +msgstr "データベースの正常性状態" + +#: ../../include/class/Diagnostics.class.php:238 +msgid "Database status info" +msgstr "データベースステータス情報" + +#: ../../include/class/Diagnostics.class.php:242 +msgid "System Info" +msgstr "システム情報" + +#: ../../include/class/Diagnostics.class.php:246 +msgid "MySQL Performance metrics" +msgstr "MySQLパフォーマンスメトリック" + +#: ../../include/class/Diagnostics.class.php:251 +#, php-format +msgid "Tables fragmentation in the %s database" +msgstr "%s データベースにおけるテーブルのフラグメンテーション" + +#: ../../include/class/Diagnostics.class.php:257 +#, php-format +msgid "%s logs dates" +msgstr "%s ログ状態" + +#: ../../include/class/Diagnostics.class.php:261 +#, php-format +msgid "%s Licence Information" +msgstr "%s ライセンス情報" + +#: ../../include/class/Diagnostics.class.php:265 +#: ../../include/class/Diagnostics.class.php:1251 +msgid "Status of the attachment folder" +msgstr "添付フォルダの状態" + +#: ../../include/class/Diagnostics.class.php:269 +msgid "Information from the tagente_datos table" +msgstr "tagente_datos テーブルからの情報" + +#: ../../include/class/Diagnostics.class.php:273 +#, php-format +msgid "%s server threads" +msgstr "%s サーバスレッド" + +#: ../../include/class/Diagnostics.class.php:277 +msgid "SQL show engine innodb status" +msgstr "innodb エンジンの状態を表示します" + +#: ../../include/class/Diagnostics.class.php:325 +msgid "Graph of the Agents Unknown module." +msgstr "エージェント不明モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:332 +msgid "Graph of the Database Maintenance module." +msgstr "データベースメンテナンスモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:339 +msgid "Graph of the Free Disk Spool Dir module." +msgstr "スプールディレクトリディスクの空き容量モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:345 +msgid "Graph of the Free RAM module." +msgstr "メモリ空き容量モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:351 +msgid "Graph of the Queued Modules module." +msgstr "モジュールキューのモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:357 +msgid "Graph of the Status module." +msgstr "状態モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:363 +msgid "Graph of the System Load AVG module." +msgstr "システムロードアベレージモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:370 +msgid "Graph of the Execution Time module." +msgstr "実行時間モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:379 +msgid "Graphs modules that represent the self-monitoring system" +msgstr "自己監視システムモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:436 +#, php-format +msgid "%s Build" +msgstr "%s ビルド" + +#: ../../include/class/Diagnostics.class.php:440 +#, php-format +msgid "%s Version" +msgstr "%s バージョン" + +#: ../../include/class/Diagnostics.class.php:444 +msgid "Minor Release" +msgstr "マイナーリリース" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "Homedir" +msgstr "ホームディレクトリ" + +#: ../../include/class/Diagnostics.class.php:452 +msgid "HomeUrl" +msgstr "ホームURL" + +#: ../../include/class/Diagnostics.class.php:456 +msgid "Enterprise installed" +msgstr "Enterprise インストール済" + +#: ../../include/class/Diagnostics.class.php:457 +msgid "true" +msgstr "はい" + +#: ../../include/class/Diagnostics.class.php:457 +msgid "false" +msgstr "いいえ" + +#: ../../include/class/Diagnostics.class.php:460 +msgid "Update Key" +msgstr "アップデートキー" + +#: ../../include/class/Diagnostics.class.php:464 +msgid "Updating code path" +msgstr "アップデートコードパス" + +#: ../../include/class/Diagnostics.class.php:468 +msgid "Current Update #" +msgstr "現在のアップデート #" + +#: ../../include/class/Diagnostics.class.php:492 +msgid "PHP Version" +msgstr "PHPバージョン" + +#: ../../include/class/Diagnostics.class.php:496 +msgid "PHP Max execution time" +msgstr "PHP 最大実行時間" + +#: ../../include/class/Diagnostics.class.php:500 +msgid "PHP Max input time" +msgstr "PHP 最大入力時間" + +#: ../../include/class/Diagnostics.class.php:504 +msgid "PHP Memory limit" +msgstr "PHP メモリ制限" + +#: ../../include/class/Diagnostics.class.php:508 +msgid "Session cookie lifetime" +msgstr "セッションクッキー有効期間" + +#: ../../include/class/Diagnostics.class.php:557 +msgid "Total groups" +msgstr "全グループ数" + +#: ../../include/class/Diagnostics.class.php:561 +msgid "Total module data records" +msgstr "全モジュールデータ記録数" + +#: ../../include/class/Diagnostics.class.php:565 +msgid "Total agent access record" +msgstr "全エージェントアクセス記録数" + +#: ../../include/class/Diagnostics.class.php:573 +msgid "Total traps" +msgstr "全トラップ数" + +#: ../../include/class/Diagnostics.class.php:577 +msgid "Total users" +msgstr "全ユーザ数" + +#: ../../include/class/Diagnostics.class.php:581 +msgid "Total sessions" +msgstr "全セッション数" + +#: ../../include/class/Diagnostics.class.php:620 +msgid "Pandora DB has never been executed" +msgstr "Pandora DB が一度も実行されていません" + +#: ../../include/class/Diagnostics.class.php:627 +msgid "Ago" +msgstr "前" + +#: ../../include/class/Diagnostics.class.php:634 +msgid "Total unknown agents" +msgstr "全不明エージェント数" + +#: ../../include/class/Diagnostics.class.php:638 +msgid "Total not-init modules" +msgstr "全未初期化モジュール数" + +#: ../../include/class/Diagnostics.class.php:642 +msgid "Pandora DB Last run" +msgstr "最後の Pandora DB 実行" + +#: ../../include/class/Diagnostics.class.php:674 +msgid "DB Schema Version (first installed)" +msgstr "DB スキーマバージョン(初回インストール時)" + +#: ../../include/class/Diagnostics.class.php:678 +msgid "DB Schema Version (actual)" +msgstr "DB スキーマバージョン(現在)" + +#: ../../include/class/Diagnostics.class.php:682 +msgid "DB Schema Build" +msgstr "DB スキーマビルド" + +#: ../../include/class/Diagnostics.class.php:686 +msgid "DB Size" +msgstr "DB サイズ" + +#: ../../include/class/Diagnostics.class.php:726 +msgid "RAM" +msgstr "メモリ" + +#: ../../include/class/Diagnostics.class.php:730 +msgid "Os" +msgstr "OS" + +#: ../../include/class/Diagnostics.class.php:738 +#: ../../include/class/Diagnostics.class.php:756 +#: ../../include/class/NetworkMap.class.php:2909 +msgid "Ip" +msgstr "IP" + +#: ../../include/class/Diagnostics.class.php:784 +msgid "InnoDB buffer pool size" +msgstr "InnoDB buffer pool size" + +#: ../../include/class/Diagnostics.class.php:788 +#, php-format +msgid "It has to be 40% of the server memory not recommended to be greater or less" +msgstr "サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。" + +#: ../../include/class/Diagnostics.class.php:793 +msgid "InnoDB file per table" +msgstr "InnoDB" + +#: ../../include/class/Diagnostics.class.php:796 +#: ../../include/class/Diagnostics.class.php:868 +msgid "Recommended ON" +msgstr "ON を推奨" + +#: ../../include/class/Diagnostics.class.php:800 +msgid "InnoDB flush log at trx-commit" +msgstr "InnoDB flush log at trx-commit" + +#: ../../include/class/Diagnostics.class.php:803 +#, php-format +msgid "Recommended Value %d" +msgstr "推奨値 %d" + +#: ../../include/class/Diagnostics.class.php:807 +msgid "InnoDB lock wait timeout" +msgstr "InnoDB lock wait timeout" + +#: ../../include/class/Diagnostics.class.php:810 +#: ../../include/class/Diagnostics.class.php:817 +#: ../../include/class/Diagnostics.class.php:824 +#: ../../include/class/Diagnostics.class.php:831 +#: ../../include/class/Diagnostics.class.php:838 +#: ../../include/class/Diagnostics.class.php:847 +#: ../../include/class/Diagnostics.class.php:854 +#: ../../include/class/Diagnostics.class.php:861 +#: ../../include/class/Diagnostics.class.php:875 +#: ../../include/class/Diagnostics.class.php:882 +#: ../../include/class/Diagnostics.class.php:889 +#: ../../include/class/Diagnostics.class.php:903 +#: ../../include/class/Diagnostics.class.php:910 +msgid "Min. Recommended Value" +msgstr "最小推奨値" + +#: ../../include/class/Diagnostics.class.php:814 +msgid "InnoDB log buffer size" +msgstr "InnoDB log buffer size" + +#: ../../include/class/Diagnostics.class.php:821 +msgid "InnoDB log file size" +msgstr "InnoDB log file size" + +#: ../../include/class/Diagnostics.class.php:828 +msgid "Maximun allowed packet" +msgstr "Maximun allowed packet" + +#: ../../include/class/Diagnostics.class.php:835 +msgid "Maximun connections" +msgstr "Maximun connections" + +#: ../../include/class/Diagnostics.class.php:840 +msgid "conections" +msgstr "接続" + +#: ../../include/class/Diagnostics.class.php:844 +msgid "Query cache limit" +msgstr "Query cache limit" + +#: ../../include/class/Diagnostics.class.php:851 +msgid "Query cache min-res-unit" +msgstr "Query cache min-res-unit" + +#: ../../include/class/Diagnostics.class.php:858 +msgid "Query cache size" +msgstr "Query cache size" + +#: ../../include/class/Diagnostics.class.php:865 +msgid "Query cache type" +msgstr "Query cache type" + +#: ../../include/class/Diagnostics.class.php:872 +msgid "Read buffer size" +msgstr "Read buffer size" + +#: ../../include/class/Diagnostics.class.php:879 +msgid "Read rnd-buffer size" +msgstr "Read rnd-buffer size" + +#: ../../include/class/Diagnostics.class.php:886 +msgid "Sort buffer size" +msgstr "Sort buffer size" + +#: ../../include/class/Diagnostics.class.php:893 +msgid "Sql mode" +msgstr "Sql mode" + +#: ../../include/class/Diagnostics.class.php:896 +msgid "Must be empty" +msgstr "空である必要があります" + +#: ../../include/class/Diagnostics.class.php:900 +msgid "Thread cache size" +msgstr "Thread cache size" + +#: ../../include/class/Diagnostics.class.php:907 +msgid "Thread stack" +msgstr "Thread stack" + +#: ../../include/class/Diagnostics.class.php:970 +msgid "Table fragmentation is higher than recommended. They should be defragmented." +msgstr "" +"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要がありま" +"す。" + +#: ../../include/class/Diagnostics.class.php:974 +msgid "Table fragmentation is correct." +msgstr "テーブルフラグメンテーションは正常です。" + +#: ../../include/class/Diagnostics.class.php:983 +msgid "Tables fragmentation (maximum recommended value)" +msgstr "テーブルフラグメンテーション(最大推奨値)" + +#: ../../include/class/Diagnostics.class.php:988 +msgid "Tables fragmentation (current value)" +msgstr "テーブルフラグメンテーション(現在の値)" + +#: ../../include/class/Diagnostics.class.php:992 +msgid "Table fragmentation status" +msgstr "テーブルフラグメンテーションの状態" + +#: ../../include/class/Diagnostics.class.php:1027 +msgid "Size server logs (current value)" +msgstr "サーバログサイズ(現在の値)" + +#: ../../include/class/Diagnostics.class.php:1031 +msgid "Status server logs" +msgstr "サーバログ状態" + +#: ../../include/class/Diagnostics.class.php:1036 +msgid "Size error logs (current value)" +msgstr "エラーログサイズ(現在の値)" + +#: ../../include/class/Diagnostics.class.php:1040 +msgid "Status error logs" +msgstr "エラーログ状態" + +#: ../../include/class/Diagnostics.class.php:1045 +msgid "Size console logs (current value)" +msgstr "コンソールログサイズ(現在の値)" + +#: ../../include/class/Diagnostics.class.php:1049 +msgid "Status console logs" +msgstr "コンソールログ状態" + +#: ../../include/class/Diagnostics.class.php:1084 +msgid "License capacity is less than 90 percent" +msgstr "ライセンス容量は90%未満です" + +#: ../../include/class/Diagnostics.class.php:1087 +msgid "License capacity exceeds 90 percent" +msgstr "ライセンス容量の90%を超えています" + +#: ../../include/class/Diagnostics.class.php:1095 +msgid "" +"The average of modules per agent is more than 40. You can have performance problems" +msgstr "" +"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が発生す" +"る可能性があります。" + +#: ../../include/class/Diagnostics.class.php:1100 +msgid "The average of modules per agent is less than 40" +msgstr "1エージェントあたりの平均モジュール数が 40未満です。" + +#: ../../include/class/Diagnostics.class.php:1136 +msgid "The system has no load" +msgstr "システムに負荷がかかっていません" + +#: ../../include/class/Diagnostics.class.php:1180 +msgid "Network Management System" +msgstr "ネットワーク管理システム" + +#: ../../include/class/Diagnostics.class.php:1181 +#: ../../include/class/Diagnostics.class.php:1185 +msgid "Off" +msgstr "オフ" + +#: ../../include/class/Diagnostics.class.php:1192 +msgid "Status of agents capacity" +msgstr "エージェントキャパシティの状態" + +#: ../../include/class/Diagnostics.class.php:1197 +msgid "Status of average modules per agent" +msgstr "1エージェントごとの平均モジュール数の状態" + +#: ../../include/class/Diagnostics.class.php:1203 +msgid "Interval average of the network modules" +msgstr "ネットワークモジュールの平均実行間隔" + +#: ../../include/class/Diagnostics.class.php:1233 +msgid "The attached folder contains more than 700 files." +msgstr "attachment フォルダに 700以上のファイルがあります。" + +#: ../../include/class/Diagnostics.class.php:1238 +msgid "The attached folder contains less than 700 files." +msgstr "attachment フォルダは 700未満のファイルがあります。" + +#: ../../include/class/Diagnostics.class.php:1247 +msgid "Total files in the attached folder" +msgstr "attachment フォルダの全ファイル数" + +#: ../../include/class/Diagnostics.class.php:1277 +msgid "" +"The tagente_datos table contains too much data. A historical database is recommended." +msgstr "" +"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧めしま" +"す。" + +#: ../../include/class/Diagnostics.class.php:1282 +msgid "The tagente_datos table contains an acceptable amount of data." +msgstr "tagente_datos テーブルのデータ量は適正です。" + +#: ../../include/class/Diagnostics.class.php:1291 +msgid "Total data in tagente_datos table" +msgstr "tagente_datos テーブルの全データ量" + +#: ../../include/class/Diagnostics.class.php:1295 +msgid "Tagente_datos table status" +msgstr "tagente_datos テーブルの状態" + +#: ../../include/class/Diagnostics.class.php:1331 +msgid "Threads" +msgstr "スレッド" + +#: ../../include/class/Diagnostics.class.php:1341 +msgid "Total threads" +msgstr "全スレッド数" + +#: ../../include/class/Diagnostics.class.php:1348 +msgid "Current pandora_server running threads" +msgstr "現在の pandora_server 実行スレッド" + +#: ../../include/class/Diagnostics.class.php:1352 +msgid "" +"There's more pandora_server threads than configured, are you running multiple servers " +"simultaneusly?." +msgstr "" +"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませんか?" + +#: ../../include/class/Diagnostics.class.php:1486 +msgid "" +"Please check your Pandora Server setup and make sure that the database maintenance " +"daemon is running." +msgstr "" +"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作しているか確" +"認してください。" + +#: ../../include/class/Diagnostics.class.php:1490 +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:1752 +msgid "You have more than 10 MB of logs" +msgstr "10MB 以上のログがあります" + +#: ../../include/class/Diagnostics.class.php:1755 +msgid "You have less than 10 MB of logs" +msgstr "ログは 10MB 未満です" + +#: ../../include/class/Diagnostics.class.php:1922 +msgid "Include installation data" +msgstr "インストールデータを含む" + +#: ../../include/class/Diagnostics.class.php:1959 +msgid "Hello Feedback-Men" +msgstr "こんにちは、フィードバックありがとうございます" + +#: ../../include/class/Diagnostics.class.php:1969 +msgid "Hello" +msgstr "こんにちは" + +#: ../../include/class/Diagnostics.class.php:1973 +#, php-format +msgid "User %s is reporting an issue in its %s experience" +msgstr "ユーザ %s より、%s で発生した事象をレポートします" + +#: ../../include/class/Diagnostics.class.php:1982 +msgid "Find some files attached to this mail" +msgstr "このメールに添付するファイル" + +#: ../../include/class/Diagnostics.class.php:1985 +msgid "PDF is the diagnostic information retrieved at report time" +msgstr "PDF はレポート時に取得する診断情報を含みます" + +#: ../../include/class/Diagnostics.class.php:1988 +msgid "CSV contains the statuses of every product file" +msgstr "CSV に各製品ファイルの状態を含みます" + +#: ../../include/class/Diagnostics.class.php:1993 +#, 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:1997 +msgid "LEGAL WARNING" +msgstr "法的な警告" + +#: ../../include/class/Diagnostics.class.php:1999 +msgid "" +"The information contained in this transmission is privileged and confidential " +"information intended only for the use of the individual or entity named above" +msgstr "" +"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報です。" + +#: ../../include/class/Diagnostics.class.php:2003 +msgid "" +"If the reader of this message is not the intended recipient, you are hereby notified " +"that any dissemination, distribution or copying of this communication is strictly " +"prohibited" +msgstr "" +"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピーを固く禁" +"止します" + +#: ../../include/class/Diagnostics.class.php:2007 +msgid "If you have received this transmission in error, do not read it" +msgstr "もし、間違えてこの情報を受け取った場合は、読まないでください" + +#: ../../include/class/Diagnostics.class.php:2011 +msgid "" +"Please immediately reply to the sender that you have received this communication in " +"error and then delete it" +msgstr "すぐに間違えて届いた旨を送信者へ返信するとともに、削除してください" + +#: ../../include/class/Diagnostics.class.php:2090 +msgid "Invalid cron task" +msgstr "不正な cron タスク" + +#: ../../include/class/Diagnostics.class.php:2091 +msgid "Sending of information has been processed" +msgstr "情報の送信処理が行われました" + +#: ../../include/class/Diagnostics.class.php:2126 +#: ../../include/class/Diagnostics.class.php:2136 +msgid "Diagnostics Info" +msgstr "診断情報" + +#: ../../include/class/Diagnostics.class.php:2244 +#: ../../include/class/Diagnostics.class.php:2254 +msgid "PHP Info" +msgstr "PHP Info" + +#: ../../include/class/NetworkMap.class.php:2317 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "ドットマップの生成に失敗しました。異なるレイアウトスキーマを選択してください。" + +#: ../../include/class/NetworkMap.class.php:2452 +msgid "Failed to retrieve graph data." +msgstr "グラフデータの取得に失敗しました。" + +#: ../../include/class/NetworkMap.class.php:2663 +msgid "Holding Area" +msgstr "保持エリア" + +#: ../../include/class/NetworkMap.class.php:2790 +#, php-format +msgid "Edit node %s" +msgstr "ノード編集 %s" + +#: ../../include/class/NetworkMap.class.php:2792 +msgid "Show details and options" +msgstr "詳細とオプションの表示" + +#: ../../include/class/NetworkMap.class.php:2793 +msgid "Add a interface link" +msgstr "インタフェースリンクを追加" + +#: ../../include/class/NetworkMap.class.php:2794 +msgid "Set parent interface" +msgstr "親インタフェースを設定" + +#: ../../include/class/NetworkMap.class.php:2795 +msgid "Set as children" +msgstr "子に設定" + +#: ../../include/class/NetworkMap.class.php:2796 +msgid "Set parent" +msgstr "親を設定" + +#: ../../include/class/NetworkMap.class.php:2797 +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Abort the action of set relationship" +msgstr "関係設定動作の中止" + +#: ../../include/class/NetworkMap.class.php:2799 +#: ../../include/class/NetworkMap.class.php:3155 +msgid "Add node" +msgstr "ノード追加" + +#: ../../include/class/NetworkMap.class.php:2800 +msgid "Set center" +msgstr "中心設定" + +#: ../../include/class/NetworkMap.class.php:2802 +msgid "Refresh Holding area" +msgstr "保持エリアの更新" + +#: ../../include/class/NetworkMap.class.php:2803 +#: ../../include/class/NetworkMap.class.php:2806 +msgid "Proceed" +msgstr "実行" + +#: ../../include/class/NetworkMap.class.php:2804 +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:2808 +msgid "Restart map" +msgstr "マップリセット" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Abort the interface relationship" +msgstr "インタフェース関連付けの中止" + +#: ../../include/class/NetworkMap.class.php:2827 +#: ../../include/class/NetworkMap.class.php:2876 +msgid "Edit node" +msgstr "ノード編集" + +#: ../../include/class/NetworkMap.class.php:2837 +#: ../../include/class/NetworkMap.class.php:2886 +msgid "Adresses" +msgstr "アドレス" + +#: ../../include/class/NetworkMap.class.php:2839 +#: ../../include/class/NetworkMap.class.php:2888 +msgid "OS type" +msgstr "OS 種別" + +#: ../../include/class/NetworkMap.class.php:2846 +#: ../../include/class/NetworkMap.class.php:2847 +#: ../../include/class/NetworkMap.class.php:2895 +#: ../../include/class/NetworkMap.class.php:2896 +msgid "Node Details" +msgstr "ノード詳細" + +#: ../../include/class/NetworkMap.class.php:2921 +#: ../../include/class/NetworkMap.class.php:2922 +msgid "Interface Information (SNMP)" +msgstr "インタフェース情報 (SNMP)" + +#: ../../include/class/NetworkMap.class.php:2933 +msgid "Shape" +msgstr "形" + +#: ../../include/class/NetworkMap.class.php:2936 +msgid "Circle" +msgstr "円" + +#: ../../include/class/NetworkMap.class.php:2937 +msgid "Square" +msgstr "四角" + +#: ../../include/class/NetworkMap.class.php:2938 +msgid "Rhombus" +msgstr "ひしがた" + +#: ../../include/class/NetworkMap.class.php:2951 +msgid "name node" +msgstr "ノード名" + +#: ../../include/class/NetworkMap.class.php:2969 +#: ../../include/class/NetworkMap.class.php:3272 +msgid "name fictional node" +msgstr "仮想ノード名" + +#: ../../include/class/NetworkMap.class.php:2974 +#: ../../include/class/NetworkMap.class.php:3277 +msgid "Networkmap to link" +msgstr "リンクするネットワークマップ" + +#: ../../include/class/NetworkMap.class.php:2986 +msgid "Update fictional node" +msgstr "仮想ノード更新" + +#: ../../include/class/NetworkMap.class.php:2996 +#: ../../include/class/NetworkMap.class.php:2997 +msgid "Node options" +msgstr "ノードオプション" + +#: ../../include/class/NetworkMap.class.php:3008 +#: ../../include/class/NetworkMap.class.php:3101 +msgid "Node source" +msgstr "ノードソース" + +#: ../../include/class/NetworkMap.class.php:3009 +#: ../../include/class/NetworkMap.class.php:3102 +msgid "Interface source" +msgstr "インタフェースソース" + +#: ../../include/class/NetworkMap.class.php:3010 +#: ../../include/class/NetworkMap.class.php:3103 +msgid "Interface Target" +msgstr "インタフェースターゲット" + +#: ../../include/class/NetworkMap.class.php:3012 +#: ../../include/class/NetworkMap.class.php:3104 +msgid "Node target" +msgstr "ノードターゲット" + +#: ../../include/class/NetworkMap.class.php:3013 +msgid "E." +msgstr "E." + +#: ../../include/class/NetworkMap.class.php:3075 +msgid "There are not relations" +msgstr "関連付がありません。" + +#: ../../include/class/NetworkMap.class.php:3143 +msgid "Add interface link" +msgstr "インタフェースリンクを追加" + +#: ../../include/class/NetworkMap.class.php:3174 +#: ../../include/class/NetworkMap.class.php:3196 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3247 +#: ../../include/class/NetworkMap.class.php:3259 +#: ../../include/class/NetworkMap.class.php:3300 +msgid "Add agent node" +msgstr "エージェントノード追加" + +#: ../../include/class/NetworkMap.class.php:3258 +msgid "Add agent node (filter by group)" +msgstr "エージェントノード追加 (グループによるフィルタ)" + +#: ../../include/class/NetworkMap.class.php:3289 +msgid "Add fictional node" +msgstr "仮想ノード追加" + +#: ../../include/class/NetworkMap.class.php:3299 +msgid "Add fictional point" +msgstr "仮想ポイント追加" + +#: ../../include/class/NetworkMap.class.php:3513 +msgid "Open Minimap" +msgstr "ミニマップを開く" + +#: ../../include/class/NetworkMap.class.php:3519 +msgid "Hide Labels" +msgstr "ラベルを隠す" + +#: ../../include/class/AgentsAlerts.class.php:502 +msgid "There are no agents with alerts" +msgstr "アラートがついたエージェントがありません" + +#: ../../include/class/AgentsAlerts.class.php:580 +msgid "Previous alerts" +msgstr "以前のアラート" + +#: ../../include/class/AgentsAlerts.class.php:644 +msgid "More alerts" +msgstr "他のアラート" + +#: ../../include/class/AgentsAlerts.class.php:729 +msgid "Agents/Alerts" +msgstr "エージェント/アラート" + +#: ../../include/class/AgentsAlerts.class.php:778 +msgid "Show modules without alerts" +msgstr "アラート無しでモジュールを表示" + +#: ../../include/class/AgentsAlerts.class.php:808 +#: ../../operation/gis_maps/render_view.php:155 +msgid "10 minutes" +msgstr "10 分" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "ネットスキャンスクリプト" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "問題の作成" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "名前またはスクリプトのフルパスは空にできません" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "ネットスキャンスクリプトの削除に失敗しました。スクリプトが選択されていません" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "問題の更新" + +#: ../../include/class/ManageNetScanScripts.class.php:361 +msgid "Problem deleting Net scan Scripts" +msgstr "ネットスキャンスクリプトの削除に失敗しました" + +#: ../../include/class/ManageNetScanScripts.class.php:366 +msgid "Deleted successfully" +msgstr "削除しました" + +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Are you sure delete script?" +msgstr "スクリプトを削除しますか?" + +#: ../../include/class/ManageNetScanScripts.class.php:459 +msgid "Delete Script" +msgstr "スクリプト削除" + +#: ../../include/class/ManageNetScanScripts.class.php:478 +msgid "There are no net scan scripts in the system" +msgstr "システムにネットスキャンスクリプトがありません" + +#: ../../include/class/ManageNetScanScripts.class.php:552 +msgid "Script fullpath" +msgstr "スクリプトのフルパス" + +#: ../../include/class/CredentialStore.class.php:611 +#, php-format +msgid "Not a valid JSON: %s" +msgstr "不正な JSON: %s" + +#: ../../include/class/CredentialStore.class.php:621 +msgid "Key identifier is required" +msgstr "鍵の識別子が必要です" + +#: ../../include/class/CredentialStore.class.php:623 +msgid "You must select a group where store this key!" +msgstr "この鍵を保存するグループを選択する必要があります。" + +#: ../../include/class/CredentialStore.class.php:625 +msgid "You must specify a product type" +msgstr "製品タイプを指定する必要があります" + +#: ../../include/class/CredentialStore.class.php:627 +msgid "You must specify a username and/or password" +msgstr "ユーザ名およびパスワードを指定する必要があります" + +#: ../../include/class/CredentialStore.class.php:629 +msgid "Identifier with forbidden characters. Check the documentation." +msgstr "禁止文字を含む識別子。ドキュメントを確認してください。" + +#: ../../include/class/CredentialStore.class.php:742 +msgid "identifier cannot be empty" +msgstr "識別子は空にできません" + +#: ../../include/class/CredentialStore.class.php:785 +#, php-format +msgid "Database encryption is not enabled. Credentials will be stored in plaintext. %s" +msgstr "データベースの暗号化が無効です。認証情報がプレーンテキストで保存されます。%s" + +#: ../../include/class/CredentialStore.class.php:804 +#: ../../include/class/CredentialStore.class.php:937 +msgid "Product" +msgstr "製品" + +#: ../../include/class/CredentialStore.class.php:869 +msgid "Add key" +msgstr "鍵を追加" + +#: ../../include/class/CredentialStore.class.php:960 +msgid "Extra (2)" +msgstr "拡張 (2)" + +#: ../../include/class/CredentialStore.class.php:970 +#: ../../include/class/CredentialStore.class.php:1141 +msgid "Access key ID" +msgstr "アクセスキー ID" + +#: ../../include/class/CredentialStore.class.php:971 +#: ../../include/class/CredentialStore.class.php:1142 +msgid "Secret access key" +msgstr "シークレットアクセスキー" + +#: ../../include/class/CredentialStore.class.php:977 +#: ../../include/class/CredentialStore.class.php:994 +msgid "Account ID" +msgstr "アカウント ID" + +#: ../../include/class/CredentialStore.class.php:978 +#: ../../include/class/CredentialStore.class.php:1149 +msgid "Application secret" +msgstr "アプリケーションシークレット" + +#: ../../include/class/CredentialStore.class.php:979 +#: ../../include/class/CredentialStore.class.php:1150 +msgid "Tenant or domain name" +msgstr "テナントまたはドメイン名" + +#: ../../include/class/CredentialStore.class.php:980 +#: ../../include/class/CredentialStore.class.php:1151 +msgid "Subscription id" +msgstr "サブスクリプション ID" + +#: ../../include/class/CredentialStore.class.php:984 +#: ../../include/class/CredentialStore.class.php:1167 +msgid "Auth JSON" +msgstr "認証 JSON" + +#: ../../include/class/CredentialStore.class.php:1148 +msgid "Client ID" +msgstr "クライアントID" + +#: ../../include/class/CredentialStore.class.php:1157 +msgid "Account ID." +msgstr "アカウント ID" + +#: ../../include/class/CredentialStore.class.php:1243 +msgid "Register new key into keystore" +msgstr "キーストアへ新たな鍵を登録" + +#: ../../include/class/CredentialStore.class.php:1247 +msgid "Update key" +msgstr "鍵の更新" + +#: ../../include/class/AuditLog.class.php:136 +#, php-format +msgid "%s audit" +msgstr "%s 監査" + +#: ../../include/class/AuditLog.class.php:136 +msgid "Review Logs" +msgstr "ログ一覧" + +#: ../../include/class/AuditLog.class.php:149 +msgid "System Audit log" +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: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 "Press enter to search" +msgstr "検索するには Enter キーを押します" + +#: ../../include/class/CustomNetScan.class.php:369 +#: ../../include/class/CustomNetScan.class.php:394 +msgid "NetScan Custom" +msgstr "カスタムネットスキャン" + +#: ../../include/class/CustomNetScan.class.php:611 +msgid "Recon script" +msgstr "自動検出スクリプト" + +#: ../../include/class/CustomNetScan.class.php:652 +msgid "Explanation" +msgstr "説明" + +#: ../../include/class/CustomNetScan.class.php:668 +msgid "macro_desc" +msgstr "マクロの説明" + +#: ../../include/class/ModuleTemplates.class.php:353 +#, php-format +msgid "Template %s successfully updated" +msgstr "テンプレート %s を更新しました" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully created" +msgstr "テンプレート %s を作成しました" + +#: ../../include/class/ModuleTemplates.class.php:402 +msgid "Error creating template" +msgstr "テンプレート作成エラー" + +#: ../../include/class/ModuleTemplates.class.php:410 +#, php-format +msgid "Template %s successfully deleted" +msgstr "テンプレート %s を削除しました" + +#: ../../include/class/ModuleTemplates.class.php:412 +#, php-format +msgid "Error deleting %s template" +msgstr "%s テンプレートの削除エラー" + +#: ../../include/class/ModuleTemplates.class.php:559 +msgid "Module successfully deleted" +msgstr "モジュールを削除しました" + +#: ../../include/class/ModuleTemplates.class.php:561 +msgid "Error deleting module" +msgstr "モジュール削除エラー" + +#: ../../include/class/ModuleTemplates.class.php:572 +msgid "Block successfully deleted" +msgstr "ブロックを削除しました" + +#: ../../include/class/ModuleTemplates.class.php:574 +msgid "Error deleting block" +msgstr "ブロック削除エラー" + +#: ../../include/class/ModuleTemplates.class.php:586 +msgid "All templates deleted" +msgstr "全テンプレートを削除しました" + +#: ../../include/class/ModuleTemplates.class.php:588 +msgid "Error deleting all templates" +msgstr "全テンプレートの削除エラー" + +#: ../../include/class/ModuleTemplates.class.php:597 +msgid "Selected templates deleted" +msgstr "選択したテンプレートを削除しました" + +#: ../../include/class/ModuleTemplates.class.php:599 +msgid "Error deleting selected templates" +msgstr "選択したテンプレートの削除エラー" + +#: ../../include/class/ModuleTemplates.class.php:611 +msgid "Something gone wrong. Please, try again" +msgstr "何らかの問題が発生しました。もう一度試してください。" + +#: ../../include/class/ModuleTemplates.class.php:662 +msgid "The modules is already added" +msgstr "モジュールはすでに追加されています" + +#: ../../include/class/ModuleTemplates.class.php:1111 +#: ../../include/class/ModuleTemplates.class.php:1383 +msgid "Add components" +msgstr "全コンポーネント" + +#: ../../include/class/ModuleTemplates.class.php:1163 +#: ../../include/class/ModuleTemplates.class.php:1298 +msgid "No module blocks for this profile" +msgstr "このプロファイルにはモジュールブロックがありません" + +#: ../../include/class/ModuleTemplates.class.php:1186 +msgid "Delete this block" +msgstr "このブロックを削除" + +#: ../../include/class/ModuleTemplates.class.php:1188 +msgid "Do you want delete this block?" +msgstr "このブロックを削除しますか?" + +#: ../../include/class/ModuleTemplates.class.php:1283 +msgid "Delete this module" +msgstr "このモジュールを削除" + +#: ../../include/class/ModuleTemplates.class.php:1285 +msgid "Do you want delete this module?" +msgstr "このモジュールを削除しますか?" + +#: ../../include/class/ModuleTemplates.class.php:1476 +msgid "Do you want delete all templates?" +msgstr "全テンプレートを削除しますか?" + +#: ../../include/class/ModuleTemplates.class.php:1479 +msgid "Do you want delete the selected templates?" +msgstr "選択したテンプレートを削除しますか?" + +#: ../../include/class/ConsoleSupervisor.php:839 +msgid "Limited mode." +msgstr "制限モード" + +#: ../../include/class/ConsoleSupervisor.php:851 +msgid "License is about to expire" +msgstr "ライセンスの有効期限が近づいています" + +#: ../../include/class/ConsoleSupervisor.php:854 +msgid "Support is about to expire" +msgstr "サポートの有効期限が近づいています" + +#: ../../include/class/ConsoleSupervisor.php:872 +msgid "Expired license" +msgstr "ライセンス切れ" + +#: ../../include/class/ConsoleSupervisor.php:873 +msgid "Your license has expired. Please, contact our sales department." +msgstr "ライセンスが切れています。営業窓口までご連絡ください。" + +#: ../../include/class/ConsoleSupervisor.php:875 +msgid "Support expired" +msgstr "サポートの有効期限が切れています" + +#: ../../include/class/ConsoleSupervisor.php:876 +msgid "This license is outside of support. Please, contact our sales department." +msgstr "このライセンスはサポート外です。販売元の営業に連絡してください。" + +#: ../../include/class/ConsoleSupervisor.php:957 +msgid "Attachment directory is not writable" +msgstr "添付ファイルディレクトリ書き込み不可" + +#: ../../include/class/ConsoleSupervisor.php:959 +#, php-format +msgid "Directory %s is not writable. Please, configure corresponding permissions." +msgstr "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" + +#: ../../include/class/ConsoleSupervisor.php:979 +msgid "There are too many files in attachment directory" +msgstr "添付ファイルディレクトリに多くのファイルがあります" + +#: ../../include/class/ConsoleSupervisor.php:981 +#, php-format +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment directory " +"manually." +msgstr "" +"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを手動で" +"整理することを検討してください。" + +#: ../../include/class/ConsoleSupervisor.php:1013 +msgid "Remote configuration directory is not readable" +msgstr "リモート設定ディレクトリが読めません" + +#: ../../include/class/ConsoleSupervisor.php:1015 +#, php-format +msgid "Remote configuration directory %s is not readable. Please, adjust configuration." +msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" + +#: ../../include/class/ConsoleSupervisor.php:1032 +msgid "Remote configuration directory is not writable" +msgstr "リモート設定ディレクトリに書けません" + +#: ../../include/class/ConsoleSupervisor.php:1034 +#, php-format +msgid "Remote configuration directory %s is not writable. Please, adjust configuration." +msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" + +#: ../../include/class/ConsoleSupervisor.php:1050 +msgid "Remote collections directory is not writable" +msgstr "リモートコレクションディレクトリに書き込めません" + +#: ../../include/class/ConsoleSupervisor.php:1052 +#, php-format +msgid "Collections directory %s is not writable. Please, adjust configuration." +msgstr "コレクションディレクトリ %s に書き込めません。設定を調整してください。" + +#: ../../include/class/ConsoleSupervisor.php:1068 +msgid "Remote md5 directory is not writable" +msgstr "リモート md5 ディレクトリに書き込めません" + +#: ../../include/class/ConsoleSupervisor.php:1070 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgstr "MDS ディレクトリ %s に書き込めません。設定を調整してください。" + +#: ../../include/class/ConsoleSupervisor.php:1098 +msgid "There are too much files in spool" +msgstr "スプールに多くのファイルがあります" + +#: ../../include/class/ConsoleSupervisor.php:1100 +#, php-format +msgid "There are more than %d files in %s. Consider checking DataServer performance" +msgstr "" +"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してくださ" +"い。" + +#: ../../include/class/ConsoleSupervisor.php:1121 +msgid "There are too many BADXML files in spool" +msgstr "スプールに BADXML ファイルが大量にあります" + +#: ../../include/class/ConsoleSupervisor.php:1123 +#, php-format +msgid "There are more than %d files in %s. Consider checking software agents." +msgstr "" +"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してください。" + +#: ../../include/class/ConsoleSupervisor.php:1210 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "%s (%s) はパフォーマンスが低下しています。" + +#: ../../include/class/ConsoleSupervisor.php:1278 +msgid "No servers available." +msgstr "サーバがありません。" + +#: ../../include/class/ConsoleSupervisor.php:1279 +msgid "" +"There are no servers registered in this console. Please, check installation guide." +msgstr "" +"コンソールに登録されたサーバがありません。インストールガイドを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:1324 +#, php-format +msgid "%s (%s) has crashed." +msgstr "%s (%s) がクラッシュしました。" + +#: ../../include/class/ConsoleSupervisor.php:1330 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "%s (%s) がクラッシュしました。ログファイルを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:1337 +#, php-format +msgid "%s (%s) is not running." +msgstr "%s (%s) が動作していません。" + +#: ../../include/class/ConsoleSupervisor.php:1342 +#, 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:1394 +msgid "No master servers found." +msgstr "マスターサーバがありません。" + +#: ../../include/class/ConsoleSupervisor.php:1395 +msgid "" +"At least one server must be defined to run as master. Please, check documentation." +msgstr "" +"少なくとも一つのサーバがマスターとして動作するように定義されている必要があります。ド" +"キュメントを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:1450 +msgid "PHP safe mode is enabled. Some features may not work properly" +msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" + +#: ../../include/class/ConsoleSupervisor.php:1451 +msgid "" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode = Off " +"(Do not forget to restart apache process after changes)" +msgstr "" +"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してください。" +"(変更後は apache プロセスの再起動を忘れないようにしてください)" + +#: ../../include/class/ConsoleSupervisor.php:1469 +#, php-format +msgid "%s value in PHP configuration is not recommended" +msgstr "PHP 設定の %s の値は、お勧めしません。" + +#: ../../include/class/ConsoleSupervisor.php:1473 +#, php-format +msgid "Recommended value is %s" +msgstr "推奨値は %s です" + +#: ../../include/class/ConsoleSupervisor.php:1474 +#: ../../include/class/ConsoleSupervisor.php:1498 +msgid "Unlimited" +msgstr "無制限" + +#: ../../include/class/ConsoleSupervisor.php:1475 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Do not forget to restart Apache process after)" +msgstr "" +"PHP 設定ファイル(php.ini)で変更もしくは、管理者に連絡してください。(設定後は apache プ" +"ロセスの再起動を忘れないようにしてください)" + +#: ../../include/class/ConsoleSupervisor.php:1497 +#: ../../include/class/ConsoleSupervisor.php:1521 +#: ../../include/class/ConsoleSupervisor.php:1550 +#: ../../include/class/ConsoleSupervisor.php:1628 +#, php-format +msgid "Recommended value is: %s" +msgstr "推奨値: %s" + +#: ../../include/class/ConsoleSupervisor.php:1499 +#: ../../include/class/ConsoleSupervisor.php:1523 +#: ../../include/class/ConsoleSupervisor.php:1570 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Dont forget restart apache process after changes)" +msgstr "" +"PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。(変更後は apache プ" +"ロセスの再起動を忘れないでください)" + +#: ../../include/class/ConsoleSupervisor.php:1522 +#: ../../include/class/ConsoleSupervisor.php:1551 +#, php-format +msgid "%s or greater" +msgstr "%s または大きい" + +#: ../../include/class/ConsoleSupervisor.php:1569 +msgid "Problems with disable_functions in php.ini" +msgstr "php.ini 内の disable_functions に問題があります" + +#: ../../include/class/ConsoleSupervisor.php:1570 +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:1587 +msgid "PhantomJS is not installed" +msgstr "PhantomJS がインストールされていません" + +#: ../../include/class/ConsoleSupervisor.php:1588 +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:1605 +msgid "PHP UPDATE REQUIRED" +msgstr "PHP のアップデートが必要です" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or higher." +msgstr "" +"Pandora FMS を正しく動作させるには、PHP をバージョン 7.0 以降に更新する必要がありま" +"す。" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "そうしないと、機能が動作しません。" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "PDF フォーマットでのレポートダウンロード" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "メール送信" + +#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "メタコンソールコレクション" + +#: ../../include/class/ConsoleSupervisor.php:1672 +msgid "Historical database not available" +msgstr "ヒストリデータベースがありません" + +#: ../../include/class/ConsoleSupervisor.php:1673 +msgid "" +"Historical database is enabled, though not accessible with the current configuration." +msgstr "ヒストリデータベースが有効ですが、現在の設定でアクセスできません。" + +#: ../../include/class/ConsoleSupervisor.php:1716 +msgid "Database maintenance problem" +msgstr "データベースメンテナンスにおける問題" + +#: ../../include/class/ConsoleSupervisor.php:1718 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check documentation " +"on how to perform this maintenance process on %s and enable it as soon as possible." +msgstr "" +"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセスを実行す" +"る方法はドキュメントを確認してください。また、なるべく早く有効化してください。" + +#: ../../include/class/ConsoleSupervisor.php:1778 +msgid "Historical database maintenance problem." +msgstr "ヒストリデータベースにおける問題" + +#: ../../include/class/ConsoleSupervisor.php:1780 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it as soon " +"as possible." +msgstr "" +"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセス" +"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してください。" + +#: ../../include/class/ConsoleSupervisor.php:1818 +msgid "Historical database MR mismatch" +msgstr "ヒストリデータベースの MR が一致していません" + +#: ../../include/class/ConsoleSupervisor.php:1819 +msgid "" +"Your historical database is not using the same schema as the main DB. This could " +"produce anomalies while storing historical data." +msgstr "" +"ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これにより、ヒス" +"トリデータの保存中に異常が発生する可能性があります。" + +#: ../../include/class/ConsoleSupervisor.php:1859 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "ログコレクターが ElasticSearch に接続できません" + +#: ../../include/class/ConsoleSupervisor.php:1860 +msgid "ElasticSearch is not available using current configuration." +msgstr "現在の設定を利用している ElasticSearch が存在しません。" + +#: ../../include/class/ConsoleSupervisor.php:1929 +msgid "Metaconsole DB is not available." +msgstr "メタコンソール DB がありません。" + +#: ../../include/class/ConsoleSupervisor.php:1930 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "現在の設定でメタコンソール DB に接続できません。" + +#: ../../include/class/ConsoleSupervisor.php:1958 +msgid "Scheduled downtime running." +msgstr "計画停止実行中" + +#: ../../include/class/ConsoleSupervisor.php:1959 +msgid "" +"A scheduled downtime is running. Some monitoring data won't be available while " +"downtime is taking place." +msgstr "" +"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できません。" + +#: ../../include/class/ConsoleSupervisor.php:2115 +msgid "Downtime scheduled soon." +msgstr "まもなく計画停止" + +#: ../../include/class/ConsoleSupervisor.php:2117 +#, php-format +msgid "" +"A scheduled downtime is going to be executed from %s to %s. Some monitoring data " +"won't be available while downtime is taking place." +msgstr "" +"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視データ" +"は利用できません。" + +#: ../../include/class/ConsoleSupervisor.php:2147 +msgid "This instance is not registered in the Update manager section" +msgstr "このインスタンスは、アップデートマネージャに登録されていません。" + +#: ../../include/class/ConsoleSupervisor.php:2148 +msgid "Click here to start the registration process" +msgstr "登録処理についてはこちらをクリックしてください" + +#: ../../include/class/ConsoleSupervisor.php:2180 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "\"admin\" ユーザのデフォルトパスワードが変更されていません" + +#: ../../include/class/ConsoleSupervisor.php:2181 +msgid "" +"Please, change the default password since it is a commonly reported vulnerability." +msgstr "脆弱性として通知されるため、デフォルトパスワードは変更してください。" + +#: ../../include/class/ConsoleSupervisor.php:2216 +msgid "Default font doesn't exist" +msgstr "デフォルトのフォントがありません" + +#: ../../include/class/ConsoleSupervisor.php:2217 +msgid "" +"Your defined font doesn't exist or is not defined. Please, check font parameters in " +"your config" +msgstr "" +"定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラメータを" +"確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:2242 +msgid "Developer mode is enabled" +msgstr "開発モードが有効です" + +#: ../../include/class/ConsoleSupervisor.php:2244 +#, php-format +msgid "" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and should " +"be disabled in a production environment. This value is located in the main index.php " +"file" +msgstr "" +"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境では無効" +"化してください。この定義は、メインの index.php ファイル内にあります。" + +#: ../../include/class/ConsoleSupervisor.php:2268 +msgid "Event storm protection is enabled." +msgstr "イベントストーム保護が有効です。" + +#: ../../include/class/ConsoleSupervisor.php:2269 +msgid "" +"Some events may get lost while this mode is enabled. The server must be restarted " +"after altering this setting." +msgstr "" +"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更した" +"後はサーバを再起動する必要があります。" + +#: ../../include/class/ConsoleSupervisor.php:2295 +msgid "Failed to retrieve updates, please configure utility" +msgstr "アップデートの取得に失敗しました。ユーティリティの設定をしてください。" + +#: ../../include/class/ConsoleSupervisor.php:2313 +#, php-format +msgid "New %s Console update" +msgstr "新規コンソールアップデート %s" + +#: ../../include/class/ConsoleSupervisor.php:2316 +msgid "There is a new update available. Please.About minor release update." +msgstr "" +"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" + +#: ../../include/class/ConsoleSupervisor.php:2380 +msgid "Discovery relies on an appropriate cron setup." +msgstr "自動検出は、適切な cron 設定に依存しています。" + +#: ../../include/class/ConsoleSupervisor.php:2396 +msgid "Please, make sure process is not locked." +msgstr "プロセスがロックされていないことを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:2407 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "自動検出コンソールタスクが設定されていません。" + +#: ../../include/class/ConsoleSupervisor.php:2498 +#, php-format +msgid "%s version misaligned with Console" +msgstr "%s バージョンがコンソールと食い違っています" + +#: ../../include/class/ConsoleSupervisor.php:2502 +#, php-format +msgid "" +"Server %s and this console have different versions. This might cause several " +"malfunctions. Please, update this server." +msgstr "" +"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が発生" +"する場合があります。 サーバを更新してください。" + +#: ../../include/class/ConsoleSupervisor.php:2565 +msgid "AllowOverride is disabled" +msgstr "AllowOverride が無効です" + +#: ../../include/class/ConsoleSupervisor.php:2611 +msgid "Desynchronized operation on the node " +msgstr "ノードでの非同期操作 " + +#: ../../include/class/ConsoleSupervisor.php:2634 +msgid "Pandora FMS console log file changed location" +msgstr "Pandora FMS コンソールログの場所が変わりました" + +#: ../../include/class/ConsoleSupervisor.php:2638 +#, php-format +msgid "" +"Pandora FMS console log file has been moved to new location %s/log. Currently you " +"have an outdated and inoperative version of this file at %s. Please, consider " +"deleting it." +msgstr "" +"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いログファ" +"イルがあります。 削除を検討してください。" + +#: ../../include/class/ConsoleSupervisor.php:2673 +msgid "Pandora FMS audit log file changed location" +msgstr "Pandora FMS 監査ログの場所が変わりました" + +#: ../../include/class/ConsoleSupervisor.php:2677 +#, php-format +msgid "" +"Pandora FMS audit log file has been moved to new location %s/log. Currently you have " +"an outdated and inoperative version of this file at %s. Please, consider deleting it." +msgstr "" +"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファイルが" +"あります。 削除を検討してください。" + +#: ../../include/class/ConsoleSupervisor.php:2763 +#, php-format +msgid "Node %s sync queue length exceeded, " +msgstr "ノード %s の同期キューの長さを超えました。" + +#: ../../include/class/ConsoleSupervisor.php:2765 +#, php-format +msgid "" +"Synchronization queue lenght for node %s is %d items, this value should be 0 or lower " +"than %d, please check the queue status." +msgstr "" +"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下である必要が" +"あります。キューの状態を確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:2818 +#, php-format +msgid "Node %s sync queue failed, " +msgstr "ノード %s の同期キューが失敗しました。" + +#: ../../include/class/ConsoleSupervisor.php:2820 +#, php-format +msgid "" +"Node %s cannot process synchronization queue due %s, please check the queue status." +msgstr "" +"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してください。" + +#: ../../include/class/CalendarManager.class.php:161 +msgid "Alert calendar list" +msgstr "アラートカレンダー一覧" + +#: ../../include/class/CalendarManager.class.php:183 +msgid "Edit calendar" +msgstr "カレンダー編集" + +#: ../../include/class/CalendarManager.class.php:197 +msgid "Alert special days" +msgstr "特別日アラート" + +#: ../../include/class/CalendarManager.class.php:274 +#: ../../include/class/CalendarManager.class.php:491 +#, php-format +msgid "Calendar not found: %s" +msgstr "カレンダーが見つかりません: %s" + +#: ../../include/class/CalendarManager.class.php:302 +msgid "Calendar successfully deleted" +msgstr "カレンダーを削除しました" + +#: ../../include/class/CalendarManager.class.php:325 +#, php-format +msgid "Special day not found: %s" +msgstr "特別日が見つかりません: %s" + +#: ../../include/class/CalendarManager.class.php:337 +msgid "Special day successfully deleted" +msgstr "特別日を削除しました" + +#: ../../include/class/CalendarManager.class.php:410 +msgid "Skipped dates: " +msgstr "対象外の日付: " + +#: ../../include/class/CalendarManager.class.php:448 +msgid "Success to upload iCalendar" +msgstr "iCalendar をアップロードしました" + +#: ../../include/class/CalendarManager.class.php:449 +msgid "Fail to upload iCalendar" +msgstr "iCalendar のアップロードに失敗しました" + +#: ../../include/class/CalendarManager.class.php:554 +msgid "Failed saving calendar: name exists" +msgstr "カレンダーの保存に失敗しました: すでに存在します" + +#: ../../include/class/CalendarManager.class.php:563 +msgid "Failed saving calendar: " +msgstr "カレンダーの保存に失敗しました: " + +#: ../../include/class/CalendarManager.class.php:834 +#, php-format +msgid "Special days not found: %s" +msgstr "特別日が見つかりません: %s" + +#: ../../include/class/CalendarManager.class.php:877 +#, php-format +msgid "SpecialDay not found: %s" +msgstr "特別日が見つかりません: %s" + +#: ../../include/class/CalendarManager.class.php:930 +msgid "Failed saving calendar: already exists" +msgstr "カレンダーの保存に失敗しました: すでに存在します" + +#: ../../include/class/CalendarManager.class.php:939 +msgid "Failed saving special day: " +msgstr "特別日の保存に失敗しました: " + +#: ../../include/class/CalendarManager.class.php:1007 +#, php-format +msgid "Same as %s" +msgstr "%s と同じ日" + +#: ../../include/class/CalendarManager.class.php:1009 +msgid "Templates not being fired" +msgstr "テンプレートは発報していません" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "ようこそ" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "今後表示しない" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "設定ウインドウのキャンセル" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "このチュートリアルをキャンセルしても良いですか?" + +#: ../../include/class/WelcomeWindow.class.php:428 +msgid "Please ensure mail configuration matches your needs" +msgstr "メール設定がニーズに合っていることを確認してください" + +#: ../../include/class/WelcomeWindow.class.php:462 +msgid "Create an agent" +msgstr "エージェント作成" + +#: ../../include/class/WelcomeWindow.class.php:487 +msgid "Create a module to check if an agent is online" +msgstr "エージェントがオンラインかどうかをチェックするモジュールの作成" + +#: ../../include/class/WelcomeWindow.class.php:512 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "何かが障害の場合は警告を受けるよう、モジュールにアラートを作成します" + +#: ../../include/class/WelcomeWindow.class.php:537 +msgid "Discover hosts and devices in your network" +msgstr "ネットワーク内のホストおよびデバイスの検出" + +#: ../../include/class/WelcomeWindow.class.php:565 +msgid "If something is not working as expected, look for this icon and report!" +msgstr "期待どおりに機能しない場合は、このアイコンとレポートを探してください!" + +#: ../../include/class/WebServerModuleDebug.class.php:143 +msgid "Performing query. Please wait." +msgstr "クエリ実行中。お待ちください。" + +#: ../../include/class/WebServerModuleDebug.class.php:174 +msgid "No results" +msgstr "結果がありません" + +#: ../../include/class/WebServerModuleDebug.class.php:197 +msgid "Error performing execution" +msgstr "実行エラー" + +#: ../../include/class/WebServerModuleDebug.class.php:229 +msgid "Please, wait for a first execution of module" +msgstr "モジュールの初回実行を待ってください" + +#: ../../include/class/AgentWizard.class.php:456 +msgid "There are not defined Remote components for this performance." +msgstr "この処理用に定義されたリモートコンポーネントはありません。" + +#: ../../include/class/AgentWizard.class.php:575 +msgid "SNMP Walk" +msgstr "snmpwalk" + +#: ../../include/class/AgentWizard.class.php:580 +msgid "WMI Explorer" +msgstr "WMI エクスプローラ" + +#: ../../include/class/AgentWizard.class.php:654 +msgid "namespace" +msgstr "名前空間" + +#: ../../include/class/AgentWizard.class.php:824 +msgid "User authentication" +msgstr "ユーザ認証" + +#: ../../include/class/AgentWizard.class.php:853 +msgid "Password authentication" +msgstr "パスワード認証" + +#: ../../include/class/AgentWizard.class.php:1006 +#, php-format +msgid "The PEN (%s) is not registered." +msgstr "PEN (%s) が登録されていません。" + +#: ../../include/class/AgentWizard.class.php:1073 +msgid "The SNMP Walk does not return anything with the received arguments." +msgstr "snmpwalk が与えられた引数で何も返しません。" + +#: ../../include/class/AgentWizard.class.php:1133 +#, php-format +msgid "The target host response with an error: %s" +msgstr "対象ホストの応答がエラーです: %s" + +#: ../../include/class/AgentWizard.class.php:1183 +msgid "No selected modules" +msgstr "モジュールが選択されていません" + +#: ../../include/class/AgentWizard.class.php:1220 +msgid "Module exists in policy" +msgstr "モジュールがポリシーに存在します" + +#: ../../include/class/AgentWizard.class.php:1230 +msgid "Module exists in agent" +msgstr "モジュールがエージェントに存在します" + +#: ../../include/class/AgentWizard.class.php:1237 +msgid "Module with the same name in the module creation list" +msgstr "モジュール作成一覧に同じ名前のモジュールがあります" + +#: ../../include/class/AgentWizard.class.php:1640 +#, php-format +msgid "Module \"%s\" exits in this policy" +msgstr "モジュール \"%s\" がこのポリシーに存在します" + +#: ../../include/class/AgentWizard.class.php:1742 +#: ../../include/class/AgentWizard.class.php:2170 +#, php-format +msgid "Module %s module_exec not configuration" +msgstr "モジュール %s で module_exec を設定できません" + +#: ../../include/class/AgentWizard.class.php:1898 +#: ../../include/class/AgentWizard.class.php:2345 +#, php-format +msgid "Module %s satellite execution not configuration" +msgstr "モジュール %s でサテライト実行を設定できません" + +#: ../../include/class/AgentWizard.class.php:1990 +#, php-format +msgid "Module \"%s\" problems insert in bbdd" +msgstr "モジュール \"%s\" で DB へのインサートで問題があります" + +#: ../../include/class/AgentWizard.class.php:1998 +#: ../../include/class/AgentWizard.class.php:2428 +msgid "Modules created" +msgstr "モジュールを作成しました" + +#: ../../include/class/AgentWizard.class.php:2028 +#, php-format +msgid "Module \"%s\" exists in this agent" +msgstr "モジュール \"%s” はこのエージェントに存在します" + +#: ../../include/class/AgentWizard.class.php:2619 +msgid "Select all filtered interfaces" +msgstr "全フィルタ済インタフェースを選択" + +#: ../../include/class/AgentWizard.class.php:2642 +msgid "OperStatus UP" +msgstr "OperStatus UP" + +#: ../../include/class/AgentWizard.class.php:2653 +msgid "AdminStatus UP" +msgstr "AdminStatus UP" + +#: ../../include/class/AgentWizard.class.php:3046 +#: ../../include/class/AgentWizard.class.php:3350 +msgid "No information could be retrieved." +msgstr "情報を取得できませんでした。" + +#: ../../include/class/AgentWizard.class.php:3640 +msgid "Create modules" +msgstr "モジュール作成" + +#: ../../include/class/AgentWizard.class.php:3949 +msgid "Add general monitoring for all selected interfaces" +msgstr "全フィルタ済インタフェースの一般的な監視を追加" + +#: ../../include/class/AgentWizard.class.php:3970 +#: ../../include/class/AgentWizard.class.php:3971 +#: ../../include/class/AgentWizard.class.php:3990 +#: ../../include/class/AgentWizard.class.php:3991 +msgid "Modules selected" +msgstr "選択済モジュール" + +#: ../../include/class/AgentWizard.class.php:4059 +msgid "Module info" +msgstr "モジュール情報" + +#: ../../include/class/AgentWizard.class.php:4088 +msgid "Current value" +msgstr "現在の値" + +#: ../../include/class/AgentWizard.class.php:5575 +#, php-format +msgid "The operation '%s' is not permitted. Review for remote components." +msgstr "'%s' の操作は許可されていません。リモートコンポーネントを確認してください。" + +#: ../../include/class/AgentWizard.class.php:5989 +msgid "Modules about to be created" +msgstr "作成しようとしているモジュール" + +#: ../../include/class/ExternalTools.class.php:185 +msgid "Changes successfully saved." +msgstr "変更を保存しました。" + +#: ../../include/class/ExternalTools.class.php:186 +msgid "Changes not saved." +msgstr "変更は保存していません。" + +#: ../../include/class/ExternalTools.class.php:233 +#: ../../include/class/ExternalTools.class.php:263 +#: ../../include/class/ExternalTools.class.php:293 +msgid "Play sound" +msgstr "サウンドの再生" + +#: ../../include/class/ExternalTools.class.php:313 +msgid "Traceroute path" +msgstr "Traceroute パス" + +#: ../../include/class/ExternalTools.class.php:316 +msgid "Ping path" +msgstr "Ping パス" + +#: ../../include/class/ExternalTools.class.php:319 +msgid "Nmap path" +msgstr "Nmap パス" + +#: ../../include/class/ExternalTools.class.php:322 +msgid "Dig path" +msgstr "dig パス" + +#: ../../include/class/ExternalTools.class.php:325 +msgid "Snmpget path" +msgstr "snmpget パス" + +#: ../../include/class/ExternalTools.class.php:331 +msgid "Custom commands" +msgstr "カスタムコマンド" + +#: ../../include/class/ExternalTools.class.php:342 +msgid "Add new custom command" +msgstr "新たなカスタムコマンドの追加" + +#: ../../include/class/ExternalTools.class.php:354 +msgid "Adding `_address_` macro will use agent's IP when perform the execution" +msgstr "`_address_`マクロを追加すると、実行時にエージェントの IP が使用されます" + +#: ../../include/class/ExternalTools.class.php:438 +msgid "Delete this custom command" +msgstr "このカスタムコマンドを削除" + +#: ../../include/class/ExternalTools.class.php:486 +msgid "The agent doesn`t have an IP yet" +msgstr "エージェントはまだ IP がありません" + +#: ../../include/class/ExternalTools.class.php:508 +msgid "Traceroute" +msgstr "Traceroute" + +#: ../../include/class/ExternalTools.class.php:509 +msgid "Ping host & Latency" +msgstr "ホストへの ping および遅延" + +#: ../../include/class/ExternalTools.class.php:510 +msgid "SNMP Interface status" +msgstr "SNMP インタフェースの状態" + +#: ../../include/class/ExternalTools.class.php:511 +msgid "Basic TCP Port Scan" +msgstr "基本 TCP ポートスキャン" + +#: ../../include/class/ExternalTools.class.php:512 +msgid "DiG/Whois Lookup" +msgstr "DiG/Whois ルックアップ" + +#: ../../include/class/ExternalTools.class.php:542 +msgid "IP Adress" +msgstr "IP アドレス" + +#: ../../include/class/ExternalTools.class.php:554 +msgid "SNMP Version" +msgstr "SNMPバージョン" + +#: ../../include/class/ExternalTools.class.php:713 +msgid "Command not response" +msgstr "コマンドが応答しません" + +#: ../../include/class/ExternalTools.class.php:722 +msgid "The command failed and obtained the return code:" +msgstr "コマンドが失敗し、戻り値が返りました:" + +#: ../../include/class/ExternalTools.class.php:732 +msgid "" +"Something went wrong while perform the execution. Please check the configuration." +msgstr "実行中に何らかの問題が発生しました。設定を確認してください。" + +#: ../../include/class/ExternalTools.class.php:769 +msgid "SNMP information for " +msgstr "SNMP情報: " + +#: ../../include/class/ExternalTools.class.php:774 +#: ../../include/class/ExternalTools.class.php:786 +msgid "Target unreachable." +msgstr "対象に到達できません。" + +#: ../../include/class/ExternalTools.class.php:777 +msgid "Uptime" +msgstr "稼働時間" + +#: ../../include/class/ExternalTools.class.php:789 +msgid "Device info" +msgstr "デバイス情報" + +#: ../../include/class/ExternalTools.class.php:800 +msgid "Interface" +msgstr "インタフェース" + +#: ../../include/class/ExternalTools.class.php:831 +msgid "Domain and IP information for " +msgstr "ドメインおよびIP情報: " + +#: ../../include/class/ExternalTools.class.php:836 +msgid "Dig executable does not exist." +msgstr "digコマンドがありません。" + +#: ../../include/class/ExternalTools.class.php:845 +msgid "Whois executable does not exist." +msgstr "whoisコマンドがありません。" + +#: ../../include/class/ExternalTools.class.php:857 +msgid "Traceroute executable does not exist." +msgstr "traceroute コマンドがありません。" + +#: ../../include/class/ExternalTools.class.php:860 +#, php-format +msgid "Traceroute to %s" +msgstr "%s への traceroute" + +#: ../../include/class/ExternalTools.class.php:868 +msgid "Ping executable does not exist." +msgstr "pingコマンドがありません。" + +#: ../../include/class/ExternalTools.class.php:871 +#, php-format +msgid "Ping to %s" +msgstr "%s への ping" + +#: ../../include/class/ExternalTools.class.php:879 +msgid "Nmap executable does not exist." +msgstr "nmapコマンドがありません。" + +#: ../../include/class/ExternalTools.class.php:882 +#, php-format +msgid "Basic TCP Scan on %s" +msgstr "%s の基本 TCP スキャン" + +#: ../../include/class/ExternalTools.class.php:900 +#, php-format +msgid "Performing %s execution on %s" +msgstr "%s 実行を %s にて実施中" + +#: ../../include/class/ExternalTools.class.php:902 +#, php-format +msgid "Performing %s execution" +msgstr "%s を実行中" + +#: ../../include/functions_reporting.php:366 +msgid " agents" +msgstr " エージェント" + +#: ../../include/functions_reporting.php:376 +msgid " modules" +msgstr " モジュール" + +#: ../../include/functions_reporting.php:1519 +msgid "Top N" +msgstr "トップ N" + +#: ../../include/functions_reporting.php:1705 +msgid "Insuficient data" +msgstr "不十分なデータ" + +#: ../../include/functions_reporting.php:2018 +msgid "Event Report Group" +msgstr "イベントレポートグループ" + +#: ../../include/functions_reporting.php:2066 +msgid "Exclude " +msgstr "除外 " + +#: ../../include/functions_reporting.php:2244 ../../include/functions_reporting.php:4231 +#: ../../include/functions_reporting.php:10895 ../../include/functions_events.php:2462 +#: ../../include/functions_events.php:3065 ../../include/functions_events.php:3337 +#: ../../include/functions_events.php:3346 ../../include/functions_events.php:3353 +#: ../../include/functions_events.php:3360 ../../operation/snmpconsole/snmp_view.php:588 +#: ../../operation/snmpconsole/snmp_view.php:941 +#: ../../operation/snmpconsole/snmp_view.php:1234 +msgid "Validated" +msgstr "承諾済み" + +#: ../../include/functions_reporting.php:2245 ../../include/functions_reporting.php:4232 +#: ../../include/functions_reporting.php:10896 +#: ../../operation/snmpconsole/snmp_view.php:587 +#: ../../operation/snmpconsole/snmp_view.php:931 +#: ../../operation/snmpconsole/snmp_view.php:1243 +msgid "Not validated" +msgstr "未承諾" + +#: ../../include/functions_reporting.php:2312 +msgid "Event Report Module" +msgstr "イベントレポートモジュール" + +#: ../../include/functions_reporting.php:3100 +msgid "Agent/Modules" +msgstr "エージェント/モジュール" + +#: ../../include/functions_reporting.php:3197 +msgid "Agent/Modules Status" +msgstr "エージェント/モジュール状態" + +#: ../../include/functions_reporting.php:3346 +msgid "Exception - Everything" +msgstr "例外 - 全て" + +#: ../../include/functions_reporting.php:3352 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "例外 - モジュールが %s 以上" + +#: ../../include/functions_reporting.php:3355 +#, php-format +msgid "Modules over or equal to %s" +msgstr "%s 以上のモジュール" + +#: ../../include/functions_reporting.php:3360 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "例外 - モジュールが %s 以下" + +#: ../../include/functions_reporting.php:3363 +#, php-format +msgid "Modules under or equal to %s" +msgstr "%s 以下のモジュール" + +#: ../../include/functions_reporting.php:3368 +#, php-format +msgid "Exception - Modules under %s" +msgstr "例外 - モジュールが %s 未満" + +#: ../../include/functions_reporting.php:3371 +#, php-format +msgid "Modules under %s" +msgstr "%s 未満のモジュール" + +#: ../../include/functions_reporting.php:3376 +#, php-format +msgid "Exception - Modules over %s" +msgstr "例外 - モジュールが %s より大きい" + +#: ../../include/functions_reporting.php:3379 +#, php-format +msgid "Modules over %s" +msgstr "%s を超えるモジュール" + +#: ../../include/functions_reporting.php:3384 +#, php-format +msgid "Exception - Equal to %s" +msgstr "例外 - %s と同じ" + +#: ../../include/functions_reporting.php:3387 +#, php-format +msgid "Equal to %s" +msgstr "%s と同じ" + +#: ../../include/functions_reporting.php:3392 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "例外 - %s と異なる" + +#: ../../include/functions_reporting.php:3395 +#, php-format +msgid "Not equal to %s" +msgstr "%s と異なる" + +#: ../../include/functions_reporting.php:3399 +msgid "Exception - Modules at normal status" +msgstr "例外 - モジュールが正常状態" + +#: ../../include/functions_reporting.php:3400 +msgid "Modules at normal status" +msgstr "正常状態のモジュール" + +#: ../../include/functions_reporting.php:3404 +msgid "Exception - Modules at critical or warning status" +msgstr "例外 - モジュールが障害または警告状態" + +#: ../../include/functions_reporting.php:3405 +msgid "Modules at critical or warning status" +msgstr "障害または警告状態のモジュール" + +#: ../../include/functions_reporting.php:3685 +msgid "There are no Modules under those conditions." +msgstr "これらの条件のモジュールはありません。" + +#: ../../include/functions_reporting.php:3689 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "%s 以上のモジュールがありません。" + +#: ../../include/functions_reporting.php:3693 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "%s 以下のモジュールがありません。" + +#: ../../include/functions_reporting.php:3697 +#, php-format +msgid "There are no Modules less %s." +msgstr "%s 未満のモジュールがありません。" + +#: ../../include/functions_reporting.php:3701 +#, php-format +msgid "There are no Modules over %s." +msgstr "%s を超えるモジュールがありません。" + +#: ../../include/functions_reporting.php:3705 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "%s と同じモジュールがありません。" + +#: ../../include/functions_reporting.php:3709 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "%s と異なるモジュールがありません。" + +#: ../../include/functions_reporting.php:3713 +msgid "There are no Modules normal status" +msgstr "正常状態のモジュールがありません" + +#: ../../include/functions_reporting.php:3717 +msgid "There are no Modules at critial or warning status" +msgstr "障害または警告状態のモジュールはありません" + +#: ../../include/functions_reporting.php:4068 +msgid "Event Report Agent" +msgstr "イベントレポートエージェント" + +#: ../../include/functions_reporting.php:4419 +msgid "Database Serialized" +msgstr "データベースの並び" + +#: ../../include/functions_reporting.php:4615 +msgid "Last Value" +msgstr "最新の値" + +#: ../../include/functions_reporting.php:4939 +msgid "Network interfaces report" +msgstr "ネットワークインタフェースレポート" + +#: ../../include/functions_reporting.php:5033 +msgid "Custom render report" +msgstr "カスタムレンダリングレポート" + +#: ../../include/functions_reporting.php:5073 ../../include/functions_reporting.php:5099 +msgid "This query is insecure, it could apply unwanted modiffications on the schema" +msgstr "このクエリは安全ではなく、スキーマに不要な変更を適用する可能性があります" + +#: ../../include/functions_reporting.php:5330 +msgid "The group has no agents or none of the agents has any network interface" +msgstr "" +"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがありませ" +"ん" + +#: ../../include/functions_reporting.php:5351 +msgid "bytes/s" +msgstr "バイト/秒" + +#: ../../include/functions_reporting.php:5558 ../../include/functions_reporting.php:5575 +#: ../../include/functions_reporting.php:5592 +msgid "Not triggered" +msgstr "未発報" + +#: ../../include/functions_reporting.php:6018 +msgid "SQL Graph Vertical Bars" +msgstr "SQL縦棒グラフ" + +#: ../../include/functions_reporting.php:6022 +msgid "SQL Graph Horizontal Bars" +msgstr "SQL横棒グラフ" + +#: ../../include/functions_reporting.php:6026 +msgid "SQL Graph Pie" +msgstr "SQL円グラフ" + +#: ../../include/functions_reporting.php:6253 +msgid "Netflow Area" +msgstr "Netflow塗りつぶしグラフ" + +#: ../../include/functions_reporting.php:6257 +msgid "Netflow Summary" +msgstr "Netflow 概要" + +#: ../../include/functions_reporting.php:6261 +msgid "Netflow Data" +msgstr "Netflowデータ" + +#: ../../include/functions_reporting.php:6269 +msgid "Unknown report" +msgstr "不明レポート" + +#: ../../include/functions_reporting.php:6363 +msgid "Prediction Date" +msgstr "予測日時" + +#: ../../include/functions_reporting.php:7268 +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:8677 ../../include/functions_reporting.php:9395 +msgid "No Address" +msgstr "アドレスがありません" + +#: ../../include/functions_reporting.php:9694 +msgid "The monitor have no data in this range of dates or monitor type is not numeric" +msgstr "この日付範囲にデータが無いか、数値ではないタイプの監視項目です。" + +#: ../../include/functions_reporting.php:9712 +msgid "The monitor type is not numeric" +msgstr "監視タイプは数値ではありません。" + +#: ../../include/functions_reporting.php:10138 +msgid "Maximum" +msgstr "最大" + +#: ../../include/functions_reporting.php:10216 +msgid "Automatic combined graph" +msgstr "自動結合グラフ" + +#: ../../include/functions_reporting.php:11570 +#: ../../include/functions_reporting.php:11594 +msgid "Server health" +msgstr "サーバの正常性" + +#: ../../include/functions_reporting.php:11570 +#, php-format +msgid "%d Downed servers" +msgstr "停止サーバ数 %d" + +#: ../../include/functions_reporting.php:11575 +#: ../../include/functions_reporting.php:11598 +msgid "Monitor health" +msgstr "モニタ項目の正常性" + +#: ../../include/functions_reporting.php:11575 +#, php-format +msgid "%d Not Normal monitors" +msgstr "非正常数 %d" + +#: ../../include/functions_reporting.php:11575 +#: ../../include/functions_reporting.php:11599 +msgid "of monitors up" +msgstr "のモニタ項目が正常です。" + +#: ../../include/functions_reporting.php:11580 +#: ../../include/functions_reporting.php:11602 +msgid "Module sanity" +msgstr "モジュール" + +#: ../../include/functions_reporting.php:11580 +#, php-format +msgid "%d Not inited monitors" +msgstr "未初期化数 %d" + +#: ../../include/functions_reporting.php:11580 +#: ../../include/functions_reporting.php:11603 +msgid "of total modules inited" +msgstr "のモジュールが初期化済みです。" + +#: ../../include/functions_reporting.php:11585 +#: ../../include/functions_reporting.php:12697 +#: ../../include/functions_reporting.php:12707 +#, php-format +msgid "%d Fired alerts" +msgstr "アラート発報数 %d" + +#: ../../include/functions_reporting.php:11585 +#: ../../include/functions_reporting.php:11607 +msgid "of defined alerts not fired" +msgstr "の定義済みアラートが未発生です。" + +#: ../../include/functions_reporting.php:11679 +msgid "Defined and fired alerts" +msgstr "定義済・発報アラート" + +#: ../../include/functions_reporting.php:11858 +msgid "Defined users" +msgstr "定義済ユーザ" + +#: ../../include/functions_reporting.php:12554 +msgid "Agent without data" +msgstr "データの無いエージェント" + +#: ../../include/functions_reporting.php:12693 +#, php-format +msgid "%d Normal modules" +msgstr "正常モジュール数 %d" + +#: ../../include/functions_reporting.php:12694 +#, php-format +msgid "%d Critical modules" +msgstr "障害モジュール数 %d" + +#: ../../include/functions_reporting.php:12695 +#, php-format +msgid "%d Warning modules" +msgstr "警告モジュール数 %d" + +#: ../../include/functions_reporting.php:12696 +#, php-format +msgid "%d Unknown modules" +msgstr "不明モジュール数 %d" + +#: ../../include/functions_reporting.php:12701 +#, php-format +msgid "%d Total agents" +msgstr "全エージェント数 %d" + +#: ../../include/functions_reporting.php:12702 +#, php-format +msgid "%d Normal agents" +msgstr "正常エージェント数 %d" + +#: ../../include/functions_reporting.php:12703 +#, php-format +msgid "%d Critical agents" +msgstr "障害エージェント数 %d" + +#: ../../include/functions_reporting.php:12704 +#, php-format +msgid "%d Warning agents" +msgstr "警告エージェント数 %d" + +#: ../../include/functions_reporting.php:12705 +#, php-format +msgid "%d Unknown agents" +msgstr "不明エージェント数 %d" + +#: ../../include/functions_reporting.php:12706 +#, php-format +msgid "%d not init agents" +msgstr "%d 未初期化エージェント" + +#: ../../include/functions_reporting.php:14134 +msgid "Total running modules" +msgstr "全実行中モジュール数" + +#: ../../include/functions_reporting.php:14137 +#: ../../include/functions_reporting.php:14152 +#: ../../include/functions_reporting.php:14164 +#: ../../include/functions_reporting.php:14182 +#: ../../include/functions_reporting.php:14194 +#: ../../include/functions_reporting.php:14206 +#: ../../include/functions_reporting.php:14218 +msgid "Ratio" +msgstr "比率" + +#: ../../include/functions_reporting.php:14137 +#: ../../include/functions_reporting.php:14152 +#: ../../include/functions_reporting.php:14164 +#: ../../include/functions_reporting.php:14182 +#: ../../include/functions_reporting.php:14194 +#: ../../include/functions_reporting.php:14206 +#: ../../include/functions_reporting.php:14218 +msgid "Modules by second" +msgstr "秒ごとのモジュール" + +#: ../../include/functions_reporting.php:14149 +msgid "Local modules" +msgstr "ローカルモジュール数" + +#: ../../include/functions_reporting.php:14159 +msgid "Network modules" +msgstr "ネットワークモジュール" + +#: ../../include/functions_reporting.php:14178 +msgid "Plugin modules" +msgstr "プラグインモジュール" + +#: ../../include/functions_reporting.php:14190 +msgid "Prediction modules" +msgstr "予測モジュール" + +#: ../../include/functions_reporting.php:14202 +msgid "WMI modules" +msgstr "WMIモジュール" + +#: ../../include/functions_reporting.php:14214 +msgid "Web modules" +msgstr "Webモジュール" + +#: ../../include/functions_reporting.php:14252 +#: ../../include/lib/Dashboard/Widgets/tactical.php:287 +msgid "Server performance" +msgstr "サーバパフォーマンス" + +#: ../../include/functions_reporting.php:14365 +msgid "Start condition" +msgstr "開始状態" + +#: ../../include/functions_reporting.php:14365 +msgid "Stop condition" +msgstr "停止状態" + +#: ../../include/functions_reporting.php:14375 +msgid "Weekly:" +msgstr "週次:" + +#: ../../include/functions_reporting.php:14417 +msgid "Monthly:" +msgstr "月次:" + +#: ../../include/functions_reporting.php:14418 +msgid "From day" +msgstr "開始日" + +#: ../../include/functions_reporting.php:14419 +msgid "To day" +msgstr "終了日" + +#: ../../include/functions_reporting.php:14972 +msgid "Module Histogram Graph" +msgstr "モジュールヒストグラム" + +#: ../../include/functions_reporting.php:15364 +msgid "Attached to this email there's a PDF file of the" +msgstr "このメールには次の PDF ファイルが添付されます:" + +#: ../../include/functions_reporting.php:15365 +msgid "report" +msgstr "レポート" + +#: ../../include/functions_filemanager.php:135 +#: ../../include/functions_filemanager.php:192 +#: ../../include/functions_filemanager.php:247 +#: ../../include/functions_filemanager.php:340 +msgid "Security error" +msgstr "セキュリティエラー" + +#: ../../include/functions_filemanager.php:154 +msgid "Upload error" +msgstr "アップロードエラー" + +#: ../../include/functions_filemanager.php:163 +#, php-format +msgid "Issue setting umask: %s" +msgstr "umask の設定に問題があります: %s" + +#: ../../include/functions_filemanager.php:168 +#: ../../include/functions_filemanager.php:198 +msgid "Upload correct" +msgstr "アップロードしました" + +#: ../../include/functions_filemanager.php:195 +msgid "It was impossible to uncompress your file" +msgstr "ファイルを解凍できませんでした" + +#: ../../include/functions_filemanager.php:211 +msgid "" +"File size seems to be too large. Please check your php.ini configuration or contact " +"with the administrator" +msgstr "" +"ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してください。" + +#: ../../include/functions_filemanager.php:260 +msgid "File created correctly" +msgstr "ファイルを作成しました" + +#: ../../include/functions_filemanager.php:263 +msgid "Error creating file" +msgstr "ファイル作成エラー" + +#: ../../include/functions_filemanager.php:270 +#: ../../include/functions_filemanager.php:320 +msgid "Error creating file with empty name" +msgstr "ファイル名未指定によるファイル作成エラー" + +#: ../../include/functions_filemanager.php:311 +msgid "Directory created" +msgstr "ディレクトリを作成しました" + +#: ../../include/functions_filemanager.php:314 +msgid "Something gone wrong creating directory" +msgstr "ディレクトリ作成で何らかの問題が発生しました" + +#: ../../include/functions_filemanager.php:539 +#: ../../include/functions_filemanager.php:775 +msgid "Create a Directory" +msgstr "ディレクトリ作成" + +#: ../../include/functions_filemanager.php:543 +#: ../../include/functions_filemanager.php:786 +#: ../../include/functions_filemanager.php:789 +msgid "Create a Text" +msgstr "テキストの作成" + +#: ../../include/functions_filemanager.php:547 +#: ../../include/functions_filemanager.php:800 +#: ../../include/functions_filemanager.php:803 +msgid "Upload Files" +msgstr "ファイルをアップロード" + +#: ../../include/functions_filemanager.php:578 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "%s ディレクトリは存在しません!" + +#: ../../include/functions_filemanager.php:623 +msgid "Parent directory" +msgstr "親ディレクトリ" + +#: ../../include/functions_filemanager.php:637 +msgid "Directory" +msgstr "ディレクトリ" + +#: ../../include/functions_filemanager.php:645 +msgid "Compressed file" +msgstr "圧縮ファイル" + +#: ../../include/functions_filemanager.php:649 +#: ../../include/functions_filemanager.php:656 +msgid "Text file" +msgstr "テキストファイル" + +#: ../../include/functions_filemanager.php:689 +msgid "This file could be executed by any user" +msgstr "このファイルは任意のユーザで実行できます。" + +#: ../../include/functions_filemanager.php:690 +msgid "Make sure it can't perform dangerous tasks" +msgstr "危険な処理はできないことを確認してください" + +#: ../../include/functions_filemanager.php:758 +msgid "No files or directories to show." +msgstr "表示するファイルまたはディレクトリがありません。" + +#: ../../include/functions_filemanager.php:772 +#: ../../include/functions_filemanager.php:898 +msgid "Create directory" +msgstr "ディレクトリの作成" + +#: ../../include/functions_filemanager.php:834 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "" +"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロードも簡" +"単です。" + +#: ../../include/functions_filemanager.php:836 +msgid "Decompress" +msgstr "展開" + +#: ../../include/functions_filemanager.php:910 +msgid "Create text" +msgstr "テキストの作成" + +#: ../../include/functions_filemanager.php:922 +msgid "Upload file/s" +msgstr "ファイルのアップロード" + +#: ../../include/functions_filemanager.php:931 +msgid "The directory is read-only" +msgstr "ディレクトリが読み出し専用です。" + +#: ../../include/functions_tags.php:712 +msgid "Click here to open a popup window with URL tag" +msgstr "URLタグのポップアップウインドウを開くにはここをクリックしてください" + +#: ../../include/lib/Dashboard/Manager.php:600 +#, php-format +msgid "Copy of %s" +msgstr "%s のコピー" + +#: ../../include/lib/Dashboard/Manager.php:989 +msgid "Error create or update dashboard" +msgstr "ダッシュボードの作成または更新エラー" + +#: ../../include/lib/Dashboard/Manager.php:1470 +msgid "Icon image dashboard" +msgstr "ダッシュボードアイコン画像" + +#: ../../include/lib/Dashboard/Widget.php:459 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 +#: ../../include/lib/Dashboard/Widgets/reports.php:336 +#, php-format +msgid "Failed to connect to node %d" +msgstr "ノード %d への接続に失敗しました" + +#: ../../include/lib/Dashboard/Widget.php:474 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 +msgid "Please configure this widget before usage" +msgstr "使用前にこのウィジェットを設定してください" + +#: ../../include/lib/Dashboard/Widget.php:482 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:390 +#: ../../include/lib/Dashboard/Widgets/events_list.php:561 +msgid "Widget cannot be loaded" +msgstr "ウィジェットをロードできません" + +#: ../../include/lib/Dashboard/Widget.php:482 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:390 +msgid "Please, configure the widget again to recover it" +msgstr "復旧するためにウィジェットを設定しなおしてください" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:510 +msgid "General group status" +msgstr "一般的なグループ状態" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:464 +msgid "Not agents in this group" +msgstr "このグループにエージェントがありません" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:646 +msgid "Groups status" +msgstr "グループ状態" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 +msgid "Alert Fired" +msgstr "発報アラート" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:546 +msgid "Modules in normal status" +msgstr "正常状態のモジュール" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:562 +msgid "Modules in warning status" +msgstr "警告状態のモジュール" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:579 +msgid "Modules in critical status" +msgstr "障害状態のモジュール" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:625 +msgid "No modules in selected groups" +msgstr "選択したグループにモジュールがありません" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:176 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:523 +msgid "SLA percentage" +msgstr "SLA パーセンテージ" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:385 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:451 +#: ../../include/lib/Dashboard/Widgets/module_value.php:366 +msgid "Text size of value in px" +msgstr "pxでの値のテキストサイズ" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:397 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:463 +#: ../../include/lib/Dashboard/Widgets/module_value.php:378 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:343 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:376 +#: ../../include/lib/Dashboard/Widgets/module_status.php:442 +msgid "Text size of label in px" +msgstr "pxでのラベルのテキストサイズ" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:454 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:465 +#: ../../include/lib/Dashboard/Widgets/events_list.php:528 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:665 +msgid "You don't have access" +msgstr "アクセスできません。" + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "メッセージつきパネル" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:172 +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:633 +msgid "Block histogram" +msgstr "棒グラフ" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:266 +msgid "Font color" +msgstr "フォントの色" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 +msgid "Agent / module" +msgstr "エージェント / モジュール" + +#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 +msgid "Not found modules" +msgstr "モジュールが見つかりません" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:190 +msgid "Service View" +msgstr "サービス表示" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:244 +msgid "Tree" +msgstr "ツリー" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:296 +#: ../../include/lib/Dashboard/Widgets/service_map.php:379 +msgid "The user doesn't have permission to read agents" +msgstr "エージェントを参照する権限がありません" + +#: ../../include/lib/Dashboard/Widgets/service_view.php:454 +msgid "Services view" +msgstr "サービス表示" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:409 +msgid "General visual maps report" +msgstr "一般的なビジュアルマップレポート" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 +msgid "Maps" +msgstr "マップ" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "%s へのようこそメッセージ" + #: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:39 #, php-format msgid "Welcome to %s" msgstr "%s へようこそ" -#: ../../general/login_help_dialog.php:43 +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "This is an example of a dashboard widget. A widget may contain elements" +msgstr "ダッシュボードウィジェットの例です。ウィジェットに要素を入れることができます。" + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +msgid "To add more elements, click on \"Add widgets\" on the top of this page." +msgstr "" +"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリックしま" +"す。" + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of this " +"element." +msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "To do so, just click on the title and drag and drop it to the desired place." +msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "%s をご利用いただきありがとうございます。" + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "全体の稼働状況" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:173 +#: ../../include/lib/Dashboard/Widgets/network_map.php:515 ../../operation/menu.php:166 +msgid "Network map" +msgstr "ネットワークマップ" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:295 +msgid "It is recommended to have only one such widget in the control panel." +msgstr "" +"コントロールパネルには、このようなウィジェットを 1つだけ含めることをお勧めします。" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:372 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "X軸データを入力します。右がプラス、左がマイナスです。" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:376 +msgid "X offset" +msgstr "X オフセット" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:387 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "Y軸データを入力します。上がプラス、下がマイナスです。" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:391 +msgid "Y offset" +msgstr "Y オフセット" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:415 +msgid "Zoom level" +msgstr "拡大率" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:371 +msgid "Triggered alerts report" +msgstr "発報したアラートのレポート" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:344 +msgid "Not alert fired" +msgstr "アラート未発報" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:353 +#: ../../include/lib/Dashboard/Widgets/events_list.php:521 +msgid "You must select some group" +msgstr "いくつかのグループを選択する必要があります" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:175 +#: ../../include/lib/Dashboard/Widgets/events_list.php:714 +msgid "List of latest events" +msgstr "最新イベント一覧" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:305 +msgid "Custom filters" +msgstr "カスタムフィルタ" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:370 +msgid "Limit" +msgstr "制限" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:383 +#: ../../include/functions_events.php:3057 ../../include/functions_events.php:3063 +#: ../../include/functions_events.php:3085 +msgid "All event" +msgstr "全イベント" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:384 +#: ../../include/functions_events.php:3059 ../../include/functions_events.php:3093 +msgid "Only validated" +msgstr "承諾済み" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:385 +msgid "Only pending" +msgstr "未承諾" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:561 +msgid "Please, event filter has been removed." +msgstr "イベントフィルタが削除されました。" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 +msgid "WUX transaction stats" +msgstr "WUX トランザクション統計" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "Wux トランザクション" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 +msgid "View all statistics" +msgstr "全ての統計を表示" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:179 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:580 +msgid "Icon and module value" +msgstr "アイコンとモジュールの値" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:475 +#: ../../include/lib/Dashboard/Widgets/module_status.php:454 +msgid "Size of icon" +msgstr "アイコンのサイズ" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "URL コンテンツ" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "利用前にウィジェットを設定してください" + +#: ../../include/lib/Dashboard/Widgets/module_value.php:175 +#: ../../include/lib/Dashboard/Widgets/module_value.php:471 +msgid "Module value" +msgstr "モジュールの値" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "エージェント WUX トランザクション" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +msgid "Global status" +msgstr "全体の状態" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:537 +msgid "Top N events by module" +msgstr "モジュールごとのトップ N イベント" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "表示数" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 +msgid "No legend" +msgstr "凡例なし" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 +msgid "Legend Position" +msgstr "凡例の位置" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:371 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:373 +msgid "Please select one or more groups." +msgstr "一つ以上のグループを選択してください。" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:423 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:419 +msgid "There is not data to show." +msgstr "表示するデータがありません。" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +msgid "Color tabs modules" +msgstr "モジュールカラータブ" + +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:285 +msgid "Format Data" +msgstr "フォーマットデータ" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:177 +msgid "Show module value in a table" +msgstr "表にモジュールの値を表示" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:354 +msgid "Carriage Return" +msgstr "キャリッジリターン" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:355 +msgid "Vertical Bar" +msgstr "縦棒" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:356 +msgid "Semicolon" +msgstr "セミコロン" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:357 +msgid "Colon" +msgstr "コロン" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:358 +msgid "Commas" +msgstr "カンマ" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:359 +msgid "Blank" +msgstr "空白" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:363 +msgid "Data separator" +msgstr "データセパレータ" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:439 +msgid "Module in a table" +msgstr "表内モジュール" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:177 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:472 +msgid "Module histogram" +msgstr "モジュールヒストグラム" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:311 +msgid "" +"ZOOM functionality is only available when there is only one such widget in the " +"dashboard" +msgstr "" +"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使用できま" +"す。" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:331 +msgid "Enable sunburst" +msgstr "サンバーストの有効化" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:390 +msgid "Missing Service id" +msgstr "サービス ID がありません" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 +msgid "Agent/Module View" +msgstr "エージェント/モジュール表示" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +msgid "Filter modules" +msgstr "モジュールをフィルタ" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:558 +msgid "Defined custom graph" +msgstr "定義済カスタムグラフ" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:331 +msgid "This graph has been deleted." +msgstr "このグラフは削除されました。" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:358 +#: ../../operation/reporting/graph_viewer.php:376 +msgid "Horizontal Bars" +msgstr "水平バー" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:359 +#: ../../operation/reporting/graph_viewer.php:377 +msgid "Vertical Bars" +msgstr "垂直バー" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:172 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:435 +msgid "Agent module graph" +msgstr "エージェントモジュールグラフ" + +#: ../../include/lib/Dashboard/Widgets/reports.php:166 +#: ../../include/lib/Dashboard/Widgets/reports.php:503 +msgid "Custom report" +msgstr "カスタムレポート" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:173 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:335 +msgid "OS quick report" +msgstr "OS クイックレポート" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:285 +msgid "total agents" +msgstr "全エージェント" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:286 +msgid "normal agents" +msgstr "正常エージェント" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:287 +msgid "critical agents" +msgstr "障害エージェント" + +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:288 +msgid "unknown agents" +msgstr "不明エージェント" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 +msgid "Type tree" +msgstr "ツリータイプ" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +msgid "Open all groups" +msgstr "全グループを開く" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:393 +msgid "Agents status" +msgstr "エージェントの状態" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:427 +msgid "Modules status" +msgstr "モジュールの状態" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:493 #, php-format msgid "" -"If this is your first time using %s, we suggest a few links that'll help you learn " -"more about the software. Monitoring can be overwhelming, but take your time to learn " -"how to harness the power of %s!" +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." +msgstr "ユーザにエージェントを参照する権限がありません。%s 管理者へ連絡してください。" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 ../../operation/tree.php:423 +msgid "Operating systems found" +msgstr "オペレーティングシステムを見つけました" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 ../../operation/tree.php:426 +msgid "Tags found" +msgstr "タグを見つけました" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:616 ../../operation/tree.php:429 +msgid "Module Groups found" +msgstr "モジュールグループを見つけました" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:620 ../../operation/tree.php:432 +#: ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "モジュールが見つかりました" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:625 ../../operation/tree.php:436 +msgid "Groups found" +msgstr "グループを見つけました" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:528 +msgid "Top N of agent modules" +msgstr "エージェントモジュールのトップ N" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 +msgid "" +"Case insensitive regular expression or string for module name. For example: .*usage.* " +"will match: cpu_usage, vram usage." msgstr "" -"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつかお勧" -"めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方法を学んでく" -"ださい!" +"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage.* は " +"cpu_usage、vram usage にマッチします。" -#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 -msgid "Online help" -msgstr "オンラインヘルプ" +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Avg." +msgstr "平均" -#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75 -msgid "Enterprise version" -msgstr "Enterprise版" +#: ../../include/lib/Dashboard/Widgets/top_n.php:448 +msgid "There are no agents/modules found matching filter set" +msgstr "フィルタセットにマッチするエージェント/モジュールが見つかりません" -#: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88 -#: ../../general/login_page.php:148 ../../general/login_page.php:151 -#: ../../enterprise/include/reset_pass.php:53 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/meta/include/reset_pass.php:47 -#: ../../enterprise/meta/include/process_reset_pass.php:47 -msgid "Support" +#: ../../include/lib/Dashboard/Widgets/tactical.php:275 +msgid "Status and Monitor checks" +msgstr "状態と監視チェック" + +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "アナログ" + +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "デジタル" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +msgid "Top N events by agent" +msgstr "エージェントごとのトップ N イベント" + +#: ../../include/lib/Core/DBMaintainer.php:174 +#, php-format +msgid "Connection problems: %s" +msgstr "接続に失敗: %s" + +#: ../../include/lib/View.php:69 +#, php-format +msgid "View %s not found" +msgstr "ビュー %s が見つかりません" + +#: ../../include/lib/Module.php:258 +msgid " error: Module has no agent assigned." +msgstr " エラー: モジュールがエージェントに割り当てられていません" + +#: ../../include/lib/Module.php:1039 +msgid "Module name empty." +msgstr "モジュール名が空です。" + +#: ../../include/lib/Module.php:1045 +msgid "Invalid characters in module name" +msgstr "モジュール名に不正な文字が含まれています" + +#: ../../include/lib/Module.php:1051 +msgid "Module already exists please select another name or agent." +msgstr "モジュールが既に存在します。他の名前またはエージェントを選択してください。" + +#: ../../include/lib/Module.php:1057 +msgid "Insufficent permissions to perform this action" +msgstr "このアクションを実行するには権限が不十分です" + +#: ../../include/lib/Module.php:1064 +#, php-format +msgid "Error while processing: %s" +msgstr "処理中にエラー: %s" + +#: ../../include/lib/Group.php:299 +#, php-format +msgid "Failed to save group %s" +msgstr "グループ %s の保存に失敗しました" + +#: ../../include/functions_snmp_browser.php:355 +msgid "The server did not return any response." +msgstr "サーバが応答を返しませんでした。" + +#: ../../include/functions_snmp_browser.php:558 +msgid "Numeric OID" +msgstr "数値 OID" + +#: ../../include/functions_snmp_browser.php:576 +msgid "Syntax" +msgstr "書式" + +#: ../../include/functions_snmp_browser.php:582 +msgid "Display hint" +msgstr "ヒント表示" + +#: ../../include/functions_snmp_browser.php:588 +msgid "Max access" +msgstr "最大アクセス" + +#: ../../include/functions_snmp_browser.php:612 +msgid "OID Information" +msgstr "OID 情報" + +#: ../../include/functions_snmp_browser.php:647 +msgid "Create agent module" +msgstr "エージェントモジュール作成" + +#: ../../include/functions_snmp_browser.php:736 +msgid "Starting OID" +msgstr "開始 OID" + +#: ../../include/functions_snmp_browser.php:786 +msgid "Server to execute" +msgstr "実行サーバ" + +#: ../../include/functions_snmp_browser.php:801 +msgid "Browse" +msgstr "参照" + +#: ../../include/functions_snmp_browser.php:939 +msgid "First match" +msgstr "最初のマッチ" + +#: ../../include/functions_snmp_browser.php:952 +msgid "Previous match" +msgstr "前のマッチ" + +#: ../../include/functions_snmp_browser.php:965 +msgid "Next match" +msgstr "次のマッチ" + +#: ../../include/functions_snmp_browser.php:978 +msgid "Last match" +msgstr "最後のマッチ" + +#: ../../include/functions_snmp_browser.php:992 +msgid "Expand the tree (can be slow)" +msgstr "ツリーを展開する (遅くなります)" + +#: ../../include/functions_snmp_browser.php:1005 +msgid "Collapse the tree" +msgstr "ツリーを閉じる" + +#: ../../include/functions_snmp_browser.php:1034 +msgid "SNMP v3 options" +msgstr "SNMP v3 オプション" + +#: ../../include/functions_snmp_browser.php:1044 +msgid "Search options" +msgstr "検索オプション" + +#: ../../include/functions_snmp_browser.php:1065 +msgid "Search matches" +msgstr "検索マッチ" + +#: ../../include/functions_snmp_browser.php:1081 +msgid "Create agent modules" +msgstr "エージェントモジュール作成" + +#: ../../include/functions_snmp_browser.php:1090 +msgid "Create policy modules" +msgstr "ポリシーモジュール作成" + +#: ../../include/functions_snmp_browser.php:1099 +msgid "Create network components" +msgstr "ネットワークコンポーネント作成" + +#: ../../include/functions_snmp_browser.php:1519 +msgid " available" +msgstr " があります" + +#: ../../include/functions_snmp_browser.php:1521 +msgid " to apply" +msgstr " を適用" + +#: ../../include/functions_snmp_browser.php:1542 +#: ../../operation/snmpconsole/snmp_browser.php:541 +msgid "Create new policy" +msgstr "新たなポリシーを作成" + +#: ../../include/functions_snmp_browser.php:1574 +msgid "Undo" +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:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "Discovery task" +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_events.php:142 +msgid "NEW" +msgstr "新規" + +#: ../../include/functions_events.php:145 +msgid "IN PROCESS" +msgstr "処理中" + +#: ../../include/functions_events.php:148 +msgid "VALIDATED" +msgstr "承諾済" + +#: ../../include/functions_events.php:207 +msgid "Agent module" +msgstr "エージェントモジュール" + +#: ../../include/functions_events.php:220 +msgid "Module custom id" +msgstr "モジュールカスタム ID" + +#: ../../include/functions_events.php:1704 +#, php-format +msgid "Could not connect: %s" +msgstr "接続できませんでした: %s" + +#: ../../include/functions_events.php:2422 ../../operation/agentes/tactical.php:228 +msgid "Latest events" +msgstr "最新のイベント" + +#: ../../include/functions_events.php:2559 +msgid "Events -by module-" +msgstr "イベント -モジュールごと-" + +#: ../../include/functions_events.php:2565 ../../operation/agentes/tactical.php:245 +msgid "Event graph" +msgstr "イベントグラフ" + +#: ../../include/functions_events.php:2567 ../../operation/agentes/tactical.php:248 +msgid "Event graph by agent" +msgstr "エージェントごとのイベントグラフ" + +#: ../../include/functions_events.php:2706 +msgid "Going to unknown" +msgstr "不明状態になりました。" + +#: ../../include/functions_events.php:2714 +msgid "Alert manually validated" +msgstr "アラートは承諾されました。" + +#: ../../include/functions_events.php:2718 +msgid "Going from critical to warning" +msgstr "障害が警告状態になりました。" + +#: ../../include/functions_events.php:2724 +msgid "Going up to critical state" +msgstr "障害状態に変わりました" + +#: ../../include/functions_events.php:2730 +msgid "Going up to normal state" +msgstr "正常になりました。" + +#: ../../include/functions_events.php:2734 +msgid "Going down from normal to warning" +msgstr "警告状態になりました。" + +#: ../../include/functions_events.php:2746 +msgid "Discovery server detected a new host" +msgstr "自動検出サーバが新たなホストを検出しました" + +#: ../../include/functions_events.php:2750 +msgid "New agent created" +msgstr "新しいエージェントが作成されました。" + +#: ../../include/functions_events.php:2767 +msgid "Unknown type:" +msgstr "不明なタイプ" + +#: ../../include/functions_events.php:3058 ../../include/functions_events.php:3089 +msgid "Only new" +msgstr "新規のみ" + +#: ../../include/functions_events.php:3060 ../../include/functions_events.php:3097 +msgid "Only in process" +msgstr "処理中のみ" + +#: ../../include/functions_events.php:3061 ../../include/functions_events.php:3101 +msgid "Only not validated" +msgstr "未承諾のみ" + +#: ../../include/functions_events.php:3066 ../../include/functions_events.php:3336 +#: ../../include/functions_events.php:3345 +msgid "In process" +msgstr "処理中" + +#: ../../include/functions_events.php:3067 +msgid "Not Validated" +msgstr "未承諾" + +#: ../../include/functions_events.php:3259 +msgid "Change owner" +msgstr "所有者変更" + +#: ../../include/functions_events.php:3321 +msgid "Change status" +msgstr "ステータス変更" + +#: ../../include/functions_events.php:3415 ../../include/functions_events.php:4984 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 +msgid "Add comment" +msgstr "コメントの追加" + +#: ../../include/functions_events.php:3435 ../../include/functions_events.php:3439 +#: ../../operation/events/events.php:888 +msgid "Delete event" +msgstr "削除" + +#: ../../include/functions_events.php:3459 +msgid "Custom responses" +msgstr "カスタム応答" + +#: ../../include/functions_events.php:4015 +msgid "Extended information" +msgstr "拡張情報" + +#: ../../include/functions_events.php:4046 +msgid "There was an error connecting to the node" +msgstr "ノードへの接続エラーが発生しました" + +#: ../../include/functions_events.php:4067 +msgid "Agent details" +msgstr "エージェント詳細" + +#: ../../include/functions_events.php:4081 +msgid "This agent belongs to metaconsole, is not possible display it" +msgstr "このエージェントはメタコンソールに属しており、表示できません" + +#: ../../include/functions_events.php:4132 +msgid "View custom fields" +msgstr "カスタムフィールド表示" + +#: ../../include/functions_events.php:4155 +msgid "Module details" +msgstr "モジュール詳細" + +#: ../../include/functions_events.php:4171 +msgid "No assigned" +msgstr "未割当" + +#: ../../include/functions_events.php:4255 ../../include/functions_events.php:4264 +msgid "Go to data overview" +msgstr "データ概要表示" + +#: ../../include/functions_events.php:4380 +#, php-format +msgid "Invalid custom data: %s" +msgstr "不正なカスタムデータ: %s" + +#: ../../include/functions_events.php:4609 +msgid "First event" +msgstr "最初のイベント" + +#: ../../include/functions_events.php:4609 +msgid "Last event" +msgstr "最後のイベント" + +#: ../../include/functions_events.php:4693 +msgid "Autovalidated" +msgstr "自動承諾済" + +#: ../../include/functions_events.php:4759 +msgid "ID extra" +msgstr "拡張 ID" + +#: ../../include/functions_events.php:4833 +msgid "There are no comments" +msgstr "コメントがありません" + +#: ../../include/functions_events.php:4897 ../../general/logon_ok.php:208 +msgid "by" +msgstr "発行者:" + +#: ../../include/functions_events.php:4994 +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_planned_downtimes.php:577 +msgid "Succesful stopped the Downtime" +msgstr "計画停止を中止しました" + +#: ../../include/functions_planned_downtimes.php:578 +msgid "Unsuccesful stopped the Downtime" +msgstr "計画停止の中止に失敗しました" + +#: ../../include/functions_planned_downtimes.php:733 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "計画停止から %s 件の要素が有効になりました" + +#: ../../include/functions_planned_downtimes.php:792 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "" +"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。" + +#: ../../include/functions_planned_downtimes.php:797 +msgid "The execution must be once or periodically" +msgstr "実行は、一回のみか定期的のいずれかです。" + +#: ../../include/functions_planned_downtimes.php:802 +msgid "The periodicity must be weekly or monthly" +msgstr "定期実行は週次または月次です。" + +#: ../../include/functions_planned_downtimes.php:807 +msgid "There is no user with such id" +msgstr "そのような ID のユーザがありません。" + +#: ../../include/functions_planned_downtimes.php:812 +msgid "There is no group with such id" +msgstr "そのような ID のグループがありません。" + +#: ../../include/functions_planned_downtimes.php:817 +msgid "Date is wrong formatted" +msgstr "日付のフォーマットが不正です" + +#: ../../include/functions_planned_downtimes.php:924 +msgid "This scheduled downtime are executed now. Can't delete in this moment." +msgstr "この計画停止は実行中です。このタイミングで削除できません。" + +#: ../../include/functions_planned_downtimes.php:931 +msgid "Deleted this scheduled downtime successfully." +msgstr "この計画停止を削除しました。" + +#: ../../include/functions_planned_downtimes.php:933 +msgid "Problems for deleted this scheduled downtime." +msgstr "この計画停止の削除で問題が発生しました。" + +#: ../../include/functions_planned_downtimes.php:993 +msgid "Error adding agents to copied downtime" +msgstr "コピーした計画停止へのエージェント追加エラー" + +#: ../../include/functions_planned_downtimes.php:1016 +msgid "Error adding module to copied downtime" +msgstr "コピーした計画停止へのモジュール追加エラー" + +#: ../../index.php:989 +msgid "User doesn\\'t exist." +msgstr "ユーザが存在しません。" + +#: ../../index.php:1011 +msgid "User only can use the API." +msgstr "ユーザは API のみ利用可能" + +#: ../../index.php:1213 +#, php-format +msgid "Metaconsole MR (%d) is different than this one (%d)" +msgstr "メタコンソールの MR (%d) は、こちら (%d) と異なります" + +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:25 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "見つかりませんでした。" + +#: ../../operation/search_users.php:72 +msgid "Standard User" +msgstr "標準ユーザ" + +#: ../../operation/heatmap.php:92 ../../operation/menu.php:71 +msgid "Heatmap view" +msgstr "ヒートマップ表示" + +#: ../../operation/tree.php:139 +#, php-format +msgid "Sort the agents by %s" +msgstr "%s によるエージェント並び替え" + +#: ../../operation/tree.php:142 +msgid "tags" +msgstr "タグ" + +#: ../../operation/tree.php:150 +msgid "groups" +msgstr "グループ" + +#: ../../operation/tree.php:154 +msgid "module groups" +msgstr "モジュールグループ" + +#: ../../operation/tree.php:163 +msgid "policies" +msgstr "ポリシー" + +#: ../../operation/tree.php:219 +msgid "Search group" +msgstr "検索グループ" + +#: ../../operation/tree.php:223 ../../operation/tree.php:279 +msgid "Show not init modules" +msgstr "未初期化モジュール表示" + +#: ../../operation/tree.php:232 +msgid "Search agent" +msgstr "エージェント検索" + +#: ../../operation/tree.php:235 +msgid "Show not init agents" +msgstr "未初期化エージェント表示" + +#: ../../operation/tree.php:243 +msgid "Show full hirearchy" +msgstr "全階層表示" + +#: ../../operation/tree.php:254 +msgid "Show only disabled" +msgstr "無効のもののみ表示" + +#: ../../operation/tree.php:276 +msgid "Search module" +msgstr "モジュール検索" + +#: ../../operation/tree.php:308 +msgid "Tree search" +msgstr "ツリー検索" + +#: ../../operation/users/user_edit.php:156 +msgid "Current password of user is required to perform password change" +msgstr "ユーザの現在のパスワードは変更する必要があります" + +#: ../../operation/users/user_edit.php:158 +msgid "Current password of user is not correct" +msgstr "ユーザの現在のパスワードは正しくありません" + +#: ../../operation/users/user_edit.php:162 +msgid "Passwords didn't match or other problem encountered while updating passwords" +msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" + +#: ../../operation/users/user_edit.php:175 ../../operation/users/user_edit.php:190 +msgid "Password successfully updated" +msgstr "パスワードを更新しました。" + +#: ../../operation/users/user_edit.php:185 ../../operation/users/user_edit.php:233 +msgid "Error updating user info" +msgstr "ユーザ情報の更新に失敗しました。" + +#: ../../operation/users/user_edit.php:192 +msgid "Skin successfully updated" +msgstr "スキンを更新しました。" + +#: ../../operation/users/user_edit.php:206 +msgid "Please enter a valid email" +msgstr "正しいメールアドレスを入力してください" + +#: ../../operation/users/user_edit.php:208 +msgid "Please enter a valid phone number" +msgstr "正しい電話番号を入力してください" + +#: ../../operation/users/user_edit.php:214 +msgid "Error updating passwords: " +msgstr "パスワード更新エラー: " + +#: ../../operation/users/user_edit.php:238 +msgid "Edit my User" +msgstr "ユーザ編集" + +#: ../../operation/users/user_edit.php:303 +msgid "Current password" +msgstr "現在のパスワード" + +#: ../../operation/users/user_edit.php:305 +msgid "You cannot change your password under the current authentication scheme" +msgstr "現在の認証スキームではパスワードを変更できません" + +#: ../../operation/users/user_edit.php:320 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます" + +#: ../../operation/users/user_edit.php:414 +msgid "This change will only apply to nodes" +msgstr "この変更はノードにのみ適用されます" + +#: ../../operation/users/user_edit.php:451 +msgid "Event filter" +msgstr "イベントフィルタ" + +#: ../../operation/users/user_edit.php:522 +msgid "Autorefresh" +msgstr "自動更新" + +#: ../../operation/users/user_edit.php:523 +msgid "This will activate autorefresh in selected pages" +msgstr "選択したページで自動更新を有効にします" + +#: ../../operation/users/user_edit.php:558 +msgid "Full list of pages" +msgstr "全ページ一覧" + +#: ../../operation/users/user_edit.php:567 ../../operation/users/user_edit.php:568 +msgid "Push selected pages into autorefresh list" +msgstr "選択したページを自動更新にする" + +#: ../../operation/users/user_edit.php:576 ../../operation/users/user_edit.php:577 +msgid "Pop selected pages out of autorefresh list" +msgstr "選択したページを自動更新から外す" + +#: ../../operation/users/user_edit.php:582 +msgid "List of pages with autorefresh" +msgstr "自動更新ページ一覧" + +#: ../../operation/users/user_edit.php:591 +msgid "Time autorefresh" +msgstr "自動更新時間" + +#: ../../operation/users/user_edit.php:593 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, needing to " +"enable the autorefresh first" +msgstr "" +"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要があり" +"ます。" + +#: ../../operation/users/user_edit.php:712 +msgid "eHorus user configuration" +msgstr "eHorus ユーザ設定" + +#: ../../operation/users/user_edit.php:717 +msgid "eHorus user acces enabled" +msgstr "eHorus ユーザアクセスの有効化" + +#: ../../operation/users/user_edit.php:764 +msgid "Integria user configuration" +msgstr "Integria ユーザ設定" + +#: ../../operation/users/user_edit.php:801 +msgid "You can not change your user info under the current authentication scheme" +msgstr "現在の認証スキームではユーザ情報を変更できません" + +#: ../../operation/users/user_edit.php:878 +msgid "This user doesn't have any assigned profile/group." +msgstr "このユーザにはプロファイル・グループが割り当てられていません。" + +#: ../../operation/users/user_edit_header.php:102 +#: ../../operation/users/user_edit_notifications.php:36 +msgid "User notifications" +msgstr "ユーザ通知" + +#: ../../operation/users/user_edit_header.php:127 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:475 +msgid "Workspace" +msgstr "ワークスペース" + +#: ../../operation/users/user_edit_header.php:131 +msgid "Edit user" +msgstr "ユーザ編集" + +#: ../../operation/users/user_edit_notifications.php:65 +msgid "Also receive an email" +msgstr "メールも受信する" + +#: ../../operation/users/user_edit_notifications.php:94 +msgid "Controls have been disabled by the system administrator" +msgstr "システム管理者によって制御が無効化されています" + +#: ../../operation/search_helps.php:17 +msgid "Zero results found." +msgstr "見つかりませんでした。" + +#: ../../operation/search_helps.php:18 +#, php-format +msgid "You can find more help in the wiki" +msgstr "" +"追加のヘルプは wiki で見つけることができます" + +#: ../../operation/search_helps.php:32 +msgid "Matches" +msgstr "一致" + +#: ../../operation/visual_console/view.php:387 +msgid "Delete Item" +msgstr "アイテム削除" + +#: ../../operation/visual_console/view.php:393 +msgid "Copy Item" +msgstr "アイテムコピー" + +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/estado_generalagente.php:345 +msgid "Force remote checks" +msgstr "リモートチェックを強制する" + +#: ../../operation/visual_console/view.php:734 +msgid "Are you sure" +msgstr "よろしいですか" + +#: ../../operation/visual_console/legacy_public_view.php:168 +#: ../../operation/visual_console/public_view.php:150 +msgid "QR code of the page" +msgstr "ページの QR コード" + +#: ../../operation/visual_console/legacy_public_view.php:198 +#: ../../operation/visual_console/legacy_view.php:339 +msgid "Until refresh" +msgstr "リフレッシュまで" + +#: ../../operation/search_results.php:67 +msgid "Global search" +msgstr "グローバル検索" + +#: ../../operation/agentes/stat_win.php:116 +#, php-format +msgid "%s Graph" +msgstr "%s グラフ" + +#: ../../operation/agentes/stat_win.php:149 +msgid "There was a problem locating the source of the graph" +msgstr "グラフの場所に問題があります。" + +#: ../../operation/agentes/stat_win.php:267 +#: ../../operation/agentes/interface_traffic_graph_win.php:167 +msgid "Refresh time" +msgstr "更新時間" + +#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:222 +msgid "Show events" +msgstr "イベント表示" + +#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:224 +msgid "Show alerts" +msgstr "アラート表示" + +#: ../../operation/agentes/stat_win.php:307 ../../operation/agentes/stat_win.php:418 +#: ../../operation/agentes/interface_traffic_graph_win.php:207 +msgid "Begin time" +msgstr "開始時間" + +#: ../../operation/agentes/stat_win.php:325 ../../operation/agentes/stat_win.php:428 +#: ../../operation/agentes/interface_traffic_graph_win.php:213 +#: ../../operation/agentes/graphs.php:218 ../../operation/reporting/graph_viewer.php:360 +msgid "Time range" +msgstr "時間範囲" + +#: ../../operation/agentes/stat_win.php:340 +msgid "Zoom" +msgstr "ズーム" + +#: ../../operation/agentes/stat_win.php:360 +#: ../../operation/agentes/interface_traffic_graph_win.php:227 +msgid "Show percentil" +msgstr "パーセント表示" + +#: ../../operation/agentes/stat_win.php:386 +msgid "Show AVG/MAX/MIN data series in graph" +msgstr "グラウに平均/最大/最小データを表示" + +#: ../../operation/agentes/stat_win.php:489 +#: ../../operation/agentes/interface_traffic_graph_win.php:306 +msgid "Graph configuration menu" +msgstr "グラフ設定メニュー" + +#: ../../operation/agentes/alerts_status.php:338 +msgid "No actions" +msgstr "アクションがありません" + +#: ../../operation/agentes/alerts_status.php:371 +#: ../../operation/agentes/estado_monitores.php:539 +#: ../../operation/agentes/alerts_status.functions.php:160 +msgid "Free text for search (*):" +msgstr "検索文字列 (*):" + +#: ../../operation/agentes/alerts_status.php:372 +#: ../../operation/agentes/alerts_status.functions.php:161 +msgid "Filter by module name, template name or action name" +msgstr "モジュール名、テンプレート名、アクション名によるフィルタ" + +#: ../../operation/agentes/alerts_status.php:441 +msgid "Full list of alerts" +msgstr "アラートのフィルタ一覧" + +#: ../../operation/agentes/alerts_status.php:532 +msgid "You must select at least one alert." +msgstr "少なくとも一つのアラートを選択する必要があります。" + +#: ../../operation/agentes/gis_view.php:96 +msgid "Period to show data as path" +msgstr "データ表示更新間隔" + +#: ../../operation/agentes/gis_view.php:100 +msgid "Refresh path" +msgstr "更新" + +#: ../../operation/agentes/gis_view.php:158 +msgid "This agent doesn't have any GIS data." +msgstr "このエージェントには、GIS データがありません。" + +#: ../../operation/agentes/gis_view.php:170 +msgid "Positional data from the last" +msgstr "位置データ参照期間:" + +#: ../../operation/agentes/gis_view.php:209 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:223 +msgid "Distance" +msgstr "距離" + +#: ../../operation/agentes/gis_view.php:224 +msgid "# of Packages" +msgstr "パッケージ数" + +#: ../../operation/agentes/gis_view.php:225 ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "手動位置設定" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "時間が正しくありません。" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "モジュールが指定されていません。" + +#: ../../operation/agentes/log_sources_status.php:75 +msgid "Review in log viewer" +msgstr "ログビューワで確認" + +#: ../../operation/agentes/log_sources_status.php:98 +msgid "No log sources found" +msgstr "ログソースが見つかりません" + +#: ../../operation/agentes/log_sources_status.php:117 +msgid "Log sources status" +msgstr "ログソースの状態" + +#: ../../operation/agentes/estado_agente.php:242 +msgid "Sucessfully deleted agent" +msgstr "エージェントを削除しました" + +#: ../../operation/agentes/estado_agente.php:244 +msgid "There was an error message deleting the agent" +msgstr "エージェント削除においてエラーが発生しました" + +#: ../../operation/agentes/estado_agente.php:285 +msgid "Search in custom fields" +msgstr "カスタムフィールド検索" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "エージェントIDがありません" + +#: ../../operation/agentes/ehorus.php:51 +msgid "Missing ehorus agent id" +msgstr "ehorus エージェントIDがありません" + +#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137 +msgid "There was an error retrieving an authorization token" +msgstr "認証トークン取得中にエラーが発生しました" + +#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149 +#: ../../operation/agentes/ehorus.php:185 +msgid "There was an error processing the response" +msgstr "応答処理エラーが発生しました" + +#: ../../operation/agentes/ehorus.php:173 +msgid "There was an error retrieving the agent data" +msgstr "エージェントデータ取得エラーが発生しました" + +#: ../../operation/agentes/ehorus.php:190 +msgid "Remote management of this agent with eHorus" +msgstr "このエージェントの eHorus でのリモート管理" + +#: ../../operation/agentes/ehorus.php:192 +msgid "Launch" +msgstr "起動" + +#: ../../operation/agentes/ehorus.php:198 +msgid "The connection was lost and the authorization token was expired" +msgstr "接続が切れました、認証トークンが期限切れです" + +#: ../../operation/agentes/ehorus.php:198 +msgid "Reload the page to request a new authorization token" +msgstr "新たな認証トークンの取得にはページを再読み込みしてください" + +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "このエージェントにおける最新イベント" + +#: ../../operation/agentes/networkmap.dinamic.php:102 +#: ../../operation/agentes/pandora_networkmap.view.php:2266 +#: ../../operation/snmpconsole/snmp_statistics.php:45 +#: ../../operation/snmpconsole/snmp_browser.php:56 +#: ../../operation/snmpconsole/snmp_view.php:118 +msgid "Normal screen" +msgstr "通常画面" + +#: ../../operation/agentes/networkmap.dinamic.php:126 +#: ../../operation/agentes/pandora_networkmap.view.php:2290 +msgid "List of networkmap" +msgstr "ネットワークマップ一覧" + +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "空" + +#: ../../operation/agentes/realtime_win.php:85 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "%s リアルタイムモジュールグラフ" + +#: ../../operation/agentes/realtime_win.php:112 +msgid "Realtime extension is not enabled." +msgstr "リアルタイム実行が無効です。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:205 +msgid "Network maps editor" +msgstr "ネットワークマップエディタ" + +#: ../../operation/agentes/pandora_networkmap.editor.php:324 +#: ../../operation/agentes/pandora_networkmap.view.php:127 +msgid "Position X" +msgstr "X 位置" + +#: ../../operation/agentes/pandora_networkmap.editor.php:326 +#: ../../operation/agentes/pandora_networkmap.view.php:129 +msgid "Position Y" +msgstr "Y 位置" + +#: ../../operation/agentes/pandora_networkmap.editor.php:329 +#: ../../operation/agentes/pandora_networkmap.view.php:132 +msgid "Zoom scale" +msgstr "拡大スケール" + +#: ../../operation/agentes/pandora_networkmap.editor.php:334 +#: ../../operation/agentes/pandora_networkmap.view.php:134 +msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +msgid "CIDR IP mask" +msgstr "CIDR IPマスク" + +#: ../../operation/agentes/pandora_networkmap.editor.php:339 +#: ../../operation/agentes/pandora_networkmap.view.php:164 +msgid "Source from recon task" +msgstr "自動検出タスクからのソース" + +#: ../../operation/agentes/pandora_networkmap.editor.php:341 +#: ../../operation/agentes/pandora_networkmap.view.php:166 +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:358 +#: ../../operation/agentes/pandora_networkmap.view.php:182 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:362 +#: ../../operation/agentes/pandora_networkmap.view.php:186 +msgid "Source from CIDR IP mask" +msgstr "CIDR IPマスクからのソース" + +#: ../../operation/agentes/pandora_networkmap.editor.php:365 +msgid "Source group" +msgstr "複製元グループ" + +#: ../../operation/agentes/pandora_networkmap.editor.php:382 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:387 +#: ../../operation/agentes/pandora_networkmap.view.php:198 +msgid "Don't show subgroups:" +msgstr "サブグループを表示しない:" + +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +#: ../../operation/agentes/pandora_networkmap.view.php:232 +msgid "Method generation networkmap" +msgstr "ネットワークマップ生成手法" + +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +#: ../../operation/agentes/pandora_networkmap.view.php:248 +msgid "Separation between nodes. By default 0.25" +msgstr "ノード間の分離。デフォルトは 0.25 です。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:428 +#: ../../operation/agentes/pandora_networkmap.view.php:250 +msgid "Rank separation" +msgstr "ランク分け" + +#: ../../operation/agentes/pandora_networkmap.editor.php:429 +#: ../../operation/agentes/pandora_networkmap.view.php:251 +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:431 +#: ../../operation/agentes/pandora_networkmap.view.php:253 +msgid "Min nodes dist" +msgstr "最小ノード間隔" + +#: ../../operation/agentes/pandora_networkmap.editor.php:432 +#: ../../operation/agentes/pandora_networkmap.view.php:254 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" +msgstr "円のみ。ノード間の最小距離です。デフォルトは 1.0 です。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:434 +#: ../../operation/agentes/pandora_networkmap.view.php:256 +msgid "Default ideal node separation" +msgstr "デフォルトノード間距離" + +#: ../../operation/agentes/pandora_networkmap.editor.php:435 +#: ../../operation/agentes/pandora_networkmap.view.php:257 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +msgstr "" +"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:601 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" + +#: ../../operation/agentes/pandora_networkmap.php:139 +#: ../../operation/agentes/pandora_networkmap.php:374 +msgid "Succesfully created" +msgstr "作成しました" + +#: ../../operation/agentes/pandora_networkmap.php:215 +#: ../../operation/agentes/pandora_networkmap.php:507 +msgid "Succesfully updated" +msgstr "更新しました" + +#: ../../operation/agentes/pandora_networkmap.php:532 +msgid "Succesfully duplicate" +msgstr "複製しました" + +#: ../../operation/agentes/pandora_networkmap.php:546 +msgid "Succesfully deleted" +msgstr "削除しました" + +#: ../../operation/agentes/pandora_networkmap.php:656 +msgid "List of network maps" +msgstr "ネットワークマップの一覧" + +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Empty map" +msgstr "空マップ" + +#: ../../operation/agentes/pandora_networkmap.php:780 +msgid "Pending to generate" +msgstr "生成の保留" + +#: ../../operation/agentes/pandora_networkmap.php:811 +msgid "There are no maps defined." +msgstr "定義済マップがありません。" + +#: ../../operation/agentes/pandora_networkmap.php:818 +msgid "Create network map" +msgstr "ネットワークマップ作成" + +#: ../../operation/agentes/pandora_networkmap.php:825 +msgid "Create empty network map" +msgstr "空のネットワークマップ作成" + +#: ../../operation/agentes/interface_traffic_graph_win.php:95 +#, php-format +msgid "%s Interface Graph" +msgstr "%s インタフェースグラフ" + +#: ../../operation/agentes/interface_traffic_graph_win.php:250 +msgid "Zoom factor" +msgstr "ズーム倍率" + +#: ../../operation/agentes/interface_traffic_graph_win.php:257 +msgid "Full" +msgstr "フル" + +#: ../../operation/agentes/graphs.php:143 +msgid "Other modules" +msgstr "他のモジュール" + +#: ../../operation/agentes/graphs.php:150 +msgid "Modules network no proc" +msgstr "proc以外のネットワークモジュール" + +#: ../../operation/agentes/graphs.php:157 +msgid "Modules boolean" +msgstr "ブーリアン(二値)モジュール" + +#: ../../operation/agentes/graphs.php:224 +msgid "the combined graph does not show the alerts into this graph" +msgstr "組み合わせグラフは、グラフ内にアラートを表示しません" + +#: ../../operation/agentes/graphs.php:226 +msgid "Show as one combined graph" +msgstr "一つの組み合わせグラフとして表示" + +#: ../../operation/agentes/graphs.php:228 +msgid "several graphs for each module" +msgstr "モジュールごとの複数のグラフ" + +#: ../../operation/agentes/graphs.php:229 +msgid "One combined graph" +msgstr "一つの組み合わせグラフ" + +#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:412 +msgid "Area stack" +msgstr "塗りつぶし積み重ね" + +#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:420 +msgid "Line stack" +msgstr "線の積み重ね" + +#: ../../operation/agentes/graphs.php:256 +msgid "Save as custom graph" +msgstr "カスタムグラフとして保存" + +#: ../../operation/agentes/graphs.php:269 +msgid "Filter graphs" +msgstr "グラフフィルタ" + +#: ../../operation/agentes/graphs.php:296 +msgid "There was an error loading the graph" +msgstr "グラフロード中にエラーが発生しました" + +#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308 +msgid "Name custom graph" +msgstr "カスタムグラフ名" + +#: ../../operation/agentes/graphs.php:354 +msgid "Save custom graph" +msgstr "カスタムグラフの保存" + +#: ../../operation/agentes/graphs.php:375 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "エージェントのグラフタブからカスタムグラフを作成" + +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "収集データ:" + +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "メインデータベース" + +#: ../../operation/agentes/datos_agente.php:181 +msgid "" +"Switch between the main database and the history database to retrieve module data" +msgstr "" +"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータベース間で" +"切り替えます。" + +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/alerts_status.functions.php:118 +msgid "Free text for search" +msgstr "検索文字列" + +#: ../../operation/agentes/interface_view.functions.php:170 +#: ../../operation/agentes/interface_view.functions.php:171 +msgid "Interface filter" +msgstr "インタフェースフィルタ" + +#: ../../operation/agentes/interface_view.functions.php:489 +msgid "IfName" +msgstr "IfName" + +#: ../../operation/agentes/interface_view.functions.php:499 +msgid "IfSpeed" +msgstr "IfSpeed" + +#: ../../operation/agentes/interface_view.functions.php:507 +msgid "IfInOctets" +msgstr "IfInOctets" + +#: ../../operation/agentes/interface_view.functions.php:515 +msgid "IfOutOctets" +msgstr "IfOutOctets" + +#: ../../operation/agentes/interface_view.functions.php:523 +msgid "% Bandwidth usage (in)" +msgstr "% 帯域幅使用量 (in)" + +#: ../../operation/agentes/interface_view.functions.php:531 +msgid "% Bandwidth usage (out)" +msgstr "% 帯域幅使用量 (out)" + +#: ../../operation/agentes/interface_view.functions.php:736 +msgid "No search parameters" +msgstr "検索パラメータがありません" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "モジュールデータ表示のためのノード接続ができません。" + +#: ../../operation/agentes/snapshot_view.php:90 +#, php-format +msgid "%s Snapshot data view for module (%s)" +msgstr "%s スナップショットデータ表示 (モジュール %s)" + +#: ../../operation/agentes/snapshot_view.php:96 +#, php-format +msgid "Current data at %s" +msgstr "%s 時点のデータ" + +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:538 +msgid "Export data" +msgstr "データのエクスポート" + +#: ../../operation/agentes/exportdata.php:248 +msgid "Source agent" +msgstr "対象エージェント" + +#: ../../operation/agentes/exportdata.php:283 +msgid "No modules of type string. You can not calculate their average" +msgstr "文字列タイプのモジュールは対象外です。また、平均の計算はできません。" + +#: ../../operation/agentes/exportdata.php:375 +msgid "Export type" +msgstr "エクスポート形式" + +#: ../../operation/agentes/exportdata.php:380 +msgid "MS Excel" +msgstr "MS Excelファイル" + +#: ../../operation/agentes/exportdata.php:381 +msgid "Average per hour/day" +msgstr "平均の表示" + +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "フィールドが定義されていません。" + +#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:63 +msgid "Interface view" +msgstr "インタフェース表示" + +#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:60 +msgid "Monitor detail" +msgstr "モニタ項目詳細" + +#: ../../operation/agentes/status_monitor.php:119 +msgid "Monitor view" +msgstr "モニタ表示" + +#: ../../operation/agentes/status_monitor.php:641 +msgid "Wux server module" +msgstr "Wux サーバモジュール" + +#: ../../operation/agentes/status_monitor.php:662 +msgid "Min. hours in current status" +msgstr "現在の状態の最小時間" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "Not condition" +msgstr "状態なし" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "" +"If you check this option, those elements that do NOT meet any of the requirements " +"will be shown" +msgstr "このオプションをチェックすると、どの要件も満たさない要素が表示されます" + +#: ../../operation/agentes/status_monitor.php:872 +msgid "Show filters" +msgstr "フィルタ表示" + +#: ../../operation/agentes/status_monitor.php:1312 +msgid "Data Type" +msgstr "データのタイプ" + +#: ../../operation/agentes/status_monitor.php:1431 +#: ../../operation/agentes/pandora_networkmap.view.php:1743 +msgid "(Adopt) " +msgstr "(適用) " + +#: ../../operation/agentes/status_monitor.php:1439 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 +msgid "(Unlinked) (Adopt) " +msgstr "(未リンク) (適用) " + +#: ../../operation/agentes/status_monitor.php:1442 +#: ../../operation/agentes/pandora_networkmap.view.php:1754 +msgid "(Unlinked) " +msgstr "(未リンク) " + +#: ../../operation/agentes/status_monitor.php:1980 +msgid "This group doesn't have any monitor" +msgstr "該当するモニタ項目がありません。" + +#: ../../operation/agentes/status_monitor.php:1982 +msgid "Sorry no search parameters" +msgstr "検索パラメータがありません" + +#: ../../operation/agentes/group_view.php:180 +msgid "Summary of the status groups" +msgstr "グループの状態概要" + +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "タグ情報" + +#: ../../operation/agentes/estado_monitores.php:109 +msgid "Relationship information" +msgstr "関係情報" + +#: ../../operation/agentes/estado_monitores.php:160 +msgid "Non-initialized modules found." +msgstr "未初期化モジュールがあります。" + +#: ../../operation/agentes/estado_monitores.php:181 +msgid "List of modules" +msgstr "モジュールの一覧" + +#: ../../operation/agentes/estado_monitores.php:182 +msgid "" +"To see the list of modules paginated, enable this option in the Styles Configuration." +msgstr "" +"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化します。" + +#: ../../operation/agentes/estado_monitores.php:518 +msgid "Status:" +msgstr "状態:" + +#: ../../operation/agentes/estado_monitores.php:524 +msgid "Not Normal" +msgstr "非正常" + +#: ../../operation/agentes/estado_monitores.php:540 +msgid "Search by module name, list matches." +msgstr "モジュール名による検索にマッチした一覧を表示" + +#: ../../operation/agentes/pandora_networkmap.view.php:1611 +msgid "Success be updated." +msgstr "更新しました。" + +#: ../../operation/agentes/pandora_networkmap.view.php:1708 +msgid "Name: " +msgstr "名前: " + +#: ../../operation/agentes/pandora_networkmap.view.php:1758 +msgid "Policy: " +msgstr "ポリシー: " + +#: ../../operation/agentes/pandora_networkmap.view.php:1855 +msgid "Data: " +msgstr "データ: " + +#: ../../operation/agentes/pandora_networkmap.view.php:1857 +#: ../../operation/agentes/estado_generalagente.php:817 +msgid "Last contact: " +msgstr "最新の接続: " + +#: ../../operation/agentes/ver_agente.php:1232 +msgid "Sons" +msgstr "子" + +#: ../../operation/agentes/ver_agente.php:1582 +msgid "Log Viewer" +msgstr "ログビューア" + +#: ../../operation/agentes/ver_agente.php:1621 +msgid "Terminal" +msgstr "端末" + +#: ../../operation/agentes/ver_agente.php:1643 +msgid "Processes" +msgstr "プロセス" + +#: ../../operation/agentes/estado_generalagente.php:57 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "" +"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可能性があ" +"ります。" + +#: ../../operation/agentes/estado_generalagente.php:265 +msgid "Remote configuration enabled" +msgstr "リモート設定有効" + +#: ../../operation/agentes/estado_generalagente.php:328 +msgid "Agent contact" +msgstr "エージェント接続" + +#: ../../operation/agentes/estado_generalagente.php:335 +msgid "Refresh data" +msgstr "最新情報に更新" + +#: ../../operation/agentes/estado_generalagente.php:376 +msgid "Next contact" +msgstr "次回接続" + +#: ../../operation/agentes/estado_generalagente.php:464 +msgid "Agent info" +msgstr "エージェント情報" + +#: ../../operation/agentes/estado_generalagente.php:477 +msgid "There is no GIS data." +msgstr "GIS データがありません。" + +#: ../../operation/agentes/estado_generalagente.php:598 +msgid "Agent access rate (Last 24h)" +msgstr "エージェントアクセス頻度(直近 24時間)" + +#: ../../operation/agentes/estado_generalagente.php:638 +msgid "Active incident on this agent" +msgstr "このエージェントにおけるアクティブインシデント" + +#: ../../operation/agentes/estado_generalagente.php:797 +msgid "Events info (24hr.)" +msgstr "イベント情報 (24時間)" + +#: ../../operation/agentes/estado_generalagente.php:942 +msgid "Interface information (SNMP)" +msgstr "インタフェース情報 (SNMP)" + +#: ../../operation/agentes/alerts_status.functions.php:48 +msgid "Alert(s) validated" +msgstr "アラートを承諾しました。" + +#: ../../operation/agentes/alerts_status.functions.php:49 +msgid "Error processing alert(s)" +msgstr "アラート処理エラー" + +#: ../../operation/agentes/alerts_status.functions.php:119 +msgid "Filter by agent name, module name, template name or action name" +msgstr "エージェント名、モジュール名、テンプレート名および、アクション名でのフィルタ" + +#: ../../operation/agentes/tactical.php:201 +msgid "Report of State" +msgstr "状態レポート" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_list.php:55 +#: ../../operation/messages/message_edit.php:66 +msgid "Sent messages" +msgstr "送信済みのメッセージ" + +#: ../../operation/messages/message_list.php:46 +#: ../../operation/messages/message_list.php:50 +#: ../../operation/messages/message_edit.php:54 +msgid "Received messages" +msgstr "受信メッセージ" + +#: ../../operation/messages/message_list.php:64 +#: ../../operation/messages/message_list.php:304 +#: ../../operation/messages/message_edit.php:78 +msgid "Create message" +msgstr "メッセージの作成" + +#: ../../operation/messages/message_list.php:136 +msgid "Not deleted. Error deleting messages" +msgstr "削除できません。メッセージ削除エラー" + +#: ../../operation/messages/message_list.php:144 +#: ../../operation/messages/message_list.php:153 +msgid "You have" +msgstr "あなたのアカウントに" + +#: ../../operation/messages/message_list.php:144 +msgid "sent message(s)" +msgstr "通の送信済メッセージがあります" + +#: ../../operation/messages/message_list.php:153 +msgid "unread message(s)" +msgstr "通の新しいメッセージがあります。" + +#: ../../operation/messages/message_list.php:164 +msgid "There are no messages." +msgstr "メッセージがありません。" + +#: ../../operation/messages/message_list.php:194 +#: ../../operation/messages/message_edit.php:269 +msgid "Destination" +msgstr "宛先" + +#: ../../operation/messages/message_list.php:196 +#: ../../operation/messages/message_edit.php:265 +msgid "Sender" +msgstr "差出人" + +#: ../../operation/messages/message_list.php:214 +msgid "Click to read" +msgstr "メッセージを読む" + +#: ../../operation/messages/message_list.php:218 +msgid "Mark as unread" +msgstr "未読にする" + +#: ../../operation/messages/message_list.php:224 +#: ../../operation/messages/message_list.php:228 +msgid "Message unread - click to read" +msgstr "未読メッセージ - クリックして読む" + +#: ../../operation/messages/message_list.php:256 +msgid "No Subject" +msgstr "件名なし" + +#: ../../operation/messages/message_edit.php:90 +msgid "Compose message" +msgstr "メッセージを作成" + +#: ../../operation/messages/message_edit.php:119 +msgid "This message does not exist in the system" +msgstr "このメッセージはシステム上に存在しません。" + +#: ../../operation/messages/message_edit.php:188 +msgid "wrote" +msgstr "によると" + +#: ../../operation/messages/message_edit.php:203 +msgid "Delete conversation" +msgstr "メッセージ削除" + +#: ../../operation/messages/message_edit.php:211 +msgid "Reply" +msgstr "返信" + +#: ../../operation/messages/message_edit.php:226 +msgid "User or group must be selected." +msgstr "ユーザまたはグループを選択する必要があります。" + +#: ../../operation/messages/message_edit.php:244 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "ユーザ %s 宛にメッセージを送りました。" + +#: ../../operation/messages/message_edit.php:245 +#, php-format +msgid "Error sending message to user %s" +msgstr "ユーザ %s 宛のメッセージ送信に失敗しました。" + +#: ../../operation/messages/message_edit.php:324 +msgid "Select user" +msgstr "ユーザの選択" + +#: ../../operation/messages/message_edit.php:330 +msgid "OR" +msgstr "または" + +#: ../../operation/messages/message_edit.php:341 +msgid "Select group" +msgstr "グループの選択" + +#: ../../operation/messages/message_edit.php:396 +msgid "Send message" +msgstr "メッセージを送信する" + +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:124 +msgid "Data to show" +msgstr "表示データ" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "表示する結果の数" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "期間" + +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:292 +msgid "Select this checkbox to write interval instead a date." +msgstr "日時の代わりに間隔を記載するにはこのチェックボックスを選択してください。" + +#: ../../operation/network/network_report.php:186 +#: ../../operation/network/network_report.php:233 +msgid "Flows" +msgstr "フロー" + +#: ../../operation/network/network_report.php:197 +#: ../../operation/network/network_report.php:235 +msgid "Packets" +msgstr "パケット" + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "ポート %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "IP %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" + +#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:108 +msgid "Network usage map" +msgstr "ネットワーク利用マップ" + +#: ../../operation/network/network_usage_map.php:139 +msgid "Show netflow map" +msgstr "Netflow マップ表示" + +#: ../../operation/network/network_usage_map.php:175 +msgid "No data retrieved" +msgstr "取得データがありません" + +#: ../../operation/netflow/nf_live_view.php:131 +#: ../../operation/netflow/nf_live_view.php:153 +#: ../../operation/netflow/nf_live_view.php:159 +msgid "Netflow live view" +msgstr "Netflow ライブビュー" + +#: ../../operation/netflow/nf_live_view.php:170 +msgid "Error creating filter" +msgstr "フィルタ作成エラー" + +#: ../../operation/netflow/nf_live_view.php:172 +msgid "Filter created successfully" +msgstr "フィルタを作成しました" + +#: ../../operation/netflow/nf_live_view.php:191 +msgid "Filter updated successfully" +msgstr "フィルタを更新しました" + +#: ../../operation/netflow/nf_live_view.php:192 +msgid "Error updating filter" +msgstr "フィルタ更新エラー" + +#: ../../operation/netflow/nf_live_view.php:216 +msgid "Draw live filter" +msgstr "ライブ表示フィルタ" + +#: ../../operation/netflow/nf_live_view.php:250 +msgid "Connection" +msgstr "接続" + +#: ../../operation/netflow/nf_live_view.php:303 +#: ../../operation/incidents/integriaims_export_csv.php:84 +#: ../../operation/incidents/configure_integriaims_incident.php:325 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 +#: ../../operation/incidents/list_integriaims_incidents.php:359 +msgid "Resolution" +msgstr "解像度" + +#: ../../operation/netflow/nf_live_view.php:303 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "間隔は解像度の長さに分割されます。" + +#: ../../operation/netflow/nf_live_view.php:404 +msgid "Select a filter" +msgstr "フィルタを選択" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "IP address resolution" +msgstr "IP アドレス解決" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "ホスト名を得るために IP アドレスから名前解決をします。" + +#: ../../operation/netflow/nf_live_view.php:480 +msgid "Source ip" +msgstr "ソース IP" + +#: ../../operation/netflow/nf_live_view.php:503 +msgid "Draw" +msgstr "描画" + +#: ../../operation/netflow/nf_live_view.php:507 +msgid "Save as new filter" +msgstr "新規フィルタとして保存" + +#: ../../operation/netflow/nf_live_view.php:508 +msgid "Update current filter" +msgstr "現在のフィルタを更新" + +#: ../../operation/netflow/nf_live_view.php:522 +msgid "No filter selected" +msgstr "フィルタが選択されていません" + +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:94 +msgid "Netflow explorer" +msgstr "Netflow エクスプローラ" + +#: ../../operation/snmpconsole/snmp_statistics.php:85 +msgid "SNMP Statistics" +msgstr "SNMP 統計" + +#: ../../operation/snmpconsole/snmp_statistics.php:102 +#: ../../operation/snmpconsole/snmp_view.php:697 +#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:143 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/snmpconsole/snmp_statistics.php:156 +#: ../../operation/snmpconsole/snmp_view.php:720 +msgid "There are no SNMP traps in database" +msgstr "SNMP トラップデータがありません。" + +#: ../../operation/snmpconsole/snmp_statistics.php:169 +msgid "Traps received by source" +msgstr "ソースごとの受信トラップ" + +#: ../../operation/snmpconsole/snmp_statistics.php:183 +#: ../../operation/snmpconsole/snmp_statistics.php:251 +msgid "Number" +msgstr "数" + +#: ../../operation/snmpconsole/snmp_statistics.php:197 +#: ../../operation/snmpconsole/snmp_view.php:962 +msgid "View agent details" +msgstr "エージェント概要の参照" + +#: ../../operation/snmpconsole/snmp_statistics.php:237 +msgid "Traps received by Enterprise String" +msgstr "Enterprise文字列ごとの受信トラップ" + +#: ../../operation/snmpconsole/snmp_statistics.php:250 +msgid "Trap Enterprise String" +msgstr "Enterprise文字列トラップ" + +#: ../../operation/snmpconsole/snmp_browser.php:77 +msgid "SNMP Browser" +msgstr "SNMP ブラウザ" + +#: ../../operation/snmpconsole/snmp_browser.php:218 +msgid "Adding modules in progress" +msgstr "モジュールを追加中" + +#: ../../operation/snmpconsole/snmp_browser.php:552 +msgid "Create policy" +msgstr "ポリシー作成" + +#: ../../operation/snmpconsole/snmp_browser.php:644 +msgid "Are you sure you want add module?" +msgstr "モジュールを追加しますか?" + +#: ../../operation/snmpconsole/snmp_view.php:602 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" +"トラップの英数字フィールドで検索。\n" +"\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してください。" + +#: ../../operation/snmpconsole/snmp_view.php:628 +msgid "Search by trap type" +msgstr "トラップタイプによる検索" + +#: ../../operation/snmpconsole/snmp_view.php:652 +msgid "Group by Enterprise String/IP" +msgstr "Enterprise 文字列/IP ごとのグループ" + +#: ../../operation/snmpconsole/snmp_view.php:718 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" + +#: ../../operation/snmpconsole/snmp_view.php:758 +msgid "Refresh every" +msgstr "更新周期" + +#: ../../operation/snmpconsole/snmp_view.php:770 +msgid "SNMP Traps" +msgstr "SNMP トラップ" + +#: ../../operation/snmpconsole/snmp_view.php:871 +msgid "Trap subtype" +msgstr "トラップサブタイプ" + +#: ../../operation/snmpconsole/snmp_view.php:1076 +msgid "Variable bindings:" +msgstr "バインド変数:" + +#: ../../operation/snmpconsole/snmp_view.php:1089 +msgid "See more details" +msgstr "詳細表示" + +#: ../../operation/snmpconsole/snmp_view.php:1101 +msgid "Enterprise String:" +msgstr "Enterprise文字列:" + +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Trap type:" +msgstr "トラップタイプ:" + +#: ../../operation/snmpconsole/snmp_view.php:1179 +msgid "Count:" +msgstr "件数:" + +#: ../../operation/snmpconsole/snmp_view.php:1183 +msgid "First trap:" +msgstr "最初のトラップ:" + +#: ../../operation/snmpconsole/snmp_view.php:1187 +msgid "Last trap:" +msgstr "最新のトラップ:" + +#: ../../operation/snmpconsole/snmp_view.php:1208 +msgid "No matching traps found" +msgstr "条件にマッチするトラップがありません。" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 ../../operation/menu.php:133 +msgid "MIB uploader" +msgstr "MIB アップローダ" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:86 +msgid "" +"MIB files will be installed on the system. Please note that a MIB may depend on other " +"MIB. To customize trap definitions use the SNMP trap editor." +msgstr "" +"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性があるこ" +"とに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエディタを" +"使ってください。" + +#: ../../operation/menu.php:98 +msgid "Netflow Live View" +msgstr "Netflow ライブビュー" + +#: ../../operation/menu.php:128 +msgid "SNMP browser" +msgstr "SNMP ブラウザ" + +#: ../../operation/menu.php:137 +msgid "SNMP filters" +msgstr "SNMP フィルタ" + +#: ../../operation/menu.php:261 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "GIS マップ" + +#: ../../operation/menu.php:266 +msgid "List of Gis maps" +msgstr "GISマップ一覧" + +#: ../../operation/menu.php:417 +msgid "RSS" +msgstr "RSS" + +#: ../../operation/menu.php:430 +msgid "Sound Console" +msgstr "サウンドコンソール" + +#: ../../operation/menu.php:433 +msgid "No alert" +msgstr "アラートなし" + +#: ../../operation/menu.php:434 +msgid "Silence alarm" +msgstr "サイレントアラーム" + +#: ../../operation/menu.php:442 ../../operation/events/sound_events.php:63 +msgid "Sound Events" +msgstr "サウンドイベント" + +#: ../../operation/menu.php:464 ../../operation/events/events.php:1504 +msgid "Sound Alerts" +msgstr "サウンドアラート" + +#: ../../operation/menu.php:487 +msgid "Configure user notifications" +msgstr "ユーザ通知設定" + +#: ../../operation/menu.php:507 +msgid "Integria IMS statistics" +msgstr "Integria IMS 統計" + +#: ../../operation/menu.php:508 +msgid "Integria IMS ticket list" +msgstr "Integria IMS チケット一覧" + +#: ../../operation/menu.php:521 +msgid "Messages List" +msgstr "メッセージ一覧" + +#: ../../operation/menu.php:522 +msgid "New message" +msgstr "新規メッセージ" + +#: ../../operation/menu.php:544 +msgid "Scheduled downtime" +msgstr "計画停止" + +#: ../../operation/menu.php:618 +msgid "Tools" +msgstr "ツール" + +#: ../../operation/gis_maps/gis_map.php:200 +msgid "No maps found" +msgstr "マップがありません。" + +#: ../../operation/gis_maps/gis_map.php:219 +msgid "Caution: Do you want delete the map?" +msgstr "警告: マップを削除しますか。" + +#: ../../operation/gis_maps/gis_map.php:226 +msgid "Do you want to set default the map?" +msgstr "このマップをデフォルトに設定しますか。" + +#: ../../operation/gis_maps/gis_map.php:234 +msgid "There was error on setup the default map." +msgstr "デフォルトマップの設定でエラーが発生しました。" + +#: ../../operation/gis_maps/render_view.php:145 +msgid "Show link to public GIS map" +msgstr "公開 GIS マップのリンク表示" + +#: ../../operation/gis_maps/render_view.php:170 +msgid "Filter by status" +msgstr "状態によるフィルタ" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 +msgid "Position (Lat, Long, Alt)" +msgstr "位置 (緯度、経度、高度)" + +#: ../../operation/gis_maps/ajax.php:238 +msgid "Start contact" +msgstr "利用開始" + +#: ../../operation/gis_maps/ajax.php:240 +msgid "Num reports" +msgstr "レポート数" + +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 +msgid "Default position of map." +msgstr "マップのデフォルト位置" + +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "サテライトバージョン" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "未承諾障害イベント数" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "アラートが発報" + +#: ../../operation/incidents/integriaims_export_csv.php:80 +msgid "ID Ticket" +msgstr "チケット ID" + +#: ../../operation/incidents/integriaims_export_csv.php:82 +#: ../../operation/incidents/list_integriaims_incidents.php:517 +msgid "Group/Company" +msgstr "グループ/会社" + +#: ../../operation/incidents/integriaims_export_csv.php:87 +msgid "Started" +msgstr "起動" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +#: ../../operation/incidents/configure_integriaims_incident.php:282 +#: ../../operation/incidents/list_integriaims_incidents.php:345 +#: ../../operation/incidents/list_integriaims_incidents.php:521 +msgid "Creator" +msgstr "作成者" + +#: ../../operation/incidents/incident_statistics.php:29 +msgid "Incidents by status" +msgstr "ステータスで分類したインシデント" + +#: ../../operation/incidents/incident_statistics.php:32 +msgid "Incidents by priority" +msgstr "優先順位で分類したインシデント" + +#: ../../operation/incidents/incident_statistics.php:35 +msgid "Incidents by group" +msgstr "グループで分類したインシデント" + +#: ../../operation/incidents/incident_statistics.php:38 +msgid "Incidents by user" +msgstr "ユーザで分類したインシデント" + +#: ../../operation/incidents/configure_integriaims_incident.php:26 +msgid "Update Integria IMS Ticket" +msgstr "Integria IMS チケットの更新" + +#: ../../operation/incidents/configure_integriaims_incident.php:28 +msgid "Create Integria IMS Ticket" +msgstr "Integria IMS チケットの作成" + +#: ../../operation/incidents/configure_integriaims_incident.php:123 +msgid "Successfully created in Integria IMS" +msgstr "Integria IMS で作成しました" + +#: ../../operation/incidents/configure_integriaims_incident.php:124 +msgid "Could not be created in Integria IMS" +msgstr "Integria IMS で作成できませんでした" + +#: ../../operation/incidents/configure_integriaims_incident.php:144 +msgid "Successfully updated in Integria IMS" +msgstr "Integria IMS で更新しました" + +#: ../../operation/incidents/configure_integriaims_incident.php:145 +msgid "Could not be updated in Integria IMS" +msgstr "Integria IMS で更新できませんでした" + +#: ../../operation/incidents/configure_integriaims_incident.php:294 +msgid "This field corresponds to the Integria IMS user specified in Integria IMS setup" +msgstr "" +"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応しま" +"す" + +#: ../../operation/incidents/configure_integriaims_incident.php:352 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206 +msgid "File name" +msgstr "ファイル名" + +#: ../../operation/incidents/configure_integriaims_incident.php:354 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208 +msgid "Attachment description" +msgstr "添付の説明" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77 +msgid "Not yet" +msgstr "未完了" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81 +msgid "Not closed yet" +msgstr "未クローズ" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +msgid "Filename" +msgstr "ファイル名" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142 +msgid "File successfully deleted" +msgstr "ファイルを削除しました" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143 +msgid "File could not be deleted" +msgstr "ファイルを削除できませんでした" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 +msgid "Add attachment" +msgstr "ファイルを追加" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397 +msgid "Attached files" +msgstr "添付ファイル一覧" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282 +msgid "Comment successfully added" +msgstr "コメントを追加しました" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283 +msgid "Comment could not be added" +msgstr "コメントを追加できませんでした" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309 +msgid "No comments found" +msgstr "コメントがありません" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349 +msgid "Created by" +msgstr "作者:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350 +msgid "Owned by" +msgstr "オーナー:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351 +msgid "Closed by" +msgstr "クローズ者:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +msgid "Closed at" +msgstr "クローズ日時:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379 +msgid "People" +msgstr "ユーザ" + +#: ../../operation/incidents/list_integriaims_incidents.php:24 +msgid "Integria IMS Tickets" +msgstr "Integria IMS チケット" + +#: ../../operation/incidents/list_integriaims_incidents.php:317 +msgid "Text filter" +msgstr "テキストフィルタ" + +#: ../../operation/incidents/list_integriaims_incidents.php:381 +msgid "Created from" +msgstr "作成者:" + +#: ../../operation/incidents/list_integriaims_incidents.php:393 +msgid "Created to" +msgstr "作成対象者:" + +#: ../../operation/incidents/list_integriaims_incidents.php:518 +msgid "Status/Resolution" +msgstr "状態/解決" + +#: ../../operation/incidents/list_integriaims_incidents.php:520 +msgid "Updated/Started" +msgstr "更新/開始" + +#: ../../operation/incidents/list_integriaims_incidents.php:564 +msgid "No tickets to show" +msgstr "表示するチケットがありません" + +#: ../../operation/search_main.php:55 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:65 ../../operation/search_main.php:67 +#: ../../operation/search_main.php:69 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 +#, php-format +msgid "%s Found" +msgstr "%s 件見つかりました" + +#: ../../operation/search_main.php:64 +msgid "Users found" +msgstr "ユーザが見つかりました" + +#: ../../operation/search_main.php:66 +msgid "Graphs found" +msgstr "グラフが見つかりました" + +#: ../../operation/search_main.php:68 +msgid "Reports found" +msgstr "レポートが見つかりました" + +#: ../../operation/search_main.php:83 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "%s 件(%s件中)の表示。全マッチ内容の表示。" + +#: ../../operation/reporting/reporting_viewer.php:249 +msgid "View Report" +msgstr "レポート表示" + +#: ../../operation/reporting/reporting_viewer.php:291 +msgid "Set initial date" +msgstr "開始日時を指定する" + +#: ../../operation/reporting/reporting_viewer.php:321 +msgid "Invalid date selected. Initial date must be before end date." +msgstr "不正な日時です。開始日時は終了日時より前でなければいけません。" + +#: ../../operation/reporting/reporting_viewer.php:426 +#: ../../operation/reporting/graph_viewer.php:505 +msgid "Invalid date selected" +msgstr "不正なデータが選択されました。" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:539 +msgid "There are no defined reportings" +msgstr "定義されたレポートがありません" + +#: ../../operation/reporting/graph_viewer.php:335 +msgid "No data." +msgstr "データがありません。" + +#: ../../operation/reporting/graph_viewer.php:369 +#: ../../operation/reporting/graph_viewer.php:391 +msgid "Graph defined" +msgstr "定義済みグラフ" + +#: ../../operation/reporting/graph_viewer.php:383 +msgid "Equalize maxiddmum thresholds" +msgstr "最大閾値を等しくする" + +#: ../../operation/reporting/graph_viewer.php:383 +msgid "" +"If an option is selected, all graphs will have the highest value from all modules " +"included in the graph as a maximum threshold" +msgstr "" +"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値が含まれ" +"ます。" + +#: ../../operation/reporting/graph_viewer.php:392 +msgid "Zoom x1" +msgstr "ズーム x1" + +#: ../../operation/reporting/graph_viewer.php:393 +msgid "Zoom x2" +msgstr "ズーム x2" + +#: ../../operation/reporting/graph_viewer.php:394 +msgid "Zoom x3" +msgstr "ズーム x3" + +#: ../../operation/reporting/graph_viewer.php:513 +msgid "Custom graph viewer" +msgstr "カスタムグラフ参照" + +#: ../../operation/events/sound_events.php:164 +msgid "Sound console" +msgstr "サウンドコンソール" + +#: ../../operation/events/sound_events.php:256 +msgid "Sounds" +msgstr "サウンド" + +#: ../../operation/events/sound_events.php:283 +msgid "Events not found" +msgstr "イベントが見つかりません。" + +#: ../../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:214 +msgid "The URL of your feed has bad hash." +msgstr "フィードの URL に不正はハッシュがあります。" + +#: ../../operation/events/events.php:794 +msgid "Validate events" +msgstr "イベントの承諾" + +#: ../../operation/events/events.php:811 +msgid "Validate event" +msgstr "承諾" + +#: ../../operation/events/events.php:846 +msgid "Change to in progress status" +msgstr "進捗状況へ変更" + +#: ../../operation/events/events.php:871 +msgid "Delete events" +msgstr "イベントの削除" + +#: ../../operation/events/events.php:1325 +msgid "Event viewer" +msgstr "イベントビューワ" + +#: ../../operation/events/events.php:1372 +msgid "History event list" +msgstr "イベント一覧履歴" + +#: ../../operation/events/events.php:1383 +msgid "RSS Events" +msgstr "RSS イベント" + +#: ../../operation/events/events.php:1394 +msgid "Export to CSV file" +msgstr "CSV ファイルに書き出す" + +#: ../../operation/events/events.php:1405 ../../operation/events/events.php:1453 +msgid "Sound events" +msgstr "サウンドイベント" + +#: ../../operation/events/events.php:1458 +msgid "History" +msgstr "履歴" + +#: ../../operation/events/events.php:1533 +msgid "Errors" +msgstr "エラー" + +#: ../../operation/events/events.php:1690 +msgid "Search in secondary groups" +msgstr "セカンダリグループで検索" + +#: ../../operation/events/events.php:1880 +msgid "Id source event" +msgstr "ソースイベントID" + +#: ../../operation/events/events.php:1938 +msgid "From (date:time)" +msgstr "開始 (日付:時間)" + +#: ../../operation/events/events.php:1996 +msgid "To (date:time)" +msgstr "終了 (日付:時間)" + +#: ../../operation/events/events.php:2007 +msgid "Filter custom data by field name" +msgstr "フィールド名でカスタムデータをフィルタ" + +#: ../../operation/events/events.php:2008 +msgid "Filter custom data by field value" +msgstr "フィールドの値でカスタムデータをフィルタ" + +#: ../../operation/events/events.php:2023 +msgid "Custom data filter" +msgstr "カスタムデータフィルタ" + +#: ../../operation/events/events.php:2045 +msgid "Custom data search" +msgstr "カスタムデータ検索" + +#: ../../operation/events/events.php:2170 +msgid "Current filter" +msgstr "現在のフィルタ" + +#: ../../operation/events/events.php:2175 +msgid "Not set." +msgstr "未設定" + +#: ../../operation/events/events.php:2188 +msgid "Any status." +msgstr "任意の状態" + +#: ../../operation/events/events.php:2192 +msgid "New events." +msgstr "新規イベント" + +#: ../../operation/events/events.php:2196 +msgid "Validated." +msgstr "承諾済" + +#: ../../operation/events/events.php:2200 +msgid "In proccess." +msgstr "処理中" + +#: ../../operation/events/events.php:2204 +msgid "Not validated." +msgstr "未承諾" + +#: ../../operation/events/events.php:2216 +msgid "Any time." +msgstr "任意の時間" + +#: ../../operation/events/events.php:2218 ../../operation/events/events.php:2795 +msgid "Last hour." +msgstr "直近 1時間" + +#: ../../operation/events/events.php:2220 +#, php-format +msgid "Last %d hours." +msgstr "直近 %d 時間" + +#: ../../operation/events/events.php:2228 +msgid "Duplicated" +msgstr "複数回数発生イベント" + +#: ../../operation/events/events.php:2231 +msgid "All events." +msgstr "全イベント" + +#: ../../operation/events/events.php:2235 +msgid "Group agents." +msgstr "グループエージェント" + +#: ../../operation/events/events.php:2351 +msgid "Execute event response" +msgstr "イベント応答の実行" + +#: ../../operation/events/events.php:2364 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "最大 %s イベントのカスタム応答を選択できます" + +#: ../../operation/events/events.php:2369 +msgid "Please, select an event" +msgstr "イベントを選択してください" + +#: ../../operation/events/events.php:2458 +msgid "has at least" +msgstr "は少なくとも次のイベント数あります:" + +#: ../../operation/events/events.php:2460 +msgid "events" +msgstr "イベント" + +#: ../../operation/events/events.php:2797 +msgid "hours." +msgstr "時間" + +#: ../../operation/search_policies.php:37 +msgid "Id_group" +msgstr "グループ ID" + +#: ../../general/footer.php:56 +#, php-format +msgid "Page generated on %s" +msgstr "ページ生成: %s" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "ヘルプを見る" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "php バージョン警告" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "インシデントが定義されていません。" + +#: ../../general/first_task/incidents.php:31 ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "インシデント作成" + +#: ../../general/first_task/incidents.php:34 +#, php-format +msgid "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take place on " +"these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any user is " +"able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with comments and " +"files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles and work-" +"flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and files.\n" +"\t\t" +msgstr "" +"システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\n" +"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデントを監視す" +"る必要があります。\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/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "自動検出タスクが定義されていません。" + +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "自動検出タスクの作成" + +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if that item " +"it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of detection: " +"Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks and their " +"interfaces), and other customized \n" +"\t\ttype. You can define your own customized recon script." +msgstr "" +"自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n" +"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視されている" +"場合は、\n" +"\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。 ICMP (ping)、\n" +"\t\t SNMP (ネットワークとそのインターフェースのトポロ" +"ジの検出)、その他 カスタマイズタイプです。\n" +"\t\t独自の自動検出スクリプトを定義することができます。" + +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "自動検出" + +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "HA クラスタが定義されていません。" + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "PANDORA FMS 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/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "ビジュアルコンソール作成" + +#: ../../general/first_task/map_builder.php:37 +#, php-format +msgid "" +"%s allows users to create visual maps on which each user is able to create his or her " +"own monitoring map. The new visual console editor is much more practical, although " +"the prior visual console editor had its advantages. On the new visual console, we've " +"been successful in imitating the sensation and touch of a drawing application like " +"GIMP. We've also simplified the editor by dividing it into several subject-divided " +"tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and 'Editor'. The items " +"the %s Visual Map was designed to handle are 'static images', 'percentage bars', " +"'module graphs' and 'simple values'." +msgstr "" +"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユーザーは独" +"自の監視マップを作成できます。以前のビジュアルコンソールエディターにも良い点はありまし" +"たが、新しいビジュアルコンソールエディターははるかに実用的です。新しいビジュアルコン" +"ソールでは、GIMP のような描画アプリケーションの感覚とタッチを模倣することに成功してい" +"ます。また、'データ'、'プレビュー'、'ウィザード'、'要素のリスト'、'エディタ' という名" +"前の複数の要素に分割したタブにすることで、エディターを簡素化しました。%s ビジュアル" +"マップが処理するように設計したアイテムは、’静的画像'、'パーセントバー'、'モジュールグ" +"ラフ'、および '単純な値' です。" + +#: ../../general/first_task/cluster_builder.php:46 +msgid "There are no clusters defined yet." +msgstr "クラスタが定義されていません。" + +#: ../../general/first_task/cluster_builder.php:54 +#: ../../general/first_task/cluster_builder.php:72 +msgid "Create Cluster" +msgstr "クラスタ作成" + +#: ../../general/first_task/cluster_builder.php:57 +msgid "" +"A cluster is a group of devices that provide the same service in high availability." +msgstr "クラスタは、同一サービスの高可用性を提供するデバイスのグループです。" + +#: ../../general/first_task/cluster_builder.php:59 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "どのようにサービス提供であるかに依存し、次の 2つのタイプがあります:" + +#: ../../general/first_task/cluster_builder.php:61 +msgid "" +"Clusters to balance the service load: these are active - active (A/A) mode " +"clusters. It means that all the nodes (or machines that compose it) are working. They " +"must be working because if one stops working, it will overload the others." +msgstr "" +"
    サービス負荷分散クラスタ
    :これらは、アクティブ-アクティブ(A/A)モードクラスタで" +"す。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止しても動作" +"を継続しますが負荷は増えます。" + +#: ../../general/first_task/cluster_builder.php:63 +msgid "" +"Clusters to guarantee service: these are active - passive (A/P) mode clusters. " +"It means that one of the nodes (or machines that make up the cluster) will be running " +"(primary) and another won't (secondary). When the primary goes down, the secondary " +"must take over and give the service instead. Although many of the elements of this " +"cluster are active-passive, it will also have active elements in both of them that " +"indicate that the passive node is \"online\", so that in the case of a service " +"failure in the master, the active node collects this information." +msgstr "" +"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。一つの" +"ノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作していません" +"(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを代わりに引き継ぎます。" +"このクラスタの要素の多くはアクティブ-スタンバイですが、スタンバイノードが「オンライ" +"ン」であることを示すアクティブな要素もあります。したがって、マスタのサービス障害の場" +"合、アクティブノードはこの情報を収集します。" + +#: ../../general/first_task/network_map.php:19 +msgid "There are no network map defined yet." +msgstr "ネットワークマップが定義されていません。" + +#: ../../general/first_task/network_map.php:26 +msgid "Network Map" +msgstr "ネットワーク マップ" + +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 +msgid "Create Network Map" +msgstr "ネットワークマップ作成" + +#: ../../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 and " +"relationships, agents, modules and groups available to the user. \n" +"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" +"\t\t\t" +msgstr "" +"オープンソース版のネットワークマップもあります。\n" +"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよびグループ" +"をユーザにグラフィカルに表示できます。\n" +"\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n" +"\t\t\t" + +#: ../../general/first_task/network_map.php:37 +msgid "Topology Map" +msgstr "トポロジマップ" + +#: ../../general/first_task/network_map.php:38 +msgid "Group Map" +msgstr "グループマップ" + +#: ../../general/first_task/network_map.php:39 +msgid "Radial Map (User without strict user)" +msgstr "放射状マップ (制限ユーザを除く)" + +#: ../../general/first_task/network_map.php:40 +msgid "Dinamic Map" +msgstr "ダイナミックマップ" + +#: ../../general/first_task/network_map.php:41 +msgid "Policy Map (Only Enterprise version)" +msgstr "ポリシーマップ (Enterprise 版のみ)" + +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "タグが定義されていません。" + +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "タグ作成" + +#: ../../general/first_task/tags.php:28 +msgid "" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen " +"modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with certain " +"tags." +msgstr "" +"モジュールへのアクセスは、タグシステムによって設定できます。\n" +"\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられます。\n" +"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限できま" +"す。" + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "コマンドが定義されていません。" + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured command " +"along any agent in your %s. The only requirement is to have remote configuration " +"enabled in your agent." +msgstr "" +"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる 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/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 +msgid "There are no custom fields defined yet." +msgstr "カスタムフィールドが定義されていません。" + +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 +msgid "Create Custom Fields" +msgstr "カスタムフィールド作成" + +#: ../../general/first_task/custom_fields.php:30 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t You're able to create custom fields by klicking on 'Administration' -> 'Manage " +"monitoring' -> 'Manage custom fields'. " +msgstr "" +"カスタムフィールドは、エージェントの独自情報を記載できます。\n" +"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを作成" +"できます。 " + +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "フィールド管理" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "フィールド管理の作成" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " +msgstr "" +"カスタムフィールドは、エージェントの独自情報を記載できます。\n" +"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを" +"作成できます。 " + +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "フィールド作成 " + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no scheduled downtime defined yet." +msgstr "計画停止が定義されていません。" + +#: ../../general/first_task/planned_downtime.php:22 +msgid "Scehduled Downtime" +msgstr "計画停止" + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Scheduled Downtime" +msgstr "計画停止の作成" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific intervals " +"whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During down " +"time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't contain " +"any data within those intervals." +msgstr "" +"%s は、計画停止管理システムがあります。\n" +"\t\t\t\t\t\tこのシステムは、エージェントを無効化することにより、停止時間中のアラートを" +"無効化するように設計されました。\n" +"\t\t\t\t\t\tエージェントが無効化されている場合、エージェントは情報を収集しません。 計" +"画停止期間中は、\n" +"\t\t\t\t\t\tレポートにおける停止時間には考慮されません。なぜなら、この間はエージェント" +"の情報が無いためです。" + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "SNMPフィルタがまだ定義されていません。" + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "SNMPフィルタ" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "SNMPフィルタの作成" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From Pandora " +"FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order to avoid " +"straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -> " +"'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - just the " +"ones for the server are going to get ruled out automatically. " +msgstr "" +"いくつかのシステムで大量のトラップが発生しています。\n" +"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必要な負荷" +"をかけないように\n" +"\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管理' -> " +"'SNMP管理コンソール' および \n" +"\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外され、一" +"つになります。 " + +#: ../../general/first_task/service_list.php:19 +msgid "There are no services defined yet." +msgstr "サービスが定義されていません。" + +#: ../../general/first_task/service_list.php:26 +#: ../../general/first_task/service_list.php:40 +msgid "Create Services" +msgstr "サービス作成" + +#: ../../general/first_task/service_list.php:30 +msgid "" +"A service is a way to group your IT resources based on their functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your " +"support application, or even your printers.\n" +"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, switches, " +"firewalls, CRMs, ERPs, websites and numerous other services. \n" +"\t\t\t\t\t\t By the following example, you're able to see more clearly what a service " +"is:\n" +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +"world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-line " +"shop and support." +msgstr "" +"サービスは、機能に基づき IT リソースをグループ化する手法です。\n" +"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポートアプリ" +"ケーション、プリンタなどです。\n" +"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、ウェブ" +"サイトやその他さまざまなサービスを含めることができる論理的なグループです。\n" +"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" +"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n" +"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門からなっ" +"ています。" + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "カスタムグラフが定義されていません。" + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "カスタムグラフ" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "カスタムグラフ作成" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale defined by " +"the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time the " +"operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the graphs " +"the user customizes by using one or more modules to do so." +msgstr "" +"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示するよう" +"に設計されています。\n" +"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタイミン" +"グで生成され、最新の状態を表示します。\n" +"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、ユーザ" +"が 1つ以上のモジュールを使用してカスタマイズするグラフです。" + +#: ../../general/first_task/transactional_list.php:21 +msgid "There are no transactions defined yet." +msgstr "トランザクションが定義されていません。" + +#: ../../general/first_task/transactional_list.php:28 +msgid "Transactions" +msgstr "トランザクション" + +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 +msgid "Create Transactions" +msgstr "トランザクションの作成" + +#: ../../general/first_task/transactional_list.php:34 +msgid "" +"The new transactional server allows you to execute tasks dependent on the others " +"following a user-defined design. This means that it is possible to coordinate several " +"executions to check a target at a given time.\n" +"\n" +"Transaction graphs represent the different processes within our infrastructure that " +"we use to deliver our service." +msgstr "" +"新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行ができます。" +"指定した時間に対象を確認するために、いくつかの処理の実行ができることを意味します。\n" +"\n" +"トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処理を表現" +"します。" + +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 +msgid "Create Collections" +msgstr "コレクション作成" + +#: ../../general/first_task/collections.php:28 +msgid "" +"A file collection is a group of files (e.g. scripts or executables) which are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows or " +"UNIX). The file collections allow to be propagated\n" +"\t\t along with the policies in order to be used by a group of agents, using a " +"'package' of scripts and modules which use them.\n" +"\t\tFirst we learn how to use the file collections in the agent's view, how to " +"conduct it manually, agent by agent, without using collections,\n" +"\t\t and how to do the same thing by using policies.Our first task is to arrange a " +"compilation of files. In order to do this, please go to the agent's \n" +"\t\t administrator. Subsequently, we're going to see a 'sub option' called " +"'Collections'. Please click on it in order to create a new collection as we can see " +"on \n" +"\t\t the picture below. " +msgstr "" +"ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループです。\n" +"\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされます。" +"ファイルコレクションは、\n" +"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使えるように" +"するためにポリシーでまとめることができます。\n" +"\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレクションを" +"利用せずにエージェントごとに手動で\n" +"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うことは、編集" +"ファイルの配置です。これを行うには、\n" +"\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプション" +"へ行きます。以下の画像で示すように、\n" +"\t\t新たなコレクションを作成するにはそれをクリックします。 " + +#: ../../general/header.php:77 +msgid "Sobre actualización de revisión menor" +msgstr "" + +#: ../../general/header.php:79 +msgid "About minor release update" +msgstr "マイナーアップデートに関して" + +#: ../../general/header.php:112 ../../general/header.php:114 +msgid "Enter keywords to search" +msgstr "検索文字列を入力してください" + +#: ../../general/header.php:379 +msgid "Go to support" msgstr "サポート" -#: ../../general/login_help_dialog.php:88 -msgid "Forums" -msgstr "フォーラム" - -#: ../../general/login_help_dialog.php:96 ../../general/login_help_dialog.php:101 -#: ../../general/mysqlerr.php:142 -msgid "Documentation" +#: ../../general/header.php:393 +msgid "Go to documentation" msgstr "ドキュメント" -#: ../../general/login_help_dialog.php:110 -msgid "Click here to don't show again this message" -msgstr "このメッセージを再度表示したくない場合はこちらをクリックしてください" +#: ../../general/header.php:828 +msgid "Report an issue" +msgstr "問題を報告" -#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 -#: ../../operation/agentes/status_monitor.php:556 -#: ../../operation/agentes/alerts_status.functions.php:194 -#: ../../operation/agentes/alerts_status.functions.php:203 -#: ../../operation/agentes/estado_agente.php:267 -#: ../../operation/agentes/estado_agente.php:291 ../../operation/search_results.php:192 -#: ../../include/ajax/heatmap.ajax.php:70 ../../include/class/AuditLog.class.php:180 -#: ../../include/class/AgentWizard.class.php:2617 -#: ../../include/class/CalendarManager.class.php:1020 -#: ../../include/functions_snmp.php:358 ../../include/functions_snmp_browser.php:925 -#: ../../include/functions_snmp_browser.php:1501 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 -#: ../../enterprise/tools/ipam/ipam_list.php:90 -#: ../../enterprise/tools/ipam/ipam_list.php:164 -#: ../../enterprise/operation/log/log_viewer.php:513 -#: ../../enterprise/operation/log/log_viewer.php:796 -#: ../../enterprise/operation/services/services.treeview_services.php:128 -#: ../../enterprise/operation/services/services.list.php:225 -#: ../../enterprise/operation/services/services.list.php:318 -#: ../../enterprise/operation/services/services.table_services.php:147 -#: ../../enterprise/operation/services/services.table_services.php:238 -#: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:109 -#: ../../enterprise/operation/agentes/agent_inventory.php:114 -#: ../../enterprise/operation/inventory/inventory.php:360 -#: ../../enterprise/operation/inventory/inventory.php:413 -#: ../../enterprise/meta/general/header.php:44 -#: ../../enterprise/meta/general/header.php:46 -#: ../../enterprise/meta/general/main_header.php:689 -#: ../../enterprise/meta/general/main_header.php:691 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:362 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:419 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:687 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:758 -#: ../../enterprise/meta/advanced/metasetup.relations.php:451 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 -#: ../../enterprise/meta/advanced/collections.php:166 -#: ../../enterprise/meta/advanced/collections.php:179 -#: ../../enterprise/meta/agentsearch.php:110 -#: ../../enterprise/extensions/translate_string.php:323 -#: ../../enterprise/godmode/modules/local_components.php:573 -#: ../../enterprise/godmode/modules/local_components.php:598 -#: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:313 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 -#: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../extensions/module_groups.php:283 ../../mobile/operation/agent.php:320 -#: ../../godmode/modules/manage_network_components.php:678 -#: ../../godmode/reporting/map_builder.php:350 -#: ../../godmode/reporting/map_builder.php:372 ../../godmode/reporting/graphs.php:241 -#: ../../godmode/reporting/visual_console_favorite.php:158 -#: ../../godmode/reporting/visual_console_favorite.php:188 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1139 -#: ../../godmode/reporting/reporting_builder.php:795 -#: ../../godmode/agentes/module_manager.php:65 -#: ../../godmode/agentes/planned_downtime.list.php:284 -#: ../../godmode/agentes/planned_downtime.list.php:368 -#: ../../godmode/agentes/modificar_agente.php:363 -#: ../../godmode/agentes/modificar_agente.php:372 -#: ../../godmode/alerts/alert_actions.php:244 ../../godmode/alerts/alert_actions.php:302 -#: ../../godmode/alerts/alert_templates.php:314 -#: ../../godmode/alerts/alert_templates.php:325 ../../godmode/users/user_list.php:402 -#: ../../godmode/users/user_list.php:412 -#: ../../godmode/module_library/module_library_view.php:102 -#: ../../godmode/module_library/module_library_view.php:112 -#: ../../godmode/groups/group_list.php:785 ../../godmode/groups/group_list.php:795 -msgid "Search" -msgstr "検索" +#: ../../general/reporting_console_node.php:48 +msgid "Console only reporting node" +msgstr "コンソールのみのレポートノード" -#: ../../general/ui/agents_list.php:146 ../../operation/reporting/graph_viewer.php:316 -#: ../../operation/reporting/reporting_viewer.php:347 -#: ../../include/functions_events.php:4379 -#: ../../enterprise/operation/log/log_viewer.php:845 -#: ../../enterprise/operation/log/log_viewer.php:867 -#: ../../enterprise/include/class/CommandCenter.class.php:463 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 -#: ../../godmode/massive/massive_copy_modules.php:235 -#: ../../godmode/massive/massive_operations.php:361 -#: ../../godmode/massive/massive_add_profiles.php:292 -msgid "Loading" -msgstr "読み込み中" +#: ../../general/reporting_console_node.php:77 +msgid "Mr" +msgstr "Mr" -#: ../../general/ui/agents_list.php:152 -msgid "No agents found" -msgstr "エージェントがありません" +#: ../../general/reporting_console_node.php:85 +msgid "Memory limit" +msgstr "メモリ制限" + +#: ../../general/reporting_console_node.php:93 +msgid "Php version" +msgstr "PHP バージョン" #: ../../general/alert_enterprise.php:107 #, php-format @@ -2834,15 +50929,86 @@ msgstr "" "す。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が簡単になりパ" "フォーマンスが向上します。" +#: ../../general/login_help_dialog.php:43 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you learn " +"more about the software. Monitoring can be overwhelming, but take your time to learn " +"how to harness the power of %s!" +msgstr "" +"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつかお勧" +"めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方法を学んでく" +"ださい!" + +#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 +msgid "Online help" +msgstr "オンラインヘルプ" + +#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75 +msgid "Enterprise version" +msgstr "Enterprise版" + +#: ../../general/login_help_dialog.php:88 +msgid "Forums" +msgstr "フォーラム" + +#: ../../general/login_help_dialog.php:110 +msgid "Click here to don't show again this message" +msgstr "このメッセージを再度表示したくない場合はこちらをクリックしてください" + +#: ../../general/maintenance.php:36 +msgid "Maintenance tasks in progress" +msgstr "メンテナンスタスク実行中" + +#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +msgid "You will be automatically redirected when all tasks finish" +msgstr "全タスクが完了すると自動的にリダイレクトされます" + +#: ../../general/logon_ok.php:169 +#, php-format +msgid "%s Overview" +msgstr "%s 概要" + +#: ../../general/logon_ok.php:222 +msgid "News board" +msgstr "ニュースボード" + +#: ../../general/logon_ok.php:298 +msgid "Latest activity" +msgstr "最新の活動" + +#: ../../general/noaccess.php:147 +msgid "You do not have access to this page" +msgstr "このページにはアクセスできません。" + +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "エージェントがありません" + +#: ../../general/logon_failed.php:30 +msgid "" +"Either, your password or your login are incorrect. Please check your CAPS LOCK key, " +"username and password are case SeNSiTiVe.

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

    ログインの失敗は Pandora FMS システムログに記録され他" +"のユーザから確認されます。問題があれば管理者へ連絡してください。" + +#: ../../general/node_deactivated.php:36 +msgid "You cannot use this node until system is unified" +msgstr "システムが統合されるまで、このノードを使用することはできません" + +#: ../../general/node_deactivated.php:56 +#, php-format +msgid "Please navigate to %s to unify system" +msgstr "システムを統合するには、%s に移動してください" + #: ../../general/noaccess2.php:23 msgid "Access to this page is restricted" msgstr "このページへのアクセスは制限されています" -#: ../../general/noaccess2.php:28 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 -msgid "No access" -msgstr "アクセス不可" - #: ../../general/noaccess2.php:35 msgid "" "Access to this page is restricted to authorized users only, please contact system " @@ -2855,1191 +51021,6 @@ msgstr "" "\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリティログ" "に記録されます。" -#: ../../general/header.php:48 ../../general/header.php:54 -#: ../../enterprise/meta/general/header.php:66 -#: ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:518 -#: ../../enterprise/meta/general/main_header.php:524 -msgid "All systems" -msgstr "全モニタシステム" - -#: ../../general/header.php:48 ../../enterprise/meta/general/header.php:66 -#: ../../enterprise/meta/general/main_header.php:518 -msgid "Down" -msgstr "停止" - -#: ../../general/header.php:51 ../../enterprise/meta/general/header.php:69 -#: ../../enterprise/meta/general/main_header.php:521 -msgid "servers down" -msgstr "停止中" - -#: ../../general/header.php:54 ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:524 -msgid "Ready" -msgstr "稼働中" - -#: ../../general/header.php:77 -msgid "Sobre actualización de revisión menor" -msgstr "" - -#: ../../general/header.php:79 -msgid "About minor release update" -msgstr "マイナーアップデートに関して" - -#: ../../general/header.php:112 ../../general/header.php:114 -msgid "Enter keywords to search" -msgstr "検索文字列を入力してください" - -#: ../../general/header.php:235 ../../enterprise/meta/general/header.php:110 -#: ../../enterprise/meta/general/main_header.php:552 -msgid "Configure autorefresh" -msgstr "自動更新設定" - -#: ../../general/header.php:265 -#: ../../operation/incidents/configure_integriaims_incident.php:240 -#: ../../operation/incidents/configure_integriaims_incident.php:256 -#: ../../operation/incidents/configure_integriaims_incident.php:302 -#: ../../include/functions_reports.php:1351 -#: ../../include/class/AgentsAlerts.class.php:354 -#: ../../enterprise/meta/general/header.php:121 -#: ../../enterprise/meta/general/main_header.php:558 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:260 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:357 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:682 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:753 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 -#: ../../enterprise/godmode/services/services.service.php:845 -#: ../../enterprise/godmode/services/services.service.php:857 -#: ../../enterprise/godmode/services/services.service.php:869 -#: ../../enterprise/godmode/services/services.service.php:881 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 -#: ../../enterprise/godmode/massive/massive_create_services.php:902 -#: ../../enterprise/godmode/massive/massive_create_services.php:914 -#: ../../enterprise/godmode/massive/massive_create_services.php:926 -#: ../../enterprise/godmode/massive/massive_create_services.php:938 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:676 -#: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../extensions/insert_data.php:186 ../../godmode/setup/setup_integria.php:367 -#: ../../godmode/setup/setup_integria.php:385 ../../godmode/setup/setup_integria.php:414 -#: ../../godmode/setup/setup_integria.php:432 ../../godmode/setup/setup_integria.php:489 -#: ../../godmode/setup/setup_integria.php:507 ../../godmode/setup/setup_integria.php:536 -#: ../../godmode/setup/setup_integria.php:554 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 -#: ../../godmode/massive/massive_add_alerts.php:286 -#: ../../godmode/massive/massive_delete_modules.php:334 -#: ../../godmode/massive/massive_delete_modules.php:469 -#: ../../godmode/massive/massive_copy_modules.php:138 -#: ../../godmode/massive/massive_delete_alerts.php:277 -#: ../../godmode/massive/massive_edit_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:431 -#: ../../godmode/alerts/alert_list.builder.php:82 -#: ../../godmode/alerts/alert_list.builder.php:156 -msgid "Select" -msgstr "選択" - -#: ../../general/header.php:301 ../../general/header.php:320 -#: ../../enterprise/meta/general/header.php:137 -#: ../../enterprise/meta/general/header.php:149 -#: ../../enterprise/meta/general/main_header.php:569 -#: ../../enterprise/meta/general/main_header.php:581 -msgid "Disabled autorefresh" -msgstr "自動更新の無効化" - -#: ../../general/header.php:356 ../../general/header.php:358 -#: ../../include/class/HelpFeedBack.class.php:213 -#: ../../include/class/Diagnostics.class.php:1967 -msgid "Feedback" -msgstr "フィードバック" - -#: ../../general/header.php:379 -msgid "Go to support" -msgstr "サポート" - -#: ../../general/header.php:393 -msgid "Go to documentation" -msgstr "ドキュメント" - -#: ../../general/header.php:407 ../../general/header.php:417 -#: ../../operation/menu.php:460 ../../enterprise/meta/general/header.php:204 -#: ../../enterprise/meta/general/header.php:214 -#: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -#: ../../enterprise/meta/include/functions_users_meta.php:208 -msgid "Edit my user" -msgstr "ユーザ情報編集" - -#: ../../general/header.php:432 ../../general/header.php:434 -#: ../../enterprise/meta/general/header.php:231 -#: ../../enterprise/meta/general/header.php:233 -#: ../../enterprise/meta/general/main_header.php:535 ../../mobile/operation/home.php:148 -#: ../../mobile/include/user.class.php:440 ../../mobile/include/ui.class.php:225 -#: ../../mobile/include/functions_web.php:34 -msgid "Logout" -msgstr "ログアウト" - -#: ../../general/header.php:813 ../../godmode/setup/setup_general.php:660 -msgid "Send" -msgstr "送信" - -#: ../../general/header.php:815 -msgid "Report an issue" -msgstr "問題を報告" - -#: ../../general/first_task/map_builder.php:23 -#: ../../godmode/reporting/map_builder.php:462 -msgid "There are no visual console defined yet." -msgstr "ビジュアルコンソールが定義されていません。" - -#: ../../general/first_task/map_builder.php:31 -#: ../../include/class/OrderInterpreter.class.php:233 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:471 -#: ../../enterprise/include/functions_enterprise.php:456 -#: ../../enterprise/meta/general/main_menu.php:346 -#: ../../enterprise/meta/general/main_header.php:240 -msgid "Visual Console" -msgstr "ビジュアルコンソール" - -#: ../../general/first_task/map_builder.php:34 -#: ../../general/first_task/map_builder.php:45 -msgid "Create Visual Console" -msgstr "ビジュアルコンソール作成" - -#: ../../general/first_task/map_builder.php:37 -#, php-format -msgid "" -"%s allows users to create visual maps on which each user is able to create his or her " -"own monitoring map. The new visual console editor is much more practical, although " -"the prior visual console editor had its advantages. On the new visual console, we've " -"been successful in imitating the sensation and touch of a drawing application like " -"GIMP. We've also simplified the editor by dividing it into several subject-divided " -"tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and 'Editor'. The items " -"the %s Visual Map was designed to handle are 'static images', 'percentage bars', " -"'module graphs' and 'simple values'." -msgstr "" -"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユーザーは独" -"自の監視マップを作成できます。以前のビジュアルコンソールエディターにも良い点はありまし" -"たが、新しいビジュアルコンソールエディターははるかに実用的です。新しいビジュアルコン" -"ソールでは、GIMP のような描画アプリケーションの感覚とタッチを模倣することに成功してい" -"ます。また、'データ'、'プレビュー'、'ウィザード'、'要素のリスト'、'エディタ' という名" -"前の複数の要素に分割したタブにすることで、エディターを簡素化しました。%s ビジュアル" -"マップが処理するように設計したアイテムは、’静的画像'、'パーセントバー'、'モジュールグ" -"ラフ'、および '単純な値' です。" - -#: ../../general/first_task/service_list.php:19 -msgid "There are no services defined yet." -msgstr "サービスが定義されていません。" - -#: ../../general/first_task/service_list.php:23 -#: ../../operation/agentes/ver_agente.php:1645 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.treeview_services.php:81 -#: ../../enterprise/operation/services/services.service.php:83 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.list.php:75 -#: ../../enterprise/operation/services/services.service_map.php:90 -#: ../../enterprise/operation/services/services.service_map.php:109 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../enterprise/operation/menu.php:77 -#: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/meta/general/main_menu.php:329 -#: ../../enterprise/meta/general/main_header.php:210 -#: ../../enterprise/godmode/services/services.elements.php:778 -#: ../../enterprise/godmode/services/services.elements.php:798 -#: ../../enterprise/godmode/services/services.service.php:469 -#: ../../enterprise/godmode/services/services.service.php:489 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:300 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 -#: ../../enterprise/godmode/menu.php:137 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363 -#: ../../enterprise/godmode/massive/massive_create_services.php:966 -msgid "Services" -msgstr "サービス" - -#: ../../general/first_task/service_list.php:26 -#: ../../general/first_task/service_list.php:40 -msgid "Create Services" -msgstr "サービス作成" - -#: ../../general/first_task/service_list.php:30 -msgid "" -"A service is a way to group your IT resources based on their functionalities. \n" -"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your " -"support application, or even your printers.\n" -"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, switches, " -"firewalls, CRMs, ERPs, websites and numerous other services. \n" -"\t\t\t\t\t\t By the following example, you're able to see more clearly what a service " -"is:\n" -"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " -"world. \n" -"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-line " -"shop and support." -msgstr "" -"サービスは、機能に基づき IT リソースをグループ化する手法です。\n" -"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポートアプリ" -"ケーション、プリンタなどです。\n" -"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、ウェブ" -"サイトやその他さまざまなサービスを含めることができる論理的なグループです。\n" -"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" -"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n" -"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門からなっ" -"ています。" - -#: ../../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:29 -#: ../../general/first_task/cluster_builder.php:51 -#: ../../enterprise/views/cluster/list.php:31 -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/tags.php:18 -msgid "There are no tags defined yet." -msgstr "タグが定義されていません。" - -#: ../../general/first_task/tags.php:22 ../../operation/tree.php:66 -#: ../../operation/events/events.build_table.php:283 -#: ../../operation/agentes/status_monitor.php:559 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/alerts_status.functions.php:107 -#: ../../operation/users/user_edit.php:815 -#: ../../include/lib/Dashboard/Widgets/events_list.php:450 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 -#: ../../include/functions_events.php:203 ../../include/functions_events.php:272 -#: ../../include/functions_events.php:5137 ../../include/functions_events.php:6744 -#: ../../include/functions_treeview.php:168 ../../include/functions_profile.php:215 -#: ../../include/functions_reporting_html.php:3396 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -#: ../../enterprise/operation/agentes/tag_view.php:678 -#: ../../enterprise/meta/include/functions_events_meta.php:106 -#: ../../enterprise/godmode/setup/setup_auth.php:231 -#: ../../enterprise/godmode/setup/setup_auth.php:510 -#: ../../enterprise/godmode/setup/setup_auth.php:1307 -#: ../../enterprise/godmode/modules/configure_local_component.php:550 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 -#: ../../mobile/operation/events.php:557 -#: ../../godmode/modules/manage_network_components_form_common.php:351 -#: ../../godmode/tag/edit_tag.php:66 ../../godmode/events/custom_events.php:108 -#: ../../godmode/massive/massive_delete_modules.php:401 -#: ../../godmode/massive/massive_delete_modules.php:515 -#: ../../godmode/massive/massive_copy_modules.php:172 -#: ../../godmode/massive/massive_edit_modules.php:405 -#: ../../godmode/massive/massive_edit_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:1047 -msgid "Tags" -msgstr "タグ" - -#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 -msgid "Create Tags" -msgstr "タグ作成" - -#: ../../general/first_task/tags.php:28 -msgid "" -"Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen " -"modules.\n" -"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with certain " -"tags." -msgstr "" -"モジュールへのアクセスは、タグシステムによって設定できます。\n" -"\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられます。\n" -"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限できま" -"す。" - -#: ../../general/first_task/custom_fields.php:19 -#: ../../general/first_task/fields_manager.php:18 -msgid "There are no custom fields defined yet." -msgstr "カスタムフィールドが定義されていません。" - -#: ../../general/first_task/custom_fields.php:24 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 -msgid "Custom Fields" -msgstr "カスタムフィールド" - -#: ../../general/first_task/custom_fields.php:27 -#: ../../general/first_task/custom_fields.php:36 -msgid "Create Custom Fields" -msgstr "カスタムフィールド作成" - -#: ../../general/first_task/custom_fields.php:30 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t You're able to create custom fields by klicking on 'Administration' -> 'Manage " -"monitoring' -> 'Manage custom fields'. " -msgstr "" -"カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを作成" -"できます。 " - -#: ../../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:308 -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 scheduled downtime defined yet." -msgstr "計画停止が定義されていません。" - -#: ../../general/first_task/planned_downtime.php:22 -msgid "Scehduled Downtime" -msgstr "計画停止" - -#: ../../general/first_task/planned_downtime.php:25 -#: ../../general/first_task/planned_downtime.php:37 -msgid "Create Scheduled Downtime" -msgstr "計画停止の作成" - -#: ../../general/first_task/planned_downtime.php:28 -#, php-format -msgid "" -"%s contains a scheduled downtime management system.\n" -"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific intervals " -"whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During down " -"time, down-time intervals aren't taken into\n" -"\t\t\t\t\t\taccount for most metrics or report types, because agents don't contain " -"any data within those intervals." -msgstr "" -"%s は、計画停止管理システムがあります。\n" -"\t\t\t\t\t\tこのシステムは、エージェントを無効化することにより、停止時間中のアラートを" -"無効化するように設計されました。\n" -"\t\t\t\t\t\tエージェントが無効化されている場合、エージェントは情報を収集しません。 計" -"画停止期間中は、\n" -"\t\t\t\t\t\tレポートにおける停止時間には考慮されません。なぜなら、この間はエージェント" -"の情報が無いためです。" - -#: ../../general/first_task/cluster_builder.php:38 ../../operation/tree.php:183 -#: ../../operation/menu.php:31 ../../operation/menu.php:154 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/snmpconsole/snmp_statistics.php:98 -#: ../../operation/snmpconsole/snmp_view.php:693 -#: ../../operation/snmpconsole/snmp_view.php:802 ../../operation/heatmap.php:133 -#: ../../operation/agentes/status_monitor.php:104 -#: ../../operation/agentes/alerts_status.php:200 -#: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/interface_view.php:72 ../../operation/agentes/tactical.php:78 -#: ../../operation/agentes/estado_agente.php:224 -#: ../../operation/agentes/ver_agente.php:1906 -#: ../../include/class/AgentsAlerts.class.php:750 -#: ../../enterprise/tools/ipam/ipam_editor.php:261 -#: ../../enterprise/views/cluster/list.php:31 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 -#: ../../enterprise/include/ajax/ipam.ajax.php:455 -#: ../../enterprise/include/class/SAPView.class.php:155 -#: ../../enterprise/include/class/SAPView.class.php:199 -#: ../../enterprise/meta/general/main_menu.php:181 -#: ../../enterprise/meta/general/logon_ok.php:75 -#: ../../enterprise/meta/general/main_header.php:91 -#: ../../enterprise/extensions/vmware/vmware_view.php:1394 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/aws_view.php:115 -#: ../../enterprise/godmode/reporting/aws_view.php:148 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 -#: ../../extensions/realtime_graphs.php:67 ../../extensions/module_groups.php:260 -#: ../../extensions/agents_modules.php:474 ../../godmode/snmpconsole/snmp_filters.php:55 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 -msgid "Monitoring" -msgstr "モニタリング" - -#: ../../general/first_task/cluster_builder.php:46 -msgid "There are no clusters defined yet." -msgstr "クラスタが定義されていません。" - -#: ../../general/first_task/cluster_builder.php:54 -#: ../../general/first_task/cluster_builder.php:72 -msgid "Create Cluster" -msgstr "クラスタ作成" - -#: ../../general/first_task/cluster_builder.php:57 -msgid "" -"A cluster is a group of devices that provide the same service in high availability." -msgstr "クラスタは、同一サービスの高可用性を提供するデバイスのグループです。" - -#: ../../general/first_task/cluster_builder.php:59 -msgid "Depending on how they provide that service, we can find two types:" -msgstr "どのようにサービス提供であるかに依存し、次の 2つのタイプがあります:" - -#: ../../general/first_task/cluster_builder.php:61 -msgid "" -"Clusters to balance the service load: these are active - active (A/A) mode " -"clusters. It means that all the nodes (or machines that compose it) are working. They " -"must be working because if one stops working, it will overload the others." -msgstr "" -"
    サービス負荷分散クラスタ:これらは、アクティブ-アクティブ(A/A)モードクラスタで" -"す。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止しても動作" -"を継続しますが負荷は増えます。" - -#: ../../general/first_task/cluster_builder.php:63 -msgid "" -"Clusters to guarantee service: these are active - passive (A/P) mode clusters. " -"It means that one of the nodes (or machines that make up the cluster) will be running " -"(primary) and another won't (secondary). When the primary goes down, the secondary " -"must take over and give the service instead. Although many of the elements of this " -"cluster are active-passive, it will also have active elements in both of them that " -"indicate that the passive node is \"online\", so that in the case of a service " -"failure in the master, the active node collects this information." -msgstr "" -"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。一つの" -"ノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作していません" -"(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを代わりに引き継ぎます。" -"このクラスタの要素の多くはアクティブ-スタンバイですが、スタンバイノードが「オンライ" -"ン」であることを示すアクティブな要素もあります。したがって、マスタのサービス障害の場" -"合、アクティブノードはこの情報を収集します。" - -#: ../../general/first_task/snmp_filters.php:18 -msgid "There are no SNMP filter defined yet." -msgstr "SNMPフィルタがまだ定義されていません。" - -#: ../../general/first_task/snmp_filters.php:22 -msgid "SNMP Filter" -msgstr "SNMPフィルタ" - -#: ../../general/first_task/snmp_filters.php:25 -#: ../../general/first_task/snmp_filters.php:37 -msgid "Create SNMP Filter" -msgstr "SNMPフィルタの作成" - -#: ../../general/first_task/snmp_filters.php:28 -msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From Pandora " -"FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order to avoid " -"straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -> " -"'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - just the " -"ones for the server are going to get ruled out automatically. " -msgstr "" -"いくつかのシステムで大量のトラップが発生しています。\n" -"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必要な負荷" -"をかけないように\n" -"\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管理' -> " -"'SNMP管理コンソール' および \n" -"\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外され、一" -"つになります。 " - -#: ../../general/first_task/fields_manager.php:22 -msgid "Fields Manager" -msgstr "フィールド管理" - -#: ../../general/first_task/fields_manager.php:25 -msgid "Create Fields Manager" -msgstr "フィールド管理の作成" - -#: ../../general/first_task/fields_manager.php:28 -msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> " -"'Manage monitoring' -> 'Manage custom fields'. " -msgstr "" -"カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを" -"作成できます。 " - -#: ../../general/first_task/fields_manager.php:34 -msgid "Create Fields " -msgstr "フィールド作成 " - -#: ../../general/first_task/custom_graphs.php:19 -msgid "There are no custom graphs defined yet." -msgstr "カスタムグラフが定義されていません。" - -#: ../../general/first_task/custom_graphs.php:24 -msgid "Custom Graphs" -msgstr "カスタムグラフ" - -#: ../../general/first_task/custom_graphs.php:27 -#: ../../general/first_task/custom_graphs.php:39 -msgid "Create Custom Graph" -msgstr "カスタムグラフ作成" - -#: ../../general/first_task/custom_graphs.php:30 -#, php-format -msgid "" -"Graphs are designed to show the data collected by %s in a temporary scale defined by " -"the user.\n" -"\t\t\t\t%s Graphs display data in real time. They are generated every time the " -"operator requires any of them and display the up-to-date state.\n" -"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the graphs " -"the user customizes by using one or more modules to do so." -msgstr "" -"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示するよう" -"に設計されています。\n" -"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタイミン" -"グで生成され、最新の状態を表示します。\n" -"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、ユーザ" -"が 1つ以上のモジュールを使用してカスタマイズするグラフです。" - -#: ../../general/first_task/recon_view.php:18 -msgid "There are no discovery tasks defined yet." -msgstr "自動検出タスクが定義されていません。" - -#: ../../general/first_task/recon_view.php:22 -#: ../../include/class/CustomNetScan.class.php:479 -#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1341 -#: ../../enterprise/tools/ipam/ipam_editor.php:163 -#: ../../enterprise/include/ajax/ipam.ajax.php:357 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 -#: ../../enterprise/include/class/Aws.cloud.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1212 -#: ../../enterprise/include/class/Aws.S3.php:412 -#: ../../enterprise/include/class/MySQL.app.php:453 -#: ../../enterprise/include/class/Oracle.app.php:455 -#: ../../enterprise/include/class/DB2.app.php:448 -#: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/VMware.app.php:593 -#: ../../enterprise/include/class/Azure.cloud.php:781 -#: ../../enterprise/include/class/Google.cloud.php:769 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431 -#: ../../godmode/wizards/HostDevices.class.php:848 -msgid "Discovery server" -msgstr "自動検出サーバ" - -#: ../../general/first_task/recon_view.php:25 -msgid "Create Discovery Task" -msgstr "自動検出タスクの作成" - -#: ../../general/first_task/recon_view.php:28 -msgid "" -"Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if that item " -"it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of detection: " -"Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks and their " -"interfaces), and other customized \n" -"\t\ttype. You can define your own customized recon script." -msgstr "" -"自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n" -"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視されている" -"場合は、\n" -"\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。 ICMP (ping)、\n" -"\t\t SNMP (ネットワークとそのインターフェースのトポロ" -"ジの検出)、その他 カスタマイズタイプです。\n" -"\t\t独自の自動検出スクリプトを定義することができます。" - -#: ../../general/first_task/recon_view.php:37 -msgid "Discover" -msgstr "自動検出" - -#: ../../general/first_task/incidents.php:21 -msgid "There are no incidents defined yet." -msgstr "インシデントが定義されていません。" - -#: ../../general/first_task/incidents.php:28 ../../operation/menu.php:474 -#: ../../operation/agentes/ver_agente.php:1498 -#: ../../operation/incidents/incident_statistics.php:21 -#: ../../godmode/agentes/configurar_agente.php:581 -#: ../../godmode/agentes/configurar_agente.php:749 -msgid "Incidents" -msgstr "インシデント" - -#: ../../general/first_task/incidents.php:31 ../../general/first_task/incidents.php:46 -msgid "Create Incidents" -msgstr "インシデント作成" - -#: ../../general/first_task/incidents.php:34 -#, php-format -msgid "" -"Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take place on " -"these subsystems within the system's monitoring process.\n" -"\t\t\tFor it, the %s team has designed an incident manager from which any user is " -"able to open incidents,\n" -"\t\t\tthat explain what's happened on the network, and update them with comments and " -"files, at any time, in case there is a need to do so.\n" -"\t\t\tThis system allows users to work as a team, along with different roles and work-" -"flow systems which allow an incident to be\n" -"\t\t\tmoved from one group to another, and members from different groups and " -"different people could work on the same incident, sharing information and files.\n" -"\t\t" -msgstr "" -"システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\n" -"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデントを監視す" -"る必要があります。\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/first_task/network_map.php:19 -msgid "There are no network map defined yet." -msgstr "ネットワークマップが定義されていません。" - -#: ../../general/first_task/network_map.php:26 -msgid "Network Map" -msgstr "ネットワーク マップ" - -#: ../../general/first_task/network_map.php:29 -#: ../../general/first_task/network_map.php:50 -msgid "Create Network Map" -msgstr "ネットワークマップ作成" - -#: ../../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 and " -"relationships, agents, modules and groups available to the user. \n" -"\t\t\t\t\t\t\t\tThere are three types of network maps:\n" -"\t\t\t" -msgstr "" -"オープンソース版のネットワークマップもあります。\n" -"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよびグループ" -"をユーザにグラフィカルに表示できます。\n" -"\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n" -"\t\t\t" - -#: ../../general/first_task/network_map.php:37 -msgid "Topology Map" -msgstr "トポロジマップ" - -#: ../../general/first_task/network_map.php:38 -msgid "Group Map" -msgstr "グループマップ" - -#: ../../general/first_task/network_map.php:39 -msgid "Radial Map (User without strict user)" -msgstr "放射状マップ (制限ユーザを除く)" - -#: ../../general/first_task/network_map.php:40 -msgid "Dinamic Map" -msgstr "ダイナミックマップ" - -#: ../../general/first_task/network_map.php:41 -msgid "Policy Map (Only Enterprise version)" -msgstr "ポリシーマップ (Enterprise 版のみ)" - -#: ../../general/first_task/collections.php:18 -#: ../../enterprise/meta/advanced/collections.php:443 -msgid "There are no collections defined yet." -msgstr "コレクションが定義されていません。" - -#: ../../general/first_task/collections.php:22 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2109 -#: ../../enterprise/include/functions_policies.php:3796 -#: ../../enterprise/meta/include/functions_agents_meta.php:533 -#: ../../enterprise/meta/advanced/collections.editor.php:60 -#: ../../enterprise/meta/advanced/collections.data.php:33 -#: ../../enterprise/godmode/menu.php:70 -#: ../../enterprise/godmode/agentes/collections.editor.php:71 -#: ../../enterprise/godmode/agentes/collections.agents.php:44 -#: ../../enterprise/godmode/agentes/collections.data.php:54 -#: ../../enterprise/godmode/policies/policies.php:505 -#: ../../enterprise/godmode/policies/policy_collections.php:31 -msgid "Collections" -msgstr "コレクション" - -#: ../../general/first_task/collections.php:25 -#: ../../general/first_task/collections.php:39 -msgid "Create Collections" -msgstr "コレクション作成" - -#: ../../general/first_task/collections.php:28 -msgid "" -"A file collection is a group of files (e.g. scripts or executables) which are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows or " -"UNIX). The file collections allow to be propagated\n" -"\t\t along with the policies in order to be used by a group of agents, using a " -"'package' of scripts and modules which use them.\n" -"\t\tFirst we learn how to use the file collections in the agent's view, how to " -"conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to arrange a " -"compilation of files. In order to do this, please go to the agent's \n" -"\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we can see " -"on \n" -"\t\t the picture below. " -msgstr "" -"ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループです。\n" -"\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされます。" -"ファイルコレクションは、\n" -"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使えるように" -"するためにポリシーでまとめることができます。\n" -"\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレクションを" -"利用せずにエージェントごとに手動で\n" -"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うことは、編集" -"ファイルの配置です。これを行うには、\n" -"\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプション" -"へ行きます。以下の画像で示すように、\n" -"\t\t新たなコレクションを作成するにはそれをクリックします。 " - -#: ../../general/first_task/transactional_list.php:21 -msgid "There are no transactions defined yet." -msgstr "トランザクションが定義されていません。" - -#: ../../general/first_task/transactional_list.php:28 -msgid "Transactions" -msgstr "トランザクション" - -#: ../../general/first_task/transactional_list.php:31 -#: ../../general/first_task/transactional_list.php:41 -msgid "Create Transactions" -msgstr "トランザクションの作成" - -#: ../../general/first_task/transactional_list.php:34 -msgid "" -"The new transactional server allows you to execute tasks dependent on the others " -"following a user-defined design. This means that it is possible to coordinate several " -"executions to check a target at a given time.\n" -"\n" -"Transaction graphs represent the different processes within our infrastructure that " -"we use to deliver our service." -msgstr "" -"新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行ができます。" -"指定した時間に対象を確認するために、いくつかの処理の実行ができることを意味します。\n" -"\n" -"トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処理を表現" -"します。" - -#: ../../general/links_menu.php:17 ../../enterprise/meta/general/main_menu.php:596 -#: ../../enterprise/meta/general/main_menu.php:616 -#: ../../enterprise/meta/general/main_header.php:381 -#: ../../enterprise/meta/general/main_header.php:448 ../../godmode/menu.php:390 -#: ../../godmode/menu.php:510 -msgid "Links" -msgstr "リンク" - -#: ../../general/logon_ok.php:167 -#, php-format -msgid "%s Overview" -msgstr "%s 概要" - -#: ../../general/logon_ok.php:191 -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -#: ../../godmode/setup/performance.php:188 ../../godmode/setup/performance.php:243 -msgid "ago" -msgstr "前" - -#: ../../general/logon_ok.php:206 ../../include/functions_events.php:5273 -msgid "by" -msgstr "発行者:" - -#: ../../general/logon_ok.php:220 -msgid "News board" -msgstr "ニュースボード" - -#: ../../general/logon_ok.php:247 ../../general/login_page.php:230 -#: ../../general/login_page.php:272 ../../operation/search_users.php:71 -#: ../../operation/events/events.build_table.php:202 -#: ../../operation/events/events.build_table.php:707 -#: ../../operation/users/user_edit.php:696 ../../operation/users/user_edit.php:742 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 -#: ../../include/functions_cron.php:463 ../../include/class/AuditLog.class.php:108 -#: ../../include/class/AuditLog.class.php:211 -#: ../../include/class/CredentialStore.class.php:805 -#: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/functions_events.php:194 ../../include/functions_events.php:245 -#: ../../include/functions_events.php:6695 ../../include/functions_events.php:7122 -#: ../../include/functions_config.php:708 ../../include/functions_config.php:728 -#: ../../include/functions.php:3045 ../../include/functions_reporting_html.php:5674 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../enterprise/include/class/MySQL.app.php:523 -#: ../../enterprise/include/class/Oracle.app.php:508 -#: ../../enterprise/include/class/DB2.app.php:501 -#: ../../enterprise/include/functions_tasklist.php:152 -#: ../../enterprise/meta/general/login_page.php:125 -#: ../../enterprise/meta/general/login_page.php:167 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/functions_meta.php:1165 -#: ../../enterprise/meta/include/functions_meta.php:1219 -#: ../../enterprise/meta/include/functions_meta.php:1273 -#: ../../enterprise/meta/include/functions_wizard_meta.php:519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1473 -#: ../../enterprise/extensions/disabled/check_acls.php:47 -#: ../../enterprise/extensions/disabled/check_acls.php:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1039 -#: ../../enterprise/godmode/setup/setup_auth.php:1071 -#: ../../enterprise/godmode/servers/manage_export_form.php:113 -#: ../../extensions/users_connected.php:143 ../../extensions/api_checker.php:138 -#: ../../mobile/operation/tactical.php:349 ../../mobile/include/user.class.php:373 -#: ../../godmode/setup/setup_integria.php:283 ../../godmode/setup/setup_ehorus.php:80 -#: ../../godmode/update_manager/update_manager.history.php:43 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3311 -#: ../../godmode/events/custom_events.php:99 -msgid "User" -msgstr "ユーザ" - -#: ../../general/logon_ok.php:248 ../../operation/snmpconsole/snmp_view.php:891 -#: ../../operation/snmpconsole/snmp_view.php:1266 -#: ../../operation/events/events.build_table.php:369 -#: ../../operation/agentes/alerts_status.php:550 -#: ../../operation/agentes/alerts_status.php:585 -#: ../../operation/agentes/alerts_status.php:620 -#: ../../operation/agentes/alerts_status.php:652 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/search_alerts.php:37 ../../include/ajax/alert_list.ajax.php:281 -#: ../../include/ajax/alert_list.ajax.php:306 ../../include/ajax/alert_list.ajax.php:482 -#: ../../include/class/ModuleTemplates.class.php:894 -#: ../../include/class/AuditLog.class.php:109 ../../include/class/AuditLog.class.php:201 -#: ../../include/class/AgentsAlerts.class.php:904 -#: ../../include/functions_events.php:6786 ../../include/functions_ui_renders.php:117 -#: ../../include/functions_profile.php:217 ../../include/functions.php:3045 -#: ../../include/functions_reporting_html.php:3135 -#: ../../include/functions_reporting_html.php:5676 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 -#: ../../enterprise/tools/ipam/ipam_list.php:639 -#: ../../enterprise/operation/agentes/policy_view.php:260 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:433 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:495 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2585 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2905 -#: ../../enterprise/include/functions_services.php:1615 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/meta/advanced/metasetup.relations.php:550 -#: ../../enterprise/godmode/servers/manage_export.php:142 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 -#: ../../enterprise/godmode/services/services.massive.elements.php:66 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 -#: ../../enterprise/godmode/reporting/graph_template_list.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3722 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3745 -#: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policy_alerts.php:575 -#: ../../mobile/operation/tactical.php:348 -#: ../../godmode/modules/manage_network_components.php:755 -#: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/modules/manage_nc_groups.php:243 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3808 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4299 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4320 -#: ../../godmode/snmpconsole/snmp_alert.php:1241 -#: ../../godmode/snmpconsole/snmp_alert.php:1365 -#: ../../godmode/snmpconsole/snmp_filters.php:291 -#: ../../godmode/events/event_filter.php:141 ../../godmode/netflow/nf_edit.php:161 -#: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/massive/massive_operations.php:426 -#: ../../godmode/massive/massive_standby_alerts.php:250 -#: ../../godmode/massive/massive_add_action_alerts.php:248 -#: ../../godmode/massive/massive_delete_action_alerts.php:270 -#: ../../godmode/massive/massive_enable_disable_alerts.php:222 -#: ../../godmode/agentes/module_manager.php:867 -#: ../../godmode/agentes/planned_downtime.editor.php:1002 -#: ../../godmode/agentes/agent_template.php:238 -#: ../../godmode/alerts/alert_list.list.php:745 ../../godmode/alerts/alert_view.php:388 -msgid "Action" -msgstr "アクション" - -#: ../../general/logon_ok.php:250 ../../operation/snmpconsole/snmp_statistics.php:182 -#: ../../include/class/AuditLog.class.php:111 ../../include/functions_netflow.php:347 -#: ../../include/functions.php:3045 ../../include/functions_reporting_html.php:5678 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -#: ../../mobile/operation/tactical.php:351 -msgid "Source IP" -msgstr "ソースIP" - -#: ../../general/logon_ok.php:251 ../../operation/users/user_edit.php:606 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 -#: ../../include/ajax/events.php:1517 ../../include/class/AuditLog.class.php:112 -#: ../../include/functions.php:3045 ../../include/functions_reporting_html.php:5679 -#: ../../enterprise/tools/ipam/ipam_ajax.php:293 -#: ../../enterprise/tools/ipam/ipam_ajax.php:479 -#: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../enterprise/tools/ipam/ipam_network.php:403 -#: ../../enterprise/tools/ipam/ipam_network.php:672 -#: ../../enterprise/include/functions_reporting_csv.php:1935 -#: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:2040 -#: ../../mobile/operation/events.php:561 ../../godmode/users/configure_user.php:1042 -msgid "Comments" -msgstr "コメント" - -#: ../../general/logon_ok.php:296 -msgid "Latest activity" -msgstr "最新の活動" - -#: ../../general/php7_message.php:30 ../../include/class/ConsoleSupervisor.php:1606 -msgid "" -"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or higher." -msgstr "" -"Pandora FMS を正しく動作させるには、PHP をバージョン 7.0 以降に更新する必要がありま" -"す。" - -#: ../../general/php7_message.php:31 ../../include/class/ConsoleSupervisor.php:1606 -msgid "Otherwise, functionalities will be lost." -msgstr "そうしないと、機能が動作しません。" - -#: ../../general/php7_message.php:33 ../../include/class/ConsoleSupervisor.php:1606 -msgid "Report download in PDF format" -msgstr "PDF フォーマットでのレポートダウンロード" - -#: ../../general/php7_message.php:34 ../../include/class/ConsoleSupervisor.php:1606 -msgid "Emails Sending" -msgstr "メール送信" - -#: ../../general/php7_message.php:35 ../../include/class/ConsoleSupervisor.php:1606 -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/subselect_data_module.php:62 ../../operation/tree.php:210 -#: ../../operation/tree.php:267 ../../operation/snmpconsole/snmp_view.php:549 -#: ../../operation/snmpconsole/snmp_view.php:578 -#: ../../operation/snmpconsole/snmp_view.php:586 -#: ../../operation/snmpconsole/snmp_view.php:902 ../../operation/heatmap.php:115 -#: ../../operation/events/events.build_table.php:626 -#: ../../operation/events/events.php:1080 ../../operation/events/events.php:1149 -#: ../../operation/events/events.php:1258 ../../operation/events/events.php:1310 -#: ../../operation/events/events.php:2315 ../../operation/events/events_list.php:827 -#: ../../operation/events/events_list.php:839 ../../operation/events/events_list.php:948 -#: ../../operation/events/events_list.php:960 -#: ../../operation/agentes/status_monitor.php:655 -#: ../../operation/agentes/estado_monitores.php:520 -#: ../../operation/agentes/estado_monitores.php:565 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/alerts_status.functions.php:100 -#: ../../operation/agentes/alerts_status.functions.php:114 -#: ../../operation/agentes/alerts_status.functions.php:131 -#: ../../operation/agentes/alerts_status.functions.php:134 -#: ../../operation/agentes/estado_agente.php:281 -#: ../../operation/incidents/list_integriaims_incidents.php:326 -#: ../../operation/incidents/list_integriaims_incidents.php:337 -#: ../../operation/incidents/list_integriaims_incidents.php:354 -#: ../../operation/incidents/list_integriaims_incidents.php:365 -#: ../../include/ajax/events.php:438 ../../include/class/AuditLog.class.php:203 -#: ../../include/class/AuditLog.class.php:213 -#: ../../include/class/CredentialStore.class.php:535 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 -#: ../../include/lib/Dashboard/Widgets/events_list.php:401 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 -#: ../../include/functions_events.php:6435 ../../include/functions_events.php:7041 -#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940 -#: ../../include/functions_notifications.php:108 -#: ../../include/functions_reporting.php:2831 ../../include/functions_reporting.php:2928 -#: ../../include/functions_modules.php:3542 ../../include/functions_modules.php:3544 -#: ../../include/functions_groupview.php:95 ../../include/functions_html.php:915 -#: ../../include/functions_html.php:1566 ../../include/functions.php:1071 -#: ../../include/functions.php:1331 ../../include/functions_users.php:416 -#: ../../include/functions_users.php:674 -#: ../../enterprise/operation/log/log_viewer.php:620 -#: ../../enterprise/operation/log/log_viewer.php:638 -#: ../../enterprise/operation/log/log_viewer.php:688 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../enterprise/operation/agentes/tag_view.php:145 -#: ../../enterprise/operation/agentes/tag_view.php:171 -#: ../../enterprise/operation/agentes/tag_view.php:237 -#: ../../enterprise/operation/agentes/tag_view.php:301 -#: ../../enterprise/operation/agentes/tag_view.php:304 -#: ../../enterprise/operation/agentes/tag_view.php:390 -#: ../../enterprise/operation/agentes/agent_inventory.php:74 -#: ../../enterprise/operation/inventory/inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:76 -#: ../../enterprise/operation/inventory/inventory.php:155 -#: ../../enterprise/operation/inventory/inventory.php:156 -#: ../../enterprise/operation/inventory/inventory.php:318 -#: ../../enterprise/operation/inventory/inventory.php:346 -#: ../../enterprise/operation/inventory/inventory.php:355 -#: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:960 -#: ../../enterprise/include/functions_metaconsole.php:961 -#: ../../enterprise/include/functions_metaconsole.php:1309 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 -#: ../../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:322 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../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:304 -#: ../../enterprise/meta/advanced/metasetup.relations.php:419 -#: ../../enterprise/meta/advanced/collections.data.php:412 -#: ../../enterprise/meta/advanced/metasetup.visual.php:290 -#: ../../enterprise/godmode/setup/setup_acl.php:487 -#: ../../enterprise/godmode/setup/setup_acl.php:504 -#: ../../enterprise/godmode/setup/setup_acl.php:521 -#: ../../enterprise/godmode/setup/setup_acl.php:753 -#: ../../enterprise/godmode/setup/setup_acl.php:761 -#: ../../enterprise/godmode/setup/setup_acl.php:772 -#: ../../enterprise/godmode/setup/setup_acl.php:813 -#: ../../enterprise/godmode/setup/setup_acl.php:844 -#: ../../enterprise/godmode/modules/local_components.php:541 -#: ../../enterprise/godmode/modules/local_components.php:567 -#: ../../enterprise/godmode/modules/local_components.php:592 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2022 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2825 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:187 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:612 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:638 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 -#: ../../enterprise/godmode/agentes/collections.data.php:506 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 -#: ../../enterprise/godmode/policies/policy_agents.php:833 -#: ../../enterprise/godmode/policies/policy_queue.php:603 -#: ../../enterprise/godmode/policies/policy_queue.php:608 -#: ../../enterprise/godmode/policies/policy_queue.php:619 -#: ../../enterprise/godmode/policies/policy_queue.php:692 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:358 -#: ../../extensions/files_repo/files_repo_form.php:46 -#: ../../extensions/agents_modules.php:416 ../../mobile/operation/modules.php:68 -#: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 -#: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 -#: ../../mobile/operation/events.php:683 ../../mobile/operation/events.php:693 -#: ../../mobile/operation/events.php:1165 ../../mobile/operation/events.php:1194 -#: ../../mobile/operation/agents.php:56 ../../godmode/setup/gis_step_2.php:217 -#: ../../godmode/setup/setup_visuals.php:950 -#: ../../godmode/modules/manage_network_components.php:653 -#: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/reporting/reporting_builder.list_items.php:209 -#: ../../godmode/reporting/reporting_builder.list_items.php:211 -#: ../../godmode/reporting/reporting_builder.list_items.php:213 -#: ../../godmode/reporting/reporting_builder.list_items.php:235 -#: ../../godmode/reporting/reporting_builder.list_items.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:255 -#: ../../godmode/reporting/create_container.php:546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1528 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2826 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2853 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3471 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3537 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3559 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3617 -#: ../../godmode/reporting/visual_console_builder.wizard.php:340 -#: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:323 -#: ../../godmode/events/event_edit_filter.php:338 -#: ../../godmode/events/event_edit_filter.php:601 -#: ../../godmode/massive/massive_delete_modules.php:327 -#: ../../godmode/massive/massive_delete_modules.php:374 -#: ../../godmode/massive/massive_delete_modules.php:429 -#: ../../godmode/massive/massive_delete_modules.php:450 -#: ../../godmode/massive/massive_copy_modules.php:127 -#: ../../godmode/massive/massive_copy_modules.php:287 -#: ../../godmode/massive/massive_edit_agents.php:543 -#: ../../godmode/massive/massive_edit_agents.php:556 -#: ../../godmode/massive/massive_delete_agents.php:221 -#: ../../godmode/massive/massive_delete_agents.php:235 -#: ../../godmode/massive/massive_edit_modules.php:311 -#: ../../godmode/massive/massive_edit_modules.php:358 -#: ../../godmode/massive/massive_edit_modules.php:396 -#: ../../godmode/massive/massive_edit_modules.php:482 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:127 -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_list.list.php:145 -#: ../../godmode/alerts/alert_templates.php:308 ../../godmode/alerts/alert_list.php:460 -#: ../../godmode/alerts/alert_list.php:509 ../../godmode/alerts/alert_list.php:523 -msgid "All" -msgstr "全て" - -#: ../../general/footer.php:51 -#, php-format -msgid "%s %s - %s - MR %s" -msgstr "%s %s - %s - MR %s" - -#: ../../general/footer.php:56 -#, php-format -msgid "Page generated on %s" -msgstr "ページ生成: %s" - #: ../../general/mysqlerr.php:105 msgid "Database error" msgstr "データベースエラー" @@ -4060,21 +51041,6 @@ msgstr "" "データベースサーバへの接続に失敗しました。設定ファイル config.php を確認するか、支援が" "必要な場合はシステム管理者に連絡してください。" -#: ../../general/node_deactivated.php:36 -msgid "You cannot use this node until system is unified" -msgstr "システムが統合されるまで、このノードを使用することはできません" - -#: ../../general/node_deactivated.php:59 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 -#: ../../enterprise/meta/advanced/massive_operations.php:57 -msgid "command center" -msgstr "コマンドセンター" - -#: ../../general/node_deactivated.php:56 -#, php-format -msgid "Please navigate to %s to unify system" -msgstr "システムを統合するには、%s に移動してください" - #: ../../general/login_page.php:54 #, php-format msgid "Go to %s Website" @@ -4084,106 +51050,14 @@ msgstr "%s ウェブサイトへ行く" msgid "Go to Login" msgstr "ログインへ" -#: ../../general/login_page.php:79 ../../enterprise/meta/general/login_page.php:45 -#: ../../enterprise/meta/include/reset_pass.php:28 -#: ../../enterprise/meta/include/process_reset_pass.php:28 -msgid "Splash login" -msgstr "スプラッシュログイン" - -#: ../../general/login_page.php:136 ../../general/login_page.php:139 -#: ../../general/login_page.php:155 ../../enterprise/include/reset_pass.php:48 -#: ../../enterprise/include/process_reset_pass.php:53 -msgid "Docs" -msgstr "ドキュメント" - -#: ../../general/login_page.php:244 ../../general/login_page.php:285 -#: ../../operation/users/user_edit.php:702 ../../operation/users/user_edit.php:748 -#: ../../include/class/AgentWizard.class.php:672 -#: ../../include/class/CredentialStore.class.php:958 -#: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1158 -#: ../../include/functions_config.php:712 ../../include/functions_config.php:732 -#: ../../enterprise/include/ajax/servers.ajax.php:101 -#: ../../enterprise/include/ajax/servers.ajax.php:159 -#: ../../enterprise/include/ajax/servers.ajax.php:285 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../enterprise/include/class/MySQL.app.php:535 -#: ../../enterprise/include/class/Oracle.app.php:520 -#: ../../enterprise/include/class/DB2.app.php:513 -#: ../../enterprise/include/class/VMware.app.php:732 -#: ../../enterprise/include/functions_setup.php:55 -#: ../../enterprise/include/functions_setup.php:113 -#: ../../enterprise/include/functions_ui.php:104 -#: ../../enterprise/meta/general/login_page.php:139 -#: ../../enterprise/meta/general/login_page.php:181 -#: ../../enterprise/meta/include/functions_meta.php:1177 -#: ../../enterprise/meta/include/functions_meta.php:1231 -#: ../../enterprise/meta/include/functions_meta.php:1285 -#: ../../enterprise/meta/include/functions_wizard_meta.php:523 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1477 -#: ../../enterprise/godmode/setup/setup_auth.php:1045 -#: ../../enterprise/godmode/setup/setup_auth.php:1077 -#: ../../enterprise/godmode/setup/setup_module_library.php:52 -#: ../../enterprise/godmode/servers/manage_export_form.php:117 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 -#: ../../extensions/api_checker.php:143 ../../mobile/include/user.class.php:380 -#: ../../godmode/setup/setup_integria.php:289 ../../godmode/setup/setup_ehorus.php:86 -#: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/massive/massive_edit_modules.php:908 -#: ../../godmode/agentes/module_manager_editor_wmi.php:116 -#: ../../godmode/users/configure_user.php:934 -msgid "Password" -msgstr "パスワード" - #: ../../general/login_page.php:251 msgid "Login as admin" msgstr "admin としてログイン" -#: ../../general/login_page.php:259 ../../enterprise/meta/general/login_page.php:154 -#: ../../mobile/include/user.class.php:404 -msgid "Login with SAML" -msgstr "SAML でログイン" - -#: ../../general/login_page.php:291 ../../enterprise/meta/general/login_page.php:146 -#: ../../enterprise/meta/general/login_page.php:187 -#: ../../mobile/include/user.class.php:384 -msgid "Login" -msgstr "ログイン" - -#: ../../general/login_page.php:307 ../../enterprise/meta/general/login_page.php:109 -msgid "Authentication code" -msgstr "認証コード" - -#: ../../general/login_page.php:310 ../../enterprise/meta/general/login_page.php:112 -#: ../../mobile/include/user.class.php:473 -msgid "Check code" -msgstr "コードの確認" - #: ../../general/login_page.php:319 msgid "View details" msgstr "詳細を表示" -#: ../../general/login_page.php:334 ../../general/login_page.php:337 -#: ../../enterprise/meta/general/login_page.php:195 -msgid "Forgot your password?" -msgstr "パスワードを忘れましたか?" - -#: ../../general/login_page.php:340 ../../general/login_page.php:343 -#: ../../general/login_page.php:428 ../../general/login_page.php:431 -#: ../../general/login_page.php:445 ../../general/login_page.php:448 -#: ../../general/login_page.php:465 ../../general/login_page.php:468 -#: ../../enterprise/meta/general/login_page.php:235 -#: ../../enterprise/meta/general/login_page.php:238 -#: ../../enterprise/meta/general/login_page.php:252 -#: ../../enterprise/meta/general/login_page.php:255 -#: ../../enterprise/meta/general/login_page.php:272 -#: ../../enterprise/meta/general/login_page.php:275 -msgid "Password reset" -msgstr "パスワードのリセット" - #: ../../general/login_page.php:347 msgid "" "This node is configured with centralized mode. Go to metaconsole to reset the password" @@ -4200,58 +51074,6 @@ msgstr "%s へようこそ" msgid "NEXT GENERATION" msgstr "NEXT GENERATION" -#: ../../general/login_page.php:424 ../../enterprise/include/reset_pass.php:170 -#: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/meta/general/login_page.php:232 -#: ../../enterprise/meta/include/reset_pass.php:161 -#: ../../enterprise/meta/include/process_reset_pass.php:164 -msgid "Build" -msgstr "ビルド" - -#: ../../general/login_page.php:435 ../../enterprise/meta/general/login_page.php:242 -msgid "INFO" -msgstr "情報" - -#: ../../general/login_page.php:436 ../../enterprise/meta/general/login_page.php:243 -msgid "An email has been sent to your email address" -msgstr "あなたのアドレス宛にメールを送信しました" - -#: ../../general/login_page.php:452 ../../general/login_page.php:494 -#: ../../enterprise/include/reset_pass.php:181 -#: ../../enterprise/meta/general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:301 -#: ../../enterprise/meta/include/reset_pass.php:172 -msgid "ERROR" -msgstr "エラー" - -#: ../../general/login_page.php:472 ../../enterprise/meta/general/login_page.php:279 -msgid "SUCCESS" -msgstr "成功" - -#: ../../general/login_page.php:487 ../../general/login_page.php:490 -#: ../../general/login_page.php:644 ../../general/login_page.php:647 -#: ../../enterprise/include/functions_login.php:141 -#: ../../enterprise/meta/general/login_page.php:294 -#: ../../enterprise/meta/general/login_page.php:297 -msgid "Login failed" -msgstr "ログインに失敗しました" - -#: ../../general/login_page.php:512 ../../general/login_page.php:515 -#: ../../general/login_page.php:519 ../../enterprise/meta/general/login_page.php:319 -#: ../../enterprise/meta/general/login_page.php:322 -#: ../../enterprise/meta/general/login_page.php:326 -msgid "Logged out" -msgstr "ログアウトしました。" - -#: ../../general/login_page.php:521 ../../enterprise/meta/general/login_page.php:327 -#: ../../mobile/include/user.class.php:342 -#, php-format -msgid "" -"Your session has ended. Please close your browser window to close this %s session." -msgstr "" -"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉じて" -"ください。" - #: ../../general/login_page.php:536 msgid "User node access not enabled" msgstr "ユーザノードアクセスが有効になっていません" @@ -4408,24 +51230,6 @@ msgstr "" "config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] に正しい" "パスを設定してください。" -#: ../../general/noaccesssaml.php:135 ../../enterprise/meta/general/noaccesssaml.php:135 -msgid "" -"Access to this page is restricted to authorized users SAML only, please contact " -"system administrator if you need assistance." -msgstr "" -"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必要な" -"場合はシステム管理者に連絡してください。" - -#: ../../general/noaccesssaml.php:137 ../../enterprise/meta/general/noaccesssaml.php:137 -#, php-format -msgid "" -"Please make sure you have SAML authentication properly configured. For more " -"information the error to access this page are recorded in security logs of %s System " -"Database" -msgstr "" -"SAML 認証が適切に構成されていることを確認してください。 詳細については、このページへの" -"アクセスエラーが %s システムデータベースのセキュリティログに記録されています。" - #: ../../general/pandora_help.php:23 #, php-format msgid "%s help system" @@ -4444,45750 +51248,279 @@ msgstr "" "%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘルプコンテ" "ンツはありません。" -#: ../../operation/messages/message_list.php:46 -#: ../../operation/messages/message_list.php:55 -#: ../../operation/messages/message_edit.php:66 -msgid "Sent messages" -msgstr "送信済みのメッセージ" +#~ msgid "Mode Cell" +#~ msgstr "モードセル" -#: ../../operation/messages/message_list.php:46 -#: ../../operation/messages/message_list.php:50 -#: ../../operation/messages/message_edit.php:54 -msgid "Received messages" -msgstr "受信メッセージ" +#~ msgid "Mode Layout" +#~ msgstr "モードレイアウト" -#: ../../operation/messages/message_list.php:64 -#: ../../operation/messages/message_list.php:304 -#: ../../operation/messages/message_edit.php:78 -msgid "Create message" -msgstr "メッセージの作成" +#~ msgid "Event" +#~ msgstr "イベント" -#: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:453 -#: ../../operation/users/user_edit_header.php:127 -msgid "Workspace" -msgstr "ワークスペース" +#~ msgid "More detail" +#~ msgstr "詳細" -#: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:493 -#: ../../enterprise/meta/general/main_menu.php:318 -msgid "Messages" -msgstr "メッセージ" +#~ msgid "The Agent: " +#~ msgstr "エージェント: " -#: ../../operation/messages/message_list.php:136 -msgid "Not deleted. Error deleting messages" -msgstr "削除できません。メッセージ削除エラー" +#~ msgid " has " +#~ msgstr " は " -#: ../../operation/messages/message_list.php:144 -#: ../../operation/messages/message_list.php:153 -msgid "You have" -msgstr "あなたのアカウントに" +#~ msgid " events." +#~ msgstr " イベントあります。" -#: ../../operation/messages/message_list.php:144 -msgid "sent message(s)" -msgstr "通の送信済メッセージがあります" +#~ msgid "Is not allowed delete events in process" +#~ msgstr "処理中イベントは削除できません" -#: ../../operation/messages/message_list.php:153 -msgid "unread message(s)" -msgstr "通の新しいメッセージがあります。" +#~ msgid "" +#~ "Event viewer is disabled due event replication. For more information, please " +#~ "contact with the administrator" +#~ msgstr "" +#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡してく" +#~ "ださい。" -#: ../../operation/messages/message_list.php:164 -msgid "There are no messages." -msgstr "メッセージがありません。" +#~ msgid "In progress selected" +#~ msgstr "処理中を選択" -#: ../../operation/messages/message_list.php:192 ../../operation/search_policies.php:38 -#: ../../operation/search_modules.php:36 ../../operation/snmpconsole/snmp_view.php:584 -#: ../../operation/snmpconsole/snmp_view.php:849 -#: ../../operation/snmpconsole/snmp_view.php:1226 ../../operation/search_agents.php:56 -#: ../../operation/events/events.build_table.php:358 -#: ../../operation/agentes/status_monitor.php:1335 -#: ../../operation/agentes/alerts_status.php:552 -#: ../../operation/agentes/alerts_status.php:587 -#: ../../operation/agentes/alerts_status.php:622 -#: ../../operation/agentes/alerts_status.php:654 -#: ../../operation/agentes/interface_view.functions.php:497 -#: ../../operation/agentes/alerts_status.functions.php:104 -#: ../../operation/agentes/estado_agente.php:280 -#: ../../operation/agentes/estado_agente.php:763 -#: ../../operation/incidents/integriaims_export_csv.php:83 -#: ../../operation/incidents/configure_integriaims_incident.php:250 -#: ../../operation/incidents/list_integriaims_incidents.php:320 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 -#: ../../include/ajax/module.php:980 ../../include/ajax/alert_list.ajax.php:283 -#: ../../include/ajax/alert_list.ajax.php:308 ../../include/ajax/custom_fields.php:416 -#: ../../include/class/AgentsAlerts.class.php:906 -#: ../../include/class/ExternalTools.class.php:795 -#: ../../include/class/NetworkMap.class.php:2907 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 -#: ../../include/functions_events.php:196 ../../include/functions_events.php:251 -#: ../../include/functions_events.php:2624 ../../include/functions_events.php:5071 -#: ../../include/functions_events.php:6663 ../../include/functions_snmp.php:369 -#: ../../include/functions_snmp_browser.php:594 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:1045 -#: ../../include/functions_reporting_html.php:1054 -#: ../../include/functions_reporting_html.php:1266 -#: ../../include/functions_reporting_html.php:1274 -#: ../../include/functions_reporting_html.php:1520 -#: ../../include/functions_reporting_html.php:2078 -#: ../../include/functions_reporting_html.php:2348 -#: ../../include/functions_reporting_html.php:2693 -#: ../../include/functions_reporting_html.php:3342 -#: ../../include/functions_reporting_html.php:3395 -#: ../../include/functions_reporting_html.php:4967 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 -#: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/views/cluster/list.php:63 -#: ../../enterprise/operation/services/services.service.php:127 -#: ../../enterprise/operation/services/services.list.php:243 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:165 -#: ../../enterprise/operation/agentes/tag_view.php:607 -#: ../../enterprise/operation/agentes/tag_view.php:685 -#: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../enterprise/operation/agentes/policy_view.php:397 -#: ../../enterprise/operation/agentes/collection_view.php:78 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:881 -#: ../../enterprise/include/functions_reporting_csv.php:1993 -#: ../../enterprise/include/functions_reporting_csv.php:2739 -#: ../../enterprise/include/class/ManageBackups.class.php:165 -#: ../../enterprise/include/functions_services.php:1613 -#: ../../enterprise/include/functions_reporting.php:1857 -#: ../../enterprise/include/functions_reporting.php:2896 -#: ../../enterprise/include/functions_reporting.php:3883 -#: ../../enterprise/include/functions_reporting.php:6139 -#: ../../enterprise/meta/include/functions_events_meta.php:78 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 -#: ../../enterprise/meta/advanced/policymanager.queue.php:225 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/agentsearch.php:140 ../../enterprise/meta/agentsearch.php:330 -#: ../../enterprise/extensions/vmware/vmware_view.php:1085 -#: ../../enterprise/godmode/servers/list_satellite.php:38 -#: ../../enterprise/godmode/servers/HA_cluster.php:170 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 -#: ../../enterprise/godmode/agentes/collection_manager.php:112 -#: ../../enterprise/godmode/agentes/collection_manager.php:209 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../enterprise/godmode/policies/policy_queue.php:616 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/policies/policy_collections.php:172 -#: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../mobile/operation/modules.php:163 ../../mobile/operation/modules.php:164 -#: ../../mobile/operation/modules.php:275 ../../mobile/operation/modules.php:276 -#: ../../mobile/operation/modules.php:603 ../../mobile/operation/modules.php:609 -#: ../../mobile/operation/modules.php:615 ../../mobile/operation/modules.php:621 -#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:640 -#: ../../mobile/operation/modules.php:648 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:850 -#: ../../mobile/operation/alerts.php:105 ../../mobile/operation/alerts.php:106 -#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/alerts.php:248 -#: ../../mobile/operation/alerts.php:350 ../../mobile/operation/events.php:368 -#: ../../mobile/operation/events.php:369 ../../mobile/operation/events.php:536 -#: ../../mobile/operation/events.php:672 ../../mobile/operation/events.php:673 -#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 -#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 -#: ../../mobile/operation/agents.php:406 ../../godmode/setup/setup_integria.php:426 -#: ../../godmode/setup/setup_integria.php:548 -#: ../../godmode/servers/servers.build_table.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:77 -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/massive/massive_delete_modules.php:415 -#: ../../godmode/massive/massive_copy_modules.php:121 -#: ../../godmode/massive/massive_copy_modules.php:281 -#: ../../godmode/massive/massive_edit_agents.php:537 -#: ../../godmode/massive/massive_edit_agents.php:905 -#: ../../godmode/massive/massive_delete_agents.php:215 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:600 -#: ../../godmode/agentes/module_manager.php:863 -#: ../../godmode/agentes/status_monitor_custom_fields.php:97 -#: ../../godmode/agentes/status_monitor_custom_fields.php:148 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/alerts/alert_list.list.php:132 -#: ../../godmode/alerts/alert_list.list.php:482 ../../godmode/alerts/alert_view.php:114 -msgid "Status" -msgstr "状態" +#~ msgid "Validate selected" +#~ msgstr "選択したものを承諾" -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_edit.php:269 -msgid "Destination" -msgstr "宛先" +#~ msgid "No filter loaded" +#~ msgstr "フィルタが読み込まれていません" -#: ../../operation/messages/message_list.php:196 -#: ../../operation/messages/message_edit.php:265 -msgid "Sender" -msgstr "差出人" +#~ msgid "Filter loaded" +#~ msgstr "フィルタを読み込みました" -#: ../../operation/messages/message_list.php:199 -#: ../../operation/messages/message_edit.php:350 -#: ../../enterprise/operation/reporting/custom_reporting.php:132 -#: ../../enterprise/include/functions_cron.php:190 -#: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8186 -#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 -msgid "Subject" -msgstr "件名" +#~ msgid "Event control filter" +#~ msgstr "イベントフィルタ" -#: ../../operation/messages/message_list.php:200 ../../operation/search_modules.php:39 -#: ../../operation/snmpconsole/snmp_view.php:881 -#: ../../operation/events/events.build_table.php:192 -#: ../../operation/agentes/status_monitor.php:1365 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/estado_generalagente.php:624 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 -#: ../../include/ajax/events_extended.php:90 ../../include/ajax/custom_fields.php:415 -#: ../../include/ajax/events.php:1809 ../../include/functions_events.php:197 -#: ../../include/functions_events.php:254 ../../include/functions_events.php:2620 -#: ../../include/functions_events.php:4997 ../../include/functions_events.php:6689 -#: ../../include/functions_netflow.php:278 -#: ../../include/functions_reporting_html.php:1052 -#: ../../include/functions_reporting_html.php:1060 -#: ../../include/functions_reporting_html.php:1271 -#: ../../include/functions_reporting_html.php:1278 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:4970 -#: ../../enterprise/operation/agentes/tag_view.php:686 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:875 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2629 -#: ../../enterprise/include/class/LogSource.class.php:628 -#: ../../enterprise/include/class/Omnishell.class.php:400 -#: ../../enterprise/include/functions_inventory.php:113 -#: ../../enterprise/include/functions_inventory.php:147 -#: ../../enterprise/include/functions_inventory.php:349 -#: ../../enterprise/include/functions_inventory.php:369 -#: ../../enterprise/include/functions_inventory.php:555 -#: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:516 ../../godmode/setup/news.php:249 -#: ../../godmode/update_manager/update_manager.history.php:44 -#: ../../godmode/events/custom_events.php:102 -#: ../../godmode/agentes/status_monitor_custom_fields.php:117 -#: ../../godmode/agentes/status_monitor_custom_fields.php:153 -msgid "Timestamp" -msgstr "タイムスタンプ" +#~ msgid "Error creating filter." +#~ msgstr "フィルタ作成エラー。" -#: ../../operation/messages/message_list.php:214 -msgid "Click to read" -msgstr "メッセージを読む" +#~ msgid "Error creating filter is duplicated." +#~ msgstr "フィルタ作成エラー、重複しています。" -#: ../../operation/messages/message_list.php:218 -msgid "Mark as unread" -msgstr "未読にする" +#~ msgid "Filter created." +#~ msgstr "フィルタを作成しました。" -#: ../../operation/messages/message_list.php:224 -#: ../../operation/messages/message_list.php:228 -msgid "Message unread - click to read" -msgstr "未読メッセージ - クリックして読む" +#~ msgid "Filter updated." +#~ msgstr "フィルタを更新しました。" -#: ../../operation/messages/message_list.php:256 -msgid "No Subject" -msgstr "件名なし" +#~ msgid "Error updating filter." +#~ msgstr "フィルタ更新エラー。" -#: ../../operation/messages/message_edit.php:90 -msgid "Compose message" -msgstr "メッセージを作成" +#~ msgid "Advanced Options" +#~ msgstr "高度なオプション" -#: ../../operation/messages/message_edit.php:119 -msgid "This message does not exist in the system" -msgstr "このメッセージはシステム上に存在しません。" - -#: ../../operation/messages/message_edit.php:188 -msgid "wrote" -msgstr "によると" - -#: ../../operation/messages/message_edit.php:203 -msgid "Delete conversation" -msgstr "メッセージ削除" - -#: ../../operation/messages/message_edit.php:211 -msgid "Reply" -msgstr "返信" - -#: ../../operation/messages/message_edit.php:226 -msgid "User or group must be selected." -msgstr "ユーザまたはグループを選択する必要があります。" - -#: ../../operation/messages/message_edit.php:244 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "ユーザ %s 宛にメッセージを送りました。" - -#: ../../operation/messages/message_edit.php:245 -#, php-format -msgid "Error sending message to user %s" -msgstr "ユーザ %s 宛のメッセージ送信に失敗しました。" - -#: ../../operation/messages/message_edit.php:324 -msgid "Select user" -msgstr "ユーザの選択" - -#: ../../operation/messages/message_edit.php:330 -msgid "OR" -msgstr "または" - -#: ../../operation/messages/message_edit.php:341 -msgid "Select group" -msgstr "グループの選択" - -#: ../../operation/messages/message_edit.php:360 -#: ../../enterprise/operation/reporting/custom_reporting.php:150 -#: ../../enterprise/include/functions_cron.php:194 -#: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8204 -msgid "Message" -msgstr "メッセージ" - -#: ../../operation/messages/message_edit.php:396 -msgid "Send message" -msgstr "メッセージを送信する" - -#: ../../operation/visual_console/legacy_public_view.php:57 -#: ../../operation/visual_console/public_view.php:38 -#: ../../operation/gis_maps/public_console.php:277 -#: ../../operation/events/sound_events.php:90 ../../operation/agentes/stat_win.php:92 -#: ../../index.php:1395 ../../enterprise/meta/index.php:206 -msgid "Connection with server has been lost" -msgstr "サーバとの接続が切断されました" - -#: ../../operation/visual_console/legacy_public_view.php:58 -#: ../../operation/visual_console/public_view.php:39 -#: ../../operation/gis_maps/public_console.php:278 -#: ../../operation/events/sound_events.php:91 ../../operation/agentes/stat_win.php:93 -#: ../../index.php:1396 ../../enterprise/meta/index.php:207 -msgid "" -"Connection to the server has been lost. Please check your internet connection or " -"contact with administrator." -msgstr "" -"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡してくださ" -"い。" - -#: ../../operation/visual_console/legacy_public_view.php:168 -#: ../../operation/visual_console/public_view.php:150 -msgid "QR code of the page" -msgstr "ページの QR コード" - -#: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:339 -msgid "Until refresh" -msgstr "リフレッシュまで" - -#: ../../operation/visual_console/legacy_view.php:121 -#: ../../operation/visual_console/view.php:122 -#: ../../enterprise/meta/screens/screens.visualmap.php:286 -#: ../../godmode/reporting/visual_console_builder.php:801 -msgid "Visual consoles list" -msgstr "ビジュアルコンソール一覧" - -#: ../../operation/visual_console/legacy_view.php:137 -#: ../../operation/visual_console/view.php:150 -#: ../../enterprise/meta/screens/screens.visualmap.php:261 -#: ../../godmode/reporting/visual_console_builder.php:805 -msgid "Show link to public Visual Console" -msgstr "パブリックビジュアルコンソール表示" - -#: ../../operation/visual_console/legacy_view.php:147 -#: ../../operation/visual_console/view.php:160 -#: ../../operation/reporting/graph_viewer.php:193 -#: ../../operation/reporting/reporting_viewer.php:139 -#: ../../enterprise/meta/screens/screens.visualmap.php:241 -#: ../../godmode/reporting/reporting_builder.main.php:73 -#: ../../godmode/reporting/visual_console_builder.php:809 -#: ../../godmode/reporting/graph_builder.php:298 -#: ../../godmode/reporting/reporting_builder.php:3529 -msgid "Main data" -msgstr "メインデータ" - -#: ../../operation/visual_console/legacy_view.php:155 -#: ../../operation/visual_console/view.php:168 -#: ../../enterprise/meta/screens/screens.visualmap.php:230 -#: ../../godmode/reporting/visual_console_builder.php:813 -msgid "List elements" -msgstr "エレメント一覧" - -#: ../../operation/visual_console/legacy_view.php:165 -#: ../../operation/visual_console/view.php:178 -#: ../../godmode/reporting/visual_console_builder.php:819 -msgid "Services wizard" -msgstr "サービスウィザード" - -#: ../../operation/visual_console/legacy_view.php:175 -#: ../../operation/visual_console/view.php:188 -#: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:7990 -#: ../../enterprise/include/functions_reporting.php:8016 -#: ../../enterprise/meta/screens/screens.visualmap.php:219 -#: ../../enterprise/meta/general/main_menu.php:238 -#: ../../enterprise/meta/general/logon_ok.php:48 -#: ../../enterprise/meta/general/main_header.php:134 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:94 -#: ../../godmode/reporting/visual_console_builder.php:825 -#: ../../godmode/reporting/visual_console_builder.wizard.php:518 -msgid "Wizard" -msgstr "設定追加" - -#: ../../operation/visual_console/legacy_view.php:183 -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../godmode/reporting/visual_console_builder.php:830 -msgid "Builder" -msgstr "ビルダ" - -#: ../../operation/visual_console/legacy_view.php:193 -#: ../../operation/visual_console/view.php:198 ../../operation/tree.php:187 -#: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/estado_agente.php:858 -#: ../../operation/agentes/estado_agente.php:861 -#: ../../operation/agentes/ver_agente.php:1907 -#: ../../enterprise/operation/agentes/policy_view.php:70 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../enterprise/meta/screens/screens.visualmap.php:163 -#: ../../enterprise/meta/screens/screens.visualmap.php:194 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -#: ../../godmode/setup/setup_visuals.php:163 ../../godmode/setup/setup_visuals.php:227 -#: ../../godmode/setup/setup_visuals.php:281 ../../godmode/setup/setup_visuals.php:286 -#: ../../godmode/setup/setup_visuals.php:325 ../../godmode/setup/setup_visuals.php:362 -#: ../../godmode/setup/setup_visuals.php:384 ../../godmode/setup/setup_visuals.php:409 -#: ../../godmode/setup/setup_visuals.php:428 ../../godmode/setup/setup_visuals.php:447 -#: ../../godmode/setup/setup_visuals.php:466 ../../godmode/setup/setup_visuals.php:608 -#: ../../godmode/reporting/visual_console_builder.php:836 ../../godmode/menu.php:554 -#: ../../godmode/agentes/configurar_agente.php:372 -#: ../../godmode/agentes/modificar_agente.php:82 -#: ../../godmode/agentes/modificar_agente.php:836 -#: ../../godmode/agentes/modificar_agente.php:841 -#: ../../godmode/module_library/module_library_view.php:59 -msgid "View" -msgstr "表示" - -#: ../../operation/visual_console/view.php:226 ../../operation/menu.php:300 -#: ../../operation/agentes/pandora_networkmap.php:665 -#: ../../operation/agentes/pandora_networkmap.editor.php:214 -#: ../../enterprise/operation/services/services.treeview_services.php:77 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.list.php:71 -#: ../../enterprise/operation/services/services.service_map.php:86 -#: ../../enterprise/operation/services/services.table_services.php:54 -#: ../../enterprise/godmode/services/services.elements.php:794 -#: ../../enterprise/godmode/services/services.service.php:485 -#: ../../enterprise/godmode/reporting/visual_console_template.php:118 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 -#: ../../godmode/reporting/map_builder.php:130 -#: ../../godmode/reporting/visual_console_builder.php:863 -#: ../../godmode/reporting/visual_console_favorite.php:127 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 -msgid "Topology maps" -msgstr "トポロジーマップ" - -#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177 -#: ../../operation/menu.php:181 ../../operation/users/user_edit.php:357 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324 -#: ../../enterprise/meta/screens/screens.visualmap.php:305 -#: ../../enterprise/meta/screens/screens.visualmap.php:310 -#: ../../enterprise/godmode/reporting/visual_console_template.php:122 -#: ../../enterprise/godmode/reporting/visual_console_template.php:128 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 -#: ../../extensions/resource_exportation.php:436 -#: ../../godmode/reporting/map_builder.php:134 -#: ../../godmode/reporting/map_builder.php:140 -#: ../../godmode/reporting/visual_console_builder.php:867 -#: ../../godmode/reporting/visual_console_favorite.php:131 -#: ../../godmode/reporting/visual_console_favorite.php:137 -#: ../../godmode/users/configure_user.php:1110 -msgid "Visual console" -msgstr "ビジュアルコンソール" - -#: ../../operation/visual_console/view.php:296 -#: ../../include/functions_visual_map_editor.php:1387 -#: ../../include/functions_visual_map.php:4214 ../../godmode/setup/gis_step_2.php:233 -#: ../../godmode/reporting/visual_console_builder.elements.php:182 -msgid "Static Image" -msgstr "静的画像" - -#: ../../operation/visual_console/view.php:301 -#: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../godmode/reporting/visual_console_builder.wizard.php:128 -msgid "Percentile Item" -msgstr "パーセント表示" - -#: ../../operation/visual_console/view.php:306 -#: ../../include/functions_visual_map_editor.php:1389 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555 -#: ../../mobile/operation/events.php:549 -#: ../../godmode/reporting/visual_console_builder.elements.php:221 -msgid "Module Graph" -msgstr "モジュールグラフ" - -#: ../../operation/visual_console/view.php:311 -#: ../../include/rest-api/models/VisualConsole/Item.php:2155 -#: ../../godmode/reporting/visual_console_builder.elements.php:351 -msgid "Basic chart" -msgstr "基本グラフ" - -#: ../../operation/visual_console/view.php:316 -#: ../../include/functions_visual_map_editor.php:1390 -msgid "Serialized pie graph" -msgstr "連続円グラフ" - -#: ../../operation/visual_console/view.php:321 -#: ../../include/functions_visual_map_editor.php:1391 -msgid "Bars Graph" -msgstr "棒グラフ" - -#: ../../operation/visual_console/view.php:326 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4194 -#: ../../godmode/reporting/visual_console_builder.elements.php:231 -msgid "Event history graph" -msgstr "イベント履歴グラフ" - -#: ../../operation/visual_console/view.php:331 -#: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4219 -#: ../../include/rest-api/models/VisualConsole/Item.php:2131 -#: ../../godmode/reporting/visual_console_builder.elements.php:240 -msgid "Simple Value" -msgstr "数値" - -#: ../../operation/visual_console/view.php:336 -#: ../../include/functions_visual_map_editor.php:67 -#: ../../include/functions_visual_map_editor.php:193 -#: ../../include/functions_visual_map_editor.php:779 -#: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 -#: ../../include/lib/Dashboard/Widgets/module_value.php:278 -#: ../../include/lib/Dashboard/Widgets/module_status.php:294 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 -#: ../../include/functions_visual_map.php:4224 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:283 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1116 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 -#: ../../godmode/reporting/visual_console_builder.wizard.php:446 -msgid "Label" -msgstr "ラベル" - -#: ../../operation/visual_console/view.php:341 -#: ../../include/functions_visual_map_editor.php:68 -#: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/lib/Dashboard/Widgets/module_status.php:374 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 -#: ../../include/functions_visual_map.php:4239 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 -#: ../../godmode/setup/os.builder.php:40 ../../godmode/modules/module_list.php:60 -#: ../../godmode/reporting/visual_console_builder.elements.php:292 -#: ../../godmode/groups/configure_group.php:153 ../../godmode/groups/group_list.php:844 -msgid "Icon" -msgstr "アイコン" - -#: ../../operation/visual_console/view.php:346 -#: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/lib/Dashboard/Widgets/clock.php:158 -#: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../include/functions_visual_map.php:4184 -#: ../../include/rest-api/models/VisualConsole/Item.php:2103 -#: ../../godmode/reporting/visual_console_builder.elements.php:367 -msgid "Clock" -msgstr "時計" - -#: ../../operation/visual_console/view.php:356 -#: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4174 -#: ../../godmode/reporting/visual_console_builder.elements.php:303 -msgid "Box" -msgstr "ボックス" - -#: ../../operation/visual_console/view.php:361 -#: ../../operation/reporting/graph_viewer.php:372 ../../operation/agentes/graphs.php:238 -#: ../../operation/agentes/graphs.php:244 ../../operation/agentes/graphs.php:417 -#: ../../operation/agentes/graphs.php:432 -#: ../../include/functions_visual_map_editor.php:72 -#: ../../include/functions_visual_map_editor.php:557 -#: ../../include/functions_visual_map_editor.php:1399 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 -#: ../../enterprise/meta/advanced/metasetup.visual.php:357 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../godmode/setup/setup_visuals.php:909 ../../godmode/setup/setup_visuals.php:926 -#: ../../godmode/reporting/create_container.php:359 -#: ../../godmode/reporting/visual_console_builder.elements.php:333 -#: ../../godmode/reporting/graph_builder.main.php:216 -msgid "Line" -msgstr "線" - -#: ../../operation/visual_console/view.php:366 -#: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1400 -#: ../../include/functions_visual_map.php:4234 -#: ../../include/rest-api/models/VisualConsole/Item.php:2143 -#: ../../godmode/reporting/visual_console_builder.elements.php:343 -msgid "Color cloud" -msgstr "カラークラウド" - -#: ../../operation/visual_console/view.php:371 -#: ../../include/functions_visual_map_editor.php:1405 -#: ../../godmode/reporting/visual_console_builder.elements.php:322 -msgid "Network link" -msgstr "ネットワークリンク" - -#: ../../operation/visual_console/view.php:376 -#: ../../include/rest-api/models/VisualConsole/Item.php:2151 -#: ../../godmode/reporting/visual_console_builder.elements.php:359 -msgid "Odometer" -msgstr "オドメーター" - -#: ../../operation/visual_console/view.php:387 -msgid "Delete Item" -msgstr "アイテム削除" - -#: ../../operation/visual_console/view.php:393 -msgid "Copy Item" -msgstr "アイテムコピー" - -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/estado_generalagente.php:326 -msgid "Force remote checks" -msgstr "リモートチェックを強制する" - -#: ../../operation/visual_console/view.php:734 -msgid "Are you sure" -msgstr "よろしいですか" - -#: ../../operation/visual_console/view.php:806 -#: ../../include/ajax/snmp_browser.ajax.php:260 -#: ../../include/class/ModuleTemplates.class.php:1417 -#: ../../include/class/HelpFeedBack.class.php:359 -#: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:5802 -#: ../../include/class/Diagnostics.class.php:2087 -#: ../../include/class/ConfigPEN.class.php:737 -#: ../../include/class/CredentialStore.class.php:1185 ../../include/functions_ui.php:294 -#: ../../enterprise/include/class/AgentRepository.class.php:842 -#: ../../enterprise/include/class/LogSource.class.php:788 -#: ../../enterprise/include/class/ManageBackups.class.php:473 -#: ../../enterprise/include/class/Omnishell.class.php:1083 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 -#: ../../enterprise/include/functions_HA_cluster.php:535 -#: ../../enterprise/include/functions_visual_map.php:677 -#: ../../enterprise/godmode/services/services.elements.php:840 -#: ../../enterprise/godmode/services/services.elements.php:851 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057 -msgid "Success" -msgstr "成功" - -#: ../../operation/visual_console/view.php:813 -#: ../../operation/visual_console/view.php:818 -#: ../../include/ajax/snmp_browser.ajax.php:259 -#: ../../include/class/ModuleTemplates.class.php:1424 -#: ../../include/class/ModuleTemplates.class.php:1429 -#: ../../include/class/HelpFeedBack.class.php:354 -#: ../../include/class/WebServerModuleDebug.class.php:366 -#: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:5809 -#: ../../include/class/AgentWizard.class.php:5814 -#: ../../include/class/Diagnostics.class.php:2086 -#: ../../include/class/ConfigPEN.class.php:744 -#: ../../include/class/ConfigPEN.class.php:749 -#: ../../include/class/CredentialStore.class.php:1192 -#: ../../include/class/CredentialStore.class.php:1197 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 -#: ../../enterprise/operation/agentes/transactional_map.php:327 -#: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/include/class/AgentRepository.class.php:849 -#: ../../enterprise/include/class/AgentRepository.class.php:854 -#: ../../enterprise/include/class/LogSource.class.php:795 -#: ../../enterprise/include/class/LogSource.class.php:800 -#: ../../enterprise/include/class/ManageBackups.class.php:484 -#: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/class/Omnishell.class.php:1079 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 -#: ../../enterprise/include/class/DatabaseHA.class.php:208 -#: ../../enterprise/include/functions_HA_cluster.php:542 -#: ../../enterprise/include/functions_HA_cluster.php:547 -#: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058 -msgid "Failed" -msgstr "失敗" - -#: ../../operation/search_reports.php:25 ../../operation/search_policies.php:22 -#: ../../operation/search_modules.php:23 ../../operation/search_users.php:23 -#: ../../operation/search_maps.php:19 ../../operation/search_graphs.php:21 -#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24 -msgid "Zero results found" -msgstr "見つかりませんでした。" - -#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58 -#: ../../operation/reporting/custom_reporting.php:34 -#: ../../include/functions_cron.php:665 ../../enterprise/include/functions_cron.php:232 -#: ../../enterprise/include/functions_reporting_csv.php:2218 -#: ../../enterprise/include/functions_reporting_csv.php:2222 -#: ../../enterprise/include/functions_tasklist.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 -#: ../../godmode/reporting/reporting_builder.php:910 -msgid "Report name" -msgstr "レポート名" - -#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 -#: ../../operation/reporting/custom_reporting.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 -#: ../../godmode/reporting/reporting_builder.php:912 -msgid "HTML" -msgstr "HTML" - -#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 -#: ../../operation/reporting/custom_reporting.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 -#: ../../godmode/reporting/reporting_builder.php:913 -msgid "XML" -msgstr "XML" - -#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:122 -msgid "Agents found" -msgstr "エージェントが見つかりました" - -#: ../../operation/search_main.php:55 ../../operation/search_main.php:57 -#: ../../operation/search_main.php:65 ../../operation/search_main.php:67 -#: ../../operation/search_main.php:69 ../../operation/search_main.php:71 -#: ../../operation/search_main.php:74 -#, php-format -msgid "%s Found" -msgstr "%s 件見つかりました" - -#: ../../operation/search_main.php:56 ../../operation/tree.php:432 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:617 -msgid "Modules found" -msgstr "モジュールが見つかりました" - -#: ../../operation/search_main.php:64 -msgid "Users found" -msgstr "ユーザが見つかりました" - -#: ../../operation/search_main.php:66 -msgid "Graphs found" -msgstr "グラフが見つかりました" - -#: ../../operation/search_main.php:68 -msgid "Reports found" -msgstr "レポートが見つかりました" - -#: ../../operation/search_main.php:70 ../../operation/search_results.php:145 -#: ../../mobile/operation/visualmaps.php:184 ../../mobile/operation/home.php:66 -msgid "Visual consoles" -msgstr "ビジュアルコンソール" - -#: ../../operation/search_main.php:73 ../../operation/tree.php:127 -#: ../../operation/search_results.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 -#: ../../include/functions_maps.php:42 ../../include/functions_networkmap.php:1299 -#: ../../enterprise/operation/agentes/ver_agente.php:239 -#: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/meta/advanced/policymanager.apply.php:198 -msgid "Policies" -msgstr "ポリシー" - -#: ../../operation/search_main.php:83 -#, php-format -msgid "Show %s of %s. View all matches" -msgstr "%s 件(%s件中)の表示。全マッチ内容の表示。" - -#: ../../operation/tree.php:78 ../../operation/tree.php:146 -#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:44 -#: ../../operation/search_agents.php:50 ../../operation/agentes/estado_agente.php:748 -#: ../../operation/agentes/estado_generalagente.php:196 -#: ../../include/ajax/heatmap.ajax.php:325 ../../include/class/Diagnostics.class.php:748 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4489 -#: ../../include/functions_reporting_html.php:1496 -#: ../../include/functions_reporting_html.php:3339 -#: ../../enterprise/tools/ipam/ipam_network.php:398 -#: ../../enterprise/views/cluster/view.php:253 -#: ../../enterprise/operation/agentes/tag_view.php:602 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 -#: ../../enterprise/include/class/AgentRepository.class.php:342 -#: ../../enterprise/include/class/AgentRepository.class.php:630 -#: ../../enterprise/include/class/AgentRepository.class.php:673 -#: ../../enterprise/include/class/DeploymentCenter.class.php:756 -#: ../../enterprise/include/class/DeploymentCenter.class.php:817 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/meta/agentsearch.php:136 -#: ../../enterprise/godmode/modules/configure_local_component.php:177 -#: ../../enterprise/godmode/modules/local_components.php:561 -#: ../../enterprise/godmode/modules/local_components.php:586 -#: ../../enterprise/godmode/modules/local_components.php:622 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../godmode/massive/massive_edit_agents.php:719 -#: ../../godmode/agentes/agent_manager.php:389 -#: ../../godmode/agentes/planned_downtime.editor.php:916 -#: ../../godmode/agentes/modificar_agente.php:649 -msgid "OS" -msgstr "OS" - -#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 -#: ../../include/lib/Dashboard/Widgets/events_list.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 -#: ../../include/functions_maps.php:46 ../../include/functions_networkmap.php:1295 -#: ../../enterprise/godmode/setup/setup_auth.php:230 -#: ../../enterprise/godmode/setup/setup_auth.php:509 -#: ../../enterprise/godmode/setup/setup_auth.php:1306 -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 -#: ../../extensions/files_repo/files_repo_form.php:55 -#: ../../extensions/module_groups.php:311 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 ../../mobile/include/functions_web.php:27 -#: ../../godmode/reporting/visual_console_builder.wizard.php:362 -msgid "Groups" -msgstr "グループ" - -#: ../../operation/tree.php:102 ../../include/lib/Dashboard/Widgets/tree_view.php:330 -#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:90 -msgid "Module groups" -msgstr "モジュールグループ" - -#: ../../operation/tree.php:114 ../../operation/search_agents.php:55 -#: ../../operation/agentes/group_view.php:184 ../../operation/agentes/group_view.php:217 -#: ../../operation/agentes/graphs.php:188 ../../operation/agentes/exportdata.php:282 -#: ../../operation/agentes/estado_agente.php:760 ../../operation/search_results.php:158 -#: ../../include/functions_reports.php:733 ../../include/functions_reports.php:737 -#: ../../include/functions_reports.php:741 ../../include/functions_reports.php:745 -#: ../../include/functions_reports.php:749 ../../include/functions_reports.php:753 -#: ../../include/functions_reports.php:757 ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 -#: ../../include/class/AgentsAlerts.class.php:253 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:385 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:391 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 -#: ../../include/functions_html.php:1708 ../../include/functions_reporting_html.php:1816 -#: ../../include/functions_reporting_html.php:5326 -#: ../../enterprise/operation/services/services.service_map.php:128 -#: ../../enterprise/operation/agentes/tag_view.php:606 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_policies.php:3720 -#: ../../enterprise/meta/include/functions_wizard_meta.php:409 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 -#: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/meta/monitoring/group_view.php:221 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:292 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:447 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:715 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -#: ../../enterprise/meta/agentsearch.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:297 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:229 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 -#: ../../enterprise/godmode/massive/massive_create_services.php:965 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 -#: ../../enterprise/godmode/policies/policy_modules.php:458 -#: ../../enterprise/godmode/policies/policies.php:509 -#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:327 -#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 -#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 -#: ../../godmode/servers/servers.build_table.php:83 -#: ../../godmode/reporting/reporting_builder.list_items.php:210 -#: ../../godmode/reporting/reporting_builder.list_items.php:239 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1800 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2021 -#: ../../godmode/reporting/visual_console_builder.wizard.php:432 -#: ../../godmode/massive/massive_delete_modules.php:463 -#: ../../godmode/massive/massive_copy_modules.php:199 -#: ../../godmode/massive/massive_edit_plugins.php:383 -#: ../../godmode/massive/massive_edit_modules.php:425 -#: ../../godmode/agentes/configurar_agente.php:405 -#: ../../godmode/agentes/configurar_agente.php:723 -#: ../../godmode/agentes/planned_downtime.editor.php:918 -#: ../../godmode/agentes/planned_downtime.editor.php:993 -#: ../../godmode/agentes/planned_downtime.list.php:85 -#: ../../godmode/agentes/planned_downtime.list.php:115 -#: ../../godmode/agentes/modificar_agente.php:817 -msgid "Modules" -msgstr "モジュール" - -#: ../../operation/tree.php:138 ../../operation/menu.php:51 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:714 -#: ../../enterprise/operation/services/services.treeview_services.php:61 -#: ../../enterprise/operation/services/services.treeview_services.php:68 -#: ../../enterprise/meta/general/main_menu.php:188 -#: ../../enterprise/meta/general/main_header.php:97 -#: ../../godmode/groups/group_list.php:344 -msgid "Tree view" -msgstr "ツリー表示" - -#: ../../operation/tree.php:139 -#, php-format -msgid "Sort the agents by %s" -msgstr "%s によるエージェント並び替え" - -#: ../../operation/tree.php:142 -msgid "tags" -msgstr "タグ" - -#: ../../operation/tree.php:150 -msgid "groups" -msgstr "グループ" - -#: ../../operation/tree.php:154 -msgid "module groups" -msgstr "モジュールグループ" - -#: ../../operation/tree.php:158 ../../godmode/setup/license.php:136 -#: ../../godmode/setup/license.php:139 ../../godmode/setup/license.php:142 -#: ../../godmode/setup/license.php:145 -msgid "modules" -msgstr "モジュール" - -#: ../../operation/tree.php:163 -msgid "policies" -msgstr "ポリシー" - -#: ../../operation/tree.php:212 ../../operation/tree.php:269 -#: ../../operation/tree.php:486 ../../operation/netflow/nf_live_view.php:384 -#: ../../operation/agentes/status_monitor.php:492 -#: ../../operation/agentes/group_view.php:226 ../../operation/agentes/group_view.php:231 -#: ../../operation/agentes/estado_monitores.php:523 -#: ../../operation/agentes/tactical.php:180 -#: ../../operation/agentes/estado_agente.php:273 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 -#: ../../include/functions_events.php:3335 ../../include/functions_graph.php:3543 -#: ../../include/functions_graph.php:3544 ../../include/functions_graph.php:5123 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 -#: ../../include/functions.php:1031 ../../include/functions.php:1271 -#: ../../include/functions.php:1278 ../../include/functions.php:1311 -#: ../../include/functions_reporting_html.php:2292 -#: ../../enterprise/operation/services/services.treeview_services.php:286 -#: ../../enterprise/operation/agentes/tag_view.php:131 -#: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 -#: ../../enterprise/meta/monitoring/group_view.php:238 -#: ../../enterprise/meta/monitoring/group_view.php:244 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 -#: ../../enterprise/meta/monitoring/tactical.php:241 -#: ../../enterprise/godmode/services/services.elements.php:390 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 -#: ../../mobile/operation/modules.php:69 ../../mobile/operation/agents.php:58 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3601 -#: ../../godmode/netflow/nf_edit_form.php:236 -#: ../../godmode/massive/massive_delete_modules.php:418 -#: ../../godmode/massive/massive_delete_modules.php:439 -#: ../../godmode/massive/massive_copy_modules.php:115 -#: ../../godmode/massive/massive_copy_modules.php:275 -#: ../../godmode/massive/massive_edit_agents.php:531 -#: ../../godmode/massive/massive_delete_agents.php:209 -#: ../../godmode/massive/massive_edit_modules.php:385 -#: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/groups/group_list.php:1074 -msgid "Normal" -msgstr "正常" - -#: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/gis_maps/render_view.php:165 -#: ../../operation/netflow/nf_live_view.php:451 -#: ../../operation/agentes/status_monitor.php:493 -#: ../../operation/agentes/group_view.php:227 ../../operation/agentes/group_view.php:232 -#: ../../operation/agentes/estado_monitores.php:525 -#: ../../operation/agentes/tactical.php:179 -#: ../../operation/agentes/estado_agente.php:274 -#: ../../include/class/AgentWizard.class.php:1300 -#: ../../include/class/AgentWizard.class.php:3989 -#: ../../include/class/Diagnostics.class.php:1809 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:665 -#: ../../include/functions_events.php:3339 ../../include/functions_graph.php:3553 -#: ../../include/functions_graph.php:3554 ../../include/functions_graph.php:5127 -#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2604 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 -#: ../../include/functions.php:1035 ../../include/functions.php:1273 -#: ../../include/functions.php:1276 ../../include/functions.php:1315 -#: ../../include/functions_reporting_html.php:2294 -#: ../../update_manager_client/views/offline.php:81 ../../index.php:1175 -#: ../../enterprise/views/ncm/firmwares/edit.php:149 -#: ../../enterprise/operation/services/services.treeview_services.php:271 -#: ../../enterprise/operation/services/services.service.php:123 -#: ../../enterprise/operation/services/services.service.php:174 -#: ../../enterprise/operation/services/services.list.php:238 -#: ../../enterprise/operation/services/services.list.php:505 -#: ../../enterprise/operation/services/services.list.php:564 -#: ../../enterprise/operation/services/services.service_map.php:115 -#: ../../enterprise/operation/services/services.table_services.php:160 -#: ../../enterprise/operation/agentes/tag_view.php:132 -#: ../../enterprise/operation/agentes/transactional_map.php:333 -#: ../../enterprise/include/class/CommandCenter.class.php:564 -#: ../../enterprise/include/class/CommandCenter.class.php:603 -#: ../../enterprise/include/functions_services.php:1448 -#: ../../enterprise/include/functions_login.php:23 -#: ../../enterprise/include/functions_reporting.php:4837 -#: ../../enterprise/meta/include/functions_wizard_meta.php:980 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1065 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1268 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1288 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1590 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1730 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 -#: ../../enterprise/meta/monitoring/group_view.php:239 -#: ../../enterprise/meta/monitoring/group_view.php:245 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 -#: ../../enterprise/meta/monitoring/tactical.php:240 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:439 -#: ../../enterprise/meta/index.php:862 ../../enterprise/meta/index.php:931 -#: ../../enterprise/godmode/setup/setup_history.php:583 -#: ../../enterprise/godmode/services/services.elements.php:372 -#: ../../enterprise/godmode/services/services.service.php:699 -#: ../../enterprise/godmode/services/services.service.php:930 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 -#: ../../enterprise/godmode/massive/massive_create_services.php:747 -#: ../../extensions/dbmanager.php:129 ../../mobile/operation/modules.php:70 -#: ../../mobile/operation/agents.php:59 ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/modules/manage_network_components_form_wizard.php:383 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3602 -#: ../../godmode/massive/massive_delete_modules.php:419 -#: ../../godmode/massive/massive_delete_modules.php:440 -#: ../../godmode/massive/massive_copy_modules.php:116 -#: ../../godmode/massive/massive_copy_modules.php:276 -#: ../../godmode/massive/massive_edit_agents.php:532 -#: ../../godmode/massive/massive_edit_agents.php:981 -#: ../../godmode/massive/massive_delete_agents.php:210 -#: ../../godmode/massive/massive_edit_modules.php:386 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/users/configure_user.php:1674 ../../godmode/groups/group_list.php:1059 -msgid "Warning" -msgstr "警告" - -#: ../../operation/tree.php:214 ../../operation/tree.php:271 -#: ../../operation/tree.php:466 ../../operation/gis_maps/render_view.php:164 -#: ../../operation/agentes/status_monitor.php:494 -#: ../../operation/agentes/group_view.php:228 ../../operation/agentes/group_view.php:233 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/tactical.php:178 -#: ../../operation/agentes/estado_agente.php:275 -#: ../../include/class/AgentWizard.class.php:1303 -#: ../../include/class/AgentWizard.class.php:4003 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:660 -#: ../../include/functions_events.php:3343 ../../include/functions_graph.php:3563 -#: ../../include/functions_graph.php:3564 ../../include/functions_graph.php:5131 -#: ../../include/functions_ui.php:2604 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 -#: ../../include/functions.php:1039 ../../include/functions.php:1275 -#: ../../include/functions.php:1276 ../../include/functions.php:1278 -#: ../../include/functions.php:1319 ../../include/functions_reporting_html.php:859 -#: ../../include/functions_reporting_html.php:2293 -#: ../../include/functions_reporting_html.php:4556 -#: ../../enterprise/operation/services/services.treeview_services.php:266 -#: ../../enterprise/operation/services/services.service.php:122 -#: ../../enterprise/operation/services/services.service.php:168 -#: ../../enterprise/operation/services/services.list.php:239 -#: ../../enterprise/operation/services/services.list.php:504 -#: ../../enterprise/operation/services/services.list.php:558 -#: ../../enterprise/operation/services/services.service_map.php:114 -#: ../../enterprise/operation/services/services.table_services.php:161 -#: ../../enterprise/operation/agentes/tag_view.php:133 -#: ../../enterprise/include/functions_services.php:1440 -#: ../../enterprise/include/functions_reporting.php:3190 -#: ../../enterprise/include/functions_reporting.php:4191 -#: ../../enterprise/include/functions_reporting.php:4842 -#: ../../enterprise/include/functions_reporting.php:6198 -#: ../../enterprise/meta/include/functions_wizard_meta.php:989 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1074 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1277 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1301 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1514 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1599 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1737 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 -#: ../../enterprise/meta/monitoring/group_view.php:240 -#: ../../enterprise/meta/monitoring/group_view.php:246 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 -#: ../../enterprise/meta/monitoring/tactical.php:239 -#: ../../enterprise/godmode/services/services.elements.php:363 -#: ../../enterprise/godmode/services/services.service.php:685 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 -#: ../../enterprise/godmode/massive/massive_create_services.php:733 -#: ../../extensions/module_groups.php:50 ../../mobile/operation/modules.php:71 -#: ../../mobile/operation/agents.php:57 -#: ../../godmode/modules/manage_network_components_form_wizard.php:411 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3603 -#: ../../godmode/massive/massive_delete_modules.php:420 -#: ../../godmode/massive/massive_delete_modules.php:441 -#: ../../godmode/massive/massive_copy_modules.php:117 -#: ../../godmode/massive/massive_copy_modules.php:277 -#: ../../godmode/massive/massive_edit_agents.php:533 -#: ../../godmode/massive/massive_delete_agents.php:211 -#: ../../godmode/massive/massive_edit_modules.php:387 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/groups/group_list.php:1054 -msgid "Critical" -msgstr "障害" - -#: ../../operation/tree.php:215 ../../operation/tree.php:272 -#: ../../operation/tree.php:476 ../../operation/events/events.php:2245 -#: ../../operation/agentes/status_monitor.php:495 -#: ../../operation/agentes/group_view.php:224 ../../operation/agentes/group_view.php:229 -#: ../../operation/agentes/estado_monitores.php:526 -#: ../../operation/agentes/tactical.php:181 -#: ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/pandora_networkmap.view.php:1728 -#: ../../include/functions_reports.php:557 ../../include/ajax/module.php:1071 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:388 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:421 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:670 -#: ../../include/functions_events.php:3243 ../../include/functions_alerts.php:699 -#: ../../include/functions_netflow.php:1865 ../../include/functions_filemanager.php:668 -#: ../../include/functions_reporting.php:6101 -#: ../../include/functions_visual_map.php:2455 -#: ../../include/functions_visual_map.php:2483 -#: ../../include/functions_visual_map.php:2501 -#: ../../include/functions_visual_map.php:2519 -#: ../../include/graphs/functions_flot.php:305 ../../include/functions_maps.php:54 -#: ../../include/functions_ui.php:549 ../../include/functions_ui.php:550 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 -#: ../../include/functions.php:1225 ../../include/functions.php:4100 -#: ../../include/functions_reporting_html.php:2282 -#: ../../include/functions_reporting_html.php:2295 -#: ../../include/functions_reporting_html.php:3246 -#: ../../include/functions_reporting_html.php:3654 -#: ../../enterprise/views/ncm/agent/details.php:312 -#: ../../enterprise/operation/services/services.treeview_services.php:276 -#: ../../enterprise/operation/services/services.service.php:180 -#: ../../enterprise/operation/services/services.list.php:240 -#: ../../enterprise/operation/services/services.list.php:571 -#: ../../enterprise/operation/services/services.service_map.php:117 -#: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../enterprise/operation/agentes/tag_view.php:134 -#: ../../enterprise/operation/agentes/transactional_map.php:339 -#: ../../enterprise/operation/agentes/transactional_map.php:385 -#: ../../enterprise/include/functions_cron.php:585 -#: ../../enterprise/include/class/DatabaseHA.class.php:223 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../enterprise/include/lib/NetworkManager.php:103 -#: ../../enterprise/include/functions_HA_cluster.php:70 -#: ../../enterprise/include/functions_reporting.php:1889 -#: ../../enterprise/include/functions_reporting.php:2939 -#: ../../enterprise/include/functions_reporting.php:3927 -#: ../../enterprise/include/functions_reporting.php:4847 -#: ../../enterprise/include/functions_reporting.php:6158 -#: ../../enterprise/include/functions_reporting_pdf.php:637 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 -#: ../../enterprise/meta/monitoring/group_view.php:236 -#: ../../enterprise/meta/monitoring/group_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 -#: ../../enterprise/meta/monitoring/tactical.php:242 -#: ../../enterprise/godmode/services/services.elements.php:381 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 -#: ../../extensions/module_groups.php:52 ../../mobile/operation/modules.php:72 -#: ../../mobile/operation/agents.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3604 -#: ../../godmode/massive/massive_delete_modules.php:421 -#: ../../godmode/massive/massive_delete_modules.php:442 -#: ../../godmode/massive/massive_copy_modules.php:118 -#: ../../godmode/massive/massive_copy_modules.php:278 -#: ../../godmode/massive/massive_edit_agents.php:534 -#: ../../godmode/massive/massive_delete_agents.php:212 -#: ../../godmode/massive/massive_edit_modules.php:388 -#: ../../godmode/massive/massive_edit_modules.php:474 -#: ../../godmode/alerts/alert_list.builder.php:290 -#: ../../godmode/groups/group_list.php:1064 -msgid "Unknown" -msgstr "不明" - -#: ../../operation/tree.php:216 ../../operation/tree.php:273 -#: ../../operation/tree.php:481 ../../operation/agentes/status_monitor.php:498 -#: ../../operation/agentes/group_view.php:225 ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 -#: ../../operation/agentes/estado_agente.php:278 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:675 -#: ../../include/functions_reporting_html.php:652 -#: ../../include/functions_reporting_html.php:2296 -#: ../../include/functions_reporting_html.php:4364 -#: ../../enterprise/operation/services/services.treeview_services.php:281 -#: ../../enterprise/operation/agentes/tag_view.php:137 -#: ../../enterprise/operation/agentes/transactional_map.php:345 -#: ../../enterprise/meta/monitoring/group_view.php:237 -#: ../../enterprise/meta/monitoring/group_view.php:243 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 -#: ../../enterprise/meta/monitoring/tactical.php:243 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 -#: ../../mobile/operation/modules.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 -#: ../../godmode/massive/massive_delete_modules.php:423 -#: ../../godmode/massive/massive_delete_modules.php:444 -#: ../../godmode/massive/massive_copy_modules.php:120 -#: ../../godmode/massive/massive_copy_modules.php:280 -#: ../../godmode/massive/massive_edit_agents.php:536 -#: ../../godmode/massive/massive_delete_agents.php:214 -#: ../../godmode/massive/massive_edit_modules.php:390 -#: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/groups/group_list.php:1069 -msgid "Not init" -msgstr "未初期化" - -#: ../../operation/tree.php:219 -msgid "Search group" -msgstr "検索グループ" - -#: ../../operation/tree.php:223 ../../operation/tree.php:279 -msgid "Show not init modules" -msgstr "未初期化モジュール表示" - -#: ../../operation/tree.php:232 -msgid "Search agent" -msgstr "エージェント検索" - -#: ../../operation/tree.php:235 -msgid "Show not init agents" -msgstr "未初期化エージェント表示" - -#: ../../operation/tree.php:243 -msgid "Show full hirearchy" -msgstr "全階層表示" - -#: ../../operation/tree.php:246 -#: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../enterprise/godmode/servers/HA_cluster.php:163 -msgid "Agent status" -msgstr "エージェント状態" - -#: ../../operation/tree.php:254 -msgid "Show only disabled" -msgstr "無効のもののみ表示" - -#: ../../operation/tree.php:260 ../../operation/netflow/nf_live_view.php:383 -#: ../../operation/agentes/graphs.php:265 -#: ../../operation/agentes/estado_monitores.php:594 -#: ../../operation/agentes/alerts_status.functions.php:137 -#: ../../operation/agentes/alerts_status.functions.php:146 -#: ../../operation/incidents/list_integriaims_incidents.php:435 -#: ../../operation/incidents/list_integriaims_incidents.php:439 -#: ../../include/class/ModuleTemplates.class.php:765 ../../include/functions_ui.php:3371 -#: ../../include/functions_ui.php:3392 ../../include/functions_ui.php:3403 -#: ../../enterprise/operation/services/services.treeview_services.php:156 -#: ../../enterprise/operation/services/services.treeview_services.php:160 -#: ../../enterprise/operation/services/services.list.php:454 -#: ../../enterprise/operation/services/services.list.php:459 -#: ../../enterprise/operation/services/services.table_services.php:363 -#: ../../enterprise/operation/services/services.table_services.php:368 -#: ../../enterprise/include/class/SAPView.class.php:409 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2824 -#: ../../enterprise/include/functions_ipam.php:1779 -#: ../../enterprise/meta/advanced/policymanager.queue.php:235 -#: ../../enterprise/godmode/setup/setup_skins.php:96 -#: ../../enterprise/godmode/setup/setup_acl.php:574 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:148 -#: ../../enterprise/godmode/policies/policy_queue.php:626 -#: ../../enterprise/godmode/policies/policy_linking.php:129 -#: ../../enterprise/godmode/policies/policies.php:337 -#: ../../godmode/modules/manage_network_templates_form.php:277 -#: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/reporting/reporting_builder.list_items.php:217 -#: ../../godmode/reporting/reporting_builder.list_items.php:261 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1046 -#: ../../godmode/snmpconsole/snmp_alert.php:1088 -#: ../../godmode/snmpconsole/snmp_filters.php:203 -#: ../../godmode/snmpconsole/snmp_filters.php:290 ../../godmode/tag/tag.php:233 -#: ../../godmode/netflow/nf_item_list.php:174 -#: ../../godmode/agentes/module_manager.php:83 -msgid "Filter" -msgstr "フィルタ" - -#: ../../operation/tree.php:276 -msgid "Search module" -msgstr "モジュール検索" - -#: ../../operation/tree.php:285 -#: ../../include/lib/Dashboard/Widgets/module_status.php:173 -#: ../../include/lib/Dashboard/Widgets/module_status.php:538 -#: ../../include/functions_events.php:211 ../../include/functions_events.php:6780 -#: ../../include/functions_reporting_html.php:4899 -#: ../../enterprise/meta/include/functions_events_meta.php:138 -msgid "Module status" -msgstr "モジュールの状態" - -#: ../../operation/tree.php:304 ../../operation/events/events_list.php:1102 -#: ../../operation/agentes/alerts_status.php:484 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 -#: ../../enterprise/meta/advanced/policymanager.queue.php:246 -#: ../../enterprise/meta/advanced/collections.php:192 -#: ../../enterprise/meta/agentsearch.php:113 -#: ../../enterprise/godmode/modules/local_components.php:584 -#: ../../godmode/modules/manage_network_components.php:690 -#: ../../godmode/reporting/reporting_builder.list_items.php:273 -#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 -#: ../../godmode/alerts/alert_actions.php:315 -#: ../../godmode/alerts/alert_templates.php:337 ../../godmode/users/user_list.php:444 -msgid "Show Options" -msgstr "オプション表示" - -#: ../../operation/tree.php:308 -msgid "Tree search" -msgstr "ツリー検索" - -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:313 -#: ../../include/class/Heatmap.class.php:684 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:645 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../enterprise/operation/services/services.treeview_services.php:246 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/include/functions_inventory.php:271 -#: ../../godmode/groups/group_list.php:1034 -msgid "No data found" -msgstr "データがありません" - -#: ../../operation/tree.php:420 ../../include/lib/Dashboard/Widgets/tree_view.php:601 -#: ../../enterprise/meta/agentsearch.php:315 -msgid "Policies found" -msgstr "ポリシーが見つかりました" - -#: ../../operation/tree.php:423 ../../include/lib/Dashboard/Widgets/tree_view.php:605 -msgid "Operating systems found" -msgstr "オペレーティングシステムを見つけました" - -#: ../../operation/tree.php:426 ../../include/lib/Dashboard/Widgets/tree_view.php:609 -msgid "Tags found" -msgstr "タグを見つけました" - -#: ../../operation/tree.php:429 ../../include/lib/Dashboard/Widgets/tree_view.php:613 -msgid "Module Groups found" -msgstr "モジュールグループを見つけました" - -#: ../../operation/tree.php:436 ../../include/lib/Dashboard/Widgets/tree_view.php:622 -msgid "Groups found" -msgstr "グループを見つけました" - -#: ../../operation/tree.php:454 ../../include/class/Diagnostics.class.php:549 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../include/functions_reporting.php:11490 -#: ../../include/functions_reporting_html.php:5560 -#: ../../enterprise/operation/services/services.treeview_services.php:254 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../mobile/operation/groups.php:147 ../../godmode/db/db_main.php:102 -#: ../../godmode/groups/group_list.php:1042 -msgid "Total agents" -msgstr "エージェント数" - -#: ../../operation/tree.php:455 ../../include/class/Diagnostics.class.php:553 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../godmode/module_library/module_library_view.php:159 -#: ../../godmode/groups/group_list.php:1043 -msgid "Total modules" -msgstr "全モジュール" - -#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 -#: ../../include/functions_alerts.php:3360 -#: ../../include/functions_reporting_html.php:2281 -#: ../../include/functions_reporting_html.php:2291 -#: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../enterprise/operation/agentes/agent_inventory.php:240 -#: ../../enterprise/include/functions_inventory.php:481 -#: ../../enterprise/include/functions_inventory.php:624 -#: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../godmode/groups/group_list.php:1044 -msgid "Total" -msgstr "合計" - -#: ../../operation/tree.php:459 ../../operation/tree.php:460 -#: ../../operation/tree.php:461 ../../include/lib/Dashboard/Widgets/tree_view.php:653 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:655 -#: ../../include/functions_graph.php:2631 ../../include/functions_reporting.php:11351 -#: ../../include/functions_reporting.php:11374 -#: ../../enterprise/operation/services/services.treeview_services.php:259 -#: ../../enterprise/operation/services/services.treeview_services.php:260 -#: ../../enterprise/operation/services/services.treeview_services.php:261 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../godmode/groups/group_list.php:1047 ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 -msgid "Fired alerts" -msgstr "発生したアラート" - -#: ../../operation/tree.php:464 ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 -#: ../../godmode/groups/group_list.php:1052 -msgid "Critical agents" -msgstr "障害エージェント数" - -#: ../../operation/tree.php:465 ../../include/lib/Dashboard/Widgets/tree_view.php:659 -#: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 -#: ../../mobile/operation/groups.php:171 ../../godmode/groups/group_list.php:1053 -msgid "Critical modules" -msgstr "障害モジュール" - -#: ../../operation/tree.php:469 ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../enterprise/operation/services/services.treeview_services.php:269 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 -#: ../../godmode/groups/group_list.php:1057 -msgid "Warning agents" -msgstr "警告エージェント数" - -#: ../../operation/tree.php:470 ../../include/lib/Dashboard/Widgets/tree_view.php:664 -#: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 -#: ../../mobile/operation/groups.php:168 ../../godmode/groups/group_list.php:1058 -msgid "Warning modules" -msgstr "警告モジュール" - -#: ../../operation/tree.php:474 ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 -#: ../../godmode/groups/group_list.php:1062 -msgid "Unknown agents" -msgstr "不明エージェント数" - -#: ../../operation/tree.php:475 ../../include/lib/Dashboard/Widgets/tree_view.php:669 -#: ../../enterprise/operation/services/services.treeview_services.php:275 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 -#: ../../mobile/operation/groups.php:159 ../../godmode/groups/group_list.php:1063 -msgid "Unknown modules" -msgstr "不明モジュール" - -#: ../../operation/tree.php:479 ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:573 -#: ../../godmode/groups/group_list.php:1067 -msgid "Not init agents" -msgstr "未初期化エージェント数" - -#: ../../operation/tree.php:480 ../../include/lib/Dashboard/Widgets/tree_view.php:674 -#: ../../enterprise/operation/services/services.treeview_services.php:280 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 -#: ../../mobile/operation/groups.php:162 ../../godmode/groups/group_list.php:1068 -msgid "Not init modules" -msgstr "未初期化モジュール" - -#: ../../operation/tree.php:484 ../../include/lib/Dashboard/Widgets/tree_view.php:678 -#: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 -#: ../../godmode/groups/group_list.php:1072 -msgid "Normal agents" -msgstr "正常エージェント数" - -#: ../../operation/tree.php:485 ../../include/lib/Dashboard/Widgets/tree_view.php:679 -#: ../../enterprise/operation/services/services.treeview_services.php:285 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 -#: ../../mobile/operation/groups.php:165 ../../godmode/groups/group_list.php:1073 -msgid "Normal modules" -msgstr "正常モジュール" - -#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2056 -#: ../../operation/agentes/estado_monitores.php:421 -#: ../../enterprise/operation/services/services.treeview_services.php:341 -msgid "Module: " -msgstr "モジュール: " - -#: ../../operation/tree.php:573 ../../operation/reporting/graph_viewer.php:423 -#: ../../operation/reporting/reporting_viewer.php:367 -#: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/network/network_report.php:336 -#: ../../operation/network/network_usage_map.php:184 -#: ../../operation/events/events.php:2806 ../../operation/events/events_list.php:2031 -#: ../../operation/netflow/nf_live_view.php:740 -#: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/agentes/stat_win.php:617 ../../operation/agentes/datos_agente.php:312 -#: ../../operation/agentes/interface_traffic_graph_win.php:434 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../enterprise/operation/log/log_viewer.php:981 -#: ../../enterprise/operation/log/log_viewer.php:993 -#: ../../enterprise/operation/services/services.treeview_services.php:375 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4311 -#: ../../enterprise/meta/advanced/cron_main.php:530 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3962 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 -#: ../../enterprise/godmode/wizards/consoletask_js.php:41 -#: ../../extensions/insert_data.php:224 ../../godmode/setup/news.php:322 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4832 -#: ../../godmode/agentes/planned_downtime.editor.php:1488 -#: ../../godmode/alerts/configure_alert_template.php:1456 -#: ../../godmode/alerts/configure_alert_template.php:1540 -msgid "Choose time" -msgstr "時間を選択" - -#: ../../operation/tree.php:574 ../../operation/reporting/graph_viewer.php:424 -#: ../../operation/reporting/reporting_viewer.php:368 -#: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/network/network_report.php:337 -#: ../../operation/network/network_usage_map.php:185 -#: ../../operation/events/events.php:2807 ../../operation/events/events_list.php:2032 -#: ../../operation/netflow/nf_live_view.php:741 -#: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/agentes/stat_win.php:618 ../../operation/agentes/datos_agente.php:313 -#: ../../operation/agentes/interface_traffic_graph_win.php:435 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:684 -#: ../../enterprise/operation/log/log_viewer.php:982 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/services/services.treeview_services.php:376 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3986 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4312 -#: ../../enterprise/include/lib/Metaconsole/Node.php:591 -#: ../../enterprise/meta/advanced/cron_main.php:531 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3963 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 -#: ../../enterprise/godmode/wizards/consoletask_js.php:42 -#: ../../extensions/insert_data.php:225 ../../godmode/setup/news.php:323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4833 -#: ../../godmode/agentes/planned_downtime.editor.php:1489 -#: ../../godmode/alerts/configure_alert_template.php:1457 -#: ../../godmode/alerts/configure_alert_template.php:1541 -msgid "Time" -msgstr "時刻" - -#: ../../operation/tree.php:575 ../../operation/reporting/graph_viewer.php:425 -#: ../../operation/reporting/reporting_viewer.php:369 -#: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/network/network_report.php:338 -#: ../../operation/network/network_usage_map.php:186 -#: ../../operation/events/events.php:2808 ../../operation/events/events_list.php:2033 -#: ../../operation/netflow/nf_live_view.php:742 -#: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/agentes/stat_win.php:619 ../../operation/agentes/datos_agente.php:314 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 -#: ../../include/functions_html.php:2271 -#: ../../enterprise/operation/log/log_viewer.php:983 -#: ../../enterprise/operation/log/log_viewer.php:995 -#: ../../enterprise/operation/services/services.treeview_services.php:377 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3987 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4313 -#: ../../enterprise/meta/advanced/cron_main.php:532 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3964 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 -#: ../../enterprise/godmode/wizards/consoletask_js.php:43 -#: ../../extensions/insert_data.php:226 ../../godmode/setup/news.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4834 -#: ../../godmode/agentes/planned_downtime.editor.php:1490 -#: ../../godmode/alerts/configure_alert_template.php:1458 -#: ../../godmode/alerts/configure_alert_template.php:1542 -msgid "Hour" -msgstr "時" - -#: ../../operation/tree.php:576 ../../operation/reporting/graph_viewer.php:426 -#: ../../operation/reporting/reporting_viewer.php:370 -#: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/network/network_report.php:339 -#: ../../operation/network/network_usage_map.php:187 -#: ../../operation/events/events.php:2809 ../../operation/events/events_list.php:2034 -#: ../../operation/netflow/nf_live_view.php:743 -#: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/agentes/stat_win.php:620 ../../operation/agentes/datos_agente.php:315 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 -#: ../../include/functions_html.php:2272 -#: ../../enterprise/operation/log/log_viewer.php:984 -#: ../../enterprise/operation/log/log_viewer.php:996 -#: ../../enterprise/operation/services/services.treeview_services.php:378 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3988 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4314 -#: ../../enterprise/meta/advanced/cron_main.php:533 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3965 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 -#: ../../enterprise/godmode/wizards/consoletask_js.php:44 -#: ../../extensions/insert_data.php:227 ../../godmode/setup/news.php:325 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4835 -#: ../../godmode/agentes/planned_downtime.editor.php:1491 -#: ../../godmode/alerts/configure_alert_template.php:1459 -#: ../../godmode/alerts/configure_alert_template.php:1543 -msgid "Minute" -msgstr "分" - -#: ../../operation/tree.php:577 ../../operation/reporting/graph_viewer.php:427 -#: ../../operation/reporting/reporting_viewer.php:371 -#: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/network/network_report.php:340 -#: ../../operation/network/network_usage_map.php:188 -#: ../../operation/events/events.php:2810 ../../operation/events/events_list.php:2035 -#: ../../operation/netflow/nf_live_view.php:744 -#: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/agentes/stat_win.php:621 ../../operation/agentes/datos_agente.php:316 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 -#: ../../enterprise/operation/log/log_viewer.php:985 -#: ../../enterprise/operation/log/log_viewer.php:997 -#: ../../enterprise/operation/services/services.treeview_services.php:379 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3989 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4315 -#: ../../enterprise/meta/advanced/cron_main.php:534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3966 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 -#: ../../enterprise/godmode/wizards/consoletask_js.php:45 -#: ../../extensions/insert_data.php:228 ../../godmode/setup/news.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4836 -#: ../../godmode/agentes/planned_downtime.editor.php:1492 -#: ../../godmode/alerts/configure_alert_template.php:1460 -#: ../../godmode/alerts/configure_alert_template.php:1544 -msgid "Second" -msgstr "秒" - -#: ../../operation/tree.php:578 ../../operation/reporting/graph_viewer.php:428 -#: ../../operation/reporting/reporting_viewer.php:372 -#: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/network/network_report.php:341 -#: ../../operation/network/network_usage_map.php:189 -#: ../../operation/events/events.php:2811 ../../operation/events/events_list.php:2036 -#: ../../operation/netflow/nf_live_view.php:745 -#: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/agentes/stat_win.php:622 ../../operation/agentes/datos_agente.php:317 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 ../../include/functions.php:505 -#: ../../include/functions.php:636 ../../enterprise/operation/log/log_viewer.php:986 -#: ../../enterprise/operation/log/log_viewer.php:998 -#: ../../enterprise/operation/services/services.treeview_services.php:380 -#: ../../enterprise/operation/agentes/agent_inventory.php:108 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3990 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4316 -#: ../../enterprise/meta/advanced/cron_main.php:535 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3967 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 -#: ../../enterprise/godmode/wizards/consoletask_js.php:46 -#: ../../extensions/insert_data.php:229 ../../godmode/setup/news.php:327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4837 -#: ../../godmode/agentes/planned_downtime.editor.php:1493 -#: ../../godmode/alerts/configure_alert_template.php:1461 -#: ../../godmode/alerts/configure_alert_template.php:1545 -msgid "Now" -msgstr "今" - -#: ../../operation/tree.php:579 ../../operation/reporting/graph_viewer.php:429 -#: ../../operation/reporting/reporting_viewer.php:373 -#: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/network/network_report.php:342 -#: ../../operation/network/network_usage_map.php:190 -#: ../../operation/events/events.php:2812 ../../operation/events/events_list.php:2037 -#: ../../operation/netflow/nf_live_view.php:746 -#: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/agentes/stat_win.php:623 ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 -#: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 -#: ../../include/functions_snmp_browser.php:600 -#: ../../enterprise/operation/log/log_viewer.php:987 -#: ../../enterprise/operation/log/log_viewer.php:999 -#: ../../enterprise/operation/services/services.treeview_services.php:381 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3991 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4317 -#: ../../enterprise/meta/advanced/cron_main.php:536 -#: ../../enterprise/godmode/setup/setup.php:736 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3968 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 -#: ../../enterprise/godmode/wizards/consoletask_js.php:47 -#: ../../extensions/insert_data.php:230 ../../mobile/include/ui.class.php:691 -#: ../../mobile/include/ui.class.php:749 ../../godmode/setup/news.php:328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4838 -#: ../../godmode/wizards/HostDevices.class.php:796 -#: ../../godmode/agentes/planned_downtime.editor.php:1494 -#: ../../godmode/alerts/configure_alert_template.php:1462 -#: ../../godmode/alerts/configure_alert_template.php:1546 -msgid "Close" -msgstr "閉じる" - -#: ../../operation/search_policies.php:37 -msgid "Id_group" -msgstr "グループ ID" - -#: ../../operation/search_policies.php:50 ../../enterprise/meta/agentsearch.php:409 -#: ../../enterprise/godmode/policies/policies.php:471 -msgid "Policy updated" -msgstr "ポリシーを更新しました" - -#: ../../operation/search_policies.php:58 ../../enterprise/meta/agentsearch.php:417 -#: ../../enterprise/godmode/policies/policies.php:479 -msgid "Pending update policy only database" -msgstr "データベースのみポリシー更新待ち" - -#: ../../operation/search_policies.php:66 ../../enterprise/meta/agentsearch.php:425 -#: ../../enterprise/godmode/policies/policies.php:487 -msgid "Pending update policy" -msgstr "ポリシー更新待ち" - -#: ../../operation/search_modules.php:32 ../../operation/agentes/alerts_status.php:548 -#: ../../operation/agentes/alerts_status.php:583 -#: ../../operation/agentes/alerts_status.php:618 -#: ../../operation/agentes/alerts_status.php:650 -#: ../../operation/agentes/estado_monitores.php:125 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/search_alerts.php:35 -#: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reports.php:1344 ../../include/ajax/alert_list.ajax.php:279 -#: ../../include/ajax/alert_list.ajax.php:304 ../../include/ajax/alert_list.ajax.php:467 -#: ../../include/class/AgentsAlerts.class.php:412 -#: ../../include/class/AgentsAlerts.class.php:903 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 -#: ../../include/lib/Dashboard/Widgets/module_value.php:308 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 -#: ../../include/lib/Dashboard/Widgets/module_status.php:324 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 -#: ../../include/lib/Dashboard/Widgets/top_n.php:221 -#: ../../include/functions_treeview.php:64 ../../include/functions_graph.php:5450 -#: ../../include/functions_reporting.php:6655 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:380 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/functions_reporting_html.php:543 -#: ../../include/functions_reporting_html.php:939 -#: ../../include/functions_reporting_html.php:1748 -#: ../../include/functions_reporting_html.php:2076 -#: ../../include/functions_reporting_html.php:2178 -#: ../../include/functions_reporting_html.php:3132 -#: ../../include/functions_reporting_html.php:3515 -#: ../../include/functions_reporting_html.php:3523 -#: ../../include/functions_reporting_html.php:3532 -#: ../../include/functions_reporting_html.php:3544 -#: ../../include/functions_reporting_html.php:3700 -#: ../../include/functions_reporting_html.php:3828 -#: ../../include/functions_reporting_html.php:3922 -#: ../../include/functions_reporting_html.php:4641 -#: ../../include/functions_reporting_html.php:4689 -#: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:69 -#: ../../enterprise/operation/inventory/inventory.php:343 -#: ../../enterprise/include/functions_reporting_csv.php:491 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:1503 -#: ../../enterprise/include/functions_reporting_csv.php:1549 -#: ../../enterprise/include/functions_reporting_csv.php:1622 -#: ../../enterprise/include/functions_reporting_csv.php:1741 -#: ../../enterprise/include/functions_reporting_csv.php:1976 -#: ../../enterprise/include/functions_reporting_csv.php:2049 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_reporting_csv.php:2737 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 -#: ../../enterprise/include/functions_services.php:1779 -#: ../../enterprise/include/functions_events.php:157 -#: ../../enterprise/include/functions_inventory.php:850 -#: ../../enterprise/include/functions_inventory.php:906 -#: ../../enterprise/include/functions_reporting.php:1853 -#: ../../enterprise/include/functions_reporting.php:2892 -#: ../../enterprise/include/functions_reporting.php:3879 -#: ../../enterprise/include/functions_reporting.php:4903 -#: ../../enterprise/include/functions_reporting_pdf.php:525 -#: ../../enterprise/include/functions_reporting_pdf.php:533 -#: ../../enterprise/include/functions_reporting_pdf.php:541 -#: ../../enterprise/include/functions_reporting_pdf.php:557 -#: ../../enterprise/include/functions_ui.php:47 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3512 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 -#: ../../enterprise/extensions/disabled/check_acls.php:133 -#: ../../enterprise/godmode/services/services.elements.php:93 -#: ../../enterprise/godmode/services/services.elements.php:157 -#: ../../enterprise/godmode/services/services.elements.php:275 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2055 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3717 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 -#: ../../enterprise/godmode/policies/policy_linking.php:151 -#: ../../enterprise/godmode/policies/policy_alerts.php:352 -#: ../../enterprise/godmode/policies/policy_alerts.php:567 -#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 -#: ../../mobile/operation/alerts.php:338 ../../godmode/servers/plugin.php:88 -#: ../../godmode/reporting/reporting_builder.list_items.php:410 -#: ../../godmode/reporting/create_container.php:410 -#: ../../godmode/reporting/create_container.php:560 -#: ../../godmode/reporting/create_container.php:628 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:197 -#: ../../godmode/reporting/reporting_builder.item_editor.php:820 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1610 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3768 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4284 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4308 -#: ../../godmode/reporting/graph_builder.graph_editor.php:213 -#: ../../godmode/reporting/visual_console_builder.wizard.php:449 -#: ../../godmode/reporting/visual_console_builder.wizard.php:770 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_edit_agents.php:674 -#: ../../godmode/massive/massive_edit_agents.php:1026 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../godmode/agentes/module_manager_editor_common.php:1260 -#: ../../godmode/agentes/module_manager_editor_common.php:1304 -#: ../../godmode/agentes/agent_manager.php:481 -#: ../../godmode/agentes/agent_manager.php:553 -#: ../../godmode/agentes/planned_downtime.editor.php:1001 -#: ../../godmode/agentes/planned_downtime.list.php:357 -#: ../../godmode/alerts/alert_list.list.php:479 -#: ../../godmode/alerts/alert_list.list.php:737 -#: ../../godmode/alerts/alert_list.builder.php:70 ../../godmode/alerts/alert_view.php:91 -msgid "Module" -msgstr "モジュール" - -#: ../../operation/search_modules.php:33 ../../operation/gis_maps/ajax.php:236 -#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_agents.php:42 -#: ../../operation/search_agents.php:48 ../../operation/events/sound_events.php:165 -#: ../../operation/events/events.build_table.php:80 -#: ../../operation/events/events.php:1953 -#: ../../operation/agentes/status_monitor.php:1308 -#: ../../operation/agentes/alerts_status.php:547 -#: ../../operation/agentes/alerts_status.php:617 -#: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/interface_view.functions.php:480 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/agentes/estado_agente.php:739 -#: ../../operation/agentes/ver_agente.php:1160 ../../operation/search_alerts.php:34 -#: ../../include/functions_gis.php:229 ../../include/functions_visual_map_editor.php:422 -#: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reports.php:1313 ../../include/ajax/alert_list.ajax.php:446 -#: ../../include/ajax/heatmap.ajax.php:238 ../../include/ajax/heatmap.ajax.php:277 -#: ../../include/ajax/heatmap.ajax.php:312 -#: ../../include/class/AgentsAlerts.class.php:410 -#: ../../include/class/AgentsAlerts.class.php:974 -#: ../../include/class/NetworkMap.class.php:2835 -#: ../../include/class/NetworkMap.class.php:2884 -#: ../../include/class/NetworkMap.class.php:3162 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 -#: ../../include/lib/Dashboard/Widgets/module_value.php:290 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 -#: ../../include/lib/Dashboard/Widgets/module_status.php:306 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 -#: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_graph.php:5343 ../../include/functions_snmp_browser.php:1625 -#: ../../include/functions_reporting.php:6654 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:363 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/functions_reporting_html.php:542 -#: ../../include/functions_reporting_html.php:938 -#: ../../include/functions_reporting_html.php:1049 -#: ../../include/functions_reporting_html.php:1057 -#: ../../include/functions_reporting_html.php:1747 -#: ../../include/functions_reporting_html.php:2075 -#: ../../include/functions_reporting_html.php:2177 -#: ../../include/functions_reporting_html.php:2997 -#: ../../include/functions_reporting_html.php:3131 -#: ../../include/functions_reporting_html.php:3434 -#: ../../include/functions_reporting_html.php:3514 -#: ../../include/functions_reporting_html.php:3522 -#: ../../include/functions_reporting_html.php:3531 -#: ../../include/functions_reporting_html.php:3543 -#: ../../include/functions_reporting_html.php:3699 -#: ../../include/functions_reporting_html.php:3822 -#: ../../include/functions_reporting_html.php:3916 -#: ../../include/functions_reporting_html.php:4640 -#: ../../include/functions_reporting_html.php:4688 -#: ../../include/functions_reporting_html.php:4726 -#: ../../include/functions_reporting_html.php:5035 -#: ../../include/functions_reporting_html.php:5075 -#: ../../include/functions_reporting_html.php:5325 -#: ../../enterprise/tools/ipam/ipam_ajax.php:379 -#: ../../enterprise/tools/ipam/ipam_network.php:397 -#: ../../enterprise/operation/log/log_viewer.php:632 -#: ../../enterprise/operation/agentes/tag_view.php:599 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 -#: ../../enterprise/operation/inventory/inventory.php:387 -#: ../../enterprise/include/functions_reporting_csv.php:490 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1054 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:1502 -#: ../../enterprise/include/functions_reporting_csv.php:1548 -#: ../../enterprise/include/functions_reporting_csv.php:1621 -#: ../../enterprise/include/functions_reporting_csv.php:1740 -#: ../../enterprise/include/functions_reporting_csv.php:1975 -#: ../../enterprise/include/functions_reporting_csv.php:2048 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/functions_reporting_csv.php:2736 -#: ../../enterprise/include/class/LogSource.class.php:627 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 -#: ../../enterprise/include/functions_services.php:1666 -#: ../../enterprise/include/functions_events.php:147 -#: ../../enterprise/include/functions_inventory.php:363 -#: ../../enterprise/include/functions_inventory.php:849 -#: ../../enterprise/include/functions_inventory.php:905 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting.php:1852 -#: ../../enterprise/include/functions_reporting.php:2185 -#: ../../enterprise/include/functions_reporting.php:2216 -#: ../../enterprise/include/functions_reporting.php:2234 -#: ../../enterprise/include/functions_reporting.php:2891 -#: ../../enterprise/include/functions_reporting.php:3878 -#: ../../enterprise/include/functions_reporting.php:4902 -#: ../../enterprise/include/functions_reporting_pdf.php:524 -#: ../../enterprise/include/functions_reporting_pdf.php:532 -#: ../../enterprise/include/functions_reporting_pdf.php:540 -#: ../../enterprise/include/functions_reporting_pdf.php:556 -#: ../../enterprise/include/functions_reporting_pdf.php:714 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3505 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:282 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:377 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 -#: ../../enterprise/meta/agentsearch.php:134 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 -#: ../../enterprise/godmode/services/services.elements.php:94 -#: ../../enterprise/godmode/services/services.elements.php:133 -#: ../../enterprise/godmode/services/services.elements.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3501 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3730 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 -#: ../../enterprise/godmode/agentes/collections.agents.php:94 -#: ../../enterprise/godmode/policies/policy_linking.php:150 -#: ../../extensions/insert_data.php:158 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335 -#: ../../mobile/operation/events.php:553 ../../mobile/operation/agents.php:93 -#: ../../mobile/operation/agents.php:403 ../../godmode/servers/plugin.php:87 -#: ../../godmode/gis_maps/configure_gis_map.php:581 -#: ../../godmode/reporting/reporting_builder.list_items.php:391 -#: ../../godmode/reporting/create_container.php:387 -#: ../../godmode/reporting/create_container.php:554 -#: ../../godmode/reporting/create_container.php:627 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/reporting_builder.item_editor.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:819 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3763 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4281 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4305 -#: ../../godmode/reporting/graph_builder.graph_editor.php:212 -#: ../../godmode/reporting/visual_console_builder.wizard.php:450 -#: ../../godmode/reporting/visual_console_builder.wizard.php:738 -#: ../../godmode/reporting/visual_console_builder.wizard.php:761 -#: ../../godmode/massive/massive_copy_modules.php:131 -#: ../../godmode/massive/massive_copy_modules.php:295 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../godmode/agentes/module_manager_editor_prediction.php:126 -#: ../../godmode/agentes/module_manager_editor_common.php:1250 -#: ../../godmode/agentes/module_manager_editor_common.php:1303 -#: ../../godmode/agentes/status_monitor_custom_fields.php:77 -#: ../../godmode/agentes/status_monitor_custom_fields.php:143 -#: ../../godmode/agentes/planned_downtime.list.php:353 -#: ../../godmode/alerts/alert_list.list.php:477 -#: ../../godmode/alerts/alert_list.list.php:727 -#: ../../godmode/alerts/alert_list.builder.php:56 ../../godmode/alerts/alert_view.php:87 -msgid "Agent" -msgstr "エージェント" - -#: ../../operation/search_modules.php:34 ../../operation/events/sound_events.php:127 -#: ../../operation/netflow/nf_live_view.php:311 -#: ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1144 -#: ../../operation/incidents/configure_integriaims_incident.php:234 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 -#: ../../include/functions_visual_map_editor.php:702 -#: ../../include/functions_visual_map_editor.php:720 -#: ../../include/functions_visual_map_editor.php:848 -#: ../../include/functions_reports.php:1067 ../../include/ajax/module.php:977 -#: ../../include/ajax/heatmap.ajax.php:75 -#: ../../include/class/ModuleTemplates.class.php:1209 -#: ../../include/class/AgentWizard.class.php:1182 -#: ../../include/class/AgentWizard.class.php:4022 -#: ../../include/class/CalendarManager.class.php:977 -#: ../../include/class/CalendarManager.class.php:1011 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 -#: ../../include/lib/Dashboard/Widgets/clock.php:221 -#: ../../include/lib/Dashboard/Widgets/service_view.php:251 -#: ../../include/functions_events.php:2606 ../../include/functions_events.php:5026 -#: ../../include/functions_snmp_browser.php:564 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reporting_html.php:1048 -#: ../../include/functions_reporting_html.php:1056 -#: ../../include/functions_reporting_html.php:1268 -#: ../../include/functions_reporting_html.php:1276 -#: ../../include/functions_reporting_html.php:2354 -#: ../../include/functions_reporting_html.php:3388 -#: ../../include/functions_reporting_html.php:5154 -#: ../../enterprise/views/cluster/list.php:61 -#: ../../enterprise/operation/agentes/tag_view.php:605 -#: ../../enterprise/operation/agentes/policy_view.php:396 -#: ../../enterprise/operation/agentes/ver_agente.php:32 -#: ../../enterprise/include/functions_reporting_csv.php:1605 -#: ../../enterprise/include/functions_reporting_csv.php:1721 -#: ../../enterprise/include/functions_reporting_csv.php:1961 -#: ../../enterprise/include/functions_reporting_csv.php:2029 -#: ../../enterprise/include/functions_services.php:1602 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 -#: ../../enterprise/meta/advanced/metasetup.relations.php:335 -#: ../../enterprise/meta/advanced/metasetup.relations.php:413 -#: ../../enterprise/meta/advanced/metasetup.relations.php:548 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 -#: ../../enterprise/godmode/modules/configure_local_component.php:212 -#: ../../enterprise/godmode/services/services.elements.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1651 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:1465 -#: ../../mobile/operation/visualmaps.php:125 ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 -#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:681 -#: ../../mobile/operation/events.php:682 ../../godmode/setup/setup_integria.php:408 -#: ../../godmode/setup/setup_integria.php:530 ../../godmode/setup/gis_step_2.php:235 -#: ../../godmode/setup/news.php:247 ../../godmode/servers/plugin.php:816 -#: ../../godmode/servers/modificar_server.php:72 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/modules/manage_network_components.php:750 -#: ../../godmode/modules/manage_network_templates_form.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/reporting/reporting_builder.list_items.php:212 -#: ../../godmode/reporting/reporting_builder.list_items.php:249 -#: ../../godmode/reporting/reporting_builder.list_items.php:372 -#: ../../godmode/reporting/reporting_builder.item_editor.php:981 -#: ../../godmode/reporting/visual_console_builder.wizard.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../godmode/events/event_responses.editor.php:159 -#: ../../godmode/agentes/module_manager.php:850 -#: ../../godmode/agentes/module_manager_editor_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../godmode/agentes/module_manager_editor_common.php:1305 -#: ../../godmode/agentes/planned_downtime.editor.php:582 -#: ../../godmode/agentes/planned_downtime.list.php:613 -#: ../../godmode/agentes/agent_template.php:236 -#: ../../godmode/agentes/modificar_agente.php:650 -#: ../../godmode/alerts/alert_templates.php:37 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/alerts/alert_templates.php:386 -msgid "Type" -msgstr "種類" - -#: ../../operation/search_modules.php:35 ../../operation/search_agents.php:45 -#: ../../operation/search_agents.php:51 ../../operation/netflow/nf_live_view.php:262 -#: ../../operation/agentes/status_monitor.php:1329 -#: ../../operation/agentes/estado_agente.php:751 -#: ../../operation/agentes/estado_generalagente.php:338 -#: ../../include/class/CustomNetScan.class.php:520 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 -#: ../../include/lib/Dashboard/Widgets/top_n.php:236 -#: ../../include/functions_treeview.php:84 ../../include/functions_treeview.php:646 -#: ../../include/functions_reporting_html.php:3393 -#: ../../enterprise/tools/ipam/ipam_list.php:617 -#: ../../enterprise/operation/agentes/tag_view.php:603 -#: ../../enterprise/operation/agentes/tag_view.php:681 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 -#: ../../enterprise/include/class/Aws.cloud.php:591 -#: ../../enterprise/include/class/Aws.cloud.php:1318 -#: ../../enterprise/include/class/Aws.S3.php:506 -#: ../../enterprise/include/class/MySQL.app.php:558 -#: ../../enterprise/include/class/Oracle.app.php:543 -#: ../../enterprise/include/class/DB2.app.php:536 -#: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/VMware.app.php:667 -#: ../../enterprise/include/class/Azure.cloud.php:847 -#: ../../enterprise/include/class/Google.cloud.php:797 -#: ../../enterprise/include/functions_ipam.php:1354 -#: ../../enterprise/include/functions_ui.php:84 -#: ../../enterprise/meta/include/functions_wizard_meta.php:921 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1038 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1205 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1523 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1608 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1745 -#: ../../enterprise/meta/agentsearch.php:137 -#: ../../enterprise/godmode/servers/manage_export_form.php:95 -#: ../../enterprise/godmode/servers/manage_export.php:139 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 -#: ../../enterprise/godmode/agentes/inventory_manager.php:223 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 -#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 -#: ../../mobile/operation/modules.php:851 -#: ../../godmode/modules/manage_network_components_form_common.php:143 -#: ../../godmode/massive/massive_edit_agents.php:705 -#: ../../godmode/massive/massive_edit_modules.php:754 -#: ../../godmode/wizards/HostDevices.class.php:798 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:594 -#: ../../godmode/agentes/module_manager.php:856 -#: ../../godmode/agentes/module_manager_editor_common.php:617 -#: ../../godmode/agentes/module_manager_editor_common.php:642 -#: ../../godmode/agentes/status_monitor_custom_fields.php:93 -#: ../../godmode/agentes/status_monitor_custom_fields.php:147 -#: ../../godmode/agentes/agent_manager.php:366 -msgid "Interval" -msgstr "間隔" - -#: ../../operation/search_modules.php:37 ../../operation/agentes/status_monitor.php:1347 -#: ../../include/functions_visual_map_editor.php:58 ../../include/ajax/module.php:983 -#: ../../include/class/NetworkMap.class.php:2908 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 -#: ../../include/functions_events.php:4583 -#: ../../enterprise/operation/services/services.service.php:130 -#: ../../enterprise/operation/services/services.list.php:509 -#: ../../enterprise/operation/agentes/tag_view.php:682 -#: ../../extensions/realtime_graphs.php:161 -#: ../../godmode/agentes/status_monitor_custom_fields.php:105 -#: ../../godmode/agentes/status_monitor_custom_fields.php:150 -msgid "Graph" -msgstr "グラフ" - -#: ../../operation/search_modules.php:38 -#: ../../operation/events/events.build_table.php:330 -#: ../../operation/agentes/status_monitor.php:1357 -#: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/exportdata.excel.php:74 ../../include/ajax/module.php:982 -#: ../../include/ajax/custom_fields.php:412 ../../include/functions_events.php:210 -#: ../../include/functions_events.php:293 ../../include/functions_events.php:6774 -#: ../../include/functions_netflow.php:301 ../../include/functions_graph.php:3769 -#: ../../include/functions_reporting.php:4010 ../../include/functions_reporting.php:4051 -#: ../../include/functions_reporting.php:4802 -#: ../../include/functions_reporting_html.php:2079 -#: ../../include/functions_reporting_html.php:2535 -#: ../../include/functions_reporting_html.php:2539 -#: ../../include/functions_reporting_html.php:2540 -#: ../../include/functions_reporting_html.php:2544 -#: ../../include/functions_reporting_html.php:2549 -#: ../../include/functions_reporting_html.php:2554 -#: ../../include/functions_reporting_html.php:2558 -#: ../../include/functions_reporting_html.php:2563 -#: ../../include/functions_reporting_html.php:2570 -#: ../../include/functions_reporting_html.php:2619 -#: ../../include/functions_reporting_html.php:2692 -#: ../../enterprise/operation/agentes/tag_view.php:684 -#: ../../enterprise/operation/agentes/policy_view.php:398 -#: ../../enterprise/include/functions_reporting_csv.php:802 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:915 -#: ../../enterprise/include/functions_reporting_csv.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/functions_reporting_csv.php:1458 -#: ../../enterprise/include/functions_reporting_csv.php:2281 -#: ../../enterprise/include/functions_reporting_csv.php:2317 -#: ../../enterprise/include/functions_reporting_csv.php:2423 -#: ../../enterprise/include/functions_reporting_csv.php:2518 -#: ../../enterprise/include/functions_reporting_csv.php:2740 -#: ../../enterprise/include/functions_services.php:1612 -#: ../../enterprise/include/functions_reporting.php:2184 -#: ../../enterprise/include/functions_reporting.php:2217 -#: ../../enterprise/include/functions_reporting.php:2221 -#: ../../enterprise/include/functions_reporting_pdf.php:702 -#: ../../enterprise/meta/include/functions_events_meta.php:134 -#: ../../enterprise/meta/advanced/collections.editor.php:54 -#: ../../enterprise/meta/advanced/collections.data.php:46 -#: ../../enterprise/meta/advanced/collections.data.php:86 -#: ../../enterprise/meta/advanced/collections.data.php:104 -#: ../../enterprise/meta/advanced/collections.data.php:124 -#: ../../enterprise/meta/advanced/collections.data.php:149 -#: ../../enterprise/meta/advanced/collections.data.php:172 -#: ../../enterprise/meta/advanced/collections.data.php:197 -#: ../../enterprise/meta/advanced/collections.data.php:238 -#: ../../enterprise/meta/advanced/collections.data.php:263 -#: ../../enterprise/godmode/agentes/collections.editor.php:56 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 -#: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:74 -#: ../../enterprise/godmode/agentes/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:184 -#: ../../enterprise/godmode/agentes/collections.data.php:204 -#: ../../enterprise/godmode/agentes/collections.data.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:251 -#: ../../enterprise/godmode/agentes/collections.data.php:279 -#: ../../enterprise/godmode/agentes/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:332 -#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 -#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 -#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 -#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 -#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 -#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 -#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 -#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 -#: ../../mobile/operation/modules.php:853 ../../godmode/events/custom_events.php:115 -#: ../../godmode/agentes/status_monitor_custom_fields.php:113 -#: ../../godmode/agentes/status_monitor_custom_fields.php:152 -msgid "Data" -msgstr "データ" - -#: ../../operation/search_modules.php:108 ../../operation/events/events.php:2164 -#: ../../operation/agentes/status_monitor.php:1573 ../../include/functions_events.php:62 -#: ../../include/functions_modules.php:2840 ../../include/functions_modules.php:4076 -#: ../../enterprise/operation/agentes/tag_view.php:935 -#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 -msgid "NOT INIT" -msgstr "未初期化" - -#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 -#: ../../operation/events/events.php:2060 ../../operation/events/events.php:2127 -#: ../../operation/events/events.php:2154 -#: ../../operation/agentes/status_monitor.php:1580 -#: ../../operation/agentes/status_monitor.php:1586 -#: ../../operation/agentes/status_monitor.php:1663 -#: ../../operation/agentes/status_monitor.php:1669 -#: ../../operation/agentes/pandora_networkmap.view.php:1772 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:570 -#: ../../include/functions_events.php:56 ../../include/functions_events.php:108 -#: ../../include/functions_events.php:171 ../../include/functions_modules.php:2849 -#: ../../include/functions_modules.php:2855 ../../include/functions_modules.php:4060 -#: ../../include/functions_modules.php:4092 ../../include/functions_ui.php:3763 -#: ../../include/functions_ui.php:3829 ../../include/functions.php:1360 -#: ../../include/functions.php:1399 ../../enterprise/operation/agentes/tag_view.php:942 -#: ../../enterprise/operation/agentes/tag_view.php:948 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/policy_view.php:479 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/include/functions_services.php:1968 -#: ../../enterprise/extensions/vmware/vmware_view.php:1009 -#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 -#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -msgid "NORMAL" -msgstr "正常" - -#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 -#: ../../operation/events/events.php:2035 ../../operation/events/events.php:2133 -#: ../../operation/events/events.php:2159 -#: ../../operation/agentes/status_monitor.php:1594 -#: ../../operation/agentes/status_monitor.php:1602 -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/status_monitor.php:1685 -#: ../../operation/agentes/pandora_networkmap.view.php:1766 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:554 -#: ../../include/functions_events.php:59 ../../include/functions_events.php:112 -#: ../../include/functions_events.php:156 ../../include/functions_modules.php:2843 -#: ../../include/functions_modules.php:2859 ../../include/functions_modules.php:4064 -#: ../../include/functions_modules.php:4084 ../../include/functions_ui.php:3769 -#: ../../include/functions_ui.php:3839 ../../include/functions.php:1348 -#: ../../include/functions.php:1380 ../../enterprise/operation/agentes/tag_view.php:956 -#: ../../enterprise/operation/agentes/tag_view.php:962 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/policy_view.php:473 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/include/functions_services.php:1976 -#: ../../enterprise/extensions/vmware/vmware_view.php:1014 -#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -msgid "CRITICAL" -msgstr "障害" - -#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:2065 ../../operation/events/events.php:2121 -#: ../../operation/events/events.php:2176 -#: ../../operation/agentes/status_monitor.php:1610 -#: ../../operation/agentes/status_monitor.php:1618 -#: ../../operation/agentes/status_monitor.php:1695 -#: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1769 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/class/Tree.class.php:633 ../../include/class/NetworkMap.class.php:2805 -#: ../../include/lib/Module.php:558 ../../include/functions_events.php:70 -#: ../../include/functions_events.php:104 ../../include/functions_events.php:174 -#: ../../include/functions_modules.php:2846 ../../include/functions_modules.php:2863 -#: ../../include/functions_modules.php:4068 ../../include/functions_modules.php:4100 -#: ../../include/functions_ui.php:3757 ../../include/functions_ui.php:3834 -#: ../../include/functions.php:1351 ../../include/functions.php:1387 -#: ../../enterprise/operation/agentes/tag_view.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:976 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:476 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/include/functions_services.php:1984 -#: ../../enterprise/include/functions_login.php:34 -#: ../../enterprise/extensions/vmware/vmware_view.php:1019 -#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 -#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -msgid "WARNING" -msgstr "警告" - -#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 -#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:2032 ../../operation/events/events.php:2140 -#: ../../operation/events/events.php:2151 -#: ../../operation/agentes/status_monitor.php:1626 -#: ../../operation/agentes/status_monitor.php:1634 -#: ../../operation/agentes/status_monitor.php:1663 -#: ../../operation/agentes/status_monitor.php:1669 -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/status_monitor.php:1685 -#: ../../operation/agentes/status_monitor.php:1695 -#: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:561 -#: ../../include/functions_events.php:73 ../../include/functions_events.php:117 -#: ../../include/functions_events.php:177 ../../include/functions_modules.php:2855 -#: ../../include/functions_modules.php:2859 ../../include/functions_modules.php:2863 -#: ../../include/functions_modules.php:4072 ../../include/functions_ui.php:3776 -#: ../../include/functions_ui.php:3854 ../../include/functions.php:1364 -#: ../../include/functions.php:1390 ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/include/functions_services.php:1999 -#: ../../enterprise/extensions/vmware/vmware_view.php:1024 -#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -msgid "UNKNOWN" -msgstr "不明" - -#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 -#: ../../operation/search_modules.php:157 -#: ../../operation/agentes/status_monitor.php:1663 -#: ../../operation/agentes/status_monitor.php:1669 -#: ../../operation/agentes/status_monitor.php:1679 -#: ../../operation/agentes/status_monitor.php:1685 -#: ../../operation/agentes/status_monitor.php:1695 -#: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 -#: ../../include/functions_modules.php:2855 ../../include/functions_modules.php:2859 -#: ../../include/functions_modules.php:2863 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/transactional_map.php:210 -#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 -#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 -#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -msgid "Last status" -msgstr "最新の状態" - -#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 -#: ../../operation/gis_maps/ajax.php:444 -msgid "Position (Lat, Long, Alt)" -msgstr "位置 (緯度、経度、高度)" - -#: ../../operation/gis_maps/ajax.php:238 -msgid "Start contact" -msgstr "利用開始" - -#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 -#: ../../operation/gis_maps/ajax.php:466 ../../operation/search_users.php:46 -#: ../../operation/search_agents.php:58 -#: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:769 -#: ../../operation/agentes/estado_generalagente.php:343 -#: ../../operation/agentes/ver_agente.php:1019 ../../include/ajax/module.php:984 -#: ../../include/functions_events.php:4498 ../../include/functions_treeview.php:668 -#: ../../enterprise/operation/agentes/tag_view.php:609 -#: ../../enterprise/operation/agentes/policy_view.php:399 -#: ../../enterprise/operation/agentes/ver_agente.php:77 -#: ../../enterprise/meta/agentsearch.php:142 -#: ../../enterprise/godmode/reporting/aws_view.php:61 -#: ../../extensions/users_connected.php:146 ../../mobile/operation/agent.php:193 -#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 -#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../godmode/agentes/planned_downtime.editor.php:917 -#: ../../godmode/users/user_list.php:481 -msgid "Last contact" -msgstr "最近の接続" - -#: ../../operation/gis_maps/ajax.php:240 -msgid "Num reports" -msgstr "レポート数" - -#: ../../operation/gis_maps/ajax.php:242 ../../operation/agentes/gis_view.php:225 -msgid "Manual placement" -msgstr "手動位置設定" - -#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 -msgid "Default position of map." -msgstr "マップのデフォルト位置" - -#: ../../operation/gis_maps/ajax.php:290 ../../include/functions_events.php:4484 -#: ../../include/functions_treeview.php:640 -#: ../../include/functions_reporting_html.php:1492 -#: ../../include/functions_reporting_html.php:3826 -#: ../../include/functions_reporting_html.php:3920 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/meta/include/functions_wizard_meta.php:210 -#: ../../enterprise/meta/include/functions_wizard_meta.php:214 -#: ../../enterprise/meta/include/functions_wizard_meta.php:482 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1468 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1816 -#: ../../godmode/servers/modificar_server.php:62 -#: ../../godmode/agentes/agent_manager.php:298 -msgid "IP Address" -msgstr "IP アドレス" - -#: ../../operation/gis_maps/ajax.php:316 ../../include/functions_reporting_html.php:1512 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:2409 -#: ../../enterprise/include/functions_reporting_csv.php:2423 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266 -#: ../../extensions/api_checker.php:220 -#: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 -#: ../../godmode/events/event_responses.editor.php:156 -#: ../../godmode/events/event_responses.editor.php:164 -msgid "URL" -msgstr "URL" - -#: ../../operation/gis_maps/ajax.php:339 -msgid "Satellite Version" -msgstr "サテライトバージョン" - -#: ../../operation/gis_maps/ajax.php:341 -#: ../../operation/agentes/estado_generalagente.php:227 -#: ../../include/functions_treeview.php:731 ../../enterprise/views/cluster/view.php:309 -msgid "Agent Version" -msgstr "エージェントバージョン" - -#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 -#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 -#: ../../operation/agentes/estado_generalagente.php:348 -#: ../../include/functions_cron.php:869 ../../include/functions_treeview.php:660 -#: ../../include/functions_ui.php:549 ../../enterprise/tools/ipam/ipam_ajax.php:502 -#: ../../enterprise/tools/ipam/ipam_list.php:675 -#: ../../enterprise/include/functions_tasklist.php:572 -#: ../../enterprise/include/functions_ipam.php:2076 -#: ../../enterprise/include/functions_ipam.php:2077 -#: ../../enterprise/include/functions_ipam.php:2078 -#: ../../godmode/snmpconsole/snmp_alert.php:1295 ../../godmode/db/db_main.php:189 -msgid "Never" -msgstr "未実行" - -#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 -#: ../../operation/agentes/estado_agente.php:745 -#: ../../operation/agentes/estado_generalagente.php:343 -#: ../../include/functions_treeview.php:668 -#: ../../enterprise/operation/agentes/tag_view.php:601 -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Remote" -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:30 ../../operation/gis_maps/render_view.php:130 -#: ../../godmode/gis_maps/configure_gis_map.php:86 -msgid "GIS Maps list" -msgstr "GIS マップ一覧" - -#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:260 -msgid "GIS Maps" -msgstr "GIS マップ" - -#: ../../operation/gis_maps/gis_map.php:109 ../../include/functions_container.php:157 -#: ../../enterprise/meta/include/functions_autoprovision.php:644 -#: ../../enterprise/meta/advanced/servers.build_table.php:72 -#: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../godmode/servers/plugin.php:819 ../../godmode/servers/servers.build_table.php:91 -#: ../../godmode/reporting/graphs.php:323 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../godmode/reporting/reporting_builder.php:957 -#: ../../godmode/reporting/reporting_builder.php:1156 -#: ../../godmode/alerts/alert_list.list.php:485 -#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/users/user_list.php:487 -#: ../../godmode/users/profile_list.php:349 -msgid "Op." -msgstr "操作" - -#: ../../operation/gis_maps/gis_map.php:200 -msgid "No maps found" -msgstr "マップがありません。" - -#: ../../operation/gis_maps/gis_map.php:219 -msgid "Caution: Do you want delete the map?" -msgstr "警告: マップを削除しますか。" - -#: ../../operation/gis_maps/gis_map.php:226 -msgid "Do you want to set default the map?" -msgstr "このマップをデフォルトに設定しますか。" - -#: ../../operation/gis_maps/gis_map.php:234 -msgid "There was error on setup the default map." -msgstr "デフォルトマップの設定でエラーが発生しました。" - -#: ../../operation/gis_maps/render_view.php:145 -msgid "Show link to public GIS map" -msgstr "公開 GIS マップのリンク表示" - -#: ../../operation/gis_maps/render_view.php:149 ../../include/functions.php:3350 -msgid "5 seconds" -msgstr "5 秒" - -#: ../../operation/gis_maps/render_view.php:150 ../../include/functions.php:3351 -msgid "10 seconds" -msgstr "10 秒" - -#: ../../operation/gis_maps/render_view.php:151 ../../operation/heatmap.php:171 -#: ../../include/ajax/heatmap.ajax.php:50 ../../include/class/AgentsAlerts.class.php:816 -#: ../../include/functions.php:3353 -msgid "30 seconds" -msgstr "30 秒" - -#: ../../operation/gis_maps/render_view.php:152 ../../operation/heatmap.php:172 -#: ../../include/ajax/heatmap.ajax.php:51 ../../include/class/AgentsAlerts.class.php:817 -#: ../../include/functions.php:3354 -msgid "1 minute" -msgstr "1 分" - -#: ../../operation/gis_maps/render_view.php:153 -#: ../../include/class/AgentsAlerts.class.php:818 ../../include/functions.php:3355 -msgid "2 minutes" -msgstr "2 分" - -#: ../../operation/gis_maps/render_view.php:154 ../../operation/heatmap.php:174 -#: ../../include/ajax/module.php:198 ../../include/ajax/heatmap.ajax.php:53 -#: ../../include/class/AgentsAlerts.class.php:819 ../../include/functions.php:3356 -msgid "5 minutes" -msgstr "5 分" - -#: ../../operation/gis_maps/render_view.php:155 -#: ../../include/class/AgentsAlerts.class.php:820 -msgid "10 minutes" -msgstr "10 分" - -#: ../../operation/gis_maps/render_view.php:156 ../../include/ajax/module.php:200 -#: ../../include/ajax/graph.ajax.php:146 ../../include/functions.php:2691 -#: ../../include/functions.php:3359 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../godmode/setup/performance.php:529 -#: ../../godmode/reporting/create_container.php:346 -msgid "1 hour" -msgstr "1時間" - -#: ../../operation/gis_maps/render_view.php:157 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 -msgid "2 hours" -msgstr "2時間" - -#: ../../operation/gis_maps/render_view.php:163 -#: ../../operation/snmpconsole/snmp_browser.php:389 -#: ../../operation/snmpconsole/snmp_browser.php:404 -#: ../../operation/snmpconsole/snmp_browser.php:414 -#: ../../operation/snmpconsole/snmp_browser.php:533 -#: ../../operation/snmpconsole/snmp_view.php:630 -#: ../../operation/snmpconsole/snmp_view.php:1114 -#: ../../operation/snmpconsole/snmp_view.php:1125 ../../operation/events/events.php:1912 -#: ../../operation/events/events_list.php:530 -#: ../../operation/events/events_list.php:1283 -#: ../../operation/agentes/pandora_networkmap.editor.php:349 -#: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1155 -#: ../../operation/agentes/ver_agente.php:1211 -#: ../../operation/agentes/ver_agente.php:1226 ../../operation/users/user_edit.php:402 -#: ../../operation/users/user_edit.php:414 ../../operation/users/user_edit.php:455 -#: ../../operation/users/user_edit.php:491 ../../operation/users/user_edit.php:505 -#: ../../operation/users/user_edit.php:898 ../../operation/users/user_edit.php:905 -#: ../../operation/users/user_edit.php:914 ../../operation/users/user_edit.php:921 -#: ../../operation/incidents/list_integriaims_incidents.php:530 -#: ../../operation/incidents/list_integriaims_incidents.php:534 -#: ../../include/functions_cron.php:642 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:406 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:957 -#: ../../include/functions_visual_map_editor.php:1010 -#: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:509 -#: ../../include/class/NetworkMap.class.php:2789 -#: ../../include/class/NetworkMap.class.php:3024 -#: ../../include/class/NetworkMap.class.php:3047 -#: ../../include/class/NetworkMap.class.php:3119 -#: ../../include/class/NetworkMap.class.php:3129 -#: ../../include/class/NetworkMap.class.php:3214 -#: ../../include/class/NetworkMap.class.php:3230 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 -#: ../../include/lib/Dashboard/Widgets/reports.php:490 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 -#: ../../include/lib/Dashboard/Widgets/service_map.php:266 -#: ../../include/lib/Dashboard/Widgets/service_map.php:294 -#: ../../include/lib/Dashboard/Widgets/events_list.php:301 -#: ../../include/lib/Dashboard/Widgets/events_list.php:459 -#: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3619 ../../include/functions_events.php:3635 -#: ../../include/functions_profile.php:297 ../../include/functions_profile.php:315 -#: ../../include/functions_profile.php:330 ../../include/functions_integriaims.php:135 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2319 -#: ../../include/rest-api/models/VisualConsole/Item.php:2441 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 -#: ../../include/functions_html.php:376 ../../include/functions_html.php:816 -#: ../../include/functions_html.php:1229 ../../include/functions_html.php:1281 -#: ../../include/functions_html.php:1328 ../../include/functions_html.php:1329 -#: ../../include/functions_html.php:1382 ../../include/functions_html.php:1432 -#: ../../include/functions_html.php:4572 ../../include/functions_html.php:5861 -#: ../../include/functions_networkmap.php:1519 ../../include/functions.php:1073 -#: ../../enterprise/tools/ipam/ipam_network.php:594 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 -#: ../../enterprise/tools/ipam/ipam_list.php:112 -#: ../../enterprise/tools/ipam/ipam_list.php:135 -#: ../../enterprise/tools/ipam/ipam_list.php:157 -#: ../../enterprise/tools/ipam/ipam_editor.php:206 -#: ../../enterprise/tools/ipam/ipam_editor.php:234 -#: ../../enterprise/views/ipam/sites/edit.php:71 -#: ../../enterprise/operation/log/log_viewer.php:735 -#: ../../enterprise/operation/agentes/ver_agente.php:38 -#: ../../enterprise/include/ajax/ipam.ajax.php:400 -#: ../../enterprise/include/ajax/ipam.ajax.php:428 -#: ../../enterprise/include/class/SAP.app.php:615 -#: ../../enterprise/include/class/SAP.app.php:810 -#: ../../enterprise/include/class/SAP.app.php:811 -#: ../../enterprise/include/class/Omnishell.class.php:858 -#: ../../enterprise/include/class/Omnishell.class.php:859 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:894 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:921 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1031 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2001 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2467 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2512 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3479 -#: ../../enterprise/include/functions_tasklist.php:317 -#: ../../enterprise/meta/event/custom_events.php:227 -#: ../../enterprise/meta/event/custom_events.php:273 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:269 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:366 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:691 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:762 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 -#: ../../enterprise/meta/advanced/metasetup.relations.php:245 -#: ../../enterprise/meta/advanced/metasetup.setup.php:394 -#: ../../enterprise/meta/advanced/metasetup.setup.php:400 -#: ../../enterprise/meta/advanced/metasetup.setup.php:410 -#: ../../enterprise/meta/advanced/metasetup.setup.php:416 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/godmode/setup/setup.php:675 -#: ../../enterprise/godmode/setup/setup.php:692 -#: ../../enterprise/godmode/setup/setup.php:701 -#: ../../enterprise/godmode/setup/setup.php:718 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/godmode/modules/configure_local_component.php:543 -#: ../../enterprise/godmode/modules/configure_local_component.php:698 -#: ../../enterprise/godmode/modules/configure_local_component.php:704 -#: ../../enterprise/godmode/modules/configure_local_component.php:712 -#: ../../enterprise/godmode/modules/configure_local_component.php:718 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:581 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:589 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:599 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:674 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:707 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:727 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:737 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:758 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:778 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:803 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:826 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:847 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2977 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:518 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:535 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:551 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:567 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:591 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:607 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:649 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:682 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:710 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:386 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:906 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:922 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:943 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:952 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1308 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1336 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1382 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:857 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 -#: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:579 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:688 -#: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../mobile/operation/events.php:639 ../../godmode/setup/setup_visuals.php:400 -#: ../../godmode/setup/setup_visuals.php:419 ../../godmode/setup/setup_visuals.php:949 -#: ../../godmode/setup/os.builder.php:41 -#: ../../godmode/modules/manage_network_components_form.php:642 -#: ../../godmode/modules/manage_network_components_form.php:648 -#: ../../godmode/modules/manage_network_components_form.php:657 -#: ../../godmode/modules/manage_network_components_form.php:663 -#: ../../godmode/modules/manage_network_components_form_plugin.php:41 -#: ../../godmode/modules/manage_network_components_form_common.php:343 -#: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_nc_groups_form.php:77 -#: ../../godmode/reporting/create_container.php:489 -#: ../../godmode/reporting/visual_console_builder.elements.php:482 -#: ../../godmode/reporting/visual_console_builder.elements.php:633 -#: ../../godmode/reporting/visual_console_builder.elements.php:643 -#: ../../godmode/reporting/reporting_builder.item_editor.php:194 -#: ../../godmode/reporting/reporting_builder.item_editor.php:906 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2029 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2102 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2123 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2155 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3034 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3195 -#: ../../godmode/reporting/graph_builder.graph_editor.php:329 -#: ../../godmode/reporting/visual_console_builder.wizard.php:266 -#: ../../godmode/reporting/visual_console_builder.wizard.php:438 -#: ../../godmode/reporting/visual_console_builder.wizard.php:451 -#: ../../godmode/reporting/visual_console_builder.wizard.php:485 -#: ../../godmode/reporting/visual_console_builder.wizard.php:498 -#: ../../godmode/reporting/visual_console_builder.wizard.php:536 -#: ../../godmode/reporting/visual_console_builder.wizard.php:537 -#: ../../godmode/reporting/visual_console_builder.wizard.php:732 -#: ../../godmode/reporting/visual_console_builder.wizard.php:742 -#: ../../godmode/reporting/visual_console_builder.wizard.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:27 -#: ../../godmode/snmpconsole/snmp_alert.php:1081 -#: ../../godmode/events/event_edit_filter.php:694 -#: ../../godmode/events/custom_events.php:181 ../../godmode/events/custom_events.php:229 -#: ../../godmode/massive/massive_add_alerts.php:304 -#: ../../godmode/massive/massive_delete_modules.php:502 -#: ../../godmode/massive/massive_delete_modules.php:594 -#: ../../godmode/massive/massive_delete_modules.php:679 -#: ../../godmode/massive/massive_delete_modules.php:728 -#: ../../godmode/massive/massive_delete_modules.php:736 -#: ../../godmode/massive/massive_delete_modules.php:737 -#: ../../godmode/massive/massive_delete_modules.php:738 -#: ../../godmode/massive/massive_delete_modules.php:739 -#: ../../godmode/massive/massive_delete_modules.php:805 -#: ../../godmode/massive/massive_delete_modules.php:835 -#: ../../godmode/massive/massive_copy_modules.php:374 -#: ../../godmode/massive/massive_copy_modules.php:508 -#: ../../godmode/massive/massive_add_action_alerts.php:341 -#: ../../godmode/massive/massive_edit_agents.php:740 -#: ../../godmode/massive/massive_delete_alerts.php:359 -#: ../../godmode/massive/massive_edit_plugins.php:338 -#: ../../godmode/massive/massive_edit_modules.php:458 -#: ../../godmode/massive/massive_edit_modules.php:919 -#: ../../godmode/massive/massive_edit_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1169 -#: ../../godmode/massive/massive_edit_modules.php:1204 -#: ../../godmode/massive/massive_edit_modules.php:1259 -#: ../../godmode/massive/massive_edit_modules.php:1345 -#: ../../godmode/massive/massive_edit_modules.php:1418 -#: ../../godmode/massive/massive_edit_modules.php:1527 -#: ../../godmode/massive/massive_edit_modules.php:1528 -#: ../../godmode/massive/massive_edit_modules.php:1529 -#: ../../godmode/massive/massive_edit_modules.php:1530 -#: ../../godmode/massive/massive_edit_modules.php:1769 -#: ../../godmode/massive/massive_edit_modules.php:1829 -#: ../../godmode/wizards/HostDevices.class.php:1098 -#: ../../godmode/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:733 -#: ../../godmode/agentes/module_manager_editor_common.php:1149 -#: ../../godmode/agentes/module_manager_editor_common.php:1405 -#: ../../godmode/agentes/module_manager_editor_common.php:1412 -#: ../../godmode/agentes/module_manager_editor_common.php:1423 -#: ../../godmode/agentes/module_manager_editor_common.php:1431 -#: ../../godmode/agentes/status_monitor_custom_fields.php:218 -#: ../../godmode/agentes/status_monitor_custom_fields.php:266 -#: ../../godmode/agentes/agent_manager.php:425 -#: ../../godmode/agentes/agent_manager.php:679 -#: ../../godmode/agentes/agent_manager.php:845 -#: ../../godmode/agentes/module_manager_editor_network.php:465 -#: ../../godmode/alerts/configure_alert_template.php:650 -#: ../../godmode/alerts/configure_alert_template.php:777 -#: ../../godmode/alerts/configure_alert_template.php:798 -#: ../../godmode/alerts/alert_list.list.php:748 -#: ../../godmode/alerts/alert_actions.php:291 -#: ../../godmode/alerts/alert_commands.php:302 -#: ../../godmode/alerts/alert_commands.php:316 -#: ../../godmode/alerts/alert_commands.php:376 -#: ../../godmode/alerts/alert_commands.php:389 -#: ../../godmode/alerts/configure_alert_action.php:264 -#: ../../godmode/users/configure_user.php:1073 -#: ../../godmode/users/configure_user.php:1087 -#: ../../godmode/users/configure_user.php:1281 -#: ../../godmode/users/configure_user.php:1293 -#: ../../godmode/groups/configure_group.php:188 -#: ../../godmode/groups/configure_group.php:210 -msgid "None" -msgstr "なし" - -#: ../../operation/gis_maps/render_view.php:167 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 -#: ../../operation/snmpconsole/snmp_view.php:636 -#: ../../operation/snmpconsole/snmp_view.php:1120 -#: ../../operation/snmpconsole/snmp_view.php:1149 -#: ../../operation/users/user_edit.php:362 ../../include/functions_graph.php:3060 -#: ../../include/functions_graph.php:3105 ../../include/functions_graph.php:3146 -#: ../../include/functions_graph.php:3188 ../../include/functions_graph.php:3265 -#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:3582 -#: ../../include/functions_graph.php:3647 ../../include/functions_graph.php:3814 -#: ../../include/functions_graph.php:3826 ../../include/functions_graph.php:3827 -#: ../../include/functions_graph.php:3830 ../../include/functions_graph.php:3835 -#: ../../include/functions_graph.php:3836 ../../include/functions_graph.php:3839 -#: ../../include/functions_graph.php:4837 ../../include/functions_reporting.php:4847 -#: ../../include/functions_reporting.php:4859 ../../include/functions_reporting.php:4860 -#: ../../include/functions_reporting.php:4863 ../../include/functions_reporting.php:4868 -#: ../../include/functions_reporting.php:4869 ../../include/functions_reporting.php:4872 -#: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1597 -#: ../../enterprise/godmode/setup/setup_acl.php:475 -#: ../../enterprise/godmode/setup/setup_acl.php:479 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 -#: ../../extensions/api_checker.php:176 ../../godmode/snmpconsole/snmp_alert.php:33 -#: ../../godmode/users/configure_user.php:1116 -#: ../../godmode/groups/configure_group.php:250 -msgid "Other" -msgstr "その他" - -#: ../../operation/gis_maps/render_view.php:170 -msgid "Filter by status" -msgstr "状態によるフィルタ" - -#: ../../operation/gis_maps/render_view.php:173 -#: ../../operation/agentes/estado_agente.php:201 -#: ../../enterprise/include/functions_policies.php:3712 -#: ../../enterprise/meta/general/main_menu.php:577 -#: ../../enterprise/meta/general/main_menu.php:607 -#: ../../enterprise/meta/general/logon_ok.php:99 -#: ../../enterprise/godmode/servers/HA_cluster.php:70 -#: ../../enterprise/godmode/policies/configure_policy.php:38 ../../godmode/menu.php:309 -#: ../../godmode/menu.php:316 ../../godmode/agentes/configurar_agente.php:390 -#: ../../godmode/agentes/configurar_agente.php:695 -#: ../../godmode/module_library/module_library_view.php:48 -msgid "Setup" -msgstr "セットアップ" - -#: ../../operation/gis_maps/render_view.php:178 -#: ../../include/lib/Dashboard/Widgets/network_map.php:323 -#: ../../enterprise/extensions/vmware/vmware_view.php:1306 -#: ../../enterprise/extensions/vmware/vmware_view.php:1348 -msgid "Map" -msgstr "マップ" - -#: ../../operation/search_users.php:43 ../../operation/snmpconsole/snmp_view.php:876 -#: ../../operation/users/user_edit.php:258 -#: ../../include/functions_reporting_html.php:4969 -#: ../../include/functions_reporting_html.php:6167 -#: ../../include/functions_reporting_html.php:6190 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../godmode/users/user_list.php:479 ../../godmode/users/configure_user.php:852 -#: ../../godmode/users/configure_user.php:868 -msgid "User ID" -msgstr "ユーザ ID" - -#: ../../operation/search_users.php:45 ../../include/functions_cron.php:575 -#: ../../include/functions_cron.php:666 -#: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../enterprise/include/functions_tasklist.php:254 -#: ../../enterprise/include/functions_tasklist.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:99 ../../godmode/tag/edit_tag.php:239 -#: ../../godmode/tag/tag.php:281 -msgid "Email" -msgstr "Email" - -#: ../../operation/search_users.php:47 -msgid "Profile" -msgstr "プロファイル" - -#: ../../operation/search_users.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:150 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:276 -#: ../../enterprise/godmode/servers/HA_cluster.php:177 -#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 -msgid "Admin" -msgstr "管理者" - -#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:665 -#: ../../godmode/users/configure_user.php:984 -msgid "Administrator" -msgstr "管理者" - -#: ../../operation/search_users.php:72 ../../godmode/users/configure_user.php:999 -msgid "Standard User" -msgstr "標準ユーザ" - -#: ../../operation/search_users.php:87 ../../include/functions_reporting.php:4421 -#: ../../include/functions_reporting.php:4468 ../../godmode/users/user_list.php:723 -msgid "The user doesn't have any assigned profile/group" -msgstr "このユーザには、プロファイル/グループの組み合わせが何も割り当てられていません。" - -#: ../../operation/reporting/graph_viewer.php:59 -#: ../../operation/reporting/graph_viewer.php:67 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 -#: ../../enterprise/meta/advanced/metasetup.relations.php:87 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:156 -#: ../../enterprise/godmode/reporting/graph_template_list.php:183 -#: ../../godmode/modules/manage_nc_groups.php:153 -#: ../../godmode/reporting/map_builder.php:210 ../../godmode/reporting/graphs.php:152 -#: ../../godmode/reporting/graphs.php:163 ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:70 ../../godmode/events/event_filter.php:97 -#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 -#: ../../godmode/netflow/nf_item_list.php:121 ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/agentes/planned_downtime.list.php:243 -msgid "Not deleted. Error deleting data" -msgstr "データの削除に失敗しました。" - -#: ../../operation/reporting/graph_viewer.php:182 -#: ../../operation/reporting/graph_viewer.php:214 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 -#: ../../enterprise/godmode/reporting/graph_template_list.php:54 -#: ../../enterprise/godmode/reporting/graph_template_list.php:73 -#: ../../enterprise/godmode/reporting/graph_template_list.php:87 -#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81 -#: ../../godmode/reporting/graph_container.php:77 -#: ../../godmode/reporting/graph_builder.php:287 -msgid "Graph list" -msgstr "グラフ一覧" - -#: ../../operation/reporting/graph_viewer.php:204 -#: ../../godmode/reporting/graph_builder.php:309 -msgid "Graph editor" -msgstr "グラフ編集" - -#: ../../operation/reporting/graph_viewer.php:223 -#: ../../godmode/reporting/graph_builder.php:320 -msgid "View graph" -msgstr "グラフ表示" - -#: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 -#: ../../operation/reporting/custom_reporting.php:23 -#: ../../operation/reporting/reporting_viewer.php:211 -#: ../../operation/reporting/reporting_viewer.php:216 -#: ../../operation/reporting/reporting_viewer.php:229 ../../operation/menu.php:311 -#: ../../enterprise/operation/agentes/transactional_map.php:70 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 -#: ../../enterprise/operation/agentes/manage_transmap.php:172 -#: ../../enterprise/meta/general/logon_ok.php:66 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 -#: ../../enterprise/godmode/reporting/mysql_builder.php:75 -#: ../../enterprise/godmode/reporting/mysql_builder.php:202 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:103 -#: ../../enterprise/godmode/reporting/graph_template_list.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 -#: ../../godmode/reporting/graphs.php:129 -#: ../../godmode/reporting/graph_container.php:118 -#: ../../godmode/reporting/graph_builder.php:366 -#: ../../godmode/reporting/reporting_builder.php:572 -#: ../../godmode/reporting/reporting_builder.php:579 -#: ../../godmode/reporting/reporting_builder.php:592 -#: ../../godmode/reporting/reporting_builder.php:3471 -#: ../../godmode/reporting/reporting_builder.php:3478 -#: ../../godmode/reporting/reporting_builder.php:3491 -#: ../../godmode/reporting/reporting_builder.php:3582 -#: ../../godmode/reporting/reporting_builder.php:3589 -#: ../../godmode/reporting/reporting_builder.php:3605 -#: ../../godmode/reporting/reporting_builder.php:3634 -msgid "Reporting" -msgstr "レポート" - -#: ../../operation/reporting/graph_viewer.php:271 ../../operation/menu.php:327 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:107 -#: ../../enterprise/godmode/reporting/graph_template_list.php:132 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 -#: ../../godmode/reporting/graphs.php:133 -#: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graph_builder.php:370 -msgid "Custom graphs" -msgstr "カスタムグラフ" - -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "データがありません。" - -#: ../../operation/reporting/graph_viewer.php:360 ../../operation/agentes/graphs.php:218 -#: ../../operation/agentes/stat_win.php:338 ../../operation/agentes/stat_win.php:441 -#: ../../operation/agentes/interface_traffic_graph_win.php:213 -msgid "Time range" -msgstr "時間範囲" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 -msgid "Graph defined" -msgstr "定義済みグラフ" - -#: ../../operation/reporting/graph_viewer.php:370 ../../operation/agentes/graphs.php:236 -#: ../../operation/agentes/graphs.php:243 ../../operation/agentes/graphs.php:409 -#: ../../operation/agentes/graphs.php:428 -#: ../../include/functions_visual_map_editor.php:558 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 -#: ../../enterprise/meta/advanced/metasetup.visual.php:348 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 -#: ../../godmode/setup/setup_visuals.php:902 ../../godmode/setup/setup_visuals.php:919 -#: ../../godmode/reporting/create_container.php:358 -#: ../../godmode/reporting/graph_builder.main.php:214 -msgid "Area" -msgstr "塗り潰し" - -#: ../../operation/reporting/graph_viewer.php:371 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 -#: ../../godmode/reporting/graph_builder.main.php:215 -msgid "Stacked area" -msgstr "塗り潰しの積み上げ" - -#: ../../operation/reporting/graph_viewer.php:373 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../godmode/reporting/graph_builder.main.php:217 -msgid "Stacked line" -msgstr "線の積み上げ" - -#: ../../operation/reporting/graph_viewer.php:374 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 -#: ../../godmode/reporting/graph_builder.main.php:218 -msgid "Bullet chart" -msgstr "ブレットグラフ" - -#: ../../operation/reporting/graph_viewer.php:375 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 -#: ../../godmode/reporting/graph_builder.main.php:219 -msgid "Gauge" -msgstr "ゲージ" - -#: ../../operation/reporting/graph_viewer.php:376 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 -msgid "Horizontal Bars" -msgstr "水平バー" - -#: ../../operation/reporting/graph_viewer.php:377 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 -msgid "Vertical Bars" -msgstr "垂直バー" - -#: ../../operation/reporting/graph_viewer.php:378 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 -#: ../../godmode/reporting/graph_builder.main.php:222 -msgid "Pie" -msgstr "円" - -#: ../../operation/reporting/graph_viewer.php:383 -msgid "Equalize maxiddmum thresholds" -msgstr "最大閾値を等しくする" - -#: ../../operation/reporting/graph_viewer.php:383 -msgid "" -"If an option is selected, all graphs will have the highest value from all modules " -"included in the graph as a maximum threshold" -msgstr "" -"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値が含まれ" -"ます。" - -#: ../../operation/reporting/graph_viewer.php:392 -msgid "Zoom x1" -msgstr "ズーム x1" - -#: ../../operation/reporting/graph_viewer.php:393 -msgid "Zoom x2" -msgstr "ズーム x2" - -#: ../../operation/reporting/graph_viewer.php:394 -msgid "Zoom x3" -msgstr "ズーム x3" - -#: ../../operation/reporting/graph_viewer.php:505 -#: ../../operation/reporting/reporting_viewer.php:426 -msgid "Invalid date selected" -msgstr "不正なデータが選択されました。" - -#: ../../operation/reporting/graph_viewer.php:513 -msgid "Custom graph viewer" -msgstr "カスタムグラフ参照" - -#: ../../operation/reporting/graph_viewer.php:524 ../../operation/search_graphs.php:30 -#: ../../include/functions_container.php:146 ../../godmode/reporting/graphs.php:310 -msgid "Graph name" -msgstr "グラフ名" - -#: ../../operation/reporting/graph_viewer.php:539 -#: ../../operation/reporting/custom_reporting.php:28 -msgid "There are no defined reportings" -msgstr "定義されたレポートがありません" - -#: ../../operation/reporting/custom_reporting.php:23 ../../operation/menu.php:318 -#: ../../godmode/reporting/reporting_builder.php:551 -#: ../../godmode/reporting/reporting_builder.php:3450 -msgid "Custom reporting" -msgstr "カスタムレポート" - -#: ../../operation/reporting/reporting_viewer.php:101 -#: ../../godmode/reporting/reporting_builder.php:210 -msgid "Your report has been planned, and the system will email you a " -msgstr "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: " - -#: ../../operation/reporting/reporting_viewer.php:102 -#: ../../godmode/reporting/reporting_builder.php:211 -msgid "An error has ocurred" -msgstr "エラーが発生しました" - -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../godmode/netflow/nf_item_list.php:27 -msgid "Report list" -msgstr "レポート一覧" - -#: ../../operation/reporting/reporting_viewer.php:148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 -#: ../../godmode/reporting/reporting_builder.php:3533 -msgid "List items" -msgstr "アイテム一覧" - -#: ../../operation/reporting/reporting_viewer.php:157 -#: ../../enterprise/include/functions_reporting.php:8026 -#: ../../enterprise/include/functions_reporting.php:8092 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 -#: ../../godmode/reporting/reporting_builder.php:3537 -msgid "Item editor" -msgstr "アイテム編集" - -#: ../../operation/reporting/reporting_viewer.php:173 -#: ../../godmode/reporting/reporting_builder.php:3554 -msgid "View report" -msgstr "レポート参照" - -#: ../../operation/reporting/reporting_viewer.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 -#: ../../godmode/reporting/reporting_builder.php:596 -#: ../../godmode/reporting/reporting_builder.php:3495 -#: ../../godmode/reporting/reporting_builder.php:3609 -#: ../../godmode/reporting/reporting_builder.php:3638 -msgid "Custom reports" -msgstr "カスタムレポート" - -#: ../../operation/reporting/reporting_viewer.php:249 -msgid "View Report" -msgstr "レポート表示" - -#: ../../operation/reporting/reporting_viewer.php:291 -msgid "Set initial date" -msgstr "開始日時を指定する" - -#: ../../operation/reporting/reporting_viewer.php:304 -#: ../../operation/agentes/gis_view.php:220 ../../include/rest-api/index.php:359 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 -#: ../../include/functions_reporting_html.php:147 -#: ../../include/functions_reporting_html.php:2896 -#: ../../include/functions_reporting_html.php:3701 -#: ../../enterprise/include/functions_reporting_csv.php:715 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3335 -#: ../../enterprise/include/functions_reporting_pdf.php:1794 -#: ../../enterprise/include/functions_reporting_pdf.php:1867 -#: ../../enterprise/include/functions_reporting_pdf.php:1982 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../godmode/agentes/planned_downtime.list.php:293 -#: ../../godmode/alerts/alert_list.list.php:644 -#: ../../godmode/alerts/alert_list.list.php:647 -#: ../../godmode/alerts/alert_templates.php:96 -msgid "From" -msgstr "開始" - -#: ../../operation/reporting/reporting_viewer.php:307 -#: ../../include/functions_reporting_html.php:150 -#: ../../enterprise/include/functions_reporting_pdf.php:1808 -msgid "Items period before" -msgstr "次の日時以前" - -#: ../../operation/reporting/reporting_viewer.php:308 -#: ../../include/ajax/alert_list.ajax.php:514 -#: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14048 -#: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:2901 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1016 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2492 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3337 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3466 -#: ../../enterprise/include/functions_reporting_pdf.php:1800 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:467 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:602 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../godmode/massive/massive_add_action_alerts.php:254 -#: ../../godmode/alerts/alert_list.list.php:644 -#: ../../godmode/alerts/alert_list.list.php:764 -#: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../godmode/alerts/alert_templates.php:98 -msgid "to" -msgstr "終了" - -#: ../../operation/reporting/reporting_viewer.php:321 -msgid "Invalid date selected. Initial date must be before end date." -msgstr "不正な日時です。開始日時は終了日時より前でなければいけません。" - -#: ../../operation/menu.php:37 ../../operation/heatmap.php:137 -#: ../../operation/agentes/status_monitor.php:108 -#: ../../operation/agentes/alerts_status.php:204 -#: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/interface_view.php:76 ../../operation/agentes/tactical.php:82 -#: ../../operation/agentes/estado_agente.php:228 -#: ../../include/class/AgentsAlerts.class.php:754 -#: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/realtime_graphs.php:71 ../../extensions/module_groups.php:264 -#: ../../extensions/agents_modules.php:478 -msgid "Views" -msgstr "表示" - -#: ../../operation/menu.php:45 ../../operation/agentes/tactical.php:69 -#: ../../operation/users/user_edit.php:360 -#: ../../include/lib/Dashboard/Widgets/tactical.php:176 -#: ../../include/lib/Dashboard/Widgets/tactical.php:482 -#: ../../enterprise/meta/general/main_menu.php:194 -#: ../../enterprise/meta/general/main_header.php:103 -#: ../../enterprise/meta/monitoring/tactical.php:63 ../../mobile/operation/home.php:45 -#: ../../mobile/operation/tactical.php:97 ../../godmode/users/configure_user.php:1113 -msgid "Tactical view" -msgstr "モニタリング概要" - -#: ../../operation/menu.php:48 ../../operation/agentes/group_view.php:89 -#: ../../operation/users/user_edit.php:359 -#: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/users/configure_user.php:1112 ../../godmode/groups/group_list.php:321 -msgid "Group view" -msgstr "グループ" - -#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:215 -#: ../../godmode/agentes/agent_manager.php:226 -msgid "Agent detail" -msgstr "エージェント詳細" - -#: ../../operation/menu.php:58 ../../operation/agentes/status_monitor.php:95 -msgid "Monitor detail" -msgstr "モニタ項目詳細" - -#: ../../operation/menu.php:61 ../../operation/agentes/interface_view.php:63 -msgid "Interface view" -msgstr "インタフェース表示" - -#: ../../operation/menu.php:66 ../../operation/agentes/alerts_status.php:191 -#: ../../operation/users/user_edit.php:361 ../../godmode/users/configure_user.php:1114 -msgid "Alert detail" -msgstr "アラート詳細" - -#: ../../operation/menu.php:69 ../../operation/heatmap.php:92 -msgid "Heatmap view" -msgstr "ヒートマップ表示" - -#: ../../operation/menu.php:78 ../../include/functions_ui.php:870 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 -#: ../../enterprise/tools/ipam/ipam_calculator.php:185 -#: ../../enterprise/tools/ipam/ipam_list.php:570 -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -#: ../../enterprise/include/ajax/ipam.ajax.php:614 -#: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1980 -#: ../../godmode/wizards/HostDevices.class.php:916 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:597 -msgid "Network" -msgstr "ネットワーク" - -#: ../../operation/menu.php:92 ../../operation/netflow/netflow_explorer.php:37 -msgid "Netflow explorer" -msgstr "Netflow エクスプローラ" - -#: ../../operation/menu.php:96 -msgid "Netflow Live View" -msgstr "Netflow ライブビュー" - -#: ../../operation/menu.php:106 ../../operation/network/network_usage_map.php:29 -msgid "Network usage map" -msgstr "ネットワーク利用マップ" - -#: ../../operation/menu.php:125 ../../include/functions_menu.php:531 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461 -msgid "SNMP console" -msgstr "SNMPコンソール" - -#: ../../operation/menu.php:126 -msgid "SNMP browser" -msgstr "SNMP ブラウザ" - -#: ../../operation/menu.php:131 ../../operation/snmpconsole/snmp_mib_uploader.php:47 -msgid "MIB uploader" -msgstr "MIB アップローダ" - -#: ../../operation/menu.php:135 -msgid "SNMP filters" -msgstr "SNMP フィルタ" - -#: ../../operation/menu.php:136 ../../include/functions_menu.php:530 -msgid "SNMP trap generator" -msgstr "SNMPトラップジェネレータ" - -#: ../../operation/menu.php:141 ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/snmpconsole/snmp_view.php:697 -#: ../../operation/snmpconsole/snmp_view.php:806 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/menu.php:165 ../../include/lib/Dashboard/Widgets/network_map.php:172 -#: ../../include/lib/Dashboard/Widgets/network_map.php:478 -msgid "Network map" -msgstr "ネットワークマップ" - -#: ../../operation/menu.php:239 ../../operation/menu.php:241 -#: ../../operation/snmpconsole/snmp_view.php:1061 -#: ../../operation/snmpconsole/snmp_view.php:1062 -#: ../../operation/events/events.build_table.php:843 -#: ../../operation/events/events.php:2022 ../../operation/events/events.php:2188 -#: ../../include/functions_events.php:7280 -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -msgid "Show more" -msgstr "詳細を表示する" - -#: ../../operation/menu.php:265 -msgid "List of Gis maps" -msgstr "GISマップ一覧" - -#: ../../operation/menu.php:339 ../../operation/users/user_edit.php:363 -#: ../../include/class/OrderInterpreter.class.php:219 -#: ../../enterprise/extensions/vmware/vmware_view.php:1316 -#: ../../enterprise/extensions/vmware/vmware_view.php:1353 -#: ../../mobile/include/functions_web.php:22 ../../godmode/users/configure_user.php:1119 -msgid "Dashboard" -msgstr "ダッシュボード" - -#: ../../operation/menu.php:373 ../../operation/events/events.php:946 -#: ../../operation/events/events.php:959 ../../include/functions_reports.php:864 -#: ../../include/functions_reports.php:868 ../../include/functions_reports.php:872 -#: ../../include/functions.php:4086 ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:399 -#: ../../enterprise/include/class/CommandCenter.class.php:1071 -#: ../../enterprise/meta/general/main_menu.php:257 -#: ../../enterprise/meta/general/logon_ok.php:57 -#: ../../enterprise/meta/general/main_header.php:154 -#: ../../enterprise/meta/monitoring/tactical.php:272 ../../mobile/operation/home.php:51 -#: ../../mobile/operation/events.php:609 ../../mobile/include/functions_web.php:25 -#: ../../godmode/menu.php:269 -msgid "Events" -msgstr "イベント" - -#: ../../operation/menu.php:379 ../../enterprise/meta/event/custom_events.php:38 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 -msgid "View events" -msgstr "イベント参照" - -#: ../../operation/menu.php:416 -msgid "RSS" -msgstr "RSS" - -#: ../../operation/menu.php:425 ../../operation/events/sound_events.php:64 -msgid "Sound Events" -msgstr "サウンドイベント" - -#: ../../operation/menu.php:443 ../../operation/events/events.php:968 -msgid "Sound Alerts" -msgstr "サウンドアラート" - -#: ../../operation/menu.php:465 -msgid "Configure user notifications" -msgstr "ユーザ通知設定" - -#: ../../operation/menu.php:485 -msgid "Integria IMS statistics" -msgstr "Integria IMS 統計" - -#: ../../operation/menu.php:486 -msgid "Integria IMS ticket list" -msgstr "Integria IMS チケット一覧" - -#: ../../operation/menu.php:499 -msgid "Messages List" -msgstr "メッセージ一覧" - -#: ../../operation/menu.php:500 -msgid "New message" -msgstr "新規メッセージ" - -#: ../../operation/menu.php:515 ../../operation/agentes/exportdata.php:34 -msgid "Export data" -msgstr "データのエクスポート" - -#: ../../operation/menu.php:521 -msgid "Scheduled downtime" -msgstr "計画停止" - -#: ../../operation/menu.php:595 -msgid "Tools" -msgstr "ツール" - -#: ../../operation/search_maps.php:30 -#: ../../enterprise/godmode/services/services.elements.php:778 -msgid "Elements" -msgstr "エレメント" - -#: ../../operation/network/network_report.php:67 -#: ../../operation/network/network_usage_map.php:124 -msgid "Data to show" -msgstr "表示データ" - -#: ../../operation/network/network_report.php:78 -#: ../../operation/network/network_usage_map.php:104 -msgid "Number of result to show" -msgstr "表示する結果の数" - -#: ../../operation/network/network_report.php:102 -#: ../../operation/network/network_usage_map.php:75 -#: ../../operation/netflow/nf_live_view.php:263 -#: ../../enterprise/operation/log/log_viewer.php:552 -msgid "Start date" -msgstr "開始日時" - -#: ../../operation/network/network_report.php:109 -#: ../../operation/network/network_usage_map.php:82 -msgid "Time Period" -msgstr "期間" - -#: ../../operation/network/network_report.php:121 -#: ../../operation/network/network_usage_map.php:94 -#: ../../operation/netflow/nf_live_view.php:284 -msgid "Select this checkbox to write interval instead a date." -msgstr "日時の代わりに間隔を記載するにはこのチェックボックスを選択してください。" - -#: ../../operation/network/network_report.php:126 -#: ../../operation/network/network_usage_map.php:99 -#: ../../operation/netflow/nf_live_view.php:287 -#: ../../operation/agentes/exportdata.php:347 -#: ../../enterprise/operation/log/log_viewer.php:579 -msgid "End date" -msgstr "終了日時" - -#: ../../operation/network/network_report.php:140 -#: ../../operation/incidents/list_integriaims_incidents.php:428 -#: ../../include/class/ModuleTemplates.class.php:934 -#: ../../include/graphs/functions_flot.php:377 -#: ../../enterprise/operation/log/log_viewer.php:805 -#: ../../enterprise/operation/reporting/custom_reporting.php:80 -#: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 -#: ../../godmode/modules/manage_network_templates.php:288 -#: ../../godmode/agentes/planned_downtime.list.php:860 -msgid "Export to CSV" -msgstr "CSVにエクスポート" - -#: ../../operation/network/network_report.php:184 -#: ../../include/functions_visual_map_editor.php:1460 -#: ../../include/ajax/heatmap.ajax.php:319 ../../include/class/AuditLog.class.php:194 -#: ../../include/functions_reporting_html.php:3014 -#: ../../include/functions_reporting_html.php:3340 -#: ../../enterprise/include/functions_reporting_csv.php:1933 -#: ../../enterprise/include/class/Aws.cloud.php:546 -#: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/VMware.app.php:621 -#: ../../enterprise/include/class/Azure.cloud.php:803 -#: ../../enterprise/include/class/DeploymentCenter.class.php:755 -#: ../../enterprise/include/class/DeploymentCenter.class.php:805 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1280 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/include/functions_reporting.php:2315 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 -#: ../../enterprise/godmode/servers/HA_cluster.php:161 -#: ../../extensions/users_connected.php:144 ../../extensions/api_checker.php:123 -#: ../../godmode/reporting/visual_console_builder.elements.php:790 -#: ../../godmode/reporting/reporting_builder.item_editor.php:70 -msgid "IP" -msgstr "IP アドレス" - -#: ../../operation/network/network_report.php:186 -#: ../../operation/network/network_report.php:233 -msgid "Flows" -msgstr "フロー" - -#: ../../operation/network/network_report.php:197 -#: ../../operation/network/network_report.php:235 -msgid "Packets" -msgstr "パケット" - -#: ../../operation/network/network_report.php:206 -#: ../../operation/network/network_report.php:236 -#: ../../include/functions_config.php:1001 ../../include/functions_config.php:3098 -#: ../../include/functions_netflow.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Bytes" -msgstr "バイト" - -#: ../../operation/network/network_report.php:256 -#, php-format -msgid "Filtered by port %s. Click here to remove the filter." -msgstr "ポート %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" - -#: ../../operation/network/network_report.php:256 -#, php-format -msgid "Filtered by IP %s. Click here to remove the filter." -msgstr "IP %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" - -#: ../../operation/network/network_report.php:324 -#: ../../include/functions_netflow.php:2078 ../../include/functions_visual_map.php:2866 -#: ../../godmode/setup/performance.php:701 -msgid "Others" -msgstr "その他" - -#: ../../operation/network/network_usage_map.php:139 -msgid "Show netflow map" -msgstr "Netflow マップ表示" - -#: ../../operation/network/network_usage_map.php:175 -msgid "No data retrieved" -msgstr "取得データがありません" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:60 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 -#: ../../godmode/snmpconsole/snmp_filters.php:59 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "SMNP" -msgstr "SNMP" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:86 -msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend on other " -"MIB. To customize trap definitions use the SNMP trap editor." -msgstr "" -"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性があるこ" -"とに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエディタを" -"使ってください。" - -#: ../../operation/snmpconsole/snmp_browser.php:56 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:118 -#: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2266 -msgid "Normal screen" -msgstr "通常画面" - -#: ../../operation/snmpconsole/snmp_browser.php:77 -msgid "SNMP Browser" -msgstr "SNMP ブラウザ" - -#: ../../operation/snmpconsole/snmp_browser.php:155 -#: ../../operation/snmpconsole/snmp_browser.php:175 -#: ../../godmode/modules/manage_network_templates_form.php:260 -msgid "Add modules" -msgstr "モジュール追加" - -#: ../../operation/snmpconsole/snmp_browser.php:218 -msgid "Adding modules in progress" -msgstr "モジュールを追加中" - -#: ../../operation/snmpconsole/snmp_browser.php:225 -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -#: ../../godmode/reporting/visual_console_builder.editor.php:171 -msgid "Action in progress" -msgstr "アクション実行中" - -#: ../../operation/snmpconsole/snmp_browser.php:541 -#: ../../include/functions_snmp_browser.php:1534 -msgid "Create new policy" -msgstr "新たなポリシーを作成" - -#: ../../operation/snmpconsole/snmp_browser.php:552 -msgid "Create policy" -msgstr "ポリシー作成" - -#: ../../operation/snmpconsole/snmp_browser.php:639 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:330 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 -msgid "Create module" -msgstr "モジュールの作成" - -#: ../../operation/snmpconsole/snmp_browser.php:644 -msgid "Are you sure you want add module?" -msgstr "モジュールを追加しますか?" - -#: ../../operation/snmpconsole/snmp_browser.php:645 -#: ../../operation/agentes/pandora_networkmap.editor.php:602 -#: ../../include/class/ModuleTemplates.class.php:1381 -#: ../../include/class/HelpFeedBack.class.php:369 -#: ../../include/class/AgentWizard.class.php:6008 -#: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/ConfigPEN.class.php:668 -#: ../../include/class/ConfigPEN.class.php:692 -#: ../../include/class/CredentialStore.class.php:1241 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:351 -#: ../../include/functions_db.php:1933 ../../include/functions_reporting_html.php:659 -#: ../../include/functions_reporting_html.php:854 -#: ../../include/functions_reporting_html.php:3252 -#: ../../include/functions_reporting_html.php:4551 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 -#: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:1539 -#: ../../enterprise/include/functions_reporting_csv.php:1585 -#: ../../enterprise/include/functions_reporting_csv.php:1903 -#: ../../enterprise/include/class/AgentRepository.class.php:898 -#: ../../enterprise/include/class/LogSource.class.php:844 -#: ../../enterprise/include/class/ManageBackups.class.php:292 -#: ../../enterprise/include/class/ManageBackups.class.php:445 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 -#: ../../enterprise/include/class/DatabaseHA.class.php:390 -#: ../../enterprise/include/class/DatabaseHA.class.php:625 -#: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/functions_services.php:2080 -#: ../../enterprise/include/functions_reporting.php:1882 -#: ../../enterprise/include/functions_reporting.php:2929 -#: ../../enterprise/include/functions_reporting.php:3185 -#: ../../enterprise/include/functions_reporting.php:3917 -#: ../../enterprise/include/functions_reporting.php:4186 -#: ../../enterprise/include/functions_reporting.php:4832 -#: ../../enterprise/include/functions_reporting.php:6155 -#: ../../enterprise/include/functions_reporting.php:6193 -#: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/godmode/services/services.service.php:967 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2557 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:428 -#: ../../extensions/module_groups.php:53 ../../godmode/setup/setup_general.php:778 -#: ../../godmode/setup/setup_general.php:796 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2553 -#: ../../godmode/massive/massive_operations.php:392 -msgid "OK" -msgstr "OK" - -#: ../../operation/snmpconsole/snmp_statistics.php:78 -#: ../../operation/snmpconsole/snmp_view.php:99 -#: ../../operation/incidents/incident_statistics.php:21 -#: ../../enterprise/include/functions_ipam.php:1557 -msgid "Statistics" -msgstr "統計" - -#: ../../operation/snmpconsole/snmp_statistics.php:85 -msgid "SNMP Statistics" -msgstr "SNMP 統計" - -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:720 -msgid "There are no SNMP traps in database" -msgstr "SNMP トラップデータがありません。" - -#: ../../operation/snmpconsole/snmp_statistics.php:169 -msgid "Traps received by source" -msgstr "ソースごとの受信トラップ" - -#: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 -#: ../../include/functions_reporting.php:1534 -#: ../../enterprise/include/functions_reporting_csv.php:932 -#, php-format -msgid "Top %d" -msgstr "トップ %d" - -#: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 -msgid "Number" -msgstr "数" - -#: ../../operation/snmpconsole/snmp_statistics.php:193 -#: ../../operation/snmpconsole/snmp_view.php:956 -#: ../../operation/agentes/estado_agente.php:968 -#: ../../operation/agentes/estado_agente.php:978 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 -#: ../../godmode/agentes/configurar_agente.php:841 -#: ../../godmode/agentes/modificar_agente.php:952 -msgid "Create agent" -msgstr "エージェント作成" - -#: ../../operation/snmpconsole/snmp_statistics.php:197 -#: ../../operation/snmpconsole/snmp_view.php:962 -msgid "View agent details" -msgstr "エージェント概要の参照" - -#: ../../operation/snmpconsole/snmp_statistics.php:237 -msgid "Traps received by Enterprise String" -msgstr "Enterprise文字列ごとの受信トラップ" - -#: ../../operation/snmpconsole/snmp_statistics.php:250 -msgid "Trap Enterprise String" -msgstr "Enterprise文字列トラップ" - -#: ../../operation/snmpconsole/snmp_view.php:174 -#: ../../include/class/CalendarManager.class.php:487 -#: ../../include/class/CalendarManager.class.php:840 -#: ../../include/functions_alerts.php:2744 -#: ../../include/functions_planned_downtimes.php:124 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 -#: ../../enterprise/tools/ipam/ipam_massive.php:47 -#: ../../enterprise/tools/ipam/ipam_action.php:255 -#: ../../enterprise/operation/agentes/transactional_map.php:166 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 -#: ../../enterprise/meta/advanced/links.php:70 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 -#: ../../enterprise/godmode/policies/policy_modules.php:1249 -#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:63 ../../godmode/modules/manage_nc_groups.php:118 -#: ../../godmode/snmpconsole/snmp_alert.php:419 -#: ../../godmode/snmpconsole/snmp_filters.php:110 -#: ../../godmode/events/event_edit_filter.php:215 -#: ../../godmode/netflow/nf_edit_form.php:139 -#: ../../godmode/massive/massive_edit_modules.php:184 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1170 -#: ../../godmode/agentes/planned_downtime.editor.php:418 -#: ../../godmode/alerts/configure_alert_template.php:554 -#: ../../godmode/alerts/alert_templates.php:156 ../../godmode/alerts/alert_list.php:94 -#: ../../godmode/alerts/alert_list.php:312 -#: ../../godmode/alerts/configure_alert_command.php:144 -#: ../../godmode/users/profile_list.php:252 -msgid "Successfully updated" -msgstr "更新しました。" - -#: ../../operation/snmpconsole/snmp_view.php:175 -#: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:508 -#: ../../include/functions_alerts.php:2745 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../enterprise/tools/ipam/ipam_action.php:253 -#: ../../enterprise/operation/agentes/transactional_map.php:160 -#: ../../enterprise/include/ajax/servers.ajax.php:331 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:330 -#: ../../enterprise/godmode/modules/local_components.php:393 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 -#: ../../enterprise/godmode/policies/policy_modules.php:1250 -#: ../../enterprise/godmode/policies/policies.php:212 ../../godmode/setup/gis.php:41 -#: ../../godmode/modules/manage_network_components.php:525 -#: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/planned_downtime.editor.php:408 -#: ../../godmode/alerts/configure_alert_template.php:555 -#: ../../godmode/alerts/alert_templates.php:157 ../../godmode/alerts/alert_list.php:95 -#: ../../godmode/alerts/alert_list.php:313 -#: ../../godmode/alerts/configure_alert_command.php:145 -msgid "Could not be updated" -msgstr "更新に失敗しました。" - -#: ../../operation/snmpconsole/snmp_view.php:228 -#: ../../operation/snmpconsole/snmp_view.php:1263 -#: ../../operation/agentes/alerts_status.functions.php:96 -#: ../../mobile/operation/alerts.php:67 ../../godmode/alerts/alert_list.list.php:138 -msgid "Not fired" -msgstr "未通知" - -#: ../../operation/snmpconsole/snmp_view.php:229 -#: ../../operation/snmpconsole/snmp_view.php:1254 -#: ../../operation/agentes/alerts_status.functions.php:95 -#: ../../include/functions_reporting_html.php:2310 -#: ../../include/functions_reporting_html.php:3135 -#: ../../include/functions_reporting_html.php:3136 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2904 -#: ../../mobile/operation/alerts.php:66 ../../godmode/alerts/alert_list.list.php:137 -msgid "Fired" -msgstr "通知済" - -#: ../../operation/snmpconsole/snmp_view.php:543 -#: ../../operation/snmpconsole/snmp_view.php:886 -#: ../../operation/snmpconsole/snmp_view.php:1246 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/agentes/estado_monitores.php:522 -#: ../../include/functions_events.php:200 ../../include/functions_events.php:263 -#: ../../include/functions_events.php:2693 ../../include/functions_events.php:6726 -#: ../../include/functions_snmp.php:324 ../../include/functions.php:4093 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4323 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 -#: ../../godmode/events/custom_events.php:105 -#: ../../godmode/agentes/configurar_agente.php:733 -#: ../../godmode/alerts/configure_alert_template.php:1552 -msgid "Alert" -msgstr "アラート" - -#: ../../operation/snmpconsole/snmp_view.php:555 -#: ../../operation/events/events_list.php:852 ../../operation/users/user_edit.php:308 -#: ../../include/functions_config.php:1019 -#: ../../enterprise/meta/include/functions_meta.php:1446 -#: ../../enterprise/meta/advanced/metasetup.visual.php:242 -#: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:393 -#: ../../godmode/users/configure_user.php:1183 -msgid "Block size for pagination" -msgstr "ページ毎の表示件数" - -#: ../../operation/snmpconsole/snmp_view.php:572 -#: ../../operation/events/events.build_table.php:263 -#: ../../operation/events/events.php:1157 ../../operation/events/events_list.php:953 -#: ../../include/lib/Dashboard/Widgets/events_list.php:393 -#: ../../include/functions_events.php:201 ../../include/functions_events.php:266 -#: ../../include/functions_events.php:2602 ../../include/functions_events.php:5050 -#: ../../include/functions_events.php:6732 ../../include/functions_snmp.php:335 -#: ../../include/functions_reporting_html.php:1050 -#: ../../include/functions_reporting_html.php:1058 -#: ../../include/functions_reporting_html.php:1269 -#: ../../include/functions_reporting_html.php:1277 -#: ../../include/functions_reporting_html.php:2355 -#: ../../enterprise/include/functions_events.php:137 -#: ../../enterprise/include/functions_reporting.php:2025 -#: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2816 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:603 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 -#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 -#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:691 -#: ../../mobile/operation/events.php:692 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2817 -#: ../../godmode/events/event_edit_filter.php:332 -#: ../../godmode/events/custom_events.php:106 ../../godmode/events/event_filter.php:140 -msgid "Severity" -msgstr "重要度" - -#: ../../operation/snmpconsole/snmp_view.php:587 -#: ../../operation/snmpconsole/snmp_view.php:931 -#: ../../operation/snmpconsole/snmp_view.php:1243 -#: ../../include/functions_events.php:6194 ../../include/functions_events.php:6201 -msgid "Not validated" -msgstr "未承諾" - -#: ../../operation/snmpconsole/snmp_view.php:588 -#: ../../operation/snmpconsole/snmp_view.php:941 -#: ../../operation/snmpconsole/snmp_view.php:1234 -#: ../../include/functions_events.php:2628 ../../include/functions_events.php:3386 -#: ../../include/functions_events.php:3675 ../../include/functions_events.php:3684 -#: ../../include/functions_events.php:3691 ../../include/functions_events.php:3698 -#: ../../include/functions_events.php:6192 ../../include/functions_events.php:6200 -#: ../../include/functions_graph.php:3326 -msgid "Validated" -msgstr "承諾済み" - -#: ../../operation/snmpconsole/snmp_view.php:602 -msgid "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" -msgstr "" -"トラップの英数字フィールドで検索。\n" -"\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してください。" - -#: ../../operation/snmpconsole/snmp_view.php:616 ../../operation/events/events.php:1111 -#: ../../operation/events/events.php:1700 ../../operation/events/events_list.php:973 -#: ../../include/class/AuditLog.class.php:187 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 -#: ../../include/lib/Dashboard/Widgets/events_list.php:336 -#: ../../include/functions_snmp.php:401 -#: ../../enterprise/include/functions_events.php:229 -#: ../../mobile/operation/events.php:706 ../../godmode/events/event_edit_filter.php:404 -msgid "Max. hours old" -msgstr "最大表示範囲(時間)" - -#: ../../operation/snmpconsole/snmp_view.php:628 ../../include/functions_snmp.php:433 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 -#: ../../godmode/snmpconsole/snmp_alert.php:780 -#: ../../godmode/snmpconsole/snmp_alert.php:1078 -msgid "Trap type" -msgstr "トラップタイプ" - -#: ../../operation/snmpconsole/snmp_view.php:628 -msgid "Search by trap type" -msgstr "トラップタイプによる検索" - -#: ../../operation/snmpconsole/snmp_view.php:631 -#: ../../operation/snmpconsole/snmp_view.php:1115 -#: ../../operation/snmpconsole/snmp_view.php:1129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 -#: ../../godmode/snmpconsole/snmp_alert.php:28 -msgid "Cold start (0)" -msgstr "Cold start (0)" - -#: ../../operation/snmpconsole/snmp_view.php:632 -#: ../../operation/snmpconsole/snmp_view.php:1116 -#: ../../operation/snmpconsole/snmp_view.php:1133 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 -#: ../../godmode/snmpconsole/snmp_alert.php:29 -msgid "Warm start (1)" -msgstr "Warm start (1)" - -#: ../../operation/snmpconsole/snmp_view.php:633 -#: ../../operation/snmpconsole/snmp_view.php:1117 -#: ../../operation/snmpconsole/snmp_view.php:1137 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 -#: ../../godmode/snmpconsole/snmp_alert.php:30 -msgid "Link down (2)" -msgstr "Link down (2)" - -#: ../../operation/snmpconsole/snmp_view.php:634 -#: ../../operation/snmpconsole/snmp_view.php:1118 -#: ../../operation/snmpconsole/snmp_view.php:1141 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 -#: ../../godmode/snmpconsole/snmp_alert.php:31 -msgid "Link up (3)" -msgstr "Link up (3)" - -#: ../../operation/snmpconsole/snmp_view.php:635 -#: ../../operation/snmpconsole/snmp_view.php:1119 -#: ../../operation/snmpconsole/snmp_view.php:1145 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../godmode/snmpconsole/snmp_alert.php:32 -msgid "Authentication failure (4)" -msgstr "Authentication failure (4)" - -#: ../../operation/snmpconsole/snmp_view.php:652 -msgid "Group by Enterprise String/IP" -msgstr "Enterprise 文字列/IP ごとのグループ" - -#: ../../operation/snmpconsole/snmp_view.php:653 -#: ../../operation/netflow/nf_live_view.php:452 ../../operation/users/user_edit.php:321 -#: ../../include/functions_cron.php:648 ../../include/functions_snmp.php:390 -#: ../../include/functions_profile.php:276 -#: ../../include/functions_reporting_html.php:1560 -#: ../../enterprise/include/functions_cron.php:757 -#: ../../enterprise/include/functions_reporting_csv.php:1940 -#: ../../enterprise/include/functions_tasklist.php:323 -#: ../../enterprise/include/functions_reporting.php:2337 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 -#: ../../enterprise/meta/advanced/metasetup.performance.php:85 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#: ../../enterprise/meta/advanced/metasetup.setup.php:203 -#: ../../enterprise/meta/advanced/metasetup.setup.php:219 -#: ../../enterprise/meta/advanced/metasetup.setup.php:223 -#: ../../enterprise/meta/advanced/metasetup.setup.php:285 -#: ../../enterprise/meta/advanced/metasetup.setup.php:299 -#: ../../enterprise/meta/advanced/metasetup.setup.php:321 -#: ../../enterprise/meta/advanced/metasetup.setup.php:325 -#: ../../enterprise/meta/advanced/metasetup.setup.php:347 -#: ../../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/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:338 -#: ../../enterprise/godmode/setup/setup_auth.php:386 -#: ../../enterprise/godmode/setup/setup_auth.php:1181 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../godmode/update_manager/update_manager.setup.php:371 -#: ../../godmode/reporting/reporting_builder.main.php:194 -#: ../../godmode/reporting/reporting_builder.php:1092 -#: ../../godmode/reporting/visual_console_builder.wizard.php:380 -#: ../../godmode/reporting/visual_console_builder.wizard.php:467 -#: ../../godmode/massive/massive_edit_agents.php:663 -#: ../../godmode/massive/massive_edit_agents.php:986 -#: ../../godmode/massive/massive_edit_agents.php:995 -#: ../../godmode/massive/massive_edit_modules.php:616 -#: ../../godmode/massive/massive_edit_modules.php:638 -#: ../../godmode/massive/massive_edit_modules.php:707 -#: ../../godmode/massive/massive_edit_modules.php:729 -#: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1081 -#: ../../godmode/massive/massive_edit_modules.php:1109 -#: ../../godmode/agentes/agent_conf_gis.php:125 ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 ../../godmode/users/configure_user.php:1099 -msgid "Yes" -msgstr "はい" - -#: ../../operation/snmpconsole/snmp_view.php:654 -#: ../../operation/netflow/nf_live_view.php:462 ../../operation/users/user_edit.php:322 -#: ../../include/functions_cron.php:648 ../../include/functions_events.php:5039 -#: ../../include/functions_events.php:5044 ../../include/functions_snmp.php:382 -#: ../../include/functions_profile.php:276 -#: ../../include/functions_reporting_html.php:1560 -#: ../../enterprise/include/functions_cron.php:756 -#: ../../enterprise/include/functions_reporting_csv.php:1940 -#: ../../enterprise/include/functions_tasklist.php:323 -#: ../../enterprise/include/functions_reporting.php:2337 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 -#: ../../enterprise/meta/advanced/metasetup.performance.php:86 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -#: ../../enterprise/meta/advanced/metasetup.setup.php:213 -#: ../../enterprise/meta/advanced/metasetup.setup.php:220 -#: ../../enterprise/meta/advanced/metasetup.setup.php:224 -#: ../../enterprise/meta/advanced/metasetup.setup.php:286 -#: ../../enterprise/meta/advanced/metasetup.setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.setup.php:322 -#: ../../enterprise/meta/advanced/metasetup.setup.php:335 -#: ../../enterprise/meta/advanced/metasetup.setup.php:357 -#: ../../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/godmode/setup/setup.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/godmode/setup/setup_auth.php:1184 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 -#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 -#: ../../godmode/setup/news.php:287 ../../godmode/servers/modificar_server.php:45 -#: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/reporting/reporting_builder.main.php:204 -#: ../../godmode/reporting/reporting_builder.php:1094 -#: ../../godmode/reporting/visual_console_builder.wizard.php:390 -#: ../../godmode/reporting/visual_console_builder.wizard.php:468 -#: ../../godmode/massive/massive_edit_agents.php:664 -#: ../../godmode/massive/massive_edit_agents.php:987 -#: ../../godmode/massive/massive_edit_agents.php:996 -#: ../../godmode/massive/massive_edit_modules.php:617 -#: ../../godmode/massive/massive_edit_modules.php:639 -#: ../../godmode/massive/massive_edit_modules.php:708 -#: ../../godmode/massive/massive_edit_modules.php:730 -#: ../../godmode/massive/massive_edit_modules.php:770 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../godmode/massive/massive_edit_modules.php:1110 -#: ../../godmode/agentes/agent_conf_gis.php:126 ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 ../../godmode/alerts/alert_view.php:352 -#: ../../godmode/users/configure_user.php:1100 -msgid "No" -msgstr "いいえ" - -#: ../../operation/snmpconsole/snmp_view.php:681 -#: ../../operation/snmpconsole/snmp_view.php:789 -#: ../../godmode/snmpconsole/snmp_alert.php:83 -#: ../../godmode/snmpconsole/snmp_alert.php:91 -#: ../../godmode/snmpconsole/snmp_alert.php:99 -#: ../../godmode/snmpconsole/snmp_filters.php:46 -msgid "SNMP Console" -msgstr "SNMP コンソール" - -#: ../../operation/snmpconsole/snmp_view.php:714 -#: ../../operation/snmpconsole/snmp_view.php:813 -#: ../../operation/agentes/alerts_status.php:501 ../../operation/agentes/graphs.php:269 -#: ../../enterprise/meta/advanced/collections.php:200 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -#: ../../enterprise/godmode/policies/policy_queue.php:524 -#: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 -#: ../../godmode/snmpconsole/snmp_alert.php:1093 -#: ../../godmode/alerts/alert_list.list.php:178 ../../godmode/users/user_list.php:452 -msgid "Toggle filter(s)" -msgstr "フィルタ設定" - -#: ../../operation/snmpconsole/snmp_view.php:718 -msgid "There are no SNMP traps in database that contains this filter" -msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" - -#: ../../operation/snmpconsole/snmp_view.php:758 -msgid "Refresh every" -msgstr "更新周期" - -#: ../../operation/snmpconsole/snmp_view.php:770 -msgid "SNMP Traps" -msgstr "SNMP トラップ" - -#: ../../operation/snmpconsole/snmp_view.php:854 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 -#: ../../godmode/snmpconsole/snmp_alert.php:743 -#: ../../godmode/snmpconsole/snmp_alert.php:1222 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 -msgid "SNMP Agent" -msgstr "SNMPエージェント" - -#: ../../operation/snmpconsole/snmp_view.php:859 -#: ../../godmode/snmpconsole/snmp_alert.php:730 -#: ../../godmode/snmpconsole/snmp_alert.php:1226 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 -msgid "Enterprise String" -msgstr "Enterprise文字列" - -#: ../../operation/snmpconsole/snmp_view.php:865 -#: ../../include/functions_reporting_html.php:1046 -#: ../../include/functions_reporting_html.php:1270 -#: ../../include/functions_reporting_html.php:2350 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1086 -msgid "Count" -msgstr "回数" - -#: ../../operation/snmpconsole/snmp_view.php:871 -msgid "Trap subtype" -msgstr "トラップサブタイプ" - -#: ../../operation/snmpconsole/snmp_view.php:974 -#: ../../operation/snmpconsole/snmp_view.php:994 -#: ../../operation/agentes/status_monitor.php:1711 -#: ../../operation/agentes/interface_view.functions.php:682 -#: ../../operation/agentes/interface_view.functions.php:683 -#: ../../operation/agentes/interface_view.functions.php:684 -#: ../../operation/agentes/interface_view.functions.php:685 -#: ../../operation/agentes/interface_view.functions.php:686 -#: ../../operation/agentes/estado_generalagente.php:219 -#: ../../operation/agentes/estado_generalagente.php:232 -#: ../../operation/agentes/estado_generalagente.php:244 -#: ../../operation/agentes/estado_generalagente.php:392 -#: ../../operation/agentes/estado_generalagente.php:408 -#: ../../operation/agentes/estado_generalagente.php:419 -#: ../../include/ajax/module.php:1168 ../../include/functions_events.php:3809 -#: ../../include/functions_events.php:3959 ../../include/functions_events.php:3980 -#: ../../include/functions_events.php:3985 ../../include/functions_events.php:3998 -#: ../../include/functions_events.php:3999 ../../include/functions_events.php:4011 -#: ../../include/functions_events.php:4062 ../../include/functions_events.php:4089 -#: ../../include/functions_events.php:4145 ../../include/functions_events.php:4162 -#: ../../include/functions_events.php:4169 ../../include/functions_events.php:4235 -#: ../../include/functions_events.php:4307 ../../include/functions_events.php:4446 -#: ../../include/functions_events.php:4485 ../../include/functions_events.php:4499 -#: ../../include/functions_events.php:4504 ../../include/functions_events.php:4534 -#: ../../include/functions_events.php:4627 ../../include/functions_events.php:4707 -#: ../../include/functions_events.php:4717 ../../include/functions_events.php:4934 -#: ../../include/functions_events.php:5011 ../../include/functions_events.php:5100 -#: ../../include/functions_events.php:5129 ../../include/functions_events.php:5144 -#: ../../include/functions_events.php:5154 ../../include/functions_events.php:5164 -#: ../../include/functions_events.php:7442 ../../include/functions_events.php:7461 -#: ../../include/functions_events.php:7466 ../../include/functions_events.php:7473 -#: ../../include/functions_events.php:7486 ../../include/functions_events.php:7499 -#: ../../include/functions_events.php:7511 ../../include/functions_events.php:7564 -#: ../../include/functions_events.php:7591 ../../include/functions_events.php:7616 -#: ../../include/functions_events.php:7660 ../../include/functions_db.php:241 -#: ../../include/functions_servers.php:1362 ../../include/functions_treeview.php:162 -#: ../../include/functions_treeview.php:327 ../../include/functions_treeview.php:423 -#: ../../include/functions_ui.php:2609 ../../include/functions_ui.php:2617 -#: ../../include/functions.php:1124 ../../include/functions.php:1130 -#: ../../include/functions.php:1134 ../../include/functions_reporting_html.php:651 -#: ../../include/functions_reporting_html.php:654 -#: ../../include/functions_reporting_html.php:5228 -#: ../../include/functions_reporting_html.php:5281 -#: ../../enterprise/tools/ipam/ipam_ajax.php:366 -#: ../../enterprise/tools/ipam/ipam_ajax.php:387 -#: ../../enterprise/tools/ipam/ipam_network.php:435 -#: ../../enterprise/tools/ipam/ipam_network.php:515 -#: ../../enterprise/views/cluster/view.php:278 -#: ../../enterprise/views/cluster/view.php:293 -#: ../../enterprise/include/lib/Metaconsole/Node.php:505 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1185 -#: ../../enterprise/include/functions_services.php:1190 -#: ../../enterprise/include/functions_services.php:1371 -#: ../../enterprise/include/functions_services.php:2077 -#: ../../enterprise/include/functions_aws.php:507 -#: ../../enterprise/include/functions_aws.php:508 -#: ../../enterprise/include/functions_reporting.php:6157 -#: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 -#: ../../enterprise/meta/advanced/servers.build_table.php:100 -#: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/metasetup.visual.php:895 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../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 -#: ../../godmode/servers/servers.build_table.php:147 -#: ../../godmode/servers/servers.build_table.php:148 -#: ../../godmode/servers/servers.build_table.php:154 -#: ../../godmode/modules/manage_network_components.php:776 -#: ../../godmode/modules/manage_network_components.php:777 -#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:812 -#: ../../godmode/alerts/alert_view.php:135 -msgid "N/A" -msgstr "N/A" - -#: ../../operation/snmpconsole/snmp_view.php:1018 -#: ../../operation/events/sound_events.php:136 -#: ../../operation/agentes/group_view.php:234 -#: ../../include/class/AgentsAlerts.class.php:949 -#: ../../include/functions_events.php:2904 ../../include/functions_events.php:3259 -#: ../../include/functions_agents.php:2939 ../../include/functions_agents.php:2950 -#: ../../include/functions_reporting.php:12325 ../../include/functions_ui.php:1247 -#: ../../include/functions.php:1228 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../enterprise/meta/monitoring/group_view.php:247 -#: ../../mobile/operation/alerts.php:324 ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_view.php:105 -msgid "Alert fired" -msgstr "発生中アラート" - -#: ../../operation/snmpconsole/snmp_view.php:1020 -#: ../../include/class/AgentsAlerts.class.php:955 -#: ../../include/functions_agents.php:2941 ../../include/functions_agents.php:2952 -#: ../../include/functions_reporting.php:12248 ../../include/functions_ui.php:1253 -#: ../../enterprise/operation/agentes/policy_view.php:351 -#: ../../mobile/operation/alerts.php:330 ../../godmode/alerts/alert_list.list.php:565 -#: ../../godmode/alerts/alert_view.php:111 -msgid "Alert not fired" -msgstr "未通知アラート" - -#: ../../operation/snmpconsole/snmp_view.php:1027 -#: ../../operation/snmpconsole/snmp_view.php:1217 -#: ../../operation/snmpconsole/snmp_view.php:1267 -#: ../../operation/agentes/alerts_status.php:567 -#: ../../operation/agentes/alerts_status.php:604 -#: ../../operation/agentes/alerts_status.php:637 -#: ../../operation/agentes/alerts_status.php:723 -#: ../../include/ajax/alert_list.ajax.php:267 ../../include/ajax/alert_list.ajax.php:293 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3130 -#: ../../enterprise/load_enterprise.php:749 -#: ../../enterprise/godmode/reporting/aws_view.php:181 -#: ../../enterprise/godmode/wizards/Cloud.class.php:325 -#: ../../mobile/operation/events.php:570 ../../godmode/setup/license.php:165 -msgid "Validate" -msgstr "承諾する" - -#: ../../operation/snmpconsole/snmp_view.php:1076 -msgid "Variable bindings:" -msgstr "バインド変数:" - -#: ../../operation/snmpconsole/snmp_view.php:1089 -msgid "See more details" -msgstr "詳細表示" - -#: ../../operation/snmpconsole/snmp_view.php:1101 -msgid "Enterprise String:" -msgstr "Enterprise文字列:" - -#: ../../operation/snmpconsole/snmp_view.php:1107 -#: ../../enterprise/meta/include/functions_autoprovision.php:569 -#: ../../enterprise/meta/advanced/collections.data.php:432 -#: ../../enterprise/godmode/agentes/collections.data.php:523 -msgid "Description:" -msgstr "説明:" - -#: ../../operation/snmpconsole/snmp_view.php:1153 -msgid "Trap type:" -msgstr "トラップタイプ:" - -#: ../../operation/snmpconsole/snmp_view.php:1179 -msgid "Count:" -msgstr "件数:" - -#: ../../operation/snmpconsole/snmp_view.php:1183 -msgid "First trap:" -msgstr "最初のトラップ:" - -#: ../../operation/snmpconsole/snmp_view.php:1187 -msgid "Last trap:" -msgstr "最新のトラップ:" - -#: ../../operation/snmpconsole/snmp_view.php:1208 -msgid "No matching traps found" -msgstr "条件にマッチするトラップがありません。" - -#: ../../operation/snmpconsole/snmp_view.php:1272 -#: ../../include/functions_reporting_html.php:2003 -#: ../../enterprise/operation/services/services.service_map.php:104 -#: ../../extensions/module_groups.php:391 ../../extensions/agents_modules.php:947 -#: ../../godmode/snmpconsole/snmp_alert.php:1469 -msgid "Legend" -msgstr "凡例" - -#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 -#: ../../operation/agentes/pandora_networkmap.php:800 -#: ../../enterprise/operation/services/services.list.php:625 -msgid "Config" -msgstr "設定" - -#: ../../operation/heatmap.php:96 ../../operation/heatmap.php:98 -#: ../../operation/agentes/status_monitor.php:517 -#: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1148 ../../include/ajax/heatmap.ajax.php:190 -#: ../../include/ajax/heatmap.ajax.php:249 ../../include/ajax/heatmap.ajax.php:288 -#: ../../include/functions_events.php:4546 ../../include/functions_treeview.php:122 -#: ../../include/functions_graph.php:5366 ../../include/functions_html.php:1560 -#: ../../enterprise/operation/agentes/tag_view.php:156 -#: ../../enterprise/operation/agentes/ver_agente.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 -#: ../../enterprise/godmode/modules/configure_local_component.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2014 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 -#: ../../extensions/agents_modules.php:410 ../../mobile/operation/modules.php:183 -#: ../../mobile/operation/modules.php:184 ../../mobile/operation/modules.php:293 -#: ../../mobile/operation/modules.php:294 -#: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../godmode/reporting/create_container.php:540 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1538 -#: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/agentes/module_manager_editor_common.php:265 -msgid "Module group" -msgstr "モジュールグループ" - -#: ../../operation/heatmap.php:96 ../../operation/agentes/status_monitor.php:518 -#: ../../include/ajax/heatmap.ajax.php:196 ../../include/functions_treeview.php:116 -#: ../../include/functions_graph.php:5316 -#: ../../enterprise/operation/agentes/tag_view.php:157 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 -#: ../../godmode/massive/massive_edit_modules.php:892 -#: ../../godmode/agentes/module_manager_editor_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1188 -msgid "Not assigned" -msgstr "未割当" - -#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:320 -#: ../../include/ajax/heatmap.ajax.php:126 ../../include/ajax/heatmap.ajax.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 -#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 -#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../godmode/reporting/create_container.php:566 -#: ../../godmode/reporting/create_container.php:629 -msgid "Tag" -msgstr "タグ" - -#: ../../operation/heatmap.php:173 ../../include/ajax/heatmap.ajax.php:52 -msgid "3 minutes" -msgstr "3 分" - -#: ../../operation/heatmap.php:291 ../../operation/agentes/status_monitor.php:538 -#: ../../operation/agentes/interface_view.functions.php:120 -#: ../../operation/agentes/interface_view.functions.php:158 -#: ../../include/class/ConfigPEN.class.php:252 -#: ../../include/class/CredentialStore.class.php:1098 -#: ../../enterprise/operation/agentes/tag_view.php:175 -#: ../../enterprise/include/class/AgentRepository.class.php:771 -#: ../../enterprise/include/class/LogSource.class.php:766 -#: ../../enterprise/include/class/Omnishell.class.php:1124 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 -#: ../../enterprise/extensions/vmware/vmware_view.php:1519 -#: ../../godmode/users/user_list.php:693 -msgid "Show" -msgstr "表示" - -#: ../../operation/search_agents.php:93 -#: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/agentes/estado_generalagente.php:101 -#: ../../operation/agentes/estado_generalagente.php:103 -#: ../../include/functions_visual_map_editor.php:826 -#: ../../include/functions_treeview.php:72 ../../include/functions_treeview.php:613 -#: ../../include/functions_reporting.php:6321 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:397 -#: ../../include/functions_reporting_html.php:3354 -#: ../../enterprise/views/cluster/view.php:162 -#: ../../enterprise/views/cluster/view.php:164 -#: ../../enterprise/include/class/VMware.app.php:888 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3211 -#: ../../enterprise/include/class/DatabaseHA.class.php:211 -#: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../enterprise/include/functions_policies.php:4780 -#: ../../enterprise/meta/include/functions_wizard_meta.php:243 -#: ../../enterprise/meta/include/functions_wizard_meta.php:528 -#: ../../enterprise/meta/include/functions_wizard_meta.php:600 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1533 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1626 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1820 -#: ../../enterprise/meta/agentsearch.php:251 ../../enterprise/meta/agentsearch.php:258 -#: ../../enterprise/godmode/setup/edit_skin.php:276 -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 -#: ../../mobile/operation/agent.php:167 ../../mobile/operation/alerts.php:68 -#: ../../godmode/massive/massive_edit_agents.php:917 -#: ../../godmode/massive/massive_edit_agents.php:1017 -#: ../../godmode/massive/massive_edit_modules.php:765 -#: ../../godmode/agentes/module_manager_editor_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:897 -#: ../../godmode/agentes/module_manager_editor_common.php:1059 -#: ../../godmode/agentes/modificar_agente.php:761 -#: ../../godmode/alerts/configure_alert_template.php:899 -#: ../../godmode/alerts/alert_list.list.php:139 ../../godmode/alerts/alert_view.php:541 -#: ../../godmode/groups/group_list.php:908 -msgid "Disabled" -msgstr "無効" - -#: ../../operation/search_agents.php:100 ../../operation/agentes/estado_agente.php:831 -#: ../../operation/agentes/estado_generalagente.php:112 -#: ../../operation/agentes/estado_generalagente.php:122 -#: ../../include/ajax/module.php:1128 ../../include/class/Tree.class.php:907 -#: ../../enterprise/views/cluster/view.php:168 -#: ../../enterprise/views/cluster/view.php:170 -#: ../../enterprise/godmode/services/services.service.php:738 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 -#: ../../enterprise/godmode/massive/massive_create_services.php:819 -#: ../../mobile/operation/agent.php:174 -#: ../../godmode/massive/massive_edit_agents.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1104 -#: ../../godmode/agentes/module_manager.php:985 -#: ../../godmode/agentes/module_manager_editor_common.php:1056 -#: ../../godmode/agentes/agent_manager.php:644 -#: ../../godmode/agentes/planned_downtime.editor.php:588 -#: ../../godmode/agentes/planned_downtime.list.php:655 -#: ../../godmode/agentes/modificar_agente.php:775 -msgid "Quiet" -msgstr "静観" - -#: ../../operation/search_agents.php:111 ../../operation/agentes/estado_agente.php:839 -#: ../../operation/agentes/estado_generalagente.php:133 -#: ../../operation/agentes/estado_generalagente.php:141 -#: ../../enterprise/views/cluster/view.php:178 -#: ../../enterprise/views/cluster/view.php:186 -#: ../../godmode/agentes/modificar_agente.php:783 -msgid "Agent in scheduled downtime" -msgstr "計画停止内エージェント" - -#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133 -#: ../../operation/agentes/ver_agente.php:1348 ../../enterprise/tools/ipam/ipam.php:426 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:841 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 -msgid "Manage" -msgstr "設定" - -#: ../../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:214 -msgid "The URL of your feed has bad hash." -msgstr "フィードの URL に不正はハッシュがあります。" - -#: ../../operation/events/sound_events.php:86 -msgid "Sound console" -msgstr "サウンドコンソール" - -#: ../../operation/events/sound_events.php:145 -#: ../../include/functions_reporting.php:11409 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -msgid "Monitor critical" -msgstr "障害状態" - -#: ../../operation/events/sound_events.php:154 -#: ../../include/functions_reporting.php:11424 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -msgid "Monitor unknown" -msgstr "不明状態" - -#: ../../operation/events/sound_events.php:163 -#: ../../include/functions_reporting.php:11413 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -msgid "Monitor warning" -msgstr "警告状態" - -#: ../../operation/events/sound_events.php:186 -msgid "Event" -msgstr "イベント" - -#: ../../operation/events/events.build_table.php:81 -msgid "More detail" -msgstr "詳細" - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid "The Agent: " -msgstr "エージェント: " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " has " -msgstr " は " - -#: ../../operation/events/events.build_table.php:105 -#: ../../operation/events/events.build_table.php:107 -msgid " events." -msgstr " イベントあります。" - -#: ../../operation/events/events.build_table.php:134 -#: ../../operation/events/events.build_table.php:1164 -#: ../../include/functions_events.php:2575 ../../include/functions_events.php:2578 -#: ../../include/functions_reporting.php:2000 ../../include/functions_reporting.php:2299 -#: ../../include/functions_reporting_html.php:5881 -#: ../../include/functions_reporting_html.php:6066 ../../mobile/operation/events.php:865 -msgid "No events" -msgstr "イベントがありません。" - -#: ../../operation/events/events.build_table.php:156 -#: ../../operation/events/events.php:1252 ../../operation/events/events_list.php:821 -#: ../../include/class/AgentWizard.class.php:1181 -#: ../../include/functions_events.php:6657 -#: ../../include/functions_reporting_html.php:2072 -#: ../../enterprise/operation/log/log_viewer.php:613 -#: ../../enterprise/operation/inventory/inventory.php:317 -#: ../../enterprise/include/functions_reporting_csv.php:2733 -#: ../../enterprise/include/class/SAPView.class.php:226 -#: ../../enterprise/include/class/CSVImportAgents.class.php:152 -#: ../../enterprise/include/functions_events.php:283 -#: ../../enterprise/meta/include/functions_wizard_meta.php:174 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/agentsearch.php:133 ../../enterprise/meta/agentsearch.php:326 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962 -#: ../../godmode/modules/manage_network_components.php:749 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1095 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3481 -#: ../../godmode/massive/massive_edit_agents.php:743 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -#: ../../godmode/agentes/module_manager.php:844 -#: ../../godmode/agentes/agent_manager.php:411 -msgid "Server" -msgstr "サーバ" - -#: ../../operation/events/events.build_table.php:162 -#: ../../include/functions_events.php:4978 ../../include/functions_events.php:6669 -#: ../../mobile/operation/events.php:512 -msgid "Event ID" -msgstr "イベントID" - -#: ../../operation/events/events.build_table.php:172 -#: ../../include/functions_events.php:233 ../../include/functions_events.php:6675 -#: ../../mobile/operation/events.php:124 ../../godmode/events/custom_events.php:95 -msgid "Event Name" -msgstr "イベント名" - -#: ../../operation/events/events.build_table.php:182 -#: ../../operation/events/events.php:1934 ../../include/functions_events.php:193 -#: ../../include/functions_events.php:239 ../../include/functions_events.php:2615 -#: ../../include/functions_events.php:6682 ../../include/functions_treeview.php:617 -#: ../../include/functions_reporting_html.php:3337 -#: ../../enterprise/include/functions_reporting_csv.php:871 -#: ../../enterprise/include/functions_ipam.php:2039 -#: ../../enterprise/meta/include/functions_events_meta.php:66 -#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../godmode/agentes/agent_manager.php:213 -#: ../../godmode/agentes/modificar_agente.php:647 -msgid "Agent name" -msgstr "エージェント名" - -#: ../../operation/events/events.build_table.php:212 -#: ../../operation/incidents/integriaims_export_csv.php:89 -#: ../../operation/incidents/configure_integriaims_incident.php:312 -#: ../../operation/incidents/list_integriaims_incidents.php:342 -#: ../../operation/incidents/list_integriaims_incidents.php:522 -#: ../../include/functions_events.php:206 ../../include/functions_events.php:281 -#: ../../include/functions_events.php:5009 ../../include/functions_events.php:6701 -#: ../../enterprise/meta/include/functions_events_meta.php:118 -#: ../../mobile/operation/events.php:520 ../../godmode/setup/setup_integria.php:397 -#: ../../godmode/setup/setup_integria.php:519 ../../godmode/events/custom_events.php:111 -msgid "Owner" -msgstr "所有者" - -#: ../../operation/events/events.build_table.php:232 -#: ../../include/functions_events.php:257 ../../godmode/events/custom_events.php:103 -msgid "Event Type" -msgstr "イベントタイプ" - -#: ../../operation/events/events.build_table.php:243 -#: ../../include/class/ModuleTemplates.class.php:1207 -#: ../../include/class/AgentWizard.class.php:1180 -#: ../../include/class/AgentWizard.class.php:4015 ../../include/functions_events.php:260 -#: ../../godmode/events/custom_events.php:104 -msgid "Module Name" -msgstr "モジュール名" - -#: ../../operation/events/events.build_table.php:273 -#: ../../operation/events/events.build_table.php:709 -#: ../../operation/events/events.php:1208 ../../operation/events/events_list.php:1003 -#: ../../include/class/CustomNetScan.class.php:468 -#: ../../include/functions_events.php:202 ../../include/functions_events.php:269 -#: ../../include/functions_events.php:3752 ../../include/functions_events.php:6738 -#: ../../include/functions_events.php:7124 -#: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:633 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/wizards/HostDevices.class.php:958 -msgid "Comment" -msgstr "コメント" - -#: ../../operation/events/events.build_table.php:293 -#: ../../operation/events/events.php:1188 ../../operation/events/events_list.php:999 -#: ../../operation/agentes/log_sources_status.php:56 -#: ../../operation/agentes/pandora_networkmap.editor.php:336 -#: ../../operation/agentes/pandora_networkmap.view.php:136 -#: ../../include/functions_events.php:204 ../../include/functions_events.php:275 -#: ../../include/functions_events.php:4632 ../../include/functions_events.php:4713 -#: ../../include/functions_events.php:6750 -#: ../../enterprise/operation/log/log_viewer.php:654 -#: ../../enterprise/include/class/LogSource.class.php:626 -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/meta/include/functions_events_meta.php:110 -#: ../../enterprise/meta/advanced/policymanager.sync.php:307 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1495 -#: ../../godmode/events/event_edit_filter.php:627 -#: ../../godmode/events/custom_events.php:109 -#: ../../godmode/massive/massive_copy_modules.php:144 -msgid "Source" -msgstr "ソース" - -#: ../../operation/events/events.build_table.php:303 -#: ../../operation/events/events.php:1195 ../../operation/events/events_list.php:1001 -#: ../../include/functions_events.php:6756 -#: ../../godmode/events/event_edit_filter.php:630 -msgid "Extra ID" -msgstr "拡張 ID" - -#: ../../operation/events/events.build_table.php:313 -#: ../../include/functions_events.php:207 ../../include/functions_events.php:284 -#: ../../include/functions_events.php:6762 -#: ../../enterprise/meta/include/functions_events_meta.php:122 -#: ../../godmode/events/custom_events.php:112 -msgid "ACK Timestamp" -msgstr "ACK タイムスタンプ" - -#: ../../operation/events/events.build_table.php:323 -#: ../../operation/events/events.php:2822 ../../include/functions_events.php:208 -#: ../../include/functions_events.php:287 ../../include/functions_events.php:4691 -#: ../../include/functions_events.php:6768 -#: ../../enterprise/meta/include/functions_events_meta.php:126 -#: ../../godmode/events/custom_events.php:113 -msgid "Instructions" -msgstr "手順" - -#: ../../operation/events/events.build_table.php:340 -#: ../../include/functions_events.php:296 ../../godmode/events/custom_events.php:116 -#: ../../godmode/massive/massive_delete_modules.php:436 -#: ../../godmode/massive/massive_edit_modules.php:382 -msgid "Module Status" -msgstr "モジュールの状態" - -#: ../../operation/events/events.build_table.php:350 ../../include/ajax/events.php:1552 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:315 -#: ../../godmode/events/event_edit_filter.php:650 -#: ../../godmode/events/custom_events.php:119 -msgid "Custom data" -msgstr "カスタムデータ" - -#: ../../operation/events/events.build_table.php:420 -#: ../../operation/events/events.php:2249 ../../include/ajax/events.php:1784 -#: ../../include/functions_events.php:2651 ../../include/functions_events.php:4819 -#: ../../include/functions_events.php:6829 ../../include/functions_reporting.php:10694 -#: ../../include/functions_reporting_html.php:1077 -#: ../../include/functions_reporting_html.php:1300 -#: ../../include/functions_reporting_html.php:2372 ../../mobile/operation/events.php:267 -msgid "New event" -msgstr "新規イベント" - -#: ../../operation/events/events.build_table.php:425 -#: ../../operation/events/events.php:2255 ../../include/ajax/events.php:1789 -#: ../../include/functions_events.php:2656 ../../include/functions_events.php:4825 -#: ../../include/functions_events.php:6834 ../../include/functions_reporting.php:10699 -#: ../../include/functions_reporting_html.php:1082 -#: ../../include/functions_reporting_html.php:1305 -#: ../../include/functions_reporting_html.php:2377 ../../mobile/operation/events.php:272 -msgid "Event validated" -msgstr "承諾済" - -#: ../../operation/events/events.build_table.php:430 -#: ../../operation/events/events.php:2261 ../../include/ajax/events.php:1794 -#: ../../include/functions_events.php:2661 ../../include/functions_events.php:4831 -#: ../../include/functions_events.php:6839 ../../include/functions_reporting.php:10704 -#: ../../include/functions_reporting_html.php:1087 -#: ../../include/functions_reporting_html.php:1310 -#: ../../include/functions_reporting_html.php:2382 ../../mobile/operation/events.php:277 -msgid "Event in process" -msgstr "処理中イベント" - -#: ../../operation/events/events.build_table.php:856 -#: ../../operation/events/events.php:2203 ../../include/functions_events.php:7246 -msgid "Validate event" -msgstr "承諾" - -#: ../../operation/events/events.build_table.php:867 -#: ../../operation/events/events.php:2215 -msgid "Change to in progress status" -msgstr "進捗状況へ変更" - -#: ../../operation/events/events.build_table.php:884 -#: ../../operation/events/events.php:2227 ../../include/functions_events.php:3776 -#: ../../include/functions_events.php:3780 ../../include/functions_events.php:7260 -msgid "Delete event" -msgstr "削除" - -#: ../../operation/events/events.build_table.php:894 -#: ../../include/functions_events.php:7269 -msgid "Is not allowed delete events in process" -msgstr "処理中イベントは削除できません" - -#: ../../operation/events/events.build_table.php:1008 -#: ../../operation/events/events.php:1847 -msgid "Execute event response" -msgstr "イベント応答の実行" - -#: ../../operation/events/events.build_table.php:1016 -#: ../../operation/events/events.php:1860 -#, php-format -msgid "A maximum of %s event custom responses can be selected" -msgstr "最大 %s イベントのカスタム応答を選択できます" - -#: ../../operation/events/events.build_table.php:1021 -#: ../../operation/events/events.php:1865 -msgid "Please, select an event" -msgstr "イベントを選択してください" - -#: ../../operation/events/events.php:625 ../../operation/events/events.php:701 -#: ../../operation/events/events_list.php:613 ../../operation/events/events_list.php:689 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 -#: ../../include/class/ManageNetScanScripts.class.php:471 -#: ../../include/functions_notifications.php:974 -#: ../../include/functions_snmp_browser.php:1558 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 -#: ../../enterprise/include/ajax/servers.ajax.php:144 -#: ../../enterprise/include/ajax/servers.ajax.php:177 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240 -#: ../../enterprise/meta/include/functions_autoprovision.php:703 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1368 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:739 -#: ../../enterprise/meta/advanced/metasetup.visual.php:411 -#: ../../enterprise/meta/advanced/links.php:189 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:357 -#: ../../enterprise/godmode/setup/setup_acl.php:532 -#: ../../enterprise/godmode/setup/setup_acl.php:558 -#: ../../enterprise/godmode/servers/manage_export_form.php:138 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:498 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:254 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:833 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 -#: ../../enterprise/godmode/agentes/collection_manager.php:113 -#: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/plugins_manager.php:163 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:703 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_alerts.php:605 -#: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_collections.php:267 -#: ../../enterprise/godmode/policies/policy_plugins.php:144 -#: ../../extensions/files_repo/files_repo_form.php:105 -#: ../../godmode/setup/setup_visuals.php:1297 ../../godmode/setup/setup_visuals.php:1352 -#: ../../godmode/setup/setup_visuals.php:1372 ../../godmode/setup/news.php:299 -#: ../../godmode/setup/links.php:173 ../../godmode/servers/plugin.php:909 -#: ../../godmode/modules/manage_network_templates_form.php:347 -#: ../../godmode/gis_maps/configure_gis_map.php:631 -#: ../../godmode/reporting/graph_builder.graph_editor.php:352 -#: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/snmpconsole/snmp_alert.php:1445 -#: ../../godmode/events/event_edit_filter.php:509 -#: ../../godmode/events/event_edit_filter.php:562 -#: ../../godmode/agentes/planned_downtime.editor.php:875 -#: ../../godmode/agentes/planned_downtime.editor.php:1049 -#: ../../godmode/alerts/alert_list.list.php:801 -#: ../../godmode/users/configure_profile.php:403 -msgid "Add" -msgstr "追加" - -#: ../../operation/events/events.php:801 -msgid "Event viewer" -msgstr "イベントビューワ" - -#: ../../operation/events/events.php:837 ../../operation/users/user_edit.php:358 -#: ../../godmode/events/events.php:41 ../../godmode/users/configure_user.php:1111 -msgid "Event list" -msgstr "イベント一覧" - -#: ../../operation/events/events.php:848 -msgid "History event list" -msgstr "イベント一覧履歴" - -#: ../../operation/events/events.php:859 -msgid "RSS Events" -msgstr "RSS イベント" - -#: ../../operation/events/events.php:870 -msgid "Export to CSV file" -msgstr "CSV ファイルに書き出す" - -#: ../../operation/events/events.php:881 ../../operation/events/events.php:929 -msgid "Sound events" -msgstr "サウンドイベント" - -#: ../../operation/events/events.php:894 ../../godmode/events/events.php:116 -#: ../../godmode/events/events.php:124 ../../godmode/users/configure_profile.php:306 -msgid "Manage events" -msgstr "イベント管理" - -#: ../../operation/events/events.php:934 -msgid "History" -msgstr "履歴" - -#: ../../operation/events/events.php:997 -msgid "Errors" -msgstr "エラー" - -#: ../../operation/events/events.php:1023 -msgid "" -"Event viewer is disabled due event replication. For more information, please contact " -"with the administrator" -msgstr "" -"イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡してくださ" -"い。" - -#: ../../operation/events/events.php:1074 ../../operation/events/events_list.php:942 -#: ../../operation/agentes/status_monitor.php:496 -#: ../../operation/agentes/estado_agente.php:277 -#: ../../include/lib/Dashboard/Widgets/events_list.php:308 -#: ../../include/functions_events.php:3291 ../../include/functions.php:1277 -#: ../../enterprise/operation/agentes/tag_view.php:135 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 -#: ../../mobile/operation/modules.php:73 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3605 -#: ../../godmode/events/event_edit_filter.php:315 -#: ../../godmode/massive/massive_delete_modules.php:422 -#: ../../godmode/massive/massive_delete_modules.php:443 -#: ../../godmode/massive/massive_copy_modules.php:119 -#: ../../godmode/massive/massive_copy_modules.php:279 -#: ../../godmode/massive/massive_edit_agents.php:535 -#: ../../godmode/massive/massive_delete_agents.php:213 -#: ../../godmode/massive/massive_edit_modules.php:389 -#: ../../godmode/massive/massive_edit_modules.php:475 -msgid "Not normal" -msgstr "正常ではない" - -#: ../../operation/events/events.php:1084 ../../operation/events/events_list.php:937 -#: ../../include/lib/Dashboard/Widgets/events_list.php:321 -#: ../../include/functions_events.php:198 ../../include/functions_events.php:6713 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1381 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1083 -#: ../../enterprise/include/functions_events.php:127 -#: ../../enterprise/meta/include/functions_events_meta.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2843 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:629 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2844 -#: ../../godmode/events/event_edit_filter.php:317 -#: ../../godmode/events/event_filter.php:138 -msgid "Event type" -msgstr "イベントタイプ" - -#: ../../operation/events/events.php:1098 ../../operation/events/events.php:1670 -#: ../../operation/events/events_list.php:970 -#: ../../include/lib/Dashboard/Widgets/events_list.php:378 -#: ../../enterprise/include/functions_events.php:107 -#: ../../godmode/events/event_edit_filter.php:350 -#: ../../godmode/events/event_filter.php:139 -msgid "Event status" -msgstr "状態" - -#: ../../operation/events/events.php:1118 ../../operation/events/events_list.php:983 -#: ../../enterprise/godmode/setup/setup.php:161 -#: ../../godmode/events/event_edit_filter.php:436 -msgid "All events" -msgstr "全イベント一覧表示" - -#: ../../operation/events/events.php:1119 ../../operation/events/events.php:1720 -#: ../../operation/events/events_list.php:984 -#: ../../godmode/events/event_edit_filter.php:437 -msgid "Group events" -msgstr "グルーピング・回数表示" - -#: ../../operation/events/events.php:1120 ../../operation/events/events_list.php:985 -#: ../../include/ajax/heatmap.ajax.php:78 -msgid "Group agents" -msgstr "グループエージェント" - -#: ../../operation/events/events.php:1129 ../../operation/events/events_list.php:982 -#: ../../include/functions_events.php:5036 -#: ../../enterprise/include/functions_events.php:198 -#: ../../mobile/operation/events.php:528 ../../godmode/events/event_edit_filter.php:438 -msgid "Repeated" -msgstr "複数回発生イベント" - -#: ../../operation/events/events.php:1166 ../../operation/events/events_list.php:384 -#: ../../operation/events/events_list.php:524 ../../operation/events/events_list.php:535 -#: ../../operation/events/events_list.php:1053 -#: ../../operation/netflow/nf_live_view.php:389 ../../include/ajax/custom_fields.php:587 -#: ../../include/ajax/events.php:503 ../../include/ajax/events.php:519 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:236 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -msgid "Load filter" -msgstr "フィルタ読み込み" - -#: ../../operation/events/events.php:1174 ../../operation/events/events_list.php:376 -#: ../../operation/events/events_list.php:493 -#: ../../operation/events/events_list.php:1050 ../../include/ajax/events.php:759 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:228 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -msgid "Save filter" -msgstr "フィルタの保存" - -#: ../../operation/events/events.php:1246 ../../operation/events/events_list.php:769 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:375 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 -#: ../../enterprise/meta/agentsearch.php:52 ../../enterprise/meta/agentsearch.php:58 -#: ../../mobile/operation/home.php:168 ../../godmode/events/event_edit_filter.php:371 -msgid "Agent search" -msgstr "エージェント" - -#: ../../operation/events/events.php:1263 ../../operation/events/events_list.php:809 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:614 -msgid "Module search" -msgstr "モジュール検索" - -#: ../../operation/events/events.php:1293 ../../operation/events/events.php:2632 -#: ../../operation/events/events_list.php:803 -#: ../../include/functions_visual_map_editor.php:498 -#: ../../include/functions_visual_map_editor.php:1459 -#: ../../include/functions_visual_map_editor.php:1553 -#: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/lib/Dashboard/Widgets/events_list.php:329 -#: ../../include/functions_profile.php:338 ../../include/functions_html.php:2278 -#: ../../include/functions_html.php:2279 ../../include/functions_html.php:2280 -#: ../../include/functions_html.php:2281 ../../include/functions_html.php:2282 -#: ../../include/functions_html.php:2284 ../../include/functions_html.php:2285 -#: ../../include/functions_html.php:2286 ../../include/functions_html.php:2287 -#: ../../include/functions_html.php:2288 -#: ../../enterprise/operation/services/services.list.php:249 -#: ../../enterprise/operation/services/services.list.php:279 -#: ../../enterprise/operation/services/services.table_services.php:171 -#: ../../enterprise/operation/services/services.table_services.php:201 -#: ../../enterprise/include/class/AgentRepository.class.php:650 -#: ../../enterprise/include/class/Omnishell.class.php:361 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3865 -#: ../../enterprise/include/class/DeploymentCenter.class.php:779 -#: ../../enterprise/godmode/setup/setup_auth.php:69 -#: ../../enterprise/godmode/setup/setup_auth.php:269 -#: ../../enterprise/godmode/setup/setup_auth.php:319 -#: ../../enterprise/godmode/setup/setup_auth.php:380 -#: ../../enterprise/godmode/setup/setup_auth.php:546 -#: ../../enterprise/godmode/setup/setup_auth.php:1175 -#: ../../enterprise/godmode/setup/setup_auth.php:1345 -#: ../../enterprise/godmode/setup/setup_acl.php:572 -#: ../../enterprise/godmode/services/services.elements.php:290 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 -#: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:431 -#: ../../godmode/massive/massive_delete_modules.php:407 -#: ../../godmode/massive/massive_delete_modules.php:521 -#: ../../godmode/massive/massive_copy_modules.php:178 -#: ../../godmode/massive/massive_add_action_alerts.php:216 -#: ../../godmode/massive/massive_edit_agents.php:643 -#: ../../godmode/massive/massive_edit_agents.php:1026 -#: ../../godmode/massive/massive_edit_modules.php:411 -#: ../../godmode/massive/massive_edit_modules.php:497 -#: ../../godmode/agentes/agent_manager.php:328 -#: ../../godmode/agentes/agent_manager.php:472 -#: ../../godmode/agentes/planned_downtime.editor.php:800 -#: ../../godmode/agentes/planned_downtime.list.php:326 -msgid "Any" -msgstr "任意" - -#: ../../operation/events/events.php:1297 ../../operation/events/events_list.php:790 -#: ../../enterprise/include/functions_events.php:168 -#: ../../godmode/events/event_edit_filter.php:414 -msgid "User ack." -msgstr "承諾したユーザ" - -#: ../../operation/events/events.php:1304 ../../operation/events/events_list.php:840 -#: ../../godmode/events/event_edit_filter.php:602 -msgid "Filter alert events" -msgstr "アラートイベントフィルター" - -#: ../../operation/events/events.php:1305 ../../operation/events/events_list.php:841 -#: ../../godmode/events/event_edit_filter.php:603 -msgid "Only alert events" -msgstr "アラートイベントのみ" - -#: ../../operation/events/events.php:1320 ../../operation/events/events_list.php:837 -#: ../../enterprise/include/functions_events.php:208 -#: ../../godmode/events/event_edit_filter.php:598 -msgid "Alert events" -msgstr "アラートイベント" - -#: ../../operation/events/events.php:1342 ../../operation/events/events_list.php:1013 -msgid "Id source event" -msgstr "ソースイベントID" - -#: ../../operation/events/events.php:1400 -msgid "From (date:time)" -msgstr "開始 (日付:時間)" - -#: ../../operation/events/events.php:1458 -msgid "To (date:time)" -msgstr "終了 (日付:時間)" - -#: ../../operation/events/events.php:1469 -msgid "Filter custom data by field name" -msgstr "フィールド名でカスタムデータをフィルタ" - -#: ../../operation/events/events.php:1470 -msgid "Filter custom data by field value" -msgstr "フィールドの値でカスタムデータをフィルタ" - -#: ../../operation/events/events.php:1485 -msgid "Custom data filter" -msgstr "カスタムデータフィルタ" - -#: ../../operation/events/events.php:1507 -msgid "Custom data search" -msgstr "カスタムデータ検索" - -#: ../../operation/events/events.php:1516 ../../operation/events/events.php:1519 -#: ../../operation/events/events_list.php:892 ../../operation/events/events_list.php:895 -#: ../../enterprise/include/functions_events.php:251 -#: ../../godmode/events/event_edit_filter.php:493 -msgid "Events with following tags" -msgstr "次のタグを含むイベント" - -#: ../../operation/events/events.php:1517 ../../operation/events/events.php:1520 -#: ../../operation/events/events_list.php:893 ../../operation/events/events_list.php:896 -#: ../../enterprise/include/functions_events.php:273 -#: ../../godmode/events/event_edit_filter.php:546 -msgid "Events without following tags" -msgstr "次のタグを含まないイベント" - -#: ../../operation/events/events.php:1532 ../../operation/events/events_list.php:1030 -#: ../../include/functions_visual_map_editor.php:895 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:704 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 -#: ../../enterprise/godmode/policies/policy_modules.php:412 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:598 -#: ../../extensions/quick_shell.php:521 -#: ../../godmode/massive/massive_add_action_alerts.php:250 -#: ../../godmode/massive/massive_edit_agents.php:1027 -#: ../../godmode/agentes/agent_manager.php:748 -#: ../../godmode/agentes/agent_manager.php:882 -#: ../../godmode/agentes/module_manager_editor.php:746 -msgid "Advanced options" -msgstr "拡張オプション" - -#: ../../operation/events/events.php:1657 -msgid "Current filter" -msgstr "現在のフィルタ" - -#: ../../operation/events/events.php:1662 -msgid "Not set." -msgstr "未設定" - -#: ../../operation/events/events.php:1675 -msgid "Any status." -msgstr "任意の状態" - -#: ../../operation/events/events.php:1679 -msgid "New events." -msgstr "新規イベント" - -#: ../../operation/events/events.php:1683 -msgid "Validated." -msgstr "承諾済" - -#: ../../operation/events/events.php:1687 -msgid "In proccess." -msgstr "処理中" - -#: ../../operation/events/events.php:1691 -msgid "Not validated." -msgstr "未承諾" - -#: ../../operation/events/events.php:1703 -msgid "Any time." -msgstr "任意の時間" - -#: ../../operation/events/events.php:1705 ../../operation/events/events.php:2634 -msgid "Last hour." -msgstr "直近 1時間" - -#: ../../operation/events/events.php:1707 -#, php-format -msgid "Last %d hours." -msgstr "直近 %d 時間" - -#: ../../operation/events/events.php:1715 -msgid "Duplicated" -msgstr "複数回数発生イベント" - -#: ../../operation/events/events.php:1718 -msgid "All events." -msgstr "全イベント" - -#: ../../operation/events/events.php:1722 -msgid "Group agents." -msgstr "グループエージェント" - -#: ../../operation/events/events.php:1812 -msgid "In progress selected" -msgstr "処理中を選択" - -#: ../../operation/events/events.php:1813 -msgid "Validate selected" -msgstr "選択したものを承諾" - -#: ../../operation/events/events.php:1817 -#: ../../include/class/ModuleTemplates.class.php:970 -#: ../../enterprise/operation/services/services.list.php:728 -#: ../../enterprise/include/class/Omnishell.class.php:520 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298 -#: ../../godmode/snmpconsole/snmp_alert.php:1457 -#: ../../godmode/agentes/agent_manager.php:310 -msgid "Delete selected" -msgstr "選択範囲を削除します" - -#: ../../operation/events/events.php:1893 ../../include/ajax/events.php:1998 -#: ../../include/class/ExternalTools.class.php:354 -#: ../../include/lib/Dashboard/Widgets/events_list.php:788 -#: ../../include/functions_events.php:3861 -#: ../../enterprise/meta/advanced/cron_main.php:444 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 -#: ../../godmode/events/event_responses.editor.php:146 -msgid "Parameters" -msgstr "パラメータ" - -#: ../../operation/events/events.php:1930 ../../include/functions_events.php:236 -#: ../../enterprise/include/functions_reporting_csv.php:1934 -#: ../../enterprise/include/functions_reporting.php:2316 -#: ../../godmode/events/custom_events.php:96 -msgid "Agent ID" -msgstr "エージェント ID" - -#: ../../operation/events/events.php:1954 -msgid "has at least" -msgstr "は少なくとも次のイベント数あります:" - -#: ../../operation/events/events.php:1956 -msgid "events" -msgstr "イベント" - -#: ../../operation/events/events.php:2040 ../../include/functions_events.php:159 -#: ../../include/functions_ui.php:3819 -msgid "MAINTENANCE" -msgstr "メンテナンス" - -#: ../../operation/events/events.php:2045 ../../include/functions_events.php:162 -#: ../../include/functions_ui.php:3824 -msgid "INFORMATIONAL" -msgstr "情報" - -#: ../../operation/events/events.php:2050 ../../include/functions_events.php:165 -#: ../../include/functions_ui.php:3849 -msgid "MAJOR" -msgstr "メジャー" - -#: ../../operation/events/events.php:2055 ../../include/functions_events.php:168 -#: ../../include/functions_ui.php:3844 -msgid "MINOR" -msgstr "マイナー" - -#: ../../operation/events/events.php:2106 ../../operation/events/events.php:2171 -#: ../../include/functions_events.php:67 ../../include/functions_events.php:93 -#: ../../include/functions_ui.php:3741 -msgid "ALERT" -msgstr "アラート" - -#: ../../operation/events/events.php:2115 ../../include/functions_events.php:100 -#: ../../include/functions_events.php:2908 ../../include/functions_graph.php:3455 -#: ../../include/functions_ui.php:3750 -msgid "SYSTEM" -msgstr "システム" - -#: ../../operation/events/events.php:2200 -msgid "Validate events" -msgstr "イベントの承諾" - -#: ../../operation/events/events.php:2224 -msgid "Delete events" -msgstr "イベントの削除" - -#: ../../operation/events/events.php:2307 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437 -#: ../../include/functions_events.php:2691 ../../include/functions_events.php:3279 -#: ../../include/functions_graph.php:2864 ../../include/functions_graph.php:3630 -#: ../../include/functions_graph.php:3632 ../../include/functions_reporting.php:10731 -#: ../../include/functions.php:1235 ../../include/functions_reporting_html.php:1123 -#: ../../include/functions_reporting_html.php:2411 -#: ../../enterprise/meta/advanced/metasetup.setup.php:144 -#: ../../mobile/operation/events.php:127 ../../godmode/setup/setup_general.php:125 -msgid "System" -msgstr "システム" - -#: ../../operation/events/events.php:2636 -msgid "hours." -msgstr "時間" - -#: ../../operation/events/events_list.php:360 -#: ../../operation/events/events_list.php:1099 -msgid "No filter loaded" -msgstr "フィルタが読み込まれていません" - -#: ../../operation/events/events_list.php:368 -#: ../../operation/events/events_list.php:1099 -msgid "Filter loaded" -msgstr "フィルタを読み込みました" - -#: ../../operation/events/events_list.php:418 ../../include/ajax/events.php:678 -msgid "New filter" -msgstr "新規フィルタ" - -#: ../../operation/events/events_list.php:426 ../../operation/events/events_list.php:479 -#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:686 -#: ../../include/ajax/events.php:746 ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/netflow/nf_edit_form.php:188 -msgid "Update filter" -msgstr "フィルタの更新" - -#: ../../operation/events/events_list.php:433 ../../include/ajax/custom_fields.php:571 -#: ../../include/ajax/custom_fields.php:618 ../../include/ajax/custom_fields.php:662 -#: ../../include/ajax/events.php:693 ../../godmode/events/event_edit_filter.php:261 -msgid "Filter name" -msgstr "フィルタ名" - -#: ../../operation/events/events_list.php:436 ../../include/ajax/events.php:696 -msgid "Save in Group" -msgstr "保存グループ" - -#: ../../operation/events/events_list.php:438 ../../include/ajax/events.php:698 -#: ../../include/functions_snmp_browser.php:1478 ../../include/functions_html.php:1234 -#: ../../include/functions_html.php:1387 ../../enterprise/views/ncm/snippets/list.php:94 -#: ../../enterprise/views/ncm/firmwares/list.php:100 -#: ../../enterprise/views/ncm/devices/list.php:147 -#: ../../enterprise/views/ncm/templates/list.php:100 -#: ../../enterprise/views/cluster/list.php:87 -#: ../../enterprise/include/class/Omnishell.class.php:812 -#: ../../enterprise/include/class/Omnishell.class.php:891 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:115 -#: ../../enterprise/godmode/policies/policy_agents.php:436 -#: ../../enterprise/godmode/policies/policy_agents.php:468 -msgid "Filter group" -msgstr "フィルターグループ" - -#: ../../operation/events/events_list.php:465 ../../include/ajax/events.php:732 -msgid "Overwrite filter" -msgstr "フィルタの上書き" - -#: ../../operation/events/events_list.php:871 -#: ../../enterprise/include/functions_events.php:178 -#: ../../godmode/events/event_edit_filter.php:449 -msgid "Date from" -msgstr "開始日" - -#: ../../operation/events/events_list.php:875 -#: ../../enterprise/include/functions_events.php:188 -#: ../../godmode/events/event_edit_filter.php:452 -msgid "Date to" -msgstr "終了日" - -#: ../../operation/events/events_list.php:881 -#: ../../operation/agentes/datos_agente.php:198 ../../include/ajax/module.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 -msgid "Timestamp from:" -msgstr "開始日時:" - -#: ../../operation/events/events_list.php:884 -#: ../../operation/agentes/datos_agente.php:204 ../../include/ajax/module.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 -msgid "Timestamp to:" -msgstr "終了日時:" - -#: ../../operation/events/events_list.php:1105 -#: ../../operation/events/events_list.php:1107 -msgid "Event control filter" -msgstr "イベントフィルタ" - -#: ../../operation/events/events_list.php:1115 -msgid "Error creating filter." -msgstr "フィルタ作成エラー。" - -#: ../../operation/events/events_list.php:1119 -msgid "Error creating filter is duplicated." -msgstr "フィルタ作成エラー、重複しています。" - -#: ../../operation/events/events_list.php:1123 -msgid "Filter created." -msgstr "フィルタを作成しました。" - -#: ../../operation/events/events_list.php:1128 -msgid "Filter updated." -msgstr "フィルタを更新しました。" - -#: ../../operation/events/events_list.php:1132 -msgid "Error updating filter." -msgstr "フィルタ更新エラー。" - -#: ../../operation/events/events_list.php:1538 ../../include/ajax/events.php:803 -msgid "Filter name cannot be left blank" -msgstr "フィルタ名は空にできません" - -#: ../../operation/events/events_list.php:1614 -#: ../../operation/events/events_list.php:1707 ../../include/ajax/graph.ajax.php:145 -#: ../../include/ajax/events.php:946 ../../godmode/setup/setup_general.php:574 -#: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/reporting/create_container.php:294 -#: ../../godmode/reporting/create_container.php:310 -msgid "none" -msgstr "なし" - -#: ../../operation/netflow/nf_live_view.php:123 -#: ../../operation/netflow/nf_live_view.php:145 -#: ../../operation/netflow/nf_live_view.php:151 -msgid "Netflow live view" -msgstr "Netflow ライブビュー" - -#: ../../operation/netflow/nf_live_view.php:133 -#: ../../enterprise/operation/log/log_viewer.php:458 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../godmode/netflow/nf_edit.php:47 -msgid "Not supported in Windows systems" -msgstr "Windows システムでは対応していません" - -#: ../../operation/netflow/nf_live_view.php:141 -#: ../../operation/agentes/ver_agente.php:1368 -#: ../../enterprise/include/class/CommandCenter.class.php:142 -#: ../../enterprise/meta/general/logon_ok.php:16 -#: ../../enterprise/meta/monitoring/group_view.php:51 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 -#: ../../enterprise/meta/monitoring/tactical.php:36 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 -#: ../../enterprise/meta/advanced/agents_setup.php:60 -#: ../../enterprise/meta/advanced/policymanager.php:54 -#: ../../enterprise/meta/index.php:955 ../../enterprise/meta/agentsearch.php:48 -#: ../../enterprise/extensions/vmware/vmware_view.php:1373 -#: ../../godmode/netflow/nf_edit.php:53 ../../godmode/netflow/nf_edit_form.php:69 -#: ../../godmode/netflow/nf_item_list.php:49 -msgid "Main" -msgstr "メイン" - -#: ../../operation/netflow/nf_live_view.php:162 -msgid "Error creating filter" -msgstr "フィルタ作成エラー" - -#: ../../operation/netflow/nf_live_view.php:164 -msgid "Filter created successfully" -msgstr "フィルタを作成しました" - -#: ../../operation/netflow/nf_live_view.php:183 -msgid "Filter updated successfully" -msgstr "フィルタを更新しました" - -#: ../../operation/netflow/nf_live_view.php:184 -msgid "Error updating filter" -msgstr "フィルタ更新エラー" - -#: ../../operation/netflow/nf_live_view.php:208 -msgid "Draw live filter" -msgstr "ライブ表示フィルタ" - -#: ../../operation/netflow/nf_live_view.php:242 -msgid "Connection" -msgstr "接続" - -#: ../../operation/netflow/nf_live_view.php:295 -#: ../../operation/incidents/integriaims_export_csv.php:84 -#: ../../operation/incidents/configure_integriaims_incident.php:325 -#: ../../operation/incidents/list_integriaims_incidents.php:359 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 -msgid "Resolution" -msgstr "解像度" - -#: ../../operation/netflow/nf_live_view.php:295 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "間隔は解像度の長さに分割されます。" - -#: ../../operation/netflow/nf_live_view.php:322 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 -#: ../../godmode/netflow/nf_item_list.php:176 -msgid "Max. values" -msgstr "最大値" - -#: ../../operation/netflow/nf_live_view.php:336 -#: ../../godmode/netflow/nf_edit_form.php:253 -msgid "Aggregate by" -msgstr "集約" - -#: ../../operation/netflow/nf_live_view.php:339 -#: ../../godmode/netflow/nf_edit_form.php:255 -msgid "Src Ip Address" -msgstr "送信元 IP アドレス" - -#: ../../operation/netflow/nf_live_view.php:340 -#: ../../godmode/netflow/nf_edit_form.php:256 -msgid "Dst Ip Address" -msgstr "宛先 IP アドレス" - -#: ../../operation/netflow/nf_live_view.php:341 -#: ../../operation/netflow/nf_live_view.php:433 -#: ../../godmode/netflow/nf_edit_form.php:248 ../../godmode/netflow/nf_edit_form.php:257 -msgid "Src Port" -msgstr "送信元ポート" - -#: ../../operation/netflow/nf_live_view.php:342 -#: ../../operation/netflow/nf_live_view.php:425 -#: ../../godmode/netflow/nf_edit_form.php:245 ../../godmode/netflow/nf_edit_form.php:258 -msgid "Dst Port" -msgstr "宛先ポート" - -#: ../../operation/netflow/nf_live_view.php:384 -#: ../../include/class/CredentialStore.class.php:945 -#: ../../include/functions_html.php:1878 ../../include/functions_html.php:1879 -#: ../../include/functions_html.php:1989 ../../include/functions_html.php:1990 -#: ../../include/functions_html.php:2150 ../../include/functions_html.php:2151 -#: ../../enterprise/include/functions_cron.php:582 -#: ../../enterprise/include/lib/NetworkManager.php:87 -#: ../../enterprise/meta/include/functions_autoprovision.php:388 -#: ../../enterprise/meta/include/functions_wizard_meta.php:497 -#: ../../enterprise/meta/advanced/metasetup.relations.php:218 -#: ../../enterprise/meta/advanced/metasetup.relations.php:572 -#: ../../enterprise/godmode/setup/setup_acl.php:463 -#: ../../enterprise/godmode/setup/setup_acl.php:765 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 -#: ../../godmode/massive/massive_edit_modules.php:819 -#: ../../godmode/agentes/module_manager_editor_wmi.php:61 -#: ../../godmode/agentes/module_manager_editor_network.php:96 -msgid "Custom" -msgstr "カスタム" - -#: ../../operation/netflow/nf_live_view.php:396 -msgid "Select a filter" -msgstr "フィルタを選択" - -#: ../../operation/netflow/nf_live_view.php:406 -#: ../../godmode/netflow/nf_edit_form.php:239 -msgid "Dst Ip" -msgstr "宛先 IP" - -#: ../../operation/netflow/nf_live_view.php:406 -#: ../../godmode/netflow/nf_edit_form.php:239 -msgid "" -"Destination IP. A comma separated list of destination ip. If we leave the field " -"blank, will show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" -msgstr "" -"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によるフィ" -"ルタ例:
    25.46.157.214,160.253.135.249" - -#: ../../operation/netflow/nf_live_view.php:414 -#: ../../godmode/netflow/nf_edit_form.php:242 -msgid "Src Ip" -msgstr "送信元IP" - -#: ../../operation/netflow/nf_live_view.php:414 -#: ../../godmode/netflow/nf_edit_form.php:242 -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" -msgstr "" -"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IPによる" -"フィルタ例:
    25.46.157.214,160.253.135.249" - -#: ../../operation/netflow/nf_live_view.php:425 -#: ../../godmode/netflow/nf_edit_form.php:245 -msgid "" -"Destination port. A comma separated list of destination ports. If we leave the field " -"blank, will show all ports. Example filter by ports 80 and 22:
    80,22" -msgstr "" -"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポート " -"80 および 22 のフィルタ例:
    80,22" - -#: ../../operation/netflow/nf_live_view.php:433 -#: ../../godmode/netflow/nf_edit_form.php:248 -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" - -#: ../../operation/netflow/nf_live_view.php:451 ../../godmode/setup/setup_netflow.php:71 -msgid "IP address resolution can take a lot of time" -msgstr "IP アドレスの解決には多くの時間がかかります" - -#: ../../operation/netflow/nf_live_view.php:469 -msgid "IP address resolution" -msgstr "IP アドレス解決" - -#: ../../operation/netflow/nf_live_view.php:469 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "ホスト名を得るために IP アドレスから名前解決をします。" - -#: ../../operation/netflow/nf_live_view.php:472 -msgid "Source ip" -msgstr "ソース IP" - -#: ../../operation/netflow/nf_live_view.php:482 -#: ../../enterprise/meta/general/main_header.php:309 -#: ../../enterprise/meta/general/main_header.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 -#: ../../enterprise/godmode/modules/configure_local_component.php:165 -#: ../../enterprise/godmode/agentes/plugins_manager.php:126 -#: ../../enterprise/godmode/policies/policy_plugins.php:108 -#: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/configure_alert_template.php:946 -#: ../../godmode/alerts/configure_alert_template.php:987 -#: ../../godmode/alerts/configure_alert_template.php:1138 -#: ../../godmode/alerts/alert_commands.php:157 -#: ../../godmode/alerts/alert_commands.php:194 -#: ../../godmode/users/configure_user.php:1211 -msgid "Advanced" -msgstr "拡張" - -#: ../../operation/netflow/nf_live_view.php:495 -msgid "Draw" -msgstr "描画" - -#: ../../operation/netflow/nf_live_view.php:499 -msgid "Save as new filter" -msgstr "新規フィルタとして保存" - -#: ../../operation/netflow/nf_live_view.php:500 -msgid "Update current filter" -msgstr "現在のフィルタを更新" - -#: ../../operation/netflow/nf_live_view.php:514 -msgid "No filter selected" -msgstr "フィルタが選択されていません" - -#: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2290 -msgid "List of networkmap" -msgstr "ネットワークマップ一覧" - -#: ../../operation/agentes/networkmap.dinamic.php:226 -#: ../../include/functions_config.php:2407 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../operation/agentes/status_monitor.php:62 -#: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1535 ../../include/functions_events.php:4508 -#: ../../include/functions_reporting_html.php:1516 -#: ../../enterprise/meta/event/custom_events.php:56 -#: ../../enterprise/meta/event/custom_events.php:61 -#: ../../enterprise/meta/event/custom_events.php:74 -#: ../../enterprise/meta/event/custom_events.php:92 -#: ../../godmode/reporting/reporting_builder.item_editor.php:76 -#: ../../godmode/menu.php:77 ../../godmode/events/events.php:80 -#: ../../godmode/events/events.php:95 ../../godmode/massive/massive_edit_agents.php:1103 -#: ../../godmode/agentes/agent_manager.php:868 -#: ../../godmode/agentes/agent_manager.php:893 -msgid "Custom fields" -msgstr "カスタムフィールド" - -#: ../../operation/agentes/status_monitor.php:119 -msgid "Monitor view" -msgstr "モニタ表示" - -#: ../../operation/agentes/status_monitor.php:488 -#: ../../operation/agentes/interface_view.functions.php:59 -#: ../../operation/agentes/estado_agente.php:262 -#: ../../include/class/NetworkMap.class.php:3226 ../../include/functions_html.php:1535 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 -#: ../../enterprise/godmode/policies/policies.php:324 -#: ../../extensions/agents_modules.php:407 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1485 -#: ../../godmode/agentes/planned_downtime.editor.php:797 -#: ../../godmode/agentes/modificar_agente.php:352 -msgid "Recursion" -msgstr "子を含める" - -#: ../../operation/agentes/status_monitor.php:500 -#: ../../enterprise/operation/agentes/tag_view.php:139 -msgid "Monitor status" -msgstr "モニタ項目の状態" - -#: ../../operation/agentes/status_monitor.php:545 -#: ../../operation/agentes/status_monitor.php:1319 ../../include/ajax/module.php:978 -#: ../../include/ajax/heatmap.ajax.php:225 ../../include/ajax/heatmap.ajax.php:264 -#: ../../include/ajax/custom_fields.php:411 -#: ../../enterprise/operation/agentes/tag_view.php:205 -#: ../../enterprise/include/functions_reporting_csv.php:873 -#: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 -#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../godmode/modules/manage_network_components.php:748 -#: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components_form_wizard.php:271 -#: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 -#: ../../godmode/agentes/agent_template.php:235 -#: ../../godmode/alerts/alert_list.list.php:89 -msgid "Module name" -msgstr "モジュール名" - -#: ../../operation/agentes/status_monitor.php:559 -#: ../../operation/agentes/alerts_status.functions.php:107 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -msgid "Only it is show tags in use." -msgstr "利用中のタグのみ表示します。" - -#: ../../operation/agentes/status_monitor.php:564 -#: ../../operation/agentes/alerts_status.functions.php:112 -#: ../../enterprise/operation/agentes/tag_view.php:229 -msgid "No tags" -msgstr "タグ無し" - -#: ../../operation/agentes/status_monitor.php:625 -#: ../../enterprise/operation/agentes/tag_view.php:278 -#: ../../godmode/agentes/module_manager_editor_data.php:15 -msgid "Data server module" -msgstr "データサーバモジュール" - -#: ../../operation/agentes/status_monitor.php:627 -#: ../../enterprise/operation/agentes/tag_view.php:280 -#: ../../godmode/agentes/module_manager_editor_network.php:77 -msgid "Network server module" -msgstr "ネットワークサーバモジュール" - -#: ../../operation/agentes/status_monitor.php:631 -#: ../../enterprise/operation/agentes/tag_view.php:284 -#: ../../godmode/agentes/module_manager_editor_plugin.php:46 -msgid "Plugin server module" -msgstr "プラグインサーバモジュール" - -#: ../../operation/agentes/status_monitor.php:635 -#: ../../enterprise/operation/agentes/tag_view.php:288 -#: ../../godmode/agentes/module_manager_editor_wmi.php:33 -msgid "WMI server module" -msgstr "WMI サーバモジュール" - -#: ../../operation/agentes/status_monitor.php:639 -#: ../../enterprise/operation/agentes/tag_view.php:292 -#: ../../godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Prediction server module" -msgstr "予測サーバモジュール" - -#: ../../operation/agentes/status_monitor.php:643 -#: ../../enterprise/operation/agentes/tag_view.php:296 -#: ../../godmode/agentes/module_manager_editor_web.php:55 -msgid "Web server module" -msgstr "ウェブサーバモジュール" - -#: ../../operation/agentes/status_monitor.php:645 -msgid "Wux server module" -msgstr "Wux サーバモジュール" - -#: ../../operation/agentes/status_monitor.php:650 -#: ../../operation/agentes/status_monitor.php:1324 -#: ../../enterprise/operation/agentes/tag_view.php:299 -#: ../../enterprise/operation/agentes/tag_view.php:680 -#: ../../godmode/agentes/status_monitor_custom_fields.php:89 -#: ../../godmode/agentes/status_monitor_custom_fields.php:146 -msgid "Server type" -msgstr "サーバの種類" - -#: ../../operation/agentes/status_monitor.php:656 -#: ../../enterprise/operation/agentes/tag_view.php:305 -#: ../../godmode/agentes/modificar_agente.php:324 -msgid "Only enabled" -msgstr "有効のもののみ" - -#: ../../operation/agentes/status_monitor.php:657 -#: ../../enterprise/operation/agentes/tag_view.php:306 -#: ../../godmode/agentes/modificar_agente.php:323 -msgid "Only disabled" -msgstr "無効のもののみ" - -#: ../../operation/agentes/status_monitor.php:660 -#: ../../enterprise/operation/agentes/tag_view.php:309 -msgid "Show monitors..." -msgstr "監視の有効・無効" - -#: ../../operation/agentes/status_monitor.php:666 -msgid "Min. hours in current status" -msgstr "現在の状態の最小時間" - -#: ../../operation/agentes/status_monitor.php:671 -#: ../../enterprise/operation/agentes/tag_view.php:319 -#: ../../enterprise/operation/agentes/tag_view.php:679 -#: ../../godmode/agentes/status_monitor_custom_fields.php:81 -#: ../../godmode/agentes/status_monitor_custom_fields.php:144 -msgid "Data type" -msgstr "データのタイプ" - -#: ../../operation/agentes/status_monitor.php:776 -msgid "Not condition" -msgstr "状態なし" - -#: ../../operation/agentes/status_monitor.php:776 -msgid "" -"If you check this option, those elements that do NOT meet any of the requirements " -"will be shown" -msgstr "このオプションをチェックすると、どの要件も満たさない要素が表示されます" - -#: ../../operation/agentes/status_monitor.php:845 -msgid "Advanced Options" -msgstr "高度なオプション" - -#: ../../operation/agentes/status_monitor.php:854 -msgid "Show filters" -msgstr "フィルタ表示" - -#: ../../operation/agentes/status_monitor.php:863 -#: ../../operation/agentes/agent_fields.php:37 -#: ../../enterprise/operation/agentes/tag_view.php:447 -msgid "Agent custom fields" -msgstr "エージェントカスタムフィールド" - -#: ../../operation/agentes/status_monitor.php:1303 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:573 ../../include/ajax/module.php:974 -#: ../../include/ajax/alert_list.ajax.php:272 -#: ../../enterprise/operation/agentes/policy_view.php:67 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../enterprise/include/functions_policies.php:4068 -#: ../../enterprise/meta/advanced/policymanager.sync.php:319 -#: ../../enterprise/meta/advanced/policymanager.queue.php:210 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/extensions/resource_exportation/functions.php:18 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/plugins_manager.php:193 -#: ../../enterprise/godmode/policies/policy_queue.php:593 -#: ../../enterprise/godmode/policies/policy_queue.php:647 -#: ../../godmode/agentes/module_manager.php:841 -#: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/alerts/alert_view.php:148 -msgid "Policy" -msgstr "ポリシー" - -#: ../../operation/agentes/status_monitor.php:1303 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:573 ../../include/ajax/module.php:974 -#: ../../include/ajax/alert_list.ajax.php:272 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/graph_builder.graph_editor.php:211 -#: ../../godmode/snmpconsole/snmp_alert.php:1217 -#: ../../godmode/agentes/module_manager.php:841 -msgid "P." -msgstr "P." - -#: ../../operation/agentes/status_monitor.php:1313 -msgid "Data Type" -msgstr "データのタイプ" - -#: ../../operation/agentes/status_monitor.php:1341 -#: ../../operation/agentes/estado_generalagente.php:417 -#: ../../include/functions_treeview.php:326 -#: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 -msgid "Last status change" -msgstr "最新の状態変化" - -#: ../../operation/agentes/status_monitor.php:1352 -#: ../../enterprise/operation/agentes/tag_view.php:683 -#: ../../godmode/agentes/module_manager.php:864 -#: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -msgid "Warn" -msgstr "警告" - -#: ../../operation/agentes/status_monitor.php:1432 -#: ../../operation/agentes/pandora_networkmap.view.php:1743 -msgid "(Adopt) " -msgstr "(適用) " - -#: ../../operation/agentes/status_monitor.php:1440 -#: ../../operation/agentes/pandora_networkmap.view.php:1751 -msgid "(Unlinked) (Adopt) " -msgstr "(未リンク) (適用) " - -#: ../../operation/agentes/status_monitor.php:1443 -#: ../../operation/agentes/pandora_networkmap.view.php:1754 -msgid "(Unlinked) " -msgstr "(未リンク) " - -#: ../../operation/agentes/status_monitor.php:1642 -#: ../../operation/agentes/status_monitor.php:1650 -#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:565 -#: ../../include/functions_modules.php:4088 ../../include/functions.php:1357 -#: ../../include/functions.php:1394 -msgid "NO DATA" -msgstr "データがありません" - -#: ../../operation/agentes/status_monitor.php:1981 -msgid "This group doesn't have any monitor" -msgstr "該当するモニタ項目がありません。" - -#: ../../operation/agentes/status_monitor.php:1983 -msgid "Sorry no search parameters" -msgstr "検索パラメータがありません" - -#: ../../operation/agentes/alerts_status.php:209 -#: ../../enterprise/meta/general/main_menu.php:206 -#: ../../enterprise/meta/general/main_header.php:115 -msgid "Alerts view" -msgstr "アラート表示" - -#: ../../operation/agentes/alerts_status.php:217 -msgid "Insufficient permissions to validate alerts" -msgstr "アラートを承諾するのに必要な権限がありません。" - -#: ../../operation/agentes/alerts_status.php:500 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:372 -#: ../../godmode/alerts/alert_list.list.php:178 -msgid "Alert control filter" -msgstr "アラートフィルタ" - -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:610 -#: ../../operation/agentes/alerts_status.php:643 -#: ../../operation/agentes/alerts_status.functions.php:123 -#: ../../include/ajax/alert_list.ajax.php:273 ../../include/ajax/alert_list.ajax.php:298 -#: ../../enterprise/operation/agentes/policy_view.php:257 -#: ../../godmode/alerts/alert_list.list.php:141 -msgid "Standby" -msgstr "スタンバイ" - -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:575 -#: ../../operation/agentes/alerts_status.php:610 -#: ../../operation/agentes/alerts_status.php:643 -#: ../../include/ajax/alert_list.ajax.php:273 ../../include/ajax/alert_list.ajax.php:298 -#: ../../include/class/AuditLog.class.php:128 ../../include/functions_events.php:2602 -#: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:257 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../mobile/operation/agents.php:406 ../../godmode/agentes/module_manager.php:844 -msgid "S." -msgstr "S." - -#: ../../operation/agentes/alerts_status.php:543 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../operation/agentes/alerts_status.php:613 -#: ../../operation/agentes/alerts_status.php:646 ../../include/ajax/module.php:970 -#: ../../include/ajax/alert_list.ajax.php:276 ../../include/ajax/alert_list.ajax.php:301 -msgid "Force execution" -msgstr "確認の強制(再)実行" - -#: ../../operation/agentes/alerts_status.php:543 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../operation/agentes/alerts_status.php:613 -#: ../../operation/agentes/alerts_status.php:646 ../../include/ajax/module.php:970 -#: ../../include/ajax/alert_list.ajax.php:276 ../../include/ajax/alert_list.ajax.php:301 -msgid "F." -msgstr "F." - -#: ../../operation/agentes/alerts_status.php:549 -#: ../../operation/agentes/alerts_status.php:584 -#: ../../operation/agentes/alerts_status.php:619 -#: ../../operation/agentes/alerts_status.php:651 ../../operation/search_alerts.php:36 -#: ../../include/functions_cron.php:653 ../../include/ajax/alert_list.ajax.php:280 -#: ../../include/ajax/alert_list.ajax.php:305 -#: ../../include/class/AgentsAlerts.class.php:338 -#: ../../include/class/AgentsAlerts.class.php:976 -#: ../../include/functions_treeview.php:412 ../../include/functions_treeview.php:453 -#: ../../include/functions_reporting_html.php:3133 -#: ../../include/functions_reporting_html.php:3136 -#: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/functions_tasklist.php:328 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:351 -#: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../mobile/operation/alerts.php:342 -#: ../../godmode/reporting/reporting_builder.item_editor.php:201 -#: ../../godmode/reporting/reporting_builder.item_editor.php:825 -#: ../../godmode/alerts/alert_list.list.php:483 -#: ../../godmode/alerts/alert_list.builder.php:140 -#: ../../godmode/alerts/alert_view.php:95 -msgid "Template" -msgstr "テンプレート" - -#: ../../operation/agentes/alerts_status.php:551 -#: ../../operation/agentes/alerts_status.php:586 -#: ../../operation/agentes/alerts_status.php:621 -#: ../../operation/agentes/alerts_status.php:653 -#: ../../include/ajax/alert_list.ajax.php:282 ../../include/ajax/alert_list.ajax.php:307 -#: ../../include/class/AgentsAlerts.class.php:905 -#: ../../include/functions_treeview.php:455 -#: ../../include/functions_reporting_html.php:5158 -#: ../../enterprise/operation/agentes/policy_view.php:261 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 -#: ../../godmode/snmpconsole/snmp_alert.php:1238 ../../godmode/alerts/alert_view.php:99 -msgid "Last fired" -msgstr "通知日時" - -#: ../../operation/agentes/alerts_status.php:732 -#: ../../include/ajax/alert_list.ajax.php:328 -msgid "No alerts found" -msgstr "該当するアラートがありません。" - -#: ../../operation/agentes/alerts_status.php:742 -msgid "Full list of alerts" -msgstr "アラートのフィルタ一覧" - -#: ../../operation/agentes/ehorus.php:30 -msgid "Missing agent id" -msgstr "エージェントIDがありません" - -#: ../../operation/agentes/ehorus.php:51 -msgid "Missing ehorus agent id" -msgstr "ehorus エージェントIDがありません" - -#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137 -msgid "There was an error retrieving an authorization token" -msgstr "認証トークン取得中にエラーが発生しました" - -#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149 -#: ../../operation/agentes/ehorus.php:185 -msgid "There was an error processing the response" -msgstr "応答処理エラーが発生しました" - -#: ../../operation/agentes/ehorus.php:173 -msgid "There was an error retrieving the agent data" -msgstr "エージェントデータ取得エラーが発生しました" - -#: ../../operation/agentes/ehorus.php:190 -msgid "Remote management of this agent with eHorus" -msgstr "このエージェントの eHorus でのリモート管理" - -#: ../../operation/agentes/ehorus.php:192 -msgid "Launch" -msgstr "起動" - -#: ../../operation/agentes/ehorus.php:198 -msgid "The connection was lost and the authorization token was expired" -msgstr "接続が切れました、認証トークンが期限切れです" - -#: ../../operation/agentes/ehorus.php:198 -msgid "Reload the page to request a new authorization token" -msgstr "新たな認証トークンの取得にはページを再読み込みしてください" - -#: ../../operation/agentes/group_view.php:80 ../../operation/agentes/tactical.php:60 -#: ../../enterprise/tools/ipam/ipam_list.php:631 -#: ../../enterprise/views/ncm/devices/list.php:122 -#: ../../enterprise/operation/services/services.service.php:133 -#: ../../enterprise/operation/services/services.list.php:510 -#: ../../extensions/agents_modules.php:317 -msgid "Last update" -msgstr "最終更新" - -#: ../../operation/agentes/group_view.php:180 -msgid "Summary of the status groups" -msgstr "グループの状態概要" - -#: ../../operation/agentes/group_view.php:183 ../../operation/agentes/group_view.php:216 -#: ../../operation/agentes/interface_view.functions.php:71 -#: ../../operation/search_results.php:80 ../../include/functions_cron.php:663 -#: ../../include/class/AgentsAlerts.class.php:252 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/class/Diagnostics.class.php:1161 -#: ../../include/class/Diagnostics.class.php:1165 -#: ../../include/class/Diagnostics.class.php:1169 -#: ../../include/class/Diagnostics.class.php:1173 -#: ../../include/class/NetworkMap.class.php:3228 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:311 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:316 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/functions_groups.php:53 ../../include/functions_html.php:1645 -#: ../../include/functions_reporting_html.php:1816 -#: ../../include/functions_reporting_html.php:2285 -#: ../../include/functions_reporting_html.php:3034 -#: ../../enterprise/operation/services/services.service_map.php:123 -#: ../../enterprise/include/functions_cron.php:215 -#: ../../enterprise/include/functions_tasklist.php:338 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_policies.php:3822 -#: ../../enterprise/meta/include/functions_autoprovision.php:476 -#: ../../enterprise/meta/monitoring/group_view.php:154 -#: ../../enterprise/meta/monitoring/group_view.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:304 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:205 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361 -#: ../../enterprise/godmode/massive/massive_create_services.php:964 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 -#: ../../enterprise/godmode/agentes/collections.editor.php:74 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/collections.data.php:137 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../enterprise/godmode/policies/policy_agents.php:531 -#: ../../enterprise/godmode/policies/policy_agents.php:664 -#: ../../enterprise/godmode/policies/policy_agents.php:778 -#: ../../enterprise/godmode/policies/policy.php:71 -#: ../../enterprise/godmode/policies/policy_queue.php:648 -#: ../../enterprise/godmode/policies/policies.php:407 -#: ../../enterprise/godmode/policies/policies.php:531 -#: ../../extensions/agents_modules.php:431 ../../extensions/agents_modules.php:758 -#: ../../mobile/operation/agent.php:155 ../../mobile/operation/home.php:81 -#: ../../mobile/operation/agents.php:204 ../../mobile/include/functions_web.php:23 -#: ../../godmode/reporting/reporting_builder.list_items.php:208 -#: ../../godmode/reporting/reporting_builder.list_items.php:229 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1671 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1733 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1980 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 -#: ../../godmode/massive/massive_add_alerts.php:231 -#: ../../godmode/massive/massive_delete_modules.php:535 -#: ../../godmode/massive/massive_standby_alerts.php:203 -#: ../../godmode/massive/massive_edit_agents.php:566 -#: ../../godmode/massive/massive_delete_alerts.php:308 -#: ../../godmode/massive/massive_delete_agents.php:280 -#: ../../godmode/massive/massive_edit_plugins.php:367 -#: ../../godmode/massive/massive_enable_disable_alerts.php:174 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/agentes/planned_downtime.list.php:84 -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/alerts/alert_list.list.php:69 -msgid "Agents" -msgstr "エージェント" - -#: ../../operation/agentes/group_view.php:221 ../../operation/agentes/group_view.php:276 -#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../enterprise/include/functions_ipam.php:1384 -#: ../../enterprise/godmode/agentes/inventory_manager.php:257 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:584 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:674 -msgid "Force" -msgstr "強制する" - -#: ../../operation/agentes/group_view.php:313 -#: ../../enterprise/meta/monitoring/group_view.php:359 -#, 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/group_view.php:570 -#: ../../operation/agentes/estado_agente.php:975 -#: ../../enterprise/meta/monitoring/group_view.php:205 -#: ../../godmode/agentes/modificar_agente.php:944 -msgid "There are no defined agents" -msgstr "定義されたエージェントがありません" - -#: ../../operation/agentes/graphs.php:143 -msgid "Other modules" -msgstr "他のモジュール" - -#: ../../operation/agentes/graphs.php:150 -msgid "Modules network no proc" -msgstr "proc以外のネットワークモジュール" - -#: ../../operation/agentes/graphs.php:157 -msgid "Modules boolean" -msgstr "ブーリアン(二値)モジュール" - -#: ../../operation/agentes/graphs.php:207 ../../operation/agentes/stat_win.php:302 -#: ../../operation/agentes/stat_win.php:421 ../../operation/agentes/exportdata.php:318 -#: ../../operation/agentes/interface_traffic_graph_win.php:181 -#: ../../mobile/operation/module_graph.php:461 -msgid "Begin date" -msgstr "開始日時" - -#: ../../operation/agentes/graphs.php:222 ../../operation/agentes/stat_win.php:278 -msgid "Show events" -msgstr "イベント表示" - -#: ../../operation/agentes/graphs.php:224 ../../operation/agentes/stat_win.php:312 -msgid "Show alerts" -msgstr "アラート表示" - -#: ../../operation/agentes/graphs.php:224 -msgid "the combined graph does not show the alerts into this graph" -msgstr "組み合わせグラフは、グラフ内にアラートを表示しません" - -#: ../../operation/agentes/graphs.php:226 -msgid "Show as one combined graph" -msgstr "一つの組み合わせグラフとして表示" - -#: ../../operation/agentes/graphs.php:228 -msgid "several graphs for each module" -msgstr "モジュールごとの複数のグラフ" - -#: ../../operation/agentes/graphs.php:229 -msgid "One combined graph" -msgstr "一つの組み合わせグラフ" - -#: ../../operation/agentes/graphs.php:233 ../../godmode/netflow/nf_item_list.php:177 -msgid "Chart type" -msgstr "グラフタイプ" - -#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:413 -msgid "Area stack" -msgstr "塗りつぶし積み重ね" - -#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:421 -msgid "Line stack" -msgstr "線の積み重ね" - -#: ../../operation/agentes/graphs.php:256 -msgid "Save as custom graph" -msgstr "カスタムグラフとして保存" - -#: ../../operation/agentes/graphs.php:269 -msgid "Filter graphs" -msgstr "グラフフィルタ" - -#: ../../operation/agentes/graphs.php:296 -msgid "There was an error loading the graph" -msgstr "グラフロード中にエラーが発生しました" - -#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308 -msgid "Name custom graph" -msgstr "カスタムグラフ名" - -#: ../../operation/agentes/graphs.php:342 -#: ../../enterprise/views/ncm/agent/manage.php:259 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -#: ../../enterprise/godmode/reporting/mysql_builder.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 -#: ../../extensions/insert_data.php:208 ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/setup/gis_step_2.php:521 -#: ../../godmode/reporting/reporting_builder.main.php:45 -#: ../../godmode/reporting/visual_console_builder.data.php:229 -msgid "Save" -msgstr "保存" - -#: ../../operation/agentes/graphs.php:354 -msgid "Save custom graph" -msgstr "カスタムグラフの保存" - -#: ../../operation/agentes/graphs.php:375 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "エージェントのグラフタブからカスタムグラフを作成" - -#: ../../operation/agentes/estado_monitores.php:51 -msgid "Tag's information" -msgstr "タグ情報" - -#: ../../operation/agentes/estado_monitores.php:109 -msgid "Relationship information" -msgstr "関係情報" - -#: ../../operation/agentes/estado_monitores.php:160 -msgid "Non-initialized modules found." -msgstr "未初期化モジュールがあります。" - -#: ../../operation/agentes/estado_monitores.php:181 -msgid "List of modules" -msgstr "モジュールの一覧" - -#: ../../operation/agentes/estado_monitores.php:182 -msgid "" -"To see the list of modules paginated, enable this option in the Styles Configuration." -msgstr "" -"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化します。" - -#: ../../operation/agentes/estado_monitores.php:518 -msgid "Status:" -msgstr "状態:" - -#: ../../operation/agentes/estado_monitores.php:524 -msgid "Not Normal" -msgstr "非正常" - -#: ../../operation/agentes/estado_monitores.php:539 -#: ../../operation/agentes/alerts_status.functions.php:177 -msgid "Free text for search (*):" -msgstr "検索文字列 (*):" - -#: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." -msgstr "モジュール名による検索にマッチした一覧を表示" - -#: ../../operation/agentes/estado_monitores.php:582 -#: ../../godmode/agentes/module_manager.php:192 -msgid "Show in hierachy mode" -msgstr "階層モードで表示" - -#: ../../operation/agentes/estado_monitores.php:602 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1953 -msgid "Reset" -msgstr "リセット" - -#: ../../operation/agentes/interface_view.functions.php:93 -#: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1401 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 -msgid "Interfaces" -msgstr "インタフェース" - -#: ../../operation/agentes/interface_view.functions.php:170 -#: ../../operation/agentes/interface_view.functions.php:171 -msgid "Interface filter" -msgstr "インタフェースフィルタ" - -#: ../../operation/agentes/interface_view.functions.php:489 -msgid "IfName" -msgstr "IfName" - -#: ../../operation/agentes/interface_view.functions.php:499 -msgid "IfSpeed" -msgstr "IfSpeed" - -#: ../../operation/agentes/interface_view.functions.php:507 -msgid "IfInOctets" -msgstr "IfInOctets" - -#: ../../operation/agentes/interface_view.functions.php:515 -msgid "IfOutOctets" -msgstr "IfOutOctets" - -#: ../../operation/agentes/interface_view.functions.php:523 -msgid "% Bandwidth usage (in)" -msgstr "% 帯域幅使用量 (in)" - -#: ../../operation/agentes/interface_view.functions.php:531 -msgid "% Bandwidth usage (out)" -msgstr "% 帯域幅使用量 (out)" - -#: ../../operation/agentes/interface_view.functions.php:539 -#: ../../include/functions_treeview.php:319 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5480 -#: ../../enterprise/include/functions_reporting_pdf.php:1988 -msgid "Last data" -msgstr "最新データ" - -#: ../../operation/agentes/interface_view.functions.php:736 -msgid "No search parameters" -msgstr "検索パラメータがありません" - -#: ../../operation/agentes/stat_win.php:51 ../../operation/agentes/stat_win.php:176 -#: ../../operation/agentes/realtime_win.php:51 -#: ../../operation/agentes/interface_traffic_graph_win.php:54 -#: ../../include/chart_generator.php:125 -#: ../../enterprise/operation/inventory/inventory.php:191 -msgid "There was a problem connecting with the node" -msgstr "ノード接続で問題が発生しました" - -#: ../../operation/agentes/stat_win.php:116 -#, php-format -msgid "%s Graph" -msgstr "%s グラフ" - -#: ../../operation/agentes/stat_win.php:149 -msgid "There was a problem locating the source of the graph" -msgstr "グラフの場所に問題があります。" - -#: ../../operation/agentes/stat_win.php:267 -#: ../../operation/agentes/interface_traffic_graph_win.php:167 -msgid "Refresh time" -msgstr "更新時間" - -#: ../../operation/agentes/stat_win.php:297 -#, php-format -msgid "'Show events' is disabled because this %s node is set to event replication." -msgstr "" -"この %s ノードはイベントを複製するように設定されているため、’イベント表示' は無効で" -"す。" - -#: ../../operation/agentes/stat_win.php:320 ../../operation/agentes/stat_win.php:431 -#: ../../operation/agentes/interface_traffic_graph_win.php:207 -msgid "Begin time" -msgstr "開始時間" - -#: ../../operation/agentes/stat_win.php:330 ../../mobile/operation/module_graph.php:444 -msgid "Show unknown graph" -msgstr "不明グラフ表示" - -#: ../../operation/agentes/stat_win.php:353 -msgid "Zoom" -msgstr "ズーム" - -#: ../../operation/agentes/stat_win.php:373 -#: ../../operation/agentes/interface_traffic_graph_win.php:227 -msgid "Show percentil" -msgstr "パーセント表示" - -#: ../../operation/agentes/stat_win.php:382 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:543 -#: ../../mobile/operation/module_graph.php:436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2507 -msgid "Time compare (Overlapped)" -msgstr "時間比較 (重ね合わせ)" - -#: ../../operation/agentes/stat_win.php:390 ../../operation/agentes/stat_win.php:452 -#: ../../mobile/operation/module_graph.php:428 -msgid "Time compare (Separated)" -msgstr "時間比較 (分割)" - -#: ../../operation/agentes/stat_win.php:399 -msgid "Show AVG/MAX/MIN data series in graph" -msgstr "グラウに平均/最大/最小データを表示" - -#: ../../operation/agentes/stat_win.php:408 -#: ../../operation/agentes/interface_traffic_graph_win.php:238 -#: ../../godmode/reporting/create_container.php:437 -#: ../../godmode/reporting/create_container.php:494 -#: ../../godmode/reporting/create_container.php:589 -#: ../../godmode/reporting/graph_builder.main.php:285 -msgid "Show full scale graph (TIP)" -msgstr "詳細グラフ表示 (TIP)" - -#: ../../operation/agentes/stat_win.php:410 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2488 -msgid "" -"TIP mode charts do not support average - maximum - minimum series, you can only " -"enable TIP or average, maximum or minimum series" -msgstr "" -"詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最大、最" -"小を有効にできます" - -#: ../../operation/agentes/stat_win.php:464 -#: ../../operation/agentes/interface_traffic_graph_win.php:276 -#: ../../enterprise/views/cluster/view.php:441 -msgid "Reload" -msgstr "再読み込み" - -#: ../../operation/agentes/stat_win.php:502 -#: ../../operation/agentes/interface_traffic_graph_win.php:306 -msgid "Graph configuration menu" -msgstr "グラフ設定メニュー" - -#: ../../operation/agentes/stat_win.php:504 -#: ../../operation/agentes/interface_traffic_graph_win.php:308 -#: ../../include/ajax/module.php:399 -msgid "" -"In Pandora FMS, data is stored compressed. The data visualization in database, charts " -"or CSV exported data won't match, because is interpreted at runtime. Please check " -"'Pandora FMS Engineering' chapter from documentation." -msgstr "" -"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラフ、また" -"は CSV エクスポートデータは、実行時に解釈されるため一致しません。 ドキュメントの " -"'Pandora FMS の技術情報' の章を確認してください。" - -#: ../../operation/agentes/pandora_networkmap.php:139 -#: ../../operation/agentes/pandora_networkmap.php:374 -msgid "Succesfully created" -msgstr "作成しました" - -#: ../../operation/agentes/pandora_networkmap.php:140 -#: ../../operation/agentes/pandora_networkmap.php:375 -#: ../../include/functions_alerts.php:2745 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:827 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 -#: ../../enterprise/tools/ipam/ipam_action.php:153 -#: ../../enterprise/operation/agentes/transactional_map.php:135 -#: ../../enterprise/include/ajax/servers.ajax.php:198 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:126 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/modules/local_components.php:142 -#: ../../enterprise/godmode/modules/local_components.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 -#: ../../enterprise/godmode/policies/policies.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 -#: ../../godmode/setup/news.php:67 ../../godmode/setup/gis.php:49 -#: ../../godmode/modules/manage_network_components.php:199 -#: ../../godmode/modules/manage_network_components.php:427 -#: ../../godmode/modules/manage_nc_groups.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5695 -#: ../../godmode/agentes/configurar_agente.php:350 -#: ../../godmode/agentes/configurar_agente.php:875 -#: ../../godmode/agentes/planned_downtime.editor.php:406 -#: ../../godmode/alerts/configure_alert_template.php:192 -#: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../godmode/alerts/alert_commands.php:559 ../../godmode/alerts/alert_list.php:165 -#: ../../godmode/users/configure_user.php:475 -msgid "Could not be created" -msgstr "作成に失敗しました。" - -#: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:507 -msgid "Succesfully updated" -msgstr "更新しました" - -#: ../../operation/agentes/pandora_networkmap.php:532 -msgid "Succesfully duplicate" -msgstr "複製しました" - -#: ../../operation/agentes/pandora_networkmap.php:533 -#: ../../enterprise/godmode/policies/policy_modules.php:1412 -msgid "Could not be duplicated" -msgstr "複製できません" - -#: ../../operation/agentes/pandora_networkmap.php:546 -msgid "Succesfully deleted" -msgstr "削除しました" - -#: ../../operation/agentes/pandora_networkmap.php:656 -msgid "List of network maps" -msgstr "ネットワークマップの一覧" - -#: ../../operation/agentes/pandora_networkmap.php:669 -#: ../../operation/agentes/pandora_networkmap.editor.php:218 -#: ../../operation/agentes/pandora_networkmap.view.php:2230 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 -msgid "Networkmap" -msgstr "ネットワークマップ" - -#: ../../operation/agentes/pandora_networkmap.php:708 -#: ../../include/functions_reporting_html.php:5589 -#: ../../enterprise/views/cluster/list.php:62 -msgid "Nodes" -msgstr "ノード" - -#: ../../operation/agentes/pandora_networkmap.php:776 -msgid "Empty map" -msgstr "空マップ" - -#: ../../operation/agentes/pandora_networkmap.php:778 -#: ../../include/functions_reporting.php:1060 ../../include/functions_reporting.php:8923 -#: ../../include/functions_maps.php:50 -#: ../../enterprise/include/functions_reporting.php:2535 -#: ../../enterprise/include/functions_reporting.php:3479 -#: ../../enterprise/include/functions_reporting.php:4454 -#: ../../enterprise/godmode/services/services.elements.php:99 -msgid "Dynamic" -msgstr "動的" - -#: ../../operation/agentes/pandora_networkmap.php:780 -msgid "Pending to generate" -msgstr "生成の保留" - -#: ../../operation/agentes/pandora_networkmap.php:811 -msgid "There are no maps defined." -msgstr "定義済マップがありません。" - -#: ../../operation/agentes/pandora_networkmap.php:818 -msgid "Create network map" -msgstr "ネットワークマップ作成" - -#: ../../operation/agentes/pandora_networkmap.php:825 -msgid "Create empty network map" -msgstr "空のネットワークマップ作成" - -#: ../../operation/agentes/realtime_win.php:85 -#, php-format -msgid "%s Realtime Module Graph" -msgstr "%s リアルタイムモジュールグラフ" - -#: ../../operation/agentes/realtime_win.php:112 -msgid "Realtime extension is not enabled." -msgstr "リアルタイム実行が無効です。" - -#: ../../operation/agentes/log_sources_status.php:57 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853 -msgid "Review" -msgstr "確認" - -#: ../../operation/agentes/log_sources_status.php:75 -msgid "Review in log viewer" -msgstr "ログビューワで確認" - -#: ../../operation/agentes/log_sources_status.php:98 -msgid "No log sources found" -msgstr "ログソースが見つかりません" - -#: ../../operation/agentes/log_sources_status.php:117 -msgid "Log sources status" -msgstr "ログソースの状態" - -#: ../../operation/agentes/exportdata.csv.php:66 -#: ../../operation/agentes/exportdata.php:71 -#: ../../operation/agentes/exportdata.excel.php:66 -msgid "Invalid time specified" -msgstr "時間が正しくありません。" - -#: ../../operation/agentes/exportdata.csv.php:178 -#: ../../operation/agentes/exportdata.php:209 -#: ../../operation/agentes/exportdata.excel.php:161 -msgid "No modules specified" -msgstr "モジュールが指定されていません。" - -#: ../../operation/agentes/exportdata.php:248 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:153 -msgid "Source agent" -msgstr "対象エージェント" - -#: ../../operation/agentes/exportdata.php:283 -msgid "No modules of type string. You can not calculate their average" -msgstr "文字列タイプのモジュールは対象外です。また、平均の計算はできません。" - -#: ../../operation/agentes/exportdata.php:375 -msgid "Export type" -msgstr "エクスポート形式" - -#: ../../operation/agentes/exportdata.php:378 ../../include/functions_netflow.php:1184 -msgid "Data table" -msgstr "データの表示" - -#: ../../operation/agentes/exportdata.php:379 -#: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 -#: ../../extensions/insert_data.php:199 -msgid "CSV" -msgstr "CSVファイル" - -#: ../../operation/agentes/exportdata.php:380 -msgid "MS Excel" -msgstr "MS Excelファイル" - -#: ../../operation/agentes/exportdata.php:381 -msgid "Average per hour/day" -msgstr "平均の表示" - -#: ../../operation/agentes/exportdata.php:389 -#: ../../enterprise/include/functions_reporting.php:8135 -#: ../../enterprise/extensions/resource_exportation/functions.php:21 -#: ../../extensions/resource_exportation.php:435 -#: ../../extensions/resource_exportation.php:438 -msgid "Export" -msgstr "エクスポート" - -#: ../../operation/agentes/tactical.php:201 -msgid "Report of State" -msgstr "状態レポート" - -#: ../../operation/agentes/tactical.php:228 ../../include/functions_events.php:2588 -msgid "Latest events" -msgstr "最新のイベント" - -#: ../../operation/agentes/tactical.php:245 ../../include/functions_events.php:2731 -msgid "Event graph" -msgstr "イベントグラフ" - -#: ../../operation/agentes/tactical.php:248 ../../include/functions_events.php:2733 -msgid "Event graph by agent" -msgstr "エージェントごとのイベントグラフ" - -#: ../../operation/agentes/tactical.php:254 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2915 -msgid "Event graphs" -msgstr "イベントグラフ" - -#: ../../operation/agentes/alerts_status.functions.php:50 -msgid "Alert(s) validated" -msgstr "アラートを承諾しました。" - -#: ../../operation/agentes/alerts_status.functions.php:51 -msgid "Error processing alert(s)" -msgstr "アラート処理エラー" - -#: ../../operation/agentes/alerts_status.functions.php:93 -#: ../../mobile/operation/alerts.php:64 ../../godmode/alerts/alert_list.list.php:135 -msgid "All (Enabled)" -msgstr "全て(有効状態のもの)" - -#: ../../operation/agentes/alerts_status.functions.php:101 -#: ../../include/functions_ui.php:1155 -#: ../../enterprise/operation/agentes/policy_view.php:292 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3273 -#: ../../mobile/operation/alerts.php:73 ../../godmode/alerts/alert_list.list.php:143 -msgid "Standby on" -msgstr "スタンバイ状態" - -#: ../../operation/agentes/alerts_status.functions.php:102 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3267 -#: ../../mobile/operation/alerts.php:74 ../../godmode/alerts/alert_list.list.php:144 -msgid "Standby off" -msgstr "非スタンバイ状態" - -#: ../../operation/agentes/alerts_status.functions.php:117 -#: ../../operation/agentes/datos_agente.php:211 -msgid "Free text for search" -msgstr "検索文字列" - -#: ../../operation/agentes/alerts_status.functions.php:118 -msgid "Filter by agent name, module name, template name or action name" -msgstr "エージェント名、モジュール名、テンプレート名および、アクション名でのフィルタ" - -#: ../../operation/agentes/alerts_status.functions.php:129 -msgid "No actions" -msgstr "アクションがありません" - -#: ../../operation/agentes/alerts_status.functions.php:178 -msgid "Filter by module name, template name or action name" -msgstr "モジュール名、テンプレート名、アクション名によるフィルタ" - -#: ../../operation/agentes/custom_fields.php:24 -#: ../../operation/agentes/estado_generalagente.php:62 -#: ../../operation/agentes/agent_fields.php:24 ../../include/functions_treeview.php:564 -msgid "There was a problem loading agent" -msgstr "エージェントのロードに失敗しました。" - -#: ../../operation/agentes/custom_fields.php:59 -msgid "No fields defined" -msgstr "フィールドが定義されていません。" - -#: ../../operation/agentes/custom_fields.php:65 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2656 -#: ../../godmode/agentes/fields_manager.php:119 ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:564 -msgid "Field" -msgstr "フィールド" - -#: ../../operation/agentes/custom_fields.php:67 -#: ../../godmode/agentes/configure_field.php:95 -#: ../../godmode/agentes/fields_manager.php:120 -msgid "Display on front" -msgstr "前面に表示" - -#: ../../operation/agentes/custom_fields.php:67 -#: ../../godmode/agentes/configure_field.php:96 -#: ../../godmode/agentes/fields_manager.php:120 -msgid "" -"The fields with display on front enabled will be displayed into the agent details" -msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" - -#: ../../operation/agentes/custom_fields.php:90 -#: ../../operation/agentes/agent_fields.php:47 -msgid "empty" -msgstr "空" - -#: ../../operation/agentes/datos_agente.php:173 -msgid "Received data from" -msgstr "収集データ:" - -#: ../../operation/agentes/datos_agente.php:180 -msgid "Main database" -msgstr "メインデータベース" - -#: ../../operation/agentes/datos_agente.php:180 -#: ../../enterprise/include/functions_setup.php:67 -#: ../../enterprise/include/functions_setup.php:119 -#: ../../enterprise/godmode/menu.php:148 -msgid "History database" -msgstr "ヒストリデータベース" - -#: ../../operation/agentes/datos_agente.php:181 -msgid "" -"Switch between the main database and the history database to retrieve module data" -msgstr "" -"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータベース間で" -"切り替えます。" - -#: ../../operation/agentes/datos_agente.php:194 ../../include/ajax/module.php:223 -msgid "Choose a time from now" -msgstr "現在からさかのぼって表示する期間を選択" - -#: ../../operation/agentes/datos_agente.php:197 ../../include/ajax/module.php:249 -msgid "Specify time range" -msgstr "時間範囲指定" - -#: ../../operation/agentes/datos_agente.php:295 ../../include/ajax/module.php:560 -#: ../../godmode/reporting/map_builder.php:452 -#: ../../godmode/reporting/map_builder.php:469 -#: ../../godmode/agentes/module_manager.php:794 -msgid "No available data to show" -msgstr "表示するデータがありません。" - -#: ../../operation/agentes/estado_agente.php:242 -msgid "Sucessfully deleted agent" -msgstr "エージェントを削除しました" - -#: ../../operation/agentes/estado_agente.php:244 -msgid "There was an error message deleting the agent" -msgstr "エージェント削除においてエラーが発生しました" - -#: ../../operation/agentes/estado_agente.php:285 -msgid "Search in custom fields" -msgstr "カスタムフィールド検索" - -#: ../../operation/agentes/estado_agente.php:898 -#: ../../enterprise/operation/agentes/tag_view.php:647 -msgid "Remote config" -msgstr "リモート設定" - -#: ../../operation/agentes/pandora_networkmap.editor.php:205 -msgid "Network maps editor" -msgstr "ネットワークマップエディタ" - -#: ../../operation/agentes/pandora_networkmap.editor.php:256 -#: ../../operation/agentes/pandora_networkmap.view.php:2236 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 -msgid "Not found networkmap." -msgstr "ネットワークマップがありません。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../operation/agentes/pandora_networkmap.view.php:106 -#: ../../enterprise/extensions/vmware/vmware_view.php:1758 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 -msgid "Node radius" -msgstr "ノード半径" - -#: ../../operation/agentes/pandora_networkmap.editor.php:324 -#: ../../operation/agentes/pandora_networkmap.view.php:127 -msgid "Position X" -msgstr "X 位置" - -#: ../../operation/agentes/pandora_networkmap.editor.php:326 -#: ../../operation/agentes/pandora_networkmap.view.php:129 -msgid "Position Y" -msgstr "Y 位置" - -#: ../../operation/agentes/pandora_networkmap.editor.php:329 -#: ../../operation/agentes/pandora_networkmap.view.php:132 -msgid "Zoom scale" -msgstr "拡大スケール" - -#: ../../operation/agentes/pandora_networkmap.editor.php:334 -#: ../../operation/agentes/pandora_networkmap.view.php:134 -msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" -msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../include/functions_groups.php:107 -msgid "Discovery task" -msgstr "自動検出タスク" - -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -msgid "CIDR IP mask" -msgstr "CIDR IPマスク" - -#: ../../operation/agentes/pandora_networkmap.editor.php:339 -#: ../../operation/agentes/pandora_networkmap.view.php:164 -msgid "Source from recon task" -msgstr "自動検出タスクからのソース" - -#: ../../operation/agentes/pandora_networkmap.editor.php:341 -#: ../../operation/agentes/pandora_networkmap.view.php:166 -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:358 -#: ../../operation/agentes/pandora_networkmap.view.php:182 -msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:362 -#: ../../operation/agentes/pandora_networkmap.view.php:186 -msgid "Source from CIDR IP mask" -msgstr "CIDR IPマスクからのソース" - -#: ../../operation/agentes/pandora_networkmap.editor.php:365 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 -msgid "Source group" -msgstr "複製元グループ" - -#: ../../operation/agentes/pandora_networkmap.editor.php:382 -msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:387 -#: ../../operation/agentes/pandora_networkmap.view.php:198 -msgid "Don't show subgroups:" -msgstr "サブグループを表示しない:" - -#: ../../operation/agentes/pandora_networkmap.editor.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:232 -msgid "Method generation networkmap" -msgstr "ネットワークマップ生成手法" - -#: ../../operation/agentes/pandora_networkmap.editor.php:425 -#: ../../operation/agentes/pandora_networkmap.view.php:247 -#: ../../enterprise/extensions/vmware/vmware_view.php:1762 -msgid "Node separation" -msgstr "ノード分離" - -#: ../../operation/agentes/pandora_networkmap.editor.php:426 -#: ../../operation/agentes/pandora_networkmap.view.php:248 -msgid "Separation between nodes. By default 0.25" -msgstr "ノード間の分離。デフォルトは 0.25 です。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:428 -#: ../../operation/agentes/pandora_networkmap.view.php:250 -msgid "Rank separation" -msgstr "ランク分け" - -#: ../../operation/agentes/pandora_networkmap.editor.php:429 -#: ../../operation/agentes/pandora_networkmap.view.php:251 -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:431 -#: ../../operation/agentes/pandora_networkmap.view.php:253 -msgid "Min nodes dist" -msgstr "最小ノード間隔" - -#: ../../operation/agentes/pandora_networkmap.editor.php:432 -#: ../../operation/agentes/pandora_networkmap.view.php:254 -msgid "Only circular. Minimum separation between all nodes. By default 1.0" -msgstr "円のみ。ノード間の最小距離です。デフォルトは 1.0 です。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:434 -#: ../../operation/agentes/pandora_networkmap.view.php:256 -msgid "Default ideal node separation" -msgstr "デフォルトノード間距離" - -#: ../../operation/agentes/pandora_networkmap.editor.php:435 -#: ../../operation/agentes/pandora_networkmap.view.php:257 -msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" -msgstr "" -"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:445 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 -msgid "Save networkmap" -msgstr "ネットワークマップの保存" - -#: ../../operation/agentes/pandora_networkmap.editor.php:456 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 -msgid "Update networkmap" -msgstr "ネットワークマップの更新" - -#: ../../operation/agentes/pandora_networkmap.editor.php:601 -msgid "Source id group changed. All elements in Networkmap will be lost" -msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" - -#: ../../operation/agentes/interface_traffic_graph_win.php:78 -#: ../../include/rest-api/models/VisualConsole/View.php:738 -#: ../../include/rest-api/models/VisualConsole/View.php:817 -msgid "In" -msgstr "入力" - -#: ../../operation/agentes/interface_traffic_graph_win.php:79 -#: ../../include/rest-api/models/VisualConsole/View.php:739 -#: ../../include/rest-api/models/VisualConsole/View.php:818 -msgid "Out" -msgstr "出力" - -#: ../../operation/agentes/interface_traffic_graph_win.php:95 -#, php-format -msgid "%s Interface Graph" -msgstr "%s インタフェースグラフ" - -#: ../../operation/agentes/interface_traffic_graph_win.php:250 -msgid "Zoom factor" -msgstr "ズーム倍率" - -#: ../../operation/agentes/interface_traffic_graph_win.php:257 -msgid "Full" -msgstr "フル" - -#: ../../operation/agentes/estado_generalagente.php:57 -msgid "The agent has not assigned server. Maybe agent does not run fine." -msgstr "" -"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可能性があ" -"ります。" - -#: ../../operation/agentes/estado_generalagente.php:214 -#: ../../enterprise/views/cluster/view.php:273 -msgid "IP address" -msgstr "IP アドレス" - -#: ../../operation/agentes/estado_generalagente.php:267 -msgid "Remote configuration enabled" -msgstr "リモート設定有効" - -#: ../../operation/agentes/estado_generalagente.php:309 -msgid "Agent contact" -msgstr "エージェント接続" - -#: ../../operation/agentes/estado_generalagente.php:316 -msgid "Refresh data" -msgstr "最新情報に更新" - -#: ../../operation/agentes/estado_generalagente.php:357 -msgid "Next contact" -msgstr "次回接続" - -#: ../../operation/agentes/estado_generalagente.php:389 -#: ../../include/functions_events.php:5118 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:528 -#: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../godmode/agentes/agent_manager.php:457 -msgid "Secondary groups" -msgstr "セカンダリグループ" - -#: ../../operation/agentes/estado_generalagente.php:406 -#: ../../operation/agentes/ver_agente.php:1209 -#: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../enterprise/views/ipam/sites/edit.php:64 -#: ../../enterprise/views/ipam/sites/list.php:48 -#: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -#: ../../godmode/massive/massive_edit_agents.php:648 -#: ../../godmode/agentes/agent_manager.php:526 -#: ../../godmode/groups/configure_group.php:170 ../../godmode/groups/group_list.php:848 -msgid "Parent" -msgstr "親" - -#: ../../operation/agentes/estado_generalagente.php:445 -msgid "Agent info" -msgstr "エージェント情報" - -#: ../../operation/agentes/estado_generalagente.php:452 -#: ../../include/functions_treeview.php:750 -msgid "Position (Long, Lat)" -msgstr "位置 (経度、緯度)" - -#: ../../operation/agentes/estado_generalagente.php:458 -msgid "There is no GIS data." -msgstr "GIS データがありません。" - -#: ../../operation/agentes/estado_generalagente.php:476 -#: ../../operation/agentes/ver_agente.php:1517 ../../include/functions_treeview.php:759 -#: ../../godmode/agentes/agent_manager.php:614 -#: ../../godmode/agentes/agent_manager.php:631 -msgid "Url address" -msgstr "URLアドレス" - -#: ../../operation/agentes/estado_generalagente.php:486 -#: ../../include/functions_treeview.php:634 -msgid "Other IP addresses" -msgstr "他のIPアドレス" - -#: ../../operation/agentes/estado_generalagente.php:494 -#: ../../include/functions_treeview.php:767 -msgid "Timezone Offset" -msgstr "タイムゾーンオフセット" - -#: ../../operation/agentes/estado_generalagente.php:525 -#: ../../operation/agentes/agent_fields.php:44 ../../include/functions_treeview.php:783 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 -msgid "Custom field" -msgstr "カスタムフィールド" - -#: ../../operation/agentes/estado_generalagente.php:579 -msgid "Agent access rate (Last 24h)" -msgstr "エージェントアクセス頻度(直近 24時間)" - -#: ../../operation/agentes/estado_generalagente.php:618 -msgid "Active incident on this agent" -msgstr "このエージェントにおけるアクティブインシデント" - -#: ../../operation/agentes/estado_generalagente.php:622 ../../godmode/setup/news.php:248 -msgid "Author" -msgstr "作者" - -#: ../../operation/agentes/estado_generalagente.php:629 -#: ../../operation/incidents/integriaims_export_csv.php:81 -#: ../../operation/incidents/configure_integriaims_incident.php:213 -#: ../../operation/incidents/list_integriaims_incidents.php:516 -#: ../../include/lib/Dashboard/Widget.php:545 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../enterprise/include/functions_reporting_csv.php:421 -#: ../../enterprise/include/functions_reporting_csv.php:443 -#: ../../enterprise/include/functions_reporting_csv.php:474 -#: ../../enterprise/include/functions_reporting_csv.php:697 -#: ../../enterprise/include/functions_reporting_csv.php:741 -#: ../../enterprise/include/functions_reporting_csv.php:755 -#: ../../enterprise/include/functions_reporting_csv.php:769 -#: ../../enterprise/include/functions_reporting_csv.php:789 -#: ../../enterprise/include/functions_reporting_csv.php:818 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:901 -#: ../../enterprise/include/functions_reporting_csv.php:933 -#: ../../enterprise/include/functions_reporting_csv.php:970 -#: ../../enterprise/include/functions_reporting_csv.php:993 -#: ../../enterprise/include/functions_reporting_csv.php:1144 -#: ../../enterprise/include/functions_reporting_csv.php:1171 -#: ../../enterprise/include/functions_reporting_csv.php:1202 -#: ../../enterprise/include/functions_reporting_csv.php:1257 -#: ../../enterprise/include/functions_reporting_csv.php:1312 -#: ../../enterprise/include/functions_reporting_csv.php:1361 -#: ../../enterprise/include/functions_reporting_csv.php:1416 -#: ../../enterprise/include/functions_reporting_csv.php:1445 -#: ../../enterprise/include/functions_reporting_csv.php:1482 -#: ../../enterprise/include/functions_reporting_csv.php:1608 -#: ../../enterprise/include/functions_reporting_csv.php:1724 -#: ../../enterprise/include/functions_reporting_csv.php:1868 -#: ../../enterprise/include/functions_reporting_csv.php:1918 -#: ../../enterprise/include/functions_reporting_csv.php:1964 -#: ../../enterprise/include/functions_reporting_csv.php:2032 -#: ../../enterprise/include/functions_reporting_csv.php:2176 -#: ../../enterprise/include/functions_reporting_csv.php:2268 -#: ../../enterprise/include/functions_reporting_csv.php:2299 -#: ../../enterprise/include/functions_reporting_csv.php:2335 -#: ../../enterprise/include/functions_reporting_csv.php:2388 -#: ../../enterprise/include/functions_reporting_csv.php:2410 -#: ../../enterprise/include/functions_reporting_csv.php:2451 -#: ../../enterprise/include/functions_reporting_csv.php:2505 -#: ../../enterprise/include/functions_reporting_csv.php:2534 -#: ../../enterprise/include/functions_reporting_csv.php:2610 -#: ../../enterprise/include/functions_reporting_csv.php:2661 -#: ../../enterprise/include/functions_reporting_csv.php:2710 -#: ../../enterprise/include/functions_reporting_csv.php:2787 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 -#: ../../godmode/setup/setup_integria.php:333 ../../godmode/setup/setup_integria.php:454 -msgid "Title" -msgstr "タイトル" - -#: ../../operation/agentes/estado_generalagente.php:631 -#: ../../operation/incidents/integriaims_export_csv.php:85 -#: ../../operation/incidents/configure_integriaims_incident.php:296 -#: ../../operation/incidents/list_integriaims_incidents.php:348 -#: ../../operation/incidents/list_integriaims_incidents.php:519 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 -#: ../../include/functions_events.php:4670 -#: ../../include/functions_reporting_html.php:5038 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:555 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:815 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 -#: ../../godmode/setup/setup_integria.php:379 ../../godmode/setup/setup_integria.php:501 -#: ../../godmode/snmpconsole/snmp_alert.php:1018 -#: ../../godmode/snmpconsole/snmp_alert.php:1080 -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/alerts/configure_alert_template.php:1118 -#: ../../godmode/alerts/alert_list.list.php:126 -#: ../../godmode/alerts/alert_templates.php:51 ../../godmode/alerts/alert_view.php:124 -msgid "Priority" -msgstr "優先度" - -#: ../../operation/agentes/estado_generalagente.php:700 -#: ../../operation/agentes/pandora_networkmap.view.php:1234 -#: ../../include/functions_treeview.php:878 -msgid "Interface traffic" -msgstr "インタフェーストラフィック" - -#: ../../operation/agentes/estado_generalagente.php:777 -msgid "Events info (24hr.)" -msgstr "イベント情報 (24時間)" - -#: ../../operation/agentes/estado_generalagente.php:797 -#: ../../operation/agentes/pandora_networkmap.view.php:1857 -msgid "Last contact: " -msgstr "最新の接続: " - -#: ../../operation/agentes/estado_generalagente.php:870 -#: ../../enterprise/views/cluster/view.php:369 -msgid "Events (Last 24h)" -msgstr "イベント (直近 24時間)" - -#: ../../operation/agentes/estado_generalagente.php:922 -msgid "Interface information (SNMP)" -msgstr "インタフェース情報 (SNMP)" - -#: ../../operation/agentes/snapshot_view.php:42 -msgid "Cannot connect with node to display the module data." -msgstr "モジュールデータ表示のためのノード接続ができません。" - -#: ../../operation/agentes/snapshot_view.php:90 -#, php-format -msgid "%s Snapshot data view for module (%s)" -msgstr "%s スナップショットデータ表示 (モジュール %s)" - -#: ../../operation/agentes/snapshot_view.php:96 -#, php-format -msgid "Current data at %s" -msgstr "%s 時点のデータ" - -#: ../../operation/agentes/pandora_networkmap.view.php:1611 -msgid "Success be updated." -msgstr "更新しました。" - -#: ../../operation/agentes/pandora_networkmap.view.php:1613 -#: ../../enterprise/tools/ipam/ipam_action.php:374 -msgid "Could not be updated." -msgstr "更新できませんでした。" - -#: ../../operation/agentes/pandora_networkmap.view.php:1708 -msgid "Name: " -msgstr "名前: " - -#: ../../operation/agentes/pandora_networkmap.view.php:1758 -msgid "Policy: " -msgstr "ポリシー: " - -#: ../../operation/agentes/pandora_networkmap.view.php:1805 -#: ../../enterprise/extensions/vmware/vmware_manager.php:269 -msgid "Status: " -msgstr "状態: " - -#: ../../operation/agentes/pandora_networkmap.view.php:1855 -msgid "Data: " -msgstr "データ: " - -#: ../../operation/agentes/status_events.php:26 -#: ../../operation/agentes/status_events.php:27 -msgid "Latest events for this agent" -msgstr "このエージェントにおける最新イベント" - -#: ../../operation/agentes/gis_view.php:59 ../../godmode/agentes/agent_conf_gis.php:38 -msgid "There is no default map. Please go to the setup for to set a default map." -msgstr "デフォルトマップがありません。デフォルトマップ設定を行ってください。" - -#: ../../operation/agentes/gis_view.php:96 -msgid "Period to show data as path" -msgstr "データ表示更新間隔" - -#: ../../operation/agentes/gis_view.php:100 -msgid "Refresh path" -msgstr "更新" - -#: ../../operation/agentes/gis_view.php:158 -msgid "This agent doesn't have any GIS data." -msgstr "このエージェントには、GIS データがありません。" - -#: ../../operation/agentes/gis_view.php:170 -msgid "Positional data from the last" -msgstr "位置データ参照期間:" - -#: ../../operation/agentes/gis_view.php:209 -#, php-format -msgid "%s Km" -msgstr "%s Km" - -#: ../../operation/agentes/gis_view.php:217 ../../godmode/setup/gis_step_2.php:483 -msgid "Longitude" -msgstr "経度" - -#: ../../operation/agentes/gis_view.php:218 ../../godmode/setup/gis_step_2.php:465 -msgid "Latitude" -msgstr "緯度" - -#: ../../operation/agentes/gis_view.php:219 ../../godmode/setup/gis_step_2.php:501 -msgid "Altitude" -msgstr "高度" - -#: ../../operation/agentes/gis_view.php:221 ../../include/functions_snmp.php:413 -#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 -#: ../../include/functions_reporting_html.php:3702 -#: ../../enterprise/include/functions_reporting_csv.php:716 -#: ../../enterprise/include/functions_reporting_csv.php:952 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_pdf.php:1984 -#: ../../godmode/agentes/planned_downtime.list.php:302 -msgid "To" -msgstr "終了" - -#: ../../operation/agentes/gis_view.php:223 -msgid "Distance" -msgstr "距離" - -#: ../../operation/agentes/gis_view.php:224 -msgid "# of Packages" -msgstr "パッケージ数" - -#: ../../operation/agentes/ver_agente.php:1008 -#: ../../enterprise/operation/agentes/ver_agente.php:72 -msgid "Main IP" -msgstr "代表 IP" - -#: ../../operation/agentes/ver_agente.php:1020 ../../include/functions_events.php:4503 -#: ../../enterprise/operation/agentes/ver_agente.php:78 -msgid "Last remote contact" -msgstr "最終リモート接続" - -#: ../../operation/agentes/ver_agente.php:1065 -#: ../../enterprise/operation/agentes/ver_agente.php:122 -msgid "Monitors down" -msgstr "停止中のモニタ項目" - -#: ../../operation/agentes/ver_agente.php:1106 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576 -#: ../../enterprise/operation/agentes/ver_agente.php:164 -#: ../../mobile/operation/groups.php:174 -msgid "Alerts fired" -msgstr "発生中アラート" - -#: ../../operation/agentes/ver_agente.php:1172 -#: ../../enterprise/tools/ipam/ipam_excel.php:133 -#: ../../enterprise/tools/ipam/ipam_ajax.php:359 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 -#: ../../enterprise/tools/ipam/ipam_network.php:395 -#: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 -#: ../../enterprise/views/ncm/devices/list.php:117 -#: ../../enterprise/include/functions_ipam.php:2036 -#: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/godmode/servers/manage_export.php:140 -#: ../../godmode/setup/setup_general.php:649 -msgid "Address" -msgstr "アドレス" - -#: ../../operation/agentes/ver_agente.php:1223 -msgid "Sons" -msgstr "子" - -#: ../../operation/agentes/ver_agente.php:1478 -#: ../../godmode/agentes/configurar_agente.php:509 -msgid "GIS data" -msgstr "GIS データ" - -#: ../../operation/agentes/ver_agente.php:1551 ../../operation/search_results.php:119 -#: ../../include/functions_reports.php:638 ../../include/functions_reports.php:642 -#: ../../include/functions_reports.php:647 ../../include/functions_reports.php:653 -#: ../../include/functions_reports.php:660 ../../include/functions_reports.php:664 -#: ../../include/functions_reports.php:668 ../../include/functions_reports.php:675 -#: ../../include/functions_reports.php:681 ../../include/functions_reports.php:686 -#: ../../include/functions_groups.php:123 ../../include/functions_groups.php:187 -msgid "Graphs" -msgstr "グラフ" - -#: ../../operation/agentes/ver_agente.php:1573 -msgid "Log Viewer" -msgstr "ログビューア" - -#: ../../operation/agentes/ver_agente.php:1600 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../godmode/menu.php:347 -msgid "eHorus" -msgstr "eHorus" - -#: ../../operation/agentes/ver_agente.php:1612 -msgid "Terminal" -msgstr "端末" - -#: ../../operation/agentes/ver_agente.php:1623 -#: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2439 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2401 -msgid "Display" -msgstr "表示" - -#: ../../operation/agentes/ver_agente.php:1634 -msgid "Processes" -msgstr "プロセス" - -#: ../../operation/agentes/ver_agente.php:1656 -#: ../../enterprise/include/functions_collection.php:186 -#: ../../enterprise/meta/advanced/collections.editor.php:57 -#: ../../enterprise/meta/advanced/collections.editor.php:385 -#: ../../enterprise/meta/advanced/collections.editor.php:402 -#: ../../enterprise/meta/advanced/collections.data.php:174 -#: ../../enterprise/meta/advanced/collections.data.php:241 -#: ../../enterprise/meta/advanced/collections.data.php:265 -#: ../../enterprise/godmode/agentes/collections.editor.php:65 -#: ../../enterprise/godmode/agentes/collections.editor.php:424 -#: ../../enterprise/godmode/agentes/collections.editor.php:446 -#: ../../enterprise/godmode/agentes/collections.agents.php:50 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:281 -#: ../../enterprise/godmode/agentes/collections.data.php:334 -msgid "Files" -msgstr "ファイル" - -#: ../../operation/agentes/ver_agente.php:1674 -#: ../../operation/agentes/ver_agente.php:1873 ../../enterprise/operation/menu.php:61 -msgid "SAP view" -msgstr "SAP 表示" - -#: ../../operation/agentes/ver_agente.php:1686 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../godmode/menu.php:361 -msgid "External Tools" -msgstr "外部ツール" - -#: ../../operation/users/user_edit.php:31 ../../godmode/users/configure_user.php:244 -msgid "User detail editor" -msgstr "ユーザ情報の編集" - -#: ../../operation/users/user_edit.php:153 -msgid "Current password of user is required to perform password change" -msgstr "ユーザの現在のパスワードは変更する必要があります" - -#: ../../operation/users/user_edit.php:155 -msgid "Current password of user is not correct" -msgstr "ユーザの現在のパスワードは正しくありません" - -#: ../../operation/users/user_edit.php:159 -msgid "Passwords didn't match or other problem encountered while updating passwords" -msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" - -#: ../../operation/users/user_edit.php:172 ../../operation/users/user_edit.php:187 -msgid "Password successfully updated" -msgstr "パスワードを更新しました。" - -#: ../../operation/users/user_edit.php:182 ../../operation/users/user_edit.php:230 -msgid "Error updating user info" -msgstr "ユーザ情報の更新に失敗しました。" - -#: ../../operation/users/user_edit.php:184 ../../operation/users/user_edit.php:229 -#: ../../godmode/users/configure_user.php:643 ../../godmode/users/configure_user.php:667 -#: ../../godmode/users/configure_user.php:737 ../../godmode/users/configure_user.php:744 -#: ../../godmode/users/configure_user.php:776 -msgid "User info successfully updated" -msgstr "ユーザ情報を更新しました。" - -#: ../../operation/users/user_edit.php:189 -msgid "Skin successfully updated" -msgstr "スキンを更新しました。" - -#: ../../operation/users/user_edit.php:192 -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -msgid "No changes have been made" -msgstr "変更されていません" - -#: ../../operation/users/user_edit.php:203 -msgid "Please enter a valid email" -msgstr "正しいメールアドレスを入力してください" - -#: ../../operation/users/user_edit.php:205 -msgid "Please enter a valid phone number" -msgstr "正しい電話番号を入力してください" - -#: ../../operation/users/user_edit.php:211 -msgid "Error updating passwords: " -msgstr "パスワード更新エラー: " - -#: ../../operation/users/user_edit.php:235 -msgid "Edit my User" -msgstr "ユーザ編集" - -#: ../../operation/users/user_edit.php:251 ../../godmode/users/user_list.php:432 -#, php-format -msgid "" -"This node is configured with centralized mode. All users information is read only. Go " -"to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用です。" -"管理には %s に移動します。" - -#: ../../operation/users/user_edit.php:272 ../../godmode/users/configure_user.php:899 -msgid "Full (display) name" -msgstr "表示名" - -#: ../../operation/users/user_edit.php:292 ../../godmode/users/configure_user.php:1021 -msgid "E-mail" -msgstr "メールアドレス" - -#: ../../operation/users/user_edit.php:294 ../../godmode/users/configure_user.php:1037 -msgid "Phone number" -msgstr "電話番号" - -#: ../../operation/users/user_edit.php:298 -#: ../../enterprise/include/process_reset_pass.php:103 -#: ../../enterprise/meta/include/process_reset_pass.php:96 -msgid "New Password" -msgstr "新しいパスワード" - -#: ../../operation/users/user_edit.php:299 ../../godmode/users/configure_user.php:950 -msgid "Password confirmation" -msgstr "パスワード確認" - -#: ../../operation/users/user_edit.php:300 -msgid "Current password" -msgstr "現在のパスワード" - -#: ../../operation/users/user_edit.php:302 -msgid "You cannot change your password under the current authentication scheme" -msgstr "現在の認証スキームではパスワードを変更できません" - -#: ../../operation/users/user_edit.php:317 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます" - -#: ../../operation/users/user_edit.php:325 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 -#: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:904 -msgid "Language" -msgstr "言語" - -#: ../../operation/users/user_edit.php:354 ../../godmode/users/configure_user.php:1103 -msgid "Home screen" -msgstr "ホーム画面" - -#: ../../operation/users/user_edit.php:354 ../../godmode/users/configure_user.php:1104 -msgid "" -"User can customize the home page. By default, will display 'Agent Detail'. Example: " -"Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" -"ver_agente&id_agente=1 to show agent detail view" -msgstr "" -"ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳細' が表" -"示されます。 例: 'その他' を選択し、index.php?sec=estado&sec2=operation/agentes/" -"ver_agente&id_agente=1 と入力すると、エージェントの詳細を表示します。" - -#: ../../operation/users/user_edit.php:401 ../../operation/users/user_edit.php:410 -#: ../../godmode/users/configure_user.php:1072 -msgid "Skin" -msgstr "スキン" - -#: ../../operation/users/user_edit.php:411 -msgid "This change will only apply to nodes" -msgstr "この変更はノードにのみ適用されます" - -#: ../../operation/users/user_edit.php:419 ../../godmode/users/configure_user.php:916 -msgid "Timezone" -msgstr "タイムゾーン" - -#: ../../operation/users/user_edit.php:419 ../../godmode/users/configure_user.php:917 -msgid "The timezone must be that of the associated server." -msgstr "タイムゾーンは、関連付けられているサーバのタイムゾーンである必要があります。" - -#: ../../operation/users/user_edit.php:426 ../../include/functions_config.php:776 -#: ../../enterprise/meta/include/functions_meta.php:582 -#: ../../enterprise/meta/include/functions_meta.php:884 -#: ../../godmode/setup/setup_auth.php:353 ../../godmode/users/configure_user.php:1332 -msgid "Double authentication" -msgstr "二段階認証" - -#: ../../operation/users/user_edit.php:440 ../../godmode/users/configure_user.php:1350 -msgid "Show information" -msgstr "情報表示" - -#: ../../operation/users/user_edit.php:448 -msgid "Event filter" -msgstr "イベントフィルタ" - -#: ../../operation/users/user_edit.php:519 -msgid "Autorefresh" -msgstr "自動更新" - -#: ../../operation/users/user_edit.php:520 -msgid "This will activate autorefresh in selected pages" -msgstr "選択したページで自動更新を有効にします" - -#: ../../operation/users/user_edit.php:555 -msgid "Full list of pages" -msgstr "全ページ一覧" - -#: ../../operation/users/user_edit.php:564 ../../operation/users/user_edit.php:565 -msgid "Push selected pages into autorefresh list" -msgstr "選択したページを自動更新にする" - -#: ../../operation/users/user_edit.php:573 ../../operation/users/user_edit.php:574 -msgid "Pop selected pages out of autorefresh list" -msgstr "選択したページを自動更新から外す" - -#: ../../operation/users/user_edit.php:579 -msgid "List of pages with autorefresh" -msgstr "自動更新ページ一覧" - -#: ../../operation/users/user_edit.php:588 -msgid "Time autorefresh" -msgstr "自動更新時間" - -#: ../../operation/users/user_edit.php:590 -msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, needing to " -"enable the autorefresh first" -msgstr "" -"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要があり" -"ます。" - -#: ../../operation/users/user_edit.php:685 -msgid "eHorus user configuration" -msgstr "eHorus ユーザ設定" - -#: ../../operation/users/user_edit.php:690 -msgid "eHorus user acces enabled" -msgstr "eHorus ユーザアクセスの有効化" - -#: ../../operation/users/user_edit.php:711 ../../operation/users/user_edit.php:757 -#: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_integria.php:566 ../../godmode/setup/setup_ehorus.php:111 -msgid "Test" -msgstr "テスト" - -#: ../../operation/users/user_edit.php:712 ../../operation/users/user_edit.php:758 -#: ../../enterprise/operation/agentes/transactional_map.php:398 -#: ../../godmode/setup/setup_integria.php:567 ../../godmode/setup/setup_ehorus.php:112 -#: ../../godmode/menu.php:31 -msgid "Start" -msgstr "開始" - -#: ../../operation/users/user_edit.php:737 -msgid "Integria user configuration" -msgstr "Integria ユーザ設定" - -#: ../../operation/users/user_edit.php:774 -msgid "You can not change your user info under the current authentication scheme" -msgstr "現在の認証スキームではユーザ情報を変更できません" - -#: ../../operation/users/user_edit.php:787 ../../operation/users/user_edit.php:796 -#: ../../include/functions_profile.php:188 -msgid "Profiles/Groups assigned to this user" -msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" - -#: ../../operation/users/user_edit.php:813 ../../include/functions_profile.php:213 -#: ../../enterprise/godmode/setup/setup_acl.php:591 -#: ../../godmode/massive/massive_add_profiles.php:202 -#: ../../godmode/massive/massive_delete_profiles.php:151 -#: ../../godmode/users/configure_profile.php:265 -msgid "Profile name" -msgstr "プロファイル名" - -#: ../../operation/users/user_edit.php:851 -msgid "This user doesn't have any assigned profile/group." -msgstr "このユーザにはプロファイル・グループが割り当てられていません。" - -#: ../../operation/users/user_edit.php:1079 ../../godmode/users/configure_user.php:1840 -msgid "Double autentication information" -msgstr "二段階認証情報" - -#: ../../operation/users/user_edit.php:1168 ../../godmode/users/configure_user.php:1930 -msgid "The double authentication will be deactivated" -msgstr "二段階認証は無効化されます" - -#: ../../operation/users/user_edit.php:1169 ../../godmode/users/configure_user.php:1931 -msgid "Deactivate" -msgstr "無効化" - -#: ../../operation/users/user_edit.php:1201 ../../godmode/users/configure_user.php:1967 -msgid "The double autentication was deactivated successfully" -msgstr "二段階認証を無効化しました" - -#: ../../operation/users/user_edit.php:1204 ../../operation/users/user_edit.php:1208 -#: ../../godmode/users/configure_user.php:1971 -#: ../../godmode/users/configure_user.php:1975 -msgid "There was an error deactivating the double autentication" -msgstr "二段階認証の無効化でエラーが発生しました" - -#: ../../operation/users/user_edit.php:1243 ../../operation/users/user_edit.php:1321 -#: ../../godmode/setup/setup_integria.php:720 ../../godmode/setup/setup_integria.php:801 -#: ../../godmode/setup/setup_ehorus.php:255 -msgid "Empty user or password" -msgstr "ユーザまたはパスワードが空です" - -#: ../../operation/users/user_edit.php:1244 ../../operation/users/user_edit.php:1322 -#: ../../godmode/setup/setup_integria.php:721 ../../godmode/setup/setup_integria.php:802 -#: ../../godmode/setup/setup_ehorus.php:256 -msgid "User not found" -msgstr "ユーザが見つかりません" - -#: ../../operation/users/user_edit.php:1245 ../../operation/users/user_edit.php:1323 -#: ../../godmode/setup/setup_integria.php:722 ../../godmode/setup/setup_integria.php:803 -#: ../../godmode/setup/setup_ehorus.php:257 -msgid "Invalid password" -msgstr "パスワードが正しくありません" - -#: ../../operation/users/user_edit_notifications.php:36 -#: ../../operation/users/user_edit_header.php:102 -msgid "User notifications" -msgstr "ユーザ通知" - -#: ../../operation/users/user_edit_notifications.php:64 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1165 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1166 -#: ../../enterprise/include/functions_HA_cluster.php:61 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174 -#: ../../enterprise/godmode/agentes/plugins_manager.php:195 -#: ../../enterprise/godmode/agentes/plugins_manager.php:262 -#: ../../enterprise/godmode/policies/policy_alerts.php:722 -#: ../../godmode/extensions.php:257 ../../godmode/alerts/alert_list.list.php:1030 -#: ../../godmode/users/user_list.php:745 -msgid "Enable" -msgstr "有効" - -#: ../../operation/users/user_edit_notifications.php:65 -msgid "Also receive an email" -msgstr "メールも受信する" - -#: ../../operation/users/user_edit_notifications.php:94 -msgid "Controls have been disabled by the system administrator" -msgstr "システム管理者によって制御が無効化されています" - -#: ../../operation/users/user_edit_header.php:91 -#: ../../enterprise/meta/general/main_menu.php:458 -#: ../../enterprise/meta/general/main_menu.php:518 -#: ../../enterprise/meta/general/main_menu.php:525 -#: ../../enterprise/meta/general/main_header.php:321 -#: ../../enterprise/meta/general/main_header.php:401 -#: ../../enterprise/meta/general/main_header.php:408 -#: ../../enterprise/meta/include/functions_users_meta.php:182 -#: ../../enterprise/meta/include/functions_users_meta.php:204 -#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239 -#: ../../godmode/users/user_list.php:250 ../../godmode/users/configure_user.php:223 -#: ../../godmode/users/configure_profile.php:55 -#: ../../godmode/users/configure_profile.php:76 ../../godmode/users/profile_list.php:63 -#: ../../godmode/users/profile_list.php:84 -msgid "User management" -msgstr "ユーザ管理" - -#: ../../operation/users/user_edit_header.php:131 -msgid "Edit user" -msgstr "ユーザ編集" - -#: ../../operation/search_helps.php:17 -msgid "Zero results found." -msgstr "見つかりませんでした。" - -#: ../../operation/search_helps.php:18 -#, php-format -msgid "You can find more help in the wiki" -msgstr "" -"追加のヘルプは wiki で見つけることができます" - -#: ../../operation/search_helps.php:32 -msgid "Matches" -msgstr "一致" - -#: ../../operation/search_results.php:67 -msgid "Global search" -msgstr "グローバル検索" - -#: ../../operation/search_results.php:93 ../../include/functions_reporting.php:11579 -#: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../godmode/massive/massive_delete_profiles.php:153 -msgid "Users" -msgstr "ユーザ" - -#: ../../operation/search_results.php:132 ../../include/functions_groups.php:139 -#: ../../include/functions_reporting.php:15012 -#: ../../enterprise/meta/general/main_menu.php:269 -#: ../../enterprise/meta/general/main_header.php:167 -#: ../../enterprise/meta/general/main_header.php:183 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "レポート" - -#: ../../operation/incidents/integriaims_export_csv.php:80 -msgid "ID Ticket" -msgstr "チケット ID" - -#: ../../operation/incidents/integriaims_export_csv.php:82 -#: ../../operation/incidents/list_integriaims_incidents.php:517 -msgid "Group/Company" -msgstr "グループ/会社" - -#: ../../operation/incidents/integriaims_export_csv.php:86 -#: ../../enterprise/tools/ipam/ipam_ajax.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:798 -#: ../../enterprise/meta/advanced/servers.build_table.php:68 -#: ../../godmode/servers/servers.build_table.php:87 -#: ../../godmode/agentes/agent_incidents.php:93 -msgid "Updated" -msgstr "更新" - -#: ../../operation/incidents/integriaims_export_csv.php:87 -msgid "Started" -msgstr "起動" - -#: ../../operation/incidents/integriaims_export_csv.php:88 -#: ../../operation/incidents/configure_integriaims_incident.php:282 -#: ../../operation/incidents/list_integriaims_incidents.php:345 -#: ../../operation/incidents/list_integriaims_incidents.php:521 -msgid "Creator" -msgstr "作成者" - -#: ../../operation/incidents/incident_statistics.php:24 -#: ../../operation/incidents/configure_integriaims_incident.php:33 -#: ../../operation/incidents/list_integriaims_incidents.php:34 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 -#: ../../godmode/agentes/agent_incidents.php:22 -msgid "" -"In order to access ticket management system, integration with Integria IMS must be " -"enabled and properly configured" -msgstr "" -"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正しく設" -"定されている必要があります" - -#: ../../operation/incidents/incident_statistics.php:29 -msgid "Incidents by status" -msgstr "ステータスで分類したインシデント" - -#: ../../operation/incidents/incident_statistics.php:32 -msgid "Incidents by priority" -msgstr "優先順位で分類したインシデント" - -#: ../../operation/incidents/incident_statistics.php:35 -msgid "Incidents by group" -msgstr "グループで分類したインシデント" - -#: ../../operation/incidents/incident_statistics.php:38 -msgid "Incidents by user" -msgstr "ユーザで分類したインシデント" - -#: ../../operation/incidents/configure_integriaims_incident.php:26 -msgid "Update Integria IMS Ticket" -msgstr "Integria IMS チケットの更新" - -#: ../../operation/incidents/configure_integriaims_incident.php:28 -msgid "Create Integria IMS Ticket" -msgstr "Integria IMS チケットの作成" - -#: ../../operation/incidents/configure_integriaims_incident.php:41 -#: ../../operation/incidents/list_integriaims_incidents.php:42 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31 -#: ../../godmode/setup/setup_integria.php:64 -msgid "Integria IMS API is not reachable" -msgstr "Integria IMS API に通信できません" - -#: ../../operation/incidents/configure_integriaims_incident.php:123 -msgid "Successfully created in Integria IMS" -msgstr "Integria IMS で作成しました" - -#: ../../operation/incidents/configure_integriaims_incident.php:124 -msgid "Could not be created in Integria IMS" -msgstr "Integria IMS で作成できませんでした" - -#: ../../operation/incidents/configure_integriaims_incident.php:144 -msgid "Successfully updated in Integria IMS" -msgstr "Integria IMS で更新しました" - -#: ../../operation/incidents/configure_integriaims_incident.php:145 -msgid "Could not be updated in Integria IMS" -msgstr "Integria IMS で更新できませんでした" - -#: ../../operation/incidents/configure_integriaims_incident.php:294 -msgid "This field corresponds to the Integria IMS user specified in Integria IMS setup" -msgstr "" -"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応しま" -"す" - -#: ../../operation/incidents/configure_integriaims_incident.php:352 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206 -msgid "File name" -msgstr "ファイル名" - -#: ../../operation/incidents/configure_integriaims_incident.php:354 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208 -msgid "Attachment description" -msgstr "添付の説明" - -#: ../../operation/incidents/list_integriaims_incidents.php:24 -msgid "Integria IMS Tickets" -msgstr "Integria IMS チケット" - -#: ../../operation/incidents/list_integriaims_incidents.php:317 -msgid "Text filter" -msgstr "テキストフィルタ" - -#: ../../operation/incidents/list_integriaims_incidents.php:381 -msgid "Created from" -msgstr "作成者:" - -#: ../../operation/incidents/list_integriaims_incidents.php:393 -msgid "Created to" -msgstr "作成対象者:" - -#: ../../operation/incidents/list_integriaims_incidents.php:518 -msgid "Status/Resolution" -msgstr "状態/解決" - -#: ../../operation/incidents/list_integriaims_incidents.php:520 -msgid "Updated/Started" -msgstr "更新/開始" - -#: ../../operation/incidents/list_integriaims_incidents.php:564 -msgid "No tickets to show" -msgstr "表示するチケットがありません" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 -#: ../../include/ajax/events.php:1507 ../../enterprise/tools/ipam/ipam_ajax.php:483 -#: ../../enterprise/include/functions_ipam.php:1341 -msgid "Details" -msgstr "詳細" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77 -msgid "Not yet" -msgstr "未完了" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81 -msgid "Not closed yet" -msgstr "未クローズ" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 -msgid "Filename" -msgstr "ファイル名" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 -#: ../../include/functions_visual_map_editor.php:125 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../include/functions_visual_map_editor.php:838 -#: ../../include/functions_visual_map_editor.php:933 -#: ../../include/functions_filemanager.php:606 -#: ../../include/rest-api/models/VisualConsole/Item.php:1991 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../enterprise/include/class/ManageBackups.class.php:164 -#: ../../extensions/files_repo/files_repo_list.php:57 -#: ../../godmode/events/event_responses.editor.php:130 -msgid "Size" -msgstr "サイズ" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:135 -msgid "No description available" -msgstr "説明なし" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142 -msgid "File successfully deleted" -msgstr "ファイルを削除しました" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143 -msgid "File could not be deleted" -msgstr "ファイルを削除できませんでした" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 -msgid "Add attachment" -msgstr "ファイルを追加" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397 -msgid "Attached files" -msgstr "添付ファイル一覧" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282 -msgid "Comment successfully added" -msgstr "コメントを追加しました" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283 -msgid "Comment could not be added" -msgstr "コメントを追加できませんでした" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309 -msgid "No comments found" -msgstr "コメントがありません" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 -#: ../../include/functions_events.php:3755 ../../include/functions_events.php:5360 -msgid "Add comment" -msgstr "コメントの追加" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349 -msgid "Created by" -msgstr "作者:" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350 -msgid "Owned by" -msgstr "オーナー:" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351 -msgid "Closed by" -msgstr "クローズ者:" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 -#: ../../enterprise/include/functions_ipam.php:2044 -msgid "Created at" -msgstr "作成日時" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 -#: ../../enterprise/operation/agentes/transactional_map.php:212 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:609 -msgid "Updated at" -msgstr "更新日時" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 -msgid "Closed at" -msgstr "クローズ日時:" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379 -msgid "People" -msgstr "ユーザ" - -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 -#: ../../include/functions_reporting_html.php:6104 -msgid "Dates" -msgstr "日付" - -#: ../../include/functions_cron.php:455 -msgid "Scheduled jobs" -msgstr "スケジュールされたジョブ" - -#: ../../include/functions_cron.php:464 -#: ../../enterprise/include/functions_tasklist.php:153 -#: ../../enterprise/meta/advanced/cron_main.php:354 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 -msgid "Task" -msgstr "タスク" - -#: ../../include/functions_cron.php:465 -#: ../../enterprise/include/functions_tasklist.php:154 -#: ../../enterprise/meta/advanced/cron_main.php:385 -#: ../../enterprise/godmode/setup/setup_history.php:678 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 -msgid "Scheduled" -msgstr "スケジュール" - -#: ../../include/functions_cron.php:466 -#: ../../enterprise/include/functions_tasklist.php:155 -#: ../../enterprise/meta/advanced/cron_main.php:398 -msgid "Next execution" -msgstr "次回の実行" - -#: ../../include/functions_cron.php:467 -#: ../../enterprise/include/functions_tasklist.php:156 -msgid "Last run" -msgstr "最後の実行" - -#: ../../include/functions_cron.php:469 ../../include/class/AgentsAlerts.class.php:254 -#: ../../include/class/AgentsAlerts.class.php:285 -#: ../../include/functions_filemanager.php:607 ../../include/functions_treeview.php:413 -#: ../../include/functions_reporting.php:2721 -#: ../../include/functions_reporting_html.php:3134 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 -#: ../../enterprise/tools/ipam/ipam_ajax.php:532 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 -#: ../../enterprise/views/ncm/agent/details.php:485 -#: ../../enterprise/operation/services/services.list.php:513 -#: ../../enterprise/operation/agentes/transactional_map.php:213 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190 -#: ../../enterprise/include/functions_reporting_csv.php:2465 -#: ../../enterprise/include/class/ManageBackups.class.php:167 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2293 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2461 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3432 -#: ../../enterprise/meta/include/functions_autoprovision.php:477 -#: ../../enterprise/meta/include/functions_alerts_meta.php:133 -#: ../../enterprise/meta/include/functions_alerts_meta.php:164 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468 -#: ../../enterprise/meta/advanced/collections.php:339 -#: ../../enterprise/godmode/setup/setup_skins.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2117 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 -#: ../../enterprise/godmode/agentes/inventory_manager.php:224 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:142 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:379 -#: ../../enterprise/godmode/agentes/collections.php:332 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:350 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:682 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 -#: ../../enterprise/godmode/policies/policy_alerts.php:353 -#: ../../godmode/category/category.php:170 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1946 -#: ../../godmode/menu.php:234 ../../godmode/tag/tag.php:284 -#: ../../godmode/events/event_responses.list.php:53 -#: ../../godmode/agentes/planned_downtime.editor.php:921 -#: ../../godmode/agentes/fields_manager.php:121 -#: ../../godmode/agentes/modificar_agente.php:653 -#: ../../godmode/alerts/alert_list.list.php:120 -#: ../../godmode/alerts/alert_list.list.php:484 -#: ../../godmode/alerts/alert_list.builder.php:96 -#: ../../godmode/alerts/alert_commands.php:659 ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/groups/group_list.php:853 -msgid "Actions" -msgstr "アクション" - -#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536 -#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683 -#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765 -#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841 -#: ../../enterprise/include/functions_tasklist.php:217 -#: ../../enterprise/include/functions_tasklist.php:279 -#: ../../enterprise/include/functions_tasklist.php:365 -#: ../../enterprise/include/functions_tasklist.php:406 -#: ../../enterprise/include/functions_tasklist.php:459 -#: ../../enterprise/include/functions_tasklist.php:498 -#: ../../enterprise/include/functions_tasklist.php:535 -msgid "Force run" -msgstr "強制実行" - -#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667 -#: ../../include/functions_cron.php:791 -#: ../../enterprise/operation/reporting/custom_reporting.php:109 -#: ../../enterprise/include/functions_reporting_csv.php:983 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_tasklist.php:253 -#: ../../enterprise/include/functions_tasklist.php:342 -#: ../../enterprise/include/functions_tasklist.php:436 -#: ../../enterprise/include/functions_reporting.php:8124 -#: ../../enterprise/include/functions_reporting.php:8158 -msgid "Report type" -msgstr "レポートタイプ" - -#: ../../include/functions_cron.php:638 -#: ../../enterprise/include/functions_tasklist.php:313 -msgid "regex" -msgstr "正規表現" - -#: ../../include/functions_cron.php:664 ../../enterprise/include/functions_cron.php:228 -#: ../../enterprise/include/functions_tasklist.php:339 -msgid "Report per agent" -msgstr "エージェントごとのレポート" - -#: ../../include/functions_cron.php:703 ../../enterprise/include/functions_cron.php:299 -#: ../../enterprise/include/functions_tasklist.php:383 -msgid "Custom script" -msgstr "カスタムスクリプト" - -#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788 -#: ../../include/lib/Dashboard/Widgets/reports.php:307 -#: ../../include/lib/Dashboard/Widgets/reports.php:352 -#: ../../enterprise/include/functions_tasklist.php:433 -#: ../../extensions/resource_exportation.php:433 -msgid "Report" -msgstr "レポート" - -#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790 -#: ../../include/class/Diagnostics.class.php:2175 -#: ../../enterprise/include/class/ManageBackups.class.php:166 -#: ../../enterprise/include/functions_tasklist.php:435 -msgid "Path" -msgstr "パス" - -#: ../../include/functions_cron.php:943 -#: ../../enterprise/include/functions_tasklist.php:671 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024 -msgid "Disable task" -msgstr "タスク無効化" - -#: ../../include/functions_cron.php:943 -#: ../../enterprise/include/functions_tasklist.php:671 -msgid "Enable task" -msgstr "タスク有効化" - -#: ../../include/functions_incidents.php:29 ../../include/functions_incidents.php:55 -msgid "Informative" -msgstr "情報" - -#: ../../include/functions_incidents.php:30 ../../include/functions_incidents.php:59 -#: ../../include/functions_netflow.php:1845 -msgid "Low" -msgstr "低い" - -#: ../../include/functions_incidents.php:31 ../../include/functions_incidents.php:63 -#: ../../include/functions_netflow.php:1846 -msgid "Medium" -msgstr "中くらい" - -#: ../../include/functions_incidents.php:32 ../../include/functions_incidents.php:67 -msgid "Serious" -msgstr "深刻" - -#: ../../include/functions_incidents.php:33 ../../include/functions_incidents.php:71 -msgid "Very serious" -msgstr "とても深刻" - -#: ../../include/functions_incidents.php:34 ../../include/functions_incidents.php:75 -#: ../../include/functions_events.php:3327 ../../include/functions_graph.php:3533 -#: ../../include/functions_graph.php:3534 ../../include/functions_graph.php:5115 -#: ../../include/functions.php:1023 ../../include/functions.php:1269 -#: ../../include/functions.php:1303 -msgid "Maintenance" -msgstr "メンテナンス" - -#: ../../include/functions_incidents.php:95 ../../include/functions_incidents.php:116 -msgid "Active incidents" -msgstr "アクティブ" - -#: ../../include/functions_incidents.php:96 ../../include/functions_incidents.php:120 -msgid "Active incidents, with comments" -msgstr "アクティブ(コメント付き)" - -#: ../../include/functions_incidents.php:97 ../../include/functions_incidents.php:124 -msgid "Rejected incidents" -msgstr "却下" - -#: ../../include/functions_incidents.php:98 ../../include/functions_incidents.php:128 -msgid "Expired incidents" -msgstr "期限切れ" - -#: ../../include/functions_incidents.php:99 ../../include/functions_incidents.php:132 -msgid "Closed incidents" -msgstr "終了" - -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 -#: ../../include/functions_gis.php:36 -msgid "Hierarchy of agents" -msgstr "エージェントの階層" - -#: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:632 -#: ../../include/lib/Dashboard/Widget.php:556 -#: ../../godmode/reporting/visual_console_builder.data.php:169 -#: ../../godmode/reporting/visual_console_builder.elements.php:151 -msgid "Background" -msgstr "背景" - -#: ../../include/functions_visual_map_editor.php:56 -#: ../../godmode/reporting/visual_console_builder.wizard.php:127 -msgid "Static Graph" -msgstr "静的グラフ" - -#: ../../include/functions_visual_map_editor.php:60 -#: ../../godmode/reporting/visual_console_builder.wizard.php:130 -msgid "Simple value" -msgstr "値" - -#: ../../include/functions_visual_map_editor.php:62 -msgid "" -"To use 'label'field, you should write\n" -"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be printed " -"at the end." -msgstr "" -"'ラベル' フィールドを利用するには、'(_VALUE_)'を\n" -"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。" - -#: ../../include/functions_visual_map_editor.php:97 -#: ../../include/functions_visual_map_editor.php:668 -#: ../../include/functions_reports.php:1248 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../godmode/setup/gis_step_2.php:371 -#: ../../godmode/reporting/visual_console_builder.wizard.php:180 -#: ../../godmode/events/event_responses.editor.php:139 -msgid "Width" -msgstr "幅" - -#: ../../include/functions_visual_map_editor.php:107 -#: ../../include/functions_visual_map_editor.php:133 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 -msgid "Border color" -msgstr "枠の色" - -#: ../../include/functions_visual_map_editor.php:151 -msgid "Border width" -msgstr "枠の幅" - -#: ../../include/functions_visual_map_editor.php:160 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 -msgid "Fill color" -msgstr "塗りつぶしの色" - -#: ../../include/functions_visual_map_editor.php:239 -msgid "Scroll the mouse wheel over the label editor to change the background color" -msgstr "背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします" - -#: ../../include/functions_visual_map_editor.php:250 -#: ../../include/functions_filemanager.php:641 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:336 -#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 -#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:151 -msgid "Image" -msgstr "画像" - -#: ../../include/functions_visual_map_editor.php:255 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 -msgid "Clock animation" -msgstr "時計アニメーション" - -#: ../../include/functions_visual_map_editor.php:258 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 -msgid "Simple analogic" -msgstr "シンプルアナログ" - -#: ../../include/functions_visual_map_editor.php:259 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 -msgid "Simple digital" -msgstr "シンプルデジタル" - -#: ../../include/functions_visual_map_editor.php:273 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 -msgid "Time format" -msgstr "時間書式" - -#: ../../include/functions_visual_map_editor.php:276 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 -msgid "Only time" -msgstr "時間のみ" - -#: ../../include/functions_visual_map_editor.php:277 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 -msgid "Time and date" -msgstr "時間および日付" - -#: ../../include/functions_visual_map_editor.php:290 -#: ../../include/functions_register.php:134 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 -#: ../../enterprise/meta/advanced/metasetup.setup.php:162 -#: ../../godmode/setup/setup_general.php:249 -msgid "Africa" -msgstr "アフリカ" - -#: ../../include/functions_visual_map_editor.php:291 -#: ../../include/functions_register.php:135 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 -#: ../../enterprise/meta/advanced/metasetup.setup.php:163 -#: ../../godmode/setup/setup_general.php:250 -msgid "America" -msgstr "アメリカ" - -#: ../../include/functions_visual_map_editor.php:292 -#: ../../include/functions_register.php:136 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 -#: ../../enterprise/meta/advanced/metasetup.setup.php:164 -#: ../../godmode/setup/setup_general.php:251 -msgid "Antarctica" -msgstr "南極大陸" - -#: ../../include/functions_visual_map_editor.php:293 -#: ../../include/functions_register.php:137 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 -#: ../../enterprise/meta/advanced/metasetup.setup.php:165 -#: ../../godmode/setup/setup_general.php:252 -msgid "Arctic" -msgstr "北極" - -#: ../../include/functions_visual_map_editor.php:294 -#: ../../include/functions_register.php:138 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 -#: ../../enterprise/meta/advanced/metasetup.setup.php:166 -#: ../../godmode/setup/setup_general.php:253 -msgid "Asia" -msgstr "アジア" - -#: ../../include/functions_visual_map_editor.php:295 -#: ../../include/functions_register.php:139 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 -#: ../../enterprise/meta/advanced/metasetup.setup.php:167 -#: ../../godmode/setup/setup_general.php:254 -msgid "Atlantic" -msgstr "大西洋" - -#: ../../include/functions_visual_map_editor.php:296 -#: ../../include/functions_register.php:140 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 -#: ../../enterprise/meta/advanced/metasetup.setup.php:168 -#: ../../godmode/setup/setup_general.php:255 -msgid "Australia" -msgstr "オーストラリア" - -#: ../../include/functions_visual_map_editor.php:297 -#: ../../include/functions_register.php:141 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 -#: ../../enterprise/meta/advanced/metasetup.setup.php:169 -#: ../../godmode/setup/setup_general.php:256 -msgid "Europe" -msgstr "ヨーロッパ" - -#: ../../include/functions_visual_map_editor.php:298 -#: ../../include/functions_register.php:142 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 -#: ../../enterprise/meta/advanced/metasetup.setup.php:170 -#: ../../godmode/setup/setup_general.php:257 -msgid "Indian" -msgstr "インド" - -#: ../../include/functions_visual_map_editor.php:299 -#: ../../include/functions_register.php:143 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 -#: ../../enterprise/meta/advanced/metasetup.setup.php:171 -#: ../../godmode/setup/setup_general.php:258 -msgid "Pacific" -msgstr "太平洋" - -#: ../../include/functions_visual_map_editor.php:300 -#: ../../include/functions_register.php:144 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 -#: ../../enterprise/meta/advanced/metasetup.setup.php:172 -#: ../../godmode/setup/setup_general.php:259 -msgid "UTC" -msgstr "UTC" - -#: ../../include/functions_visual_map_editor.php:313 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 -msgid "Time zone" -msgstr "タイムゾーン" - -#: ../../include/functions_visual_map_editor.php:329 -msgid "Enable link" -msgstr "リンクを有効にする" - -#: ../../include/functions_visual_map_editor.php:347 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524 -#: ../../godmode/reporting/visual_console_builder.data.php:181 -msgid "Background color" -msgstr "背景色" - -#: ../../include/functions_visual_map_editor.php:350 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518 -msgid "White" -msgstr "白" - -#: ../../include/functions_visual_map_editor.php:351 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519 -msgid "Black" -msgstr "黒" - -#: ../../include/functions_visual_map_editor.php:352 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520 -msgid "Transparent" -msgstr "透過" - -#: ../../include/functions_visual_map_editor.php:378 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499 -msgid "Grid color" -msgstr "グリッドの色" - -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map.php:4179 -#: ../../include/rest-api/models/VisualConsole/Item.php:2099 -#: ../../mobile/operation/home.php:102 -#: ../../godmode/reporting/visual_console_builder.wizard.php:129 -msgid "Module graph" -msgstr "モジュールデータのグラフ" - -#: ../../include/functions_visual_map_editor.php:397 -#: ../../include/functions_visual_map_editor.php:400 -#: ../../include/functions_reports.php:561 ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:654 ../../include/functions_reporting.php:9845 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154 -#: ../../godmode/reporting/create_container.php:480 -#: ../../godmode/reporting/create_container.php:624 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.elements.php:575 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2090 -msgid "Custom graph" -msgstr "カスタムグラフ" - -#: ../../include/functions_visual_map_editor.php:498 -msgid "Data image" -msgstr "データ画像" - -#: ../../include/functions_visual_map_editor.php:503 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258 -msgid "Resume data color" -msgstr "データの色を戻す" - -#: ../../include/functions_visual_map_editor.php:517 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269 -msgid "24h" -msgstr "24時間" - -#: ../../include/functions_visual_map_editor.php:518 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271 -msgid "8h" -msgstr "8時間" - -#: ../../include/functions_visual_map_editor.php:519 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272 -msgid "2h" -msgstr "2時間" - -#: ../../include/functions_visual_map_editor.php:520 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273 -msgid "1h" -msgstr "1時間" - -#: ../../include/functions_visual_map_editor.php:524 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 -msgid "Max. Time" -msgstr "最大時間" - -#: ../../include/functions_visual_map_editor.php:554 -#: ../../godmode/reporting/create_container.php:428 -#: ../../godmode/reporting/create_container.php:583 -#: ../../godmode/reporting/graph_builder.main.php:208 -msgid "Type of graph" -msgstr "グラフのタイプ" - -#: ../../include/functions_visual_map_editor.php:612 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 -#: ../../godmode/reporting/visual_console_builder.wizard.php:256 -msgid "Process" -msgstr "処理" - -#: ../../include/functions_visual_map_editor.php:615 -#: ../../godmode/reporting/visual_console_builder.wizard.php:259 -msgid "Min value" -msgstr "最小値" - -#: ../../include/functions_visual_map_editor.php:616 -#: ../../include/functions_visual_map_editor.php:682 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../godmode/reporting/visual_console_builder.wizard.php:278 -msgid "Max value" -msgstr "最大値" - -#: ../../include/functions_visual_map_editor.php:617 -#: ../../godmode/reporting/visual_console_builder.wizard.php:261 -msgid "Avg value" -msgstr "平均値" - -#: ../../include/functions_visual_map_editor.php:640 -msgid "Original Size" -msgstr "オリジナルのサイズ" - -#: ../../include/functions_visual_map_editor.php:641 -#: ../../enterprise/meta/advanced/policymanager.apply.php:213 -#: ../../enterprise/meta/advanced/policymanager.queue.php:311 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 -#: ../../enterprise/godmode/policies/policy_queue.php:714 -msgid "Apply" -msgstr "適用" - -#: ../../include/functions_visual_map_editor.php:648 -msgid "Aspect ratio" -msgstr "縦横比:" - -#: ../../include/functions_visual_map_editor.php:649 -msgid "Proportional Width" -msgstr "プロポーショナル幅" - -#: ../../include/functions_visual_map_editor.php:657 -msgid "Height proportional" -msgstr "高さに比例" - -#: ../../include/functions_visual_map_editor.php:673 -#: ../../include/functions_reports.php:1264 ../../include/functions_reports.php:1364 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 -#: ../../godmode/setup/gis_step_2.php:378 -#: ../../godmode/reporting/visual_console_builder.wizard.php:181 -#: ../../godmode/events/event_responses.editor.php:141 -msgid "Height" -msgstr "高さ" - -#: ../../include/functions_visual_map_editor.php:686 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 -#: ../../enterprise/meta/include/functions_meta.php:1348 -#: ../../enterprise/meta/advanced/metasetup.visual.php:216 -#: ../../godmode/setup/setup_visuals.php:935 -#: ../../godmode/reporting/visual_console_builder.elements.php:212 -#: ../../godmode/reporting/visual_console_builder.wizard.php:285 -msgid "Percentile" -msgstr "パーセント" - -#: ../../include/functions_visual_map_editor.php:687 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 -#: ../../godmode/reporting/visual_console_builder.wizard.php:295 -msgid "Bubble" -msgstr "バブル" - -#: ../../include/functions_visual_map_editor.php:688 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -msgid "Circular porgress bar" -msgstr "円進捗バー" - -#: ../../include/functions_visual_map_editor.php:689 -#: ../../include/functions_visual_map.php:4209 -#: ../../include/rest-api/models/VisualConsole/Item.php:2127 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -msgid "Circular progress bar (interior)" -msgstr "円進捗バー(内部)" - -#: ../../include/functions_visual_map_editor.php:692 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 -#: ../../godmode/reporting/visual_console_builder.wizard.php:309 -msgid "Percent" -msgstr "パーセント" - -#: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reports.php:1068 ../../include/ajax/events.php:2003 -#: ../../include/functions_netflow.php:212 ../../include/functions_graph.php:5453 -#: ../../include/functions_snmp_browser.php:560 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reporting_html.php:940 -#: ../../include/functions_reporting_html.php:2180 -#: ../../include/functions_reporting_html.php:4646 -#: ../../include/functions_reporting_html.php:5156 -#: ../../enterprise/operation/services/services.service.php:124 -#: ../../enterprise/operation/services/services.list.php:506 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:2681 -#: ../../enterprise/meta/include/functions_autoprovision.php:643 -#: ../../enterprise/meta/advanced/metasetup.relations.php:430 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:405 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 -#: ../../godmode/setup/setup_visuals.php:1288 ../../godmode/setup/setup_visuals.php:1349 -#: ../../godmode/setup/setup_visuals.php:1369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2527 -#: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 -#: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/agentes/module_manager_editor_common.php:1214 -#: ../../godmode/alerts/configure_alert_template.php:816 -msgid "Value" -msgstr "値" - -#: ../../include/functions_visual_map_editor.php:711 -#: ../../include/functions_visual_map_editor.php:729 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 -#: ../../godmode/reporting/visual_console_builder.wizard.php:307 -msgid "Value to show" -msgstr "表示する値" - -#: ../../include/functions_visual_map_editor.php:739 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 -msgid "Element color" -msgstr "要素の色" - -#: ../../include/functions_visual_map_editor.php:759 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 -msgid "Value color" -msgstr "値の色" - -#: ../../include/functions_visual_map_editor.php:788 -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639 -#: ../../enterprise/include/functions_reporting_csv.php:483 -#: ../../enterprise/include/functions_reporting_csv.php:486 -#: ../../enterprise/include/functions_reporting_csv.php:710 -#: ../../enterprise/include/functions_reporting_csv.php:831 -#: ../../enterprise/include/functions_reporting_csv.php:914 -#: ../../enterprise/include/functions_reporting_csv.php:946 -#: ../../enterprise/include/functions_reporting_csv.php:1006 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1215 -#: ../../enterprise/include/functions_reporting_csv.php:1270 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -#: ../../enterprise/include/functions_reporting_csv.php:1495 -#: ../../enterprise/include/functions_reporting_csv.php:1881 -#: ../../enterprise/include/functions_reporting_csv.php:1931 -#: ../../enterprise/include/functions_reporting_csv.php:2627 -#: ../../enterprise/include/functions_reporting_csv.php:2678 -#: ../../enterprise/include/functions_reporting_csv.php:2804 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1258 -#: ../../godmode/reporting/graph_builder.main.php:196 -#: ../../godmode/reporting/visual_console_builder.wizard.php:242 -#: ../../godmode/agentes/module_manager_editor_prediction.php:179 -msgid "Period" -msgstr "更新間隔" - -#: ../../include/functions_visual_map_editor.php:793 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 -msgid "Show statistics" -msgstr "統計表示" - -#: ../../include/functions_visual_map_editor.php:801 -msgid "Diameter" -msgstr "直径" - -#: ../../include/functions_visual_map_editor.php:808 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 -msgid "Default color" -msgstr "デフォルト色" - -#: ../../include/functions_visual_map_editor.php:812 -msgid "" -"The color of the element will be the one selected in the first range created in which " -"the value of the module is found (with the initial and final values of the range " -"included)" -msgstr "" -"要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色になります" -"(含まれる範囲の初期値と最終値)。" - -#: ../../include/functions_visual_map_editor.php:815 -msgid "Ranges" -msgstr "範囲" - -#: ../../include/functions_visual_map_editor.php:815 -msgid "From value" -msgstr "開始値" - -#: ../../include/functions_visual_map_editor.php:815 -msgid "To value" -msgstr "終了値" - -#: ../../include/functions_visual_map_editor.php:815 -#: ../../include/rest-api/index.php:363 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 -msgid "Color" -msgstr "色" - -#: ../../include/functions_visual_map_editor.php:820 -msgid "Always show on top" -msgstr "常に上に表示" - -#: ../../include/functions_visual_map_editor.php:821 -msgid "" -"It allows the element to be superimposed to the rest of items of the visual console" -msgstr "要素をビジュアルコンソールの残りの項目に重ね合わせることができます。" - -#: ../../include/functions_visual_map_editor.php:824 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:396 -msgid "Hide last value on boolean modules" -msgstr "boolean モジュールでは最新の値を隠す" - -#: ../../include/functions_visual_map_editor.php:825 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:398 -#: ../../include/functions_reporting_html.php:3352 -#: ../../enterprise/tools/ipam/ipam_ajax.php:419 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3218 -#: ../../enterprise/include/class/DatabaseHA.class.php:205 -#: ../../godmode/modules/manage_network_components_form_wizard.php:246 -#: ../../godmode/massive/massive_edit_agents.php:1016 -#: ../../godmode/agentes/module_manager_editor_common.php:1061 -#: ../../godmode/agentes/module_manager_editor_common.php:1071 -#: ../../godmode/alerts/configure_alert_template.php:900 -#: ../../godmode/groups/group_list.php:908 -msgid "Enabled" -msgstr "有効" - -#: ../../include/functions_visual_map_editor.php:830 -msgid "Show last value" -msgstr "最新の値を表示" - -#: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 -msgid "Vertical" -msgstr "縦" - -#: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 -msgid "Horizontal" -msgstr "横" - -#: ../../include/functions_visual_map_editor.php:922 -#: ../../include/rest-api/models/VisualConsole/Item.php:2023 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/snmpconsole/snmp_alert.php:1039 -#: ../../godmode/snmpconsole/snmp_alert.php:1217 -msgid "Position" -msgstr "位置" - -#: ../../include/functions_visual_map_editor.php:934 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "オリジナルの画像サイズを利用するためには、幅と高さを 0 に設定してください。" - -#: ../../include/functions_visual_map_editor.php:974 -#: ../../include/rest-api/models/VisualConsole/Item.php:2433 -msgid "Linked visual console" -msgstr "リンクされたビジュアルコンソール" - -#: ../../include/functions_visual_map_editor.php:1081 -#: ../../include/rest-api/models/VisualConsole/Item.php:2484 -msgid "By status weight" -msgstr "状態ウエイトごと" - -#: ../../include/functions_visual_map_editor.php:1082 -#: ../../include/rest-api/models/VisualConsole/Item.php:2485 -msgid "By critical elements" -msgstr "障害要素ごと" - -#: ../../include/functions_visual_map_editor.php:1097 -#: ../../include/rest-api/models/VisualConsole/Item.php:2492 -msgid "Type of the status calculation of the linked visual console" -msgstr "リンクされたビジュアルコンソールの状態計算のタイプ" - -#: ../../include/functions_visual_map_editor.php:1102 -#: ../../include/rest-api/models/VisualConsole/Item.php:2483 -msgid "By default" -msgstr "デフォルト" - -#: ../../include/functions_visual_map_editor.php:1122 -#: ../../include/rest-api/models/VisualConsole/Item.php:2508 -msgid "Linked visual console weight" -msgstr "リンクされたビジュアルコンソールのウエイト" - -#: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2522 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509 -#: ../../enterprise/godmode/massive/massive_create_services.php:1151 -msgid "Critical weight" -msgstr "障害ウエイト" - -#: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2536 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522 -#: ../../enterprise/godmode/massive/massive_create_services.php:1164 -msgid "Warning weight" -msgstr "警告ウエイト" - -#: ../../include/functions_visual_map_editor.php:1189 -msgid "Lines haven't advanced options" -msgstr "拡張オプションがありません" - -#: ../../include/functions_visual_map_editor.php:1206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2188 -msgid "Restrict access to group" -msgstr "グループへの制限アクセス" - -#: ../../include/functions_visual_map_editor.php:1217 -msgid "" -"If selected, restrict visualization of this item in the visual console to users who " -"have access to selected group. This is also used on calculating child visual consoles." -msgstr "" -"選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアクセスでき" -"るユーザーに制限します。 これは、子ビジュアルコンソールにも使用されます。" - -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/class/AgentsAlerts.class.php:387 ../../include/functions_html.php:2107 -#: ../../include/functions.php:499 ../../include/functions.php:630 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 -#: ../../enterprise/meta/advanced/metasetup.visual.php:382 -#: ../../enterprise/meta/advanced/metasetup.visual.php:849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:850 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../godmode/setup/setup_visuals.php:1030 ../../godmode/setup/setup_visuals.php:1031 -#: ../../godmode/setup/setup_visuals.php:1342 -#: ../../godmode/snmpconsole/snmp_alert.php:1015 -msgid "seconds" -msgstr "秒" - -#: ../../include/functions_visual_map_editor.php:1225 -#: ../../include/functions_visual_map_editor.php:1226 -#: ../../include/functions_visual_map_editor.php:1227 -#: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions_html.php:2108 ../../include/functions.php:503 -#: ../../include/functions.php:634 ../../enterprise/include/ajax/log_viewer.ajax.php:276 -#: ../../enterprise/meta/advanced/metasetup.visual.php:383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:851 -#: ../../enterprise/meta/advanced/metasetup.visual.php:852 -#: ../../enterprise/meta/advanced/metasetup.visual.php:853 -#: ../../enterprise/meta/advanced/metasetup.visual.php:854 -#: ../../godmode/setup/setup_visuals.php:1032 ../../godmode/setup/setup_visuals.php:1033 -#: ../../godmode/setup/setup_visuals.php:1034 ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/setup/setup_visuals.php:1343 -msgid "minutes" -msgstr "分" - -#: ../../include/functions_visual_map_editor.php:1229 -#: ../../enterprise/meta/advanced/metasetup.visual.php:855 -#: ../../godmode/setup/setup_visuals.php:1036 -msgid "hour" -msgstr "時間" - -#: ../../include/functions_visual_map_editor.php:1248 -#: ../../include/rest-api/models/VisualConsole/Item.php:2201 -msgid "Cache expiration" -msgstr "キャッシュ有効期限" - -#: ../../include/functions_visual_map_editor.php:1255 -#: ../../enterprise/meta/advanced/metasetup.visual.php:862 -#: ../../godmode/setup/setup_visuals.php:1043 -msgid "No cache" -msgstr "キャッシュ無し" - -#: ../../include/functions_visual_map_editor.php:1287 -msgid "Click start point
    of the line" -msgstr "線の開始場所
    をクリックしてください" - -#: ../../include/functions_visual_map_editor.php:1290 -msgid "Click end point
    of the line" -msgstr "線の終了場所
    をクリックしてください" - -#: ../../include/functions_visual_map_editor.php:1420 -msgid "Show grid" -msgstr "グリッド表示" - -#: ../../include/functions_visual_map_editor.php:1421 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3460 -#: ../../extensions/agents_modules.php:448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3706 -msgid "Update item" -msgstr "アイテム更新" - -#: ../../include/functions_visual_map_editor.php:1422 -msgid "Delete item" -msgstr "アイテムの削除" - -#: ../../include/functions_visual_map_editor.php:1423 -msgid "Copy item" -msgstr "アイテムのコピー" - -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1467 -#: ../../include/functions_visual_map_editor.php:1471 -#: ../../include/functions_visual_map_editor.php:1475 -#: ../../include/functions_visual_map_editor.php:1479 -#: ../../include/functions_visual_map_editor.php:1483 -#: ../../include/functions_visual_map_editor.php:1487 -#: ../../include/functions_visual_map_editor.php:1491 -#: ../../include/functions_visual_map_editor.php:1495 -#: ../../include/functions_visual_map_editor.php:1499 -#: ../../include/functions_visual_map_editor.php:1503 -#: ../../include/functions_visual_map_editor.php:1507 -#: ../../include/functions_visual_map_editor.php:1511 -#: ../../include/functions_visual_map_editor.php:1515 -#: ../../include/functions_visual_map_editor.php:1519 -#: ../../include/functions_visual_map_editor.php:1523 -#: ../../include/functions_visual_map_editor.php:1527 -#: ../../include/functions_visual_map_editor.php:1531 -#: ../../include/functions_visual_map_editor.php:1535 -msgid "Visual Console Builder Information" -msgstr "ビジュアルコンソールビルダ情報" - -#: ../../include/functions_visual_map_editor.php:1464 -msgid "Min allowed size is 1024x768." -msgstr "最小サイズは 1024x768 です。" - -#: ../../include/functions_visual_map_editor.php:1468 -#: ../../include/functions_visual_map_editor.php:1536 -msgid "No custom graph defined." -msgstr "カスタムグラフがありません。" - -#: ../../include/functions_visual_map_editor.php:1472 -msgid "No image or name defined." -msgstr "画像や名前が定義されていません。" - -#: ../../include/functions_visual_map_editor.php:1476 -msgid "No label defined." -msgstr "ラベルが定義されていません。" - -#: ../../include/functions_visual_map_editor.php:1480 -msgid "No service defined." -msgstr "サービスがありません。" - -#: ../../include/functions_visual_map_editor.php:1484 -msgid "No image defined." -msgstr "画像が定義されていません。" - -#: ../../include/functions_visual_map_editor.php:1488 -msgid "No process defined." -msgstr "処理が定義されていません。" - -#: ../../include/functions_visual_map_editor.php:1492 -msgid "No Max value defined." -msgstr "最大値が定義されていません" - -#: ../../include/functions_visual_map_editor.php:1496 -msgid "No width defined." -msgstr "幅が定義されていません" - -#: ../../include/functions_visual_map_editor.php:1500 -msgid "No height defined." -msgstr "高さが定義されていません。" - -#: ../../include/functions_visual_map_editor.php:1504 -msgid "The width must not exceed the size of the visual console container." -msgstr "幅はビジュアルコンソールコンテナのサイズを超えてはいけません。" - -#: ../../include/functions_visual_map_editor.php:1508 -msgid "The height must not exceed the size of the visual console container." -msgstr "高さはビジュアルコンソールコンテナのサイズを超えてはいけません。" - -#: ../../include/functions_visual_map_editor.php:1512 -msgid "No period defined." -msgstr "期間が定義されていません。" - -#: ../../include/functions_visual_map_editor.php:1516 -msgid "No agent defined." -msgstr "エージェントが定義されていません" - -#: ../../include/functions_visual_map_editor.php:1520 -msgid "No module defined." -msgstr "モジュールが定義されていません" - -#: ../../include/functions_visual_map_editor.php:1524 -msgid "No module defined. This module must be string type." -msgstr "" -"モジュールが定義されていません。このモジュールは文字列タイプである必要があります。" - -#: ../../include/functions_visual_map_editor.php:1528 -msgid "Successfully save the changes." -msgstr "変更を保存しました。" - -#: ../../include/functions_visual_map_editor.php:1532 -msgid "Could not be save." -msgstr "保存できません。" - -#: ../../include/functions_plugins.php:58 -#, php-format -msgid "Failed to erase module %d: %s" -msgstr "次のモジュールの削除に失敗しました %d:%s" - -#: ../../include/functions_plugins.php:72 -#, php-format -msgid "Failed to erase policy module: %d" -msgstr "ポリシーモジュールの削除に失敗しました: %d" - -#: ../../include/functions_reports.php:639 ../../include/functions_reports.php:1083 -#: ../../include/functions_reporting.php:9919 -#: ../../include/functions_reporting.php:10079 -msgid "Simple graph" -msgstr "単一グラフ" - -#: ../../include/functions_reports.php:643 -#: ../../enterprise/include/functions_reporting.php:8347 -msgid "Simple baseline graph" -msgstr "シンプルベースライングラフ" - -#: ../../include/functions_reports.php:661 -#: ../../enterprise/include/functions_reporting_csv.php:1137 -msgid "SQL vertical bar graph" -msgstr "SQL 縦棒グラフ" - -#: ../../include/functions_reports.php:665 -#: ../../enterprise/include/functions_reporting_csv.php:1141 -msgid "SQL pie graph" -msgstr "SQL 円グラフ" - -#: ../../include/functions_reports.php:669 -#: ../../enterprise/include/functions_reporting_csv.php:1139 -msgid "SQL horizontal bar graph" -msgstr "SQL 横棒グラフ" - -#: ../../include/functions_reports.php:676 -msgid "Automatic combined Graph" -msgstr "自動合成グラフ" - -#: ../../include/functions_reports.php:682 -msgid "Availability graph" -msgstr "可用性グラフ" - -#: ../../include/functions_reports.php:687 -msgid "Module Histogram graph" -msgstr "モジュールヒストグラムグラフ" - -#: ../../include/functions_reports.php:692 ../../enterprise/tools/ipam/ipam.php:453 -#: ../../enterprise/godmode/menu.php:322 -msgid "IPAM" -msgstr "IPAM" - -#: ../../include/functions_reports.php:693 -msgid "IPAM networks" -msgstr "IPAM ネットワーク" - -#: ../../include/functions_reports.php:698 ../../include/functions_reports.php:703 -#: ../../include/functions_reports.php:707 ../../include/functions_reports.php:711 -#: ../../include/functions_reports.php:717 -#: ../../enterprise/operation/services/services.service.php:128 -#: ../../enterprise/operation/services/services.list.php:508 -#: ../../enterprise/include/functions_reporting_csv.php:1991 -msgid "SLA" -msgstr "SLA" - -#: ../../include/functions_reports.php:699 ../../include/functions_reporting.php:950 -#: ../../enterprise/include/functions_reporting_csv.php:1481 -#: ../../enterprise/godmode/services/services.service.php:804 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "S.L.A." -msgstr "SLA" - -#: ../../include/functions_reports.php:704 -#: ../../enterprise/include/functions_reporting.php:2371 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -msgid "Monthly S.L.A." -msgstr "月次 S.L.A." - -#: ../../include/functions_reports.php:708 -#: ../../enterprise/include/functions_reporting.php:3323 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 -msgid "Weekly S.L.A." -msgstr "週次 S.L.A." - -#: ../../include/functions_reports.php:712 -#: ../../enterprise/include/functions_reporting.php:4301 -msgid "Hourly S.L.A." -msgstr "1時間ごとの S.L.A." - -#: ../../include/functions_reports.php:718 -#: ../../enterprise/include/functions_reporting.php:5566 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -msgid "Services S.L.A." -msgstr "サービス SLA" - -#: ../../include/functions_reports.php:724 ../../include/functions_reports.php:728 -msgid "Forecasting" -msgstr "予測" - -#: ../../include/functions_reports.php:725 -#: ../../enterprise/include/functions_reporting_csv.php:768 -msgid "Prediction date" -msgstr "予測日" - -#: ../../include/functions_reports.php:729 -msgid "Projection graph" -msgstr "予想グラフ" - -#: ../../include/functions_reports.php:734 -msgid "Avg. value" -msgstr "平均値" - -#: ../../include/functions_reports.php:738 -msgid "Max. value" -msgstr "最大値" - -#: ../../include/functions_reports.php:742 -msgid "Min. value" -msgstr "最小値" - -#: ../../include/functions_reports.php:746 -msgid "Monitor report" -msgstr "モニタ項目レポート" - -#: ../../include/functions_reports.php:750 -msgid "Serialize data" -msgstr "データの並び" - -#: ../../include/functions_reports.php:754 ../../include/functions_reporting.php:6435 -#: ../../include/functions_reporting.php:9735 -#: ../../enterprise/include/functions_reporting_csv.php:1170 -#: ../../enterprise/include/functions_reporting_csv.php:1188 -#: ../../enterprise/include/functions_reporting_csv.php:1190 -msgid "Summatory" -msgstr "合計" - -#: ../../include/functions_reports.php:758 -msgid "Historical Data" -msgstr "保存データ" - -#: ../../include/functions_reports.php:762 ../../include/functions_reporting.php:9252 -#: ../../include/functions_reporting_html.php:3705 -#: ../../enterprise/include/functions_reporting_csv.php:1311 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -#: ../../enterprise/include/functions_reporting_csv.php:1329 -#: ../../enterprise/include/functions_reporting_csv.php:1340 -msgid "Increment" -msgstr "増分" - -#: ../../include/functions_reports.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1742 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1235 -msgid "Last value" -msgstr "最新の値" - -#: ../../include/functions_reports.php:770 ../../include/functions_reports.php:776 -#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 -#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:801 -#: ../../include/functions_reports.php:808 ../../include/functions_reports.php:814 -#: ../../include/functions_reports.php:818 ../../include/functions_reports.php:823 -#: ../../include/functions_reports.php:829 -msgid "Grouped" -msgstr "グループ化" - -#: ../../include/functions_reports.php:771 ../../include/ajax/events.php:1494 -#: ../../include/functions_reporting.php:9397 -#: ../../enterprise/include/functions_reporting_csv.php:992 -#: ../../enterprise/include/class/Aws.cloud.php:345 -#: ../../enterprise/meta/include/functions_wizard_meta.php:248 -#: ../../enterprise/meta/include/functions_wizard_meta.php:533 -#: ../../enterprise/meta/include/functions_wizard_meta.php:605 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1153 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 -#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../godmode/alerts/configure_alert_template.php:229 -#: ../../godmode/alerts/configure_alert_template.php:233 -msgid "General" -msgstr "一般" - -#: ../../include/functions_reports.php:777 ../../include/functions_reports.php:783 -#: ../../enterprise/include/functions_reporting_csv.php:986 -msgid "Group report" -msgstr "グループレポート" - -#: ../../include/functions_reports.php:789 ../../include/functions_reporting.php:3048 -#: ../../enterprise/include/functions_reporting_csv.php:900 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 -msgid "Exception" -msgstr "例外" - -#: ../../include/functions_reports.php:795 ../../extensions/agents_modules.php:465 -msgid "Agents/Modules" -msgstr "エージェント/モジュール" - -#: ../../include/functions_reports.php:802 -msgid "Agents/Modules status" -msgstr "エージェント/モジュール状態" - -#: ../../include/functions_reports.php:809 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2222 -msgid "SQL query" -msgstr "SQL クエリ" - -#: ../../include/functions_reports.php:815 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -msgid "Top n" -msgstr "トップ n" - -#: ../../include/functions_reports.php:819 -msgid "Network interfaces" -msgstr "ネットワークインタフェース" - -#: ../../include/functions_reports.php:824 -msgid "Custom Render" -msgstr "カスタムレンダリング" - -#: ../../include/functions_reports.php:830 ../../include/functions_reporting.php:8122 -#: ../../include/functions_reporting.php:8514 -#: ../../enterprise/include/functions_reporting_csv.php:473 -#: ../../enterprise/include/functions_reporting.php:1227 -msgid "Availability" -msgstr "可用性" - -#: ../../include/functions_reports.php:834 ../../include/functions_reports.php:838 -msgid "Text/HTML " -msgstr "テキスト/HTML " - -#: ../../include/functions_reports.php:835 -#: ../../include/lib/Dashboard/Widgets/post.php:214 -#: ../../include/functions_reporting.php:6824 -#: ../../enterprise/include/functions_reporting_csv.php:2387 -#: ../../enterprise/include/functions_reporting_csv.php:2401 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2189 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 -#: ../../godmode/setup/setup_visuals.php:1289 ../../godmode/setup/news.php:205 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2186 -msgid "Text" -msgstr "文字列" - -#: ../../include/functions_reports.php:839 -msgid "Import text from URL" -msgstr "URL からテキストをインポート" - -#: ../../include/functions_reports.php:844 -msgid "Module alert report" -msgstr "モジュールアラートレポート" - -#: ../../include/functions_reports.php:848 -msgid "Agent alert report " -msgstr "エージェントアラートレポート " - -#: ../../include/functions_reports.php:854 -msgid "Group alert report" -msgstr "グループアラートレポート" - -#: ../../include/functions_reports.php:860 -msgid "Actions alert report " -msgstr "アクションアラートレポート" - -#: ../../include/functions_reports.php:865 -msgid "Module event report" -msgstr "モジュールイベントレポート" - -#: ../../include/functions_reports.php:869 -msgid "Agent event report" -msgstr "エージェントイベントレポート" - -#: ../../include/functions_reports.php:873 -msgid "Group event report" -msgstr "グループイベントレポート" - -#: ../../include/functions_reports.php:878 ../../include/functions_reports.php:885 -#: ../../include/functions_reports.php:886 ../../include/functions_reports.php:890 -#: ../../include/functions_reporting.php:2612 ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/agentes/ver_agente.php:192 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../enterprise/include/functions_reporting_csv.php:754 -#: ../../enterprise/meta/general/main_menu.php:229 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 -#: ../../enterprise/godmode/policies/policies.php:539 -#: ../../godmode/setup/setup_integria.php:314 -#: ../../godmode/agentes/configurar_agente.php:711 -msgid "Inventory" -msgstr "インベントリ" - -#: ../../include/functions_reports.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:696 -msgid "Agents inventory" -msgstr "エージェントインベントリ" - -#: ../../include/functions_reports.php:891 -msgid "Inventory changes" -msgstr "インベントリ変更" - -#: ../../include/functions_reports.php:898 ../../include/functions_reports.php:902 -#: ../../include/class/ModuleTemplates.class.php:195 -#: ../../include/class/ModuleTemplates.class.php:213 -#: ../../include/class/ConfigPEN.class.php:327 -#: ../../enterprise/views/ncm/agent/details.php:600 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:351 -#: ../../enterprise/godmode/modules/configure_local_component.php:483 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687 -#: ../../godmode/setup/setup.php:330 ../../godmode/menu.php:210 -#: ../../godmode/agentes/planned_downtime.list.php:615 -msgid "Configuration" -msgstr "設定" - -#: ../../include/functions_reports.php:899 ../../include/functions_reporting.php:6250 -msgid "Agent configuration" -msgstr "エージェント設定" - -#: ../../include/functions_reports.php:903 ../../include/functions_reporting.php:4511 -msgid "Group configuration" -msgstr "グループ設定" - -#: ../../include/functions_reports.php:906 ../../include/functions_reports.php:910 -#: ../../include/functions_reports.php:914 ../../include/functions_reports.php:918 -#: ../../enterprise/include/functions_enterprise.php:452 -#: ../../enterprise/meta/general/main_menu.php:381 -#: ../../enterprise/meta/general/logon_ok.php:37 -#: ../../enterprise/meta/general/main_header.php:275 ../../godmode/setup/setup.php:151 -#: ../../godmode/setup/setup.php:271 ../../godmode/menu.php:342 -msgid "Netflow" -msgstr "Netflow" - -#: ../../include/functions_reports.php:907 -#: ../../enterprise/include/functions_reporting_csv.php:2607 -msgid "Netflow area chart" -msgstr "Netflow 塗り潰しグラフ" - -#: ../../include/functions_reports.php:911 -msgid "Netflow data table" -msgstr "Netflow データ表" - -#: ../../include/functions_reports.php:915 -msgid "Netflow summary table" -msgstr "Netflow サマリ表" - -#: ../../include/functions_reports.php:919 ../../include/functions_reporting.php:5926 -#: ../../enterprise/include/functions_reporting_csv.php:2786 -msgid "Netflow top-N connections" -msgstr "Netflow トップ N 接続" - -#: ../../include/functions_reports.php:925 -#: ../../enterprise/include/functions_reporting.php:2144 -msgid "Log" -msgstr "ログ" - -#: ../../include/functions_reports.php:926 -#: ../../enterprise/include/functions_reporting.php:2131 -msgid "Log report" -msgstr "ログレポート" - -#: ../../include/functions_reports.php:932 ../../include/functions_reports.php:933 -#: ../../include/functions_reporting.php:4389 -#: ../../enterprise/include/functions_reporting_csv.php:2531 -msgid "Permissions report" -msgstr "権限レポート" - -#: ../../include/functions_reports.php:938 -#: ../../enterprise/views/ncm/devices/list.php:64 -msgid "NCM" -msgstr "NCM" - -#: ../../include/functions_reports.php:939 -msgid "Network configuration changes" -msgstr "ネットワーク設定変更" - -#: ../../include/functions_reports.php:956 -#: ../../enterprise/godmode/policies/policy_modules.php:1363 -#: ../../godmode/agentes/configurar_agente.php:2110 -#, php-format -msgid "copy of %s" -msgstr "%s のコピー" - -#: ../../include/functions_reports.php:1066 -msgid "Macro" -msgstr "マクロ" - -#: ../../include/functions_reports.php:1080 ../../include/functions_reports.php:1210 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 -#: ../../godmode/modules/manage_network_components_form_wizard.php:392 -#: ../../godmode/modules/manage_network_components_form_wizard.php:434 -msgid "String" -msgstr "文字列" - -#: ../../include/functions_reports.php:1081 ../../include/functions_reports.php:1210 -#: ../../include/functions_reports.php:1230 -msgid "Sql" -msgstr "SQL" - -#: ../../include/functions_reports.php:1082 -msgid "Graph Sql" -msgstr "グラフ SQL" - -#: ../../include/functions_reports.php:1380 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 -msgid "Period " -msgstr "期間 " - -#: ../../include/ajax/module.php:199 ../../include/functions.php:3358 -msgid "30 minutes" -msgstr "30 分" - -#: ../../include/ajax/module.php:201 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 -msgid "6 hours" -msgstr "6 時間" - -#: ../../include/ajax/module.php:202 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 -#: ../../godmode/setup/performance.php:530 -msgid "12 hours" -msgstr "12時間" - -#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150 -#: ../../include/functions.php:2694 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 -#: ../../godmode/reporting/create_container.php:350 -msgid "1 day" -msgstr "1日" - -#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153 -#: ../../include/functions.php:2695 ../../godmode/reporting/create_container.php:353 -msgid "1 week" -msgstr "1週間" - -#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154 -#: ../../include/functions.php:2696 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 -#: ../../godmode/reporting/create_container.php:354 -msgid "15 days" -msgstr "15日" - -#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155 -#: ../../include/functions.php:2697 ../../godmode/reporting/create_container.php:355 -msgid "1 month" -msgstr "1ヵ月" - -#: ../../include/ajax/module.php:207 -msgid "3 months" -msgstr "3ヵ月" - -#: ../../include/ajax/module.php:208 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -msgid "6 months" -msgstr "6ヵ月" - -#: ../../include/ajax/module.php:209 ../../include/functions.php:2700 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -msgid "1 year" -msgstr "1年" - -#: ../../include/ajax/module.php:210 -msgid "2 years" -msgstr "2年" - -#: ../../include/ajax/module.php:211 -msgid "3 years" -msgstr "3 年" - -#: ../../include/ajax/module.php:307 -msgid "Exact phrase" -msgstr "完全なフレーズ" - -#: ../../include/ajax/module.php:981 -#: ../../enterprise/meta/include/functions_wizard_meta.php:999 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1084 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1317 -msgid "Thresholds" -msgstr "しきい値" - -#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092 -#: ../../godmode/agentes/module_manager.php:1042 -#: ../../godmode/agentes/module_manager.php:1050 -msgid "Adopted" -msgstr "適用" - -#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../godmode/agentes/module_manager.php:1050 -#: ../../godmode/agentes/module_manager.php:1053 -msgid "Unlinked" -msgstr "未リンク" - -#: ../../include/ajax/module.php:1304 -msgid "Any monitors aren't with this filter." -msgstr "このフィルタに合うモニタ項目がありません。" - -#: ../../include/ajax/module.php:1306 -msgid "This agent doesn't have any active monitors." -msgstr "エージェントに有効な監視がありません。" - -#: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2833 -#: ../../enterprise/operation/agentes/wux_console_view.php:593 -#: ../../enterprise/godmode/setup/setup_acl.php:791 -#: ../../enterprise/godmode/reporting/visual_console_template.php:305 -msgid "No data to show" -msgstr "表示するデータがありません" - -#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 -#: ../../include/ajax/graph.ajax.php:149 ../../include/functions.php:2692 -#: ../../include/functions.php:2693 ../../godmode/reporting/create_container.php:347 -#: ../../godmode/reporting/create_container.php:348 -#: ../../godmode/reporting/create_container.php:349 -#, php-format -msgid "%s hours" -msgstr "%s 時間" - -#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 -#: ../../godmode/reporting/create_container.php:351 -#: ../../godmode/reporting/create_container.php:352 -#, php-format -msgid "%s days" -msgstr "%s 日" - -#: ../../include/ajax/graph.ajax.php:161 -msgid "Time container lapse" -msgstr "時間コンテナの経過" - -#: ../../include/ajax/alert_list.ajax.php:345 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:387 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../enterprise/godmode/policies/policy_modules.php:517 -#: ../../enterprise/godmode/policies/policy_alerts.php:126 -#: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/agentes/configurar_agente.php:2171 -#: ../../godmode/agentes/modificar_agente.php:234 -#: ../../godmode/alerts/alert_list.php:366 ../../godmode/users/user_list.php:372 -msgid "Successfully enabled" -msgstr "有効にしました。" - -#: ../../include/ajax/alert_list.ajax.php:347 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../enterprise/godmode/policies/policy_modules.php:518 -#: ../../enterprise/godmode/policies/policy_alerts.php:127 -#: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/agentes/configurar_agente.php:2172 -#: ../../godmode/agentes/modificar_agente.php:235 -#: ../../godmode/alerts/alert_list.php:367 -msgid "Could not be enabled" -msgstr "有効にできませんでした。" - -#: ../../include/ajax/alert_list.ajax.php:366 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:412 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../enterprise/godmode/policies/policy_modules.php:534 -#: ../../enterprise/godmode/policies/policy_alerts.php:152 -#: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/agentes/configurar_agente.php:2196 -#: ../../godmode/agentes/modificar_agente.php:277 -#: ../../godmode/alerts/alert_list.php:393 ../../godmode/users/user_list.php:366 -msgid "Successfully disabled" -msgstr "無効にしました。" - -#: ../../include/ajax/alert_list.ajax.php:368 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../enterprise/godmode/policies/policy_modules.php:535 -#: ../../enterprise/godmode/policies/policy_alerts.php:153 -#: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/agentes/configurar_agente.php:2197 -#: ../../godmode/agentes/modificar_agente.php:278 -#: ../../godmode/alerts/alert_list.php:394 -msgid "Could not be disabled" -msgstr "無効にできませんでした。" - -#: ../../include/ajax/alert_list.ajax.php:503 -#: ../../include/class/AgentsAlerts.class.php:314 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../godmode/massive/massive_add_action_alerts.php:252 -#: ../../godmode/alerts/alert_list.list.php:753 -#: ../../godmode/alerts/alert_list.builder.php:127 -msgid "Number of alerts match from" -msgstr "アクションを起こすアラート数: 開始" - -#: ../../include/ajax/alert_list.ajax.php:527 -#: ../../include/class/AgentsAlerts.class.php:385 -#: ../../include/functions_reporting_html.php:3390 -#: ../../include/functions_reporting_html.php:5157 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2296 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2508 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3343 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 -#: ../../godmode/alerts/alert_list.list.php:651 -#: ../../godmode/alerts/alert_list.list.php:777 -#: ../../godmode/alerts/alert_list.builder.php:173 -#: ../../godmode/alerts/alert_view.php:361 -#: ../../godmode/alerts/configure_alert_action.php:284 -msgid "Threshold" -msgstr "しきい値" - -#: ../../include/ajax/alert_list.ajax.php:579 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5487 -#: ../../godmode/agentes/planned_downtime.editor.php:628 -msgid "From:" -msgstr "開始日時:" - -#: ../../include/ajax/alert_list.ajax.php:593 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5487 -#: ../../godmode/agentes/planned_downtime.editor.php:632 -msgid "To:" -msgstr "終了日時:" - -#: ../../include/ajax/double_auth.ajax.php:144 -msgid "This is the private code that you should use with your authenticator app" -msgstr "これは、認証アプリケーションで利用するプライベートコードです" - -#: ../../include/ajax/double_auth.ajax.php:145 -#: ../../include/ajax/double_auth.ajax.php:288 -msgid "You could enter the code manually or use the QR code to add it automatically" -msgstr "コードを手動で入力するか、QRコードを使って自動追加できます。" - -#: ../../include/ajax/double_auth.ajax.php:149 -#: ../../include/ajax/double_auth.ajax.php:292 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 -msgid "Code" -msgstr "コード" - -#: ../../include/ajax/double_auth.ajax.php:151 -#: ../../include/ajax/double_auth.ajax.php:294 -msgid "QR" -msgstr "QR" - -#: ../../include/ajax/double_auth.ajax.php:190 -msgid "You are about to activate the double authentication" -msgstr "二段階認証を有効化しようとしています" - -#: ../../include/ajax/double_auth.ajax.php:192 -msgid "" -"With this option enabled, your account access will be more secure, \n" -"\t\tcause a code generated by other application will be required after the login" -msgstr "" -"このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n" -"\t\tログイン後、他のアプリケーションで生成したコードが必要になります。" - -#: ../../include/ajax/double_auth.ajax.php:197 -msgid "You will need to install the app from the following link before continue" -msgstr "先に進む前に、次のリンクからアプリケーションをインストールする必要があります。" - -#: ../../include/ajax/double_auth.ajax.php:202 -msgid "Download the app" -msgstr "アプリケーションをダウンロード" - -#: ../../include/ajax/double_auth.ajax.php:206 -#: ../../include/ajax/double_auth.ajax.php:299 ../../include/functions_register.php:188 -msgid "Continue" -msgstr "続ける" - -#: ../../include/ajax/double_auth.ajax.php:222 -msgid "Are you installed the app yet?" -msgstr "アプリケーションをインストールしましたか。" - -#: ../../include/ajax/double_auth.ajax.php:282 -msgid "A private code has been generated" -msgstr "プライベートコードを生成しました" - -#: ../../include/ajax/double_auth.ajax.php:287 -msgid "Before continue, you should create a new entry into the authenticator app" -msgstr "次に進む前に、認証アプリケーションに新たなエントリーを作成する必要があります。" - -#: ../../include/ajax/double_auth.ajax.php:297 -msgid "Refresh code" -msgstr "コードのリフレッシュ" - -#: ../../include/ajax/double_auth.ajax.php:366 -msgid "Are you introduced the code in the authenticator app yet?" -msgstr "認証アプリケーションにコードを入力しましたか。" - -#: ../../include/ajax/double_auth.ajax.php:429 -msgid "Introduce a code generated by the app" -msgstr "アプリケーションにより生成されたコードを入力してください" - -#: ../../include/ajax/double_auth.ajax.php:430 -msgid "If the code is valid, the double authentication will be activated" -msgstr "コードが正しければ、二段階認証が有効化されます。" - -#: ../../include/ajax/double_auth.ajax.php:439 -msgid "Validate code" -msgstr "コードを確認" - -#: ../../include/ajax/double_auth.ajax.php:491 -msgid "The code is valid, you can exit now" -msgstr "正しいコードです。終了します。" - -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:332 -#: ../../enterprise/meta/index.php:295 ../../mobile/include/user.class.php:280 -msgid "Invalid code" -msgstr "不正なコード" - -#: ../../include/ajax/double_auth.ajax.php:508 -msgid "The code is valid, but it was an error saving the data" -msgstr "正しいコードですが、データの保存でエラーが発生しました。" - -#: ../../include/ajax/heatmap.ajax.php:79 -msgid "Group modules by tag" -msgstr "タグでモジュールをグループ化" - -#: ../../include/ajax/heatmap.ajax.php:80 -msgid "Group modules by module group" -msgstr "モジュールグループでモジュールをグループ化" - -#: ../../include/ajax/heatmap.ajax.php:97 -msgid "Show groups" -msgstr "グループ表示" - -#: ../../include/ajax/custom_fields.php:413 -#: ../../include/class/AgentWizard.class.php:1184 -msgid "Treshold" -msgstr "閾値" - -#: ../../include/ajax/custom_fields.php:414 -msgid "Current interval" -msgstr "現在の間隔" - -#: ../../include/ajax/custom_fields.php:460 ../../include/ajax/custom_fields.php:513 -msgid "Modules normal" -msgstr "正常状態のモジュール" - -#: ../../include/ajax/custom_fields.php:471 -msgid "Modules critical" -msgstr "障害状態のモジュール" - -#: ../../include/ajax/custom_fields.php:482 -msgid "Modules warning" -msgstr "警告状態のモジュール" - -#: ../../include/ajax/custom_fields.php:492 -msgid "Modules unknown" -msgstr "不明状態のモジュール" - -#: ../../include/ajax/custom_fields.php:503 -msgid "Modules no init" -msgstr "未初期化モジュール" - -#: ../../include/ajax/custom_fields.php:545 -msgid "New Filter" -msgstr "新規フィルタ" - -#: ../../include/ajax/custom_fields.php:552 -msgid "Existing Filter" -msgstr "既存フィルタ" - -#: ../../include/ajax/custom_fields.php:652 -#: ../../enterprise/meta/event/custom_events.php:44 -#: ../../godmode/snmpconsole/snmp_filters.php:37 -#: ../../godmode/events/event_filter.php:225 ../../godmode/netflow/nf_edit.php:217 -#: ../../godmode/netflow/nf_edit_form.php:190 -msgid "Create filter" -msgstr "フィルタの作成" - -#: ../../include/ajax/custom_fields.php:700 -msgid "Delete filter" -msgstr "フィルタの削除" - -#: ../../include/ajax/custom_fields.php:737 ../../godmode/agentes/fields_manager.php:46 -msgid "The name must not be empty" -msgstr "名前は空ではいけません" - -#: ../../include/ajax/custom_fields.php:750 -msgid "Filter name already exists in the bbdd" -msgstr "データベースにフィルタがすでに存在します" - -#: ../../include/ajax/custom_fields.php:762 -msgid "Please, select a custom field" -msgstr "カスタムフィールドを選択してください" - -#: ../../include/ajax/custom_fields.php:790 -msgid "Success create filter." -msgstr "フィルタを作成しました。" - -#: ../../include/ajax/custom_fields.php:797 -msgid "Error create filter." -msgstr "フィルタ作成エラー。" - -#: ../../include/ajax/custom_fields.php:822 ../../include/ajax/custom_fields.php:895 -msgid "please, select a filter" -msgstr "フィルタを選択してください。" - -#: ../../include/ajax/custom_fields.php:838 -msgid "please, select a custom field" -msgstr "カスタムフィールドを選択してください。" - -#: ../../include/ajax/custom_fields.php:864 -msgid "Success update filter." -msgstr "フィルタを更新しました。" - -#: ../../include/ajax/custom_fields.php:871 -msgid "Error update filter." -msgstr "フィルタ更新エラー。" - -#: ../../include/ajax/custom_fields.php:914 -msgid "Success delete filter." -msgstr "フィルタを削除しました。" - -#: ../../include/ajax/custom_fields.php:921 -msgid "Error delete filter." -msgstr "フィルタ削除エラー。" - -#: ../../include/ajax/snmp_browser.ajax.php:113 -#: ../../include/ajax/snmp_browser.ajax.php:124 -#: ../../include/ajax/snmp_browser.ajax.php:134 -msgid "SNMP modules" -msgstr "SNMP モジュール" - -#: ../../include/ajax/snmp_browser.ajax.php:117 -msgid "Error creating the following modules:" -msgstr "以下のモジュール作成エラー:" - -#: ../../include/ajax/snmp_browser.ajax.php:128 -msgid "Modules successfully created" -msgstr "モジュールを作成しました" - -#: ../../include/ajax/snmp_browser.ajax.php:138 -msgid "Module must be applied to an agent or a policy" -msgstr "モジュールがエージェントもしくはポリシーに割り当てられる必要があります" - -#: ../../include/ajax/snmp_browser.ajax.php:263 -msgid "Failed to create policy" -msgstr "ポリシー作成に失敗しました" - -#: ../../include/ajax/snmp_browser.ajax.php:264 -msgid "Policy created succesfully" -msgstr "ポリシーを作成しました" - -#: ../../include/ajax/events.php:97 -msgid "Failed to retrieve comments" -msgstr "コメントを取得できませんでした" - -#: ../../include/ajax/events.php:1176 -msgid "Error executing response" -msgstr "応答の実行エラー" - -#: ../../include/ajax/events.php:1213 ../../enterprise/tools/ipam/ipam_ajax.php:540 -#, php-format -msgid "Executing command: %s" -msgstr "コマンド実行中: %s" - -#: ../../include/ajax/events.php:1230 ../../include/ajax/events.php:1254 -#: ../../enterprise/tools/ipam/ipam_ajax.php:551 -msgid "Execute again" -msgstr "再実行" - -#: ../../include/ajax/events.php:1500 -msgid "Related" -msgstr "関連" - -#: ../../include/ajax/events.php:1512 -msgid "Agent fields" -msgstr "エージェントフィールド" - -#: ../../include/ajax/events.php:1544 ../../enterprise/meta/event/custom_events.php:79 -#: ../../godmode/events/events.php:100 -msgid "Responses" -msgstr "応答" - -#: ../../include/ajax/events.php:1650 -msgid "Error adding comment" -msgstr "コメント追加エラー" - -#: ../../include/ajax/events.php:1651 -msgid "Comment added successfully" -msgstr "コメントを追加しました" - -#: ../../include/ajax/events.php:1652 -msgid "Error changing event status" -msgstr "イベント状態変更エラー" - -#: ../../include/ajax/events.php:1653 -msgid "Event status changed successfully" -msgstr "イベントの状態を変更しました" - -#: ../../include/ajax/events.php:1654 -msgid "Error changing event owner" -msgstr "イベント所有者変更エラー" - -#: ../../include/ajax/events.php:1655 -msgid "Event owner changed successfully" -msgstr "イベントの所有者を変更しました" - -#: ../../include/ajax/events.php:1656 -msgid "Error deleting event" -msgstr "イベントの削除エラー" - -#: ../../include/ajax/events.php:1824 -#: ../../enterprise/meta/include/functions_wizard_meta.php:495 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 -#: ../../godmode/massive/massive_edit_modules.php:817 -#: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:94 -msgid "Auto" -msgstr "自動" - -#: ../../include/ajax/events.php:1863 -msgid "Show all Events 24h" -msgstr "24h以内の全イベント表示" - -#: ../../include/ajax/events.php:2000 -msgid "These commands will apply to all selected events" -msgstr "これらのコマンドは、選択したすべてのイベントに適用されます。" - -#: ../../include/ajax/events.php:2029 ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3835 -#: ../../enterprise/views/ncm/agent/details.php:689 -msgid "Execute" -msgstr "実行" - -#: ../../include/ajax/events.php:2108 -msgid "Alert fired in module " -msgstr "モジュールのアラートフィールド " - -#: ../../include/ajax/events.php:2122 ../../include/ajax/events.php:2136 -#: ../../include/ajax/events.php:2150 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid "Module " -msgstr "モジュール " - -#: ../../include/ajax/events.php:2123 -msgid " is going to critical" -msgstr " は障害状態になりました" - -#: ../../include/ajax/events.php:2137 -msgid " is going to warning" -msgstr " は警告状態になりました" - -#: ../../include/ajax/events.php:2151 -msgid " is going to unknown" -msgstr " は不明状態になりました" - -#: ../../include/class/Tree.class.php:775 ../../include/class/Tree.class.php:777 -msgid "Module alerts" -msgstr "モジュールアラート" - -#: ../../include/class/ModuleTemplates.class.php:196 -#: ../../include/class/ModuleTemplates.class.php:214 -#: ../../include/class/ConfigPEN.class.php:332 ../../include/functions_menu.php:515 -#: ../../enterprise/views/ncm/templates/list.php:32 -#: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:7983 -#: ../../enterprise/include/functions_reporting.php:8011 -#: ../../enterprise/include/functions_reporting.php:8082 -#: ../../enterprise/meta/include/functions_alerts_meta.php:129 -#: ../../enterprise/meta/include/functions_alerts_meta.php:160 -#: ../../enterprise/godmode/reporting/visual_console_template.php:109 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2094 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1881 -#: ../../godmode/menu.php:144 ../../godmode/menu.php:230 -#: ../../godmode/agentes/configurar_agente.php:739 -msgid "Templates" -msgstr "テンプレート" - -#: ../../include/class/ModuleTemplates.class.php:199 -#: ../../include/class/ModuleTemplates.class.php:217 -#: ../../include/class/ModuleTemplates.class.php:227 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module template management" -msgstr "モジュールテンプレート管理" - -#: ../../include/class/ModuleTemplates.class.php:353 -#, php-format -msgid "Template %s successfully updated" -msgstr "テンプレート %s を更新しました" - -#: ../../include/class/ModuleTemplates.class.php:355 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 -msgid "Error updating template" -msgstr "テンプレート更新エラー" - -#: ../../include/class/ModuleTemplates.class.php:400 -#, php-format -msgid "Template %s successfully created" -msgstr "テンプレート %s を作成しました" - -#: ../../include/class/ModuleTemplates.class.php:402 -msgid "Error creating template" -msgstr "テンプレート作成エラー" - -#: ../../include/class/ModuleTemplates.class.php:410 -#, php-format -msgid "Template %s successfully deleted" -msgstr "テンプレート %s を削除しました" - -#: ../../include/class/ModuleTemplates.class.php:412 -#, php-format -msgid "Error deleting %s template" -msgstr "%s テンプレートの削除エラー" - -#: ../../include/class/ModuleTemplates.class.php:559 -msgid "Module successfully deleted" -msgstr "モジュールを削除しました" - -#: ../../include/class/ModuleTemplates.class.php:561 -msgid "Error deleting module" -msgstr "モジュール削除エラー" - -#: ../../include/class/ModuleTemplates.class.php:572 -msgid "Block successfully deleted" -msgstr "ブロックを削除しました" - -#: ../../include/class/ModuleTemplates.class.php:574 -msgid "Error deleting block" -msgstr "ブロック削除エラー" - -#: ../../include/class/ModuleTemplates.class.php:586 -msgid "All templates deleted" -msgstr "全テンプレートを削除しました" - -#: ../../include/class/ModuleTemplates.class.php:588 -msgid "Error deleting all templates" -msgstr "全テンプレートの削除エラー" - -#: ../../include/class/ModuleTemplates.class.php:597 -msgid "Selected templates deleted" -msgstr "選択したテンプレートを削除しました" - -#: ../../include/class/ModuleTemplates.class.php:599 -msgid "Error deleting selected templates" -msgstr "選択したテンプレートの削除エラー" - -#: ../../include/class/ModuleTemplates.class.php:611 -msgid "Something gone wrong. Please, try again" -msgstr "何らかの問題が発生しました。もう一度試してください。" - -#: ../../include/class/ModuleTemplates.class.php:662 -msgid "The modules is already added" -msgstr "モジュールはすでに追加されています" - -#: ../../include/class/ModuleTemplates.class.php:804 -#: ../../enterprise/meta/include/functions_wizard_meta.php:309 -#: ../../godmode/modules/manage_network_templates_form.php:341 -msgid "Components" -msgstr "コンポーネント" - -#: ../../include/class/ModuleTemplates.class.php:1074 -#: ../../include/class/ConfigPEN.class.php:428 -#: ../../include/class/ConfigPEN.class.php:597 -msgid "PEN" -msgstr "PEN" - -#: ../../include/class/ModuleTemplates.class.php:1111 -#: ../../include/class/ModuleTemplates.class.php:1383 -msgid "Add components" -msgstr "全コンポーネント" - -#: ../../include/class/ModuleTemplates.class.php:1163 -#: ../../include/class/ModuleTemplates.class.php:1298 -msgid "No module blocks for this profile" -msgstr "このプロファイルにはモジュールブロックがありません" - -#: ../../include/class/ModuleTemplates.class.php:1186 -msgid "Delete this block" -msgstr "このブロックを削除" - -#: ../../include/class/ModuleTemplates.class.php:1188 -msgid "Do you want delete this block?" -msgstr "このブロックを削除しますか?" - -#: ../../include/class/ModuleTemplates.class.php:1208 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -msgid "Format" -msgstr "フォーマット" - -#: ../../include/class/ModuleTemplates.class.php:1234 -#: ../../godmode/modules/manage_network_components.php:804 -msgid "Network module" -msgstr "ネットワークモジュール" - -#: ../../include/class/ModuleTemplates.class.php:1245 -#: ../../godmode/modules/manage_network_components.php:815 -msgid "WMI module" -msgstr "WMIモジュール" - -#: ../../include/class/ModuleTemplates.class.php:1256 -#: ../../godmode/modules/manage_network_components.php:826 -msgid "Plug-in module" -msgstr "プラグインモジュール" - -#: ../../include/class/ModuleTemplates.class.php:1283 -msgid "Delete this module" -msgstr "このモジュールを削除" - -#: ../../include/class/ModuleTemplates.class.php:1285 -msgid "Do you want delete this module?" -msgstr "このモジュールを削除しますか?" - -#: ../../include/class/ModuleTemplates.class.php:1476 -msgid "Do you want delete all templates?" -msgstr "全テンプレートを削除しますか?" - -#: ../../include/class/ModuleTemplates.class.php:1479 -msgid "Do you want delete the selected templates?" -msgstr "選択したテンプレートを削除しますか?" - -#: ../../include/class/AuditLog.class.php:128 -#: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 -#: ../../mobile/operation/agents.php:407 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -msgid "A." -msgstr "A." - -#: ../../include/class/AuditLog.class.php:136 -#, php-format -msgid "%s audit" -msgstr "%s 監査" - -#: ../../include/class/AuditLog.class.php:136 -msgid "Review Logs" -msgstr "ログ一覧" - -#: ../../include/class/AuditLog.class.php:145 -#: ../../enterprise/include/class/ManageBackups.class.php:117 -msgid "Admin Tools" -msgstr "管理ツール" - -#: ../../include/class/AuditLog.class.php:149 -msgid "System Audit log" -msgstr "システム監査ログ" - -#: ../../include/class/AuditLog.class.php:376 -#: ../../enterprise/include/class/ManageBackups.class.php:424 -msgid "There is no additional information to display" -msgstr "表示する追加情報がありません:" - -#: ../../include/class/Heatmap.class.php:743 -#: ../../enterprise/include/class/CommandCenter.class.php:454 -msgid "Info" -msgstr "情報" - -#: ../../include/class/HelpFeedBack.class.php:99 -#: ../../enterprise/include/class/Omnishell.class.php:319 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:717 -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 -#: ../../include/class/Diagnostics.class.php:1894 -msgid "What happened?" -msgstr "何が発生しましたか?" - -#: ../../include/class/HelpFeedBack.class.php:181 -msgid "Your Email" -msgstr "あなたのメールアドレス" - -#: ../../include/class/HelpFeedBack.class.php:198 -msgid "Submit" -msgstr "実行" - -#: ../../include/class/HelpFeedBack.class.php:253 -msgid "[pandorafms wiki] New suggestion" -msgstr "[pandorafms wiki] 新規提案" - -#: ../../include/class/HelpFeedBack.class.php:255 -msgid "[pandorafms wiki] New report" -msgstr "[pandorafms wiki] 新規レポート" - -#: ../../include/class/HelpFeedBack.class.php:261 -msgid "Please provide your email address, we promise not to bother you" -msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" - -#: ../../include/class/HelpFeedBack.class.php:309 -msgid "Something went wrong while sending the report." -msgstr "レポート送信時に異常が発生しました。" - -#: ../../include/class/HelpFeedBack.class.php:360 -msgid "Your report had been successfully sent to Artica." -msgstr "レポートを Artica へ送信しました。" - -#: ../../include/class/HelpFeedBack.class.php:360 -msgid "Thank you!" -msgstr "ありがとうございます!" - -#: ../../include/class/ManageNetScanScripts.class.php:104 -#: ../../include/class/CustomNetScan.class.php:352 -#: ../../enterprise/include/class/CSVImportAgents.class.php:98 -#: ../../enterprise/include/class/DeploymentCenter.class.php:594 -#: ../../godmode/wizards/HostDevices.class.php:196 -msgid "Host & Devices" -msgstr "ホスト & デバイス" - -#: ../../include/class/ManageNetScanScripts.class.php:122 -msgid "Net scan scripts" -msgstr "ネットスキャンスクリプト" - -#: ../../include/class/ManageNetScanScripts.class.php:223 -msgid "Problem creating" -msgstr "問題の作成" - -#: ../../include/class/ManageNetScanScripts.class.php:228 -#: ../../enterprise/godmode/modules/local_components.php:326 -#: ../../godmode/modules/manage_network_components.php:438 -msgid "Created successfully" -msgstr "作成しました。" - -#: ../../include/class/ManageNetScanScripts.class.php:234 -#: ../../include/class/ManageNetScanScripts.class.php:321 -msgid "Name or Script fullpath they can not be empty" -msgstr "名前またはスクリプトのフルパスは空にできません" - -#: ../../include/class/ManageNetScanScripts.class.php:255 -#: ../../include/class/ManageNetScanScripts.class.php:342 -msgid "Problem deleting Net scan Scripts, Not selected script" -msgstr "ネットスキャンスクリプトの削除に失敗しました。スクリプトが選択されていません" - -#: ../../include/class/ManageNetScanScripts.class.php:310 -msgid "Problem updating" -msgstr "問題の更新" - -#: ../../include/class/ManageNetScanScripts.class.php:315 -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../godmode/modules/manage_network_components.php:534 -msgid "Updated successfully" -msgstr "更新しました。" - -#: ../../include/class/ManageNetScanScripts.class.php:361 -msgid "Problem deleting Net scan Scripts" -msgstr "ネットスキャンスクリプトの削除に失敗しました" - -#: ../../include/class/ManageNetScanScripts.class.php:366 -msgid "Deleted successfully" -msgstr "削除しました" - -#: ../../include/class/ManageNetScanScripts.class.php:434 -#: ../../include/class/ExternalTools.class.php:353 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 -#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 -#: ../../godmode/servers/plugin.php:817 -#: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/events/event_responses.editor.php:157 -#: ../../godmode/events/event_responses.editor.php:164 -#: ../../godmode/massive/massive_edit_plugins.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1181 -#: ../../godmode/agentes/module_manager_editor_network.php:433 -#: ../../godmode/alerts/alert_actions.php:272 ../../godmode/alerts/alert_actions.php:327 -#: ../../godmode/alerts/configure_alert_command.php:246 -#: ../../godmode/alerts/configure_alert_action.php:247 -msgid "Command" -msgstr "コマンド" - -#: ../../include/class/ManageNetScanScripts.class.php:439 -msgid "Are you sure delete script?" -msgstr "スクリプトを削除しますか?" - -#: ../../include/class/ManageNetScanScripts.class.php:459 -msgid "Delete Script" -msgstr "スクリプト削除" - -#: ../../include/class/ManageNetScanScripts.class.php:478 -msgid "There are no net scan scripts in the system" -msgstr "システムにネットスキャンスクリプトがありません" - -#: ../../include/class/ManageNetScanScripts.class.php:552 -msgid "Script fullpath" -msgstr "スクリプトのフルパス" - -#: ../../include/class/ManageNetScanScripts.class.php:636 -#: ../../enterprise/godmode/modules/configure_local_component.php:639 -#: ../../godmode/servers/plugin.php:492 -msgid "Default value" -msgstr "デフォルト値" - -#: ../../include/class/ManageNetScanScripts.class.php:667 -#: ../../godmode/servers/plugin.php:505 -msgid "Hide value" -msgstr "値を隠す" - -#: ../../include/class/ManageNetScanScripts.class.php:669 -#: ../../godmode/servers/plugin.php:506 -msgid "This field will show up as dots like a password" -msgstr "このフィールドは、パスワードのようにドットで表示されます。" - -#: ../../include/class/ManageNetScanScripts.class.php:690 -#: ../../include/functions_ui.php:1446 ../../enterprise/meta/general/login_page.php:75 -#: ../../enterprise/meta/include/reset_pass.php:58 -#: ../../enterprise/meta/include/process_reset_pass.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:645 -#: ../../godmode/servers/plugin.php:526 -msgid "Help" -msgstr "ヘルプ" - -#: ../../include/class/ManageNetScanScripts.class.php:724 -#: ../../enterprise/godmode/modules/configure_local_component.php:655 -#: ../../godmode/servers/plugin.php:554 -msgid "Add macro" -msgstr "マクロを追加" - -#: ../../include/class/ManageNetScanScripts.class.php:742 -#: ../../enterprise/godmode/modules/configure_local_component.php:663 -#: ../../godmode/servers/plugin.php:568 -msgid "Delete macro" -msgstr "マクロを削除" - -#: ../../include/class/AgentsAlerts.class.php:304 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:461 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:573 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 -#: ../../godmode/alerts/configure_alert_template.php:758 -#: ../../godmode/alerts/alert_list.builder.php:117 -msgid "Default action" -msgstr "通常のアクション" - -#: ../../include/class/AgentsAlerts.class.php:332 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:169 -msgid "Create Action" -msgstr "アクションの作成" - -#: ../../include/class/AgentsAlerts.class.php:379 -#: ../../godmode/alerts/configure_alert_template.php:607 -#: ../../godmode/alerts/alert_list.builder.php:169 -msgid "Create Template" -msgstr "テンプレートの作成" - -#: ../../include/class/AgentsAlerts.class.php:396 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 -#: ../../godmode/alerts/alert_list.builder.php:204 -msgid "Add alert" -msgstr "アラートの追加" - -#: ../../include/class/AgentsAlerts.class.php:502 -msgid "There are no agents with alerts" -msgstr "アラートがついたエージェントがありません" - -#: ../../include/class/AgentsAlerts.class.php:580 -msgid "Previous alerts" -msgstr "以前のアラート" - -#: ../../include/class/AgentsAlerts.class.php:643 -msgid "More alerts" -msgstr "他のアラート" - -#: ../../include/class/AgentsAlerts.class.php:741 -msgid "Agents/Alerts" -msgstr "エージェント/アラート" - -#: ../../include/class/AgentsAlerts.class.php:790 -msgid "Show modules without alerts" -msgstr "アラート無しでモジュールを表示" - -#: ../../include/class/AgentsAlerts.class.php:949 ../../include/functions_ui.php:1247 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../mobile/operation/alerts.php:324 ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_view.php:105 -msgid "time(s)" -msgstr "回" - -#: ../../include/class/AgentsAlerts.class.php:952 -#: ../../include/functions_reporting.php:12334 ../../include/functions_ui.php:1250 -#: ../../enterprise/operation/agentes/policy_view.php:348 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3184 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 -#: ../../mobile/operation/alerts.php:327 ../../godmode/alerts/alert_list.list.php:562 -#: ../../godmode/alerts/alert_view.php:108 -msgid "Alert disabled" -msgstr "無効アラート" - -#: ../../include/class/WebServerModuleDebug.class.php:143 -msgid "Performing query. Please wait." -msgstr "クエリ実行中。お待ちください。" - -#: ../../include/class/WebServerModuleDebug.class.php:174 -msgid "No results" -msgstr "結果がありません" - -#: ../../include/class/WebServerModuleDebug.class.php:197 -msgid "Error performing execution" -msgstr "実行エラー" - -#: ../../include/class/WebServerModuleDebug.class.php:229 -msgid "Please, wait for a first execution of module" -msgstr "モジュールの初回実行を待ってください" - -#: ../../include/class/WebServerModuleDebug.class.php:325 -#: ../../godmode/agentes/module_manager_editor_web.php:180 -msgid "Debug" -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:141 ../../godmode/menu.php:322 -msgid "General Setup" -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 "Press enter to search" -msgstr "検索するには Enter キーを押します" - -#: ../../include/class/AgentWizard.class.php:448 -msgid "There are not defined Remote components for this performance." -msgstr "この処理用に定義されたリモートコンポーネントはありません。" - -#: ../../include/class/AgentWizard.class.php:541 -#: ../../include/functions_snmp_browser.php:766 -#: ../../godmode/events/event_responses.editor.php:175 -msgid "Local console" -msgstr "ローカルコンソール" - -#: ../../include/class/AgentWizard.class.php:567 -msgid "SNMP Walk" -msgstr "snmpwalk" - -#: ../../include/class/AgentWizard.class.php:572 -msgid "WMI Explorer" -msgstr "WMI エクスプローラ" - -#: ../../include/class/AgentWizard.class.php:615 -#: ../../include/functions_snmp_browser.php:702 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 -#: ../../godmode/massive/massive_edit_modules.php:821 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/agentes/module_manager_editor_network.php:80 -msgid "Target IP" -msgstr "対象IP" - -#: ../../include/class/AgentWizard.class.php:630 ../../include/functions_config.php:1547 -#: ../../include/functions_snmp_browser.php:714 -#: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/include/class/Aws.cloud.php:556 -#: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/VMware.app.php:632 -#: ../../enterprise/include/class/Azure.cloud.php:813 -#: ../../enterprise/godmode/setup/setup_history.php:174 -#: ../../enterprise/godmode/servers/manage_export_form.php:121 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 -#: ../../extensions/quick_shell.php:181 ../../godmode/servers/modificar_server.php:84 -#: ../../godmode/modules/manage_network_components_form_network.php:53 -#: ../../godmode/massive/massive_edit_modules.php:1145 -#: ../../godmode/agentes/module_manager_editor_network.php:126 -msgid "Port" -msgstr "ポート番号" - -#: ../../include/class/AgentWizard.class.php:646 -msgid "namespace" -msgstr "名前空間" - -#: ../../include/class/AgentWizard.class.php:659 -#: ../../include/class/CredentialStore.class.php:957 -#: ../../enterprise/include/functions_ui.php:102 -#: ../../enterprise/godmode/setup/setup_module_library.php:49 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 -#: ../../extensions/quick_shell.php:174 -#: ../../godmode/modules/manage_network_components_form_wmi.php:47 -#: ../../godmode/massive/massive_edit_modules.php:906 -#: ../../godmode/agentes/module_manager_editor_wmi.php:103 -msgid "Username" -msgstr "ユーザ名" - -#: ../../include/class/AgentWizard.class.php:688 -#: ../../godmode/events/event_responses.editor.php:192 -msgid "Server to execute command" -msgstr "コマンドを実行するサーバ" - -#: ../../include/class/AgentWizard.class.php:704 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:149 -msgid "SNMP community" -msgstr "SNMPコミュニティ" - -#: ../../include/class/AgentWizard.class.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../godmode/modules/manage_network_components_form_network.php:55 -#: ../../godmode/massive/massive_edit_modules.php:839 -#: ../../godmode/wizards/HostDevices.class.php:1199 -#: ../../godmode/agentes/module_manager_editor_network.php:180 -msgid "SNMP version" -msgstr "SNMPバージョン" - -#: ../../include/class/AgentWizard.class.php:801 -#: ../../include/functions_snmp_browser.php:890 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 -#: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1332 -#: ../../godmode/agentes/module_manager_editor_network.php:408 -msgid "Security level" -msgstr "セキュリティレベル" - -#: ../../include/class/AgentWizard.class.php:816 -msgid "User authentication" -msgstr "ユーザ認証" - -#: ../../include/class/AgentWizard.class.php:831 ../../include/functions_config.php:544 -#: ../../enterprise/meta/include/functions_meta.php:502 -#: ../../godmode/setup/setup_auth.php:440 -msgid "Authentication method" -msgstr "認証方法" - -#: ../../include/class/AgentWizard.class.php:845 -msgid "Password authentication" -msgstr "パスワード認証" - -#: ../../include/class/AgentWizard.class.php:860 -#: ../../include/functions_snmp_browser.php:853 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 -#: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1286 -#: ../../godmode/agentes/module_manager_editor_network.php:369 -msgid "Privacy method" -msgstr "暗号化方式" - -#: ../../include/class/AgentWizard.class.php:874 -#: ../../include/functions_snmp_browser.php:867 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1301 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -msgid "Privacy pass" -msgstr "暗号化パスワード" - -#: ../../include/class/AgentWizard.class.php:998 -#, php-format -msgid "The PEN (%s) is not registered." -msgstr "PEN (%s) が登録されていません。" - -#: ../../include/class/AgentWizard.class.php:1065 -msgid "The SNMP Walk does not return anything with the received arguments." -msgstr "snmpwalk が与えられた引数で何も返しません。" - -#: ../../include/class/AgentWizard.class.php:1118 -#, php-format -msgid "The target host response with an error: %s" -msgstr "対象ホストの応答がエラーです: %s" - -#: ../../include/class/AgentWizard.class.php:1168 -msgid "No selected modules" -msgstr "モジュールが選択されていません" - -#: ../../include/class/AgentWizard.class.php:1205 -msgid "Module exists in policy" -msgstr "モジュールがポリシーに存在します" - -#: ../../include/class/AgentWizard.class.php:1215 -msgid "Module exists in agent" -msgstr "モジュールがエージェントに存在します" - -#: ../../include/class/AgentWizard.class.php:1222 -msgid "Module with the same name in the module creation list" -msgstr "モジュール作成一覧に同じ名前のモジュールがあります" - -#: ../../include/class/AgentWizard.class.php:1252 -#: ../../include/functions_servers.php:738 -msgid "Enterprise Satellite server" -msgstr "Enterprise サテライトサーバ" - -#: ../../include/class/AgentWizard.class.php:1262 -#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1320 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 -msgid "Plugin server" -msgstr "プラグインサーバ" - -#: ../../include/class/AgentWizard.class.php:1272 -#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1326 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491 -msgid "WMI server" -msgstr "WMI サーバ" - -#: ../../include/class/AgentWizard.class.php:1281 -#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1308 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401 -msgid "Network server" -msgstr "ネットワークサーバ" - -#: ../../include/class/AgentWizard.class.php:1625 -#, php-format -msgid "Module \"%s\" exits in this policy" -msgstr "モジュール \"%s\" がこのポリシーに存在します" - -#: ../../include/class/AgentWizard.class.php:1727 -#: ../../include/class/AgentWizard.class.php:2155 -#, php-format -msgid "Module %s module_exec not configuration" -msgstr "モジュール %s で module_exec を設定できません" - -#: ../../include/class/AgentWizard.class.php:1883 -#: ../../include/class/AgentWizard.class.php:2330 -#, php-format -msgid "Module %s satellite execution not configuration" -msgstr "モジュール %s でサテライト実行を設定できません" - -#: ../../include/class/AgentWizard.class.php:1975 -#, php-format -msgid "Module \"%s\" problems insert in bbdd" -msgstr "モジュール \"%s\" で DB へのインサートで問題があります" - -#: ../../include/class/AgentWizard.class.php:1983 -#: ../../include/class/AgentWizard.class.php:2413 -msgid "Modules created" -msgstr "モジュールを作成しました" - -#: ../../include/class/AgentWizard.class.php:2013 -#, php-format -msgid "Module \"%s\" exists in this agent" -msgstr "モジュール \"%s” はこのエージェントに存在します" - -#: ../../include/class/AgentWizard.class.php:2495 ../../include/functions.php:2704 -#: ../../enterprise/operation/agentes/policy_view.php:184 -#: ../../enterprise/operation/agentes/policy_view.php:277 -#: ../../enterprise/operation/agentes/policy_view.php:570 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 -#: ../../godmode/modules/manage_network_components_form_plugin.php:54 -#: ../../godmode/modules/manage_network_components_form_wmi.php:60 -#: ../../godmode/alerts/configure_alert_template.php:1288 -#: ../../godmode/alerts/alert_list.builder.php:293 -msgid "Empty" -msgstr "空" - -#: ../../include/class/AgentWizard.class.php:2604 -msgid "Select all filtered interfaces" -msgstr "全フィルタ済インタフェースを選択" - -#: ../../include/class/AgentWizard.class.php:2627 -msgid "OperStatus UP" -msgstr "OperStatus UP" - -#: ../../include/class/AgentWizard.class.php:2638 -msgid "AdminStatus UP" -msgstr "AdminStatus UP" - -#: ../../include/class/AgentWizard.class.php:3324 -msgid "No information could be retrieved." -msgstr "情報を取得できませんでした。" - -#: ../../include/class/AgentWizard.class.php:3608 -msgid "Create modules" -msgstr "モジュール作成" - -#: ../../include/class/AgentWizard.class.php:3917 -msgid "Add general monitoring for all selected interfaces" -msgstr "全フィルタ済インタフェースの一般的な監視を追加" - -#: ../../include/class/AgentWizard.class.php:3938 -#: ../../include/class/AgentWizard.class.php:3939 -#: ../../include/class/AgentWizard.class.php:3958 -#: ../../include/class/AgentWizard.class.php:3959 -msgid "Modules selected" -msgstr "選択済モジュール" - -#: ../../include/class/AgentWizard.class.php:4027 -msgid "Module info" -msgstr "モジュール情報" - -#: ../../include/class/AgentWizard.class.php:4056 -msgid "Current value" -msgstr "現在の値" - -#: ../../include/class/AgentWizard.class.php:5542 -#, php-format -msgid "The operation '%s' is not permitted. Review for remote components." -msgstr "'%s' の操作は許可されていません。リモートコンポーネントを確認してください。" - -#: ../../include/class/AgentWizard.class.php:5957 -msgid "Modules about to be created" -msgstr "作成しようとしているモジュール" - -#: ../../include/class/WelcomeWindow.class.php:157 -msgid "Welcome to" -msgstr "ようこそ" - -#: ../../include/class/WelcomeWindow.class.php:158 -msgid "Do not show anymore" -msgstr "今後表示しない" - -#: ../../include/class/WelcomeWindow.class.php:167 -msgid "Cancel Configuration Window" -msgstr "設定ウインドウのキャンセル" - -#: ../../include/class/WelcomeWindow.class.php:172 -msgid "Are you sure you want to cancel this tutorial?" -msgstr "このチュートリアルをキャンセルしても良いですか?" - -#: ../../include/class/WelcomeWindow.class.php:428 -msgid "Please ensure mail configuration matches your needs" -msgstr "メール設定がニーズに合っていることを確認してください" - -#: ../../include/class/WelcomeWindow.class.php:462 -msgid "Create an agent" -msgstr "エージェント作成" - -#: ../../include/class/WelcomeWindow.class.php:487 -msgid "Create a module to check if an agent is online" -msgstr "エージェントがオンラインかどうかをチェックするモジュールの作成" - -#: ../../include/class/WelcomeWindow.class.php:512 -msgid "Be warned if something is wrong, create an alert on the module" -msgstr "何かが障害の場合は警告を受けるよう、モジュールにアラートを作成します" - -#: ../../include/class/WelcomeWindow.class.php:537 -msgid "Discover hosts and devices in your network" -msgstr "ネットワーク内のホストおよびデバイスの検出" - -#: ../../include/class/WelcomeWindow.class.php:565 -msgid "If something is not working as expected, look for this icon and report!" -msgstr "期待どおりに機能しない場合は、このアイコンとレポートを探してください!" - -#: ../../include/class/Diagnostics.class.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 -msgid "Export to PDF" -msgstr "PDF にエクスポート" - -#: ../../include/class/Diagnostics.class.php:157 -#, php-format -msgid "%s Diagnostic tool" -msgstr "%s 診断ツール" - -#: ../../include/class/Diagnostics.class.php:222 -#, php-format -msgid "Info status %s" -msgstr "情報ステータス %s" - -#: ../../include/class/Diagnostics.class.php:226 -msgid "PHP setup" -msgstr "PHP 設定" - -#: ../../include/class/Diagnostics.class.php:230 ../../godmode/db/db_main.php:98 -msgid "Database size stats" -msgstr "データベースサイズ" - -#: ../../include/class/Diagnostics.class.php:234 -msgid "Database health status" -msgstr "データベースの正常性状態" - -#: ../../include/class/Diagnostics.class.php:238 -msgid "Database status info" -msgstr "データベースステータス情報" - -#: ../../include/class/Diagnostics.class.php:242 -msgid "System Info" -msgstr "システム情報" - -#: ../../include/class/Diagnostics.class.php:246 -msgid "MySQL Performance metrics" -msgstr "MySQLパフォーマンスメトリック" - -#: ../../include/class/Diagnostics.class.php:251 -#, php-format -msgid "Tables fragmentation in the %s database" -msgstr "%s データベースにおけるテーブルのフラグメンテーション" - -#: ../../include/class/Diagnostics.class.php:257 -#, php-format -msgid "%s logs dates" -msgstr "%s ログ状態" - -#: ../../include/class/Diagnostics.class.php:261 -#, php-format -msgid "%s Licence Information" -msgstr "%s ライセンス情報" - -#: ../../include/class/Diagnostics.class.php:265 -#: ../../include/class/Diagnostics.class.php:1251 -msgid "Status of the attachment folder" -msgstr "添付フォルダの状態" - -#: ../../include/class/Diagnostics.class.php:269 -msgid "Information from the tagente_datos table" -msgstr "tagente_datos テーブルからの情報" - -#: ../../include/class/Diagnostics.class.php:273 -#, php-format -msgid "%s server threads" -msgstr "%s サーバスレッド" - -#: ../../include/class/Diagnostics.class.php:277 -msgid "SQL show engine innodb status" -msgstr "innodb エンジンの状態を表示します" - -#: ../../include/class/Diagnostics.class.php:325 -msgid "Graph of the Agents Unknown module." -msgstr "エージェント不明モジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:332 -msgid "Graph of the Database Maintenance module." -msgstr "データベースメンテナンスモジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:339 -msgid "Graph of the Free Disk Spool Dir module." -msgstr "スプールディレクトリディスクの空き容量モジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:345 -msgid "Graph of the Free RAM module." -msgstr "メモリ空き容量モジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:351 -msgid "Graph of the Queued Modules module." -msgstr "モジュールキューのモジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:357 -msgid "Graph of the Status module." -msgstr "状態モジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:363 -msgid "Graph of the System Load AVG module." -msgstr "システムロードアベレージモジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:370 -msgid "Graph of the Execution Time module." -msgstr "実行時間モジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:379 -msgid "Graphs modules that represent the self-monitoring system" -msgstr "自己監視システムモジュールグラフ" - -#: ../../include/class/Diagnostics.class.php:436 -#, php-format -msgid "%s Build" -msgstr "%s ビルド" - -#: ../../include/class/Diagnostics.class.php:440 -#, php-format -msgid "%s Version" -msgstr "%s バージョン" - -#: ../../include/class/Diagnostics.class.php:444 -msgid "Minor Release" -msgstr "マイナーリリース" - -#: ../../include/class/Diagnostics.class.php:448 -msgid "Homedir" -msgstr "ホームディレクトリ" - -#: ../../include/class/Diagnostics.class.php:452 -msgid "HomeUrl" -msgstr "ホームURL" - -#: ../../include/class/Diagnostics.class.php:456 -msgid "Enterprise installed" -msgstr "Enterprise インストール済" - -#: ../../include/class/Diagnostics.class.php:457 -msgid "true" -msgstr "はい" - -#: ../../include/class/Diagnostics.class.php:457 -msgid "false" -msgstr "いいえ" - -#: ../../include/class/Diagnostics.class.php:460 -msgid "Update Key" -msgstr "アップデートキー" - -#: ../../include/class/Diagnostics.class.php:464 -msgid "Updating code path" -msgstr "アップデートコードパス" - -#: ../../include/class/Diagnostics.class.php:468 -msgid "Current Update #" -msgstr "現在のアップデート #" - -#: ../../include/class/Diagnostics.class.php:492 -msgid "PHP Version" -msgstr "PHPバージョン" - -#: ../../include/class/Diagnostics.class.php:496 -msgid "PHP Max execution time" -msgstr "PHP 最大実行時間" - -#: ../../include/class/Diagnostics.class.php:500 -msgid "PHP Max input time" -msgstr "PHP 最大入力時間" - -#: ../../include/class/Diagnostics.class.php:504 -msgid "PHP Memory limit" -msgstr "PHP メモリ制限" - -#: ../../include/class/Diagnostics.class.php:508 -msgid "Session cookie lifetime" -msgstr "セッションクッキー有効期間" - -#: ../../include/class/Diagnostics.class.php:557 -msgid "Total groups" -msgstr "全グループ数" - -#: ../../include/class/Diagnostics.class.php:561 -msgid "Total module data records" -msgstr "全モジュールデータ記録数" - -#: ../../include/class/Diagnostics.class.php:565 -msgid "Total agent access record" -msgstr "全エージェントアクセス記録数" - -#: ../../include/class/Diagnostics.class.php:569 -#: ../../include/functions_reporting.php:13922 ../../godmode/db/db_main.php:108 -msgid "Total events" -msgstr "イベント数" - -#: ../../include/class/Diagnostics.class.php:573 -msgid "Total traps" -msgstr "全トラップ数" - -#: ../../include/class/Diagnostics.class.php:577 -msgid "Total users" -msgstr "全ユーザ数" - -#: ../../include/class/Diagnostics.class.php:581 -msgid "Total sessions" -msgstr "全セッション数" - -#: ../../include/class/Diagnostics.class.php:620 -msgid "Pandora DB has never been executed" -msgstr "Pandora DB が一度も実行されていません" - -#: ../../include/class/Diagnostics.class.php:627 -msgid "Ago" -msgstr "前" - -#: ../../include/class/Diagnostics.class.php:634 -msgid "Total unknown agents" -msgstr "全不明エージェント数" - -#: ../../include/class/Diagnostics.class.php:638 -msgid "Total not-init modules" -msgstr "全未初期化モジュール数" - -#: ../../include/class/Diagnostics.class.php:642 -msgid "Pandora DB Last run" -msgstr "最後の Pandora DB 実行" - -#: ../../include/class/Diagnostics.class.php:674 -msgid "DB Schema Version (first installed)" -msgstr "DB スキーマバージョン(初回インストール時)" - -#: ../../include/class/Diagnostics.class.php:678 -msgid "DB Schema Version (actual)" -msgstr "DB スキーマバージョン(現在)" - -#: ../../include/class/Diagnostics.class.php:682 -msgid "DB Schema Build" -msgstr "DB スキーマビルド" - -#: ../../include/class/Diagnostics.class.php:686 -msgid "DB Size" -msgstr "DB サイズ" - -#: ../../include/class/Diagnostics.class.php:722 -#: ../../enterprise/godmode/reporting/aws_view.php:54 -msgid "CPU" -msgstr "CPU" - -#: ../../include/class/Diagnostics.class.php:726 -msgid "RAM" -msgstr "メモリ" - -#: ../../include/class/Diagnostics.class.php:730 -msgid "Os" -msgstr "OS" - -#: ../../include/class/Diagnostics.class.php:734 -#: ../../include/class/Diagnostics.class.php:752 -#: ../../enterprise/tools/ipam/ipam_ajax.php:364 -#: ../../enterprise/tools/ipam/ipam_network.php:396 -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2037 -msgid "Hostname" -msgstr "ホスト名" - -#: ../../include/class/Diagnostics.class.php:738 -#: ../../include/class/Diagnostics.class.php:756 -#: ../../include/class/NetworkMap.class.php:2909 -msgid "Ip" -msgstr "IP" - -#: ../../include/class/Diagnostics.class.php:784 -msgid "InnoDB buffer pool size" -msgstr "InnoDB buffer pool size" - -#: ../../include/class/Diagnostics.class.php:788 -#, 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:793 -msgid "InnoDB file per table" -msgstr "InnoDB" - -#: ../../include/class/Diagnostics.class.php:796 -#: ../../include/class/Diagnostics.class.php:868 -msgid "Recommended ON" -msgstr "ON を推奨" - -#: ../../include/class/Diagnostics.class.php:800 -msgid "InnoDB flush log at trx-commit" -msgstr "InnoDB flush log at trx-commit" - -#: ../../include/class/Diagnostics.class.php:803 -#, php-format -msgid "Recommended Value %d" -msgstr "推奨値 %d" - -#: ../../include/class/Diagnostics.class.php:807 -msgid "InnoDB lock wait timeout" -msgstr "InnoDB lock wait timeout" - -#: ../../include/class/Diagnostics.class.php:810 -#: ../../include/class/Diagnostics.class.php:817 -#: ../../include/class/Diagnostics.class.php:824 -#: ../../include/class/Diagnostics.class.php:831 -#: ../../include/class/Diagnostics.class.php:838 -#: ../../include/class/Diagnostics.class.php:847 -#: ../../include/class/Diagnostics.class.php:854 -#: ../../include/class/Diagnostics.class.php:861 -#: ../../include/class/Diagnostics.class.php:875 -#: ../../include/class/Diagnostics.class.php:882 -#: ../../include/class/Diagnostics.class.php:889 -#: ../../include/class/Diagnostics.class.php:903 -#: ../../include/class/Diagnostics.class.php:910 -msgid "Min. Recommended Value" -msgstr "最小推奨値" - -#: ../../include/class/Diagnostics.class.php:814 -msgid "InnoDB log buffer size" -msgstr "InnoDB log buffer size" - -#: ../../include/class/Diagnostics.class.php:821 -msgid "InnoDB log file size" -msgstr "InnoDB log file size" - -#: ../../include/class/Diagnostics.class.php:828 -msgid "Maximun allowed packet" -msgstr "Maximun allowed packet" - -#: ../../include/class/Diagnostics.class.php:835 -msgid "Maximun connections" -msgstr "Maximun connections" - -#: ../../include/class/Diagnostics.class.php:840 -msgid "conections" -msgstr "接続" - -#: ../../include/class/Diagnostics.class.php:844 -msgid "Query cache limit" -msgstr "Query cache limit" - -#: ../../include/class/Diagnostics.class.php:851 -msgid "Query cache min-res-unit" -msgstr "Query cache min-res-unit" - -#: ../../include/class/Diagnostics.class.php:858 -msgid "Query cache size" -msgstr "Query cache size" - -#: ../../include/class/Diagnostics.class.php:865 -msgid "Query cache type" -msgstr "Query cache type" - -#: ../../include/class/Diagnostics.class.php:872 -msgid "Read buffer size" -msgstr "Read buffer size" - -#: ../../include/class/Diagnostics.class.php:879 -msgid "Read rnd-buffer size" -msgstr "Read rnd-buffer size" - -#: ../../include/class/Diagnostics.class.php:886 -msgid "Sort buffer size" -msgstr "Sort buffer size" - -#: ../../include/class/Diagnostics.class.php:893 -msgid "Sql mode" -msgstr "Sql mode" - -#: ../../include/class/Diagnostics.class.php:896 -msgid "Must be empty" -msgstr "空である必要があります" - -#: ../../include/class/Diagnostics.class.php:900 -msgid "Thread cache size" -msgstr "Thread cache size" - -#: ../../include/class/Diagnostics.class.php:907 -msgid "Thread stack" -msgstr "Thread stack" - -#: ../../include/class/Diagnostics.class.php:970 -msgid "Table fragmentation is higher than recommended. They should be defragmented." -msgstr "" -"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要がありま" -"す。" - -#: ../../include/class/Diagnostics.class.php:974 -msgid "Table fragmentation is correct." -msgstr "テーブルフラグメンテーションは正常です。" - -#: ../../include/class/Diagnostics.class.php:983 -msgid "Tables fragmentation (maximum recommended value)" -msgstr "テーブルフラグメンテーション(最大推奨値)" - -#: ../../include/class/Diagnostics.class.php:988 -msgid "Tables fragmentation (current value)" -msgstr "テーブルフラグメンテーション(現在の値)" - -#: ../../include/class/Diagnostics.class.php:992 -msgid "Table fragmentation status" -msgstr "テーブルフラグメンテーションの状態" - -#: ../../include/class/Diagnostics.class.php:1027 -msgid "Size server logs (current value)" -msgstr "サーバログサイズ(現在の値)" - -#: ../../include/class/Diagnostics.class.php:1031 -msgid "Status server logs" -msgstr "サーバログ状態" - -#: ../../include/class/Diagnostics.class.php:1036 -msgid "Size error logs (current value)" -msgstr "エラーログサイズ(現在の値)" - -#: ../../include/class/Diagnostics.class.php:1040 -msgid "Status error logs" -msgstr "エラーログ状態" - -#: ../../include/class/Diagnostics.class.php:1045 -msgid "Size console logs (current value)" -msgstr "コンソールログサイズ(現在の値)" - -#: ../../include/class/Diagnostics.class.php:1049 -msgid "Status console logs" -msgstr "コンソールログ状態" - -#: ../../include/class/Diagnostics.class.php:1084 -msgid "License capacity is less than 90 percent" -msgstr "ライセンス容量は90%未満です" - -#: ../../include/class/Diagnostics.class.php:1087 -msgid "License capacity exceeds 90 percent" -msgstr "ライセンス容量の90%を超えています" - -#: ../../include/class/Diagnostics.class.php:1095 -msgid "" -"The average of modules per agent is more than 40. You can have performance problems" -msgstr "" -"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が発生す" -"る可能性があります。" - -#: ../../include/class/Diagnostics.class.php:1100 -msgid "The average of modules per agent is less than 40" -msgstr "1エージェントあたりの平均モジュール数が 40未満です。" - -#: ../../include/class/Diagnostics.class.php:1136 -msgid "The system has no load" -msgstr "システムに負荷がかかっていません" - -#: ../../include/class/Diagnostics.class.php:1152 ../../godmode/setup/license.php:129 -msgid "Customer key" -msgstr "カスタマーキー" - -#: ../../include/class/Diagnostics.class.php:1156 -#: ../../enterprise/include/functions_license.php:120 -msgid "Support expires" -msgstr "サポート切れ" - -#: ../../include/class/Diagnostics.class.php:1160 ../../godmode/setup/license.php:135 -msgid "Platform Limit" -msgstr "ライセンス数上限" - -#: ../../include/class/Diagnostics.class.php:1164 ../../godmode/setup/license.php:138 -msgid "Current Platform Count" -msgstr "現在の利用数" - -#: ../../include/class/Diagnostics.class.php:1168 ../../godmode/setup/license.php:141 -msgid "Current Platform Count (enabled: items)" -msgstr "現在の利用数 (有効のもの)" - -#: ../../include/class/Diagnostics.class.php:1172 ../../godmode/setup/license.php:144 -msgid "Current Platform Count (disabled: items)" -msgstr "現在の利用数 (無効のもの)" - -#: ../../include/class/Diagnostics.class.php:1176 ../../godmode/setup/license.php:147 -msgid "License Mode" -msgstr "ライセンスモード" - -#: ../../include/class/Diagnostics.class.php:1180 -msgid "Network Management System" -msgstr "ネットワーク管理システム" - -#: ../../include/class/Diagnostics.class.php:1181 -#: ../../include/class/Diagnostics.class.php:1185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3328 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:461 -#: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../godmode/alerts/alert_list.list.php:638 -msgid "On" -msgstr "次のアラート回数でアクション実施:" - -#: ../../include/class/Diagnostics.class.php:1181 -#: ../../include/class/Diagnostics.class.php:1185 -msgid "Off" -msgstr "オフ" - -#: ../../include/class/Diagnostics.class.php:1184 ../../include/functions_ui.php:866 -#: ../../godmode/setup/license.php:153 ../../godmode/servers/modificar_server.php:42 -msgid "Satellite" -msgstr "サテライト" - -#: ../../include/class/Diagnostics.class.php:1188 ../../godmode/setup/license.php:156 -msgid "Licensed to" -msgstr "ライセンス先" - -#: ../../include/class/Diagnostics.class.php:1192 -msgid "Status of agents capacity" -msgstr "エージェントキャパシティの状態" - -#: ../../include/class/Diagnostics.class.php:1197 -msgid "Status of average modules per agent" -msgstr "1エージェントごとの平均モジュール数の状態" - -#: ../../include/class/Diagnostics.class.php:1203 -msgid "Interval average of the network modules" -msgstr "ネットワークモジュールの平均実行間隔" - -#: ../../include/class/Diagnostics.class.php:1233 -msgid "The attached folder contains more than 700 files." -msgstr "attachment フォルダに 700以上のファイルがあります。" - -#: ../../include/class/Diagnostics.class.php:1238 -msgid "The attached folder contains less than 700 files." -msgstr "attachment フォルダは 700未満のファイルがあります。" - -#: ../../include/class/Diagnostics.class.php:1247 -msgid "Total files in the attached folder" -msgstr "attachment フォルダの全ファイル数" - -#: ../../include/class/Diagnostics.class.php:1277 -msgid "" -"The tagente_datos table contains too much data. A historical database is recommended." -msgstr "" -"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧めしま" -"す。" - -#: ../../include/class/Diagnostics.class.php:1282 -msgid "The tagente_datos table contains an acceptable amount of data." -msgstr "tagente_datos テーブルのデータ量は適正です。" - -#: ../../include/class/Diagnostics.class.php:1291 -msgid "Total data in tagente_datos table" -msgstr "tagente_datos テーブルの全データ量" - -#: ../../include/class/Diagnostics.class.php:1295 -msgid "Tagente_datos table status" -msgstr "tagente_datos テーブルの状態" - -#: ../../include/class/Diagnostics.class.php:1331 -msgid "Threads" -msgstr "スレッド" - -#: ../../include/class/Diagnostics.class.php:1341 -msgid "Total threads" -msgstr "全スレッド数" - -#: ../../include/class/Diagnostics.class.php:1348 -msgid "Current pandora_server running threads" -msgstr "現在の pandora_server 実行スレッド" - -#: ../../include/class/Diagnostics.class.php:1352 -msgid "" -"There's more pandora_server threads than configured, are you running multiple servers " -"simultaneusly?." -msgstr "" -"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませんか?" - -#: ../../include/class/Diagnostics.class.php:1486 -msgid "" -"Please check your Pandora Server setup and make sure that the database maintenance " -"daemon is running." -msgstr "" -"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作しているか確" -"認してください。" - -#: ../../include/class/Diagnostics.class.php:1490 -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:1752 -msgid "You have more than 10 MB of logs" -msgstr "10MB 以上のログがあります" - -#: ../../include/class/Diagnostics.class.php:1755 -msgid "You have less than 10 MB of logs" -msgstr "ログは 10MB 未満です" - -#: ../../include/class/Diagnostics.class.php:1818 -#: ../../enterprise/include/class/CommandCenter.class.php:461 -#: ../../enterprise/include/functions_login.php:145 -msgid "Successfully" -msgstr "正常に終了" - -#: ../../include/class/Diagnostics.class.php:1910 -#: ../../update_manager_client/views/register.php:79 -msgid "Your email" -msgstr "あなたのメールアドレス" - -#: ../../include/class/Diagnostics.class.php:1922 -msgid "Include installation data" -msgstr "インストールデータを含む" - -#: ../../include/class/Diagnostics.class.php:1959 -msgid "Hello Feedback-Men" -msgstr "こんにちは、フィードバックありがとうございます" - -#: ../../include/class/Diagnostics.class.php:1969 -msgid "Hello" -msgstr "こんにちは" - -#: ../../include/class/Diagnostics.class.php:1973 -#, php-format -msgid "User %s is reporting an issue in its %s experience" -msgstr "ユーザ %s より、%s で発生した事象をレポートします" - -#: ../../include/class/Diagnostics.class.php:1982 -msgid "Find some files attached to this mail" -msgstr "このメールに添付するファイル" - -#: ../../include/class/Diagnostics.class.php:1985 -msgid "PDF is the diagnostic information retrieved at report time" -msgstr "PDF はレポート時に取得する診断情報を含みます" - -#: ../../include/class/Diagnostics.class.php:1988 -msgid "CSV contains the statuses of every product file" -msgstr "CSV に各製品ファイルの状態を含みます" - -#: ../../include/class/Diagnostics.class.php:1993 -#, 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:1997 -msgid "LEGAL WARNING" -msgstr "法的な警告" - -#: ../../include/class/Diagnostics.class.php:1999 -msgid "" -"The information contained in this transmission is privileged and confidential " -"information intended only for the use of the individual or entity named above" -msgstr "" -"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報です。" - -#: ../../include/class/Diagnostics.class.php:2003 -msgid "" -"If the reader of this message is not the intended recipient, you are hereby notified " -"that any dissemination, distribution or copying of this communication is strictly " -"prohibited" -msgstr "" -"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピーを固く禁" -"止します" - -#: ../../include/class/Diagnostics.class.php:2007 -msgid "If you have received this transmission in error, do not read it" -msgstr "もし、間違えてこの情報を受け取った場合は、読まないでください" - -#: ../../include/class/Diagnostics.class.php:2011 -msgid "" -"Please immediately reply to the sender that you have received this communication in " -"error and then delete it" -msgstr "すぐに間違えて届いた旨を送信者へ返信するとともに、削除してください" - -#: ../../include/class/Diagnostics.class.php:2090 -msgid "Invalid cron task" -msgstr "不正な cron タスク" - -#: ../../include/class/Diagnostics.class.php:2091 -msgid "Sending of information has been processed" -msgstr "情報の送信処理が行われました" - -#: ../../include/class/Diagnostics.class.php:2126 -#: ../../include/class/Diagnostics.class.php:2136 -msgid "Diagnostics Info" -msgstr "診断情報" - -#: ../../include/class/Diagnostics.class.php:2130 -#: ../../include/class/Diagnostics.class.php:2248 -#: ../../enterprise/include/functions_reporting_pdf.php:72 -#, php-format -msgid "Automated %s report for user defined report" -msgstr "ユーザ定義レポートのための自動 %s レポート" - -#: ../../include/class/Diagnostics.class.php:2175 -#: ../../include/functions_snmp_browser.php:880 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1322 -#: ../../godmode/agentes/module_manager_editor_network.php:394 -msgid "MD5" -msgstr "MD5" - -#: ../../include/class/Diagnostics.class.php:2244 -#: ../../include/class/Diagnostics.class.php:2254 -msgid "PHP Info" -msgstr "PHP Info" - -#: ../../include/class/ConsoleSupervisor.php:839 -msgid "Limited mode." -msgstr "制限モード" - -#: ../../include/class/ConsoleSupervisor.php:851 -msgid "License is about to expire" -msgstr "ライセンスの有効期限が近づいています" - -#: ../../include/class/ConsoleSupervisor.php:854 -msgid "Support is about to expire" -msgstr "サポートの有効期限が近づいています" - -#: ../../include/class/ConsoleSupervisor.php:872 -msgid "Expired license" -msgstr "ライセンス切れ" - -#: ../../include/class/ConsoleSupervisor.php:873 -msgid "Your license has expired. Please, contact our sales department." -msgstr "ライセンスが切れています。営業窓口までご連絡ください。" - -#: ../../include/class/ConsoleSupervisor.php:875 -msgid "Support expired" -msgstr "サポートの有効期限が切れています" - -#: ../../include/class/ConsoleSupervisor.php:876 -msgid "This license is outside of support. Please, contact our sales department." -msgstr "このライセンスはサポート外です。販売元の営業に連絡してください。" - -#: ../../include/class/ConsoleSupervisor.php:957 -msgid "Attachment directory is not writable" -msgstr "添付ファイルディレクトリ書き込み不可" - -#: ../../include/class/ConsoleSupervisor.php:959 -#, php-format -msgid "Directory %s is not writable. Please, configure corresponding permissions." -msgstr "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" - -#: ../../include/class/ConsoleSupervisor.php:979 -msgid "There are too many files in attachment directory" -msgstr "添付ファイルディレクトリに多くのファイルがあります" - -#: ../../include/class/ConsoleSupervisor.php:981 -#, php-format -msgid "" -"There are more than %d files in attachment, consider cleaning up attachment directory " -"manually." -msgstr "" -"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを手動で" -"整理することを検討してください。" - -#: ../../include/class/ConsoleSupervisor.php:1013 -msgid "Remote configuration directory is not readable" -msgstr "リモート設定ディレクトリが読めません" - -#: ../../include/class/ConsoleSupervisor.php:1015 -#, php-format -msgid "Remote configuration directory %s is not readable. Please, adjust configuration." -msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" - -#: ../../include/class/ConsoleSupervisor.php:1032 -msgid "Remote configuration directory is not writable" -msgstr "リモート設定ディレクトリに書けません" - -#: ../../include/class/ConsoleSupervisor.php:1034 -#, php-format -msgid "Remote configuration directory %s is not writable. Please, adjust configuration." -msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" - -#: ../../include/class/ConsoleSupervisor.php:1050 -msgid "Remote collections directory is not writable" -msgstr "リモートコレクションディレクトリに書き込めません" - -#: ../../include/class/ConsoleSupervisor.php:1052 -#, php-format -msgid "Collections directory %s is not writable. Please, adjust configuration." -msgstr "コレクションディレクトリ %s に書き込めません。設定を調整してください。" - -#: ../../include/class/ConsoleSupervisor.php:1068 -msgid "Remote md5 directory is not writable" -msgstr "リモート md5 ディレクトリに書き込めません" - -#: ../../include/class/ConsoleSupervisor.php:1070 -#, php-format -msgid "MD5 directory %s is not writable. Please, adjust configuration." -msgstr "MDS ディレクトリ %s に書き込めません。設定を調整してください。" - -#: ../../include/class/ConsoleSupervisor.php:1098 -msgid "There are too much files in spool" -msgstr "スプールに多くのファイルがあります" - -#: ../../include/class/ConsoleSupervisor.php:1100 -#, php-format -msgid "There are more than %d files in %s. Consider checking DataServer performance" -msgstr "" -"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してくださ" -"い。" - -#: ../../include/class/ConsoleSupervisor.php:1121 -msgid "There are too many BADXML files in spool" -msgstr "スプールに BADXML ファイルが大量にあります" - -#: ../../include/class/ConsoleSupervisor.php:1123 -#, php-format -msgid "There are more than %d files in %s. Consider checking software agents." -msgstr "" -"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してください。" - -#: ../../include/class/ConsoleSupervisor.php:1210 -#, php-format -msgid "%s (%s) is lacking performance." -msgstr "%s (%s) はパフォーマンスが低下しています。" - -#: ../../include/class/ConsoleSupervisor.php:1278 -msgid "No servers available." -msgstr "サーバがありません。" - -#: ../../include/class/ConsoleSupervisor.php:1279 -msgid "" -"There are no servers registered in this console. Please, check installation guide." -msgstr "" -"コンソールに登録されたサーバがありません。インストールガイドを確認してください。" - -#: ../../include/class/ConsoleSupervisor.php:1324 -#, php-format -msgid "%s (%s) has crashed." -msgstr "%s (%s) がクラッシュしました。" - -#: ../../include/class/ConsoleSupervisor.php:1330 -#, php-format -msgid "%s (%s) has crashed, please check log files." -msgstr "%s (%s) がクラッシュしました。ログファイルを確認してください。" - -#: ../../include/class/ConsoleSupervisor.php:1337 -#, php-format -msgid "%s (%s) is not running." -msgstr "%s (%s) が動作していません。" - -#: ../../include/class/ConsoleSupervisor.php:1342 -#, 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:1394 -msgid "No master servers found." -msgstr "マスターサーバがありません。" - -#: ../../include/class/ConsoleSupervisor.php:1395 -msgid "" -"At least one server must be defined to run as master. Please, check documentation." -msgstr "" -"少なくとも一つのサーバがマスターとして動作するように定義されている必要があります。ド" -"キュメントを確認してください。" - -#: ../../include/class/ConsoleSupervisor.php:1450 -msgid "PHP safe mode is enabled. Some features may not work properly" -msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" - -#: ../../include/class/ConsoleSupervisor.php:1451 -msgid "" -"To disable it, go to your PHP configuration file (php.ini) and put safe_mode = Off " -"(Do not forget to restart apache process after changes)" -msgstr "" -"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してください。" -"(変更後は apache プロセスの再起動を忘れないようにしてください)" - -#: ../../include/class/ConsoleSupervisor.php:1469 -#, php-format -msgid "'%s' value in PHP configuration is not recommended" -msgstr "PHP 設定の '%s' の値は、お勧めしません。" - -#: ../../include/class/ConsoleSupervisor.php:1473 -#, php-format -msgid "Recommended value is %s" -msgstr "推奨値は %s です" - -#: ../../include/class/ConsoleSupervisor.php:1474 -#: ../../include/class/ConsoleSupervisor.php:1498 -msgid "Unlimited" -msgstr "無制限" - -#: ../../include/class/ConsoleSupervisor.php:1475 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Do not forget to restart Apache process after)" -msgstr "" -"PHP 設定ファイル(php.ini)で変更もしくは、管理者に連絡してください。(設定後は apache プ" -"ロセスの再起動を忘れないようにしてください)" - -#: ../../include/class/ConsoleSupervisor.php:1493 -#: ../../include/class/ConsoleSupervisor.php:1517 -#: ../../include/class/ConsoleSupervisor.php:1546 -#: ../../include/class/ConsoleSupervisor.php:1624 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "PHP 設定における値 '%s' はおすすめしません" - -#: ../../include/class/ConsoleSupervisor.php:1497 -#: ../../include/class/ConsoleSupervisor.php:1521 -#: ../../include/class/ConsoleSupervisor.php:1550 -#: ../../include/class/ConsoleSupervisor.php:1628 -#, php-format -msgid "Recommended value is: %s" -msgstr "推奨値: %s" - -#: ../../include/class/ConsoleSupervisor.php:1499 -#: ../../include/class/ConsoleSupervisor.php:1523 -#: ../../include/class/ConsoleSupervisor.php:1570 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Dont forget restart apache process after changes)" -msgstr "" -"PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。(変更後は apache プ" -"ロセスの再起動を忘れないでください)" - -#: ../../include/class/ConsoleSupervisor.php:1522 -#: ../../include/class/ConsoleSupervisor.php:1551 -#, php-format -msgid "%s or greater" -msgstr "%s または大きい" - -#: ../../include/class/ConsoleSupervisor.php:1552 -#: ../../include/class/ConsoleSupervisor.php:1630 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。" - -#: ../../include/class/ConsoleSupervisor.php:1569 -msgid "Problems with disable_functions in php.ini" -msgstr "php.ini 内の disable_functions に問題があります" - -#: ../../include/class/ConsoleSupervisor.php:1570 -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:1587 -msgid "PhantomJS is not installed" -msgstr "PhantomJS がインストールされていません" - -#: ../../include/class/ConsoleSupervisor.php:1588 -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:1605 -msgid "PHP UPDATE REQUIRED" -msgstr "PHP のアップデートが必要です" - -#: ../../include/class/ConsoleSupervisor.php:1672 -msgid "Historical database not available" -msgstr "ヒストリデータベースがありません" - -#: ../../include/class/ConsoleSupervisor.php:1673 -msgid "" -"Historical database is enabled, though not accessible with the current configuration." -msgstr "ヒストリデータベースが有効ですが、現在の設定でアクセスできません。" - -#: ../../include/class/ConsoleSupervisor.php:1716 -msgid "Database maintenance problem" -msgstr "データベースメンテナンスにおける問題" - -#: ../../include/class/ConsoleSupervisor.php:1718 -#, php-format -msgid "" -"Your database hasn't been through maintenance for 48hrs. Please, check documentation " -"on how to perform this maintenance process on %s and enable it as soon as possible." -msgstr "" -"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセスを実行す" -"る方法はドキュメントを確認してください。また、なるべく早く有効化してください。" - -#: ../../include/class/ConsoleSupervisor.php:1778 -msgid "Historical database maintenance problem." -msgstr "ヒストリデータベースにおける問題" - -#: ../../include/class/ConsoleSupervisor.php:1780 -#, php-format -msgid "" -"Your historical database hasn't been through maintenance for 48hrs. Please, check " -"documentation on how to perform this maintenance process on %s and enable it as soon " -"as possible." -msgstr "" -"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセス" -"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してください。" - -#: ../../include/class/ConsoleSupervisor.php:1818 -msgid "Historical database MR mismatch" -msgstr "ヒストリデータベースの MR が一致していません" - -#: ../../include/class/ConsoleSupervisor.php:1819 -msgid "" -"Your historical database is not using the same schema as the main DB. This could " -"produce anomalies while storing historical data." -msgstr "" -"ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これにより、ヒス" -"トリデータの保存中に異常が発生する可能性があります。" - -#: ../../include/class/ConsoleSupervisor.php:1859 -msgid "Log collector cannot connect to ElasticSearch" -msgstr "ログコレクターが ElasticSearch に接続できません" - -#: ../../include/class/ConsoleSupervisor.php:1860 -msgid "ElasticSearch is not available using current configuration." -msgstr "現在の設定を利用している ElasticSearch が存在しません。" - -#: ../../include/class/ConsoleSupervisor.php:1929 -msgid "Metaconsole DB is not available." -msgstr "メタコンソール DB がありません。" - -#: ../../include/class/ConsoleSupervisor.php:1930 -msgid "Cannot connect with Metaconsole DB using current configuration." -msgstr "現在の設定でメタコンソール DB に接続できません。" - -#: ../../include/class/ConsoleSupervisor.php:1958 -msgid "Scheduled downtime running." -msgstr "計画停止実行中" - -#: ../../include/class/ConsoleSupervisor.php:1959 -msgid "" -"A scheduled downtime is running. Some monitoring data won't be available while " -"downtime is taking place." -msgstr "" -"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できません。" - -#: ../../include/class/ConsoleSupervisor.php:2115 -msgid "Downtime scheduled soon." -msgstr "まもなく計画停止" - -#: ../../include/class/ConsoleSupervisor.php:2117 -#, php-format -msgid "" -"A scheduled downtime is going to be executed from %s to %s. Some monitoring data " -"won't be available while downtime is taking place." -msgstr "" -"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視データ" -"は利用できません。" - -#: ../../include/class/ConsoleSupervisor.php:2147 -msgid "This instance is not registered in the Update manager section" -msgstr "このインスタンスは、アップデートマネージャに登録されていません。" - -#: ../../include/class/ConsoleSupervisor.php:2148 -msgid "" -"Click here to start the registration process" -msgstr "" -"登録処理を開始するには、 こちら をクリックしてください" - -#: ../../include/class/ConsoleSupervisor.php:2180 -msgid "Default password for \"Admin\" user has not been changed" -msgstr "\"admin\" ユーザのデフォルトパスワードが変更されていません" - -#: ../../include/class/ConsoleSupervisor.php:2181 -msgid "" -"Please, change the default password since it is a commonly reported vulnerability." -msgstr "脆弱性として通知されるため、デフォルトパスワードは変更してください。" - -#: ../../include/class/ConsoleSupervisor.php:2216 -msgid "Default font doesn't exist" -msgstr "デフォルトのフォントがありません" - -#: ../../include/class/ConsoleSupervisor.php:2217 -msgid "" -"Your defined font doesn't exist or is not defined. Please, check font parameters in " -"your config" -msgstr "" -"定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラメータを" -"確認してください。" - -#: ../../include/class/ConsoleSupervisor.php:2240 -msgid "Developer mode is enabled" -msgstr "開発モードが有効です" - -#: ../../include/class/ConsoleSupervisor.php:2242 -#, php-format -msgid "" -"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and should " -"be disabled in a production environment. This value is located in the main index.php " -"file" -msgstr "" -"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境では無効" -"化してください。この定義は、メインの index.php ファイル内にあります。" - -#: ../../include/class/ConsoleSupervisor.php:2266 -msgid "Event storm protection is enabled." -msgstr "イベントストーム保護が有効です。" - -#: ../../include/class/ConsoleSupervisor.php:2267 -msgid "" -"Some events may get lost while this mode is enabled. The server must be restarted " -"after altering this setting." -msgstr "" -"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更した" -"後はサーバを再起動する必要があります。" - -#: ../../include/class/ConsoleSupervisor.php:2293 -msgid "Failed to retrieve updates, please configure utility" -msgstr "アップデートの取得に失敗しました。ユーティリティの設定をしてください。" - -#: ../../include/class/ConsoleSupervisor.php:2311 -#, php-format -msgid "New %s Console update" -msgstr "新規コンソールアップデート %s" - -#: ../../include/class/ConsoleSupervisor.php:2314 -msgid "There is a new update available. Please.About minor release update." -msgstr "" -"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" - -#: ../../include/class/ConsoleSupervisor.php:2376 -#: ../../enterprise/include/functions_tasklist.php:56 -msgid "DiscoveryConsoleTasks is not running properly" -msgstr "自動検出コンソールタスクが正しく動作していません" - -#: ../../include/class/ConsoleSupervisor.php:2378 -msgid "Discovery relies on an appropriate cron setup." -msgstr "自動検出は、適切な cron 設定に依存しています。" - -#: ../../include/class/ConsoleSupervisor.php:2379 -#: ../../enterprise/include/functions_tasklist.php:59 -msgid "Please, add the following line to your crontab file:" -msgstr "crontab ファイルに次の行を追加してください:" - -#: ../../include/class/ConsoleSupervisor.php:2392 -#: ../../enterprise/include/functions_tasklist.php:74 -msgid "Last execution" -msgstr "最後の実行" - -#: ../../include/class/ConsoleSupervisor.php:2394 -msgid "Please, make sure process is not locked." -msgstr "プロセスがロックされていないことを確認してください。" - -#: ../../include/class/ConsoleSupervisor.php:2405 -msgid "DiscoveryConsoleTasks is not configured." -msgstr "自動検出コンソールタスクが設定されていません。" - -#: ../../include/class/ConsoleSupervisor.php:2498 -#, php-format -msgid "%s version misaligned with Console" -msgstr "%s バージョンがコンソールと食い違っています" - -#: ../../include/class/ConsoleSupervisor.php:2502 -#, php-format -msgid "" -"Server %s and this console have different versions. This might cause several " -"malfunctions. Please, update this server." -msgstr "" -"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が発生" -"する場合があります。 サーバを更新してください。" - -#: ../../include/class/ConsoleSupervisor.php:2563 -msgid "AllowOverride is disabled" -msgstr "AllowOverride が無効です" - -#: ../../include/class/ConsoleSupervisor.php:2609 -msgid "Desynchronized operation on the node " -msgstr "ノードでの非同期操作 " - -#: ../../include/class/ConsoleSupervisor.php:2632 -msgid "Pandora FMS console log file changed location" -msgstr "Pandora FMS コンソールログの場所が変わりました" - -#: ../../include/class/ConsoleSupervisor.php:2636 -#, php-format -msgid "" -"Pandora FMS console log file has been moved to new location %s/log. Currently you " -"have an outdated and inoperative version of this file at %s. Please, consider " -"deleting it." -msgstr "" -"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いログファ" -"イルがあります。 削除を検討してください。" - -#: ../../include/class/ConsoleSupervisor.php:2671 -msgid "Pandora FMS audit log file changed location" -msgstr "Pandora FMS 監査ログの場所が変わりました" - -#: ../../include/class/ConsoleSupervisor.php:2675 -#, php-format -msgid "" -"Pandora FMS audit log file has been moved to new location %s/log. Currently you have " -"an outdated and inoperative version of this file at %s. Please, consider deleting it." -msgstr "" -"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファイルが" -"あります。 削除を検討してください。" - -#: ../../include/class/ConsoleSupervisor.php:2761 -#, php-format -msgid "Node %s sync queue length exceeded, " -msgstr "ノード %s の同期キューの長さを超えました。" - -#: ../../include/class/ConsoleSupervisor.php:2763 -#, php-format -msgid "" -"Synchronization queue lenght for node %s is %d items, this value should be 0 or lower " -"than %d, please check the queue status." -msgstr "" -"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下である必要が" -"あります。キューの状態を確認してください。" - -#: ../../include/class/ConsoleSupervisor.php:2816 -#, php-format -msgid "Node %s sync queue failed, " -msgstr "ノード %s の同期キューが失敗しました。" - -#: ../../include/class/ConsoleSupervisor.php:2818 -#, php-format -msgid "" -"Node %s cannot process synchronization queue due %s, please check the queue status." -msgstr "" -"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してください。" - -#: ../../include/class/HTML.class.php:419 -#: ../../include/class/CustomNetScan.class.php:314 -#: ../../include/class/CustomNetScan.class.php:422 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 -#: ../../enterprise/include/class/Aws.cloud.php:1126 -#: ../../enterprise/include/class/MySQL.app.php:371 -#: ../../enterprise/include/class/Oracle.app.php:361 -#: ../../enterprise/include/class/DB2.app.php:354 -#: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Omnishell.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:980 -#: ../../enterprise/include/class/Omnishell.class.php:1349 -#: ../../enterprise/include/class/VMware.app.php:455 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 -#: ../../enterprise/include/class/Azure.cloud.php:689 -#: ../../enterprise/include/class/Google.cloud.php:686 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 -#: ../../godmode/modules/manage_network_components_form.php:367 -#: ../../godmode/reporting/graph_builder.main.php:308 -#: ../../godmode/wizards/HostDevices.class.php:648 -#: ../../godmode/wizards/HostDevices.class.php:747 -#: ../../godmode/wizards/Wizard.main.php:416 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:181 -msgid "Go back" -msgstr "戻る" - -#: ../../include/class/ExternalTools.class.php:185 -msgid "Changes successfully saved." -msgstr "変更を保存しました。" - -#: ../../include/class/ExternalTools.class.php:186 -msgid "Changes not saved." -msgstr "変更は保存していません。" - -#: ../../include/class/ExternalTools.class.php:213 -#: ../../include/functions_config.php:263 -msgid "Sound for Alert fired" -msgstr "アラート発生時のサウンド" - -#: ../../include/class/ExternalTools.class.php:233 -#: ../../include/class/ExternalTools.class.php:263 -#: ../../include/class/ExternalTools.class.php:293 -msgid "Play sound" -msgstr "サウンドの再生" - -#: ../../include/class/ExternalTools.class.php:243 -#: ../../include/functions_config.php:267 -msgid "Sound for Monitor critical" -msgstr "障害状態時のサウンド" - -#: ../../include/class/ExternalTools.class.php:273 -#: ../../include/functions_config.php:271 -msgid "Sound for Monitor warning" -msgstr "警告状態時のサウンド" - -#: ../../include/class/ExternalTools.class.php:303 -#: ../../include/functions_config.php:1251 -msgid "Custom graphviz directory" -msgstr "カスタム graphviz ディレクトリ" - -#: ../../include/class/ExternalTools.class.php:313 -msgid "Traceroute path" -msgstr "Traceroute パス" - -#: ../../include/class/ExternalTools.class.php:316 -msgid "Ping path" -msgstr "Ping パス" - -#: ../../include/class/ExternalTools.class.php:319 -msgid "Nmap path" -msgstr "Nmap パス" - -#: ../../include/class/ExternalTools.class.php:322 -msgid "Dig path" -msgstr "dig パス" - -#: ../../include/class/ExternalTools.class.php:325 -msgid "Snmpget path" -msgstr "snmpget パス" - -#: ../../include/class/ExternalTools.class.php:331 -msgid "Custom commands" -msgstr "カスタムコマンド" - -#: ../../include/class/ExternalTools.class.php:342 -msgid "Add new custom command" -msgstr "新たなカスタムコマンドの追加" - -#: ../../include/class/ExternalTools.class.php:354 -msgid "Adding `_address_` macro will use agent's IP when perform the execution" -msgstr "`_address_`マクロを追加すると、実行時にエージェントの IP が使用されます" - -#: ../../include/class/ExternalTools.class.php:438 -msgid "Delete this custom command" -msgstr "このカスタムコマンドを削除" - -#: ../../include/class/ExternalTools.class.php:486 -msgid "The agent doesn`t have an IP yet" -msgstr "エージェントはまだ IP がありません" - -#: ../../include/class/ExternalTools.class.php:508 -msgid "Traceroute" -msgstr "Traceroute" - -#: ../../include/class/ExternalTools.class.php:509 -msgid "Ping host & Latency" -msgstr "ホストへの ping および遅延" - -#: ../../include/class/ExternalTools.class.php:510 -msgid "SNMP Interface status" -msgstr "SNMP インタフェースの状態" - -#: ../../include/class/ExternalTools.class.php:511 -msgid "Basic TCP Port Scan" -msgstr "基本 TCP ポートスキャン" - -#: ../../include/class/ExternalTools.class.php:512 -msgid "DiG/Whois Lookup" -msgstr "DiG/Whois ルックアップ" - -#: ../../include/class/ExternalTools.class.php:530 ../../include/functions_menu.php:597 -#: ../../include/functions_reporting_html.php:2179 -#: ../../include/functions_reporting_html.php:4643 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 -#: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../enterprise/meta/include/functions_autoprovision.php:641 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3740 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 -#: ../../enterprise/godmode/policies/policy_queue.php:605 -#: ../../enterprise/godmode/policies/policy_queue.php:649 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4312 -msgid "Operation" -msgstr "操作" - -#: ../../include/class/ExternalTools.class.php:537 -#: ../../enterprise/views/ncm/agent/details.php:256 -#: ../../enterprise/views/ncm/agent/manage.php:135 -#: ../../enterprise/views/ncm/agent/manage.php:148 -#: ../../enterprise/views/ncm/agent/manage.php:181 -#: ../../enterprise/views/ncm/agent/manage.php:274 -#: ../../enterprise/views/ncm/agent/manage.php:309 -#: ../../enterprise/views/ncm/snippets/edit.php:138 -#: ../../enterprise/views/ncm/templates/edit.php:347 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329 -msgid "Please select" -msgstr "選択してください" - -#: ../../include/class/ExternalTools.class.php:542 -msgid "IP Adress" -msgstr "IP アドレス" - -#: ../../include/class/ExternalTools.class.php:554 -msgid "SNMP Version" -msgstr "SNMPバージョン" - -#: ../../include/class/ExternalTools.class.php:570 -#: ../../enterprise/meta/include/functions_wizard_meta.php:967 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1484 -msgid "SNMP Community" -msgstr "SNMP コミュニティ" - -#: ../../include/class/ExternalTools.class.php:707 -msgid "Command not response" -msgstr "コマンドが応答しません" - -#: ../../include/class/ExternalTools.class.php:716 -msgid "The command failed and obtained the return code:" -msgstr "コマンドが失敗し、戻り値が返りました:" - -#: ../../include/class/ExternalTools.class.php:726 -msgid "" -"Something went wrong while perform the execution. Please check the configuration." -msgstr "実行中に何らかの問題が発生しました。設定を確認してください。" - -#: ../../include/class/ExternalTools.class.php:750 -#: ../../godmode/agentes/configurar_agente.php:885 -#: ../../godmode/agentes/configurar_agente.php:1035 -msgid "The ip or dns name entered cannot be resolved" -msgstr "入力された IP または DNS 名の名前解決ができません。" - -#: ../../include/class/ExternalTools.class.php:763 -msgid "SNMP information for " -msgstr "SNMP情報: " - -#: ../../include/class/ExternalTools.class.php:768 -#: ../../include/class/ExternalTools.class.php:780 -msgid "Target unreachable." -msgstr "対象に到達できません。" - -#: ../../include/class/ExternalTools.class.php:771 -msgid "Uptime" -msgstr "稼働時間" - -#: ../../include/class/ExternalTools.class.php:783 -msgid "Device info" -msgstr "デバイス情報" - -#: ../../include/class/ExternalTools.class.php:794 -msgid "Interface" -msgstr "インタフェース" - -#: ../../include/class/ExternalTools.class.php:825 -msgid "Domain and IP information for " -msgstr "ドメインおよびIP情報: " - -#: ../../include/class/ExternalTools.class.php:830 -msgid "Dig executable does not exist." -msgstr "digコマンドがありません。" - -#: ../../include/class/ExternalTools.class.php:838 -msgid "Whois executable does not exist." -msgstr "whoisコマンドがありません。" - -#: ../../include/class/ExternalTools.class.php:849 -msgid "Traceroute executable does not exist." -msgstr "traceroute コマンドがありません。" - -#: ../../include/class/ExternalTools.class.php:852 -#, php-format -msgid "Traceroute to %s" -msgstr "%s への traceroute" - -#: ../../include/class/ExternalTools.class.php:860 -msgid "Ping executable does not exist." -msgstr "pingコマンドがありません。" - -#: ../../include/class/ExternalTools.class.php:863 -#, php-format -msgid "Ping to %s" -msgstr "%s への ping" - -#: ../../include/class/ExternalTools.class.php:871 -msgid "Nmap executable does not exist." -msgstr "nmapコマンドがありません。" - -#: ../../include/class/ExternalTools.class.php:874 -#, php-format -msgid "Basic TCP Scan on %s" -msgstr "%s の基本 TCP スキャン" - -#: ../../include/class/ExternalTools.class.php:892 -#, php-format -msgid "Performing %s execution on %s" -msgstr "%s 実行を %s にて実施中" - -#: ../../include/class/ExternalTools.class.php:894 -#, php-format -msgid "Performing %s execution" -msgstr "%s を実行中" - -#: ../../include/class/ConfigPEN.class.php:337 -#: ../../include/class/ConfigPEN.class.php:345 ../../godmode/menu.php:151 -msgid "Private Enterprise Numbers" -msgstr "プライベートエンタープライズ番号" - -#: ../../include/class/ConfigPEN.class.php:435 -#: ../../include/class/ConfigPEN.class.php:598 -msgid "Manufacturer" -msgstr "製造元" - -#: ../../include/class/ConfigPEN.class.php:483 -msgid "PEN is required" -msgstr "PEN が必要です" - -#: ../../include/class/ConfigPEN.class.php:509 -msgid "PEN is required." -msgstr "PEN が必要です。" - -#: ../../include/class/ConfigPEN.class.php:513 -msgid "Manufacturer is required" -msgstr "製造元が必要です" - -#: ../../include/class/ConfigPEN.class.php:530 -msgid "This PEN definition does not exist" -msgstr "この PEN 定義がありませえん" - -#: ../../include/class/ConfigPEN.class.php:544 -msgid "created" -msgstr "作成しました" - -#: ../../include/class/ConfigPEN.class.php:550 -msgid "This PEN definition already exists" -msgstr "この PEN 定義はすでに存在します" - -#: ../../include/class/ConfigPEN.class.php:564 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172 -msgid "updated" -msgstr "更新しました" - -#: ../../include/class/ConfigPEN.class.php:571 -#, php-format -msgid "Succesfully %s" -msgstr "成功 %s" - -#: ../../include/class/ConfigPEN.class.php:651 -msgid "Register manufacturer" -msgstr "製造元登録" - -#: ../../include/class/ConfigPEN.class.php:667 -msgid "Are you sure you want to delete this PEN?" -msgstr "この PEN を削除してもよろしいですか?" - -#: ../../include/class/ConfigPEN.class.php:694 -msgid "Register new manufacturer" -msgstr "新たな製造元を登録" - -#: ../../include/class/CredentialStore.class.php:611 -#, php-format -msgid "Not a valid JSON: %s" -msgstr "不正な JSON: %s" - -#: ../../include/class/CredentialStore.class.php:621 -msgid "Key identifier is required" -msgstr "鍵の識別子が必要です" - -#: ../../include/class/CredentialStore.class.php:623 -msgid "You must select a group where store this key!" -msgstr "この鍵を保存するグループを選択する必要があります。" - -#: ../../include/class/CredentialStore.class.php:625 -msgid "You must specify a product type" -msgstr "製品タイプを指定する必要があります" - -#: ../../include/class/CredentialStore.class.php:627 -msgid "You must specify a username and/or password" -msgstr "ユーザ名およびパスワードを指定する必要があります" - -#: ../../include/class/CredentialStore.class.php:629 -msgid "Identifier with forbidden characters. Check the documentation." -msgstr "禁止文字を含む識別子。ドキュメントを確認してください。" - -#: ../../include/class/CredentialStore.class.php:742 -msgid "identifier cannot be empty" -msgstr "識別子は空にできません" - -#: ../../include/class/CredentialStore.class.php:747 -#: ../../enterprise/include/class/LogSource.class.php:567 -msgid "Not allowed" -msgstr "許可されません" - -#: ../../include/class/CredentialStore.class.php:786 -#: ../../enterprise/include/class/LogSource.class.php:611 -msgid "How to configure encryption." -msgstr "暗号化の設定方法。" - -#: ../../include/class/CredentialStore.class.php:785 -#, php-format -msgid "Database encryption is not enabled. Credentials will be stored in plaintext. %s" -msgstr "データベースの暗号化が無効です。認証情報がプレーンテキストで保存されます。%s" - -#: ../../include/class/CredentialStore.class.php:803 -#: ../../include/class/CredentialStore.class.php:911 -#: ../../enterprise/views/ncm/firmwares/list.php:74 -#: ../../enterprise/include/class/Omnishell.class.php:398 -msgid "Identifier" -msgstr "識別子" - -#: ../../include/class/CredentialStore.class.php:804 -#: ../../include/class/CredentialStore.class.php:937 -msgid "Product" -msgstr "製品" - -#: ../../include/class/CredentialStore.class.php:869 -msgid "Add key" -msgstr "鍵を追加" - -#: ../../include/class/CredentialStore.class.php:946 -#: ../../enterprise/include/class/Aws.cloud.php:118 -msgid "Aws" -msgstr "AWS" - -#: ../../include/class/CredentialStore.class.php:947 -#: ../../enterprise/include/class/Azure.cloud.php:153 -msgid "Azure" -msgstr "Azure" - -#: ../../include/class/CredentialStore.class.php:948 -#: ../../enterprise/include/class/SAPView.class.php:621 -#: ../../enterprise/include/class/SAPView.class.php:624 -#: ../../enterprise/godmode/menu.php:177 -msgid "SAP" -msgstr "SAP" - -#: ../../include/class/CredentialStore.class.php:949 -#: ../../enterprise/include/class/Google.cloud.php:147 -msgid "Google" -msgstr "Google" - -#: ../../include/class/CredentialStore.class.php:959 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 -msgid "Extra" -msgstr "拡張" - -#: ../../include/class/CredentialStore.class.php:960 -msgid "Extra (2)" -msgstr "拡張 (2)" - -#: ../../include/class/CredentialStore.class.php:970 -#: ../../include/class/CredentialStore.class.php:1141 -msgid "Access key ID" -msgstr "アクセスキー ID" - -#: ../../include/class/CredentialStore.class.php:971 -#: ../../include/class/CredentialStore.class.php:1142 -msgid "Secret access key" -msgstr "シークレットアクセスキー" - -#: ../../include/class/CredentialStore.class.php:977 -#: ../../include/class/CredentialStore.class.php:994 -msgid "Account ID" -msgstr "アカウント ID" - -#: ../../include/class/CredentialStore.class.php:978 -#: ../../include/class/CredentialStore.class.php:1149 -msgid "Application secret" -msgstr "アプリケーションシークレット" - -#: ../../include/class/CredentialStore.class.php:979 -#: ../../include/class/CredentialStore.class.php:1150 -msgid "Tenant or domain name" -msgstr "テナントまたはドメイン名" - -#: ../../include/class/CredentialStore.class.php:980 -#: ../../include/class/CredentialStore.class.php:1151 -msgid "Subscription id" -msgstr "サブスクリプション ID" - -#: ../../include/class/CredentialStore.class.php:984 -#: ../../include/class/CredentialStore.class.php:1167 -msgid "Auth JSON" -msgstr "認証 JSON" - -#: ../../include/class/CredentialStore.class.php:1148 -msgid "Client ID" -msgstr "クライアントID" - -#: ../../include/class/CredentialStore.class.php:1157 -msgid "Account ID." -msgstr "アカウント ID" - -#: ../../include/class/CredentialStore.class.php:1243 -msgid "Register new key into keystore" -msgstr "キーストアへ新たな鍵を登録" - -#: ../../include/class/CredentialStore.class.php:1247 -msgid "Update key" -msgstr "鍵の更新" - -#: ../../include/class/CustomNetScan.class.php:134 -#: ../../enterprise/include/class/Aws.cloud.php:886 -#: ../../enterprise/include/class/Aws.S3.php:166 -msgid "This task has been already defined. Please edit it or create a new one." -msgstr "このタスクはすでに定義済です。これを編集するか新たに作成してください。" - -#: ../../include/class/CustomNetScan.class.php:158 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193 -#: ../../enterprise/include/class/Aws.cloud.php:907 -#: ../../enterprise/include/class/MySQL.app.php:196 -#: ../../enterprise/include/class/Oracle.app.php:194 -#: ../../enterprise/include/class/DB2.app.php:187 -#: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/VMware.app.php:254 -#: ../../enterprise/include/class/Azure.cloud.php:420 -#: ../../enterprise/include/class/Google.cloud.php:423 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 -#: ../../godmode/wizards/HostDevices.class.php:412 -msgid "You have no access to edit this task." -msgstr "このタスクの編集権限がありません。" - -#: ../../include/class/CustomNetScan.class.php:168 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 -#: ../../enterprise/include/class/Aws.cloud.php:917 -#: ../../enterprise/include/class/Aws.S3.php:183 -#: ../../enterprise/include/class/MySQL.app.php:206 -#: ../../enterprise/include/class/Oracle.app.php:204 -#: ../../enterprise/include/class/DB2.app.php:197 -#: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/VMware.app.php:264 -#: ../../godmode/wizards/HostDevices.class.php:422 -msgid "You must provide a task name." -msgstr "タスク名を設定する必要があります。" - -#: ../../include/class/CustomNetScan.class.php:173 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 -#: ../../enterprise/include/class/Aws.cloud.php:922 -#: ../../enterprise/include/class/Aws.S3.php:188 -#: ../../enterprise/include/class/MySQL.app.php:211 -#: ../../enterprise/include/class/Oracle.app.php:209 -#: ../../enterprise/include/class/DB2.app.php:202 -#: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/VMware.app.php:269 -#: ../../godmode/wizards/HostDevices.class.php:427 -msgid "You must select a Discovery Server." -msgstr "自動検出サーバを選択する必要があります。" - -#: ../../include/class/CustomNetScan.class.php:178 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 -#: ../../enterprise/include/class/Aws.cloud.php:927 -#: ../../enterprise/include/class/Aws.S3.php:193 -#: ../../enterprise/include/class/MySQL.app.php:226 -#: ../../enterprise/include/class/Oracle.app.php:219 -#: ../../enterprise/include/class/DB2.app.php:212 -#: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/VMware.app.php:279 -#: ../../godmode/wizards/HostDevices.class.php:438 -msgid "You must select a valid group." -msgstr "正しいグループを選択する必要があります。" - -#: ../../include/class/CustomNetScan.class.php:222 -#: ../../godmode/wizards/HostDevices.class.php:483 -#: ../../godmode/wizards/HostDevices.class.php:595 -msgid "Failed to find network scan task." -msgstr "ネットワークスキャンタスクを見つけられませんでした。" - -#: ../../include/class/CustomNetScan.class.php:369 -#: ../../include/class/CustomNetScan.class.php:394 -msgid "NetScan Custom" -msgstr "カスタムネットスキャン" - -#: ../../include/class/CustomNetScan.class.php:403 -#: ../../godmode/wizards/HostDevices.class.php:728 -msgid "Internal error, please re-run this wizard." -msgstr "内部エラー。このウィザードを再実行してください。" - -#: ../../include/class/CustomNetScan.class.php:446 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 -#: ../../enterprise/include/class/Aws.cloud.php:1201 -#: ../../enterprise/include/class/Aws.S3.php:401 -#: ../../enterprise/include/class/MySQL.app.php:442 -#: ../../enterprise/include/class/Oracle.app.php:444 -#: ../../enterprise/include/class/DB2.app.php:437 -#: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/VMware.app.php:583 -#: ../../enterprise/include/class/Azure.cloud.php:771 -#: ../../enterprise/include/class/Google.cloud.php:759 -#: ../../godmode/wizards/HostDevices.class.php:838 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:588 -msgid "Task name" -msgstr "タスク名" - -#: ../../include/class/CustomNetScan.class.php:480 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 -#: ../../enterprise/include/class/Aws.cloud.php:1213 -#: ../../enterprise/include/class/Aws.S3.php:413 -#: ../../enterprise/include/class/MySQL.app.php:454 -#: ../../enterprise/include/class/Oracle.app.php:456 -#: ../../enterprise/include/class/DB2.app.php:449 -#: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/VMware.app.php:594 -#: ../../godmode/wizards/HostDevices.class.php:849 -msgid "" -"You must select a Discovery Server to run the Task, otherwise the Recon Task will " -"never run" -msgstr "" -"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出タスク" -"は実行されません。" - -#: ../../include/class/CustomNetScan.class.php:521 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 -#: ../../enterprise/include/class/Aws.cloud.php:1319 -#: ../../enterprise/include/class/Aws.S3.php:507 -#: ../../enterprise/include/class/MySQL.app.php:559 -#: ../../enterprise/include/class/Oracle.app.php:544 -#: ../../enterprise/include/class/DB2.app.php:537 -#: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/VMware.app.php:668 -#: ../../godmode/wizards/HostDevices.class.php:799 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "手動は、オンデマンドでのみの実行を意味します。" - -#: ../../include/class/CustomNetScan.class.php:528 -#: ../../include/functions_reporting_html.php:2309 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 -#: ../../enterprise/include/class/Aws.cloud.php:1326 -#: ../../enterprise/include/class/Aws.S3.php:514 -#: ../../enterprise/include/class/MySQL.app.php:566 -#: ../../enterprise/include/class/Oracle.app.php:551 -#: ../../enterprise/include/class/DB2.app.php:544 -#: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/VMware.app.php:675 -#: ../../enterprise/include/class/VMware.app.php:887 -#: ../../godmode/wizards/HostDevices.class.php:806 -msgid "Defined" -msgstr "定義済み" - -#: ../../include/class/CustomNetScan.class.php:529 -#: ../../enterprise/tools/ipam/ipam_list.php:670 -#: ../../enterprise/operation/services/services.list.php:275 -#: ../../enterprise/operation/services/services.table_services.php:197 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 -#: ../../enterprise/include/class/Aws.cloud.php:1327 -#: ../../enterprise/include/class/Aws.S3.php:515 -#: ../../enterprise/include/class/MySQL.app.php:567 -#: ../../enterprise/include/class/Oracle.app.php:552 -#: ../../enterprise/include/class/DB2.app.php:545 -#: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/VMware.app.php:676 -#: ../../enterprise/include/functions_ipam.php:1356 -#: ../../enterprise/godmode/services/services.service.php:650 -#: ../../enterprise/godmode/massive/massive_create_services.php:698 -#: ../../godmode/wizards/HostDevices.class.php:807 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:712 -msgid "Manual" -msgstr "マニュアル" - -#: ../../include/class/CustomNetScan.class.php:545 -#: ../../godmode/wizards/HostDevices.class.php:813 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "自動検出タスクの最小間隔は、5分をお勧めします。" - -#: ../../include/class/CustomNetScan.class.php:553 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 -#: ../../enterprise/include/class/MySQL.app.php:591 -#: ../../enterprise/include/class/Oracle.app.php:576 -#: ../../enterprise/include/class/DB2.app.php:569 -#: ../../enterprise/include/class/SAP.app.php:444 -#: ../../enterprise/include/class/VMware.app.php:536 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202 -#: ../../godmode/setup/setup_integria.php:636 -#: ../../godmode/wizards/HostDevices.class.php:772 -msgid "Update and continue" -msgstr "更新して次へ" - -#: ../../include/class/CustomNetScan.class.php:611 -msgid "Recon script" -msgstr "自動検出スクリプト" - -#: ../../include/class/CustomNetScan.class.php:652 -msgid "Explanation" -msgstr "説明" - -#: ../../include/class/CustomNetScan.class.php:668 -msgid "macro_desc" -msgstr "マクロの説明" - -#: ../../include/class/CustomNetScan.class.php:725 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:908 -#: ../../enterprise/include/class/Oracle.app.php:949 -#: ../../enterprise/include/class/DB2.app.php:840 -#: ../../enterprise/include/class/SAP.app.php:802 -#: ../../enterprise/include/class/Omnishell.class.php:852 -#: ../../enterprise/include/class/VMware.app.php:863 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../godmode/wizards/HostDevices.class.php:1569 -#: ../../godmode/alerts/configure_alert_template.php:1171 -msgid "Finish" -msgstr "終了" - -#: ../../include/class/CustomNetScan.class.php:758 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 -#: ../../enterprise/include/class/Aws.cloud.php:1590 -#: ../../enterprise/include/class/Aws.S3.php:658 -#: ../../enterprise/include/class/MySQL.app.php:944 -#: ../../enterprise/include/class/Oracle.app.php:977 -#: ../../enterprise/include/class/DB2.app.php:868 -#: ../../enterprise/include/class/SAP.app.php:924 -#: ../../enterprise/include/class/VMware.app.php:1014 -#: ../../enterprise/include/class/Azure.cloud.php:990 -#: ../../enterprise/include/class/Google.cloud.php:952 -#: ../../godmode/wizards/HostDevices.class.php:1589 -msgid "Task configured." -msgstr "タスクを設定しました。" - -#: ../../include/class/CustomNetScan.class.php:762 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 -#: ../../enterprise/include/class/MySQL.app.php:948 -#: ../../enterprise/include/class/Oracle.app.php:981 -#: ../../enterprise/include/class/DB2.app.php:872 -#: ../../enterprise/include/class/SAP.app.php:928 -#: ../../enterprise/include/class/VMware.app.php:1018 -#: ../../enterprise/include/class/Azure.cloud.php:994 -#: ../../enterprise/include/class/Google.cloud.php:956 -#: ../../godmode/wizards/HostDevices.class.php:1593 -msgid "Wizard failed. Cannot configure task." -msgstr "ウィザードに失敗しました。タスクを設定できません。" - -#: ../../include/class/CalendarManager.class.php:161 -msgid "Alert calendar list" -msgstr "アラートカレンダー一覧" - -#: ../../include/class/CalendarManager.class.php:183 -msgid "Edit calendar" -msgstr "カレンダー編集" - -#: ../../include/class/CalendarManager.class.php:197 -msgid "Alert special days" -msgstr "特別日アラート" - -#: ../../include/class/CalendarManager.class.php:272 -#: ../../include/class/CalendarManager.class.php:473 -#, php-format -msgid "Calendar not found: %s" -msgstr "カレンダーが見つかりません: %s" - -#: ../../include/class/CalendarManager.class.php:284 -msgid "Calendar successfully deleted" -msgstr "カレンダーを削除しました" - -#: ../../include/class/CalendarManager.class.php:307 -#, php-format -msgid "Special day not found: %s" -msgstr "特別日が見つかりません: %s" - -#: ../../include/class/CalendarManager.class.php:319 -msgid "Special day successfully deleted" -msgstr "特別日を削除しました" - -#: ../../include/class/CalendarManager.class.php:392 -msgid "Skipped dates: " -msgstr "対象外の日付: " - -#: ../../include/class/CalendarManager.class.php:430 -msgid "Success to upload iCalendar" -msgstr "iCalendar をアップロードしました" - -#: ../../include/class/CalendarManager.class.php:431 -msgid "Fail to upload iCalendar" -msgstr "iCalendar のアップロードに失敗しました" - -#: ../../include/class/CalendarManager.class.php:488 -#: ../../include/class/CalendarManager.class.php:841 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 -#: ../../enterprise/include/class/DatabaseHA.class.php:796 -msgid "Failed to update" -msgstr "更新に失敗しました" - -#: ../../include/class/CalendarManager.class.php:490 -#: ../../include/class/CalendarManager.class.php:843 -#: ../../include/functions_alerts.php:2744 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:832 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 -#: ../../enterprise/tools/ipam/ipam_action.php:214 -#: ../../enterprise/operation/agentes/transactional_map.php:134 -#: ../../enterprise/include/ajax/servers.ajax.php:197 -#: ../../enterprise/include/ajax/servers.ajax.php:330 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 -#: ../../enterprise/meta/advanced/cron_main.php:158 -#: ../../enterprise/meta/advanced/cron_main.php:202 -#: ../../enterprise/meta/advanced/cron_main.php:295 -#: ../../enterprise/meta/advanced/links.php:49 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:125 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 -#: ../../godmode/setup/news.php:66 ../../godmode/setup/gis.php:47 -#: ../../godmode/setup/links.php:44 ../../godmode/modules/manage_nc_groups.php:84 -#: ../../godmode/snmpconsole/snmp_alert.php:283 -#: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/agentes/configurar_agente.php:880 -#: ../../godmode/agentes/planned_downtime.editor.php:416 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../godmode/alerts/alert_commands.php:572 ../../godmode/alerts/alert_list.php:178 -#: ../../godmode/users/configure_user.php:474 ../../godmode/users/profile_list.php:269 -msgid "Successfully created" -msgstr "作成しました。" - -#: ../../include/class/CalendarManager.class.php:491 -#: ../../include/class/CalendarManager.class.php:844 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 -msgid "Failed to create" -msgstr "作成に失敗しました" - -#: ../../include/class/CalendarManager.class.php:507 -msgid "Failed saving calendar: name exists" -msgstr "カレンダーの保存に失敗しました: すでに存在します" - -#: ../../include/class/CalendarManager.class.php:516 -msgid "Failed saving calendar: " -msgstr "カレンダーの保存に失敗しました: " - -#: ../../include/class/CalendarManager.class.php:523 -#: ../../include/class/CalendarManager.class.php:895 -#: ../../include/functions_reporting.php:4743 ../../include/functions_reporting.php:4771 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1514 -#, php-format -msgid "Error: %s" -msgstr "エラー: %s" - -#: ../../include/class/CalendarManager.class.php:783 -#, php-format -msgid "Special days not found: %s" -msgstr "特別日が見つかりません: %s" - -#: ../../include/class/CalendarManager.class.php:826 -#, php-format -msgid "SpecialDay not found: %s" -msgstr "特別日が見つかりません: %s" - -#: ../../include/class/CalendarManager.class.php:879 -msgid "Failed saving calendar: already exists" -msgstr "カレンダーの保存に失敗しました: すでに存在します" - -#: ../../include/class/CalendarManager.class.php:888 -msgid "Failed saving special day: " -msgstr "特別日の保存に失敗しました: " - -#: ../../include/class/CalendarManager.class.php:956 -#, php-format -msgid "Same as %s" -msgstr "%s と同じ日" - -#: ../../include/class/CalendarManager.class.php:958 -msgid "Templates not being fired" -msgstr "テンプレートは発報していません" - -#: ../../include/class/NetworkMap.class.php:2317 -msgid "Failed to generate dotmap, please select different layout schema" -msgstr "ドットマップの生成に失敗しました。異なるレイアウトスキーマを選択してください。" - -#: ../../include/class/NetworkMap.class.php:2452 -msgid "Failed to retrieve graph data." -msgstr "グラフデータの取得に失敗しました。" - -#: ../../include/class/NetworkMap.class.php:2663 -msgid "Holding Area" -msgstr "保持エリア" - -#: ../../include/class/NetworkMap.class.php:2790 -#, php-format -msgid "Edit node %s" -msgstr "ノード編集 %s" - -#: ../../include/class/NetworkMap.class.php:2792 -msgid "Show details and options" -msgstr "詳細とオプションの表示" - -#: ../../include/class/NetworkMap.class.php:2793 -msgid "Add a interface link" -msgstr "インタフェースリンクを追加" - -#: ../../include/class/NetworkMap.class.php:2794 -msgid "Set parent interface" -msgstr "親インタフェースを設定" - -#: ../../include/class/NetworkMap.class.php:2795 -msgid "Set as children" -msgstr "子に設定" - -#: ../../include/class/NetworkMap.class.php:2796 -msgid "Set parent" -msgstr "親を設定" - -#: ../../include/class/NetworkMap.class.php:2797 -#: ../../include/class/NetworkMap.class.php:2810 -msgid "Abort the action of set relationship" -msgstr "関係設定動作の中止" - -#: ../../include/class/NetworkMap.class.php:2799 -#: ../../include/class/NetworkMap.class.php:3155 -msgid "Add node" -msgstr "ノード追加" - -#: ../../include/class/NetworkMap.class.php:2800 -msgid "Set center" -msgstr "中心設定" - -#: ../../include/class/NetworkMap.class.php:2802 -msgid "Refresh Holding area" -msgstr "保持エリアの更新" - -#: ../../include/class/NetworkMap.class.php:2803 -#: ../../include/class/NetworkMap.class.php:2806 -msgid "Proceed" -msgstr "実行" - -#: ../../include/class/NetworkMap.class.php:2804 -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:2808 -msgid "Restart map" -msgstr "マップリセット" - -#: ../../include/class/NetworkMap.class.php:2809 -msgid "Abort the interface relationship" -msgstr "インタフェース関連付けの中止" - -#: ../../include/class/NetworkMap.class.php:2827 -#: ../../include/class/NetworkMap.class.php:2876 -msgid "Edit node" -msgstr "ノード編集" - -#: ../../include/class/NetworkMap.class.php:2837 -#: ../../include/class/NetworkMap.class.php:2886 -msgid "Adresses" -msgstr "アドレス" - -#: ../../include/class/NetworkMap.class.php:2839 -#: ../../include/class/NetworkMap.class.php:2888 -msgid "OS type" -msgstr "OS 種別" - -#: ../../include/class/NetworkMap.class.php:2846 -#: ../../include/class/NetworkMap.class.php:2847 -#: ../../include/class/NetworkMap.class.php:2895 -#: ../../include/class/NetworkMap.class.php:2896 -msgid "Node Details" -msgstr "ノード詳細" - -#: ../../include/class/NetworkMap.class.php:2910 -#: ../../enterprise/tools/ipam/ipam_ajax.php:473 -msgid "MAC" -msgstr "MAC" - -#: ../../include/class/NetworkMap.class.php:2921 -#: ../../include/class/NetworkMap.class.php:2922 -msgid "Interface Information (SNMP)" -msgstr "インタフェース情報 (SNMP)" - -#: ../../include/class/NetworkMap.class.php:2933 -msgid "Shape" -msgstr "形" - -#: ../../include/class/NetworkMap.class.php:2936 -msgid "Circle" -msgstr "円" - -#: ../../include/class/NetworkMap.class.php:2937 -msgid "Square" -msgstr "四角" - -#: ../../include/class/NetworkMap.class.php:2938 -msgid "Rhombus" -msgstr "ひしがた" - -#: ../../include/class/NetworkMap.class.php:2951 -msgid "name node" -msgstr "ノード名" - -#: ../../include/class/NetworkMap.class.php:2957 -#: ../../enterprise/include/functions_HA_cluster.php:496 -msgid "Update node" -msgstr "ノード更新" - -#: ../../include/class/NetworkMap.class.php:2969 -#: ../../include/class/NetworkMap.class.php:3272 -msgid "name fictional node" -msgstr "仮想ノード名" - -#: ../../include/class/NetworkMap.class.php:2974 -#: ../../include/class/NetworkMap.class.php:3277 -msgid "Networkmap to link" -msgstr "リンクするネットワークマップ" - -#: ../../include/class/NetworkMap.class.php:2986 -msgid "Update fictional node" -msgstr "仮想ノード更新" - -#: ../../include/class/NetworkMap.class.php:2996 -#: ../../include/class/NetworkMap.class.php:2997 -msgid "Node options" -msgstr "ノードオプション" - -#: ../../include/class/NetworkMap.class.php:3008 -#: ../../include/class/NetworkMap.class.php:3101 -msgid "Node source" -msgstr "ノードソース" - -#: ../../include/class/NetworkMap.class.php:3009 -#: ../../include/class/NetworkMap.class.php:3102 -msgid "Interface source" -msgstr "インタフェースソース" - -#: ../../include/class/NetworkMap.class.php:3010 -#: ../../include/class/NetworkMap.class.php:3103 -msgid "Interface Target" -msgstr "インタフェースターゲット" - -#: ../../include/class/NetworkMap.class.php:3012 -#: ../../include/class/NetworkMap.class.php:3104 -msgid "Node target" -msgstr "ノードターゲット" - -#: ../../include/class/NetworkMap.class.php:3013 -msgid "E." -msgstr "E." - -#: ../../include/class/NetworkMap.class.php:3075 -msgid "There are not relations" -msgstr "関連付がありません。" - -#: ../../include/class/NetworkMap.class.php:3086 -#: ../../include/class/NetworkMap.class.php:3087 -#: ../../enterprise/meta/advanced/metasetup.relations.php:330 -msgid "Relations" -msgstr "関連付" - -#: ../../include/class/NetworkMap.class.php:3143 -msgid "Add interface link" -msgstr "インタフェースリンクを追加" - -#: ../../include/class/NetworkMap.class.php:3174 -#: ../../include/class/NetworkMap.class.php:3196 -#: ../../include/class/NetworkMap.class.php:3197 -#: ../../include/class/NetworkMap.class.php:3247 -#: ../../include/class/NetworkMap.class.php:3259 -#: ../../include/class/NetworkMap.class.php:3300 -msgid "Add agent node" -msgstr "エージェントノード追加" - -#: ../../include/class/NetworkMap.class.php:3258 -msgid "Add agent node (filter by group)" -msgstr "エージェントノード追加 (グループによるフィルタ)" - -#: ../../include/class/NetworkMap.class.php:3289 -msgid "Add fictional node" -msgstr "仮想ノード追加" - -#: ../../include/class/NetworkMap.class.php:3299 -msgid "Add fictional point" -msgstr "仮想ポイント追加" - -#: ../../include/class/NetworkMap.class.php:3513 -msgid "Open Minimap" -msgstr "ミニマップを開く" - -#: ../../include/class/NetworkMap.class.php:3519 -msgid "Hide Labels" -msgstr "ラベルを隠す" - -#: ../../include/class/TreeGroupEdition.class.php:164 -#: ../../enterprise/meta/event/custom_events.php:249 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 -#: ../../godmode/events/custom_events.php:204 -#: ../../godmode/agentes/status_monitor_custom_fields.php:241 -msgid "Confirm" -msgstr "確認" - -#: ../../include/functions_network_components.php:590 -#: ../../include/functions_alerts.php:1121 -#: ../../enterprise/include/functions_local_components.php:354 -msgid "Copy of" -msgstr "複製" - -#: ../../include/lib/Group.php:299 -#, php-format -msgid "Failed to save group %s" -msgstr "グループ %s の保存に失敗しました" - -#: ../../include/lib/View.php:69 -#, php-format -msgid "View %s not found" -msgstr "ビュー %s が見つかりません" - -#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1170 -#: ../../include/lib/Entity.php:303 ../../enterprise/include/lib/Service.php:397 -#: ../../enterprise/include/lib/Service.php:734 -#: ../../enterprise/include/lib/Service.php:879 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1414 -#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:399 -#: ../../enterprise/include/lib/ServiceElement.php:390 -#: ../../enterprise/include/lib/ServiceElement.php:921 -#: ../../enterprise/include/lib/ServiceElement.php:963 -#: ../../enterprise/include/lib/ServiceElement.php:1005 -#: ../../enterprise/include/lib/ServiceElement.php:1111 -#: ../../enterprise/include/lib/ServiceElement.php:1153 -#, php-format -msgid "Cannot connect to node %d" -msgstr "ノード %d へ接続できません" - -#: ../../include/lib/Module.php:256 -msgid " error: Module has no agent assigned." -msgstr " エラー: モジュールがエージェントに割り当てられていません" - -#: ../../include/lib/Module.php:803 ../../enterprise/include/lib/Policy.php:1193 -#: ../../enterprise/include/lib/Policy/Module.php:201 -#, php-format -msgid "Module already exists: \"%s\"" -msgstr "モジュールがすでに存在します: \"%s\"" - -#: ../../include/lib/Module.php:1037 -msgid "Module name empty." -msgstr "モジュール名が空です。" - -#: ../../include/lib/Module.php:1043 -msgid "Invalid characters in module name" -msgstr "モジュール名に不正な文字が含まれています" - -#: ../../include/lib/Module.php:1049 -msgid "Module already exists please select another name or agent." -msgstr "モジュールが既に存在します。他の名前またはエージェントを選択してください。" - -#: ../../include/lib/Module.php:1055 -msgid "Insufficent permissions to perform this action" -msgstr "このアクションを実行するには権限が不十分です" - -#: ../../include/lib/Module.php:1062 -#, php-format -msgid "Error while processing: %s" -msgstr "処理中にエラー: %s" - -#: ../../include/lib/Dashboard/Manager.php:599 -#, php-format -msgid "Copy of %s" -msgstr "%s のコピー" - -#: ../../include/lib/Dashboard/Manager.php:988 -msgid "Error create or update dashboard" -msgstr "ダッシュボードの作成または更新エラー" - -#: ../../include/lib/Dashboard/Manager.php:1461 -msgid "Icon image dashboard" -msgstr "ダッシュボードアイコン画像" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482 -msgid "SLA percentage" -msgstr "SLA パーセンテージ" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344 -#: ../../include/lib/Dashboard/Widgets/module_value.php:325 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:411 -msgid "Text size of value in px" -msgstr "pxでの値のテキストサイズ" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356 -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 -#: ../../include/lib/Dashboard/Widgets/module_value.php:337 -#: ../../include/lib/Dashboard/Widgets/module_status.php:401 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:423 -msgid "Text size of label in px" -msgstr "pxでのラベルのテキストサイズ" - -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:665 -#: ../../include/lib/Dashboard/Widgets/events_list.php:518 -msgid "You don't have access" -msgstr "アクセスできません。" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 -msgid "Show module value in a table" -msgstr "表にモジュールの値を表示" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 -msgid "Carriage Return" -msgstr "キャリッジリターン" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 -msgid "Vertical Bar" -msgstr "縦棒" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 -msgid "Semicolon" -msgstr "セミコロン" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 -msgid "Colon" -msgstr "コロン" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316 -msgid "Commas" -msgstr "カンマ" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317 -msgid "Blank" -msgstr "空白" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321 -msgid "Data separator" -msgstr "データセパレータ" - -#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397 -msgid "Module in a table" -msgstr "表内モジュール" - -#: ../../include/lib/Dashboard/Widgets/module_value.php:173 -#: ../../include/lib/Dashboard/Widgets/module_value.php:433 -msgid "Module value" -msgstr "モジュールの値" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506 -msgid "Top N events by agent" -msgstr "エージェントごとのトップ N イベント" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 -msgid "Amount to show" -msgstr "表示数" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 -#: ../../include/rest-api/models/VisualConsole/Item.php:1957 -#: ../../godmode/setup/gis_step_2.php:350 -msgid "Bottom" -msgstr "下" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 -msgid "No legend" -msgstr "凡例なし" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 -msgid "Legend Position" -msgstr "凡例の位置" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373 -msgid "Please select one or more groups." -msgstr "一つ以上のグループを選択してください。" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427 -msgid "There is not data to show." -msgstr "表示するデータがありません。" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518 -#: ../../include/functions_graph.php:2649 ../../include/functions_graph.php:2785 -#: ../../include/functions_graph.php:2883 ../../include/functions_graph.php:3344 -#: ../../include/functions_graph.php:3918 ../../include/functions_reporting.php:1802 -#: ../../include/functions_reporting.php:2049 ../../include/functions_reporting.php:2075 -#: ../../include/functions_reporting.php:2102 ../../include/functions_reporting.php:2130 -#: ../../include/functions_reporting.php:3482 ../../include/functions_reporting.php:3853 -#: ../../include/functions_reporting.php:3881 ../../include/functions_reporting.php:3909 -#: ../../include/functions_reporting.php:4882 -#: ../../include/functions_reporting.php:10488 -#: ../../include/functions_reporting.php:10516 -#: ../../include/functions_reporting.php:10544 -msgid "other" -msgstr "その他" - -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541 -msgid "Top N events by module" -msgstr "モジュールごとのトップ N イベント" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 -#: ../../include/lib/Dashboard/Widgets/maps_status.php:388 -msgid "General visual maps report" -msgstr "一般的なビジュアルマップレポート" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 -msgid "Maps" -msgstr "マップ" - -#: ../../include/lib/Dashboard/Widgets/maps_status.php:360 -#: ../../godmode/massive/massive_edit_agents.php:981 -msgid "Bad" -msgstr "障害" - -#: ../../include/lib/Dashboard/Widgets/url.php:158 -#: ../../include/lib/Dashboard/Widgets/url.php:286 -msgid "URL content" -msgstr "URL コンテンツ" - -#: ../../include/lib/Dashboard/Widgets/url.php:216 -#: ../../include/functions_reporting.php:6785 -#: ../../enterprise/meta/include/functions_wizard_meta.php:645 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:151 -#: ../../godmode/tag/edit_tag.php:227 -msgid "Url" -msgstr "URL" - -#: ../../include/lib/Dashboard/Widgets/url.php:263 -msgid "Please, configure this widget before use" -msgstr "利用前にウィジェットを設定してください" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 -msgid "Agent WUX transaction" -msgstr "エージェント WUX トランザクション" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 -msgid "Wux transaction" -msgstr "Wux トランザクション" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 -#: ../../enterprise/operation/agentes/wux_console_view.php:75 -msgid "No wux transaction selected." -msgstr "WUX トランザクションが選択されていません。" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 -msgid "Global status" -msgstr "全体の状態" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 -#: ../../enterprise/operation/agentes/wux_console_view.php:149 -msgid "Phase modules not found" -msgstr "フェーズモジュールがありません" - -#: ../../include/lib/Dashboard/Widgets/reports.php:164 -#: ../../include/lib/Dashboard/Widgets/reports.php:441 -msgid "Custom report" -msgstr "カスタムレポート" - -#: ../../include/lib/Dashboard/Widgets/reports.php:274 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311 -#: ../../include/lib/Dashboard/Widget.php:450 -#, php-format -msgid "Failed to connect to node %d" -msgstr "ノード %d への接続に失敗しました" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521 -msgid "Defined custom graph" -msgstr "定義済カスタムグラフ" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 -msgid "This graph has been deleted." -msgstr "このグラフは削除されました。" - -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 -msgid "Show legend" -msgstr "凡例を表示" - -#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 -#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 -msgid "Global health info" -msgstr "全体の稼働状況" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 -msgid "Groups status" -msgstr "グループ状態" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 -msgid "Alert Fired" -msgstr "発報アラート" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 -msgid "Modules in normal status" -msgstr "正常状態のモジュール" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 -msgid "Modules in warning status" -msgstr "警告状態のモジュール" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 -msgid "Modules in critical status" -msgstr "障害状態のモジュール" - -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 -msgid "No modules in selected groups" -msgstr "選択したグループにモジュールがありません" - -#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 -#: ../../include/lib/Dashboard/Widgets/single_graph.php:394 -msgid "Agent module graph" -msgstr "エージェントモジュールグラフ" - -#: ../../include/lib/Dashboard/Widgets/tactical.php:262 -msgid "Status and Monitor checks" -msgstr "状態と監視チェック" - -#: ../../include/lib/Dashboard/Widgets/tactical.php:274 -#: ../../include/functions_reporting.php:13939 -msgid "Server performance" -msgstr "サーバパフォーマンス" - -#: ../../include/lib/Dashboard/Widgets/tactical.php:286 -#: ../../include/functions_netflow.php:1183 -#: ../../include/functions_reporting_html.php:4530 -#: ../../include/functions_reporting_html.php:4800 -#: ../../include/functions_reporting_html.php:4937 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:453 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3083 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3130 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417 -msgid "Summary" -msgstr "サマリ" - -#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:481 -msgid "General group status" -msgstr "一般的なグループ状態" - -#: ../../include/lib/Dashboard/Widgets/groups_status.php:435 -msgid "Not agents in this group" -msgstr "このグループにエージェントがありません" - -#: ../../include/lib/Dashboard/Widgets/example.php:158 -#: ../../include/lib/Dashboard/Widgets/example.php:277 -#, php-format -msgid "Welcome message to %s" -msgstr "%s へのようこそメッセージ" - -#: ../../include/lib/Dashboard/Widgets/example.php:249 -msgid "This is an example of a dashboard widget. A widget may contain elements" -msgstr "ダッシュボードウィジェットの例です。ウィジェットに要素を入れることができます。" - -#: ../../include/lib/Dashboard/Widgets/example.php:250 -msgid "To add more elements, click on \"Add widgets\" on the top of this page." -msgstr "" -"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリックしま" -"す。" - -#: ../../include/lib/Dashboard/Widgets/example.php:251 -#: ../../include/lib/Dashboard/Widgets/example.php:253 -msgid "" -"To delete this message, click on the delete button on top right corner of this " -"element." -msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" - -#: ../../include/lib/Dashboard/Widgets/example.php:252 -msgid "To do so, just click on the title and drag and drop it to the desired place." -msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" - -#: ../../include/lib/Dashboard/Widgets/example.php:254 -#, php-format -msgid "Thanks for using %s." -msgstr "%s をご利用いただきありがとうございます。" - -#: ../../include/lib/Dashboard/Widgets/post.php:158 -#: ../../include/lib/Dashboard/Widgets/post.php:276 -msgid "Panel with a message" -msgstr "メッセージつきパネル" - -#: ../../include/lib/Dashboard/Widgets/clock.php:216 -msgid "Analogic" -msgstr "アナログ" - -#: ../../include/lib/Dashboard/Widgets/clock.php:217 -msgid "Digital" -msgstr "デジタル" - -#: ../../include/lib/Dashboard/Widgets/module_status.php:413 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:435 -msgid "Size of icon" -msgstr "アイコンのサイズ" - -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 -#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431 -msgid "Module histogram" -msgstr "モジュールヒストグラム" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 -msgid "Triggered alerts report" -msgstr "発報したアラートのレポート" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 -msgid "Not alert fired" -msgstr "アラート未発報" - -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 -#: ../../include/lib/Dashboard/Widgets/events_list.php:511 -msgid "You must select some group" -msgstr "いくつかのグループを選択する必要があります" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 -msgid "Agent/Module View" -msgstr "エージェント/モジュール表示" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 -msgid "Filter modules" -msgstr "モジュールをフィルタ" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:255 -#: ../../extensions/agents_modules.php:396 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1854 -msgid "Show module status" -msgstr "モジュールの状態表示" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:256 -#: ../../extensions/agents_modules.php:397 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1855 -msgid "Show module data" -msgstr "モジュールの値表示" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:265 -#: ../../extensions/agents_modules.php:400 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1850 -msgid "Information to be shown" -msgstr "表示情報" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 -#: ../../include/functions_reporting_html.php:1978 -#: ../../enterprise/include/functions_reporting_pdf.php:946 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "%s (%s): 正常" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 -#: ../../include/functions_reporting_html.php:1890 -#: ../../enterprise/include/functions_reporting_pdf.php:963 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s (%s): 障害" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 -#: ../../include/functions_reporting_html.php:1907 -#: ../../enterprise/include/functions_reporting_pdf.php:980 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s (%s): 警告" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 -#: ../../include/functions_reporting_html.php:1924 -#: ../../enterprise/include/functions_reporting_pdf.php:997 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s (%s): 不明" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 -#: ../../include/functions_reporting_html.php:1960 -#: ../../enterprise/include/functions_reporting_pdf.php:1014 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s (%s): 未初期化" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 -#: ../../include/functions_reporting_html.php:1943 -#: ../../enterprise/include/functions_reporting_pdf.php:1031 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s (%s): アラート発生" - -#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 -#: ../../include/lib/Dashboard/Widget.php:465 -msgid "Please configure this widget before usage" -msgstr "使用前にこのウィジェットを設定してください" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 -msgid "WUX transaction stats" -msgstr "WUX トランザクション統計" - -#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 -msgid "View all statistics" -msgstr "全ての統計を表示" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:190 -msgid "Service View" -msgstr "サービス表示" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:246 -msgid "Tree" -msgstr "ツリー" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:247 -#: ../../enterprise/include/class/CommandCenter.class.php:453 -msgid "Table" -msgstr "表" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:298 -#: ../../include/lib/Dashboard/Widgets/service_map.php:347 -msgid "The user doesn't have permission to read agents" -msgstr "エージェントを参照する権限がありません" - -#: ../../include/lib/Dashboard/Widgets/service_view.php:456 -msgid "Services view" -msgstr "サービス表示" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:258 -msgid "It is recommended to have only one such widget in the control panel." -msgstr "" -"コントロールパネルには、このようなウィジェットを 1つだけ含めることをお勧めします。" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:335 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "X軸データを入力します。右がプラス、左がマイナスです。" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:339 -msgid "X offset" -msgstr "X オフセット" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:350 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "Y軸データを入力します。上がプラス、下がマイナスです。" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:354 -msgid "Y offset" -msgstr "Y オフセット" - -#: ../../include/lib/Dashboard/Widgets/network_map.php:378 -msgid "Zoom level" -msgstr "拡大率" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:192 -#: ../../enterprise/operation/services/services.service.php:63 -#: ../../enterprise/operation/services/services.service_map.php:71 -msgid "Service Map" -msgstr "サービスマップ" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:280 -msgid "" -"ZOOM functionality is only available when there is only one such widget in the " -"dashboard" -msgstr "" -"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使用できま" -"す。" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:287 -#: ../../enterprise/include/functions_visual_map_editor.php:30 -#: ../../enterprise/include/functions_visual_map_editor.php:41 -#: ../../enterprise/include/functions_visual_map_editor.php:54 -#: ../../enterprise/include/functions_visual_map_editor.php:85 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/include/functions_reporting.php:6136 -#: ../../enterprise/include/functions_visual_map.php:539 -#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 -#: ../../enterprise/godmode/services/services.elements.php:95 -#: ../../enterprise/godmode/services/services.elements.php:181 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -msgid "Service" -msgstr "サービス" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:358 -msgid "Missing Service id" -msgstr "サービス ID がありません" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:449 -#: ../../enterprise/operation/services/services.php:164 -#: ../../enterprise/godmode/services/services.elements.php:766 -#: ../../enterprise/godmode/services/services.service.php:457 -msgid "Service map" -msgstr "サービスマップ" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:175 -#: ../../include/lib/Dashboard/Widgets/events_list.php:810 -msgid "List of latest events" -msgstr "最新イベント一覧" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:294 -msgid "Custom filters" -msgstr "カスタムフィルタ" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:359 -msgid "Limit" -msgstr "制限" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:372 -#: ../../include/functions_events.php:3378 ../../include/functions_events.php:3384 -#: ../../include/functions_events.php:3406 -msgid "All event" -msgstr "全イベント" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:373 -#: ../../include/functions_events.php:3380 ../../include/functions_events.php:3414 -msgid "Only validated" -msgstr "承諾済み" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:374 -msgid "Only pending" -msgstr "未承諾" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:436 -#: ../../include/functions_html.php:1248 ../../include/functions_html.php:1400 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 -#: ../../enterprise/godmode/policies/policy_agents.php:454 -#: ../../enterprise/godmode/policies/policy_agents.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:549 -#: ../../enterprise/godmode/policies/policy_agents.php:814 -#: ../../godmode/massive/massive_add_alerts.php:228 -#: ../../godmode/massive/massive_delete_modules.php:386 -#: ../../godmode/massive/massive_copy_modules.php:112 -#: ../../godmode/massive/massive_copy_modules.php:265 -#: ../../godmode/massive/massive_standby_alerts.php:200 -#: ../../godmode/massive/massive_add_action_alerts.php:209 -#: ../../godmode/massive/massive_edit_agents.php:520 -#: ../../godmode/massive/massive_delete_action_alerts.php:221 -#: ../../godmode/massive/massive_delete_alerts.php:305 -#: ../../godmode/massive/massive_delete_agents.php:199 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_edit_modules.php:370 -msgid "Group recursion" -msgstr "子グループを含める" - -#: ../../include/lib/Dashboard/Widgets/events_list.php:792 -msgid "There are no events matching selected search filters" -msgstr "選択した検索フィルタにマッチするイベントがありません" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 -msgid "Type tree" -msgstr "ツリータイプ" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 -msgid "Open all groups" -msgstr "全グループを開く" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:393 -msgid "Agents status" -msgstr "エージェントの状態" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:405 -#: ../../godmode/massive/massive_edit_modules.php:506 -msgid "Filter agents" -msgstr "エージェントフィルタ" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:427 -msgid "Modules status" -msgstr "モジュールの状態" - -#: ../../include/lib/Dashboard/Widgets/tree_view.php:493 -#, php-format -msgid "" -"The user doesn't have permission to read agents. Please contact with your %s " -"administrator." -msgstr "ユーザにエージェントを参照する権限がありません。%s 管理者へ連絡してください。" - -#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:540 -msgid "Icon and module value" -msgstr "アイコンとモジュールの値" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n.php:528 -msgid "Top N of agent modules" -msgstr "エージェントモジュールのトップ N" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032 -msgid "" -"Case insensitive regular expression for agent name. For example: Network.* will match " -"with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、" -"network_agent1, NetworKCHECKS というエージェント名にマッチします。" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:222 -msgid "" -"Case insensitive regular expression or string for module name. For example: .*usage.* " -"will match: cpu_usage, vram usage." -msgstr "" -"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage.* は " -"cpu_usage、vram usage にマッチします。" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2424 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2371 -msgid "Quantity (n)" -msgstr "数量(n)" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:261 -#: ../../enterprise/operation/log/log_viewer.php:496 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:345 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:310 -#: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2352 -msgid "Descending" -msgstr "降順" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:262 -#: ../../enterprise/operation/log/log_viewer.php:497 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:343 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:303 -#: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2345 -msgid "Ascending" -msgstr "昇順" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2412 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:347 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2359 -msgid "By agent name" -msgstr "エージェント名で" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:267 -#: ../../enterprise/operation/log/log_viewer.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2964 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2342 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3021 -#: ../../godmode/netflow/nf_item_list.php:173 -msgid "Order" -msgstr "順番" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:280 -msgid "Avg." -msgstr "平均" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:281 -#: ../../include/functions_alerts.php:672 ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:5193 -#: ../../enterprise/godmode/modules/configure_local_component.php:320 -#: ../../enterprise/godmode/modules/configure_local_component.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 -#: ../../godmode/modules/manage_network_components_form_wizard.php:388 -#: ../../godmode/modules/manage_network_components_form_wizard.php:423 -#: ../../godmode/modules/manage_network_components_form_common.php:174 -#: ../../godmode/modules/manage_network_components_form_common.php:215 -#: ../../godmode/massive/massive_edit_modules.php:580 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/agentes/module_manager_editor_common.php:428 -#: ../../godmode/agentes/module_manager_editor_common.php:489 -#: ../../godmode/alerts/configure_alert_template.php:862 -msgid "Max." -msgstr "最大" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:282 -#: ../../include/functions_alerts.php:673 ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 -#: ../../include/functions_reporting_html.php:5192 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/modules/configure_local_component.php:354 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 -#: ../../godmode/modules/manage_network_components_form_wizard.php:386 -#: ../../godmode/modules/manage_network_components_form_wizard.php:414 -#: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../godmode/modules/manage_network_components_form_common.php:206 -#: ../../godmode/massive/massive_edit_modules.php:565 -#: ../../godmode/massive/massive_edit_modules.php:656 -#: ../../godmode/massive/massive_edit_modules.php:885 -#: ../../godmode/alerts/configure_alert_template.php:850 -msgid "Min." -msgstr "最小" - -#: ../../include/lib/Dashboard/Widgets/top_n.php:448 -msgid "There are no agents/modules found matching filter set" -msgstr "フィルタセットにマッチするエージェント/モジュールが見つかりません" - -#: ../../include/lib/Dashboard/Widget.php:473 -msgid "Widget cannot be loaded" -msgstr "ウィジェットをロードできません" - -#: ../../include/lib/Dashboard/Widget.php:477 -msgid "Please, configure the widget again to recover it" -msgstr "復旧するためにウィジェットを設定しなおしてください" - -#: ../../include/lib/Dashboard/Widget.php:584 ../../include/functions_events.php:4991 -#: ../../enterprise/godmode/policies/policy_queue.php:670 -#: ../../enterprise/godmode/policies/policy_linking.php:153 -#: ../../godmode/massive/massive_delete_agents.php:252 -msgid "Node" -msgstr "ノード" - -#: ../../include/lib/Dashboard/Widget.php:591 -#: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:204 -msgid "This metaconsole" -msgstr "このメタコンソール" - -#: ../../include/functions_tags.php:712 -msgid "Click here to open a popup window with URL tag" -msgstr "URLタグのポップアップウインドウを開くにはここをクリックしてください" - -#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347 -msgid "Problems with configuration permissions. Please contact with Administrator" -msgstr "パーミッション設定に問題があります。管理者に連絡してください。" - -#: ../../include/auth/mysql.php:334 ../../include/auth/mysql.php:397 -#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443 -msgid "User not found in database or incorrect password" -msgstr "データベース上にユーザが存在しないかパスワードが不正です" - -#: ../../include/auth/mysql.php:360 -msgid "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" -msgstr "" -"データベースにユーザがいないか\n" -"\t\t\t\tパスワードが不正です。" - -#: ../../include/auth/mysql.php:372 ../../include/auth/mysql.php:402 -#: ../../include/auth/mysql.php:437 ../../enterprise/include/auth/saml.php:241 -msgid "Please, login into metaconsole first" -msgstr "先にメタコンソールへログインしてください" - -#: ../../include/auth/mysql.php:718 -msgid "Could not changes password on remote pandora" -msgstr "リモートの pandora のパスワードを変更できません" - -#: ../../include/auth/mysql.php:766 -msgid "Your installation of PHP does not support LDAP" -msgstr "インストールされている PHP が LDAP に対応していません" - -#: ../../include/functions_events.php:134 -msgid "NEW" -msgstr "新規" - -#: ../../include/functions_events.php:137 -msgid "IN PROCESS" -msgstr "処理中" - -#: ../../include/functions_events.php:140 -msgid "VALIDATED" -msgstr "承諾済" - -#: ../../include/functions_events.php:191 -#: ../../enterprise/meta/include/functions_events_meta.php:58 -msgid "Event id" -msgstr "イベント ID" - -#: ../../include/functions_events.php:192 ../../include/functions_events.php:2610 -#: ../../include/functions_events.php:4984 -#: ../../include/functions_reporting_html.php:1267 -#: ../../include/functions_reporting_html.php:1275 -#: ../../include/functions_reporting_html.php:4968 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:439 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:499 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:551 -#: ../../enterprise/meta/include/functions_events_meta.php:62 -msgid "Event name" -msgstr "イベント名" - -#: ../../include/functions_events.php:199 -msgid "Agent module" -msgstr "エージェントモジュール" - -#: ../../include/functions_events.php:205 ../../include/functions_events.php:4703 -#: ../../enterprise/meta/include/functions_events_meta.php:114 -msgid "Extra id" -msgstr "拡張 ID" - -#: ../../include/functions_events.php:209 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 -#: ../../enterprise/meta/include/functions_events_meta.php:130 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:198 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:591 -msgid "Server name" -msgstr "サーバ名" - -#: ../../include/functions_events.php:212 -msgid "Module custom id" -msgstr "モジュールカスタム ID" - -#: ../../include/functions_events.php:230 ../../godmode/events/custom_events.php:94 -msgid "Event Id" -msgstr "イベント ID" - -#: ../../include/functions_events.php:242 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:112 -#: ../../enterprise/include/functions_inventory.php:146 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 -msgid "Agent alias" -msgstr "エージェントの別名" - -#: ../../include/functions_events.php:278 ../../godmode/events/custom_events.php:110 -msgid "Extra Id" -msgstr "追加 ID" - -#: ../../include/functions_events.php:290 ../../godmode/events/custom_events.php:114 -msgid "Server Name" -msgstr "サーバ名" - -#: ../../include/functions_events.php:299 ../../include/functions_events.php:5160 -#: ../../godmode/events/custom_events.php:118 -msgid "Module custom ID" -msgstr "モジュールカスタム ID" - -#: ../../include/functions_events.php:308 ../../godmode/events/custom_events.php:117 -msgid "Severity mini" -msgstr "重要度(縮小表示)" - -#: ../../include/functions_events.php:312 ../../godmode/events/custom_events.php:98 -msgid "Agent IP" -msgstr "エージェント IP" - -#: ../../include/functions_events.php:2628 -#: ../../enterprise/operation/agentes/policy_view.php:70 -msgid "V." -msgstr "V." - -#: ../../include/functions_events.php:2725 -msgid "Events -by module-" -msgstr "イベント -モジュールごと-" - -#: ../../include/functions_events.php:2872 -msgid "Going to unknown" -msgstr "不明状態になりました。" - -#: ../../include/functions_events.php:2876 ../../include/functions_events.php:3263 -#: ../../include/functions.php:1229 -msgid "Alert recovered" -msgstr "復旧したアラート" - -#: ../../include/functions_events.php:2880 -msgid "Alert manually validated" -msgstr "アラートは承諾されました。" - -#: ../../include/functions_events.php:2884 -msgid "Going from critical to warning" -msgstr "障害が警告状態になりました。" - -#: ../../include/functions_events.php:2890 -msgid "Going up to critical state" -msgstr "障害状態に変わりました" - -#: ../../include/functions_events.php:2896 -msgid "Going up to normal state" -msgstr "正常になりました。" - -#: ../../include/functions_events.php:2900 -msgid "Going down from normal to warning" -msgstr "警告状態になりました。" - -#: ../../include/functions_events.php:2912 -msgid "Discovery server detected a new host" -msgstr "自動検出サーバが新たなホストを検出しました" - -#: ../../include/functions_events.php:2916 -msgid "New agent created" -msgstr "新しいエージェントが作成されました。" - -#: ../../include/functions_events.php:2920 ../../include/functions_events.php:3287 -#: ../../include/functions.php:1237 -msgid "Configuration change" -msgstr "設定変更" - -#: ../../include/functions_events.php:2924 ../../include/functions_events.php:3267 -#: ../../include/functions.php:1230 -msgid "Alert ceased" -msgstr "停止されたアラート" - -#: ../../include/functions_events.php:2933 -msgid "Unknown type:" -msgstr "不明なタイプ" - -#: ../../include/functions_events.php:3247 ../../include/functions.php:1222 -msgid "Monitor Critical" -msgstr "障害" - -#: ../../include/functions_events.php:3251 ../../include/functions.php:1223 -msgid "Monitor Warning" -msgstr "警告" - -#: ../../include/functions_events.php:3255 ../../include/functions.php:1224 -msgid "Monitor Normal" -msgstr "正常" - -#: ../../include/functions_events.php:3271 ../../include/functions.php:1231 -msgid "Alert manual validation" -msgstr "承諾されたアラート" - -#: ../../include/functions_events.php:3275 ../../include/functions.php:1234 -msgid "Recon host detected" -msgstr "自動検出" - -#: ../../include/functions_events.php:3295 ../../include/functions.php:1238 -#: ../../enterprise/views/ncm/snippets/edit.php:42 -#: ../../enterprise/views/ncm/snippets/list.php:32 -#: ../../enterprise/views/ncm/firmwares/edit.php:41 -#: ../../enterprise/views/ncm/firmwares/list.php:32 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/devices/list.php:32 -#: ../../enterprise/views/ncm/devices/list.php:67 -#: ../../enterprise/views/ncm/templates/edit.php:42 -#: ../../enterprise/views/ncm/templates/list.php:32 -#: ../../enterprise/views/ncm/models/edit.php:37 -#: ../../enterprise/views/ncm/models/list.php:32 -msgid "Network configuration manager" -msgstr "ネットワーク設定管理" - -#: ../../include/functions_events.php:3331 ../../include/functions_graph.php:3538 -#: ../../include/functions_graph.php:3539 ../../include/functions_graph.php:5119 -#: ../../include/functions.php:1027 ../../include/functions.php:1270 -#: ../../include/functions.php:1307 -msgid "Informational" -msgstr "情報" - -#: ../../include/functions_events.php:3379 ../../include/functions_events.php:3410 -msgid "Only new" -msgstr "新規のみ" - -#: ../../include/functions_events.php:3381 ../../include/functions_events.php:3418 -msgid "Only in process" -msgstr "処理中のみ" - -#: ../../include/functions_events.php:3382 ../../include/functions_events.php:3422 -msgid "Only not validated" -msgstr "未承諾のみ" - -#: ../../include/functions_events.php:3385 ../../include/functions_events.php:3673 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -msgid "New" -msgstr "新規" - -#: ../../include/functions_events.php:3387 ../../include/functions_events.php:3674 -#: ../../include/functions_events.php:3683 -msgid "In process" -msgstr "処理中" - -#: ../../include/functions_events.php:3388 -msgid "Not Validated" -msgstr "未承諾" - -#: ../../include/functions_events.php:3577 -msgid "Change owner" -msgstr "所有者変更" - -#: ../../include/functions_events.php:3658 -msgid "Change status" -msgstr "ステータス変更" - -#: ../../include/functions_events.php:3800 -msgid "Custom responses" -msgstr "カスタム応答" - -#: ../../include/functions_events.php:4378 -msgid "Extended information" -msgstr "拡張情報" - -#: ../../include/functions_events.php:4406 -msgid "There was an error connecting to the node" -msgstr "ノードへの接続エラーが発生しました" - -#: ../../include/functions_events.php:4445 -msgid "Agent details" -msgstr "エージェント詳細" - -#: ../../include/functions_events.php:4459 -msgid "This agent belongs to metaconsole, is not possible display it" -msgstr "このエージェントはメタコンソールに属しており、表示できません" - -#: ../../include/functions_events.php:4510 -msgid "View custom fields" -msgstr "カスタムフィールド表示" - -#: ../../include/functions_events.php:4533 -msgid "Module details" -msgstr "モジュール詳細" - -#: ../../include/functions_events.php:4549 -msgid "No assigned" -msgstr "未割当" - -#: ../../include/functions_events.php:4626 ../../godmode/alerts/alert_view.php:65 -#: ../../godmode/alerts/alert_view.php:280 -msgid "Alert details" -msgstr "アラート詳細" - -#: ../../include/functions_events.php:4640 ../../include/functions_events.php:4649 -msgid "Go to data overview" -msgstr "データ概要表示" - -#: ../../include/functions_events.php:4765 -#, php-format -msgid "Invalid custom data: %s" -msgstr "不正なカスタムデータ: %s" - -#: ../../include/functions_events.php:5000 -msgid "First event" -msgstr "最初のイベント" - -#: ../../include/functions_events.php:5000 -msgid "Last event" -msgstr "最後のイベント" - -#: ../../include/functions_events.php:5080 ../../mobile/operation/events.php:540 -msgid "Acknowledged by" -msgstr "承諾者" - -#: ../../include/functions_events.php:5084 -msgid "Autovalidated" -msgstr "自動承諾済" - -#: ../../include/functions_events.php:5125 ../../godmode/groups/configure_group.php:246 -msgid "Contact" -msgstr "連絡先" - -#: ../../include/functions_events.php:5150 -msgid "ID extra" -msgstr "拡張 ID" - -#: ../../include/functions_events.php:5215 -msgid "There are no comments" -msgstr "コメントがありません" - -#: ../../include/functions_events.php:5370 -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:5574 -msgid "Pandora System" -msgstr "Pandora System" - -#: ../../include/functions_events.php:5773 -msgid "Validated but not assigned" -msgstr "承諾済ですが未割当" - -#: ../../include/functions_events.php:6720 -msgid "Agent Module" -msgstr "エージェントモジュール" - -#: ../../include/functions_db.php:147 -#, php-format -msgid "Error connecting to database %s at %s." -msgstr "データベース %s@%s への接続エラー。" - -#: ../../include/functions_db.php:1900 -msgid "Database debug" -msgstr "DBのデバッグ" - -#: ../../include/functions_db.php:1917 -msgid "SQL sentence" -msgstr "SQL 構文" - -#: ../../include/functions_db.php:1918 ../../include/functions_reporting_html.php:3997 -#: ../../include/functions_reporting_html.php:4144 -#: ../../include/functions_reporting_html.php:4485 -#: ../../include/functions_reporting_html.php:4496 -#: ../../enterprise/views/ncm/agent/details.php:90 -#: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 -msgid "Result" -msgstr "結果" - -#: ../../include/functions_db.php:1919 -msgid "Rows" -msgstr "行" - -#: ../../include/functions_db.php:1920 -msgid "Saved" -msgstr "保存" - -#: ../../include/functions_db.php:1921 -msgid "Time (ms)" -msgstr "時間 (ミリ秒)" - -#: ../../include/functions_groups.php:75 -msgid "Alert Actions" -msgstr "アラートアクション" - -#: ../../include/functions_groups.php:91 -msgid "Alert Templates" -msgstr "アラートテンプレート" - -#: ../../include/functions_groups.php:155 -msgid "Layout visual console" -msgstr "ビジュアルコンソールレイアウト" - -#: ../../include/functions_groups.php:171 -msgid "Plannet down time" -msgstr "計画停止時間" - -#: ../../include/functions_groups.php:203 -msgid "GIS maps" -msgstr "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_config.php:144 -msgid "Failed updated: User did not login." -msgstr "更新失敗: ユーザがログインしていません。" - -#: ../../include/functions_config.php:152 -msgid "Failed updated: User is not admin." -msgstr "更新失敗: ユーザは管理者ではありません。" - -#: ../../include/functions_config.php:178 -#: ../../enterprise/meta/include/functions_meta.php:77 -#: ../../enterprise/meta/advanced/metasetup.setup.php:113 -msgid "Language settings" -msgstr "言語設定" - -#: ../../include/functions_config.php:182 -#: ../../enterprise/meta/include/functions_meta.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -#: ../../godmode/setup/setup_general.php:88 -msgid "Remote config directory" -msgstr "リモート設定ディレクトリ" - -#: ../../include/functions_config.php:186 -msgid "phantomjs config directory" -msgstr "phantomjs 設定ディレクトリ" - -#: ../../include/functions_config.php:190 -#: ../../enterprise/meta/include/functions_meta.php:82 -#: ../../enterprise/meta/advanced/metasetup.setup.php:126 -#: ../../godmode/setup/setup_general.php:110 -msgid "Auto login (hash) password" -msgstr "自動ログインパスワード(ハッシュ)" - -#: ../../include/functions_config.php:194 -#: ../../enterprise/meta/include/functions_meta.php:92 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../godmode/setup/setup_general.php:124 -msgid "Time source" -msgstr "日時データソース" - -#: ../../include/functions_config.php:198 ../../godmode/setup/setup_general.php:137 -msgid "Automatic check for updates" -msgstr "更新の自動チェック" - -#: ../../include/functions_config.php:202 -msgid "SSL cert path" -msgstr "SSL証明書パス" - -#: ../../include/functions_config.php:206 -#: ../../enterprise/meta/include/functions_meta.php:102 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -#: ../../godmode/setup/setup_general.php:149 -msgid "Enforce https" -msgstr "httpsの利用" - -#: ../../include/functions_config.php:210 -msgid "Use cert." -msgstr "証明書利用" - -#: ../../include/functions_config.php:217 -#: ../../enterprise/meta/include/functions_meta.php:127 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -#: ../../godmode/setup/setup_general.php:183 -msgid "Attachment store" -msgstr "添付ファイル保存場所" - -#: ../../include/functions_config.php:219 -#: ../../enterprise/meta/include/functions_meta.php:122 -#: ../../enterprise/meta/advanced/cron_main.php:159 -#: ../../enterprise/meta/advanced/cron_main.php:203 -#: ../../enterprise/meta/advanced/cron_main.php:296 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 -msgid "Path doesn't exists or is not writable" -msgstr "パスが存在しないか書き込みできません" - -#: ../../include/functions_config.php:224 -#: ../../enterprise/meta/include/functions_meta.php:120 -msgid "Attachment store." -msgstr "添付ファイル保存場所。" - -#: ../../include/functions_config.php:230 -#: ../../enterprise/meta/include/functions_meta.php:238 -#: ../../enterprise/meta/advanced/metasetup.setup.php:272 -#: ../../godmode/setup/setup_general.php:193 -msgid "IP list with API access" -msgstr "APIアクセスを許可するIPアドレスリスト" - -#: ../../include/functions_config.php:234 -#: ../../enterprise/meta/include/functions_meta.php:218 -#: ../../enterprise/meta/include/functions_meta.php:228 -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:533 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:212 -msgid "API password" -msgstr "API パスワード" - -#: ../../include/functions_config.php:238 ../../godmode/setup/setup_general.php:223 -msgid "Enable GIS features" -msgstr "GIS 機能の有効化" - -#: ../../include/functions_config.php:242 -msgid "Integria inventory" -msgstr "Integria インベントリ" - -#: ../../include/functions_config.php:246 ../../include/functions_config.php:1732 -msgid "Integria API password" -msgstr "Integria API パスワード" - -#: ../../include/functions_config.php:250 -msgid "Integria URL" -msgstr "Integria URL" - -#: ../../include/functions_config.php:254 ../../godmode/setup/setup_general.php:231 -msgid "Enable Netflow" -msgstr "Netflow を利用する" - -#: ../../include/functions_config.php:259 ../../include/functions_register.php:164 -#: ../../enterprise/meta/include/functions_meta.php:158 -#: ../../enterprise/meta/advanced/metasetup.setup.php:191 -#: ../../godmode/setup/setup_general.php:279 -msgid "Timezone setup" -msgstr "タイムゾーン設定" - -#: ../../include/functions_config.php:284 -msgid "License information" -msgstr "ライセンス情報" - -#: ../../include/functions_config.php:290 -#: ../../enterprise/meta/include/functions_meta.php:168 -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 -#: ../../godmode/setup/setup_general.php:319 -msgid "Public URL" -msgstr "公開 URL" - -#: ../../include/functions_config.php:294 -#: ../../enterprise/meta/include/functions_meta.php:178 -#: ../../enterprise/meta/advanced/metasetup.setup.php:201 -#: ../../godmode/setup/setup_general.php:329 -msgid "Force use Public URL" -msgstr "公開 URL の利用" - -#: ../../include/functions_config.php:298 -#: ../../enterprise/meta/include/functions_meta.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:215 -#: ../../godmode/setup/setup_general.php:343 -msgid "Public URL host exclusions" -msgstr "公開 URL 除外ホスト" - -#: ../../include/functions_config.php:302 ../../godmode/setup/setup_general.php:353 -msgid "Referer security" -msgstr "リファラーセキュリティ" - -#: ../../include/functions_config.php:306 ../../godmode/setup/setup_general.php:361 -msgid "Event storm protection" -msgstr "イベントストーム保護" - -#: ../../include/functions_config.php:310 -#: ../../enterprise/meta/include/functions_meta.php:208 -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -#: ../../godmode/setup/setup_general.php:370 -msgid "Command Snapshot" -msgstr "コマンドスナップショット" - -#: ../../include/functions_config.php:314 -msgid "Use custom encoding" -msgstr "エンコードの自動判定の利用" - -#: ../../include/functions_config.php:318 ../../godmode/setup/setup_general.php:386 -msgid "Server logs directory" -msgstr "サーバログディレクトリ" - -#: ../../include/functions_config.php:322 ../../godmode/setup/setup_general.php:396 -msgid "Log size limit in system logs viewer extension" -msgstr "システムログビューワ拡張でのログサイズ制限" - -#: ../../include/functions_config.php:326 ../../godmode/setup/setup_general.php:411 -msgid "Tutorial mode" -msgstr "チュートリアルモード" - -#: ../../include/functions_config.php:330 ../../godmode/setup/setup_general.php:425 -msgid "Allow create scheduled downtimes in the past" -msgstr "過去の計画停止の作成を許可する" - -#: ../../include/functions_config.php:334 -msgid "Limit parameters bulk" -msgstr "一括処理制限" - -#: ../../include/functions_config.php:338 -msgid "Identification_reminder" -msgstr "識別リマインダ" - -#: ../../include/functions_config.php:342 -msgid "Include_agents" -msgstr "エージェントのインクルード" - -#: ../../include/functions_config.php:346 -msgid "alias_as_name" -msgstr "名前としてのエイリアス" - -#: ../../include/functions_config.php:350 -msgid "Console log enabled" -msgstr "コンソールログ有効化" - -#: ../../include/functions_config.php:354 -msgid "Audit log enabled" -msgstr "監査ログ有効化" - -#: ../../include/functions_config.php:358 -msgid "Module Custom ID read only" -msgstr "モジュールカスタム ID の読み出し専用" - -#: ../../include/functions_config.php:362 ../../godmode/setup/setup_general.php:459 -#: ../../godmode/agentes/agent_manager.php:301 -msgid "Unique IP" -msgstr "ユニーク IP" - -#: ../../include/functions_config.php:366 -#: ../../enterprise/meta/advanced/metasetup.mail.php:115 -msgid "Server SMTP" -msgstr "SMTP サーバ" - -#: ../../include/functions_config.php:370 -#: ../../enterprise/meta/advanced/metasetup.mail.php:109 -msgid "From dir" -msgstr "From アドレス" - -#: ../../include/functions_config.php:374 -#: ../../enterprise/meta/advanced/metasetup.mail.php:112 -#: ../../godmode/setup/setup_general.php:538 -msgid "From name" -msgstr "From 名" - -#: ../../include/functions_config.php:378 -#: ../../enterprise/meta/advanced/metasetup.mail.php:118 -msgid "Port SMTP" -msgstr "SMTP ポート" - -#: ../../include/functions_config.php:382 ../../godmode/setup/setup_general.php:568 -msgid "Encryption" -msgstr "暗号化" - -#: ../../include/functions_config.php:386 -#: ../../enterprise/meta/advanced/metasetup.mail.php:121 -#: ../../godmode/setup/setup_general.php:579 -msgid "Email user" -msgstr "メールユーザ" - -#: ../../include/functions_config.php:390 -#: ../../enterprise/meta/advanced/metasetup.mail.php:124 -#: ../../godmode/setup/setup_general.php:589 -msgid "Email password" -msgstr "メールユーザパスワード" - -#: ../../include/functions_config.php:397 ../../enterprise/godmode/setup/setup.php:47 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "SNMP トラップのエージェント(存在する場合)への転送" - -#: ../../include/functions_config.php:401 ../../enterprise/godmode/setup/setup.php:77 -msgid "Use Enterprise ACL System" -msgstr "エンタープライズ ACL システムを利用する" - -#: ../../include/functions_config.php:405 -#: ../../enterprise/meta/include/functions_meta.php:68 -msgid "Activate Metaconsole" -msgstr "メタコンソールの有効化" - -#: ../../include/functions_config.php:409 -#: ../../enterprise/meta/include/functions_meta.php:273 -#: ../../enterprise/meta/advanced/metasetup.setup.php:288 -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "Size of collection" -msgstr "コレクションのサイズ" - -#: ../../include/functions_config.php:413 ../../enterprise/godmode/setup/setup.php:104 -msgid "Events replication" -msgstr "イベント複製" - -#: ../../include/functions_config.php:418 ../../enterprise/godmode/setup/setup.php:116 -msgid "Replication interval" -msgstr "複製間隔" - -#: ../../include/functions_config.php:422 ../../enterprise/godmode/setup/setup.php:130 -msgid "Replication limit" -msgstr "複製制限" - -#: ../../include/functions_config.php:426 ../../enterprise/godmode/setup/setup.php:157 -msgid "Replication mode" -msgstr "複製モード" - -#: ../../include/functions_config.php:430 ../../enterprise/godmode/setup/setup.php:264 -msgid "Show events list in local console (read only)" -msgstr "ローカルコンソールでのイベント一覧表示 (参照のみ)" - -#: ../../include/functions_config.php:435 -msgid "Replication DB engine" -msgstr "複製 DB エンジン" - -#: ../../include/functions_config.php:439 -msgid "Replication DB host" -msgstr "複製 DB ホスト" - -#: ../../include/functions_config.php:443 -msgid "Replication DB database" -msgstr "複製データベース" - -#: ../../include/functions_config.php:447 -msgid "Replication DB user" -msgstr "複製 DB ユーザ" - -#: ../../include/functions_config.php:451 -msgid "Replication DB password" -msgstr "複製 DB パスワード" - -#: ../../include/functions_config.php:455 -msgid "Replication DB port" -msgstr "複製 DB ポート" - -#: ../../include/functions_config.php:459 -msgid "Metaconsole agent cache" -msgstr "メタコンソールエージェントキャッシュ" - -#: ../../include/functions_config.php:463 ../../enterprise/godmode/setup/setup.php:366 -msgid "Activate Log Collector" -msgstr "ログ収集の有効化" - -#: ../../include/functions_config.php:467 -msgid "Enable Update Manager" -msgstr "アップデートマネージャの有効化" - -#: ../../include/functions_config.php:471 -msgid "Ipam Ocuppied Manager Critical" -msgstr "IPAM 障害占有管理" - -#: ../../include/functions_config.php:475 -msgid "Ipam Ocuppied Manager Warning" -msgstr "IPAM 警告占有管理" - -#: ../../include/functions_config.php:479 ../../enterprise/godmode/setup/setup.php:413 -msgid "SAP/R3 Plugin Licence" -msgstr "SAP/R3 プラグインライセンス" - -#: ../../include/functions_config.php:484 ../../enterprise/godmode/setup/setup.php:282 -msgid "Inventory changes blacklist" -msgstr "インベントリブラックリスト変更" - -#: ../../include/functions_config.php:492 -#: ../../enterprise/meta/include/functions_meta.php:344 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/godmode/setup/setup.php:467 -msgid "Enable password policy" -msgstr "パスワードポリシーを利用する" - -#: ../../include/functions_config.php:496 -#: ../../enterprise/meta/include/functions_meta.php:354 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/godmode/setup/setup.php:476 -msgid "Min. size password" -msgstr "最小パスワードサイズ" - -#: ../../include/functions_config.php:500 -#: ../../enterprise/meta/include/functions_meta.php:384 -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -#: ../../enterprise/godmode/setup/setup.php:505 -msgid "Password expiration" -msgstr "パスワードの期限切れ" - -#: ../../include/functions_config.php:504 -#: ../../enterprise/meta/include/functions_meta.php:394 -#: ../../enterprise/meta/advanced/metasetup.password.php:132 -#: ../../enterprise/godmode/setup/setup.php:516 -msgid "Force change password on first login" -msgstr "初回ログイン時にパスワードを変更する" - -#: ../../include/functions_config.php:508 -#: ../../enterprise/meta/include/functions_meta.php:404 -#: ../../enterprise/meta/advanced/metasetup.password.php:109 -#: ../../enterprise/godmode/setup/setup.php:525 -msgid "User blocked if login fails" -msgstr "ログインに失敗するとユーザをブロックします" - -#: ../../include/functions_config.php:512 -#: ../../enterprise/meta/include/functions_meta.php:414 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -#: ../../enterprise/godmode/setup/setup.php:536 -msgid "Number of failed login attempts" -msgstr "ログイン失敗回数" - -#: ../../include/functions_config.php:516 -#: ../../enterprise/meta/include/functions_meta.php:364 -#: ../../enterprise/meta/advanced/metasetup.password.php:138 -#: ../../enterprise/godmode/setup/setup.php:487 -msgid "Password must have numbers" -msgstr "パスワードには数字を含む必要があります" - -#: ../../include/functions_config.php:520 -#: ../../enterprise/meta/include/functions_meta.php:374 -#: ../../enterprise/meta/advanced/metasetup.password.php:142 -#: ../../enterprise/godmode/setup/setup.php:496 -msgid "Password must have symbols" -msgstr "パスワードには記号を含む必要があります" - -#: ../../include/functions_config.php:524 -#: ../../enterprise/meta/include/functions_meta.php:447 -#: ../../enterprise/meta/advanced/metasetup.password.php:126 -#: ../../enterprise/godmode/setup/setup.php:547 -msgid "Apply password policy to admin users" -msgstr "管理者ユーザへパスワードポリシーを適用" - -#: ../../include/functions_config.php:528 -#: ../../enterprise/meta/include/functions_meta.php:424 -#: ../../enterprise/meta/advanced/metasetup.password.php:121 -#: ../../enterprise/godmode/setup/setup.php:556 -msgid "Enable password history" -msgstr "パスワード履歴の有効化" - -#: ../../include/functions_config.php:532 -#: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/godmode/setup/setup.php:565 -msgid "Compare previous password" -msgstr "以前のパスワードとの比較" - -#: ../../include/functions_config.php:536 -#: ../../enterprise/meta/include/functions_meta.php:458 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/godmode/setup/setup.php:577 -msgid "Activate reset password" -msgstr "パスワードリセットの有効化" - -#: ../../include/functions_config.php:548 -#: ../../enterprise/meta/include/functions_meta.php:522 -#: ../../enterprise/meta/include/functions_meta.php:741 -#: ../../godmode/setup/setup_auth.php:69 -msgid "Autocreate remote users" -msgstr "リモートユーザの自動作成" - -#: ../../include/functions_config.php:552 -#: ../../enterprise/meta/include/functions_meta.php:532 -#: ../../enterprise/godmode/setup/setup_auth.php:55 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:364 -#: ../../enterprise/godmode/setup/setup_auth.php:1159 -msgid "Autocreate profile" -msgstr "プロファイルの自動作成" - -#: ../../include/functions_config.php:556 -#: ../../enterprise/meta/include/functions_meta.php:542 -#: ../../enterprise/godmode/setup/setup_auth.php:61 -#: ../../enterprise/godmode/setup/setup_auth.php:309 -#: ../../enterprise/godmode/setup/setup_auth.php:370 -#: ../../enterprise/godmode/setup/setup_auth.php:1165 -msgid "Autocreate profile group" -msgstr "プロファイルグループの自動作成" - -#: ../../include/functions_config.php:560 -#: ../../enterprise/meta/include/functions_meta.php:552 -#: ../../enterprise/godmode/setup/setup_auth.php:68 -#: ../../enterprise/godmode/setup/setup_auth.php:318 -#: ../../enterprise/godmode/setup/setup_auth.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:1174 -msgid "Autocreate profile tags" -msgstr "自動作成プロファイルタグ" - -#: ../../include/functions_config.php:564 -#: ../../enterprise/meta/include/functions_meta.php:562 -#: ../../enterprise/godmode/setup/setup_auth.php:324 -msgid "Automatically assigned no hierarchy" -msgstr "自動的に割り当てられた階層なし" - -#: ../../include/functions_config.php:568 -#: ../../enterprise/meta/include/functions_meta.php:572 -#: ../../enterprise/godmode/setup/setup_auth.php:569 -#: ../../enterprise/godmode/setup/setup_auth.php:1371 -msgid "Autocreate blacklist" -msgstr "ブラックリストの自動作成" - -#: ../../include/functions_config.php:572 -#: ../../enterprise/meta/include/functions_meta.php:635 -#: ../../enterprise/godmode/setup/setup_auth.php:577 -#: ../../enterprise/godmode/setup/setup_auth.php:1379 -msgid "Active directory server" -msgstr "アクティブディレクトリサーバ" - -#: ../../include/functions_config.php:576 -#: ../../enterprise/meta/include/functions_meta.php:645 -#: ../../enterprise/godmode/setup/setup_auth.php:583 -#: ../../enterprise/godmode/setup/setup_auth.php:1385 -msgid "Active directory port" -msgstr "アクティブディレクトリポート" - -#: ../../include/functions_config.php:580 ../../include/functions_config.php:616 -#: ../../enterprise/meta/include/functions_meta.php:655 -#: ../../enterprise/meta/include/functions_meta.php:939 -#: ../../enterprise/godmode/setup/setup_auth.php:589 -#: ../../enterprise/godmode/setup/setup_auth.php:1391 -#: ../../godmode/setup/setup_auth.php:137 -msgid "Start TLS" -msgstr "TLS の開始" - -#: ../../include/functions_config.php:584 -#: ../../enterprise/meta/include/functions_meta.php:665 -#: ../../enterprise/godmode/setup/setup_auth.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:1148 -msgid "Advanced Config AD" -msgstr "拡張 AD 設定" - -#: ../../include/functions_config.php:588 -#: ../../enterprise/meta/include/functions_meta.php:705 -#: ../../enterprise/godmode/setup/setup_auth.php:106 -msgid "Advanced Config LDAP" -msgstr "LDAP 拡張設定" - -#: ../../include/functions_config.php:592 -#: ../../enterprise/meta/include/functions_meta.php:675 -#: ../../enterprise/godmode/setup/setup_auth.php:595 -#: ../../enterprise/godmode/setup/setup_auth.php:1397 -msgid "Domain" -msgstr "ドメイン" - -#: ../../include/functions_config.php:596 -#: ../../enterprise/meta/include/functions_meta.php:685 -#: ../../enterprise/godmode/setup/setup_auth.php:413 -#: ../../enterprise/godmode/setup/setup_auth.php:1208 -msgid "Advanced Permisions AD" -msgstr "AD 拡張パーミッション" - -#: ../../include/functions_config.php:600 -#: ../../enterprise/meta/include/functions_meta.php:695 -#: ../../enterprise/godmode/setup/setup_auth.php:129 -msgid "Advanced Permissions LDAP" -msgstr "LDAP 拡張パーミッション" - -#: ../../include/functions_config.php:604 -#: ../../enterprise/meta/include/functions_meta.php:909 -#: ../../godmode/setup/setup_auth.php:92 -msgid "LDAP server" -msgstr "LDAP サーバ" - -#: ../../include/functions_config.php:608 -#: ../../enterprise/meta/include/functions_meta.php:919 -#: ../../godmode/setup/setup_auth.php:105 -msgid "LDAP port" -msgstr "LDAP ポート" - -#: ../../include/functions_config.php:612 -#: ../../enterprise/meta/include/functions_meta.php:929 -#: ../../godmode/setup/setup_auth.php:123 -msgid "LDAP version" -msgstr "LDAP バージョン" - -#: ../../include/functions_config.php:620 -#: ../../enterprise/meta/include/functions_meta.php:949 -#: ../../godmode/setup/setup_auth.php:148 -msgid "Base DN" -msgstr "ベース DN" - -#: ../../include/functions_config.php:624 -#: ../../enterprise/meta/include/functions_meta.php:959 -#: ../../godmode/setup/setup_auth.php:161 -msgid "Login attribute" -msgstr "ログイン属性" - -#: ../../include/functions_config.php:628 -#: ../../enterprise/meta/include/functions_meta.php:969 -#: ../../godmode/setup/setup_auth.php:174 -msgid "Admin LDAP login" -msgstr "LDAP 管理者ログイン" - -#: ../../include/functions_config.php:632 -#: ../../enterprise/meta/include/functions_meta.php:979 -#: ../../godmode/setup/setup_auth.php:187 -msgid "Admin LDAP password" -msgstr "LDAP 管理者パスワード" - -#: ../../include/functions_config.php:636 -#: ../../enterprise/meta/include/functions_meta.php:999 -#: ../../godmode/setup/setup_auth.php:222 -msgid "Secondary LDAP server" -msgstr "セカンダリ LDAP サーバ" - -#: ../../include/functions_config.php:640 -#: ../../enterprise/meta/include/functions_meta.php:1009 -#: ../../godmode/setup/setup_auth.php:235 -msgid "Secondary LDAP port" -msgstr "セカンダリ LDAP ポート" - -#: ../../include/functions_config.php:644 -#: ../../enterprise/meta/include/functions_meta.php:1019 -#: ../../godmode/setup/setup_auth.php:253 -msgid "Secondary LDAP version" -msgstr "セカンダリ LDAP バージョン" - -#: ../../include/functions_config.php:648 -msgid "Secontary start TLS" -msgstr "セカンダリ TLS の開始" - -#: ../../include/functions_config.php:652 -#: ../../enterprise/meta/include/functions_meta.php:1039 -msgid "Secondary base DN" -msgstr "セカンダリ base DN" - -#: ../../include/functions_config.php:656 -#: ../../enterprise/meta/include/functions_meta.php:1049 -msgid "Secondary login attribute" -msgstr "セカンダリログイン属性" - -#: ../../include/functions_config.php:660 -#: ../../enterprise/meta/include/functions_meta.php:1059 -#: ../../godmode/setup/setup_auth.php:304 -msgid "Admin secondary LDAP login" -msgstr "セカンダリ LDAP 管理者ログイン" - -#: ../../include/functions_config.php:664 -#: ../../enterprise/meta/include/functions_meta.php:1069 -#: ../../godmode/setup/setup_auth.php:317 -msgid "Admin secondary LDAP password" -msgstr "セカンダリ LDAP 管理者パスワード" - -#: ../../include/functions_config.php:668 -#: ../../enterprise/meta/include/functions_meta.php:512 -#: ../../godmode/setup/setup_auth.php:56 -msgid "Fallback to local authentication" -msgstr "ローカル認証へのフォールバック" - -#: ../../include/functions_config.php:672 -#: ../../enterprise/meta/include/functions_meta.php:1102 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -msgid "Login user attribute" -msgstr "ログインユーザアトリビュート" - -#: ../../include/functions_config.php:676 -#: ../../enterprise/meta/include/functions_meta.php:1123 -#: ../../enterprise/godmode/setup/setup_auth.php:94 -msgid "LDAP function" -msgstr "LDAP 機能" - -#: ../../include/functions_config.php:681 ../../include/functions_config.php:797 -#: ../../enterprise/meta/include/functions_meta.php:618 -#: ../../enterprise/meta/include/functions_meta.php:1082 -#: ../../enterprise/godmode/setup/setup_auth.php:82 -#: ../../enterprise/godmode/setup/setup_auth.php:348 -msgid "Save Password" -msgstr "パスワードを保存" - -#: ../../include/functions_config.php:688 -#: ../../enterprise/meta/include/functions_meta.php:1112 -msgid "Save profile" -msgstr "プロファイルの保存" - -#: ../../include/functions_config.php:692 -#: ../../enterprise/meta/include/functions_meta.php:990 -msgid "LDAP secondary enabled" -msgstr "セカンダリ LDAP 有効" - -#: ../../include/functions_config.php:696 -#: ../../enterprise/godmode/setup/setup_auth.php:1021 -msgid "MySQL host" -msgstr "MySQL ホスト" - -#: ../../include/functions_config.php:700 ../../include/functions_config.php:720 -#: ../../enterprise/meta/include/functions_meta.php:1145 -#: ../../enterprise/meta/include/functions_meta.php:1199 -#: ../../enterprise/meta/include/functions_meta.php:1253 -#: ../../enterprise/godmode/setup/setup_auth.php:1027 -#: ../../enterprise/godmode/setup/setup_auth.php:1059 -msgid "MySQL port" -msgstr "MySQL ポート" - -#: ../../include/functions_config.php:704 ../../include/functions_config.php:724 -#: ../../include/functions_config.php:1551 -#: ../../enterprise/meta/include/functions_meta.php:1155 -#: ../../enterprise/meta/include/functions_meta.php:1209 -#: ../../enterprise/meta/include/functions_meta.php:1263 -#: ../../enterprise/godmode/setup/setup_history.php:189 -#: ../../enterprise/godmode/setup/setup_auth.php:1033 -#: ../../enterprise/godmode/setup/setup_auth.php:1065 -msgid "Database name" -msgstr "データベース名" - -#: ../../include/functions_config.php:716 -#: ../../enterprise/meta/include/functions_meta.php:1243 -#: ../../enterprise/godmode/setup/setup_auth.php:1053 -msgid "Integria host" -msgstr "Integria ホスト" - -#: ../../include/functions_config.php:736 -#: ../../enterprise/meta/include/functions_meta.php:754 -msgid "Saml path" -msgstr "SAML パス" - -#: ../../include/functions_config.php:740 -#: ../../enterprise/meta/include/functions_meta.php:767 -msgid "Saml source" -msgstr "SAML ソース" - -#: ../../include/functions_config.php:744 -#: ../../enterprise/meta/include/functions_meta.php:780 -msgid "Saml user id parameter" -msgstr "SAML ユーザ ID パラメータ" - -#: ../../include/functions_config.php:748 -#: ../../enterprise/meta/include/functions_meta.php:793 -msgid "Saml mail parameter" -msgstr "SAML メールパラメータ" - -#: ../../include/functions_config.php:752 -#: ../../enterprise/meta/include/functions_meta.php:806 -msgid "Saml group name parameter" -msgstr "SAML グループ名パラメータ" - -#: ../../include/functions_config.php:756 -#: ../../enterprise/meta/include/functions_meta.php:819 -msgid "Saml attr type parameter" -msgstr "SAML attr タイプパラメータ" - -#: ../../include/functions_config.php:760 -#: ../../enterprise/meta/include/functions_meta.php:832 -msgid "Saml profiles and tags parameter" -msgstr "SAML プロファイルおよび タグパラメータ" - -#: ../../include/functions_config.php:764 -msgid "Saml profile parameters" -msgstr "SAML プロファイルパラメータ" - -#: ../../include/functions_config.php:768 -#: ../../enterprise/meta/include/functions_meta.php:871 -msgid "Saml tag parameter" -msgstr "SAML タグパラメータ" - -#: ../../include/functions_config.php:772 -#: ../../enterprise/meta/include/functions_meta.php:845 -msgid "Saml profile and tag separator" -msgstr "SAML プロファイルおよびタグセパレータ" - -#: ../../include/functions_config.php:780 -msgid "2FA all users" -msgstr "全ユーザの二段階認証" - -#: ../../include/functions_config.php:784 ../../include/functions_config.php:790 -#: ../../enterprise/meta/include/functions_meta.php:604 -#: ../../enterprise/meta/include/functions_meta.php:897 -msgid "Session timeout" -msgstr "セッションタイムアウト" - -#: ../../include/functions_config.php:787 -msgid "Session timeout forced to 90 minutes" -msgstr "セッションタイムアウトを 90分に強制" - -#: ../../include/functions_config.php:813 -#: ../../enterprise/meta/include/functions_meta.php:1919 -#: ../../enterprise/meta/advanced/metasetup.performance.php:79 -#: ../../godmode/setup/performance.php:260 ../../godmode/setup/performance.php:447 -msgid "Max. days before delete events" -msgstr "イベントデータ保持日数" - -#: ../../include/functions_config.php:818 ../../godmode/setup/performance.php:271 -msgid "Max. days before delete traps" -msgstr "トラップデータ保持日数" - -#: ../../include/functions_config.php:822 ../../godmode/setup/performance.php:291 -#: ../../godmode/setup/performance.php:457 -msgid "Max. days before delete string data" -msgstr "文字列データ保持日数" - -#: ../../include/functions_config.php:826 -#: ../../enterprise/meta/include/functions_meta.php:1939 -#: ../../enterprise/meta/advanced/metasetup.performance.php:88 -#: ../../godmode/setup/performance.php:281 -msgid "Max. days before delete audit events" -msgstr "監査イベントデータ保持日数" - -#: ../../include/functions_config.php:830 ../../godmode/setup/performance.php:301 -msgid "Max. days before delete GIS data" -msgstr "GIS データ保持日数" - -#: ../../include/functions_config.php:834 ../../godmode/setup/performance.php:311 -#: ../../godmode/setup/performance.php:417 -msgid "Max. days before purge" -msgstr "データ保持日数" - -#: ../../include/functions_config.php:838 ../../godmode/setup/performance.php:331 -msgid "Max. days before delete unknown modules" -msgstr "不明モジュール保持日数" - -#: ../../include/functions_config.php:842 ../../godmode/setup/performance.php:321 -#: ../../godmode/setup/performance.php:427 -msgid "Max. days before compact data" -msgstr "データ保持日数(丸め込みなし)" - -#: ../../include/functions_config.php:846 -msgid "Max. days before autodisable deletion" -msgstr "自動無効化エージェントの保持日数" - -#: ../../include/functions_config.php:850 -msgid "Item limit for realtime reports)" -msgstr "リアルタイムレポートのアイテム制限" - -#: ../../include/functions_config.php:854 ../../godmode/setup/performance.php:437 -#: ../../godmode/setup/performance.php:518 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "データ縮小時の丸め込み単位時間 (1〜20)" - -#: ../../include/functions_config.php:858 -#: ../../enterprise/meta/include/functions_meta.php:1949 -#: ../../enterprise/meta/advanced/metasetup.performance.php:91 -#: ../../godmode/setup/performance.php:538 -msgid "Default hours for event view" -msgstr "イベント表示期間(時間)" - -#: ../../include/functions_config.php:862 ../../godmode/setup/performance.php:548 -msgid "Use realtime statistics" -msgstr "リアルタイム更新の利用" - -#: ../../include/functions_config.php:866 ../../godmode/setup/performance.php:556 -msgid "Batch statistics period (secs)" -msgstr "バッチ更新間隔(秒)" - -#: ../../include/functions_config.php:870 -#: ../../enterprise/meta/include/functions_meta.php:1959 -#: ../../godmode/setup/performance.php:566 -msgid "Use agent access graph" -msgstr "エージェントアクセスグラフの利用" - -#: ../../include/functions_config.php:874 ../../godmode/setup/performance.php:569 -msgid "Max. recommended number of files in attachment directory" -msgstr "添付ディレクトリファイルの推奨上限数" - -#: ../../include/functions_config.php:878 ../../godmode/setup/performance.php:579 -msgid "Delete not init modules" -msgstr "未初期化モジュールの削除" - -#: ../../include/functions_config.php:882 -msgid "Big Operatiopn Step to purge old data" -msgstr "古いデータ削除のための大きな操作ステップ" - -#: ../../include/functions_config.php:886 ../../godmode/setup/performance.php:592 -msgid "Small Operation Step to purge old data" -msgstr "古いデータ削除のための小さな操作ステップ" - -#: ../../include/functions_config.php:890 ../../godmode/setup/performance.php:351 -msgid "Retention period of past special days" -msgstr "過去の特別日の保存期間" - -#: ../../include/functions_config.php:894 -#: ../../enterprise/meta/include/functions_meta.php:2002 -#: ../../enterprise/meta/advanced/metasetup.performance.php:127 -#: ../../godmode/setup/performance.php:361 -msgid "Max. macro data fields" -msgstr "最大マクロデータフィールド" - -#: ../../include/functions_config.php:899 ../../godmode/setup/performance.php:375 -msgid "Max. days before delete inventory data" -msgstr "インベントリデータの保持日数" - -#: ../../include/functions_config.php:904 ../../godmode/setup/performance.php:475 -msgid "Max. days before delete old messages" -msgstr "古いメッセージの保持日数" - -#: ../../include/functions_config.php:908 ../../godmode/setup/performance.php:488 -msgid "Max. days before delete old network matrix data" -msgstr "ネットワークマトリックスデータ保持日数" - -#: ../../include/functions_config.php:912 ../../godmode/setup/performance.php:602 -msgid "Graph container - Max. Items" -msgstr "グラフコンテナ - 最大アイテム" - -#: ../../include/functions_config.php:916 -msgid "Max execution event response" -msgstr "最大実行イベント応答" - -#: ../../include/functions_config.php:920 -#: ../../enterprise/meta/advanced/metasetup.performance.php:118 -#: ../../godmode/setup/performance.php:622 -msgid "Row limit in csv log" -msgstr "csvログの行制限" - -#: ../../include/functions_config.php:924 -msgid "SNMP walk binary path" -msgstr "snmpwalk バイナリパス" - -#: ../../include/functions_config.php:928 -msgid "SNMP walk binary path (fallback for v1)" -msgstr "snmpwalk バイナリパス (v1 フォールバック)" - -#: ../../include/functions_config.php:947 -#: ../../enterprise/meta/include/functions_meta.php:2022 -msgid "PhantomJS cache interval" -msgstr "PhantomJS キャッシュ間隔" - -#: ../../include/functions_config.php:954 -#: ../../enterprise/meta/include/functions_meta.php:1298 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../godmode/setup/setup_visuals.php:1256 -msgid "Date format string" -msgstr "日時フォーマット" - -#: ../../include/functions_config.php:958 -#: ../../enterprise/meta/include/functions_meta.php:1308 -msgid "Timestamp or time comparation" -msgstr "タイムスタンプ表示" - -#: ../../include/functions_config.php:962 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../godmode/setup/setup_visuals.php:698 -msgid "Graph color #1" -msgstr "グラフの色 #1" - -#: ../../include/functions_config.php:966 -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../godmode/setup/setup_visuals.php:709 -msgid "Graph color #2" -msgstr "グラフの色 #2" - -#: ../../include/functions_config.php:970 -#: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../godmode/setup/setup_visuals.php:720 -msgid "Graph color #3" -msgstr "グラフの色 #3" - -#: ../../include/functions_config.php:974 ../../godmode/setup/setup_visuals.php:731 -msgid "Graph color #4" -msgstr "グラフの色 #4" - -#: ../../include/functions_config.php:978 ../../godmode/setup/setup_visuals.php:742 -msgid "Graph color #5" -msgstr "グラフの色 #5" - -#: ../../include/functions_config.php:982 ../../godmode/setup/setup_visuals.php:753 -msgid "Graph color #6" -msgstr "グラフの色 #6" - -#: ../../include/functions_config.php:986 ../../godmode/setup/setup_visuals.php:764 -msgid "Graph color #7" -msgstr "グラフの色 #7" - -#: ../../include/functions_config.php:990 ../../godmode/setup/setup_visuals.php:775 -msgid "Graph color #8" -msgstr "グラフの色 #8" - -#: ../../include/functions_config.php:994 ../../godmode/setup/setup_visuals.php:786 -msgid "Graph color #9" -msgstr "グラフの色 #9" - -#: ../../include/functions_config.php:998 ../../godmode/setup/setup_visuals.php:797 -msgid "Graph color #10" -msgstr "グラフの色 #10" - -#: ../../include/functions_config.php:1002 -#: ../../enterprise/meta/include/functions_meta.php:1433 -#: ../../enterprise/meta/advanced/metasetup.visual.php:232 -#: ../../godmode/setup/setup_visuals.php:808 -msgid "Value to interface graphics" -msgstr "インタフェースグラフの値" - -#: ../../include/functions_config.php:1006 -#: ../../enterprise/meta/include/functions_meta.php:1373 -msgid "Data precision for reports" -msgstr "レポートのデータ精度" - -#: ../../include/functions_config.php:1015 ../../godmode/setup/setup_visuals.php:137 -msgid "Style template" -msgstr "スタイルテンプレート" - -#: ../../include/functions_config.php:1023 -#: ../../enterprise/meta/include/functions_meta.php:1456 -#: ../../enterprise/meta/advanced/metasetup.visual.php:265 -#: ../../godmode/setup/setup_visuals.php:883 -msgid "Use round corners" -msgstr "角を丸くする" - -#: ../../include/functions_config.php:1027 -#: ../../enterprise/meta/include/functions_meta.php:1467 -#: ../../enterprise/meta/advanced/metasetup.visual.php:273 -#: ../../godmode/setup/setup_visuals.php:892 -msgid "Chart fit to content" -msgstr "グラフをコンテンツに合わせる" - -#: ../../include/functions_config.php:1031 -msgid "Show QR code header" -msgstr "QR コードヘッダー表示" - -#: ../../include/functions_config.php:1035 ../../godmode/setup/setup_visuals.php:150 -msgid "Status icon set" -msgstr "ステータスアイコンの種類" - -#: ../../include/functions_config.php:1039 -#: ../../enterprise/meta/include/functions_meta.php:1777 -msgid "Font path" -msgstr "フォントパス" - -#: ../../include/functions_config.php:1043 -#: ../../godmode/reporting/visual_console_builder.wizard.php:228 -msgid "Font size" -msgstr "フォントサイズ" - -#: ../../include/functions_config.php:1047 -#: ../../enterprise/meta/include/functions_meta.php:1598 -#: ../../enterprise/meta/advanced/metasetup.visual.php:503 -#: ../../godmode/setup/setup_visuals.php:190 -msgid "Custom favicon" -msgstr "カスタム favicon" - -#: ../../include/functions_config.php:1051 ../../include/functions_config.php:1445 -#: ../../enterprise/meta/include/functions_meta.php:1568 -#: ../../enterprise/meta/include/functions_meta.php:1819 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1053 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 -#: ../../godmode/setup/setup_visuals.php:1149 -msgid "Custom logo" -msgstr "カスタムロゴ" - -#: ../../include/functions_config.php:1055 -#: ../../enterprise/meta/include/functions_meta.php:1578 -msgid "Custom logo collapsed" -msgstr "折り畳み時カスタムロゴ" - -#: ../../include/functions_config.php:1059 -msgid "Custom logo white background" -msgstr "白背景カスタムロゴ" - -#: ../../include/functions_config.php:1063 -#: ../../enterprise/meta/include/functions_meta.php:1608 -msgid "Custom logo login" -msgstr "ログイン時のカスタムロゴ" - -#: ../../include/functions_config.php:1067 -#: ../../enterprise/meta/include/functions_meta.php:1618 -msgid "Custom splash login" -msgstr "カスタムスプラッシュログイン" - -#: ../../include/functions_config.php:1071 ../../godmode/setup/setup_visuals.php:393 -msgid "Custom documentation logo" -msgstr "カスタムドキュメントロゴ" - -#: ../../include/functions_config.php:1075 ../../godmode/setup/setup_visuals.php:413 -msgid "Custom support logo" -msgstr "カスタムサポートロゴ" - -#: ../../include/functions_config.php:1079 ../../include/functions_config.php:1083 -#: ../../godmode/setup/setup_visuals.php:432 -msgid "Custom networkmap center logo" -msgstr "カスタムネットワークマップセンターロゴ" - -#: ../../include/functions_config.php:1087 -msgid "Custom title header" -msgstr "カスタムタイトルヘッダ" - -#: ../../include/functions_config.php:1091 -msgid "Custom subtitle header" -msgstr "カスタムサブタイトルヘッダ" - -#: ../../include/functions_config.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1668 -msgid "Meta custom title header" -msgstr "メタカスタムタイトルヘッダ" - -#: ../../include/functions_config.php:1099 -#: ../../enterprise/meta/include/functions_meta.php:1678 -msgid "Meta custom subtitle header" -msgstr "メタカスタムサブタイトルヘッダ" - -#: ../../include/functions_config.php:1103 -#: ../../enterprise/meta/include/functions_meta.php:1648 -msgid "Custom title1 login" -msgstr "カスタムタイトル1 ログイン" - -#: ../../include/functions_config.php:1107 -#: ../../enterprise/meta/include/functions_meta.php:1658 -msgid "Custom title2 login" -msgstr "カスタムタイトル2 ログイン" - -#: ../../include/functions_config.php:1111 ../../godmode/setup/setup_visuals.php:176 -msgid "Login background" -msgstr "ログイン背景" - -#: ../../include/functions_config.php:1115 ../../include/functions_config.php:1155 -msgid "Custom Docs url" -msgstr "カスタムドキュメントURL" - -#: ../../include/functions_config.php:1119 ../../include/functions_config.php:1159 -msgid "Custom support url" -msgstr "カスタムサポートURL" - -#: ../../include/functions_config.php:1123 -#: ../../enterprise/meta/include/functions_meta.php:1628 -#: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../enterprise/meta/advanced/metasetup.visual.php:795 -#: ../../godmode/setup/setup_visuals.php:507 -msgid "Product name" -msgstr "製品名" - -#: ../../include/functions_config.php:1127 -#: ../../enterprise/meta/include/functions_meta.php:1638 -#: ../../enterprise/meta/advanced/metasetup.visual.php:735 -#: ../../enterprise/meta/advanced/metasetup.visual.php:805 -#: ../../godmode/setup/setup_visuals.php:513 -msgid "Copyright notice" -msgstr "著作権表示" - -#: ../../include/functions_config.php:1131 -msgid "Custom logo metaconsole (white background)" -msgstr "メタコンソールカスタムロゴ(白背景)" - -#: ../../include/functions_config.php:1135 -msgid "Custom logo login metaconsole" -msgstr "メタコンソールログインカスタムロゴ" - -#: ../../include/functions_config.php:1139 -msgid "Custom splash login metaconsole" -msgstr "カスタムスプラッシュログイン メタコンソール" - -#: ../../include/functions_config.php:1143 -msgid "Custom title1 login metaconsole" -msgstr "カスタムタイトル1 メタコンソールログイン" - -#: ../../include/functions_config.php:1147 -msgid "Custom title2 login metaconsole" -msgstr "カスタムタイトル2 メタコンソールログイン" - -#: ../../include/functions_config.php:1151 -msgid "Login background metaconsole" -msgstr "メタコンソールログイン背景" - -#: ../../include/functions_config.php:1163 -#: ../../enterprise/meta/include/functions_meta.php:1884 -msgid "Use the legacy Visual Console" -msgstr "レガシービジュアルコンソールの利用" - -#: ../../include/functions_config.php:1167 -#: ../../enterprise/meta/include/functions_meta.php:1895 -msgid "Default expiration of the Visual Console item's cache" -msgstr "ビジュアルコンソールキャッシュのデフォルト有効期間" - -#: ../../include/functions_config.php:1171 -#: ../../enterprise/meta/include/functions_meta.php:1906 -#: ../../enterprise/meta/advanced/metasetup.visual.php:874 -#: ../../godmode/setup/setup_visuals.php:1055 -msgid "Default interval for refresh on Visual Console" -msgstr "ビジュアルコンソールのデフォルト更新間隔" - -#: ../../include/functions_config.php:1175 -msgid "Default line favourite_view for the Visual Console" -msgstr "ビジュアルコンソールのデフォルトお気に入り" - -#: ../../include/functions_config.php:1179 -msgid "Default line menu items for the Visual Console" -msgstr "ビジュアルコンソールのデフォルトメニューアイテム" - -#: ../../include/functions_config.php:1183 ../../godmode/setup/setup_visuals.php:1069 -msgid "Default line thickness for the Visual Console" -msgstr "ビジュアルコンソールのデフォルトの線の太さ" - -#: ../../include/functions_config.php:1187 -msgid "Default line menu items for the Services" -msgstr "サービス用のデフォルトラインメニューアイテム" - -#: ../../include/functions_config.php:1191 ../../include/functions_config.php:1195 -#: ../../godmode/setup/setup_visuals.php:653 -msgid "Agent size text" -msgstr "エージェント名の表示長さ" - -#: ../../include/functions_config.php:1199 ../../godmode/setup/setup_visuals.php:658 -msgid "Module size text" -msgstr "モジュール名の表示長さ" - -#: ../../include/functions_config.php:1203 ../../include/functions_config.php:1207 -#: ../../godmode/setup/setup_visuals.php:663 -msgid "Description size text" -msgstr "説明の表示長さ" - -#: ../../include/functions_config.php:1211 ../../godmode/setup/setup_visuals.php:667 -msgid "Item title size text" -msgstr "アイテムタイトルの表示長さ" - -#: ../../include/functions_config.php:1215 ../../godmode/setup/setup_visuals.php:583 -msgid "GIS Labels" -msgstr "GIS ラベル" - -#: ../../include/functions_config.php:1219 -msgid "Show units in values report" -msgstr "値のレポートに単位を表示" - -#: ../../include/functions_config.php:1223 ../../godmode/setup/setup_visuals.php:598 -msgid "Default icon in GIS" -msgstr "GIS でのデフォルトアイコン" - -#: ../../include/functions_config.php:1227 -msgid "Autohidden menu" -msgstr "メニューを自動的に隠す" - -#: ../../include/functions_config.php:1231 -msgid "visual_animation" -msgstr "ビジュアルアニメーション" - -#: ../../include/functions_config.php:1235 -#: ../../enterprise/meta/include/functions_meta.php:1478 -#: ../../enterprise/meta/advanced/metasetup.visual.php:281 -msgid "Disable help" -msgstr "ヘルプの無効化" - -#: ../../include/functions_config.php:1239 -msgid "Fixed graph" -msgstr "グラフの固定" - -#: ../../include/functions_config.php:1243 ../../godmode/setup/setup_visuals.php:544 -msgid "Fixed header" -msgstr "ヘッダーの固定" - -#: ../../include/functions_config.php:1247 -msgid "Paginate module" -msgstr "モジュール画面分割" - -#: ../../include/functions_config.php:1255 ../../godmode/setup/setup_visuals.php:1236 -msgid "Networkmap max width" -msgstr "ネットワークマップ最大幅" - -#: ../../include/functions_config.php:1259 -msgid "Shortened module graph data" -msgstr "短縮モジュールグラフデータ" - -#: ../../include/functions_config.php:1263 -#: ../../enterprise/meta/advanced/metasetup.visual.php:456 -msgid "Show the group name instead the group icon." -msgstr "グループアイコンの代わりにグループ名を表示します。" - -#: ../../include/functions_config.php:1267 ../../godmode/setup/setup_visuals.php:857 -msgid "Default line thickness for the Custom Graph." -msgstr "カスタムグラフのデフォルトの線の太さ" - -#: ../../include/functions_config.php:1271 -msgid "Default type of module charts." -msgstr "モジュールグラフのデフォルトタイプ" - -#: ../../include/functions_config.php:1275 -msgid "Default Number of elements in Custom Graph." -msgstr "カスタムグラフのデフォルト要素数" - -#: ../../include/functions_config.php:1279 -msgid "Default type of interface charts." -msgstr "インタフェースグラフのデフォルトタイプ" - -#: ../../include/functions_config.php:1283 -#: ../../enterprise/meta/include/functions_meta.php:1859 -#: ../../enterprise/meta/advanced/metasetup.visual.php:466 -#: ../../godmode/setup/setup_visuals.php:88 -msgid "Display data of proc modules in other format" -msgstr "別フォーマットでのprocモジュールのデータ表示" - -#: ../../include/functions_config.php:1287 -#: ../../enterprise/meta/include/functions_meta.php:1869 -#: ../../enterprise/meta/advanced/metasetup.visual.php:474 -#: ../../godmode/setup/setup_visuals.php:97 -msgid "Display text proc modules have state is ok" -msgstr "正常状態時のprocモジュール表示テキスト" - -#: ../../include/functions_config.php:1290 ../../include/functions_config.php:3182 -#: ../../include/functions_reporting_html.php:662 -#: ../../enterprise/include/functions_reporting_csv.php:1541 -#: ../../enterprise/include/functions_reporting_csv.php:1587 -#: ../../enterprise/include/functions_reporting_csv.php:1905 -#: ../../enterprise/include/functions_reporting.php:1875 -#: ../../enterprise/include/functions_reporting.php:1916 -#: ../../enterprise/include/functions_reporting.php:2919 -#: ../../enterprise/include/functions_reporting.php:2978 -#: ../../enterprise/include/functions_reporting.php:3907 -#: ../../enterprise/include/functions_reporting.php:3966 -#: ../../enterprise/include/functions_reporting.php:6161 -msgid "Fail" -msgstr "失敗" - -#: ../../include/functions_config.php:1291 -#: ../../enterprise/meta/include/functions_meta.php:1879 -#: ../../enterprise/meta/advanced/metasetup.visual.php:484 -#: ../../godmode/setup/setup_visuals.php:101 -msgid "Display text when proc modules have state critical" -msgstr "障害状態時のprocモジュール表示テキスト" - -#: ../../include/functions_config.php:1295 -msgid "Display lateral menus with left click" -msgstr "クリックでサイドメニューを表示" - -#: ../../include/functions_config.php:1300 ../../godmode/setup/setup_visuals.php:116 -msgid "Service label font size" -msgstr "サービスラベルフォントサイズ" - -#: ../../include/functions_config.php:1304 -msgid "Service item padding size" -msgstr "サービス要素の間隔" - -#: ../../include/functions_config.php:1309 -msgid "Default percentil" -msgstr "デフォルトのパーセンテージ" - -#: ../../include/functions_config.php:1313 -msgid "Default full scale (TIP)" -msgstr "デフォルトフルスケール(TIP)" - -#: ../../include/functions_config.php:1317 -msgid "Default soft graphs" -msgstr "デフォルトグラフソフト" - -#: ../../include/functions_config.php:1321 -msgid "Default zoom graphs" -msgstr "デフォルトグラフ拡大率" - -#: ../../include/functions_config.php:1330 -msgid "Default height of the chart image" -msgstr "グラフ画像のデフォルトの高さ" - -#: ../../include/functions_config.php:1352 -msgid "Add the custom post process" -msgstr "カスタム保存倍率を追加" - -#: ../../include/functions_config.php:1360 -msgid "Delete the custom post process" -msgstr "カスタム保存倍率を削除" - -#: ../../include/functions_config.php:1402 -#: ../../enterprise/meta/include/functions_meta.php:1767 -#: ../../enterprise/meta/advanced/metasetup.visual.php:420 -#: ../../godmode/setup/setup_visuals.php:1357 -msgid "Delete interval" -msgstr "間隔値を削除" - -#: ../../include/functions_config.php:1414 -msgid "Add custom module unit" -msgstr "カスタムモジュール単位追加" - -#: ../../include/functions_config.php:1420 -msgid "Delete custom module unit" -msgstr "カスタムモジュール単位削除" - -#: ../../include/functions_config.php:1425 -#: ../../enterprise/meta/include/functions_meta.php:1799 -msgid "Custom report info" -msgstr "カスタムレポート情報" - -#: ../../include/functions_config.php:1429 -#: ../../enterprise/meta/include/functions_meta.php:1383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:966 -#: ../../godmode/setup/setup_visuals.php:1121 -msgid "HTML font size for SLA (em)" -msgstr "SLA 用 HTML フォントサイズ(em)" - -#: ../../include/functions_config.php:1433 -#: ../../enterprise/meta/include/functions_meta.php:1393 -#: ../../enterprise/meta/advanced/metasetup.visual.php:963 -#: ../../godmode/setup/setup_visuals.php:1116 -msgid "PDF font size (px)" -msgstr "PDF フォントサイズ(px)" - -#: ../../include/functions_config.php:1437 ../../include/functions_config.php:1441 -#: ../../include/functions_config.php:1445 ../../include/functions_config.php:1449 -#: ../../include/functions_config.php:1453 ../../include/functions_config.php:1457 -#: ../../enterprise/meta/include/functions_meta.php:1793 -#: ../../enterprise/meta/include/functions_meta.php:1809 -#: ../../enterprise/meta/include/functions_meta.php:1819 -#: ../../enterprise/meta/include/functions_meta.php:1829 -#: ../../enterprise/meta/include/functions_meta.php:1839 -#: ../../enterprise/meta/include/functions_meta.php:1849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1053 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1066 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1077 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1087 -#: ../../godmode/setup/setup_visuals.php:1149 ../../godmode/setup/setup_visuals.php:1164 -#: ../../godmode/setup/setup_visuals.php:1172 ../../godmode/setup/setup_visuals.php:1192 -#: ../../godmode/setup/setup_visuals.php:1208 -msgid "Custom report front" -msgstr "カスタムレポートスタイル" - -#: ../../include/functions_config.php:1441 -#: ../../enterprise/meta/include/functions_meta.php:1809 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 -msgid "Font family" -msgstr "フォントファミリ" - -#: ../../include/functions_config.php:1449 -#: ../../enterprise/meta/include/functions_meta.php:1829 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1077 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 -#: ../../godmode/setup/setup_visuals.php:1172 -msgid "Header" -msgstr "ヘッダー" - -#: ../../include/functions_config.php:1453 -#: ../../enterprise/meta/include/functions_meta.php:1839 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1087 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 -#: ../../godmode/setup/setup_visuals.php:1192 -msgid "First page" -msgstr "最初のページ" - -#: ../../include/functions_config.php:1457 -#: ../../enterprise/meta/include/functions_meta.php:1849 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 -#: ../../godmode/setup/setup_visuals.php:1208 -msgid "Footer" -msgstr "フッター" - -#: ../../include/functions_config.php:1461 -#: ../../enterprise/meta/include/functions_meta.php:1413 -#: ../../enterprise/meta/advanced/metasetup.visual.php:988 -#: ../../godmode/setup/setup_visuals.php:1400 -msgid "CSV divider" -msgstr "CSV 区切り文字" - -#: ../../include/functions_config.php:1465 -#: ../../enterprise/meta/include/functions_meta.php:1423 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 -#: ../../godmode/setup/setup_visuals.php:1446 -msgid "CSV decimal separator" -msgstr "CSV小数点区切り文字" - -#: ../../include/functions_config.php:1469 -#: ../../enterprise/meta/include/functions_meta.php:1787 -msgid "Use data multiplier" -msgstr "データ乗数を使用する" - -#: ../../include/functions_config.php:1475 ../../godmode/setup/setup_netflow.php:47 -msgid "Data storage path" -msgstr "データストアのパス" - -#: ../../include/functions_config.php:1479 ../../godmode/setup/setup_netflow.php:50 -msgid "Daemon interval" -msgstr "デーモン間隔" - -#: ../../include/functions_config.php:1483 ../../godmode/setup/setup_netflow.php:53 -msgid "Daemon binary path" -msgstr "デーモンのバイナリパス" - -#: ../../include/functions_config.php:1487 ../../godmode/setup/setup_netflow.php:56 -msgid "Nfdump binary path" -msgstr "nfdump バイナリのパス" - -#: ../../include/functions_config.php:1491 ../../godmode/setup/setup_netflow.php:59 -msgid "Nfexpire binary path" -msgstr "nfexpire バイナリのパス" - -#: ../../include/functions_config.php:1495 ../../godmode/setup/setup_netflow.php:62 -msgid "Maximum chart resolution" -msgstr "最大グラフ解像度" - -#: ../../include/functions_config.php:1499 -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Disable custom live view filters" -msgstr "カスタムライブビューフィルタの無効化" - -#: ../../include/functions_config.php:1503 ../../godmode/setup/setup_netflow.php:67 -msgid "Netflow max lifetime" -msgstr "Netflow 最大保持期間" - -#: ../../include/functions_config.php:1507 ../../godmode/setup/setup_netflow.php:70 -msgid "Name resolution for IP address" -msgstr "IP アドレスの名前解決" - -#: ../../include/functions_config.php:1513 -msgid "IP ElasticSearch server" -msgstr "ElasticSearch サーバ IP" - -#: ../../include/functions_config.php:1517 -msgid "Port ElasticSearch server" -msgstr "ElasticSearch サーバポート番号" - -#: ../../include/functions_config.php:1521 -#: ../../enterprise/meta/include/functions_meta.php:490 -#: ../../enterprise/godmode/setup/setup_log_collector.php:41 -msgid "Number of logs viewed" -msgstr "ログ表示数" - -#: ../../include/functions_config.php:1525 -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Days to purge old information" -msgstr "旧情報を削除する日数" - -#: ../../include/functions_config.php:1538 -msgid "Active and historical database cannot be the same." -msgstr "メインとヒストリデータベースが異なります。" - -#: ../../include/functions_config.php:1543 -#: ../../enterprise/godmode/setup/setup_history.php:159 -msgid "Host" -msgstr "ホスト" - -#: ../../include/functions_config.php:1556 -msgid "Enable history database" -msgstr "ヒストリデータベースの有効化" - -#: ../../include/functions_config.php:1560 -msgid "Enable history event" -msgstr "ヒストリイベントの有効化" - -#: ../../include/functions_config.php:1564 -#: ../../enterprise/godmode/setup/setup_history.php:204 -msgid "Database user" -msgstr "データベースユーザ" - -#: ../../include/functions_config.php:1568 -#: ../../enterprise/godmode/setup/setup_history.php:219 -msgid "Database password" -msgstr "データベースパスワード" - -#: ../../include/functions_config.php:1576 -#: ../../enterprise/tools/ipam/ipam_editor.php:327 -#: ../../enterprise/include/ajax/ipam.ajax.php:521 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Days" -msgstr "日間" - -#: ../../include/functions_config.php:1584 -msgid "Event Days" -msgstr "イベント日数" - -#: ../../include/functions_config.php:1592 -#: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:746 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1051 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1496 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1781 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2537 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2550 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2878 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3055 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3145 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3184 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3249 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 -#: ../../godmode/alerts/configure_alert_template.php:228 -#: ../../godmode/alerts/configure_alert_template.php:232 -#: ../../godmode/alerts/configure_alert_template.php:249 -#: ../../godmode/alerts/configure_alert_template.php:253 -#: ../../godmode/alerts/configure_alert_template.php:270 -#: ../../godmode/alerts/configure_alert_template.php:274 -msgid "Step" -msgstr "ステップ" - -#: ../../include/functions_config.php:1600 -msgid "Delay" -msgstr "遅延" - -#: ../../include/functions_config.php:1632 -msgid "Historical database purge" -msgstr "ヒストリデータベース削除" - -#: ../../include/functions_config.php:1641 -msgid "Historical database partitions" -msgstr "ヒストリデータベースパーティション" - -#: ../../include/functions_config.php:1650 -msgid "Historical database events purge" -msgstr "ヒストリデータベースイベント削除" - -#: ../../include/functions_config.php:1659 -msgid "Historical database string purge" -msgstr "ヒストリデータベース文字列削除" - -#: ../../include/functions_config.php:1668 ../../godmode/setup/setup_ehorus.php:58 -msgid "Enable eHorus" -msgstr "eHorus の有効化" - -#: ../../include/functions_config.php:1672 -msgid "eHorus user login" -msgstr "eHorus ユーザログイン" - -#: ../../include/functions_config.php:1676 ../../godmode/users/configure_user.php:1308 -msgid "eHorus user" -msgstr "eHorus ユーザ" - -#: ../../include/functions_config.php:1680 ../../godmode/users/configure_user.php:1317 -msgid "eHorus password" -msgstr "eHorus パスワード" - -#: ../../include/functions_config.php:1684 -msgid "eHorus API hostname" -msgstr "eHorus API ホスト名" - -#: ../../include/functions_config.php:1688 -msgid "eHorus API port" -msgstr "eHorus API ポート" - -#: ../../include/functions_config.php:1692 -msgid "eHorus request timeout" -msgstr "eHorus リクエストタイムアウト" - -#: ../../include/functions_config.php:1696 -msgid "eHorus id custom field" -msgstr "eHorus id カスタムフィールド" - -#: ../../include/functions_config.php:1702 -msgid "Integria user login" -msgstr "Integria ユーザログイン" - -#: ../../include/functions_config.php:1706 ../../godmode/setup/setup_integria.php:261 -msgid "Enable Integria IMS" -msgstr "Integria IMS の有効化" - -#: ../../include/functions_config.php:1710 -msgid "Integria user" -msgstr "Integria ユーザ" - -#: ../../include/functions_config.php:1714 -msgid "Integria password" -msgstr "Integria パスワード" - -#: ../../include/functions_config.php:1728 -msgid "integria API hostname" -msgstr "Integria API ホスト名" - -#: ../../include/functions_config.php:1736 -msgid "Integria request timeout" -msgstr "Integria 要求タイムアウト" - -#: ../../include/functions_config.php:1740 -msgid "Integria default group" -msgstr "Integria デフォルトグループ" - -#: ../../include/functions_config.php:1744 -msgid "Integria custom response default group" -msgstr "Integria カスタム応答デフォルトグループ" - -#: ../../include/functions_config.php:1748 -msgid "Integria default priority" -msgstr "Integria デフォルト優先順位" - -#: ../../include/functions_config.php:1752 -msgid "Integria custom response default priority" -msgstr "Integria カスタム応答デフォルト優先順位" - -#: ../../include/functions_config.php:1756 -msgid "Integria default creator" -msgstr "Integria デフォルト作成者" - -#: ../../include/functions_config.php:1760 -msgid "Integria default owner" -msgstr "Integria デフォルト所有者" - -#: ../../include/functions_config.php:1764 -msgid "Integria custom response default owner" -msgstr "Integria カスタム応答デフォルト所有者" - -#: ../../include/functions_config.php:1768 -msgid "Integria default ticket type" -msgstr "Integria デフォルトチケットタイプ" - -#: ../../include/functions_config.php:1772 -msgid "Integria custom response default ticket type" -msgstr "Integria カスタム応答デフォルトチケットタイプ" - -#: ../../include/functions_config.php:1776 -msgid "Integria default ticket status" -msgstr "Integria デフォルトチケット状態" - -#: ../../include/functions_config.php:1780 -msgid "Integria custom response default ticket status" -msgstr "Integria カスタム応答デフォルトチケット状態" - -#: ../../include/functions_config.php:1784 -msgid "Integria default ticket title" -msgstr "Integria デフォルトチケットタイトル" - -#: ../../include/functions_config.php:1788 -msgid "Integria custom response default ticket title" -msgstr "Integria カスタム応答デフォルトチケットタイトル" - -#: ../../include/functions_config.php:1792 -msgid "Integria default ticket content" -msgstr "Integria デフォルトチケット内容" - -#: ../../include/functions_config.php:1796 -msgid "Integria custom response default ticket content" -msgstr "Integria カスタム応答デフォルトチケット内容" - -#: ../../include/functions_config.php:1802 -msgid "Module Library User" -msgstr "モジュールライブラリユーザ" - -#: ../../include/functions_config.php:1806 -msgid "Module Library Password" -msgstr "モジュールライブラリパスワード" - -#: ../../include/functions_config.php:1812 -msgid "WebSocket bind address" -msgstr "WebSocket 待受アドレス" - -#: ../../include/functions_config.php:1816 -msgid "WebSocket port" -msgstr "WebSocket ポート" - -#: ../../include/functions_config.php:1820 -#: ../../godmode/setup/setup_websocket_engine.php:67 -msgid "WebSocket proxy url" -msgstr "Websocket プロキシ URL" - -#: ../../include/functions_config.php:1839 -#, php-format -msgid "Failed updated: the next values cannot update:
    -%s" -msgstr "更新失敗: 次の値は更新できません:
    -%s" - -#: ../../include/functions_config.php:2411 ../../include/functions_ui.php:1729 -msgid "the Flexible Monitoring System" -msgstr "the Flexible Monitoring System" - -#: ../../include/functions_config.php:2415 -msgid "PandoraFMS Metaconsole" -msgstr "Pandora FMS メタコンソール" - -#: ../../include/functions_config.php:2419 -msgid "Centralized operation console" -msgstr "中央操作コンソール" - -#: ../../include/functions_config.php:2423 -msgid "PANDORA FMS" -msgstr "PANDORA FMS" - -#: ../../include/functions_config.php:2427 ../../enterprise/include/reset_pass.php:146 -#: ../../enterprise/include/reset_pass.php:149 -#: ../../enterprise/include/process_reset_pass.php:159 -#: ../../enterprise/include/process_reset_pass.php:162 -msgid "ONE TOOL TO MONITOR THEM ALL" -msgstr "一つのツールですべてを監視" - -#: ../../include/functions_config.php:2467 -#: ../../enterprise/meta/general/login_page.php:209 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" - -#: ../../include/functions_config.php:2471 -#: ../../enterprise/meta/general/login_page.php:217 -#: ../../enterprise/meta/include/reset_pass.php:147 -#: ../../enterprise/meta/include/process_reset_pass.php:150 -msgid "METACONSOLE" -msgstr "メタコンソール" - -#: ../../include/functions_alerts.php:474 -#: ../../enterprise/include/functions_policies.php:423 -#: ../../enterprise/include/functions_policies.php:438 -msgid "copy" -msgstr "コピー" - -#: ../../include/functions_alerts.php:670 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -msgid "Regular expression" -msgstr "正規表現" - -#: ../../include/functions_alerts.php:671 -msgid "Max and min" -msgstr "最大および最小" - -#: ../../include/functions_alerts.php:674 -msgid "Equal to" -msgstr "同じ値" - -#: ../../include/functions_alerts.php:675 -msgid "Not equal to" -msgstr "異なる値" - -#: ../../include/functions_alerts.php:676 ../../include/functions_treeview.php:96 -#: ../../enterprise/godmode/modules/configure_local_component.php:310 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../godmode/massive/massive_edit_modules.php:561 -msgid "Warning status" -msgstr "警告状態" - -#: ../../include/functions_alerts.php:677 ../../include/functions_treeview.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:353 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 -#: ../../godmode/modules/manage_network_components_form_common.php:205 -#: ../../godmode/massive/massive_edit_modules.php:652 -msgid "Critical status" -msgstr "障害状態" - -#: ../../include/functions_alerts.php:678 -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 -msgid "Unknown status" -msgstr "不明状態" - -#: ../../include/functions_alerts.php:679 -msgid "On Change" -msgstr "変化発生" - -#: ../../include/functions_alerts.php:680 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2358 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3326 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../godmode/alerts/alert_list.list.php:636 ../../godmode/alerts/alert_view.php:234 -msgid "Always" -msgstr "常時" - -#: ../../include/functions_alerts.php:681 -msgid "Not normal status" -msgstr "非正常状態" - -#: ../../include/functions_alerts.php:1682 -msgid "No actions defined" -msgstr "アクションが定義されていません" - -#: ../../include/functions_alerts.php:2644 ../../godmode/alerts/alert_commands.php:567 -msgid "No command specified" -msgstr "コマンドが指定されていません。" - -#: ../../include/functions_alerts.php:2649 ../../godmode/alerts/alert_commands.php:563 -msgid "No name specified" -msgstr "名前が指定されていません" - -#: ../../include/functions_alerts.php:2655 -msgid "Alert and command group does not match" -msgstr "アラートとコマンドグループが一致しません" - -#: ../../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:402 ../../include/functions_html.php:2109 -#: ../../include/functions.php:504 ../../include/functions.php:635 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../enterprise/meta/advanced/metasetup.visual.php:384 -#: ../../godmode/setup/setup_visuals.php:1344 -msgid "hours" -msgstr "時間" - -#: ../../include/functions_snmp.php:441 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filter" -msgstr "有効なフィルタ" - -#: ../../include/functions_snmp.php:441 -#: ../../enterprise/include/functions_events.php:291 -msgid "Active filters" -msgstr "有効なフィルタ" - -#: ../../include/functions_menu.php:491 -msgid "Configure user" -msgstr "ユーザ設定" - -#: ../../include/functions_menu.php:492 -msgid "Configure profile" -msgstr "プロファイル設定" - -#: ../../include/functions_menu.php:494 -msgid "Module templates management" -msgstr "モジュールテンプレート管理" - -#: ../../include/functions_menu.php:495 -msgid "Inventory modules management" -msgstr "インベントリモジュール管理" - -#: ../../include/functions_menu.php:497 -#: ../../enterprise/meta/include/functions_agents_meta.php:614 -#: ../../enterprise/meta/include/functions_agents_meta.php:619 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:137 -msgid "Agents management" -msgstr "エージェント管理" - -#: ../../include/functions_menu.php:499 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -msgid "Configure alert template" -msgstr "アラートテンプレート設定" - -#: ../../include/functions_menu.php:501 ../../godmode/users/configure_profile.php:343 -msgid "View visual console" -msgstr "ビジュアルコンソール表示" - -#: ../../include/functions_menu.php:502 -msgid "Builder visual console" -msgstr "ビジュアルコンソールビルダ" - -#: ../../include/functions_menu.php:504 -msgid "View reporting" -msgstr "レポート表示" - -#: ../../include/functions_menu.php:505 -msgid "Graph viewer" -msgstr "グラフ表示" - -#: ../../include/functions_menu.php:507 -msgid "Manage custom graphs" -msgstr "カスタムグラフ管理" - -#: ../../include/functions_menu.php:508 -msgid "View graph containers" -msgstr "グラフコンテナ表示" - -#: ../../include/functions_menu.php:509 -msgid "Manage graph containers" -msgstr "グラフコンテナ管理" - -#: ../../include/functions_menu.php:510 -msgid "View graph templates" -msgstr "グラフテンプレート表示" - -#: ../../include/functions_menu.php:511 -msgid "Manage graph templates" -msgstr "グラフテンプレート管理" - -#: ../../include/functions_menu.php:512 -msgid "Graph template items" -msgstr "グラフテンプレートアイテム" - -#: ../../include/functions_menu.php:513 -msgid "Graph template wizard" -msgstr "グラフテンプレートウィザード" - -#: ../../include/functions_menu.php:514 -#: ../../enterprise/include/functions_reporting.php:124 -#: ../../enterprise/meta/general/main_menu.php:296 -#: ../../enterprise/meta/general/main_header.php:200 -msgid "Templates wizard" -msgstr "テンプレートウィザード" - -#: ../../include/functions_menu.php:517 -msgid "Manage GIS Maps" -msgstr "GIS マップ管理" - -#: ../../include/functions_menu.php:520 -msgid "Manage messages" -msgstr "メッセージ管理" - -#: ../../include/functions_menu.php:522 -msgid "Manage module groups" -msgstr "モジュールグループ管理" - -#: ../../include/functions_menu.php:523 -msgid "Manage custom field" -msgstr "カスタムフィールド管理" - -#: ../../include/functions_menu.php:525 -msgid "Manage alert actions" -msgstr "アラートアクション管理" - -#: ../../include/functions_menu.php:526 -msgid "Manage commands" -msgstr "コマンド管理" - -#: ../../include/functions_menu.php:528 -msgid "Manage export targets" -msgstr "エクスポートターゲット管理" - -#: ../../include/functions_menu.php:533 -msgid "Manage incident" -msgstr "インシデント管理" - -#: ../../include/functions_menu.php:535 -msgid "Manage groups" -msgstr "グループ管理" - -#: ../../include/functions_menu.php:536 -#: ../../enterprise/meta/advanced/component_management.php:52 -msgid "Tags management" -msgstr "タグ管理" - -#: ../../include/functions_menu.php:595 -msgid "Administration" -msgstr "システム管理" - -#: ../../include/functions_agents.php:836 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 -#: ../../godmode/massive/massive_copy_modules.php:551 -msgid "No source agent to copy" -msgstr "コピー元エージェントがありません。" - -#: ../../include/functions_agents.php:841 -#: ../../godmode/massive/massive_copy_modules.php:569 -msgid "No destiny agent(s) to copy" -msgstr "コピー先エージェントがありません。" - -#: ../../include/functions_agents.php:867 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 -#: ../../godmode/massive/massive_copy_modules.php:564 -msgid "No modules have been selected" -msgstr "モジュールが選択されていません。" - -#: ../../include/functions_agents.php:1005 -msgid "There was an error copying the agent configuration, the copy has been cancelled" -msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。" - -#: ../../include/functions_agents.php:1018 -#: ../../include/functions_planned_downtimes.php:961 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../godmode/reporting/map_builder.php:315 -#: ../../godmode/reporting/map_builder.php:322 -#: ../../godmode/reporting/reporting_builder.php:737 -#: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:625 -msgid "Successfully copied" -msgstr "コピーしました。" - -#: ../../include/functions_agents.php:2963 ../../include/functions_agents.php:3002 -#: ../../include/functions_agents.php:3073 -msgid "No Monitors" -msgstr "モニタ項目なし" - -#: ../../include/functions_agents.php:2971 ../../include/functions_agents.php:3026 -#: ../../include/functions_agents.php:3081 ../../include/functions_reporting.php:12293 -msgid "At least one module in CRITICAL status" -msgstr "一つ以上のモジュールが致命的な状態です。" - -#: ../../include/functions_agents.php:2977 ../../include/functions_agents.php:3036 -#: ../../include/functions_agents.php:3089 ../../include/functions_reporting.php:12300 -msgid "At least one module in WARNING status" -msgstr "一つ以上のモジュールが警告状態です。" - -#: ../../include/functions_agents.php:2983 ../../include/functions_agents.php:3046 -#: ../../include/functions_agents.php:3097 ../../include/functions_reporting.php:12307 -msgid "At least one module is in UKNOWN status" -msgstr "一つ以上のモジュールが不明な状態です。" - -#: ../../include/functions_agents.php:2989 ../../include/functions_agents.php:3056 -#: ../../include/functions_agents.php:3105 ../../include/functions_reporting.php:12314 -msgid "All Monitors OK" -msgstr "全モニタ項目が正常" - -#: ../../include/functions_agents.php:3014 -msgid "Alert fired on agent" -msgstr "エージェントでアラート発報" - -#: ../../include/functions_agents.php:3847 ../../include/functions_agents.php:3901 -#: ../../include/functions_reporting_html.php:5516 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -msgid "Agents ok" -msgstr "正常状態エージェント" - -#: ../../include/functions_agents.php:3857 -#: ../../include/functions_reporting_html.php:5507 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 -#: ../../mobile/operation/groups.php:153 -msgid "Agents critical" -msgstr "障害状態エージェント" - -#: ../../include/functions_agents.php:3867 -#: ../../include/functions_reporting_html.php:5510 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -msgid "Agents warning" -msgstr "警告状態エージェント" - -#: ../../include/functions_agents.php:3877 -#: ../../include/functions_reporting_html.php:5519 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 -#: ../../mobile/operation/groups.php:156 -msgid "Agents unknown" -msgstr "不明なエージェント" - -#: ../../include/functions_agents.php:3891 -#: ../../include/functions_reporting_html.php:5525 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 -#: ../../mobile/operation/groups.php:150 -msgid "Agents not init" -msgstr "未初期化エージェント" - -#: ../../include/functions_agents.php:3997 -#: ../../enterprise/include/class/SAP.app.php:727 -msgid "SAP Login OK" -msgstr "SAP ログイン OK" - -#: ../../include/functions_agents.php:3998 -#: ../../enterprise/include/class/SAP.app.php:728 -msgid "SAP Dumps" -msgstr "SAP ダンプ" - -#: ../../include/functions_agents.php:3999 -#: ../../enterprise/include/class/SAP.app.php:729 -msgid "SAP lock entry list" -msgstr "SAP ロックエントリー一覧" - -#: ../../include/functions_agents.php:4000 -#: ../../enterprise/include/class/SAP.app.php:730 -msgid "SAP canceled Jobs" -msgstr "SAP キャンセルジョブ" - -#: ../../include/functions_agents.php:4001 -#: ../../enterprise/include/class/SAP.app.php:731 -msgid "SAP Batch inputs erroneous" -msgstr "SAPバッチ入力に誤りがあります" - -#: ../../include/functions_agents.php:4002 -#: ../../enterprise/include/class/SAP.app.php:732 -msgid "SAP IDOC erroneous" -msgstr "SAP IDOC に誤りがあります" - -#: ../../include/functions_agents.php:4003 -#: ../../enterprise/include/class/SAP.app.php:733 -msgid "SAP IDOC OK" -msgstr "SAP IDOC OK" - -#: ../../include/functions_agents.php:4004 -#: ../../enterprise/include/class/SAP.app.php:734 -msgid "SAP WP without active restart" -msgstr "アクティブな再起動なしの SAP WP" - -#: ../../include/functions_agents.php:4005 -#: ../../enterprise/include/class/SAP.app.php:735 -msgid "SAP WP stopped" -msgstr "SAP WP が停止しました" - -#: ../../include/functions_agents.php:4006 -#: ../../enterprise/include/class/SAP.app.php:736 -msgid "Average time of SAPGUI response" -msgstr "SAPGUI 応答の平均時間" - -#: ../../include/functions_agents.php:4007 -msgid "Dialog response time" -msgstr "ダイアログ応答時間" - -#: ../../include/functions_agents.php:4008 -#: ../../enterprise/include/class/SAP.app.php:737 -msgid "Dialog Logged users" -msgstr "ダイアログログユーザ" - -#: ../../include/functions_agents.php:4009 -#: ../../enterprise/include/class/SAP.app.php:738 -msgid "TRFC in error" -msgstr "エラー TRFC" - -#: ../../include/functions_agents.php:4010 -#: ../../enterprise/include/class/SAP.app.php:739 -msgid "QRFC in error SMQ2" -msgstr "SMQ2 エラーの QRFC" - -#: ../../include/functions_agents.php:4011 -#: ../../enterprise/include/class/SAP.app.php:740 -msgid "Number of Update WPs in error" -msgstr "エラーアップデート WP 数" - -#: ../../include/functions_network.php:34 -msgid "Top listeners" -msgstr "上位の受信先" - -#: ../../include/functions_network.php:35 -msgid "Top talkers" -msgstr "上位の発信元" - -#: ../../include/functions_network.php:45 -msgid "Top TCP protocols" -msgstr "上位の TCP プロトコル" - -#: ../../include/functions_network.php:46 -msgid "Top UDP protocols" -msgstr "上位の UDP プロトコル" - -#: ../../include/functions_notifications.php:811 -msgid "Subtype customization" -msgstr "サブタイプのカスタマイズ" - -#: ../../include/functions_notifications.php:841 -msgid "Notified users" -msgstr "通知されたユーザ" - -#: ../../include/functions_notifications.php:841 -msgid "Notified groups" -msgstr "通知されたグループ" - -#: ../../include/functions_notifications.php:842 -msgid "Add users" -msgstr "ユーザ追加" - -#: ../../include/functions_notifications.php:842 -msgid "Add groups" -msgstr "グループ追加" - -#: ../../include/functions_notifications.php:843 -msgid "Delete users" -msgstr "ユーザ削除" - -#: ../../include/functions_notifications.php:843 -msgid "Delete groups" -msgstr "グループ削除" - -#: ../../include/functions_notifications.php:939 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616 -msgid "Add elements" -msgstr "要素追加" - -#: ../../include/functions_notifications.php:952 -msgid "Remove elements" -msgstr "要素削除" - -#: ../../include/functions_notifications.php:1070 -msgid "Click here to get more information" -msgstr "詳細についてはこちらをクリックしてください" - -#: ../../include/functions_netflow.php:348 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Destination IP" -msgstr "宛先 IP" - -#: ../../include/functions_netflow.php:350 -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "% Traffic" -msgstr "% トラフィック" - -#: ../../include/functions_netflow.php:351 -msgid "Avg. Throughput" -msgstr "平均スループット" - -#: ../../include/functions_netflow.php:416 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total flows" -msgstr "全フロー数" - -#: ../../include/functions_netflow.php:421 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total bytes" -msgstr "全バイト数" - -#: ../../include/functions_netflow.php:426 -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Total packets" -msgstr "全パケット数" - -#: ../../include/functions_netflow.php:431 -msgid "Average bits per second" -msgstr "平均ビット/秒" - -#: ../../include/functions_netflow.php:436 -msgid "Average packets per second" -msgstr "平均パケット/秒" - -#: ../../include/functions_netflow.php:441 -msgid "Average bytes per packet" -msgstr "平均バイト/パケット" - -#: ../../include/functions_netflow.php:1182 -msgid "Area graph" -msgstr "塗り潰しグラフ" - -#: ../../include/functions_netflow.php:1185 -msgid "Top-N connections" -msgstr "トップ N 接続" - -#: ../../include/functions_netflow.php:1186 -msgid "Circular mesh" -msgstr "円形メッシュ" - -#: ../../include/functions_netflow.php:1187 ../../include/functions_netflow.php:1452 -msgid "Host detailed traffic" -msgstr "ホストの詳細トラフィック" - -#: ../../include/functions_netflow.php:1439 -msgid "Sent" -msgstr "送信" - -#: ../../include/functions_netflow.php:1447 -msgid "Received" -msgstr "受信" - -#: ../../include/functions_netflow.php:1628 -msgid "Dst port" -msgstr "宛先ポート" - -#: ../../include/functions_netflow.php:1631 -msgid "Dst IP" -msgstr "宛先 IP" - -#: ../../include/functions_netflow.php:1634 -msgid "Src IP" -msgstr "送信元 IP" - -#: ../../include/functions_netflow.php:1637 -msgid "Src port" -msgstr "送信元ポート" - -#: ../../include/functions_netflow.php:1823 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump バイナリ (%s) が見つかりません!" - -#: ../../include/functions_netflow.php:1830 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" - -#: ../../include/functions_netflow.php:1847 -msgid "High" -msgstr "高い" - -#: ../../include/functions_netflow.php:1848 -msgid "Ultra High" -msgstr "とても高い" - -#: ../../include/functions_netflow.php:1849 -#: ../../enterprise/include/functions_cron.php:500 -msgid "Hourly" -msgstr "毎時" - -#: ../../include/functions_netflow.php:1850 -#: ../../enterprise/include/functions_cron.php:501 -#: ../../enterprise/include/lib/NetworkManager.php:178 -#: ../../godmode/agentes/module_manager_editor_prediction.php:183 -msgid "Daily" -msgstr "日次" - -#: ../../include/functions_netflow.php:1881 -#, php-format -msgid "Agregate by %s" -msgstr "%s 集計" - -#: ../../include/functions_netflow.php:1889 -#, php-format -msgid "Resolution %s" -msgstr "解像度 %s" - -#: ../../include/functions_servers.php:556 ../../include/functions_servers.php:1305 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 -msgid "Data server" -msgstr "データサーバ" - -#: ../../include/functions_servers.php:582 -msgid "SNMP Trap server" -msgstr "SNMPトラップサーバ" - -#: ../../include/functions_servers.php:621 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 -msgid "Prediction server" -msgstr "予測サーバ" - -#: ../../include/functions_servers.php:647 ../../include/functions_servers.php:1332 -#: ../../enterprise/godmode/servers/manage_export_form.php:79 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537 -msgid "Export server" -msgstr "エクスポートサーバ" - -#: ../../include/functions_servers.php:660 ../../include/functions_servers.php:1335 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 -msgid "Inventory server" -msgstr "インベントリサーバ" - -#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1329 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507 -msgid "Web server" -msgstr "ウェブサーバ" - -#: ../../include/functions_servers.php:686 ../../include/functions_servers.php:1338 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 -msgid "Event server" -msgstr "イベントサーバ" - -#: ../../include/functions_servers.php:699 -msgid "Correlation server" -msgstr "相関サーバ" - -#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1314 -msgid "Enterprise ICMP server" -msgstr "エンタープライズ ICMP サーバ" - -#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1317 -msgid "Enterprise SNMP server" -msgstr "エンタープライズSNMPサーバ" - -#: ../../include/functions_servers.php:751 -msgid "Enterprise Transactional server" -msgstr "Enterprise トランザクションサーバ" - -#: ../../include/functions_servers.php:764 -msgid "Mainframe server" -msgstr "メインフレームサーバ" - -#: ../../include/functions_servers.php:777 -msgid "Sync server" -msgstr "同期サーバ" - -#: ../../include/functions_servers.php:790 -msgid "Wux server" -msgstr "Wux サーバ" - -#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1344 -msgid "Log server" -msgstr "ログサーバ" - -#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1359 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 -msgid "NCM server" -msgstr "NCM サーバ" - -#: ../../include/functions_servers.php:829 -msgid "Autoprovision server" -msgstr "自動プロビジョニングサーバ" - -#: ../../include/functions_servers.php:842 -msgid "Migration server" -msgstr "マイグレーションサーバ" - -#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1356 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416 -msgid "Alert server" -msgstr "アラートサーバ" - -#: ../../include/functions_servers.php:1311 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582 -msgid "SNMP server" -msgstr "SNNP サーバ" - -#: ../../include/functions_servers.php:1323 -msgid "Prediction Server" -msgstr "予測サーバ" - -#: ../../include/functions_servers.php:1347 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597 -msgid "WUX server" -msgstr "WUX サーバ" - -#: ../../include/functions_servers.php:1350 -msgid "Satellite server" -msgstr "サテライトサーバ" - -#: ../../include/functions_servers.php:1353 -msgid "Transactional server" -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_api.php:116 -msgid "Not `set`, `get` or `help` operation selected." -msgstr "`set`, `get` または `help` 操作が選択されていません。" - -#: ../../include/functions_api.php:126 -msgid "This operation does not exist." -msgstr "この操作は存在しません。" - -#: ../../include/functions_api.php:136 -msgid "The Id does not exist in database." -msgstr "データベースに ID が存在しません。" - -#: ../../include/functions_api.php:146 -msgid "This operation can not be used in cluster elements." -msgstr "クラスタ要素ではこの操作は使えません。" - -#: ../../include/functions_api.php:156 -msgid "The user has not enough permissions for perform this action." -msgstr "このアクションを実行するための十分な権限がありません。" - -#: ../../include/functions_api.php:166 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 -msgid "No data to show." -msgstr "表示するデータがありません。" - -#: ../../include/functions_api.php:176 -msgid "" -"This console is not the environment administrator. Please, manage this feature from " -"centralized manager console (Metaconsole)." -msgstr "" -"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタコンソー" -"ル)から管理してください。" - -#: ../../include/functions_api.php:186 -msgid "Auth error" -msgstr "認証エラー" - -#: ../../include/functions_api.php:1471 -msgid "The agent could not be modified. For security reasons, use a group other than 0." -msgstr "" -"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループを利用" -"してください。" - -#: ../../include/functions_api.php:1810 -#, php-format -msgid "Updated %d/%d agents" -msgstr "%d/%d エージェントを更新しました" - -#: ../../include/functions_api.php:1818 -msgid "Agent updated." -msgstr "エージェントを更新しました。" - -#: ../../include/functions_api.php:2033 ../../godmode/setup/os.php:238 -msgid "Success creating OS" -msgstr "OS を作成しました" - -#: ../../include/functions_api.php:2035 -msgid "Could not create OS" -msgstr "OS を作成できませんでした" - -#: ../../include/functions_api.php:2072 ../../godmode/setup/os.php:246 -msgid "Success updating OS" -msgstr "OS を更新しました" - -#: ../../include/functions_api.php:2074 -msgid "Could not update OS" -msgstr "OS を更新できませんでした" - -#: ../../include/functions_api.php:2275 -msgid "The agent was successfully deleted" -msgstr "エージェントを削除しました" - -#: ../../include/functions_api.php:3770 -msgid "Network module updated." -msgstr "ネットワークモジュールを更新しました。" - -#: ../../include/functions_api.php:4066 -msgid "Plugin module updated." -msgstr "プラグインモジュールを更新しました。" - -#: ../../include/functions_api.php:4422 -#, php-format -msgid "Synthetic module created ID: %s" -msgstr "合成モジュールが作成したID: %s" - -#: ../../include/functions_api.php:4575 -msgid "Synthetic module created ID: " -msgstr "統合モジュールを作成しました。ID: " - -#: ../../include/functions_api.php:4692 -msgid "Data module updated." -msgstr "データモジュールを更新しました。" - -#: ../../include/functions_api.php:5065 -msgid "SNMP module updated." -msgstr "SNMPモジュールを更新しました。" - -#: ../../include/functions_api.php:5672 -msgid "Error creating alert template. Id_group cannot be left blank." -msgstr "" -"アラートテンプレートの作成中にエラーが発生しました。 id_group は空白にできません。" - -#: ../../include/functions_api.php:5686 -msgid "" -"Error creating alert template. Invalid id_group or the user has not enough permission " -"to make this action." -msgstr "" -"アラートテンプレートの作成中にエラーが発生しました。 id_group が無効であるか、ユーザに" -"このアクションを実行するための十分な権限がありません。" - -#: ../../include/functions_api.php:5832 -msgid "" -"Error updating alert template. Invalid id_group or the user has not enough permission " -"to make this action." -msgstr "" -"アラートテンプレートの更新中にエラーが発生しました。 id_group が無効であるか、ユーザに" -"このアクションを実行するための十分な権限がありません。" - -#: ../../include/functions_api.php:5916 -msgid "Successful update of the alert template" -msgstr "アラートテンプレートを更新しました" - -#: ../../include/functions_api.php:5964 -msgid "Error deleting alert template. Id_template doesn't exist." -msgstr "アラートテンプレート削除エラー。id_template が存在しません。" - -#: ../../include/functions_api.php:5993 -msgid "Successful delete of alert template." -msgstr "アラートテンプレートを削除しました。" - -#: ../../include/functions_api.php:6413 ../../include/functions_api.php:12362 -#: ../../include/functions_api.php:12428 ../../include/functions_api.php:12709 -#: ../../include/functions_api.php:12789 -#, php-format -msgid "%d agents affected" -msgstr "%d エージェントに影響します" - -#: ../../include/functions_api.php:6559 -msgid "Correct deleting of module template." -msgstr "モジュールテンプレートの削除内容を修正してください。" - -#: ../../include/functions_api.php:6667 -msgid "Successful delete of module template." -msgstr "モジュールテンプレートを削除しました。" - -#: ../../include/functions_api.php:6700 -msgid "Error validating alert. Id_template cannot be left blank." -msgstr "アラート承諾エラー。id_template は空にできません。" - -#: ../../include/functions_api.php:6708 -msgid "Error validating alert. Id_agent cannot be left blank." -msgstr "アラート承諾エラー。id_agent は空にできません。" - -#: ../../include/functions_api.php:6716 -msgid "Error validating alert. Id_module cannot be left blank." -msgstr "アラート承諾エラー。id_module は空にできません。" - -#: ../../include/functions_api.php:6787 -msgid "Error validating alert. Specified alert does not exist." -msgstr "アラート承諾エラー。指定のアラートが存在しません。" - -#: ../../include/functions_api.php:6798 -msgid "Error validating alert" -msgstr "アラート承諾エラー" - -#: ../../include/functions_api.php:6872 -#, php-format -msgid "Correct validation of all alerts (total %d)." -msgstr "全アラートの承諾をしました(合計 %d)。" - -#: ../../include/functions_api.php:6966 -msgid "Correct validation of all policy alerts." -msgstr "全ポリシーアラートを承諾しました。" - -#: ../../include/functions_api.php:7008 -msgid "" -"Error stopping downtime. Periodical and running scheduled downtime cannot be stopped." -msgstr "" -"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止することは" -"できません。" - -#: ../../include/functions_api.php:7021 -msgid "Downtime stopped." -msgstr "計画停止を中断しました。" - -#: ../../include/functions_api.php:7503 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "これらのモジュールが存在しないかまたはエージェントに適用できません : " - -#: ../../include/functions_api.php:7507 -msgid "and this agents are generate problems: " -msgstr "これらのエージェントでエラーです : " - -#: ../../include/functions_api.php:7511 -msgid "and this agents with ids are doesn't exists: " -msgstr "これらのエージェントIDは存在しません : " - -#: ../../include/functions_api.php:7659 -msgid "Planned downtime updated" -msgstr "計画停止を更新しました" - -#: ../../include/functions_api.php:7735 -msgid " Agents deleted" -msgstr " エージェントを削除しました" - -#: ../../include/functions_api.php:7816 -msgid " Agents added" -msgstr " エージェントを追加しました" - -#: ../../include/functions_api.php:7936 -msgid "Data policy module updated." -msgstr "データポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:8169 -msgid "Network policy module updated." -msgstr "ネットワークポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:8426 -msgid "Plugin policy module updated." -msgstr "プラグインポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:8935 -msgid "SNMP policy module updated." -msgstr "SNMPポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:9280 -msgid "Successful deletion" -msgstr "削除しました" - -#: ../../include/functions_api.php:9596 -msgid "User created." -msgstr "ユーザを作成しました" - -#: ../../include/functions_api.php:9691 -msgid "User updated." -msgstr "ユーザを更新しました。" - -#: ../../include/functions_api.php:9770 -msgid "Enabled user." -msgstr "ユーザを有効化しました。" - -#: ../../include/functions_api.php:9778 -msgid "Disabled user." -msgstr "ユーザを無効化しました。" - -#: ../../include/functions_api.php:10075 -#, php-format -msgid "Template have been inserted in %d agents." -msgstr "%d エージェントにテンプレートを挿入しました。" - -#: ../../include/functions_api.php:10247 -msgid "XML file was generated successfully in path: " -msgstr "次のパスに XML ファイルを生成しました: " - -#: ../../include/functions_api.php:10387 -#, php-format -msgid "Module has been created in %d agents." -msgstr "%d エージェントにモジュールを作成しました。" - -#: ../../include/functions_api.php:10517 -#, php-format -msgid "Action has been set for %d agents." -msgstr "%d エージェントにアクションを設定しました。" - -#: ../../include/functions_api.php:11173 -#: ../../godmode/agentes/configurar_agente.php:2232 -#, php-format -msgid "Save by %s Console" -msgstr "%s コンソールでの保存" - -#: ../../include/functions_api.php:11174 -#: ../../godmode/agentes/configurar_agente.php:2250 -#, php-format -msgid "Update by %s Console" -msgstr "%s コンソールでの更新" - -#: ../../include/functions_api.php:11175 -#: ../../godmode/agentes/configurar_agente.php:2266 -#, php-format -msgid "Insert by %s Console" -msgstr "%s コンソールによる挿入" - -#: ../../include/functions_api.php:11952 -msgid "User deleted." -msgstr "ユーザを削除しました。" - -#: ../../include/functions_api.php:12013 -msgid "User profile added." -msgstr "ユーザプロファイルを追加しました。" - -#: ../../include/functions_api.php:12080 -msgid "User profile deleted." -msgstr "ユーザプロファイルを削除しました。" - -#: ../../include/functions_api.php:12369 -msgid "Module disabled successfully." -msgstr "モジュールを無効化しました。" - -#: ../../include/functions_api.php:12371 -msgid "The module could not be disabled." -msgstr "モジュールを無効化できませんでした。" - -#: ../../include/functions_api.php:12435 -msgid "Module enabled successfully." -msgstr "モジュールを有効化しました。" - -#: ../../include/functions_api.php:12437 -msgid "The module could not be enabled." -msgstr "モジュールを有効化できませんでした。" - -#: ../../include/functions_api.php:12485 ../../include/functions_api.php:12538 -msgid "The alert could not be disabled." -msgstr "アラートを無効化できませんでえした。" - -#: ../../include/functions_api.php:12585 ../../include/functions_api.php:12638 -msgid "The alert could not be enabled." -msgstr "アラートを有効化できませんでした。" - -#: ../../include/functions_api.php:13910 -msgid "Enabled agent." -msgstr "エージェントを有効化しました" - -#: ../../include/functions_api.php:13918 -msgid "Disabled agent." -msgstr "エージェントを無効化しました" - -#: ../../include/functions_api.php:14897 -msgid "Metaconsole and the licenses of all nodes were updated." -msgstr "メタコンソールと全ノードのライセンスを更新しました。" - -#: ../../include/functions_api.php:14899 -#, php-format -msgid "Metaconsole license updated but %d of %d node failed to sync." -msgstr "メタコンソールライセンスを更新しましたが、%d/%d ノードの同期に失敗しました。" - -#: ../../include/functions_api.php:14902 -msgid "This function is for metaconsole only." -msgstr "この機能はメタコンソールのみです。" - -#: ../../include/functions_api.php:15287 ../../include/functions_api.php:15358 -msgid "Successfully deleted." -msgstr "削除しました。" - -#: ../../include/functions_api.php:15317 -msgid "The user cannot access the cluster." -msgstr "ユーザがクラスタにアクセスできません。" - -#: ../../include/functions_api.php:15411 ../../godmode/agentes/agent_template.php:67 -msgid "Created by template " -msgstr "テンプレートにより作成 " - -#: ../../include/functions_api.php:15505 ../../godmode/agentes/agent_template.php:163 -msgid "Modules successfully added" -msgstr "モジュールを追加しました。" - -#: ../../include/functions_api.php:16203 -msgid "Event filter successfully created." -msgstr "イベントフィルタを作成しました。" - -#: ../../include/functions_api.php:16436 -msgid "Event filter successfully updated." -msgstr "イベントフィルタを更新しました。" - -#: ../../include/functions_api.php:16477 -msgid "Event filter successfully deleted." -msgstr "イベントフィルタを削除しました。" - -#: ../../include/functions_api.php:16793 -msgid "Validated traps." -msgstr "トラップを承諾しました。" - -#: ../../include/functions_api.php:16820 -msgid "Deleted traps." -msgstr "トラップを削除しました。" - -#: ../../include/functions_api.php:17013 -#, php-format -msgid "Successfully updated module/alert count in id agent %d." -msgstr "エージェント ID %d のモジュール/アラートカウントを更新しました。" - -#: ../../include/functions_api.php:17015 -msgid "Successfully updated module/alert count in all agents" -msgstr "全エージェントのモジュール/アラートカウントを更新しました。" - -#: ../../include/functions_api.php:17467 -#, php-format -msgid "Successfully added to delete pending id agent %d to id policy %d." -msgstr "削除保留エージェント ID %d をポリシー ID %d に追加しました。" - -#: ../../include/functions_api.php:17627 -msgid "Error enable/disable discovery task. Id_user cannot be left blank." -msgstr "自動検出タスクの有効化/無効化エラー。id_user は空にできません。" - -#: ../../include/functions_api.php:17635 -msgid "Error enable/disable discovery task. Enable/disable value cannot be left blank." -msgstr "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。" - -#: ../../include/functions_api.php:17660 -msgid "Error in discovery task enabling/disabling." -msgstr "自動検出タスクの有効化/無効化エラー。" - -#: ../../include/functions_api.php:17668 -msgid "Enabled discovery task." -msgstr "自動検出タスクを有効化しました。" - -#: ../../include/functions_api.php:17676 -msgid "Disabled discovery task." -msgstr "自動検出タスクを無効化しました。" - -#: ../../include/functions_filemanager.php:135 -#: ../../include/functions_filemanager.php:192 -#: ../../include/functions_filemanager.php:247 -#: ../../include/functions_filemanager.php:340 -msgid "Security error" -msgstr "セキュリティエラー" - -#: ../../include/functions_filemanager.php:154 -msgid "Upload error" -msgstr "アップロードエラー" - -#: ../../include/functions_filemanager.php:163 -#, php-format -msgid "Issue setting umask: %s" -msgstr "umask の設定に問題があります: %s" - -#: ../../include/functions_filemanager.php:168 -#: ../../include/functions_filemanager.php:198 -msgid "Upload correct" -msgstr "アップロードしました" - -#: ../../include/functions_filemanager.php:195 -msgid "It was impossible to uncompress your file" -msgstr "ファイルを解凍できませんでした" - -#: ../../include/functions_filemanager.php:211 -msgid "" -"File size seems to be too large. Please check your php.ini configuration or contact " -"with the administrator" -msgstr "" -"ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してください。" - -#: ../../include/functions_filemanager.php:260 -msgid "File created correctly" -msgstr "ファイルを作成しました" - -#: ../../include/functions_filemanager.php:263 -msgid "Error creating file" -msgstr "ファイル作成エラー" - -#: ../../include/functions_filemanager.php:270 -#: ../../include/functions_filemanager.php:320 -msgid "Error creating file with empty name" -msgstr "ファイル名未指定によるファイル作成エラー" - -#: ../../include/functions_filemanager.php:296 -#: ../../enterprise/meta/advanced/collections.editor.php:167 -#: ../../enterprise/godmode/agentes/collections.editor.php:198 -msgid "Security error." -msgstr "セキュリティエラー" - -#: ../../include/functions_filemanager.php:311 -msgid "Directory created" -msgstr "ディレクトリを作成しました" - -#: ../../include/functions_filemanager.php:314 -msgid "Something gone wrong creating directory" -msgstr "ディレクトリ作成で何らかの問題が発生しました" - -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -#: ../../include/functions_reporting_html.php:1662 -#: ../../enterprise/include/functions_inventory.php:860 -#: ../../enterprise/include/functions_inventory.php:925 -msgid "Deleted" -msgstr "削除しました" - -#: ../../include/functions_filemanager.php:539 -#: ../../include/functions_filemanager.php:775 -msgid "Create a Directory" -msgstr "ディレクトリ作成" - -#: ../../include/functions_filemanager.php:543 -#: ../../include/functions_filemanager.php:786 -#: ../../include/functions_filemanager.php:789 -msgid "Create a Text" -msgstr "テキストの作成" - -#: ../../include/functions_filemanager.php:547 -#: ../../include/functions_filemanager.php:800 -#: ../../include/functions_filemanager.php:803 -msgid "Upload Files" -msgstr "ファイルをアップロード" - -#: ../../include/functions_filemanager.php:578 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "%s ディレクトリは存在しません!" - -#: ../../include/functions_filemanager.php:590 ../../godmode/setup/file_manager.php:66 -#: ../../godmode/servers/plugin.php:235 -#, php-format -msgid "Index of %s" -msgstr "%s 一覧" - -#: ../../include/functions_filemanager.php:605 -#: ../../extensions/files_repo/files_repo_list.php:58 -msgid "Last modification" -msgstr "最終更新" - -#: ../../include/functions_filemanager.php:623 -msgid "Parent directory" -msgstr "親ディレクトリ" - -#: ../../include/functions_filemanager.php:637 -msgid "Directory" -msgstr "ディレクトリ" - -#: ../../include/functions_filemanager.php:645 -msgid "Compressed file" -msgstr "圧縮ファイル" - -#: ../../include/functions_filemanager.php:649 -#: ../../include/functions_filemanager.php:656 -msgid "Text file" -msgstr "テキストファイル" - -#: ../../include/functions_filemanager.php:689 -msgid "This file could be executed by any user" -msgstr "このファイルは任意のユーザで実行できます。" - -#: ../../include/functions_filemanager.php:690 -msgid "Make sure it can't perform dangerous tasks" -msgstr "危険な処理はできないことを確認してください" - -#: ../../include/functions_filemanager.php:737 -#: ../../enterprise/meta/advanced/collections.editor.php:125 -#: ../../enterprise/meta/advanced/collections.editor.php:193 -#: ../../enterprise/godmode/agentes/collections.editor.php:158 -#: ../../enterprise/godmode/agentes/collections.editor.php:224 -#: ../../godmode/servers/plugin.php:173 -msgid "Edit file" -msgstr "ファイル編集" - -#: ../../include/functions_filemanager.php:758 -msgid "No files or directories to show." -msgstr "表示するファイルまたはディレクトリがありません。" - -#: ../../include/functions_filemanager.php:772 -#: ../../include/functions_filemanager.php:898 -msgid "Create directory" -msgstr "ディレクトリの作成" - -#: ../../include/functions_filemanager.php:834 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "" -"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロードも簡" -"単です。" - -#: ../../include/functions_filemanager.php:836 -msgid "Decompress" -msgstr "展開" - -#: ../../include/functions_filemanager.php:853 -#: ../../enterprise/include/class/CSVImportAgents.class.php:196 -#: ../../enterprise/extensions/csv_import_group/main.php:105 -msgid "Go" -msgstr "実行" - -#: ../../include/functions_filemanager.php:910 -msgid "Create text" -msgstr "テキストの作成" - -#: ../../include/functions_filemanager.php:922 -msgid "Upload file/s" -msgstr "ファイルのアップロード" - -#: ../../include/functions_filemanager.php:931 -msgid "The directory is read-only" -msgstr "ディレクトリが読み出し専用です。" - -#: ../../include/functions_treeview.php:52 -msgid "There was a problem loading module" -msgstr "モジュールの読み込みで問題が発生しました。" - -#: ../../include/functions_treeview.php:90 ../../include/functions_treeview.php:102 -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:372 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../godmode/modules/manage_network_components_form_common.php:224 -#: ../../godmode/massive/massive_edit_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:686 -#: ../../godmode/agentes/module_manager_editor_common.php:444 -#: ../../godmode/agentes/module_manager_editor_common.php:505 -msgid "Str." -msgstr "文字列" - -#: ../../include/functions_treeview.php:315 ../../include/graphs/functions_flot.php:509 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:4367 -msgid "No data" -msgstr "データがありません" - -#: ../../include/functions_treeview.php:342 -msgid "Go to module edition" -msgstr "モジュールの編集へ行く" - -#: ../../include/functions_treeview.php:393 -msgid "There was a problem loading alerts" -msgstr "アラートの読み込みで問題が発生しました。" - -#: ../../include/functions_treeview.php:454 -#: ../../include/functions_reporting_html.php:5037 -#: ../../include/functions_reporting_html.php:5159 -#: ../../godmode/snmpconsole/snmp_alert.php:1234 -msgid "Times fired" -msgstr "通知回数" - -#: ../../include/functions_treeview.php:478 -msgid "Go to alerts edition" -msgstr "アラートの編集へ行く" - -#: ../../include/functions_treeview.php:676 -msgid "Next agent contact" -msgstr "次の接続予定" - -#: ../../include/functions_treeview.php:703 -msgid "Edit cluster" -msgstr "クラスタ編集" - -#: ../../include/functions_treeview.php:707 -msgid "Go to agent edition" -msgstr "エージェントの編集へ行く" - -#: ../../include/functions_treeview.php:719 -msgid "Agent data" -msgstr "エージェントデータ" - -#: ../../include/functions_treeview.php:799 -msgid "Advanced information" -msgstr "拡張情報" - -#: ../../include/functions_treeview.php:812 -msgid "Agent access rate (24h)" -msgstr "エージェントアクセス頻度(過去24時間)" - -#: ../../include/functions_treeview.php:831 ../../mobile/operation/agent.php:268 -msgid "Events (24h)" -msgstr "イベント (24時間)" - -#: ../../include/functions_treeview.php:901 -msgid "Interface information" -msgstr "インタフェース情報" - -#: ../../include/functions_container.php:148 ../../godmode/reporting/graphs.php:312 -msgid "Number of Graphs" -msgstr "グラフ数" - -#: ../../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:49 -msgid "" -"Now, you have to go to the monitors list and look for a critical module to apply the " -"alert." -msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail." -msgstr "" -"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を選択し" -"ます。" - -#: ../../include/help/clippy/topology_group.php:35 -msgid "Topology Group" -msgstr "トポロジグループ" - -#: ../../include/help/clippy/topology_group.php:35 -msgid "" -"Please note that group topology maps do not show the parent relationship between " -"nodes, it only shows the group parentship and the agent distribution inside them. " -msgstr "" -"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グループ" -"の親子関係とその中にあるエージェントのみを表示します。 " - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "Data Configuration Module." -msgstr "データ設定モジュール" - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Please note that information provided here affects how the agent collect information " -"and generate the data XML. Any data/configuration reported by the agent, different " -"from data or description is discarded, and the configuration shown in the console " -"prevails over any configuration coming from the agent, this applies for example for " -"crit/warn thresholds, interval, module group, min/max value, tags, etc." -msgstr "" -"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で影響が" -"あるということに注意してください。エージェントから送られてくるデータや設定のうち、デー" -"タおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、最小・最大の値、タグな" -"どは、コンソールに設定されているものが優先されます。" - -#: ../../include/help/clippy/data_configuration_module.php:35 -msgid "" -"Information imported FIRST time from the XML will fill the information you can see in " -"the console, but after the first import, system will ignore any update coming from " -"the XML/Agent." -msgstr "" -"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができます" -"が、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無視します。" - -#: ../../include/help/clippy/homepage.php:75 -msgid "Hi, can I help you?" -msgstr "こんにちは、お手伝いしましょうか?" - -#: ../../include/help/clippy/homepage.php:75 -#, php-format -msgid "" -"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can follow " -"my steps to do basic tasks in %s or you can close me and never see me again." -msgstr "" -"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私の手順" -"に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わないようにすること" -"ができます。" - -#: ../../include/help/clippy/homepage.php:75 -msgid "Close this wizard and don't open it again." -msgstr "このウィザードを閉じて、再度開かないでください。" - -#: ../../include/help/clippy/homepage.php:79 -msgid "Which task would you like to do first?" -msgstr "どのタスクを最初に実行したいですか。" - -#: ../../include/help/clippy/homepage.php:79 -#, php-format -msgid "Ping a Linux or Windows server using a %s agent." -msgstr "%s エージェントで Linux または Windows サーバへの ping を実行します。" - -#: ../../include/help/clippy/homepage.php:79 -msgid "Create a alert by email in a critical module." -msgstr "障害モジュールで email によるアラートを作成します。" - -#: ../../include/help/clippy/homepage.php:190 -#, php-format -msgid "The first thing you have to do is to setup the e-mail config on the %s Server." -msgstr "最初に実行すべきは、%s サーバでの e-mail 設定です。" - -#: ../../include/help/clippy/homepage.php:190 -msgid "If you have it already configured you can go to the next step." -msgstr "すでに設定済であれば、次のステップへ行きます。" - -#: ../../include/help/clippy/homepage.php:195 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "ここで、アラート管理メニューからアクションをクリックします。 " - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "ここでモジュールへ行きます。誘導しますので心配はいりません。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 -msgid "Click in this tab.." -msgstr "このタブをクリックします。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "" -"ここでモジュールを作成する必要があります。心配する必要はありません。お教えします。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 -msgid "Choose the network server module." -msgstr "ネットワークサーバモジュールを選択します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 -msgid "And click the button." -msgstr "そしてボタンをクリックします。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 -msgid "Now we are going to fill the form." -msgstr "ここでフォームに入力します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 -msgid "Please choose Network Management." -msgstr "ネットワーク管理を選択してください。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 -msgid "Choose the component named \"Host alive\"." -msgstr "コンポーネント名 \"Host alive\" を選択してください。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 -msgid "You can change the name if you want." -msgstr "必要であれば名前を変更できます。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 -msgid "Check if the IP showed is the IP of your machine." -msgstr "表示された IP があなたのマシンの IP かどうか確認します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 -msgid "And only to finish it is clicking this button." -msgstr "そしてこのボタンをクリックするだけで終了です。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 -msgid "" -"Congrats! Your module has been created.
    and the status color is blue.
    That color means that the module hasn't been executed for the first time. In " -"the next seconds, if there is no problem, the status color will turn into red " -"or green." -msgstr "" -"おめでとうございます! モジュールが作成されました。
    そして、状態の色は で" -"す。
    この色は、モジュールの初回実行が完了していないことを意味しています。問題が" -"なければ数秒のうちに状態の色がまたはに変わります。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 -msgid "Done" -msgstr "完了" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "アラートを追加するために、アラートタブをクリックしフォームに入力します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 -msgid "Select the critical module." -msgstr "障害モジュールを選択します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 -msgid "In template select \"Critical Condition\"." -msgstr "テンプレートで \"Critical Condition\" を選択します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 -msgid "Now, select the action created before." -msgstr "ここで事前に作成したアクションを選択します。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "Click on Add Alert button to create the alert." -msgstr "アラートを作成するために、アラートの追加ボタンをクリックします。" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 -msgid "" -"To test the alert you've just created go to the main view by clicking on the eye tab." -msgstr "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。" - -#: ../../include/help/clippy/servers_down.php:35 -msgid "All servers down" -msgstr "全てのサーバが停止しています。" - -#: ../../include/help/clippy/servers_down.php:35 -msgid "" -"Can you up all servers. You go to terminal in linux and execute the next command: " -"\"sudo /etc/init.d/pandora_server restart\". It's possible need introduce root pass." -msgstr "" -"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server " -"restart\" を実行します。root のパスワードが必要です。" - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "The configuration of email for the task email is in the enterprise setup:" -msgstr "タスクメールの設定は、Enterprise 設定にあります:" - -#: ../../include/help/clippy/extension_cron_send_email.php:35 -msgid "Please check if the email configuration is correct." -msgstr "メール設定が正しいか確認してください。" - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "You have unknown modules in this agent." -msgstr "このエージェントには不明モジュールがあります。" - -#: ../../include/help/clippy/module_unknow.php:35 -msgid "" -"Unknown modules are modules which receive data normally at least in one occassion, " -"but at this time are not receving data. Please check our troubleshoot help page to " -"help you determine why you have unknown modules." -msgstr "" -"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデータを受信" -"していないモジュールです。なぜ不明モジュールがあるのか原因を特定するには、トラブル" -"シュートのためのヘルプページを確認してください。" - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "You have non initialized modules" -msgstr "未初期化モジュールがあります。" - -#: ../../include/help/clippy/modules_not_init.php:35 -msgid "" -"This happen when you have just created a module and it's not executed at first time. " -"Usually in a few seconds should be initialized and you will be able to see in main " -"view. If you keep non-init modules for more than 24hr (due a problem in it's " -"execution or configuration) they will be automatically deleted by the system. Non-" -"init are not visible in the “main view”, you can see/edit them in the module " -"administration section, in the agent administrator." -msgstr "" -"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で初期化さ" -"れメイン画面で参照できるようになります。24時間以上(実行や設定に問題がある等で)未初期化" -"モジュールが放置された場合は、システムにより自動的に削除されます。未初期化モジュール" -"は、メインがメインに表示されません。エージェント管理のモジュール管理画面でのみ参照や編" -"集ができます。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 -msgid "Fill the name of your action." -msgstr "アクション名を入力します。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 -msgid "" -"Select the group in the drop-down list and filter for ACL (the user in this group can " -"use your action to create an alert)." -msgstr "" -"ドロップダウンリストのグループとACLフィルタ(アラート作成のためにこのグループのユーザが" -"あなたのアクションを利用できます)を選択してください。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 -msgid "In the command field select \"email\"." -msgstr "コマンドフィールドで \"email\" を選択します。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 -msgid "In the threshold field enter the seconds. The help icon show more information." -msgstr "" -"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示します。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 -msgid "" -"In the first field enter the email address/addresses where you want to receive the " -"email alerts separated with comas ( , ) or white spaces." -msgstr "" -"最初のフィールドにメールでアラートを受け取りたい email アドレスを入力してください。カ" -"ンマ(,)またはスペース区切りで複数指定できます。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for each name." -msgstr "" -"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが利用" -"できます。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 -msgid "" -"In the text field, you can also use macros. Get more information about the macros by " -"clicking on the help icon." -msgstr "" -"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイコンをク" -"リックしてください。" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 -msgid "Click on Create button to create the action." -msgstr "アクションを作成するには、作成ボタンをクリックします。" - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "Interval Agent." -msgstr "エージェントの間隔" - -#: ../../include/help/clippy/interval_agent_min.php:35 -msgid "" -"Please note that having agents with a monitoring interval below 300 seconds is not " -"recommended. This will impact seriously in the performance of the server. For " -"example, having 200 agents with one minute interval, is the same than having 1000 " -"agents with a 5 minute interval. The probability of getting unknown modules is " -"higher, and the impact on the server is higher because it requires a shorter response " -"time." -msgstr "" -"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意してくださ" -"い。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間隔で 200エー" -"ジェントがある場合は、5分間隔で 1000エージェントがあるのと同じです。おそらく短時間の応" -"答が必要になるため、不明モジュールが多くなりサーバへのインパクトは大きくなるでしょう。" - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "Excesive Queued." -msgstr "実行キュー" - -#: ../../include/help/clippy/server_queued_modules.php:35 -msgid "" -"You have too much items in the processing queue. This can happen if your server is " -"too loaded and/or not properly configured. This could be something temporal, or a " -"bottleneck. One possible solution is increase number of server threads, but you " -"should consider getting support about this." -msgstr "" -"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、または" -"サーバが正しく設定されていません。これは一時的なものかもしれませんが、ボトルネックにな" -"ります。一つの解決策としてはサーバのスレッド数を増やすことです。しかし、これについては" -"支援を得ることを考慮した方がよいでしょう。" - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"Please note that you have your agent setup to do not add new modules coming from the " -"data XML." -msgstr "" -"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっているこ" -"とに注意してください。" - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"That means if you have a local plugin or add manually new modules to the " -"configuration file, you won't have it in your agent, unless you first create manually " -"in the interface (with the exact name and type as coming in the XML file)." -msgstr "" -"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加した場合" -"は、インタフェースで手動作成するまでエージェントに反映されないということを意味します" -"(正しい名前とタイプは XML で送られます)。" - -#: ../../include/help/clippy/modules_not_learning_mode.php:46 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to add more " -"modules to the agent." -msgstr "" -"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使います。" - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "" -"The last step is to check the alert created. Click on the round icon to force the " -"action execution and after a few minutes you will receive the alert in your email." -msgstr "" -"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイコンをク" -"リックします。数分のうちにアラートをメールで受信するでしょう。" - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 -msgid "And restart your pandora server to read again general configuration tokens." -msgstr "そして、設定ファイルを再読み込みするために pandora サーバを再起動します。" - -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "Agent contact date passed it's ETA!." -msgstr "エージェント接続日時が予想時間を過ぎました。" - -#: ../../include/help/clippy/agent_out_of_limits.php:35 -msgid "" -"This happen when your agent stopped reporting or the server have any problem (too " -"load or just down). Check also connectivity between the agent and the server." -msgstr "" -"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)していると" -"きにこれが起こります。エージェントとサーバの間の通信も確認してください。" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 -msgid "" -"Now, you have to go to the monitors list and look for a \"critical\" module to apply " -"the alert." -msgstr "" -"ここでアラートを適用するには、監視一覧へ行き \"障害\" 状態のモジュールを探します。" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 -msgid "" -"If you know the name of the agent or the name of the module in critical status, type " -"it in this field to make the module list shorter. You can write the entire name or " -"just a part of it." -msgstr "" -"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧を短くす" -"るためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力ができます。" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 -msgid "Click on Show button to get the modules list filtered." -msgstr "フィルタしたモジュール一覧は、表示ボタンをクリックします。" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 -msgid "Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" -"ここでモジュールを編集するには、タイプカラムにあるスパナアイコンをクリックします。" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 -msgid "I'm going to show you how to monitor a server." -msgstr "サーバの監視の仕方をお見せします。" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "サーバ監視のモジュールを保存するためにエージェントを入力してください。" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 -msgid "If you have typed the name correctly you will see the agent." -msgstr "正しく名前を入力したら、エージェントが表示されます。" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 -msgid "Now, please choose the agent you searched." -msgstr "検索したエージェントを選択してください。" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 -msgid "Choose the agent and click on the name." -msgstr "エージェントを選択し名前をクリックします。" - -#: ../../include/functions_graph.php:1089 ../../include/functions_reporting.php:4326 -#: ../../include/functions_reporting.php:4369 -msgid "No data to display within the selected interval" -msgstr "選択した期間では表示するデータがありません" - -#: ../../include/functions_graph.php:1538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 -#: ../../godmode/reporting/reporting_builder.list_items.php:445 -msgid "No items." -msgstr "アイテムがありません。" - -#: ../../include/functions_graph.php:2630 -msgid "Not fired alerts" -msgstr "未発報アラート" - -#: ../../include/functions_graph.php:2898 ../../include/functions_graph.php:2946 -#: ../../include/graphs/functions_gd.php:183 ../../include/graphs/functions_gd.php:466 -msgid "Out of limits" -msgstr "範囲外" - -#: ../../include/functions_graph.php:3548 ../../include/functions_graph.php:3549 -#: ../../include/functions_graph.php:5135 ../../include/functions.php:1043 -#: ../../include/functions.php:1272 ../../include/functions.php:1323 -msgid "Minor" -msgstr "マイナー" - -#: ../../include/functions_graph.php:3558 ../../include/functions_graph.php:3559 -#: ../../include/functions_graph.php:5139 ../../include/functions.php:1047 -#: ../../include/functions.php:1274 ../../include/functions.php:1327 -msgid "Major" -msgstr "メジャー" - -#: ../../include/functions_graph.php:5518 -msgid "Main node" -msgstr "メインノード" - -#: ../../include/functions_snmp_browser.php:355 -msgid "The server did not return any response." -msgstr "サーバが応答を返しませんでした。" - -#: ../../include/functions_snmp_browser.php:556 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 -#: ../../godmode/setup/snmp_wizard.php:42 -msgid "OID" -msgstr "OID" - -#: ../../include/functions_snmp_browser.php:558 -msgid "Numeric OID" -msgstr "数値 OID" - -#: ../../include/functions_snmp_browser.php:576 -msgid "Syntax" -msgstr "書式" - -#: ../../include/functions_snmp_browser.php:582 -msgid "Display hint" -msgstr "ヒント表示" - -#: ../../include/functions_snmp_browser.php:588 -msgid "Max access" -msgstr "最大アクセス" - -#: ../../include/functions_snmp_browser.php:612 -msgid "OID Information" -msgstr "OID 情報" - -#: ../../include/functions_snmp_browser.php:638 -#: ../../godmode/agentes/module_manager.php:1205 -msgid "Create network component" -msgstr "ネットワークコンポーネントの作成" - -#: ../../include/functions_snmp_browser.php:647 -msgid "Create agent module" -msgstr "エージェントモジュール作成" - -#: ../../include/functions_snmp_browser.php:727 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 -msgid "Community" -msgstr "コミュニティ" - -#: ../../include/functions_snmp_browser.php:736 -msgid "Starting OID" -msgstr "開始 OID" - -#: ../../include/functions_snmp_browser.php:746 -#: ../../include/functions_reporting_html.php:1524 -#: ../../enterprise/tools/ipam/ipam_calculator.php:52 -#: ../../enterprise/include/functions_reporting_csv.php:718 -#: ../../enterprise/include/class/AgentRepository.class.php:366 -#: ../../enterprise/include/class/AgentRepository.class.php:632 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 -#: ../../enterprise/godmode/servers/list_satellite.php:39 -#: ../../godmode/servers/servers.build_table.php:82 -#: ../../godmode/update_manager/update_manager.history.php:40 -#: ../../godmode/extensions.php:139 -#: ../../godmode/reporting/reporting_builder.item_editor.php:78 -msgid "Version" -msgstr "バージョン" - -#: ../../include/functions_snmp_browser.php:786 -msgid "Server to execute" -msgstr "実行サーバ" - -#: ../../include/functions_snmp_browser.php:801 -msgid "Browse" -msgstr "参照" - -#: ../../include/functions_snmp_browser.php:826 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 -#: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/massive/massive_edit_modules.php:852 -#: ../../godmode/wizards/HostDevices.class.php:1259 -#: ../../godmode/agentes/module_manager_editor_network.php:336 -msgid "Auth user" -msgstr "認証ユーザ" - -#: ../../include/functions_snmp_browser.php:836 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -#: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1270 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -msgid "Auth password" -msgstr "認証パスワード" - -#: ../../include/functions_snmp_browser.php:856 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1291 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -msgid "DES" -msgstr "DES" - -#: ../../include/functions_snmp_browser.php:857 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1292 -#: ../../godmode/agentes/module_manager_editor_network.php:370 -msgid "AES" -msgstr "AES" - -#: ../../include/functions_snmp_browser.php:877 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 -#: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1317 -#: ../../godmode/agentes/module_manager_editor_network.php:391 -msgid "Auth method" -msgstr "認証方式" - -#: ../../include/functions_snmp_browser.php:881 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1323 -#: ../../godmode/agentes/module_manager_editor_network.php:395 -msgid "SHA" -msgstr "SHA" - -#: ../../include/functions_snmp_browser.php:893 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 -#: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1337 -#: ../../godmode/agentes/module_manager_editor_network.php:411 -msgid "Not auth and not privacy method" -msgstr "認証なし、暗号化なし" - -#: ../../include/functions_snmp_browser.php:894 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 -#: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1338 -#: ../../godmode/agentes/module_manager_editor_network.php:412 -msgid "Auth and not privacy method" -msgstr "認証あり、暗号化なし" - -#: ../../include/functions_snmp_browser.php:895 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 -#: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1339 -#: ../../godmode/agentes/module_manager_editor_network.php:413 -msgid "Auth and privacy method" -msgstr "認証あり、暗号化あり" - -#: ../../include/functions_snmp_browser.php:939 -msgid "First match" -msgstr "最初のマッチ" - -#: ../../include/functions_snmp_browser.php:952 -msgid "Previous match" -msgstr "前のマッチ" - -#: ../../include/functions_snmp_browser.php:965 -msgid "Next match" -msgstr "次のマッチ" - -#: ../../include/functions_snmp_browser.php:978 -msgid "Last match" -msgstr "最後のマッチ" - -#: ../../include/functions_snmp_browser.php:992 -msgid "Expand the tree (can be slow)" -msgstr "ツリーを展開する (遅くなります)" - -#: ../../include/functions_snmp_browser.php:1005 -msgid "Collapse the tree" -msgstr "ツリーを閉じる" - -#: ../../include/functions_snmp_browser.php:1034 -msgid "SNMP v3 options" -msgstr "SNMP v3 オプション" - -#: ../../include/functions_snmp_browser.php:1044 -msgid "Search options" -msgstr "検索オプション" - -#: ../../include/functions_snmp_browser.php:1065 -msgid "Search matches" -msgstr "検索マッチ" - -#: ../../include/functions_snmp_browser.php:1081 -msgid "Create agent modules" -msgstr "エージェントモジュール作成" - -#: ../../include/functions_snmp_browser.php:1090 -msgid "Create policy modules" -msgstr "ポリシーモジュール作成" - -#: ../../include/functions_snmp_browser.php:1099 -msgid "Create network components" -msgstr "ネットワークコンポーネント作成" - -#: ../../include/functions_snmp_browser.php:1511 -msgid " available" -msgstr " があります" - -#: ../../include/functions_snmp_browser.php:1511 -#: ../../include/functions_snmp_browser.php:1513 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Select all" -msgstr "全てを選択" - -#: ../../include/functions_snmp_browser.php:1513 -msgid " to apply" -msgstr " を適用" - -#: ../../include/functions_snmp_browser.php:1566 -msgid "Undo" -msgstr "元に戻す" - -#: ../../include/functions_reporting.php:364 -msgid " agents" -msgstr " エージェント" - -#: ../../include/functions_reporting.php:374 -msgid " modules" -msgstr " モジュール" - -#: ../../include/functions_reporting.php:996 ../../include/functions_reporting.php:8556 -#: ../../enterprise/include/functions_reporting.php:2493 -#: ../../enterprise/include/functions_reporting.php:3437 -#: ../../enterprise/include/functions_reporting.php:4412 -msgid "There are no SLAs defined" -msgstr "SLA が定義されていません。" - -#: ../../include/functions_reporting.php:1071 ../../include/functions_reporting.php:8934 -#: ../../enterprise/include/functions_reporting.php:2546 -#: ../../enterprise/include/functions_reporting.php:3490 -#: ../../enterprise/include/functions_reporting.php:4465 -msgid "Inverse" -msgstr "反転" - -#: ../../include/functions_reporting.php:1510 -msgid "Top N" -msgstr "トップ N" - -#: ../../include/functions_reporting.php:1520 ../../include/functions_ui.php:2604 -#: ../../include/functions_reporting_html.php:4691 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206 -#: ../../enterprise/meta/include/functions_wizard_meta.php:983 -#: ../../enterprise/meta/include/functions_wizard_meta.php:992 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1068 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1077 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1271 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1280 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1593 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1602 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1713 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1722 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1808 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:378 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:745 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1303 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2404 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Max" -msgstr "最大" - -#: ../../include/functions_reporting.php:1524 ../../include/functions_ui.php:2604 -#: ../../include/functions_reporting_html.php:4692 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206 -#: ../../enterprise/meta/include/functions_wizard_meta.php:981 -#: ../../enterprise/meta/include/functions_wizard_meta.php:990 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1269 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1278 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1506 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1591 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1600 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:273 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:737 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2411 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Min" -msgstr "最小" - -#: ../../include/functions_reporting.php:1530 -#: ../../include/functions_reporting_html.php:4690 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2456 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2418 -msgid "Avg" -msgstr "平均" - -#: ../../include/functions_reporting.php:1582 ../../include/functions_reporting.php:3162 -#: ../../include/functions_reporting_html.php:801 -#: ../../include/functions_reporting_html.php:4209 -#: ../../include/functions_reporting_html.php:4758 -#: ../../include/functions_reporting_html.php:4761 -#: ../../enterprise/include/functions_reporting.php:5146 -msgid "There are no Agent/Modules defined" -msgstr "定義済のエージェント/モジュールがありません" - -#: ../../include/functions_reporting.php:1638 -msgid "Insuficient data" -msgstr "不十分なデータ" - -#: ../../include/functions_reporting.php:1889 -msgid "Event Report Group" -msgstr "イベントレポートグループ" - -#: ../../include/functions_reporting.php:1937 -msgid "Exclude " -msgstr "除外 " - -#: ../../include/functions_reporting.php:2185 -msgid "Event Report Module" -msgstr "イベントレポートモジュール" - -#: ../../include/functions_reporting.php:2517 -#: ../../enterprise/include/functions_reporting_csv.php:740 -msgid "Inventory Changes" -msgstr "インベントリ変更" - -#: ../../include/functions_reporting.php:2590 -#: ../../enterprise/tools/ipam/ipam_action.php:385 -msgid "No changes found." -msgstr "変更が見つかりません。" - -#: ../../include/functions_reporting.php:2687 -#: ../../enterprise/operation/log/log_viewer.php:1256 -#: ../../enterprise/operation/log/log_viewer.php:1264 -#: ../../enterprise/operation/agentes/agent_inventory.php:254 -#: ../../enterprise/operation/inventory/inventory.php:459 -#: ../../enterprise/operation/inventory/inventory.php:502 -#: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../godmode/reporting/reporting_builder.php:1262 -msgid "No data found." -msgstr "データがありません。" - -#: ../../include/functions_reporting.php:2714 ../../godmode/alerts/alert_actions.php:74 -msgid "Alert actions" -msgstr "アクション" - -#: ../../include/functions_reporting.php:2823 -msgid "Agent/Modules" -msgstr "エージェント/モジュール" - -#: ../../include/functions_reporting.php:2864 ../../extensions/agents_modules.php:750 -msgid "There are no agents with modules" -msgstr "モジュールが定義されたエージェントがありません。" - -#: ../../include/functions_reporting.php:2920 -msgid "Agent/Modules Status" -msgstr "エージェント/モジュール状態" - -#: ../../include/functions_reporting.php:3069 -msgid "Exception - Everything" -msgstr "例外 - 全て" - -#: ../../include/functions_reporting.php:3070 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2536 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:422 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2546 -msgid "Everything" -msgstr "すべて" - -#: ../../include/functions_reporting.php:3075 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "例外 - モジュールが %s 以上" - -#: ../../include/functions_reporting.php:3078 -#, php-format -msgid "Modules over or equal to %s" -msgstr "%s 以上のモジュール" - -#: ../../include/functions_reporting.php:3083 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "例外 - モジュールが %s 以下" - -#: ../../include/functions_reporting.php:3086 -#, php-format -msgid "Modules under or equal to %s" -msgstr "%s 以下のモジュール" - -#: ../../include/functions_reporting.php:3091 -#, php-format -msgid "Exception - Modules under %s" -msgstr "例外 - モジュールが %s 未満" - -#: ../../include/functions_reporting.php:3094 -#, php-format -msgid "Modules under %s" -msgstr "%s 未満のモジュール" - -#: ../../include/functions_reporting.php:3099 -#, php-format -msgid "Exception - Modules over %s" -msgstr "例外 - モジュールが %s より大きい" - -#: ../../include/functions_reporting.php:3102 -#, php-format -msgid "Modules over %s" -msgstr "%s を超えるモジュール" - -#: ../../include/functions_reporting.php:3107 -#, php-format -msgid "Exception - Equal to %s" -msgstr "例外 - %s と同じ" - -#: ../../include/functions_reporting.php:3110 -#, php-format -msgid "Equal to %s" -msgstr "%s と同じ" - -#: ../../include/functions_reporting.php:3115 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "例外 - %s と異なる" - -#: ../../include/functions_reporting.php:3118 -#, php-format -msgid "Not equal to %s" -msgstr "%s と異なる" - -#: ../../include/functions_reporting.php:3122 -msgid "Exception - Modules at normal status" -msgstr "例外 - モジュールが正常状態" - -#: ../../include/functions_reporting.php:3123 -msgid "Modules at normal status" -msgstr "正常状態のモジュール" - -#: ../../include/functions_reporting.php:3127 -msgid "Exception - Modules at critical or warning status" -msgstr "例外 - モジュールが障害または警告状態" - -#: ../../include/functions_reporting.php:3128 -msgid "Modules at critical or warning status" -msgstr "障害または警告状態のモジュール" - -#: ../../include/functions_reporting.php:3347 -msgid "There are no Modules under those conditions." -msgstr "これらの条件のモジュールはありません。" - -#: ../../include/functions_reporting.php:3351 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "%s 以上のモジュールがありません。" - -#: ../../include/functions_reporting.php:3355 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "%s 以下のモジュールがありません。" - -#: ../../include/functions_reporting.php:3359 -#, php-format -msgid "There are no Modules less %s." -msgstr "%s 未満のモジュールがありません。" - -#: ../../include/functions_reporting.php:3363 -#, php-format -msgid "There are no Modules over %s." -msgstr "%s を超えるモジュールがありません。" - -#: ../../include/functions_reporting.php:3367 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "%s と同じモジュールがありません。" - -#: ../../include/functions_reporting.php:3371 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "%s と異なるモジュールがありません。" - -#: ../../include/functions_reporting.php:3375 -msgid "There are no Modules normal status" -msgstr "正常状態のモジュールがありません" - -#: ../../include/functions_reporting.php:3379 -msgid "There are no Modules at critial or warning status" -msgstr "障害または警告状態のモジュールはありません" - -#: ../../include/functions_reporting.php:3536 -#: ../../enterprise/include/functions_reporting_csv.php:969 -msgid "Group Report" -msgstr "グループレポート" - -#: ../../include/functions_reporting.php:3716 -msgid "Event Report Agent" -msgstr "イベントレポートエージェント" - -#: ../../include/functions_reporting.php:3945 -#: ../../enterprise/include/functions_reporting_csv.php:2175 -#: ../../enterprise/godmode/modules/configure_local_component.php:447 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 -#: ../../godmode/modules/manage_network_components_form_common.php:305 -#: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../godmode/agentes/module_manager_editor_common.php:532 -msgid "Historical data" -msgstr "データの保存" - -#: ../../include/functions_reporting.php:4080 -msgid "Database Serialized" -msgstr "データベースの並び" - -#: ../../include/functions_reporting.php:4276 -msgid "Last Value" -msgstr "最新の値" - -#: ../../include/functions_reporting.php:4438 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3334 -msgid "Unnasigned group" -msgstr "未割当グループ" - -#: ../../include/functions_reporting.php:4444 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3288 -msgid "Unassigned group" -msgstr "未割当グループ" - -#: ../../include/functions_reporting.php:4600 -msgid "Network interfaces report" -msgstr "ネットワークインタフェースレポート" - -#: ../../include/functions_reporting.php:4694 -msgid "Custom render report" -msgstr "カスタムレンダリングレポート" - -#: ../../include/functions_reporting.php:4734 ../../include/functions_reporting.php:4760 -msgid "This query is insecure, it could apply unwanted modiffications on the schema" -msgstr "このクエリは安全ではなく、スキーマに不要な変更を適用する可能性があります" - -#: ../../include/functions_reporting.php:4991 -msgid "The group has no agents or none of the agents has any network interface" -msgstr "" -"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがありませ" -"ん" - -#: ../../include/functions_reporting.php:5012 -msgid "bytes/s" -msgstr "バイト/秒" - -#: ../../include/functions_reporting.php:5132 -#: ../../enterprise/include/functions_reporting_csv.php:2447 -msgid "Alert Report Group" -msgstr "アラートレポートグループ" - -#: ../../include/functions_reporting.php:5219 ../../include/functions_reporting.php:5236 -#: ../../include/functions_reporting.php:5253 -msgid "Not triggered" -msgstr "未発報" - -#: ../../include/functions_reporting.php:5312 -#: ../../enterprise/include/functions_reporting_csv.php:2445 -msgid "Alert Report Agent" -msgstr "アラートレポートエージェント" - -#: ../../include/functions_reporting.php:5479 -#: ../../enterprise/include/functions_reporting_csv.php:2443 -msgid "Alert Report Module" -msgstr "アラートレポートモジュール" - -#: ../../include/functions_reporting.php:5679 -msgid "SQL Graph Vertical Bars" -msgstr "SQL縦棒グラフ" - -#: ../../include/functions_reporting.php:5683 -msgid "SQL Graph Horizontal Bars" -msgstr "SQL横棒グラフ" - -#: ../../include/functions_reporting.php:5687 -msgid "SQL Graph Pie" -msgstr "SQL円グラフ" - -#: ../../include/functions_reporting.php:5771 -#: ../../enterprise/include/functions_reporting_csv.php:1415 -#: ../../enterprise/include/functions_reporting_csv.php:1433 -#: ../../enterprise/include/functions_reporting_csv.php:1435 -msgid "Monitor Report" -msgstr "モニタレポート" - -#: ../../include/functions_reporting.php:5914 -msgid "Netflow Area" -msgstr "Netflow塗りつぶしグラフ" - -#: ../../include/functions_reporting.php:5918 -msgid "Netflow Summary" -msgstr "Netflow 概要" - -#: ../../include/functions_reporting.php:5922 -msgid "Netflow Data" -msgstr "Netflowデータ" - -#: ../../include/functions_reporting.php:5930 -msgid "Unknown report" -msgstr "不明レポート" - -#: ../../include/functions_reporting.php:6024 -msgid "Prediction Date" -msgstr "予測日時" - -#: ../../include/functions_reporting.php:6129 -#: ../../enterprise/include/functions_reporting_csv.php:788 -msgid "Projection Graph" -msgstr "予想グラフ" - -#: ../../include/functions_reporting.php:6427 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../enterprise/include/functions_reporting_csv.php:1256 -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:310 -#: ../../godmode/agentes/module_manager_editor_common.php:668 -msgid "Max. Value" -msgstr "最大値" - -#: ../../include/functions_reporting.php:6431 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../enterprise/include/functions_reporting_csv.php:1201 -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:308 -#: ../../godmode/agentes/module_manager_editor_common.php:664 -msgid "Min. Value" -msgstr "最小値" - -#: ../../include/functions_reporting.php:6440 -#: ../../enterprise/include/functions_reporting_csv.php:1360 -#: ../../enterprise/include/functions_reporting_csv.php:1379 -#: ../../enterprise/include/functions_reporting_csv.php:1381 -#: ../../enterprise/include/functions_reporting_csv.php:1387 -#: ../../enterprise/include/functions_reporting_csv.php:1389 -msgid "AVG. Value" -msgstr "平均値" - -#: ../../include/functions_reporting.php:6656 ../../include/functions_reporting.php:6679 -#: ../../include/functions_reporting.php:6694 ../../include/functions_reporting.php:6710 -#: ../../include/functions_reporting.php:6725 -#: ../../include/functions_reporting_html.php:3516 -#: ../../include/functions_reporting_html.php:3545 -#: ../../include/functions_reporting_html.php:3586 -#: ../../include/functions_reporting_html.php:3609 -#: ../../include/functions_reporting_html.php:3612 -#: ../../include/functions_reporting_html.php:3619 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_pdf.php:526 -#: ../../enterprise/include/functions_reporting_pdf.php:558 -#: ../../enterprise/include/functions_reporting_pdf.php:584 -#: ../../enterprise/include/functions_reporting_pdf.php:609 -#: ../../enterprise/include/functions_reporting_pdf.php:612 -#: ../../enterprise/include/functions_reporting_pdf.php:619 -msgid "Maximun" -msgstr "最大" - -#: ../../include/functions_reporting.php:6674 -#: ../../include/functions_reporting_html.php:3585 -#: ../../include/functions_reporting_html.php:3592 -#: ../../include/functions_reporting_html.php:3600 -#: ../../include/functions_reporting_html.php:3611 -#: ../../include/functions_reporting_html.php:3616 -#: ../../enterprise/include/functions_reporting_csv.php:1235 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../enterprise/include/functions_reporting_pdf.php:583 -#: ../../enterprise/include/functions_reporting_pdf.php:590 -#: ../../enterprise/include/functions_reporting_pdf.php:597 -#: ../../enterprise/include/functions_reporting_pdf.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:616 -msgid "Lapse" -msgstr "経過" - -#: ../../include/functions_reporting.php:6847 -#: ../../enterprise/include/functions_reporting_csv.php:1084 -#: ../../enterprise/godmode/reporting/mysql_builder.php:232 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:6925 -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:8339 ../../include/functions_reporting.php:9057 -msgid "No Address" -msgstr "アドレスがありません" - -#: ../../include/functions_reporting.php:9356 -msgid "The monitor have no data in this range of dates or monitor type is not numeric" -msgstr "この日付範囲にデータが無いか、数値ではないタイプの監視項目です。" - -#: ../../include/functions_reporting.php:9374 -msgid "The monitor type is not numeric" -msgstr "監視タイプは数値ではありません。" - -#: ../../include/functions_reporting.php:9739 -#: ../../enterprise/include/functions_reporting_csv.php:1235 -msgid "Minimum" -msgstr "最小" - -#: ../../include/functions_reporting.php:9743 -msgid "Maximum" -msgstr "最大" - -#: ../../include/functions_reporting.php:9748 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:262 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:392 -msgid "Rate" -msgstr "率" - -#: ../../include/functions_reporting.php:9847 -msgid "Automatic combined graph" -msgstr "自動結合グラフ" - -#: ../../include/functions_reporting.php:10681 -msgid "Maximum of events shown" -msgstr "最大表示イベント" - -#: ../../include/functions_reporting.php:11257 -#: ../../include/functions_reporting.php:11281 -msgid "Server health" -msgstr "サーバの正常性" - -#: ../../include/functions_reporting.php:11257 -#, php-format -msgid "%d Downed servers" -msgstr "停止サーバ数 %d" - -#: ../../include/functions_reporting.php:11262 -#: ../../include/functions_reporting.php:11285 -msgid "Monitor health" -msgstr "モニタ項目の正常性" - -#: ../../include/functions_reporting.php:11262 -#, php-format -msgid "%d Not Normal monitors" -msgstr "非正常数 %d" - -#: ../../include/functions_reporting.php:11262 -#: ../../include/functions_reporting.php:11286 -msgid "of monitors up" -msgstr "のモニタ項目が正常です。" - -#: ../../include/functions_reporting.php:11267 -#: ../../include/functions_reporting.php:11289 -msgid "Module sanity" -msgstr "モジュール" - -#: ../../include/functions_reporting.php:11267 -#, php-format -msgid "%d Not inited monitors" -msgstr "未初期化数 %d" - -#: ../../include/functions_reporting.php:11267 -#: ../../include/functions_reporting.php:11290 -msgid "of total modules inited" -msgstr "のモジュールが初期化済みです。" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:11293 -#: ../../include/functions_reporting_html.php:4900 -msgid "Alert level" -msgstr "アラートレベル" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:12384 -#: ../../include/functions_reporting.php:12394 -#, php-format -msgid "%d Fired alerts" -msgstr "アラート発報数 %d" - -#: ../../include/functions_reporting.php:11272 -#: ../../include/functions_reporting.php:11294 -msgid "of defined alerts not fired" -msgstr "の定義済みアラートが未発生です。" - -#: ../../include/functions_reporting.php:11333 -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Defined alerts" -msgstr "定義済みアラート" - -#: ../../include/functions_reporting.php:11344 -#: ../../include/functions_reporting.php:11501 -#: ../../include/functions_reporting.php:11515 -#: ../../include/functions_reporting.php:13854 -#: ../../include/functions_reporting.php:13929 ../../include/functions_ui.php:4660 -#: ../../include/functions_html.php:930 ../../include/functions_html.php:3297 -#: ../../include/functions_html.php:3789 -msgid "Enterprise version not installed" -msgstr "Enterprise 版がインストールされていません" - -#: ../../include/functions_reporting.php:11366 -msgid "Defined and fired alerts" -msgstr "定義済・発報アラート" - -#: ../../include/functions_reporting.php:11420 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -msgid "Monitor normal" -msgstr "正常状態" - -#: ../../include/functions_reporting.php:11431 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -msgid "Monitor not init" -msgstr "未初期化状態" - -#: ../../include/functions_reporting.php:11451 -#: ../../include/functions_reporting.php:11457 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -msgid "Monitors by status" -msgstr "状態ごとの監視項目" - -#: ../../include/functions_reporting.php:11504 -#: ../../include/functions_reporting_html.php:5569 -msgid "Monitor checks" -msgstr "モニタ項目" - -#: ../../include/functions_reporting.php:11523 -#: ../../include/functions_reporting_html.php:5576 -msgid "Total agents and monitors" -msgstr "全エージェントと監視項目" - -#: ../../include/functions_reporting.php:11545 -msgid "Defined users" -msgstr "定義済ユーザ" - -#: ../../include/functions_reporting.php:12241 -msgid "Agent without data" -msgstr "データの無いエージェント" - -#: ../../include/functions_reporting.php:12370 -#: ../../include/functions_reporting.php:12379 -#: ../../enterprise/operation/agentes/tag_view.php:1075 -#, php-format -msgid "%d Total modules" -msgstr "全モジュール数 %d" - -#: ../../include/functions_reporting.php:12371 -#: ../../enterprise/operation/agentes/tag_view.php:1076 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d モジュールが正常状態" - -#: ../../include/functions_reporting.php:12372 -#: ../../enterprise/operation/agentes/tag_view.php:1077 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d モジュールが障害状態" - -#: ../../include/functions_reporting.php:12373 -#: ../../enterprise/operation/agentes/tag_view.php:1078 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d モジュールが警告状態" - -#: ../../include/functions_reporting.php:12374 -#: ../../enterprise/operation/agentes/tag_view.php:1079 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d モジュールが不明状態" - -#: ../../include/functions_reporting.php:12375 -#: ../../enterprise/operation/agentes/tag_view.php:1080 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d モジュールが未初期化状態" - -#: ../../include/functions_reporting.php:12380 -#, php-format -msgid "%d Normal modules" -msgstr "正常モジュール数 %d" - -#: ../../include/functions_reporting.php:12381 -#, php-format -msgid "%d Critical modules" -msgstr "障害モジュール数 %d" - -#: ../../include/functions_reporting.php:12382 -#, php-format -msgid "%d Warning modules" -msgstr "警告モジュール数 %d" - -#: ../../include/functions_reporting.php:12383 -#, php-format -msgid "%d Unknown modules" -msgstr "不明モジュール数 %d" - -#: ../../include/functions_reporting.php:12388 -#, php-format -msgid "%d Total agents" -msgstr "全エージェント数 %d" - -#: ../../include/functions_reporting.php:12389 -#, php-format -msgid "%d Normal agents" -msgstr "正常エージェント数 %d" - -#: ../../include/functions_reporting.php:12390 -#, php-format -msgid "%d Critical agents" -msgstr "障害エージェント数 %d" - -#: ../../include/functions_reporting.php:12391 -#, php-format -msgid "%d Warning agents" -msgstr "警告エージェント数 %d" - -#: ../../include/functions_reporting.php:12392 -#, php-format -msgid "%d Unknown agents" -msgstr "不明エージェント数 %d" - -#: ../../include/functions_reporting.php:12393 -#, php-format -msgid "%d not init agents" -msgstr "%d 未初期化エージェント" - -#: ../../include/functions_reporting.php:13821 -msgid "Total running modules" -msgstr "全実行中モジュール数" - -#: ../../include/functions_reporting.php:13824 -#: ../../include/functions_reporting.php:13839 -#: ../../include/functions_reporting.php:13851 -#: ../../include/functions_reporting.php:13869 -#: ../../include/functions_reporting.php:13881 -#: ../../include/functions_reporting.php:13893 -#: ../../include/functions_reporting.php:13905 -msgid "Ratio" -msgstr "比率" - -#: ../../include/functions_reporting.php:13824 -#: ../../include/functions_reporting.php:13839 -#: ../../include/functions_reporting.php:13851 -#: ../../include/functions_reporting.php:13869 -#: ../../include/functions_reporting.php:13881 -#: ../../include/functions_reporting.php:13893 -#: ../../include/functions_reporting.php:13905 -msgid "Modules by second" -msgstr "秒ごとのモジュール" - -#: ../../include/functions_reporting.php:13836 -msgid "Local modules" -msgstr "ローカルモジュール数" - -#: ../../include/functions_reporting.php:13846 -msgid "Network modules" -msgstr "ネットワークモジュール" - -#: ../../include/functions_reporting.php:13865 -msgid "Plugin modules" -msgstr "プラグインモジュール" - -#: ../../include/functions_reporting.php:13877 -msgid "Prediction modules" -msgstr "予測モジュール" - -#: ../../include/functions_reporting.php:13889 -msgid "WMI modules" -msgstr "WMIモジュール" - -#: ../../include/functions_reporting.php:13901 -msgid "Web modules" -msgstr "Webモジュール" - -#: ../../include/functions_reporting.php:14058 -msgid "Weekly:" -msgstr "週次:" - -#: ../../include/functions_reporting.php:14100 -msgid "Monthly:" -msgstr "月次:" - -#: ../../include/functions_reporting.php:14101 -msgid "From day" -msgstr "開始日" - -#: ../../include/functions_reporting.php:14102 -msgid "To day" -msgstr "終了日" - -#: ../../include/functions_reporting.php:14636 -msgid "Module Histogram Graph" -msgstr "モジュールヒストグラム" - -#: ../../include/functions_reporting.php:15015 -#: ../../enterprise/include/functions_cron.php:1776 -msgid "Greetings" -msgstr "挨拶" - -#: ../../include/functions_reporting.php:15017 -msgid "Attached to this email there's a PDF file of the" -msgstr "このメールには次の PDF ファイルが添付されます:" - -#: ../../include/functions_reporting.php:15018 -msgid "report" -msgstr "レポート" - -#: ../../include/functions_reporting.php:15021 -#: ../../enterprise/include/functions_cron.php:1780 -#: ../../mobile/include/ui.class.php:327 ../../mobile/include/functions_web.php:84 -msgid "Generated at" -msgstr "更新日時:" - -#: ../../include/functions_reporting.php:15023 -#: ../../enterprise/include/functions_cron.php:1782 -msgid "Thanks for your time." -msgstr "お時間いただきありがとうございます。" - -#: ../../include/functions_reporting.php:15025 -#: ../../enterprise/include/functions_cron.php:1784 -msgid "Best regards, Pandora FMS" -msgstr "よろしくお願いします。Pandora FMS" - -#: ../../include/functions_reporting.php:15027 -#: ../../enterprise/include/functions_cron.php:1786 -msgid "This is an automatically generated email from Pandora FMS, please do not reply." -msgstr "これは、Pandora FMS から自動生成されたメールです。返信しないでください。" - -#: ../../include/functions_visual_map.php:1746 -#: ../../include/functions_visual_map.php:1748 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:279 -msgid "Last value: " -msgstr "最新の値: " - -#: ../../include/functions_visual_map.php:2566 -#: ../../include/functions_visual_map.php:2947 -#: ../../enterprise/godmode/policies/policy_agents.php:1152 -#: ../../godmode/massive/massive_add_alerts.php:100 -#: ../../godmode/massive/massive_delete_modules.php:87 -#: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../godmode/massive/massive_edit_agents.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:113 -#: ../../godmode/massive/massive_delete_agents.php:61 -msgid "No agents selected" -msgstr "エージェントが選択されていません。" - -#: ../../include/functions_visual_map.php:2632 -msgid "Agent successfully added to layout" -msgstr "エージェントが追加されました。" - -#: ../../include/functions_visual_map.php:2674 -#: ../../enterprise/include/functions_massive.php:54 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:880 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_action_alerts.php:175 -#: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../godmode/agentes/module_manager.php:274 -msgid "No modules selected" -msgstr "モジュールが選択されていません。" - -#: ../../include/functions_visual_map.php:2816 -msgid "Modules successfully added to layout" -msgstr "モジュールが追加されました。" - -#: ../../include/functions_visual_map.php:3141 -msgid "Agents successfully added to layout" -msgstr "レイアウトにエージェントを追加しました" - -#: ../../include/functions_visual_map.php:3537 -msgid "Cannot load the visualmap" -msgstr "ビジュアルマップを読み込めません" - -#: ../../include/functions_visual_map.php:4189 -#: ../../include/rest-api/models/VisualConsole/Item.php:2107 -msgid "Bars graph" -msgstr "棒グラフ" - -#: ../../include/functions_visual_map.php:4199 -#: ../../include/rest-api/models/VisualConsole/Item.php:2115 -msgid "Percentile bar" -msgstr "パーセント(バー)" - -#: ../../include/functions_visual_map.php:4204 -#: ../../include/rest-api/models/VisualConsole/Item.php:2123 -msgid "Circular progress bar" -msgstr "円形進捗バー" - -#: ../../include/functions_modules.php:4015 -msgid "Realtime SNMP graph" -msgstr "リアルタイム SNMP グラフ" - -#: ../../include/functions_modules.php:4080 -msgid "ALL" -msgstr "すべて" - -#: ../../include/functions_modules.php:4096 -msgid "NOT NORMAL" -msgstr "非正常" - -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:742 -#: ../../godmode/agentes/planned_downtime.editor.php:241 -msgid "" -"Not created. Error inserting data. Start time must be higher than the current time" -msgstr "" -"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければいけま" -"せん。" - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:747 -#: ../../include/functions_planned_downtimes.php:754 -#: ../../include/functions_planned_downtimes.php:762 -#: ../../include/functions_planned_downtimes.php:770 -#: ../../include/functions_planned_downtimes.php:775 -#: ../../include/functions_planned_downtimes.php:780 -#: ../../include/functions_planned_downtimes.php:785 -#: ../../include/functions_planned_downtimes.php:790 -#: ../../include/functions_planned_downtimes.php:795 -#: ../../include/functions_planned_downtimes.php:800 -#: ../../godmode/agentes/planned_downtime.editor.php:245 -#: ../../godmode/agentes/planned_downtime.editor.php:249 -#: ../../godmode/agentes/planned_downtime.editor.php:257 -#: ../../godmode/agentes/planned_downtime.editor.php:261 -msgid "Not created. Error inserting data" -msgstr "設定できませんでした。入力データエラーです。" - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:754 -#: ../../godmode/agentes/planned_downtime.editor.php:245 -msgid "The end date must be higher than the start date" -msgstr "終了日は開始日より後でなければいけません" - -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:762 -#: ../../godmode/agentes/planned_downtime.editor.php:257 -#: ../../godmode/agentes/planned_downtime.editor.php:716 -#: ../../godmode/agentes/planned_downtime.editor.php:729 -msgid "The end time must be higher than the start time" -msgstr "終了時刻は開始時刻より後でなければいけません" - -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:770 -#: ../../godmode/agentes/planned_downtime.editor.php:261 -#: ../../godmode/agentes/planned_downtime.editor.php:701 -msgid "The end day must be higher than the start day" -msgstr "終了日は開始日より後でなければいけません" - -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:814 -#: ../../godmode/agentes/planned_downtime.editor.php:313 -msgid "Each scheduled downtime must have a different name" -msgstr "それぞれの計画停止は異なる名前である必要があります" - -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:820 -#: ../../godmode/agentes/planned_downtime.editor.php:318 -#: ../../godmode/agentes/planned_downtime.editor.php:350 -msgid "Scheduled downtime must have a name" -msgstr "計画停止には名前が必要です" - -#: ../../include/functions_planned_downtimes.php:575 -msgid "Succesful stopped the Downtime" -msgstr "計画停止を中止しました" - -#: ../../include/functions_planned_downtimes.php:576 -msgid "Unsuccesful stopped the Downtime" -msgstr "計画停止の中止に失敗しました" - -#: ../../include/functions_planned_downtimes.php:716 -#, php-format -msgid "Enabled %s elements from the downtime" -msgstr "計画停止から %s 件の要素が有効になりました" - -#: ../../include/functions_planned_downtimes.php:747 -#: ../../godmode/agentes/planned_downtime.editor.php:249 -msgid "The end date must be higher than the current time" -msgstr "終了日時は開始日時より後でなければいけません" - -#: ../../include/functions_planned_downtimes.php:775 -msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" -msgstr "" -"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。" - -#: ../../include/functions_planned_downtimes.php:780 -msgid "The execution must be once or periodically" -msgstr "実行は、一回のみか定期的のいずれかです。" - -#: ../../include/functions_planned_downtimes.php:785 -msgid "The periodicity must be weekly or monthly" -msgstr "定期実行は週次または月次です。" - -#: ../../include/functions_planned_downtimes.php:790 -msgid "There is no user with such id" -msgstr "そのような ID のユーザがありません。" - -#: ../../include/functions_planned_downtimes.php:795 -msgid "There is no group with such id" -msgstr "そのような ID のグループがありません。" - -#: ../../include/functions_planned_downtimes.php:800 -msgid "Date is wrong formatted" -msgstr "日付のフォーマットが不正です" - -#: ../../include/functions_planned_downtimes.php:907 -msgid "This scheduled downtime are executed now. Can't delete in this moment." -msgstr "この計画停止は実行中です。このタイミングで削除できません。" - -#: ../../include/functions_planned_downtimes.php:914 -msgid "Deleted this scheduled downtime successfully." -msgstr "この計画停止を削除しました。" - -#: ../../include/functions_planned_downtimes.php:916 -msgid "Problems for deleted this scheduled downtime." -msgstr "この計画停止の削除で問題が発生しました。" - -#: ../../include/functions_planned_downtimes.php:949 ../../include/functions_maps.php:73 -#: ../../include/functions_networkmap.php:2068 -msgid "Copy of " -msgstr "コピー: " - -#: ../../include/functions_planned_downtimes.php:958 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 -#: ../../enterprise/godmode/policies/policies.php:236 -#: ../../godmode/reporting/reporting_builder.php:738 -#: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:626 -msgid "Could not be copied" -msgstr "コピーできませんでした。" - -#: ../../include/functions_planned_downtimes.php:976 -msgid "Error adding agents to copied downtime" -msgstr "コピーした計画停止へのエージェント追加エラー" - -#: ../../include/functions_planned_downtimes.php:999 -msgid "Error adding module to copied downtime" -msgstr "コピーした計画停止へのモジュール追加エラー" - -#: ../../include/api.php:237 -msgid "User or group not specified" -msgstr "ユーザまたはグループが指定されていません" - -#: ../../include/api.php:238 -msgid "User, group not specified" -msgstr "ユーザ、グループが指定されていません" - -#: ../../include/api.php:269 -msgid "User, group or profile not specified" -msgstr "ユーザ、グループまたは、プロファイルが指定されていません" - -#: ../../include/api.php:270 -msgid "User, group or profile status not specified" -msgstr "ユーザ、グループまたは、プロファイルの状態が指定されていません" - -#: ../../include/graphs/functions_flot.php:365 -msgid "Cancel zoom" -msgstr "ズーム中止" - -#: ../../include/graphs/functions_flot.php:367 -msgid "Warning and Critical thresholds" -msgstr "警告と障害の閾値" - -#: ../../include/graphs/functions_flot.php:372 -msgid "Overview graph" -msgstr "概要グラフ" - -#: ../../include/graphs/export_data.php:88 ../../include/graphs/export_data.php:154 -msgid "An error occured exporting the data" -msgstr "データエクスポートエラー" - -#: ../../include/graphs/export_data.php:100 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 -msgid "Selected" -msgstr "選択済" - -#: ../../include/functions_register.php:105 -#, php-format -msgid "%s configuration wizard" -msgstr "%s 設定ウィザード" - -#: ../../include/functions_register.php:108 -#, php-format -msgid "" -"Please fill the following information in order to configure your %s instance " -"successfully" -msgstr "%s インスタンスを正常に設定するには、次の情報を入力してください" - -#: ../../include/functions_register.php:122 ../../godmode/setup/setup_general.php:77 -msgid "Language code" -msgstr "言語" - -#: ../../include/functions_register.php:165 -msgid "" -"Must have the same time zone as the system or database to avoid mismatches of time." -msgstr "" -"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必要があ" -"ります。" - -#: ../../include/functions_register.php:171 -msgid "E-mail for receiving alerts" -msgstr "アラート受信メールアドレス" - -#: ../../include/functions_register.php:196 -msgid "All fields required" -msgstr "全フィールドが必須です" - -#: ../../include/functions_register.php:205 -msgid "Are you sure you don't want to configure a base email?" -msgstr "基本メールを設定しなくて良いですか?" - -#: ../../include/functions_register.php:207 -msgid "" -"You could change this options later in \"alert actions\" and setting your account." -msgstr "" -"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できます。" - -#: ../../include/functions_maps.php:38 ../../include/functions_networkmap.php:1307 -msgid "Topology" -msgstr "トポロジ" - -#: ../../include/functions_profile.php:216 -#: ../../enterprise/godmode/setup/setup_auth.php:175 -#: ../../enterprise/godmode/setup/setup_auth.php:232 -msgid "No hierarchy" -msgstr "階層なし" - -#: ../../include/functions_ui.php:287 -msgid "Information" -msgstr "情報" - -#: ../../include/functions_ui.php:465 -msgid "Request successfully processed" -msgstr "要求された処理を実行しました。" - -#: ../../include/functions_ui.php:469 -msgid "Error processing request" -msgstr "要求された処理の実行に失敗しました。" - -#: ../../include/functions_ui.php:625 -msgid "" -"Is possible that this view uses part of information which your user has not access" -msgstr "あなたのユーザでアクセスできない情報の一部を利用している可能性があります" - -#: ../../include/functions_ui.php:874 -msgid "Software" -msgstr "ソフトウェア" - -#: ../../include/functions_ui.php:1323 -#: ../../godmode/alerts/configure_alert_template.php:1218 -#: ../../godmode/alerts/alert_view.php:175 -msgid "The alert would fire when the value is " -msgstr "取得した値が の場合、アラートを発生させます。" - -#: ../../include/functions_ui.php:1328 -#: ../../godmode/alerts/configure_alert_template.php:1219 -#: ../../godmode/alerts/alert_view.php:180 -msgid "The alert would fire when the value is not " -msgstr "取得した値が 以外の場合、アラートを発生させます。" - -#: ../../include/functions_ui.php:1334 -#: ../../godmode/alerts/configure_alert_template.php:1216 -#: ../../godmode/alerts/alert_view.php:166 -msgid "The alert would fire when the value matches " -msgstr "" -"取得した値が にマッチした場合、アラートを発生させます。" - -#: ../../include/functions_ui.php:1337 ../../godmode/alerts/alert_view.php:168 -msgid "The alert would fire when the value doesn't match " -msgstr "" -"取得した値が にマッチしない場合、アラートを発生させます。" - -#: ../../include/functions_ui.php:1346 -#: ../../godmode/alerts/configure_alert_template.php:1220 -#: ../../godmode/alerts/alert_view.php:187 -msgid "" -"The alert would fire when the value is between and " -msgstr "" -"取得した値が の間になったら、ア" -"ラートを発生させます。" - -#: ../../include/functions_ui.php:1349 ../../godmode/alerts/alert_view.php:191 -msgid "" -"The alert would fire when the value is not between and " -msgstr "" -"取得した値が の間を外れたら、ア" -"ラートを発生させます。" - -#: ../../include/functions_ui.php:1355 -msgid "The alert would fire when the value is over " -msgstr "取得した値が 以上になったら、アラートを発生させます。" - -#: ../../include/functions_ui.php:1360 -msgid "The alert would fire when the value is under " -msgstr "取得した値が 未満になったら、アラートを発生させます。" - -#: ../../include/functions_ui.php:1365 -#: ../../godmode/alerts/configure_alert_template.php:1224 -#: ../../godmode/alerts/alert_view.php:218 -msgid "The alert would fire when the module is in warning status" -msgstr "該当モジュールが警告状態になったら、アラートを発生させます。" - -#: ../../include/functions_ui.php:1370 -#: ../../godmode/alerts/configure_alert_template.php:1225 -#: ../../godmode/alerts/alert_view.php:222 -msgid "The alert would fire when the module is in critical status" -msgstr "該当モジュールが障害になったら、アラートを発生させます。" - -#: ../../include/functions_ui.php:1375 -msgid "Unknown option." -msgstr "不明なオプション。" - -#: ../../include/functions_ui.php:2107 ../../include/functions_ui.php:2133 -#, php-format -msgid "Total items: %s" -msgstr "全アイテム数: %s" - -#: ../../include/functions_ui.php:2534 -msgid "Unknown type" -msgstr "不明なタイプ" - -#: ../../include/functions_ui.php:3414 -#: ../../enterprise/include/class/DatabaseHA.class.php:217 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861 -msgid "Processing" -msgstr "処理中" - -#: ../../include/functions_ui.php:3502 ../../include/functions_ui.php:3503 -msgid "Export current page to CSV" -msgstr "現在のページを CSV へエクスポート" - -#: ../../include/functions_ui.php:5042 -msgid "Type at least two characters to search." -msgstr "2文字以上入力するとマッチするエージェント名が検索されます" - -#: ../../include/functions_ui.php:5780 ../../include/functions_html.php:5265 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3678 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930 -#: ../../godmode/reporting/create_container.php:418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1661 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4027 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4064 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4233 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4506 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4540 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4594 -msgid "Select an Agent first" -msgstr "最初にエージェントを選択してください。" - -#: ../../include/functions_ui.php:5981 -msgid "Unhandled error" -msgstr "処理できないエラー" - -#: ../../include/functions_ui.php:5982 -msgid "An unhandled error occurs" -msgstr "処理できないエラーが発生しました" - -#: ../../include/functions_ui.php:6227 -#: ../../enterprise/operation/agentes/tag_view.php:873 -#: ../../enterprise/operation/agentes/tag_view.php:883 -#: ../../enterprise/operation/agentes/wux_console_view.php:352 -#: ../../enterprise/operation/agentes/ux_console_view.php:102 -#: ../../enterprise/operation/agentes/ux_console_view.php:297 -#: ../../enterprise/operation/agentes/ux_console_view.php:377 -#: ../../enterprise/include/functions_ux_console.php:507 -msgid "Snapshot view" -msgstr "スナップショット表示" - -#: ../../include/functions_ui.php:6253 -#, php-format -msgid "" -"These controls are using the timezone of the system (%s) instead of yours (%s). The " -"difference with your time zone in hours is %s." -msgstr "" -"これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイムゾーン" -"(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。" - -#: ../../include/functions_ui.php:6557 -#: ../../enterprise/include/class/CommandCenter.class.php:452 -msgid "Query" -msgstr "クエリ" - -#: ../../include/functions_ui.php:6574 -msgid "Execute query" -msgstr "クエリの実行" - -#: ../../include/functions_ui.php:6596 -msgid "Results" -msgstr "結果" - -#: ../../include/functions_ui.php:6660 -msgid "Show password" -msgstr "パスワードを表示" - -#: ../../include/functions_integriaims.php:42 -msgid "Configure Integria IMS" -msgstr "Integria IMS 設定" - -#: ../../include/functions_integriaims.php:43 -msgid "Ticket list" -msgstr "チケット一覧" - -#: ../../include/functions_integriaims.php:44 -msgid "New ticket" -msgstr "新規チケット" - -#: ../../include/functions_integriaims.php:73 -msgid "Edit ticket" -msgstr "チケット編集" - -#: ../../include/functions_integriaims.php:74 -msgid "View ticket" -msgstr "チケット表示" - -#: ../../include/functions_integriaims.php:307 -msgid "" -"API request failed. Please check Integria IMS' access credentials in Pandora setup." -msgstr "" -"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証情報" -"を確認してください。" - -#: ../../include/functions_integriaims.php:557 -msgid "File successfully added" -msgstr "ファイルを追加しました" - -#: ../../include/functions_integriaims.php:558 -msgid "File could not be added" -msgstr "ファイルを追加できませんでした" - -#: ../../include/functions_integriaims.php:561 -msgid "File has an invalid extension" -msgstr "ファイルの拡張子が不正です" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 -#: ../../godmode/setup/gis_step_2.php:364 -msgid "Top" -msgstr "上" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 -#: ../../godmode/setup/gis_step_2.php:357 -msgid "Right" -msgstr "右" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 -#: ../../godmode/setup/gis_step_2.php:343 -msgid "Left" -msgstr "左" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1964 -msgid "Label position" -msgstr "ラベルの位置" - -#: ../../include/rest-api/models/VisualConsole/Item.php:1994 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -msgid "width" -msgstr "幅" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2004 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -msgid "height" -msgstr "高さ" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2026 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -msgid "X" -msgstr "X" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2036 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/functions.php:491 ../../include/functions.php:643 -msgid "Y" -msgstr "Y" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2051 -msgid "Link enabled" -msgstr "リンクが有効" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2063 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 -msgid "Show on top" -msgstr "上に表示" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2093 -msgid "Static graph" -msgstr "状態を表すアイコン" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2111 -msgid "Event History Graph" -msgstr "イベント履歴グラフ" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2119 -msgid "Percentile bubble" -msgstr "パーセンタイルバブル" - -#: ../../include/rest-api/models/VisualConsole/Item.php:2584 -#: ../../include/rest-api/models/VisualConsole/Item.php:2585 -msgid "Image Vc" -msgstr "Vc 画像" - -#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325 -msgid "Module name color" -msgstr "モジュール名の色" - -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:402 -msgid "Show Last Value" -msgstr "最新の値を表示" - -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 -msgid "Add new range" -msgstr "新しい範囲を追加" - -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495 -msgid "Current ranges" -msgstr "現在の範囲" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 -msgid "Avg Value" -msgstr "平均値" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 -#: ../../include/functions_reporting_html.php:997 -#: ../../include/functions_reporting_html.php:2235 -#: ../../include/functions_reporting_html.php:4247 -#: ../../include/functions_reporting_html.php:4788 -msgid "Max Value" -msgstr "最大値" - -#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 -#: ../../include/functions_reporting_html.php:995 -#: ../../include/functions_reporting_html.php:2233 -#: ../../include/functions_reporting_html.php:4249 -#: ../../include/functions_reporting_html.php:4785 -msgid "Min Value" -msgstr "最小値" - -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 -msgid "Graph Type" -msgstr "グラフタイプ" - -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 -#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:712 -#: ../../include/rest-api/models/VisualConsole/View.php:791 -msgid "Failed to connect to node" -msgstr "ノードへの接続に失敗しました" - -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:2298 -msgid "Custom Graph" -msgstr "カスタムグラフ" - -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 -msgid "Border Width" -msgstr "枠の幅" - -#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 -msgid "Fill transparent" -msgstr "透明に塗り潰す" - -#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416 -msgid "Title color" -msgstr "タイトルの色" - -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 -msgid "12h" -msgstr "12時間" - -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 -msgid "Legend color" -msgstr "凡例の色" - -#: ../../include/rest-api/models/VisualConsole/View.php:66 -msgid "Label settings" -msgstr "ラベル設定" - -#: ../../include/rest-api/models/VisualConsole/View.php:72 -#: ../../include/rest-api/models/VisualConsole/View.php:104 -msgid "General settings" -msgstr "一般設定" - -#: ../../include/rest-api/models/VisualConsole/View.php:78 -#: ../../include/rest-api/models/VisualConsole/View.php:94 -#: ../../include/rest-api/models/VisualConsole/View.php:110 -msgid "Specific settings" -msgstr "特定の設定" - -#: ../../include/rest-api/models/VisualConsole/View.php:213 -msgid "Item type not valid [" -msgstr "アイテムタイプが不正です [" - -#: ../../include/rest-api/models/VisualConsole/View.php:218 -msgid "Item type has no getFormInputs method [" -msgstr "アイテムタイプに getFormInputs メソッドがありません [" - -#: ../../include/rest-api/models/VisualConsole/View.php:729 -msgid "NetworkLink from" -msgstr "次からのネットワークリンク" - -#: ../../include/rest-api/models/VisualConsole/View.php:733 -#: ../../include/rest-api/models/VisualConsole/View.php:812 -#, php-format -msgid "Interface %s status" -msgstr "インタフェース %s の状態" - -#: ../../include/rest-api/models/VisualConsole/View.php:808 -msgid "NetworkLink to" -msgstr "次へのネットワークリンク" - -#: ../../include/rest-api/models/VisualConsole/View.php:860 -#, php-format -msgid "Failed to generate charts: %s" -msgstr "グラフ生成に失敗しました: %s" - -#: ../../include/functions_html.php:595 ../../include/functions_html.php:969 -msgid "Please select an item from this list." -msgstr "この一覧からアイテムを選択してください。" - -#: ../../include/functions_html.php:621 ../../include/functions_html.php:5716 -msgid "Please select..." -msgstr "選択してください..." - -#: ../../include/functions_html.php:1582 -msgid "Type to search agents" -msgstr "エージェント検索タイプ" - -#: ../../include/functions_html.php:1596 -msgid "Type to search modules" -msgstr "モジュール検索タイプ" - -#: ../../include/functions_html.php:1659 ../../include/functions_html.php:1678 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:436 ../../extensions/agents_modules.php:439 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1777 -#: ../../godmode/massive/massive_add_alerts.php:264 -#: ../../godmode/massive/massive_delete_modules.php:555 -#: ../../godmode/massive/massive_add_action_alerts.php:224 -#: ../../godmode/massive/massive_delete_action_alerts.php:245 -#: ../../godmode/massive/massive_delete_alerts.php:339 -#: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/agentes/planned_downtime.editor.php:811 -msgid "Show common modules" -msgstr "共通モジュールの表示" - -#: ../../include/functions_html.php:1660 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:437 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1778 -#: ../../godmode/massive/massive_add_alerts.php:265 -#: ../../godmode/massive/massive_delete_modules.php:556 -#: ../../godmode/massive/massive_add_action_alerts.php:225 -#: ../../godmode/massive/massive_delete_action_alerts.php:246 -#: ../../godmode/massive/massive_delete_alerts.php:340 -#: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/agentes/planned_downtime.editor.php:812 -msgid "Show all modules" -msgstr "全モジュール表示" - -#: ../../include/functions_html.php:1667 -msgid "Only common modules" -msgstr "共通モジュールのみ" - -#: ../../include/functions_html.php:1838 ../../include/functions_html.php:1939 -#: ../../include/functions_html.php:2077 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:510 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:524 -#: ../../godmode/massive/massive_edit_agents.php:669 -#: ../../godmode/massive/massive_edit_agents.php:694 -#: ../../godmode/massive/massive_edit_agents.php:711 -#: ../../godmode/massive/massive_edit_agents.php:725 -#: ../../godmode/massive/massive_edit_agents.php:749 -#: ../../godmode/massive/massive_edit_agents.php:859 -#: ../../godmode/massive/massive_edit_agents.php:906 -#: ../../godmode/massive/massive_edit_agents.php:981 -#: ../../godmode/massive/massive_edit_agents.php:985 -#: ../../godmode/massive/massive_edit_agents.php:994 -#: ../../godmode/massive/massive_edit_agents.php:1022 -#: ../../godmode/massive/massive_edit_agents.php:1091 -#: ../../godmode/massive/massive_edit_modules.php:615 -#: ../../godmode/massive/massive_edit_modules.php:637 -#: ../../godmode/massive/massive_edit_modules.php:706 -#: ../../godmode/massive/massive_edit_modules.php:728 -#: ../../godmode/massive/massive_edit_modules.php:759 -#: ../../godmode/massive/massive_edit_modules.php:768 -#: ../../godmode/massive/massive_edit_modules.php:827 -#: ../../godmode/massive/massive_edit_modules.php:845 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/massive/massive_edit_modules.php:899 -#: ../../godmode/massive/massive_edit_modules.php:924 -#: ../../godmode/massive/massive_edit_modules.php:936 -#: ../../godmode/massive/massive_edit_modules.php:997 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1061 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../godmode/massive/massive_edit_modules.php:1080 -#: ../../godmode/massive/massive_edit_modules.php:1108 -#: ../../godmode/massive/massive_edit_modules.php:1212 -msgid "No change" -msgstr "変更無し" - -#: ../../include/functions_html.php:2110 ../../include/functions.php:500 -#: ../../include/functions.php:631 ../../enterprise/include/ajax/log_viewer.ajax.php:280 -#: ../../enterprise/meta/advanced/metasetup.visual.php:385 -#: ../../godmode/setup/setup_visuals.php:1345 ../../godmode/db/db_main.php:86 -#: ../../godmode/db/db_main.php:92 -msgid "days" -msgstr "日" - -#: ../../include/functions_html.php:2111 -msgid "weeks" -msgstr "週" - -#: ../../include/functions_html.php:2112 ../../include/functions.php:501 -#: ../../include/functions.php:632 -#: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1346 -msgid "months" -msgstr "月" - -#: ../../include/functions_html.php:2113 ../../include/functions.php:502 -#: ../../include/functions.php:633 -#: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1347 -msgid "years" -msgstr "年" - -#: ../../include/functions_html.php:2273 -msgid "Month day" -msgstr "日にち" - -#: ../../include/functions_html.php:2274 -#: ../../enterprise/include/functions_reporting_csv.php:1737 -#: ../../enterprise/include/functions_reporting_csv.php:2045 -msgid "Month" -msgstr "月" - -#: ../../include/functions_html.php:2275 -msgid "Week day" -msgstr "曜日" - -#: ../../include/functions_html.php:4486 -msgid "Type at least two characters to search the module." -msgstr "モジュールを検索するには、少なくとも二文字入力してください。" - -#: ../../include/functions_html.php:4647 ../../index.php:483 ../../index.php:760 -#: ../../index.php:834 -#, php-format -msgid "%s cannot verify the origin of the request. Try again, please." -msgstr "%s はリクエストを確認できません。 もう一度やり直してください。" - -#: ../../include/functions_html.php:5471 -msgid "Type at least two characters to search the user." -msgstr "ユーザを検索するには、少なくとも 2文字入力してください。" - -#: ../../include/functions_html.php:5860 -msgid "Primary group cannot be secondary too." -msgstr "プライマリグループはセカンダリにできません。" - -#: ../../include/functions_html.php:5874 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:575 -#: ../../godmode/massive/massive_edit_agents.php:804 -msgid "Add secondary groups" -msgstr "セカンダリグループの追加" - -#: ../../include/functions_html.php:5887 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:582 -#: ../../godmode/massive/massive_edit_agents.php:830 -msgid "Remove secondary groups" -msgstr "セカンダリグループの削除" - -#: ../../include/functions_networkmap.php:1303 -msgid "Radial dynamic" -msgstr "放射状で動的" - -#: ../../include/functions_networkmap.php:1332 -msgid "Create a new topology map" -msgstr "トポロジマップの新規作成" - -#: ../../include/functions_networkmap.php:1333 -msgid "Create a new group map" -msgstr "グループマップの新規作成" - -#: ../../include/functions_networkmap.php:1334 -msgid "Create a new dynamic map" -msgstr "新たな動的マップの作成" - -#: ../../include/functions_networkmap.php:1336 -msgid "Create a new radial dynamic map" -msgstr "放射状の動的マップを新規作成" - -#: ../../include/functions_networkmap.php:3404 -msgid "Map not found." -msgstr "マップがありません。" - -#: ../../include/functions.php:231 -msgid "." -msgstr "." - -#: ../../include/functions.php:233 -msgid "," -msgstr "," - -#: ../../include/functions.php:488 ../../include/functions.php:640 -msgid "s" -msgstr "s" - -#: ../../include/functions.php:489 ../../include/functions.php:641 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:490 ../../include/functions.php:642 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:492 ../../include/functions.php:644 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:493 ../../include/functions.php:645 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:494 ../../include/functions.php:646 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:1226 -msgid "Monitor Unknown" -msgstr "不明状態" - -#: ../../include/functions.php:1233 -msgid "Agent created" -msgstr "エージェント作成" - -#: ../../include/functions.php:1354 ../../include/functions.php:1384 -msgid "ALERT FIRED" -msgstr "アラート発報" - -#: ../../include/functions.php:2680 ../../godmode/reporting/create_container.php:345 -msgid "custom" -msgstr "カスタム" - -#: ../../include/functions.php:2686 -#, php-format -msgid "%s seconds" -msgstr "%s 秒" - -#: ../../include/functions.php:2689 ../../include/functions.php:2690 -#, php-format -msgid "%s minutes" -msgstr "%s 分" - -#: ../../include/functions.php:2698 ../../include/functions.php:2699 -#, php-format -msgid "%s months" -msgstr "%s ヶ月" - -#: ../../include/functions.php:2701 ../../include/functions.php:2702 -#, php-format -msgid "%s years" -msgstr "%s 年" - -#: ../../include/functions.php:2704 -msgid "Default values will be used" -msgstr "デフォルト値を利用します" - -#: ../../include/functions.php:2889 ../../include/functions.php:2894 -msgid "The file exceeds the maximum size" -msgstr "ファイルサイズが上限を超えています。" - -#: ../../include/functions.php:2890 -msgid "" -"Please check this PHP runtime variable values:
      upload_max_filesize (currently "
    -msgstr "PHP 実行時の変数値を確認してください: 
     upload_max_filesize(現在"
    -
    -#: ../../include/functions.php:2898
    -msgid "The uploaded file was only partially uploaded"
    -msgstr "ファイルは部分的にのみアップロードされました"
    -
    -#: ../../include/functions.php:2902
    -msgid "No file was uploaded"
    -msgstr "ファイルがアップロードされませんでした"
    -
    -#: ../../include/functions.php:2906
    -msgid "Missing a temporary folder"
    -msgstr "テンポラリフォルダがありません"
    -
    -#: ../../include/functions.php:2910
    -msgid "Failed to write file to disk"
    -msgstr "ファイルのディスクへの書き込みに失敗しました"
    -
    -#: ../../include/functions.php:2914
    -msgid "File upload stopped by extension"
    -msgstr "拡張によりファイルのアップロードが停止されました"
    -
    -#: ../../include/functions.php:2918
    -msgid "Unknown upload error"
    -msgstr "不明なアップロードエラー"
    -
    -#: ../../include/functions.php:3029
    -msgid "No data found to export"
    -msgstr "エクスポートするデータがありません"
    -
    -#: ../../include/functions.php:3349
    -#: ../../enterprise/include/lib/Metaconsole/Node.php:1195
    -#: ../../enterprise/include/lib/Metaconsole/Node.php:1196
    -#: ../../enterprise/include/functions_HA_cluster.php:58
    -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:195
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:271
    -#: ../../enterprise/godmode/policies/policy_alerts.php:714
    -#: ../../godmode/extensions.php:259 ../../godmode/alerts/alert_list.list.php:1003
    -#: ../../godmode/users/user_list.php:740
    -msgid "Disable"
    -msgstr "無効"
    -
    -#: ../../include/functions.php:3352
    -msgid "15 seconds"
    -msgstr "15秒"
    -
    -#: ../../include/functions.php:3357
    -msgid "15 minutes"
    -msgstr "15 分"
    -
    -#: ../../include/functions.php:3873
    -msgid "Summatory series"
    -msgstr "合計シリーズ"
    -
    -#: ../../include/functions.php:3877
    -msgid "Average series"
    -msgstr "平均シリーズ"
    -
    -#: ../../include/functions.php:3905 ../../include/functions.php:3924
    -#: ../../include/functions.php:3938 ../../include/functions.php:3960
    -#: ../../include/functions.php:4041 ../../include/functions.php:4113
    -msgid "Unit "
    -msgstr "単位 "
    -
    -#: ../../include/functions.php:3973
    -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187
    -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242
    -#: ../../godmode/reporting/graph_builder.graph_editor.php:215
    -#: ../../godmode/reporting/graph_builder.graph_editor.php:345
    -msgid "Weight"
    -msgstr "ウエイト"
    -
    -#: ../../include/functions.php:3986 ../../include/functions.php:4051
    -msgid "Min:"
    -msgstr "最小:"
    -
    -#: ../../include/functions.php:3993 ../../include/functions.php:4058
    -msgid "Max:"
    -msgstr "最大:"
    -
    -#: ../../include/functions.php:4000 ../../include/functions.php:4065
    -msgid "Avg:"
    -msgstr "平均:"
    -
    -#: ../../include/functions.php:4108 ../../include/functions.php:4116
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2502
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:576
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
    -#: ../../godmode/reporting/graph_builder.main.php:245
    -msgid "Percentil"
    -msgstr "パーセント値"
    -
    -#: ../../include/functions.php:4110 ../../include/functions.php:4118
    -msgid "of module"
    -msgstr "のモジュール"
    -
    -#: ../../include/functions.php:4135
    -msgid "Projection"
    -msgstr "投影"
    -
    -#: ../../include/functions.php:5953
    -msgid "Testing Pandora FMS email"
    -msgstr "Pandora FMS メールのテスト"
    -
    -#: ../../include/functions.php:5966
    -msgid ""
    -"This is an email test sent from Pandora FMS. If you can read this, your configuration "
    -"works."
    -msgstr ""
    -"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機能し"
    -"ています。"
    -
    -#: ../../include/get_file.php:39
    -msgid "Security error. Please contact the administrator."
    -msgstr "セキュリティエラー。管理者に連絡してください。"
    -
    -#: ../../include/get_file.php:74
    -msgid "File is missing in disk storage. Please contact the administrator."
    -msgstr "ファイルが存在しません。管理者に連絡してください。"
    -
    -#: ../../include/functions_reporting_html.php:109
    -msgid "Label: "
    -msgstr "ラベル: "
    -
    -#: ../../include/functions_reporting_html.php:138
    -#: ../../enterprise/include/functions_reporting_csv.php:2220
    -#: ../../enterprise/include/functions_reporting_csv.php:2224
    -#: ../../enterprise/include/functions_reporting_pdf.php:1785
    -msgid "Generated"
    -msgstr "生成日"
    -
    -#: ../../include/functions_reporting_html.php:141
    -#: ../../enterprise/include/functions_reporting_pdf.php:1789
    -msgid "Report date"
    -msgstr "レポート日"
    -
    -#: ../../include/functions_reporting_html.php:544
    -#: ../../enterprise/include/functions_reporting.php:1854
    -#: ../../enterprise/include/functions_reporting.php:2893
    -#: ../../enterprise/include/functions_reporting.php:3880
    -msgid "Max/Min Values"
    -msgstr "最大/最小値"
    -
    -#: ../../include/functions_reporting_html.php:545
    -#: ../../enterprise/include/functions_reporting_csv.php:1506
    -#: ../../enterprise/include/functions_reporting_csv.php:1552
    -#: ../../enterprise/include/functions_reporting_csv.php:1625
    -#: ../../enterprise/include/functions_reporting_csv.php:1744
    -#: ../../enterprise/include/functions_reporting_csv.php:2052
    -#: ../../enterprise/include/functions_reporting.php:1855
    -#: ../../enterprise/include/functions_reporting.php:2894
    -#: ../../enterprise/include/functions_reporting.php:3881
    -#: ../../enterprise/include/functions_reporting.php:6137
    -msgid "SLA Limit"
    -msgstr "SLA 制限"
    -
    -#: ../../include/functions_reporting_html.php:546
    -#: ../../enterprise/include/functions_reporting.php:1856
    -#: ../../enterprise/include/functions_reporting.php:2024
    -#: ../../enterprise/include/functions_reporting.php:2895
    -#: ../../enterprise/include/functions_reporting.php:3882
    -#: ../../enterprise/include/functions_reporting.php:6138
    -msgid "SLA Compliance"
    -msgstr "SLA準拠"
    -
    -#: ../../include/functions_reporting_html.php:578
    -#: ../../enterprise/include/functions_reporting.php:4965
    -msgid "Global Time"
    -msgstr "グローバル時間"
    -
    -#: ../../include/functions_reporting_html.php:579
    -#: ../../enterprise/include/functions_reporting_csv.php:1980
    -#: ../../enterprise/include/functions_reporting.php:4966
    -msgid "Time Total"
    -msgstr "合計時間"
    -
    -#: ../../include/functions_reporting_html.php:580
    -msgid "Time Failed"
    -msgstr "障害時間"
    -
    -#: ../../include/functions_reporting_html.php:581
    -#: ../../include/functions_reporting_html.php:3844
    -#: ../../enterprise/include/functions_reporting_csv.php:1981
    -#: ../../enterprise/include/functions_reporting.php:4969
    -msgid "Time OK"
    -msgstr "正常時間"
    -
    -#: ../../include/functions_reporting_html.php:582
    -#: ../../include/functions_reporting_html.php:3856
    -#: ../../enterprise/include/functions_reporting_csv.php:1983
    -#: ../../enterprise/include/functions_reporting.php:4970
    -msgid "Time Unknown"
    -msgstr "不明時間"
    -
    -#: ../../include/functions_reporting_html.php:583
    -#: ../../enterprise/include/functions_reporting_csv.php:1984
    -#: ../../enterprise/include/functions_reporting.php:4971
    -msgid "Time Not Init"
    -msgstr "未初期化時間"
    -
    -#: ../../include/functions_reporting_html.php:584
    -msgid "Downtime"
    -msgstr "停止時間"
    -
    -#: ../../include/functions_reporting_html.php:611
    -#: ../../enterprise/include/functions_reporting.php:5060
    -msgid "Checks Time"
    -msgstr "確認数"
    -
    -#: ../../include/functions_reporting_html.php:612
    -#: ../../enterprise/include/functions_reporting_csv.php:1986
    -#: ../../enterprise/include/functions_reporting.php:5061
    -msgid "Checks Total"
    -msgstr "合計確認数"
    -
    -#: ../../include/functions_reporting_html.php:613
    -#: ../../enterprise/include/functions_reporting_csv.php:530
    -msgid "Checks Failed"
    -msgstr "障害確認数"
    -
    -#: ../../include/functions_reporting_html.php:614
    -#: ../../include/functions_reporting_html.php:3938
    -#: ../../enterprise/include/functions_reporting_csv.php:1987
    -#: ../../enterprise/include/functions_reporting.php:5064
    -msgid "Checks OK"
    -msgstr "正常確認数"
    -
    -#: ../../include/functions_reporting_html.php:615
    -#: ../../enterprise/include/functions_reporting_csv.php:1989
    -#: ../../enterprise/include/functions_reporting.php:5065
    -msgid "Checks Unknown"
    -msgstr "不明確認数"
    -
    -#: ../../include/functions_reporting_html.php:633
    -#: ../../include/functions_reporting_html.php:672
    -#: ../../include/functions_reporting_html.php:743
    -#: ../../include/functions_reporting_html.php:821
    -#: ../../include/functions_reporting_html.php:4020
    -#: ../../include/functions_reporting_html.php:4167
    -#: ../../enterprise/include/functions_reporting.php:4925
    -msgid "24 x 7"
    -msgstr "24時間365日"
    -
    -#: ../../include/functions_reporting_html.php:864
    -#: ../../include/functions_reporting_html.php:4561
    -#: ../../enterprise/include/functions_services.php:1453
    -#: ../../enterprise/include/functions_reporting.php:3195
    -#: ../../enterprise/include/functions_reporting.php:4196
    -#: ../../enterprise/include/functions_reporting.php:6203
    -msgid "Unknow"
    -msgstr "不明"
    -
    -#: ../../include/functions_reporting_html.php:869
    -#: ../../include/functions_reporting_html.php:4566
    -#: ../../enterprise/include/functions_reporting.php:1896
    -#: ../../enterprise/include/functions_reporting.php:2949
    -#: ../../enterprise/include/functions_reporting.php:3200
    -#: ../../enterprise/include/functions_reporting.php:3937
    -#: ../../enterprise/include/functions_reporting.php:4201
    -#: ../../enterprise/include/functions_reporting.php:4852
    -#: ../../enterprise/include/functions_reporting.php:6208
    -msgid "Not Init"
    -msgstr "未初期化"
    -
    -#: ../../include/functions_reporting_html.php:874
    -#: ../../include/functions_reporting_html.php:4571
    -#: ../../enterprise/include/functions_reporting.php:3205
    -#: ../../enterprise/include/functions_reporting.php:4206
    -#: ../../enterprise/include/functions_reporting.php:6213
    -msgid "Downtimes"
    -msgstr "停止時間"
    -
    -#: ../../include/functions_reporting_html.php:879
    -#: ../../include/functions_reporting_html.php:4576
    -#: ../../godmode/agentes/planned_downtime.editor.php:67
    -#: ../../godmode/agentes/planned_downtime.list.php:174
    -msgid "Scheduled Downtime"
    -msgstr "計画停止"
    -
    -#: ../../include/functions_reporting_html.php:996
    -#: ../../include/functions_reporting_html.php:2234
    -#: ../../include/functions_reporting_html.php:4250
    -#: ../../include/functions_reporting_html.php:4786
    -msgid "Average Value"
    -msgstr "平均値"
    -
    -#: ../../include/functions_reporting_html.php:1051
    -#: ../../include/functions_reporting_html.php:1059
    -#: ../../include/functions_reporting_html.php:2356
    -msgid "Val. by"
    -msgstr "承諾ユーザ"
    -
    -#: ../../include/functions_reporting_html.php:1118
    -#, php-format
    -msgid "%s System"
    -msgstr "%s システム"
    -
    -#: ../../include/functions_reporting_html.php:1166
    -#: ../../include/functions_reporting_html.php:1366
    -msgid "Events by agent"
    -msgstr "エージェントで分類したイベント"
    -
    -#: ../../include/functions_reporting_html.php:1183
    -#: ../../include/functions_reporting_html.php:1383
    -msgid "Events by user validator"
    -msgstr "承諾したユーザごとのイベント"
    -
    -#: ../../include/functions_reporting_html.php:1200
    -#: ../../include/functions_reporting_html.php:1400
    -msgid "Events by Severity"
    -msgstr "重要度ごとのイベント"
    -
    -#: ../../include/functions_reporting_html.php:1217
    -#: ../../include/functions_reporting_html.php:1417
    -msgid "Events validated vs unvalidated"
    -msgstr "承諾済と未承諾イベント"
    -
    -#: ../../include/functions_reporting_html.php:1488
    -#: ../../enterprise/include/functions_reporting_csv.php:718
    -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:189
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1804
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:69
    -#: ../../godmode/agentes/agent_manager.php:289
    -msgid "Alias"
    -msgstr "別名"
    -
    -#: ../../include/functions_reporting_html.php:1508
    -msgid "Sec. groups"
    -msgstr "セカンダリグループ"
    -
    -#: ../../include/functions_reporting_html.php:1528
    -msgid "Remote conf."
    -msgstr "リモート設定"
    -
    -#: ../../include/functions_reporting_html.php:1651
    -#: ../../enterprise/include/functions_inventory.php:854
    -#: ../../enterprise/include/functions_inventory.php:917
    -msgid "Added"
    -msgstr "追加済み"
    -
    -#: ../../include/functions_reporting_html.php:2004
    -#: ../../extensions/agents_modules.php:934
    -msgid "Orange cell when the module has fired alerts"
    -msgstr "オレンジのセルは、アラート発生中を示します。"
    -
    -#: ../../include/functions_reporting_html.php:2005
    -#: ../../extensions/agents_modules.php:936
    -msgid "Red cell when the module has a critical status"
    -msgstr "赤のセルは、障害状態を示します。"
    -
    -#: ../../include/functions_reporting_html.php:2006
    -#: ../../extensions/agents_modules.php:939
    -msgid "Yellow cell when the module has a warning status"
    -msgstr "黄色のセルは、警告状態を示します。"
    -
    -#: ../../include/functions_reporting_html.php:2007
    -#: ../../extensions/agents_modules.php:941
    -msgid "Green cell when the module has a normal status"
    -msgstr "緑のセルは、正常状態を示します。"
    -
    -#: ../../include/functions_reporting_html.php:2008
    -#: ../../extensions/agents_modules.php:943
    -msgid "Grey cell when the module has an unknown status"
    -msgstr "グレーのセルは、不明状態を示します。"
    -
    -#: ../../include/functions_reporting_html.php:2009
    -msgid "Cell turns grey when the module is in 'not initialize' status"
    -msgstr "青色のセルは、不明状態を示します。"
    -
    -#: ../../include/functions_reporting_html.php:2036
    -#: ../../include/functions_reporting_html.php:2040
    -#: ../../extensions/files_repo/files_repo_list.php:164
    -msgid "No items"
    -msgstr "アイテムがありません。"
    -
    -#: ../../include/functions_reporting_html.php:2080
    -#: ../../enterprise/include/functions_reporting_csv.php:2742
    -msgid "Last time"
    -msgstr "最新日時"
    -
    -#: ../../include/functions_reporting_html.php:2299
    -#: ../../include/functions_reporting_html.php:5355
    -msgid "Monitors"
    -msgstr "モニタ項目"
    -
    -#: ../../include/functions_reporting_html.php:2318
    -msgid "Events (not validated)"
    -msgstr "イベント (未承諾)"
    -
    -#: ../../include/functions_reporting_html.php:2455
    -msgid "Events validated by user"
    -msgstr "ユーザで分類したイベント"
    -
    -#: ../../include/functions_reporting_html.php:2472
    -#: ../../include/functions_reporting_html.php:5644
    -msgid "Events by severity"
    -msgstr "重要度ごとのイベント"
    -
    -#: ../../include/functions_reporting_html.php:2489
    -msgid "Amount events validated"
    -msgstr "承諾済みイベントの割合"
    -
    -#: ../../include/functions_reporting_html.php:2913
    -msgid "Total summary"
    -msgstr "全体概要"
    -
    -#: ../../include/functions_reporting_html.php:2920
    -msgid "No alerts fired"
    -msgstr "アラート未発報"
    -
    -#: ../../include/functions_reporting_html.php:3011
    -#, php-format
    -msgid "Interface '%s' throughput graph"
    -msgstr "インタフェース '%s' スループットグラフ"
    -
    -#: ../../include/functions_reporting_html.php:3015
    -msgid "Mac"
    -msgstr "Mac"
    -
    -#: ../../include/functions_reporting_html.php:3016
    -msgid "Actual status"
    -msgstr "現在の状態"
    -
    -#: ../../include/functions_reporting_html.php:3125
    -#: ../../godmode/alerts/alert_list.list.php:946
    -msgid "No alerts defined"
    -msgstr "アラートが定義されていません"
    -
    -#: ../../include/functions_reporting_html.php:3263
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
    -msgid "Not OK"
    -msgstr "NG"
    -
    -#: ../../include/functions_reporting_html.php:3380
    -#: ../../include/functions_reporting_html.php:3382
    -msgid "Empty modules"
    -msgstr "モジュールなし"
    -
    -#: ../../include/functions_reporting_html.php:3389
    -msgid "Warning
    Critical" -msgstr "警告
    障害" - -#: ../../include/functions_reporting_html.php:3394 -#: ../../enterprise/include/functions_reporting_csv.php:2741 -#: ../../enterprise/meta/include/functions_wizard_meta.php:927 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1044 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1225 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1528 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1613 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1750 -#: ../../enterprise/godmode/modules/configure_local_component.php:468 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 -#: ../../godmode/modules/manage_network_components_form_common.php:312 -#: ../../godmode/massive/massive_edit_modules.php:925 -#: ../../godmode/agentes/module_manager_editor_common.php:582 -msgid "Unit" -msgstr "単位" - -#: ../../include/functions_reporting_html.php:3524 -#: ../../include/functions_reporting_html.php:3593 -#: ../../enterprise/include/functions_reporting_pdf.php:534 -#: ../../enterprise/include/functions_reporting_pdf.php:591 -msgid "Minimun" -msgstr "最低" - -#: ../../include/functions_reporting_html.php:3533 -#: ../../include/functions_reporting_html.php:3601 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 -#: ../../enterprise/include/functions_reporting_pdf.php:542 -#: ../../enterprise/include/functions_reporting_pdf.php:598 -msgid "Average" -msgstr "平均" - -#: ../../include/functions_reporting_html.php:3703 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "From data" -msgstr "開始データ" - -#: ../../include/functions_reporting_html.php:3704 -#: ../../enterprise/include/functions_reporting_csv.php:1325 -msgid "To data" -msgstr "終了データ" - -#: ../../include/functions_reporting_html.php:3732 -#: ../../enterprise/include/functions_reporting_csv.php:1331 -#: ../../enterprise/include/functions_reporting_csv.php:1342 -msgid "Negative increase: " -msgstr "マイナス増加: " - -#: ../../include/functions_reporting_html.php:3734 -#: ../../enterprise/include/functions_reporting_csv.php:1333 -#: ../../enterprise/include/functions_reporting_csv.php:1344 -msgid "Positive increase: " -msgstr "プラス増加: " - -#: ../../include/functions_reporting_html.php:3736 -#: ../../enterprise/include/functions_reporting_csv.php:1335 -#: ../../enterprise/include/functions_reporting_csv.php:1346 -msgid "Neutral increase: " -msgstr "中立的な増加: " - -#: ../../include/functions_reporting_html.php:3819 -#: ../../include/functions_reporting_html.php:3913 -#: ../../include/functions_reporting_html.php:3993 -#: ../../include/functions_reporting_html.php:4002 -#: ../../include/functions_reporting_html.php:4140 -#: ../../include/functions_reporting_html.php:4149 -#: ../../include/functions_reporting_html.php:4473 -#: ../../include/functions_reporting_html.php:4479 -#: ../../godmode/agentes/module_manager_editor_common.php:1265 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -msgid "Failover" -msgstr "フェイルオーバ" - -#: ../../include/functions_reporting_html.php:3832 -#: ../../enterprise/include/functions_reporting_csv.php:494 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2588 -msgid "Total time" -msgstr "合計時間" - -#: ../../include/functions_reporting_html.php:3838 -#: ../../enterprise/include/functions_reporting_csv.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2596 -msgid "Time failed" -msgstr "障害時間" - -#: ../../include/functions_reporting_html.php:3850 -#: ../../enterprise/include/functions_reporting_csv.php:506 -#: ../../enterprise/include/functions_reporting.php:4968 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2622 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2612 -msgid "Time in warning status" -msgstr "警告状態の時間" - -#: ../../include/functions_reporting_html.php:3862 -msgid "Time Not Init Module" -msgstr "未初期化モジュール時間" - -#: ../../include/functions_reporting_html.php:3868 -#: ../../enterprise/include/functions_reporting_csv.php:1985 -msgid "Time Downtime" -msgstr "計画停止時間" - -#: ../../include/functions_reporting_html.php:3873 -msgid "% Ok" -msgstr "正常%" - -#: ../../include/functions_reporting_html.php:3926 -#: ../../enterprise/include/functions_reporting_csv.php:526 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2704 -msgid "Total checks" -msgstr "全確認数" - -#: ../../include/functions_reporting_html.php:3932 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 -msgid "Checks failed" -msgstr "障害確認数" - -#: ../../include/functions_reporting_html.php:3944 -#: ../../enterprise/include/functions_reporting.php:5063 -msgid "Checks Warning" -msgstr "警告チェック" - -#: ../../include/functions_reporting_html.php:3950 -msgid "Checks Uknown" -msgstr "不明確認数" - -#: ../../include/functions_reporting_html.php:3989 -#: ../../include/functions_reporting_html.php:4136 -#: ../../include/functions_reporting_html.php:4461 -#: ../../include/functions_reporting_html.php:4467 -msgid "Primary" -msgstr "プライマリ" - -#: ../../include/functions_reporting_html.php:4246 -#: ../../enterprise/include/functions_reporting_csv.php:661 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2764 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2764 -msgid "Agent max value" -msgstr "エージェント最大値" - -#: ../../include/functions_reporting_html.php:4248 -#: ../../enterprise/include/functions_reporting_csv.php:666 -msgid "Agent min value" -msgstr "エージェント最小値" - -#: ../../include/functions_reporting_html.php:4693 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:250 -msgid "Sum" -msgstr "合計" - -#: ../../include/functions_reporting_html.php:5036 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1379 -msgid "Alert description" -msgstr "アラートの説明" - -#: ../../include/functions_reporting_html.php:5076 -#: ../../include/functions_reporting_html.php:5230 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -#: ../../mobile/include/functions_web.php:24 -msgid "Monitor" -msgstr "モニタ項目" - -#: ../../include/functions_reporting_html.php:5129 -#, php-format -msgid "Agents in group: %s" -msgstr "グループに含まれるエージェント: %s" - -#: ../../include/functions_reporting_html.php:5231 -msgid "Last failure" -msgstr "最新の障害" - -#: ../../include/functions_reporting_html.php:5321 -msgid "N/A(*)" -msgstr "N/A(*)" - -#: ../../include/functions_reporting_html.php:5534 -#: ../../include/functions_reporting_html.php:5539 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -msgid "Agents by status" -msgstr "状態ごとのエージェント" - -#: ../../include/functions_reporting_html.php:5595 -#: ../../include/functions_reporting_html.php:5600 -msgid "Node overview" -msgstr "ノードの概要" - -#: ../../include/functions_reporting_html.php:5620 -#: ../../include/functions_reporting_html.php:5632 -msgid "Critical events" -msgstr "障害イベント" - -#: ../../include/functions_reporting_html.php:5623 -#: ../../include/functions_reporting_html.php:5634 -msgid "Warning events" -msgstr "警告イベント" - -#: ../../include/functions_reporting_html.php:5626 -#: ../../include/functions_reporting_html.php:5636 -msgid "OK events" -msgstr "正常イベント" - -#: ../../include/functions_reporting_html.php:5629 -#: ../../include/functions_reporting_html.php:5638 -msgid "Unknown events" -msgstr "不明イベント" - -#: ../../include/functions_reporting_html.php:5654 -msgid "Important Events by Criticity" -msgstr "重要度ごとのイベント" - -#: ../../include/functions_reporting_html.php:5680 -#, php-format -msgid "Last activity in %s console" -msgstr "%s コンソールの最新の操作" - -#: ../../include/functions_reporting_html.php:5771 -#: ../../include/functions_reporting_html.php:5913 -msgid "Events info (1hr.)" -msgstr "イベント情報 (1時間)" - -#: ../../include/functions_reporting_html.php:6096 -msgid "This SLA has been affected by the following scheduled downtimes" -msgstr "このSLAは、次の計画停止の影響を受けています" - -#: ../../include/functions_reporting_html.php:6097 -msgid "" -"If the duration of the scheduled downtime is less than 5 minutes it will not be " -"represented in the graph" -msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。" - -#: ../../include/functions_reporting_html.php:6103 -#: ../../godmode/modules/manage_network_components_form_wizard.php:654 -#: ../../godmode/agentes/planned_downtime.editor.php:603 -#: ../../godmode/agentes/planned_downtime.list.php:614 -msgid "Execution" -msgstr "実行" - -#: ../../include/functions_reporting_html.php:6135 -msgid "This item is affected by a malformed scheduled downtime" -msgstr "このアイテムは、不正な形式の計画停止の影響を受けます" - -#: ../../include/functions_reporting_html.php:6135 -msgid "Go to the scheduled downtimes section to solve this" -msgstr "これを解決するには、計画停止の画面に移動します" - -#: ../../include/functions_reporting_html.php:6168 -#: ../../include/functions_reporting_html.php:6191 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -msgid "Full name" -msgstr "フルネーム" - -#: ../../include/functions_reporting_html.php:6169 -#: ../../include/functions_reporting_html.php:6192 -#: ../../enterprise/include/functions_reporting_csv.php:2549 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -msgid "Permissions" -msgstr "権限" - -#: ../../update_manager_client/views/register.php:48 -msgid "Register to Update Manager" -msgstr "アップデートマネージャに登録" - -#: ../../update_manager_client/views/register.php:55 -#, php-format -msgid "Keep this %s console up to date with latest updates." -msgstr "この %s コンソールを最新のアップデートで最新の状態に保ちます。" - -#: ../../update_manager_client/views/register.php:62 -#, php-format -msgid "" -"When you subscribe to the %s Update Manager service, you accept that we\n" -" register your %s instance as an identifier on a database owned by %s. " -"This data will solely be used to\n" -" provide you with information about %s and will not be conceded to third " -"parties. You can unregister from\n" -" said database at any time from the Update Manager options." -msgstr "" -"%s アップデートマネージャサービスを購読すると、\n" -" %s インスタンスを %s が所有するデータベースの識別子として登録します。 この" -"データは、\n" -" %s に関する情報提供のために利用され、第三者に提供されることはありません。 " -"登録は\n" -" アップデートマネージャオプションからいつでも解除できます。" - -#: ../../update_manager_client/views/register.php:75 -msgid "Visit our privacy policy for more information" -msgstr "詳細についてはプライバシーポリシーをご覧ください" - -#: ../../update_manager_client/views/register.php:97 -msgid "OK!" -msgstr "OK!" - -#: ../../update_manager_client/views/register.php:112 -msgid "Are you sure you don't want to use update manager?" -msgstr "アップデートマネージャを使用しませんが、よいですか?" - -#: ../../update_manager_client/views/register.php:116 -msgid "" -"You will need to update your system manually, through source code or RPM\n" -" packages to be up to date with latest updates." -msgstr "" -"ソースコードまたは RPM を使用して、システムを手動で更新する必要があります\n" -" パッケージはアップデートで最新になります。" - -#: ../../update_manager_client/views/register.php:208 -msgid "Unsuccessful subscription" -msgstr "購読に失敗しました" - -#: ../../update_manager_client/views/register.php:213 -msgid "Pandora successfully subscribed with UID: " -msgstr "次のUIDで購読しました: " - -#: ../../update_manager_client/views/online.php:64 -msgid "Update to next version" -msgstr "次のバージョンに更新" - -#: ../../update_manager_client/views/online.php:65 -msgid "Update to latest version" -msgstr "最新バージョンに更新" - -#: ../../update_manager_client/views/online.php:89 -#: ../../update_manager_client/views/offline.php:74 -msgid "Updating to" -msgstr "アップデート中:" - -#: ../../update_manager_client/views/online.php:90 -#: ../../update_manager_client/views/offline.php:75 -msgid "Do you really want to leave our brilliant application?" -msgstr "あなたは本当にこの素晴らしいアプリケーションを使いませんか?" - -#: ../../update_manager_client/views/online.php:91 -#: ../../update_manager_client/views/offline.php:76 -msgid "There are no updates available" -msgstr "アップデートがありません" - -#: ../../update_manager_client/views/online.php:92 -#: ../../update_manager_client/views/offline.php:77 -msgid "Searching for updates..." -msgstr "アップデートを検索中..." - -#: ../../update_manager_client/views/online.php:93 -#: ../../update_manager_client/views/offline.php:78 -msgid "Package" -msgstr "パッケージ" - -#: ../../update_manager_client/views/online.php:94 -#: ../../update_manager_client/views/offline.php:79 -#: ../../enterprise/tools/ipam/ipam_action.php:380 -msgid "Successfully updated." -msgstr "更新しました。" - -#: ../../update_manager_client/views/online.php:123 -#: ../../update_manager_client/views/online.php:164 -#: ../../update_manager_client/views/offline.php:71 -msgid "This action will upgrade this console to version " -msgstr "このアクションは、このコンソールを次のバージョンへアップグレードします: " - -#: ../../update_manager_client/views/online.php:124 -#: ../../update_manager_client/views/online.php:165 -msgid "Update to" -msgstr "次に更新:" - -#: ../../update_manager_client/views/online.php:145 -#: ../../update_manager_client/views/online.php:149 -msgid "Failed to update to " -msgstr "次へのアップデートに失敗しました: " - -#: ../../update_manager_client/views/online.php:188 -msgid "Failed to update:" -msgstr "アップデートに失敗しました:" - -#: ../../update_manager_client/views/offline.php:66 -msgid "Drop the package here or" -msgstr "ここにパッケージをドロップするかまたは" - -#: ../../update_manager_client/views/offline.php:67 -msgid "Browse it" -msgstr "ブラウズする" - -#: ../../update_manager_client/views/offline.php:68 -msgid "The package has been uploaded successfully." -msgstr "パッケージをアップロードしました。" - -#: ../../update_manager_client/views/offline.php:69 -#, php-format -msgid "" -"Please keep in mind that this package is going to override your actual %s files and " -"that it's recommended to conduct a backup before continuing the updating process." -msgstr "" -"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバックアップ" -"を取ることをお勧めします。" - -#: ../../update_manager_client/views/offline.php:70 -msgid "Click on the file below to begin." -msgstr "開始するには以下のファイルをクリックします。" - -#: ../../update_manager_client/views/offline.php:72 -msgid "This action will upgrade all servers to version " -msgstr "このアクションは全サーバを次のバージョンへアップグレードします: " - -#: ../../update_manager_client/views/offline.php:80 -msgid "Package rejected. These package changes will not apply." -msgstr "パッケージを受け付けられません。これらのパッケージは適用されません。" - -#: ../../update_manager_client/views/offline.php:82 -#, php-format -msgid "" -"This update does not correspond with next version of %s. Are you sure you want to " -"install it?" -msgstr "" -"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしいですか?" - -#: ../../update_manager_client/views/offline.php:83 -msgid "" -"This server update does not correspond with current console version. Are you sure you " -"want to install it?" -msgstr "" -"このサーバアップデートは、現在のコンソールバージョンに対応していません。 インストール" -"してもよろしいですか?" - -#: ../../update_manager_client/views/offline.php:84 -msgid "" -"File name does not match required format: package_NUMBER.oum or " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers with " -"decimals." -msgstr "" -"ファイル名が所定の形式と一致しません: package_数字.oum または " -"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含むことがあ" -"ります。" - -#: ../../update_manager_client/views/offline.php:85 -msgid "Files included in this package" -msgstr "パッケージに含まれるファイル" - -#: ../../update_manager_client/views/offline.php:86 -msgid "Ignore" -msgstr "無視する" - -#: ../../update_manager_client/views/offline.php:87 -msgid "Verify package signature" -msgstr "パッケージの署名を確認" - -#: ../../update_manager_client/views/offline.php:88 -#, php-format -msgid "" -"Copy into the textarea the signature validation token you can retrieve from %s and " -"press OK to verify the package, press ignore to avoid signature verification" -msgstr "" -"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケージを確認" -"します。'無視する' を押すと署名の確認を回避します。" - -#: ../../update_manager_client/views/offline.php:89 -msgid "" -"This server update does not correspond with current console version and is not going " -"to be installed unless patches are allowed. Please enable patches in update manager " -"settings." -msgstr "" -"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ適用が許" -"可されていない限りインストールされません。 アップデートマネージャの設定でパッチを有効" -"にしてください。" - -#: ../../update_manager_client/views/offline.php:90 -#, php-format -msgid "" -"This update does not correspond with next version of %s and is not going to be " -"installed unless patches are allowed. Please enable patches in update manager " -"settings." -msgstr "" -"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されていない限" -"りインストールされません。 アップデートマネージャの設定でパッチを有効にしてください。" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:712 -#, php-format -msgid "server update %d" -msgstr "サーバアップデート %d" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:714 -#, php-format -msgid "console update %d" -msgstr "コンソールアップデート %d" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:734 -#, php-format -msgid "Downloading %s %.2f/ %.2f MB." -msgstr "%s のダウンロード中 %.2f/ %.2f MB" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:745 -#, php-format -msgid "Downloading %.2f MB" -msgstr "ダウンロード中 %.2f MB" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1469 -#, php-format -msgid "Failed to analyze package: %s" -msgstr "パッケージの分析に失敗しました: %s" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1560 -msgid "Searching update package" -msgstr "アップデートパッケージを検索中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1592 -msgid "Retrieving update" -msgstr "アップデートを取得中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1683 -msgid "Extracting package" -msgstr "パッケージを展開中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1750 -msgid "Testing files" -msgstr "ファイルのテスト中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1782 -#, php-format -msgid "Applying MR %s" -msgstr "MR %s 適用中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1819 -msgid "Applying file updates" -msgstr "ファイルアップデートを適用中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1841 -msgid "Retrieving server update" -msgstr "サーバアップデートを取得中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1856 -msgid "Cleaning" -msgstr "クリーニング中" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1874 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 -msgid "Completed" -msgstr "完了" - -#: ../../update_manager_client/lib/UpdateManager/Client.php:1969 -msgid "Updating to " -msgstr "次へのアップデート中: " - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484 -msgid "Next update" -msgstr "次のアップデート" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489 -msgid "Show details" -msgstr "詳細表示" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514 -#, php-format -msgid "%s update(s) available more" -msgstr "%s アップデートが利用可能" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526 -msgid "details" -msgstr "詳細" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604 -msgid "Failed creating temporary directory." -msgstr "一時ディレクトリの作成に失敗しました。" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614 -msgid "Failed storing uploaded file." -msgstr "アップロードしたファイルの保存に失敗しました。" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 -#, php-format -msgid "Invalid extension. The package needs to be in `%s` or `%s` format." -msgstr "拡張子が無効です。 パッケージは `%s` または `%s` 形式である必要があります。" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 -msgid "Failed uploading file." -msgstr "ファイルのアップロードに失敗しました。" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690 -msgid "Signatures does not match." -msgstr "署名が一致しません。" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749 -#, php-format -msgid "Update %s successfully installed." -msgstr "アップデート %s をインストールしました。" - -#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752 -#, php-format -msgid "Failed while updating: %s" -msgstr "アップデートに失敗しました: %s" - -#: ../../index.php:344 ../../enterprise/meta/index.php:307 -msgid "The code shouldn't be empty" -msgstr "コードは空にできません" - -#: ../../index.php:357 ../../enterprise/meta/index.php:320 -msgid "Expired login" -msgstr "ログイン期限切れ" - -#: ../../index.php:364 ../../index.php:370 ../../enterprise/meta/index.php:327 -#: ../../enterprise/meta/index.php:333 -msgid "Login error" -msgstr "ログインエラー" - -#: ../../index.php:788 ../../enterprise/meta/index.php:616 -msgid "Password changed successfully" -msgstr "パスワードを変更しました" - -#: ../../index.php:794 ../../enterprise/meta/index.php:622 -msgid "Failed to change password" -msgstr "パスワード変更に失敗しました" - -#: ../../index.php:799 ../../enterprise/include/process_reset_pass.php:127 -#: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:625 -msgid "Passwords must be the same" -msgstr "パスワードは同じでなければいけません" - -#: ../../index.php:811 ../../enterprise/meta/index.php:636 -msgid "Too much time since password change request" -msgstr "パスワード変更要求から長時間経過しました" - -#: ../../index.php:818 ../../enterprise/meta/index.php:643 -msgid "This user has not requested a password change" -msgstr "このユーザはパスワード変更を要求していません" - -#: ../../index.php:845 ../../enterprise/meta/index.php:659 -msgid "Id user cannot be empty" -msgstr "ユーザIDは空にできません" - -#: ../../index.php:853 ../../enterprise/meta/index.php:667 -msgid "Error in reset password request" -msgstr "パスワードリセット要求エラー" - -#: ../../index.php:861 ../../enterprise/meta/index.php:675 -msgid "This user doesn't have a valid email address" -msgstr "このユーザは正しいメールアドレスがありません" - -#: ../../index.php:871 ../../enterprise/include/reset_pass.php:108 -#: ../../enterprise/meta/include/reset_pass.php:103 ../../enterprise/meta/index.php:691 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: ../../index.php:872 ../../enterprise/meta/index.php:692 -msgid "This is an automatically sent message for user " -msgstr "これは、次のユーザへの自動送信メッセージです: " - -#: ../../index.php:875 ../../enterprise/meta/index.php:695 -msgid "Please click the link below to reset your password" -msgstr "パスワードをリセットするには、以下のリンクをクリックしてください" - -#: ../../index.php:877 ../../enterprise/meta/index.php:697 -msgid "Reset your password" -msgstr "パスワードリセット" - -#: ../../index.php:881 ../../enterprise/meta/index.php:701 -msgid "Please do not reply to this email." -msgstr "このメールには返信しないでください。" - -#: ../../index.php:886 ../../enterprise/meta/index.php:707 -msgid "Error at sending the email" -msgstr "メール送信エラー" - -#: ../../index.php:946 -msgid "User doesn\\'t exist." -msgstr "ユーザが存在しません。" - -#: ../../index.php:968 -msgid "User only can use the API." -msgstr "ユーザは API のみ利用可能" - -#: ../../index.php:1163 -#, php-format -msgid "Metaconsole MR (%d) is different than this one (%d)" -msgstr "メタコンソールの MR (%d) は、こちら (%d) と異なります" - -#: ../../index.php:1169 ../../enterprise/meta/index.php:925 -msgid "Please keep all environment updated to same version." -msgstr "環境全体を同じバージョンにアップデートしてください。" - -#: ../../index.php:1257 ../../enterprise/meta/index.php:982 -#: ../../enterprise/meta/index.php:1061 -msgid "Sorry! I can't find the page!" -msgstr "ページが見つかりません" - -#: ../../enterprise/tools/ipam/ipam_excel.php:134 -#: ../../enterprise/tools/ipam/ipam_calculator.php:84 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 -msgid "Mask" -msgstr "マスク" - -#: ../../enterprise/tools/ipam/ipam_excel.php:135 -msgid "Subneting Mask" -msgstr "サブネットマスク" - -#: ../../enterprise/tools/ipam/ipam_excel.php:136 -#: ../../enterprise/tools/ipam/ipam_excel.php:202 -#: ../../enterprise/include/functions_ipam.php:1559 -#: ../../enterprise/include/functions_ipam.php:1989 -msgid "Total IPs" -msgstr "全IP" - -#: ../../enterprise/tools/ipam/ipam_excel.php:137 -#: ../../enterprise/tools/ipam/ipam_excel.php:203 -#: ../../enterprise/include/functions_ipam.php:1990 -msgid "Alive IPs" -msgstr "応答 IP" - -#: ../../enterprise/tools/ipam/ipam_excel.php:138 -#: ../../enterprise/tools/ipam/ipam_excel.php:204 -#: ../../enterprise/include/functions_ipam.php:1991 -msgid "Occupied %" -msgstr "占有 %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:139 -#: ../../enterprise/tools/ipam/ipam_excel.php:205 -#: ../../enterprise/include/functions_ipam.php:1992 -msgid "Available %" -msgstr "残り %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:140 -#: ../../enterprise/tools/ipam/ipam_excel.php:206 -#: ../../enterprise/include/functions_ipam.php:1993 -msgid "Managed IPs" -msgstr "管理 IP" - -#: ../../enterprise/tools/ipam/ipam_excel.php:141 -#: ../../enterprise/tools/ipam/ipam_excel.php:207 -#: ../../enterprise/include/functions_ipam.php:1994 -msgid "Managed %" -msgstr "管理 %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:142 -#: ../../enterprise/tools/ipam/ipam_excel.php:208 -#: ../../enterprise/include/functions_ipam.php:1995 -msgid "Unmanaged %" -msgstr "非管理 %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:143 -#: ../../enterprise/tools/ipam/ipam_excel.php:209 -#: ../../enterprise/include/functions_ipam.php:1996 -msgid "Reserved IPs" -msgstr "予約済 IP" - -#: ../../enterprise/tools/ipam/ipam_excel.php:144 -#: ../../enterprise/tools/ipam/ipam_excel.php:210 -#: ../../enterprise/include/functions_ipam.php:1997 -msgid "Reserved %" -msgstr "予約済 %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:145 -#: ../../enterprise/tools/ipam/ipam_excel.php:211 -#: ../../enterprise/include/functions_ipam.php:1998 -msgid "Not reserved %" -msgstr "未予約 %" - -#: ../../enterprise/tools/ipam/ipam_excel.php:212 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 -#: ../../godmode/massive/massive_edit_agents.php:798 -#: ../../godmode/agentes/module_manager_editor_common.php:567 -#: ../../godmode/agentes/agent_manager.php:198 -#: ../../godmode/groups/configure_group.php:238 -msgid "Custom ID" -msgstr "カスタムID" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268 -msgid "There is no VLAN name. Please introduce a name" -msgstr "VLAN 名がありません。名前を設定してください" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 -msgid "Custom ID is not valid" -msgstr "カスタム ID が不正です" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66 -msgid "Vlan created" -msgstr "VLAN を作成しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68 -msgid "Vlan not created" -msgstr "VLAN を作成できませんでした" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296 -msgid "VLAN name exists in database, please select another name" -msgstr "VLAN 名が DB に存在します。他の名前を選択してください" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83 -msgid "There is no vlan name. Please introduce a name" -msgstr "VLAN 名がありません。名前を設定してください。" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109 -msgid "Vlan updated" -msgstr "VLAN を更新しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 -msgid "Vlan not updated" -msgstr "VLAN を更新できませんでした" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115 -msgid "Vlan name exists in database, please select other name" -msgstr "VLAN 名が DB に存在します。他の名前を選択してください" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135 -msgid "Could not be deleted, please select vlan" -msgstr "削除できませんでした。VLAN を選択してください。" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163 -msgid "Network name cannot be repeated in this Vlan" -msgstr "この VLAN でネットワーク名は繰り返せません" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 -msgid "Successfully added networks" -msgstr "ネットワークを追加しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 -msgid "Network could not be added" -msgstr "ネットワークを追加できませんでした" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179 -msgid "Network name could not be added, please select network" -msgstr "ネットワーク名を追加できませんでした。ネットワークを選択してください。" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184 -msgid "Vlan name could not be added, please select vlan" -msgstr "VLAN 名を追加できませんでした。VLAN を選択してください。" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212 -msgid "Could not be deleted, please select VLAN and network" -msgstr "削除できませんでした。VLAN およびネットワークを選択してください" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219 -#, php-format -msgid "Failed to delete %d/%d networks from VLAN" -msgstr "VLAN から %d/%d ネットワークの削除に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223 -msgid "Successfully deleted network from VLAN" -msgstr "VLAN からネットワークを削除しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225 -#, php-format -msgid "Successfully deleted %d/%d networks from VLAN" -msgstr "VLAN から %d/%d ネットワークを削除しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 -msgid "No items selected" -msgstr "テーマが選択されていません" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303 -#, php-format -msgid "%s VLAN networks have been created" -msgstr "%s VLAN ネットワークを作成しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 -msgid "Could not create VLAN networks" -msgstr "VLAN ネットワークを作成できませんでした" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 -#: ../../enterprise/tools/ipam/ipam_list.php:447 -#: ../../enterprise/extensions/csv_import_group/main.php:68 -msgid "The CSV file must have the fields in the following order: " -msgstr "CSV ファイルは、次の順番のフィールドを持つ必要があります: " - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 -#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 -#: ../../enterprise/tools/ipam/ipam_list.php:151 -#: ../../enterprise/tools/ipam/ipam_list.php:602 -msgid "Vlan" -msgstr "VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 -msgid "Update Vlan" -msgstr "VLAN 更新" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 -msgid "New Vlan" -msgstr "新規 VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 -#: ../../enterprise/tools/ipam/ipam_network.php:115 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 -#: ../../enterprise/tools/ipam/ipam_list.php:50 -#: ../../enterprise/include/class/CSVImportAgents.class.php:144 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -msgid "Upload file" -msgstr "ファイルのアップロード" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 -#: ../../enterprise/tools/ipam/ipam_network.php:124 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 -#: ../../enterprise/tools/ipam/ipam_list.php:59 -#: ../../enterprise/include/class/CSVImportAgents.class.php:161 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 -#: ../../enterprise/extensions/csv_import_group/main.php:87 -msgid "Separator" -msgstr "セパレータ" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 -#: ../../enterprise/tools/ipam/ipam_network.php:137 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 -#: ../../enterprise/tools/ipam/ipam_list.php:72 -#: ../../enterprise/extensions/csv_import_group/main.php:100 -msgid "Upload CSV file" -msgstr "CSV ファイルのアップロード" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 -msgid "Search filter by name" -msgstr "名前での検索フィルタ" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 -msgid "Networks" -msgstr "ネットワーク" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 -#: ../../enterprise/include/ajax/ipam.ajax.php:691 -#: ../../enterprise/include/ajax/ipam.ajax.php:748 -#: ../../enterprise/include/ajax/ipam.ajax.php:779 -#: ../../enterprise/include/ajax/ipam.ajax.php:826 -msgid "No assigned networks" -msgstr "割当ネットワークがありません" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 -msgid "Delete network to vlan" -msgstr "VLAN のネットワーク削除" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 -msgid "Manage networks in VLAN" -msgstr "VLAN のネットワーク管理" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 -msgid "Not assigned networks" -msgstr "未割当ネットワーク" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 -msgid "Add network to Vlan" -msgstr "VLAN へネットワーク追加" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 -msgid "Create network" -msgstr "ネットワーク作成" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 -msgid "Delete Vlan" -msgstr "VLAN 削除" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 -msgid "No vlans found" -msgstr "VLAN がありません" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 -#: ../../godmode/modules/manage_nc_groups.php:64 -msgid "Could not be created. Blank name" -msgstr "作成できませんでした。名前が空です。" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:155 -#: ../../godmode/modules/manage_nc_groups.php:95 -#: ../../godmode/events/event_edit_filter.php:205 -#: ../../godmode/netflow/nf_edit_form.php:118 -msgid "Not updated. Blank name" -msgstr "更新できませんでした。名前が空です。" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 -#: ../../godmode/setup/news.php:108 ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/events/event_edit_filter.php:216 -#: ../../godmode/netflow/nf_edit_form.php:140 -msgid "Not updated. Error updating data" -msgstr "データの更新に失敗しました。" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110 -#, php-format -msgid "%d/%d items deleted" -msgstr "%d/%d アイテムを削除しました" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112 -msgid "Failed to delete items" -msgstr "アイテムの削除に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 -msgid "Search filter by name or network address" -msgstr "名前またはネットワークアドレスでの検索フィルタ" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 -msgid "No locations found" -msgstr "場所がありません" - -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 -msgid "There are no defined network locations" -msgstr "定義済のネットワークの場所がありません" - -#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 -#: ../../enterprise/include/ajax/ipam.ajax.php:613 -msgid "Supernet" -msgstr "スーパーネット" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:285 -msgid "There is not an available IP." -msgstr "空き IP がありません。" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:287 -msgid "Next available IP Address is:" -msgstr "次の空き IP アドレス:" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:313 -msgid "Reserve this IP now" -msgstr "この IP を予約する" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:329 -msgid "Manage this IP now" -msgstr "この IP を管理対象にする" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:374 -msgid "Operating system" -msgstr "オペレーティングシステム" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:384 -msgid "This agent has other IPs" -msgstr "このエージェントには他の IP があります" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:393 -msgid "Generate events" -msgstr "イベント生成" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:406 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/include/functions_ipam.php:1571 -#: ../../enterprise/include/functions_ipam.php:2042 -msgid "Managed" -msgstr "管理対象" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:432 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 -#: ../../enterprise/tools/ipam/ipam_network.php:401 -#: ../../enterprise/include/functions_ipam.php:1577 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2043 -msgid "Reserved" -msgstr "予約済み" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:445 -msgid "Leases Dhcp" -msgstr "DHCP リース" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:455 -msgid "leased mode" -msgstr "リースモード" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:468 -msgid "leased expiration" -msgstr "リース期限切れ" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:489 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 -msgid "Created" -msgstr "作成" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:499 -msgid "Edited" -msgstr "編集" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:509 -msgid "Tracking" -msgstr "トラッキング" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:524 -msgid "Ping" -msgstr "Ping" - -#: ../../enterprise/tools/ipam/ipam_ajax.php:565 -msgid "Ping to host" -msgstr "ホストへの Ping" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 -msgid "succesfully created" -msgstr "作成しました" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 -msgid "not created" -msgstr "作成できませんでした" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 -msgid "exists in bbdd, please select other name" -msgstr "DB に存在します。他の名前を選択してください。" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 -msgid "please, select VLAN to be created" -msgstr "作成する VLAN を選択してください" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 -msgid "Please enter adress, for search vlans" -msgstr "VLAN 検索のためのアドレスを入力してください" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 -msgid "privacy pass" -msgstr "暗号化パスワード" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 -#: ../../godmode/wizards/HostDevices.class.php:1248 -msgid "Context" -msgstr "コンテキスト" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 -msgid "Run" -msgstr "実行" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 -msgid "Vlan name" -msgstr "VLAN 名" - -#: ../../enterprise/tools/ipam/ipam_massive.php:82 -msgid "Addresses" -msgstr "アドレス" - -#: ../../enterprise/tools/ipam/ipam_network.php:163 -msgid "No addresses found on this network" -msgstr "このネットワークにアドレスが見つかりませんでした" - -#: ../../enterprise/tools/ipam/ipam_network.php:314 -msgid "Edit address" -msgstr "アドレス編集" - -#: ../../enterprise/tools/ipam/ipam_network.php:327 -msgid "Disabled address" -msgstr "無効化アドレス" - -#: ../../enterprise/tools/ipam/ipam_network.php:327 -msgid "This address will not be updated by the server" -msgstr "このアドレスは、サーバにより更新されません" - -#: ../../enterprise/tools/ipam/ipam_network.php:414 -#: ../../enterprise/include/functions_reporting_csv.php:1936 -#: ../../enterprise/include/functions_reporting.php:2318 -#: ../../enterprise/include/functions_ipam.php:2038 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 -msgid "Alive" -msgstr "稼働" - -#: ../../enterprise/tools/ipam/ipam_network.php:423 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 -msgid "Not alive" -msgstr "停止" - -#: ../../enterprise/tools/ipam/ipam_network.php:454 -#: ../../enterprise/tools/ipam/ipam_network.php:533 -#: ../../enterprise/tools/ipam/ipam_network.php:575 -msgid "Change to automatic mode" -msgstr "自動モードに切り替える" - -#: ../../enterprise/tools/ipam/ipam_network.php:463 -#: ../../enterprise/tools/ipam/ipam_network.php:542 -#: ../../enterprise/tools/ipam/ipam_network.php:584 -msgid "Change to manual mode" -msgstr "手動モードに切り替える" - -#: ../../enterprise/tools/ipam/ipam_network.php:663 -msgid "Add comments" -msgstr "コメント追加" - -#: ../../enterprise/tools/ipam/ipam_network.php:691 -msgid "Update agent address" -msgstr "エージェントアドレス更新" - -#: ../../enterprise/tools/ipam/ipam_network.php:857 -msgid "Please, uncheck auto option to set manual agent." -msgstr "手動エージェントを設定するには、自動オプションを外してください。" - -#: ../../enterprise/tools/ipam/ipam_action.php:121 -#: ../../enterprise/tools/ipam/ipam_action.php:240 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 -#: ../../enterprise/tools/ipam/ipam_list.php:383 -msgid "The location is not filled, please add a location." -msgstr "位置情報が入力されていません。位置情報を追加してください。" - -#: ../../enterprise/tools/ipam/ipam_action.php:138 -#: ../../enterprise/tools/ipam/ipam_action.php:270 -#: ../../enterprise/tools/ipam/ipam_list.php:400 -msgid "Incorrect format in Subnet field" -msgstr "ネットワークの範囲指定が正しくありません。" - -#: ../../enterprise/tools/ipam/ipam_action.php:198 -#, php-format -msgid "Network could not be added to supernet %s (%s)" -msgstr "スーパーネット %s (%s) にネットワークを追加できませんでした" - -#: ../../enterprise/tools/ipam/ipam_action.php:202 -#, php-format -msgid "Network added to supernet %s (%s)" -msgstr "スーパーネット %s (%s) へネットワーク追加しました" - -#: ../../enterprise/tools/ipam/ipam_action.php:207 -#, php-format -msgid "Network name already exists in supernet %s (%s)" -msgstr "スーパーネット %s (%s) にネットワーク名がすでに存在します" - -#: ../../enterprise/tools/ipam/ipam_action.php:219 -#: ../../enterprise/tools/ipam/ipam_list.php:425 -#, php-format -msgid "Could not be created: %s" -msgstr "作成できませんでした: %s" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:64 -#: ../../enterprise/tools/ipam/ipam_calculator.php:66 -#: ../../enterprise/tools/ipam/ipam_calculator.php:87 -#: ../../enterprise/tools/ipam/ipam_calculator.php:90 -#: ../../enterprise/tools/ipam/ipam_calculator.php:93 -#: ../../enterprise/tools/ipam/ipam_calculator.php:96 -msgid "Example:" -msgstr "例:" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:70 -msgid "Bit mask" -msgstr "ビットマスク" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:71 -msgid "Net mask" -msgstr "ネットマスク" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:74 -msgid "Mask format" -msgstr "マスクフォーマット" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:105 -msgid "Calculate" -msgstr "計算" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:112 -msgid "Address field is empty" -msgstr "アドレスフィールドが空です" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:120 -msgid "Mask field is empty" -msgstr "マスクフィールドが空です" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:139 -#: ../../enterprise/tools/ipam/ipam_calculator.php:152 -msgid "Incorrect address format" -msgstr "アドレスフォーマットが不正です" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:144 -#: ../../enterprise/tools/ipam/ipam_calculator.php:157 -#: ../../enterprise/tools/ipam/ipam_calculator.php:162 -msgid "Incorrect mask format" -msgstr "マスクフォーマットが不正です" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:190 -msgid "Network mask" -msgstr "ネットワークマスク" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:211 -msgid "Network wildcard" -msgstr "ネットワークワイルドカード" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:220 -msgid "Network address" -msgstr "ネットワークアドレス" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:229 -msgid "Broadcast address" -msgstr "ブロードキャストアドレス" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:238 -msgid "First valid IP" -msgstr "最初の有効IP" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:247 -msgid "Last valid IP" -msgstr "最後の有効IP" - -#: ../../enterprise/tools/ipam/ipam_calculator.php:257 -msgid "Hosts/Net" -msgstr "ホスト/ネット" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100 -msgid "There is no supernet name. Please introduce a name" -msgstr "スーパーネット名がありません。名前を設定してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104 -msgid "There is no supernet address. Please introduce a address" -msgstr "スーパーネットアドレスがありません。アドレスを設定してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108 -msgid "There is no supernet mask. Please introduce a mask" -msgstr "スーパーネットマスクがありません。マスクを設定してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 -msgid "There is no valid address. Please introduce a address" -msgstr "正しいアドレスがありません。アドレスを設定してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68 -msgid "There is no valid mask. Please introduce a mask" -msgstr "正しいマスクがありません。マスクを設定してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83 -msgid "Supernet created" -msgstr "スーパーネットを作成しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85 -msgid "Supernet not created" -msgstr "スーパーネットを作成できませんでした" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135 -msgid "Supernet name exists in bbdd, please select other name" -msgstr "DB にスーパーネット名が存在します。他の名前を選択してください" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 -msgid "Supernet updated" -msgstr "スーパーネットを更新しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131 -msgid "Supernet not updated" -msgstr "スーパーネットを更新できませんでした" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156 -msgid "Could not be deleted, please select supernet" -msgstr "削除できませんでした。スーパーネットを選択してください" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 -#, php-format -msgid "Successfully created %d networks" -msgstr "%d ネットワークを作成しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 -msgid "Failed to create networks" -msgstr "ネットワークの作成に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 -msgid "Entered range address is not valid" -msgstr "入力されたアドレス範囲が不正です" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 -msgid "Network name cannot be repeated in this supernet" -msgstr "このスーパーネットでネットワーク名は繰り返しできません" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 -msgid "No networks to be added to supernet" -msgstr "スーパーネットへ追加されるネットワークがありません" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 -msgid "supernet name could not be added, please select supernet" -msgstr "スーパーネット名を追加できませんでした。スーパーネットを選択してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 -msgid "Could not be deleted, please select supernet and network" -msgstr "削除できませんでした。スーパーネットとネットワークを選択してください。" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 -#, php-format -msgid "Failed to delete %d/%d networks from supernet" -msgstr "スーパーネットから %d/%d ネットワークの削除に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 -msgid "Successfully deleted network from supernet" -msgstr "スーパーネットからネットワークを削除しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 -#, php-format -msgid "Successfully deleted %d/%d networks from supernet" -msgstr "スーパーネットから %d/%d ネットワークを削除しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 -msgid "Subnetting Mask" -msgstr "サブネットマスク" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 -#: ../../enterprise/tools/ipam/ipam_list.php:129 -#: ../../enterprise/tools/ipam/ipam_list.php:595 -msgid "Site" -msgstr "サイト" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 -msgid "Update Supernet" -msgstr "スーパーネット更新" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 -msgid "New Supernet" -msgstr "新規スーパーネット" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 -#, php-format -msgid "%s supernets created" -msgstr "%s スーパーネットを作成しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 -msgid "supernets creation failed" -msgstr "スーパーネットの作成に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 -#: ../../enterprise/tools/ipam/ipam_list.php:93 -msgid "Search filter by name, network address or description" -msgstr "名前、ネットワークアドレス、説明による検索フィルタ" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 -msgid "Min. networks range" -msgstr "最小ネットワーク範囲" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 -msgid "Max. networks range" -msgstr "最大ネットワーク範囲" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 -msgid "Address / Masks" -msgstr "アドレス / マスク" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 -msgid "Subnetting mask" -msgstr "サブネットマスク" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 -msgid "Networks range" -msgstr "ネットワーク範囲" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 -msgid "Delete network in supernet" -msgstr "スーパーネットのネットワーク削除" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 -msgid "Manage networks in supernet" -msgstr "スーパーネットのネットワーク管理" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 -msgid "Add network to supernet" -msgstr "スーパーネットへネットワーク追加" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 -msgid "Next network" -msgstr "次のネットワーク" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 -msgid "Delete Supernet" -msgstr "スーパーネット削除" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 -msgid "No Supernet found" -msgstr "スーパーネットがありません" - -#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 -#: ../../extensions/files_repo.php:210 -msgid "Operation view" -msgstr "操作画面" - -#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 -msgid "Subnetworks calculator" -msgstr "サブネット計算" - -#: ../../enterprise/tools/ipam/ipam.php:96 -msgid "Vlan config" -msgstr "VLAN 設定" - -#: ../../enterprise/tools/ipam/ipam.php:114 -msgid "Vlan wizard" -msgstr "VLAN ウィザード" - -#: ../../enterprise/tools/ipam/ipam.php:133 -msgid "Supernet treeview" -msgstr "スーパーネットツリー表示" - -#: ../../enterprise/tools/ipam/ipam.php:152 -msgid "Network locations" -msgstr "ネットワーク位置" - -#: ../../enterprise/tools/ipam/ipam.php:171 ../../enterprise/tools/ipam/ipam.php:411 -#: ../../enterprise/tools/ipam/ipam_editor.php:224 -#: ../../enterprise/include/ajax/ipam.ajax.php:418 -msgid "Sites" -msgstr "サイト" - -#: ../../enterprise/tools/ipam/ipam.php:196 -msgid "Vlan statistics" -msgstr "VLAN 統計" - -#: ../../enterprise/tools/ipam/ipam.php:216 ../../enterprise/tools/ipam/ipam.php:381 -msgid "Supernet config" -msgstr "スーパーネット設定" - -#: ../../enterprise/tools/ipam/ipam.php:237 ../../enterprise/tools/ipam/ipam.php:396 -msgid "Supernet statistics" -msgstr "スーパーネット統計" - -#: ../../enterprise/tools/ipam/ipam.php:257 -msgid "Supernet map" -msgstr "スーパーネットマップ" - -#: ../../enterprise/tools/ipam/ipam.php:280 -#: ../../enterprise/tools/ipam/ipam_list.php:685 -msgid "Manage addresses" -msgstr "アドレス管理" - -#: ../../enterprise/tools/ipam/ipam.php:300 ../../enterprise/tools/ipam/ipam.php:361 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 -#: ../../godmode/massive/massive_operations.php:390 -#: ../../godmode/massive/massive_edit_plugins.php:921 -msgid "Massive operations" -msgstr "一括操作" - -#: ../../enterprise/tools/ipam/ipam.php:320 -#: ../../enterprise/tools/ipam/ipam_list.php:694 -msgid "Addresses view" -msgstr "アドレス表示" - -#: ../../enterprise/tools/ipam/ipam.php:352 -msgid "/tools/ipam/ipam_network.php" -msgstr "/tools/ipam/ipam_network.php" - -#: ../../enterprise/tools/ipam/ipam.php:366 -msgid "VLAN Config" -msgstr "VLAN 設定" - -#: ../../enterprise/tools/ipam/ipam.php:371 -msgid "VLAN Wizard" -msgstr "VLAN ウィザード" - -#: ../../enterprise/tools/ipam/ipam.php:376 -msgid "VLAN Statistics" -msgstr "VLAN 統計" - -#: ../../enterprise/tools/ipam/ipam.php:386 -msgid "Network location config" -msgstr "ネットワーク位置設定" - -#: ../../enterprise/tools/ipam/ipam.php:391 -msgid "Supernet wizard" -msgstr "スーパーネットウィザード" - -#: ../../enterprise/tools/ipam/ipam.php:401 -msgid "Supernet Map" -msgstr "スーパーネットマップ" - -#: ../../enterprise/tools/ipam/ipam.php:406 -msgid "Supernet Treeview" -msgstr "スーパーネットツリー表示" - -#: ../../enterprise/tools/ipam/ipam.php:432 -msgid "Operation View" -msgstr "操作画面" - -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:380 -msgid "Admin tools" -msgstr "管理ツール" - -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 -msgid "Found supernets" -msgstr "見つかったスーパーネット" - -#: ../../enterprise/tools/ipam/ipam_list.php:97 -#: ../../enterprise/tools/ipam/ipam_list.php:588 -#: ../../enterprise/tools/ipam/ipam_editor.php:191 -#: ../../enterprise/include/ajax/ipam.ajax.php:385 -#: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1983 -#: ../../godmode/events/event_responses.editor.php:123 -msgid "Location" -msgstr "場所" - -#: ../../enterprise/tools/ipam/ipam_list.php:434 -#, php-format -msgid "%s networks created" -msgstr "%s ネットワークを作成しました" - -#: ../../enterprise/tools/ipam/ipam_list.php:436 -msgid "Networks creation failed" -msgstr "ネットワーク作成エラー" - -#: ../../enterprise/tools/ipam/ipam_list.php:501 -msgid "No networks found" -msgstr "ネットワークが見つかりません" - -#: ../../enterprise/tools/ipam/ipam_list.php:609 -#: ../../enterprise/tools/ipam/ipam_editor.php:243 -#: ../../enterprise/include/ajax/ipam.ajax.php:437 -msgid "Vrf" -msgstr "" - -#: ../../enterprise/tools/ipam/ipam_list.php:625 -msgid "IPs" -msgstr "IP" - -#: ../../enterprise/tools/ipam/ipam_list.php:708 -msgid "Edit network" -msgstr "ネットワーク編集" - -#: ../../enterprise/tools/ipam/ipam_list.php:719 -msgid "Delete network" -msgstr "ネットワーク削除" - -#: ../../enterprise/tools/ipam/ipam_sites.php:70 -msgid "Successfully saved" -msgstr "保存しました" - -#: ../../enterprise/tools/ipam/ipam_sites.php:76 -#, php-format -msgid "Failed to save site %s" -msgstr "サイト %s の保存に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_sites.php:132 -#, php-format -msgid "Failed to delete site %s" -msgstr "サイト %s の削除に失敗しました" - -#: ../../enterprise/tools/ipam/ipam_editor.php:56 -msgid "Network not found" -msgstr "ネットワークが見つかりません" - -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -msgid "Format: IP/Mask" -msgstr "フォーマット: IP/マスク" - -#: ../../enterprise/tools/ipam/ipam_editor.php:136 -msgid "Examples" -msgstr "例" - -#: ../../enterprise/tools/ipam/ipam_editor.php:192 -#: ../../enterprise/include/ajax/ipam.ajax.php:386 -msgid "For example: Central Data Center" -msgstr "例: 中央データセンター" - -#: ../../enterprise/tools/ipam/ipam_editor.php:225 -#: ../../enterprise/include/ajax/ipam.ajax.php:419 -msgid "For example: Pandora" -msgstr "例: Pandora" - -#: ../../enterprise/tools/ipam/ipam_editor.php:244 -#: ../../enterprise/include/ajax/ipam.ajax.php:438 -msgid "Virtual Routing and Forwarding" -msgstr "仮想ルーティングとフォワーディング" - -#: ../../enterprise/tools/ipam/ipam_editor.php:262 -#: ../../enterprise/include/ajax/ipam.ajax.php:456 -msgid "Include statistical monitors" -msgstr "統計監視を含める" - -#: ../../enterprise/tools/ipam/ipam_editor.php:277 -#: ../../enterprise/include/ajax/ipam.ajax.php:471 -msgid "Lightweight mode" -msgstr "軽量モード" - -#: ../../enterprise/tools/ipam/ipam_editor.php:278 -#: ../../enterprise/include/ajax/ipam.ajax.php:472 -msgid "Use quicker network scan" -msgstr "より高速なネットワークスキャンを使用" - -#: ../../enterprise/tools/ipam/ipam_editor.php:294 -#: ../../enterprise/include/ajax/ipam.ajax.php:488 -msgid "Target group for monitoring agent" -msgstr "監視エージェントの対象グループ" - -#: ../../enterprise/tools/ipam/ipam_editor.php:315 -#: ../../enterprise/include/ajax/ipam.ajax.php:509 -msgid "Scan interval" -msgstr "スキャン間隔" - -#: ../../enterprise/tools/ipam/ipam_editor.php:316 -#: ../../enterprise/include/ajax/ipam.ajax.php:510 -msgid "0 for manually scan" -msgstr "0 を設定すると手動スキャンです" - -#: ../../enterprise/tools/ipam/ipam_editor.php:330 -#: ../../enterprise/include/ajax/ipam.ajax.php:524 -msgid "The list of users can manage the networks in the IPAM." -msgstr "IPAM でネットワークを管理できるユーザ一覧。" - -#: ../../enterprise/tools/ipam/ipam_editor.php:331 -#: ../../enterprise/include/ajax/ipam.ajax.php:525 -msgid " Only the admin users can manage networks and edit the networks" -msgstr "admin ユーザのみネットワーク管理とネットワークの編集ができます。" - -#: ../../enterprise/tools/ipam/ipam_editor.php:332 -#: ../../enterprise/include/ajax/ipam.ajax.php:526 -msgid "Operator users" -msgstr "オペレータユーザ" - -#: ../../enterprise/tools/ipam/ipam_editor.php:338 -#: ../../enterprise/include/ajax/ipam.ajax.php:532 -msgid "All users" -msgstr "全ユーザ" - -#: ../../enterprise/views/ncm/agent/details.php:89 -msgid "Script type" -msgstr "スクリプトタイプ" - -#: ../../enterprise/views/ncm/agent/details.php:91 -msgid "Execution last timestamp" -msgstr "最新の実行日時" - -#: ../../enterprise/views/ncm/agent/details.php:107 -msgid "Retrieve running configuration" -msgstr "running config の取得" - -#: ../../enterprise/views/ncm/agent/details.php:120 -#: ../../enterprise/views/ncm/agent/details.php:383 -msgid "Restore from backup" -msgstr "バックアップからリストア" - -#: ../../enterprise/views/ncm/agent/details.php:133 -#: ../../enterprise/views/ncm/agent/details.php:325 -#: ../../enterprise/include/lib/NetworkManager.php:85 -msgid "Retrieve firmware version" -msgstr "ファームウエアバージョンの取得" - -#: ../../enterprise/views/ncm/agent/details.php:172 -msgid "Running without a backup" -msgstr "バックアップ無しで実行" - -#: ../../enterprise/views/ncm/agent/details.php:181 -msgid "Latest configuration retrieved is different from backed one" -msgstr "取得された最新の設定は、バックアップとは異なります" - -#: ../../enterprise/views/ncm/agent/details.php:184 -msgid "Backup up to date with latest configuration" -msgstr "最新の設定バックアップ" - -#: ../../enterprise/views/ncm/agent/details.php:208 -msgid "Configuration backup status" -msgstr "設定バックアップ状態" - -#: ../../enterprise/views/ncm/agent/details.php:238 -msgid "Last on demand execution" -msgstr "最新のオンデマンド実行" - -#: ../../enterprise/views/ncm/agent/details.php:246 -#, php-format -msgid "Customize %s" -msgstr "カスタマイズ %s" - -#: ../../enterprise/views/ncm/agent/details.php:250 -msgid "Execute snippet" -msgstr "一時実行" - -#: ../../enterprise/views/ncm/agent/details.php:265 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1542 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1635 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1760 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1835 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -msgid "Preview" -msgstr "プレビュー" - -#: ../../enterprise/views/ncm/agent/details.php:314 -#, php-format -msgid "Current firmware version: %s" -msgstr "現在のファームウエアバージョン: %s" - -#: ../../enterprise/views/ncm/agent/details.php:339 -#, php-format -msgid "Configuration backup present, %s" -msgstr "既存の設定バックアップ %s" - -#: ../../enterprise/views/ncm/agent/details.php:346 -msgid "There is no configuration backup" -msgstr "バックアップ設定がありません" - -#: ../../enterprise/views/ncm/agent/details.php:359 -msgid "Backup latest retrieved configuration" -msgstr "最新の設定バックアップ" - -#: ../../enterprise/views/ncm/agent/details.php:372 -#: ../../enterprise/include/class/ManageBackups.class.php:302 -#: ../../extensions/files_repo/files_repo_list.php:123 -msgid "Download" -msgstr "ダウンロード" - -#: ../../enterprise/views/ncm/agent/details.php:401 -#, php-format -msgid "Latest operation \"%s\" was executed %s ago with result: %s %s" -msgstr "最新の操作 \"%s\" が %s 前に実行され、結果 %s %s になりました" - -#: ../../enterprise/views/ncm/agent/details.php:414 -#, php-format -msgid "Script executions queued: %d" -msgstr "スクリプト実行がキューに入りました: %d" - -#: ../../enterprise/views/ncm/agent/details.php:424 -#, php-format -msgid "Configuration backup schedule: %s" -msgstr "設定バックアップスケジュール: %s" - -#: ../../enterprise/views/ncm/agent/details.php:441 -msgid "Device details" -msgstr "デバイス詳細" - -#: ../../enterprise/views/ncm/agent/details.php:483 -msgid "Configuration timestamp" -msgstr "設定タイムスタンプ" - -#: ../../enterprise/views/ncm/agent/details.php:484 -msgid "Diff" -msgstr "差分" - -#: ../../enterprise/views/ncm/agent/details.php:490 -msgid "No changes with current backup" -msgstr "現在のバックアップとの違いはありません" - -#: ../../enterprise/views/ncm/agent/details.php:494 -msgid "This is the latest configuration retrieved" -msgstr "これは取得された最新の設定です" - -#: ../../enterprise/views/ncm/agent/details.php:507 -#: ../../enterprise/views/ncm/agent/details.php:511 -msgid "This is the current backup." -msgstr "これは最新のバックアップです。" - -#: ../../enterprise/views/ncm/agent/details.php:523 -msgid "Review this configuration" -msgstr "この設定を見る" - -#: ../../enterprise/views/ncm/agent/details.php:534 -msgid "There is no backup to compare with" -msgstr "比較するバックアップがありません" - -#: ../../enterprise/views/ncm/agent/details.php:545 -msgid "Backup this configuration" -msgstr "この設定をバックアップ" - -#: ../../enterprise/views/ncm/agent/details.php:563 -msgid "Configurations registry" -msgstr "設定レジストリ" - -#: ../../enterprise/views/ncm/agent/details.php:574 -msgid "Diff between: backup - selected" -msgstr "次の差分: バックアップ - 選択したもの" - -#: ../../enterprise/views/ncm/agent/details.php:624 -msgid "Retrieve firmware version?" -msgstr "ファームウエアバージョンを取得しますか?" - -#: ../../enterprise/views/ncm/agent/details.php:625 -msgid "" -"This action will connect to the device to retrieve firmware version. Are you sure?" -msgstr "" -"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろしいです" -"か?" - -#: ../../enterprise/views/ncm/agent/details.php:635 -msgid "Get running config?" -msgstr "running config を取得しますか?" - -#: ../../enterprise/views/ncm/agent/details.php:636 -msgid "" -"This action will connect to the device to retrieve latest configuration. Are you sure?" -msgstr "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" - -#: ../../enterprise/views/ncm/agent/details.php:647 -msgid "Backup latest config?" -msgstr "最新の設定をバックアップしますた?" - -#: ../../enterprise/views/ncm/agent/details.php:648 -msgid "" -"This action will overwrite current backup to use latest retrieved configuration. Are " -"you sure?" -msgstr "この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" - -#: ../../enterprise/views/ncm/agent/details.php:656 -msgid "Backup target config?" -msgstr "対象の設定をバックアップしますか?" - -#: ../../enterprise/views/ncm/agent/details.php:657 -msgid "" -"This action will overwrite current backup to use selected configuration. Are you sure?" -msgstr "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" - -#: ../../enterprise/views/ncm/agent/details.php:668 -msgid "Restore device configuration?" -msgstr "デバイス設定をリストアしますか?" - -#: ../../enterprise/views/ncm/agent/details.php:669 -msgid "" -"This action will overwrite device configuration with latest backup. Are you sure?" -msgstr "この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" - -#: ../../enterprise/views/ncm/agent/details.php:688 -msgid "Customize script execution" -msgstr "カスタムスクリプト実行" - -#: ../../enterprise/views/ncm/agent/manage.php:57 -msgid "For instance Cisco" -msgstr "例えば Cisco" - -#: ../../enterprise/views/ncm/agent/manage.php:59 -msgid "Device manufacturer" -msgstr "デバイス製造元" - -#: ../../enterprise/views/ncm/agent/manage.php:87 -msgid "For instance Catalyst 9400" -msgstr "例えば Calalyst 9400" - -#: ../../enterprise/views/ncm/agent/manage.php:89 -msgid "Device model" -msgstr "デバイスモデル" - -#: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:482 -msgid "Connection method" -msgstr "接続方法" - -#: ../../enterprise/views/ncm/agent/manage.php:107 -msgid "connect using SSH" -msgstr "SSH を用いて接続" - -#: ../../enterprise/views/ncm/agent/manage.php:108 -msgid "connect using telnet" -msgstr "telnet を用いて接続" - -#: ../../enterprise/views/ncm/agent/manage.php:131 -msgid "Credentials to access device" -msgstr "デバイスにアクセスするための認証情報" - -#: ../../enterprise/views/ncm/agent/manage.php:144 -msgid "Credentials to administrate device" -msgstr "デバイスを管理するための認証情報" - -#: ../../enterprise/views/ncm/agent/manage.php:177 -msgid "NCM template to be used" -msgstr "利用する NCM テンプレート" - -#: ../../enterprise/views/ncm/agent/manage.php:190 -msgid "Backup schedule (if defined)" -msgstr "バックアップスケジュール (定義されている場合)" - -#: ../../enterprise/views/ncm/agent/manage.php:195 -msgid "No schedule" -msgstr "スケジュールがありません" - -#: ../../enterprise/views/ncm/agent/manage.php:197 -msgid "Once a day" -msgstr "1日一回" - -#: ../../enterprise/views/ncm/agent/manage.php:198 -msgid "Once a week" -msgstr "1週間に一回" - -#: ../../enterprise/views/ncm/agent/manage.php:199 -msgid "Once a month" -msgstr "1ヶ月に一回" - -#: ../../enterprise/views/ncm/agent/manage.php:218 -msgid "Launch event if configuration changes" -msgstr "設定が変更された場合にイベントを発生させる" - -#: ../../enterprise/views/ncm/agent/manage.php:243 -msgid "NCM state" -msgstr "NCM 状態" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63 -msgid "Select firmware file to update to" -msgstr "アップデートするためのファームウエアファイル選択" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75 -msgid "Transfer from url" -msgstr "転送元 URL" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86 -msgid "Target file name" -msgstr "対象ファイル名" - -#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105 -msgid "Customize execution" -msgstr "実行カスタマイズ" - -#: ../../enterprise/views/ncm/snippets/edit.php:42 -#: ../../enterprise/views/ncm/snippets/list.php:32 -msgid "Snippets" -msgstr "一部分" - -#: ../../enterprise/views/ncm/snippets/edit.php:73 -#: ../../enterprise/views/ncm/firmwares/edit.php:72 -#: ../../enterprise/views/ncm/templates/edit.php:73 -msgid "Script not defined" -msgstr "スクリプトが定義されていません" - -#: ../../enterprise/views/ncm/snippets/edit.php:91 -#: ../../enterprise/views/ncm/templates/edit.php:160 -#: ../../enterprise/views/ncm/templates/edit.php:188 -#: ../../enterprise/views/ncm/templates/edit.php:216 -#: ../../enterprise/views/ncm/templates/edit.php:244 -#: ../../enterprise/views/ncm/templates/edit.php:271 -#: ../../enterprise/views/ncm/templates/edit.php:298 -msgid "Script details" -msgstr "スクリプト詳細" - -#: ../../enterprise/views/ncm/firmwares/edit.php:41 -msgid "Firmware" -msgstr "ファームウエア" - -#: ../../enterprise/views/ncm/firmwares/edit.php:101 -msgid "Comma separated, a vendors list compatible with scripts defined within firmware." -msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一覧。" - -#: ../../enterprise/views/ncm/firmwares/edit.php:106 -#: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/templates/edit.php:107 -#: ../../enterprise/views/ncm/templates/list.php:74 -msgid "Vendors" -msgstr "ベンダ" - -#: ../../enterprise/views/ncm/firmwares/edit.php:129 -msgid "Comma separated, a model list compatible with scripts defined within firmware." -msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリスト。" - -#: ../../enterprise/views/ncm/firmwares/edit.php:133 -#: ../../enterprise/views/ncm/firmwares/list.php:76 -#: ../../enterprise/views/ncm/templates/edit.php:134 -#: ../../enterprise/views/ncm/templates/list.php:75 -#: ../../enterprise/views/ncm/models/list.php:32 -msgid "Models" -msgstr "モデル" - -#: ../../enterprise/views/ncm/firmwares/edit.php:149 -msgid "Current binary file will be overwritten, are you sure?" -msgstr "現在のバイナリファイルは上書きされます。よろしいですか?" - -#: ../../enterprise/views/ncm/firmwares/edit.php:154 -msgid "Binary file" -msgstr "バイナリファイル" - -#: ../../enterprise/views/ncm/firmwares/list.php:32 -msgid "Firmwares" -msgstr "ファームウエア" - -#: ../../enterprise/views/ncm/firmwares/list.php:75 -#: ../../enterprise/views/ncm/devices/list.php:118 -#: ../../enterprise/views/ncm/models/edit.php:88 -#: ../../enterprise/views/ncm/models/list.php:72 -msgid "Vendor" -msgstr "ベンダ" - -#: ../../enterprise/views/ncm/vendors/edit.php:89 -msgid "icon" -msgstr "アイコン" - -#: ../../enterprise/views/ncm/devices/list.php:32 -#: ../../enterprise/views/ncm/templates/edit.php:42 -#: ../../enterprise/views/ncm/models/edit.php:37 -msgid "Devices" -msgstr "デバイス" - -#: ../../enterprise/views/ncm/devices/list.php:69 -msgid "" -"WARNING: This is a new feature and is still at an early stage. It is available with " -"limited features, use it with caution and send us your feedback to improve these " -"current capabilities." -msgstr "" -"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意して使用" -"し、現在の機能の改善のためのフィードバックをお願いします。" - -#: ../../enterprise/views/ncm/devices/list.php:72 -msgid "" -"Network configuration manager is used to keep configurations and software versions of " -"any network device in your infrastructure under your control." -msgstr "" -"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソフトウェ" -"アバージョンを管理するために使用します。" - -#: ../../enterprise/views/ncm/devices/list.php:77 -msgid "" -"To start using it, navigatenavigate to your desired agent, tab Network Config " -"Manager, and enable the ncm features,\n" -" you will be asked for the vendor and model of the device." -msgstr "" -"使用を開始するには、目的のエージェントに移動しネットワーク設定管理タブを選択して、ncm " -"機能を有効にします。\n" -" デバイスのベンダとモデルを尋ねられます。" - -#: ../../enterprise/views/ncm/devices/list.php:84 -msgid "Define a NCM template" -msgstr "NCM テンプレート定義" - -#: ../../enterprise/views/ncm/devices/list.php:87 -msgid "Configure agents to use NCM templates" -msgstr "NCM テンプレートを利用するようにエージェントを設定" - -#: ../../enterprise/views/ncm/devices/list.php:119 -msgid "Model" -msgstr "モデル" - -#: ../../enterprise/views/ncm/devices/list.php:121 -msgid "Last queued task" -msgstr "最新のキュータスク" - -#: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/include/functions_tasklist.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../godmode/massive/massive_copy_modules.php:185 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:612 -#: ../../godmode/alerts/alert_list.list.php:485 -msgid "Operations" -msgstr "操作" - -#: ../../enterprise/views/ncm/templates/edit.php:102 -msgid "Comma separated, a vendors list compatible with scripts defined within template." -msgstr "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。" - -#: ../../enterprise/views/ncm/templates/edit.php:130 -msgid "Comma separated, a model list compatible with scripts defined within template." -msgstr "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるモデル一覧。" - -#: ../../enterprise/views/ncm/templates/edit.php:148 -msgid "This script will be used to test devices availability" -msgstr "このスクリプトは、デバイスの可用性をテストするために使用されます" - -#: ../../enterprise/views/ncm/templates/edit.php:153 -msgid "Script: Test" -msgstr "スクリプト: テスト" - -#: ../../enterprise/views/ncm/templates/edit.php:176 -msgid "This script will be used to retrieve configuration from devices" -msgstr "このスクリプトは、デバイスから設定を取得するために使用されます" - -#: ../../enterprise/views/ncm/templates/edit.php:181 -msgid "Script: Get configuration" -msgstr "スクリプト: 設定取得" - -#: ../../enterprise/views/ncm/templates/edit.php:204 -msgid "" -"This script will be used to apply configuration, previously backed up, to devices" -msgstr "" -"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用されます" - -#: ../../enterprise/views/ncm/templates/edit.php:209 -msgid "Script: set configuration" -msgstr "スクリプト: 設定投入" - -#: ../../enterprise/views/ncm/templates/edit.php:232 -msgid "This script will be used to retrieve firmware version from devices" -msgstr "" -"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用されます" - -#: ../../enterprise/views/ncm/templates/edit.php:237 -msgid "Script: get firmware" -msgstr "スクリプト: ファームウエア取得" - -#: ../../enterprise/views/ncm/templates/edit.php:259 -msgid "This script will be used to upgrade firmware version of the devices" -msgstr "" -"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために使用され" -"ます" - -#: ../../enterprise/views/ncm/templates/edit.php:264 -msgid "Script: set firmware" -msgstr "スクリプト: ファームウエア設定" - -#: ../../enterprise/views/ncm/templates/edit.php:286 -msgid "This script will be executed on the devices when selecting CUSTOM task" -msgstr "このスクリプトは、カスタムタスクを選択したときにデバイスで実行されます" - -#: ../../enterprise/views/ncm/templates/edit.php:291 -msgid "Script: custom task" -msgstr "スクリプト: カスタムタスク" - -#: ../../enterprise/views/ncm/templates/list.php:76 -msgid "Scripts defined" -msgstr "定義済みスクリプト" - -#: ../../enterprise/views/cluster/edit.php:41 ../../enterprise/views/cluster/edit.php:68 -#: ../../enterprise/views/cluster/view.php:44 ../../enterprise/views/cluster/view.php:63 -msgid "Cluster list" -msgstr "クラスタ一覧" - -#: ../../enterprise/views/cluster/edit.php:57 -msgid "cluster " -msgstr "クラスタ " - -#: ../../enterprise/views/cluster/edit.php:88 -msgid "View this cluster" -msgstr "このクラスタを表示" - -#: ../../enterprise/views/cluster/view.php:50 ../../enterprise/views/cluster/view.php:81 -msgid "Cluster details" -msgstr "クラスタ詳細" - -#: ../../enterprise/views/cluster/view.php:74 -msgid "Edit this cluster" -msgstr "このクラスタを編集" - -#: ../../enterprise/views/cluster/view.php:223 -msgid "Force cluster status calculation" -msgstr "クラスタの状態計算を強制する" - -#: ../../enterprise/views/cluster/view.php:314 -msgid "Cluster agent" -msgstr "クラスタエージェント" - -#: ../../enterprise/views/cluster/list.php:122 -msgid "New cluster" -msgstr "新規クラスタ" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:31 -#: ../../enterprise/operation/log/log_viewer.php:377 -#: ../../enterprise/operation/log/log_viewer.php:417 -#: ../../enterprise/operation/menu.php:181 -#: ../../enterprise/meta/general/main_menu.php:247 -#: ../../enterprise/meta/general/main_header.php:143 -#: ../../enterprise/meta/include/functions_meta.php:293 -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:223 -msgid "Log viewer" -msgstr "ログ・ビューワ" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:39 -#: ../../enterprise/operation/log/log_viewer.php:391 -#: ../../enterprise/operation/menu.php:211 -msgid "Elasticsearch Interface" -msgstr "Elasticsearch インタフェース" - -#: ../../enterprise/operation/log/elasticsearch_interface.php:49 -msgid "" -"This is a view to interface with Elasticsearch directly from WEB console. \n" -"Please note that you can damage your Elasticsearch if you don`t know exactly what are " -"you are doing. \n" -"This view is intended to be used only by users with a knowledge of Elasticsearch" -msgstr "" -"これは、WEBコンソールから直接 Elasticsearch を操作するための画面です。\n" -"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意してくだ" -"さい。\n" -"この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としています。" - -#: ../../enterprise/operation/log/log_viewer.php:405 -#: ../../enterprise/operation/log/log_viewer.php:424 -#: ../../enterprise/operation/log/log_viewer.php:435 -msgid "Log sources" -msgstr "ログソース" - -#: ../../enterprise/operation/log/log_viewer.php:477 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3806 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4385 -msgid "Exact match" -msgstr "完全一致" - -#: ../../enterprise/operation/log/log_viewer.php:478 -msgid "All words" -msgstr "全単語" - -#: ../../enterprise/operation/log/log_viewer.php:479 -msgid "Any word" -msgstr "任意の単語" - -#: ../../enterprise/operation/log/log_viewer.php:482 -msgid "Search mode" -msgstr "検索モード" - -#: ../../enterprise/operation/log/log_viewer.php:529 -msgid "Full context" -msgstr "全文章" - -#: ../../enterprise/operation/log/log_viewer.php:667 -#: ../../enterprise/operation/log/log_viewer.php:668 -msgid "Edit sources" -msgstr "ソース編集" - -#: ../../enterprise/operation/log/log_viewer.php:711 -msgid "Show log entries" -msgstr "ログエントリ表示" - -#: ../../enterprise/operation/log/log_viewer.php:712 -msgid "Graph log results" -msgstr "ログ結果グラフ表示" - -#: ../../enterprise/operation/log/log_viewer.php:714 -msgid "Display mode" -msgstr "表示モード" - -#: ../../enterprise/operation/log/log_viewer.php:727 -msgid "Use capture model" -msgstr "キャプチャモデルの利用" - -#: ../../enterprise/operation/log/log_viewer.php:757 -msgid "Create new model" -msgstr "新規モデル作成" - -#: ../../enterprise/operation/log/log_viewer.php:761 -#: ../../godmode/reporting/graph_builder.main.php:220 -msgid "Horizontal bars" -msgstr "水平バー" - -#: ../../enterprise/operation/log/log_viewer.php:762 -#: ../../godmode/reporting/graph_builder.main.php:221 -msgid "Vertical bars" -msgstr "垂直バー" - -#: ../../enterprise/operation/log/log_viewer.php:764 -msgid "Graph type" -msgstr "グラフタイプ" - -#: ../../enterprise/operation/log/log_viewer.php:779 -msgid "Advanced options " -msgstr "高度なオプション " - -#: ../../enterprise/operation/log/log_viewer.php:899 -msgid "" -"The maximum limit of rows has been exceeded. Please enter an email to send the csv " -"file" -msgstr "行の上限を超えました。 CSV ファイルを送信するメールアドレスを入力してください" - -#: ../../enterprise/operation/log/log_viewer.php:901 -msgid "e-mail address" -msgstr "メールアドレス" - -#: ../../enterprise/operation/log/log_viewer.php:904 -msgid "" -"WARNING: If your email size exceeds your mail attachment size limit, the file will be " -"saved in the local attachment folder." -msgstr "" -"警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファイルフォ" -"ルダに保存されます。" - -#: ../../enterprise/operation/log/log_viewer.php:1022 -msgid "The start date cannot be greater than the end date" -msgstr "開始日は終了日より後にできません" - -#: ../../enterprise/operation/log/log_viewer.php:1450 -msgid "Add new capture model" -msgstr "新たなキャプチャモデル追加" - -#: ../../enterprise/operation/log/log_viewer.php:1453 -msgid "Edit capture model" -msgstr "キャプチャモデル編集" - -#: ../../enterprise/operation/log/log_viewer.php:1536 -msgid "Error create new model" -msgstr "新規モデル作成エラー" - -#: ../../enterprise/operation/log/log_viewer.php:1563 -msgid "Error delete model" -msgstr "モデル削除エラー" - -#: ../../enterprise/operation/log/log_viewer.php:1609 -msgid "Error update model" -msgstr "モデル更新エラー" - -#: ../../enterprise/operation/services/services.treeview_services.php:111 -#: ../../enterprise/operation/services/services.list.php:284 -#: ../../enterprise/operation/services/services.table_services.php:206 -msgid "Show only favourites" -msgstr "お気に入りのみ表示" - -#: ../../enterprise/operation/services/services.treeview_services.php:151 -msgid "No favourite services defined." -msgstr "お気に入りサービスがありません" - -#: ../../enterprise/operation/services/services.treeview_services.php:153 -#: ../../enterprise/operation/services/services.list.php:447 -#: ../../enterprise/operation/services/services.list.php:456 -#: ../../enterprise/operation/services/services.table_services.php:359 -#: ../../enterprise/operation/services/services.table_services.php:365 -msgid "No services defined." -msgstr "サービスが定義されていません" - -#: ../../enterprise/operation/services/services.treeview_services.php:181 -#: ../../enterprise/operation/services/services.list.php:719 -#: ../../enterprise/operation/services/services.table_services.php:450 -msgid "Create Service" -msgstr "サービスの作成" - -#: ../../enterprise/operation/services/services.treeview_services.php:247 -#: ../../godmode/groups/group_list.php:1035 -msgid "Found groups" -msgstr "見つかったグループ" - -#: ../../enterprise/operation/services/services.service.php:55 -#: ../../enterprise/operation/services/services.service_map.php:62 -#: ../../enterprise/godmode/services/services.service.php:303 -#: ../../enterprise/godmode/services/services.service.php:346 -msgid "Not found" -msgstr "見つかりません" - -#: ../../enterprise/operation/services/services.service.php:90 -msgid "No Services" -msgstr "サービスがありません" - -#: ../../enterprise/operation/services/services.service.php:203 -#: ../../enterprise/operation/services/services.list.php:586 -msgid "SLA graph" -msgstr "SLA グラフ" - -#: ../../enterprise/operation/services/services.service.php:227 -msgid "List of elements" -msgstr "要素一覧" - -#: ../../enterprise/operation/services/services.list.php:62 -msgid "List of services" -msgstr "サービス一覧" - -#: ../../enterprise/operation/services/services.list.php:100 -msgid "Services successfully deleted" -msgstr "サービスを削除しました" - -#: ../../enterprise/operation/services/services.list.php:101 -#, php-format -msgid "Error while deleting services: %s" -msgstr "サービス削除エラー: %s" - -#: ../../enterprise/operation/services/services.list.php:104 -#: ../../enterprise/include/functions_visual_map.php:683 -msgid "No services selected" -msgstr "サービスが選択されていません" - -#: ../../enterprise/operation/services/services.list.php:118 -msgid "Service deleted successfully" -msgstr "サービスを削除しました" - -#: ../../enterprise/operation/services/services.list.php:119 -#, php-format -msgid "Error deleting service %s" -msgstr "サービス削除エラー %s" - -#: ../../enterprise/operation/services/services.list.php:127 -msgid "Service forced successfully" -msgstr "サービスの強制実行をしました" - -#: ../../enterprise/operation/services/services.list.php:128 -msgid "Error service forced" -msgstr "サービスの強制実行エラー" - -#: ../../enterprise/operation/services/services.list.php:276 -#: ../../enterprise/operation/services/services.table_services.php:198 -#: ../../enterprise/godmode/services/services.service.php:651 -#: ../../enterprise/godmode/massive/massive_create_services.php:699 -msgid "Smart" -msgstr "スマート" - -#: ../../enterprise/operation/services/services.list.php:278 -#: ../../enterprise/operation/services/services.table_services.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:175 -#: ../../enterprise/godmode/services/services.service.php:643 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 -#: ../../enterprise/godmode/massive/massive_create_services.php:690 -#: ../../godmode/massive/massive_edit_modules.php:933 -#: ../../godmode/alerts/alert_view.php:407 -msgid "Mode" -msgstr "モード" - -#: ../../enterprise/operation/services/services.list.php:298 -#: ../../enterprise/operation/services/services.table_services.php:220 -msgid "Show only root services" -msgstr "ルートサービスのみ表示" - -#: ../../enterprise/operation/services/services.list.php:590 -msgid "Status graph" -msgstr "状態グラフ" - -#: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 -msgid "Table view" -msgstr "表形式表示" - -#: ../../enterprise/operation/services/services.php:90 -#: ../../enterprise/operation/services/services.php:182 -#: ../../enterprise/godmode/services/services.elements.php:697 -#: ../../enterprise/godmode/services/services.service.php:388 -msgid "Services list" -msgstr "サービス一覧" - -#: ../../enterprise/operation/services/services.php:105 -#: ../../enterprise/godmode/services/services.elements.php:711 -#: ../../enterprise/godmode/services/services.service.php:402 -msgid "Config Service" -msgstr "サービス設定" - -#: ../../enterprise/operation/services/services.php:123 -#: ../../enterprise/godmode/services/services.elements.php:728 -#: ../../enterprise/godmode/services/services.service.php:419 -msgid "Config Elements" -msgstr "要素編集" - -#: ../../enterprise/operation/services/services.php:136 -#: ../../enterprise/godmode/services/services.elements.php:740 -#: ../../enterprise/godmode/services/services.service.php:431 -msgid "Bulk service elements operations" -msgstr "一括サービス要素操作" - -#: ../../enterprise/operation/services/services.php:152 -#: ../../enterprise/godmode/services/services.elements.php:755 -#: ../../enterprise/godmode/services/services.service.php:446 -msgid "View Service" -msgstr "サービス参照" - -#: ../../enterprise/operation/services/services.php:197 -msgid "Service table view" -msgstr "サービス一覧表示" - -#: ../../enterprise/operation/services/services.php:212 -msgid "Service tree view" -msgstr "サービスツリー表示" - -#: ../../enterprise/operation/services/services.php:229 -msgid "Bulk creation" -msgstr "一括作成" - -#: ../../enterprise/operation/reporting/custom_reporting.php:14 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/operation/reporting/custom_reporting.php:16 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 -msgid "JSON" -msgstr "JSON" - -#: ../../enterprise/operation/reporting/custom_reporting.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 -msgid "Export to JSON" -msgstr "JSONへエクスポート" - -#: ../../enterprise/operation/reporting/custom_reporting.php:90 -#: ../../enterprise/operation/reporting/custom_reporting.php:164 -#: ../../enterprise/include/functions_reporting.php:8218 -msgid "Send by email" -msgstr "Eメールで送信" - -#: ../../enterprise/operation/reporting/custom_reporting.php:101 -#: ../../enterprise/include/functions_reporting.php:8150 -msgid "ID Report" -msgstr "レポートID" - -#: ../../enterprise/operation/reporting/custom_reporting.php:124 -#: ../../enterprise/include/functions_cron.php:186 -#: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8178 -msgid "Send to emails (separated by comma)" -msgstr "メール送信 (カンマ区切り)" - -#: ../../enterprise/operation/reporting/custom_reporting.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:158 -#: ../../enterprise/include/functions_cron.php:800 -#: ../../enterprise/include/functions_cron.php:833 -#: ../../enterprise/include/functions_reporting.php:8198 -#: ../../enterprise/include/functions_reporting.php:8212 -msgid "This is an optional field" -msgstr "これはオプションフィールドです" - -#: ../../enterprise/operation/reporting/custom_reporting.php:200 -#: ../../enterprise/include/functions_reporting.php:8306 -msgid "Send by email " -msgstr "Eメールで送信 " - -#: ../../enterprise/operation/menu.php:32 -msgid "Cluster View" -msgstr "クラスタ表示" - -#: ../../enterprise/operation/menu.php:45 -#: ../../enterprise/godmode/reporting/aws_view.php:106 -#: ../../enterprise/godmode/reporting/aws_view.php:139 -msgid "AWS View" -msgstr "AWS 表示" - -#: ../../enterprise/operation/menu.php:143 -msgid "Transactional map" -msgstr "トランザクションマップ" - -#: ../../enterprise/operation/menu.php:160 -#: ../../enterprise/godmode/reporting/mysql_builder.php:79 -#: ../../enterprise/godmode/reporting/mysql_builder.php:206 -msgid "Custom SQL" -msgstr "カスタム SQL" - -#: ../../enterprise/operation/menu.php:170 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 -msgid "SNMP trap editor" -msgstr "SNMP トラップエディタ" - -#: ../../enterprise/operation/menu.php:191 -#: ../../enterprise/operation/agentes/tag_view.php:41 -msgid "Tag view" -msgstr "タグ表示" - -#: ../../enterprise/operation/menu.php:200 -#: ../../enterprise/include/class/ManageBackups.class.php:121 -msgid "DB Backup Manager" -msgstr "DB バックアップ管理" - -#: ../../enterprise/operation/agentes/policy_view.php:38 -msgid "This agent has no policy assigned" -msgstr "このエージェントにはポリシーが適用されていません" - -#: ../../enterprise/operation/agentes/policy_view.php:58 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40 -#: ../../enterprise/godmode/policies/policy_agents.php:326 -#: ../../enterprise/godmode/policies/policy_queue.php:218 -#: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_modules.php:476 -#: ../../enterprise/godmode/policies/policies.php:268 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:309 -#: ../../enterprise/godmode/policies/configure_policy.php:81 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 -#: ../../enterprise/godmode/policies/policy_alerts.php:64 -#: ../../enterprise/godmode/policies/policy_collections.php:50 -#: ../../enterprise/godmode/policies/policy_plugins.php:38 -#, php-format -msgid "" -"This node is configured with centralized mode. All policies information is read only. " -"Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用で" -"す。管理するには %s に移動します。" - -#: ../../enterprise/operation/agentes/policy_view.php:69 -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 -msgid "Last application" -msgstr "最後の適用" - -#: ../../enterprise/operation/agentes/policy_view.php:83 -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 -msgid "Policy applied" -msgstr "適用済ポリシー" - -#: ../../enterprise/operation/agentes/policy_view.php:89 -msgid "Policy outdate" -msgstr "期限切れポリシー" - -#: ../../enterprise/operation/agentes/policy_view.php:159 -#: ../../enterprise/operation/agentes/policy_view.php:169 -msgid "Toggle the collection table" -msgstr "コレクションテーブル切り替え" - -#: ../../enterprise/operation/agentes/policy_view.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:76 -#: ../../enterprise/godmode/agentes/collection_manager.php:207 -msgid "Dir" -msgstr "ディレクトリ" - -#: ../../enterprise/operation/agentes/policy_view.php:165 -msgid "Descripttion" -msgstr "説明" - -#: ../../enterprise/operation/agentes/policy_view.php:173 -msgid "Show Collection" -msgstr "コレクション表示" - -#: ../../enterprise/operation/agentes/policy_view.php:195 -#: ../../enterprise/operation/agentes/policy_view.php:196 -#: ../../enterprise/operation/agentes/collection_view.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:129 -#: ../../enterprise/godmode/agentes/collection_manager.php:130 -#: ../../enterprise/godmode/agentes/collection_manager.php:254 -msgid "Show files" -msgstr "ファイル表示" - -#: ../../enterprise/operation/agentes/policy_view.php:217 -#: ../../enterprise/operation/agentes/policy_view.php:218 -#: ../../enterprise/operation/agentes/collection_view.php:128 -#: ../../enterprise/operation/agentes/collection_view.php:129 -#: ../../enterprise/godmode/policies/policy_collections.php:224 -#: ../../enterprise/godmode/policies/policy_collections.php:296 -msgid "Outdate" -msgstr "期限切れ" - -#: ../../enterprise/operation/agentes/policy_view.php:253 -#: ../../enterprise/operation/agentes/policy_view.php:265 -msgid "Toggle the alert table" -msgstr "アラートテーブル切り替え" - -#: ../../enterprise/operation/agentes/policy_view.php:269 -msgid "Show Alert" -msgstr "アラート表示" - -#: ../../enterprise/operation/agentes/policy_view.php:390 -#: ../../enterprise/operation/agentes/policy_view.php:402 -msgid "Toggle the module table" -msgstr "モジュールテーブル切り替え" - -#: ../../enterprise/operation/agentes/policy_view.php:394 -msgid "Relationship" -msgstr "関連" - -#: ../../enterprise/operation/agentes/policy_view.php:394 -#: ../../enterprise/godmode/policies/policy_agents.php:849 -msgid "R." -msgstr "R." - -#: ../../enterprise/operation/agentes/policy_view.php:406 -msgid "Show Modules" -msgstr "モジュール表示" - -#: ../../enterprise/operation/agentes/policy_view.php:425 -msgid "(Un-adopted)" -msgstr "(未適用)" - -#: ../../enterprise/operation/agentes/policy_view.php:428 -msgid "(Adopted)" -msgstr "(適用)" - -#: ../../enterprise/operation/agentes/policy_view.php:433 -msgid "(Un-adopted) (Unlinked)" -msgstr "(未適用) (未リンク)" - -#: ../../enterprise/operation/agentes/policy_view.php:436 -msgid "(Adopted) (Unlinked)" -msgstr "(適用) (未リンク)" - -#: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1086 -msgid "Non initialized module" -msgstr "未初期化モジュール" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 -#: ../../enterprise/operation/agentes/manage_transmap.php:56 -msgid "Transactions List" -msgstr "トランザクション一覧" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 -#: ../../enterprise/operation/agentes/manage_transmap.php:96 -msgid "Edit Transaction" -msgstr "トランザクション編集" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 -msgid "Go back to phases list" -msgstr "フェーズ一覧に戻る" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 -msgid "Transactional Map - Phase - " -msgstr "トランザクションマップ - フェーズ - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:424 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:466 -msgid "Launch script" -msgstr "スクリプトの起動" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 -#: ../../godmode/massive/massive_edit_modules.php:1135 -#: ../../godmode/agentes/module_manager_editor_common.php:1138 -msgid "Retries" -msgstr "リトライ" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../godmode/massive/massive_edit_modules.php:1122 -#: ../../godmode/agentes/module_manager_editor_common.php:1135 -msgid "Timeout" -msgstr "タイムアウト" - -#: ../../enterprise/operation/agentes/collection_view.php:60 -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -msgid "This agent have not a remote configuration, please set it." -msgstr "このエージェントはリモート設定ではありません。設定してください。" - -#: ../../enterprise/operation/agentes/collection_view.php:66 -msgid "No collection assigned to this agent" -msgstr "このエージェントに割り当てられたコレクションがありません" - -#: ../../enterprise/operation/agentes/collection_view.php:139 -#: ../../enterprise/operation/agentes/collection_view.php:140 -#: ../../enterprise/meta/advanced/collections.data.php:383 -#: ../../enterprise/meta/advanced/collections.data.php:384 -#: ../../enterprise/meta/advanced/collections.php:405 -#: ../../enterprise/meta/advanced/collections.php:406 -#: ../../enterprise/godmode/agentes/collection_manager.php:175 -#: ../../enterprise/godmode/agentes/collection_manager.php:176 -#: ../../enterprise/godmode/agentes/collection_manager.php:290 -#: ../../enterprise/godmode/agentes/collection_manager.php:291 -#: ../../enterprise/godmode/agentes/collections.data.php:477 -#: ../../enterprise/godmode/agentes/collections.data.php:478 -#: ../../enterprise/godmode/agentes/collections.php:385 -#: ../../enterprise/godmode/agentes/collections.php:386 -msgid "The collection directory does not exist." -msgstr "コレクションディレクトリが存在しません。" - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 -msgid "No agent selected" -msgstr "エージェント選択なし" - -#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 -msgid "Route not found" -msgstr "ルートが見つかりません" - -#: ../../enterprise/operation/agentes/wux_console_view.php:224 -msgid "Selected transaction has no stats" -msgstr "選択したトランザクションには状態がありません" - -#: ../../enterprise/operation/agentes/wux_console_view.php:242 -msgid "No WUX transactions found." -msgstr "WUX トランザクションが見つかりません。" - -#: ../../enterprise/operation/agentes/wux_console_view.php:261 -#: ../../enterprise/operation/agentes/ux_console_view.php:133 -msgid "Transaction" -msgstr "トランザクション" - -#: ../../enterprise/operation/agentes/wux_console_view.php:286 -#: ../../enterprise/operation/agentes/ux_console_view.php:142 -msgid "Show transaction" -msgstr "トランザクション表示" - -#: ../../enterprise/operation/agentes/wux_console_view.php:332 -#: ../../enterprise/operation/agentes/ux_console_view.php:266 -msgid "Global results" -msgstr "全体の結果" - -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -msgid "Failed: " -msgstr "失敗: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -msgid "Success: " -msgstr "成功: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:384 -msgid "Total transaction time: " -msgstr "全トランザクション時間: " - -#: ../../enterprise/operation/agentes/wux_console_view.php:398 -#, php-format -msgid "Execution results for transaction %s" -msgstr "トランザクション %s の実行結果" - -#: ../../enterprise/operation/agentes/wux_console_view.php:527 -msgid "View all stats" -msgstr "全状態表示" - -#: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -msgid "Transaction history" -msgstr "トランザクション履歴" - -#: ../../enterprise/operation/agentes/wux_console_view.php:611 -msgid "Invalid transaction." -msgstr "不正なトランザクション。" - -#: ../../enterprise/operation/agentes/transactional_map.php:61 -msgid "List of transactions" -msgstr "トランザクション一覧" - -#: ../../enterprise/operation/agentes/transactional_map.php:74 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 -#: ../../enterprise/operation/agentes/manage_transmap.php:176 -msgid "Transactional Map" -msgstr "トランザクションマップ" - -#: ../../enterprise/operation/agentes/transactional_map.php:149 -msgid "Name can't be empty" -msgstr "名前は空にできません" - -#: ../../enterprise/operation/agentes/transactional_map.php:206 -msgid "Transaction name" -msgstr "トランザクション名" - -#: ../../enterprise/operation/agentes/transactional_map.php:209 -msgid "Running status" -msgstr "実行状態" - -#: ../../enterprise/operation/agentes/transactional_map.php:211 -msgid "Time spent" -msgstr "経過時間" - -#: ../../enterprise/operation/agentes/transactional_map.php:254 -msgid "Stopped" -msgstr "停止" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Starting" -msgstr "開始中" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Stopping" -msgstr "停止中" - -#: ../../enterprise/operation/agentes/transactional_map.php:265 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 -#: ../../godmode/agentes/planned_downtime.list.php:616 -#: ../../godmode/agentes/planned_downtime.list.php:688 -msgid "Running" -msgstr "実行中" - -#: ../../enterprise/operation/agentes/transactional_map.php:439 -msgid "Edit phases" -msgstr "フェーズ編集" - -#: ../../enterprise/operation/agentes/transactional_map.php:461 -msgid "Go to `Status` module" -msgstr "モジュールの状態へ行く" - -#: ../../enterprise/operation/agentes/transactional_map.php:492 -msgid "Error in phases section" -msgstr "フェーズセクションエラー" - -#: ../../enterprise/operation/agentes/transactional_map.php:512 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 -msgid "Create Transaction" -msgstr "トランザクション作成" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 -msgid "Please, reset the transaction" -msgstr "トランザクションをリセットしてください" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 -msgid "Successfully data updated" -msgstr "データを更新しました" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 -msgid "Could not be data updated" -msgstr "データを更新できませんでした" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 -#: ../../enterprise/operation/agentes/manage_transmap.php:84 -msgid "Edit main data" -msgstr "メインデータ編集" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 -#: ../../enterprise/operation/agentes/manage_transmap.php:109 -msgid "View Transaction" -msgstr "トランザクション表示" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 -msgid "Create Phase" -msgstr "フェーズ作成" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 -msgid "Index" -msgstr "目次" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 -msgid "Dependencies" -msgstr "依存関係" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 -msgid "Enables" -msgstr "有効" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 -#: ../../enterprise/include/ajax/transactional.ajax.php:174 -msgid "The phase does not have a defined script" -msgstr "フェーズに定義済スクリプトがありません" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 -msgid "Not valid dependencies field" -msgstr "正しい依存フィールドではありません" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -msgid "Not valid enables field" -msgstr "正しい有効フィールドではありません" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 -#: ../../enterprise/include/ajax/transactional.ajax.php:211 -msgid "Edit Data" -msgstr "データ編集" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 -msgid "Loop interval" -msgstr "ループ間隔" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 -msgid "Transactional Map - Edit Transaction" -msgstr "トランザクションマップ - トランザクション編集" - -#: ../../enterprise/operation/agentes/agent_inventory.php:61 -msgid "This agent has not modules inventory" -msgstr "このエージェントにはインベントリモジュールがありません" - -#: ../../enterprise/operation/agentes/agent_inventory.php:162 -#: ../../enterprise/operation/agentes/agent_inventory.php:163 -msgid "Diff view" -msgstr "差分表示" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 -msgid "Unsucessful get module inventory data." -msgstr "モジュールのインベントリデータ取得に失敗しました。" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 -#: ../../mobile/operation/modules.php:799 ../../mobile/operation/tactical.php:239 -#: ../../mobile/operation/events.php:871 ../../mobile/operation/module_graph.php:477 -#: ../../mobile/operation/agents.php:463 -#: ../../godmode/reporting/visual_console_builder.wizard.php:538 -msgid "Loading..." -msgstr "読み込み中..." - -#: ../../enterprise/operation/agentes/manage_transmap.php:153 -msgid "Return to windowed mode" -msgstr "ウインドウモードへ戻る" - -#: ../../enterprise/operation/agentes/manage_transmap.php:182 -msgid "Transaction not found" -msgstr "トランザクションが見つかりません" - -#: ../../enterprise/operation/agentes/manage_transmap.php:185 -msgid "Master lock file not found (No data to show)" -msgstr "マスターロックファイルが見つかりません (表示するデータがありません)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:188 -msgid "Transaction is stopped" -msgstr "トランザクションが停止しました" - -#: ../../enterprise/operation/agentes/manage_transmap.php:191 -msgid "Error, please check the transaction phases" -msgstr "エラー、トランザクションフェーズをチェックしてください" - -#: ../../enterprise/operation/agentes/ux_console_view.php:43 -msgid "No ux transaction selected." -msgstr "UX トランザクションが選択されていません。" - -#: ../../enterprise/operation/agentes/ux_console_view.php:124 -msgid "No ux transactions found." -msgstr "UX トランザクションが見つかりません。" - -#: ../../enterprise/operation/agentes/ux_console_view.php:168 -msgid "Execution results for transaction " -msgstr "トランザクションの実行結果 " - -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/meta/advanced/collections.php:289 -#: ../../enterprise/godmode/agentes/collections.php:327 -#: ../../godmode/agentes/configurar_agente.php:701 -msgid "Collection" -msgstr "コレクション" - -#: ../../enterprise/operation/agentes/ver_agente.php:258 -msgid "URL Route Analyzer" -msgstr "URL ルートアナライザー" - -#: ../../enterprise/operation/agentes/ver_agente.php:274 -msgid "UX Console" -msgstr "UX コンソール" - -#: ../../enterprise/operation/agentes/ver_agente.php:290 -msgid "WUX Console" -msgstr "WUX コンソール" - -#: ../../enterprise/operation/inventory/inventory.php:275 -msgid "You must select at least one filter." -msgstr "少なくとも一つのフィルタを選択する必要があります。" - -#: ../../enterprise/operation/inventory/inventory.php:420 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2075 -msgid "Last" -msgstr "最新" - -#: ../../enterprise/operation/inventory/inventory.php:424 -msgid "Order by agent" -msgstr "エージェントで並べ替え" - -#: ../../enterprise/operation/inventory/inventory.php:466 -msgid "Export this list to CSV" -msgstr "この一覧を CSV へエクスポートする" - -#: ../../enterprise/include/functions_cron.php:178 -#: ../../enterprise/include/functions_cron.php:256 -#: ../../enterprise/include/functions_cron.php:331 -#: ../../enterprise/include/functions_cron.php:375 -msgid "Report to build" -msgstr "生成するレポート" - -#: ../../enterprise/include/functions_cron.php:199 -#: ../../enterprise/include/functions_cron.php:249 -#: ../../enterprise/include/functions_cron.php:275 -msgid "Report Type" -msgstr "レポートタイプ" - -#: ../../enterprise/include/functions_cron.php:206 -#: ../../enterprise/include/functions_cron.php:353 -msgid "Template to build" -msgstr "ビルドするテンプレート" - -#: ../../enterprise/include/functions_cron.php:224 -msgid "Regexp agent filter" -msgstr "正規表現エージェントフィルタ" - -#: ../../enterprise/include/functions_cron.php:264 -#: ../../enterprise/include/functions_cron.php:286 -#: ../../enterprise/include/functions_cron.php:376 -msgid "Save to disk into path" -msgstr "保存先パス" - -#: ../../enterprise/include/functions_cron.php:265 -msgid "The apache user should have read-write access on this folder. Ex: " -msgstr "apache ユーザがこのフォルダに読み書き可能である必要があります。例: " - -#: ../../enterprise/include/functions_cron.php:271 -msgid "File name prefix" -msgstr "ファイル名プレフィックス" - -#: ../../enterprise/include/functions_cron.php:291 -msgid "Active backups" -msgstr "有効なバックアップ" - -#: ../../enterprise/include/functions_cron.php:306 -#: ../../enterprise/include/functions_cron.php:332 -#: ../../enterprise/include/functions_cron.php:354 -msgid "Send to email" -msgstr "送信先メールアドレス" - -#: ../../enterprise/include/functions_cron.php:315 -msgid "Function name" -msgstr "機能名" - -#: ../../enterprise/include/functions_cron.php:333 -msgid "Send custom report by email" -msgstr "カスタムレポートをメールで送信" - -#: ../../enterprise/include/functions_cron.php:355 -msgid "Send custom report (from template) by email" -msgstr "(テンプレートから) email でカスタムレポートを送信" - -#: ../../enterprise/include/functions_cron.php:377 -msgid "Save custom report to disk" -msgstr "カスタムレポートをディスクに保存" - -#: ../../enterprise/include/functions_cron.php:397 -msgid "Backup Pandora database" -msgstr "Pandora データベースバックアップ" - -#: ../../enterprise/include/functions_cron.php:417 -msgid "Execute custom script" -msgstr "カスタムスクリプト実行" - -#: ../../enterprise/include/functions_cron.php:499 -msgid "Not scheduled" -msgstr "スケジュールされていません" - -#: ../../enterprise/include/functions_cron.php:502 -#: ../../enterprise/include/lib/NetworkManager.php:182 -#: ../../godmode/agentes/module_manager_editor_prediction.php:181 -#: ../../godmode/agentes/planned_downtime.editor.php:643 -msgid "Weekly" -msgstr "週次" - -#: ../../enterprise/include/functions_cron.php:503 -#: ../../godmode/agentes/module_manager_editor_prediction.php:182 -#: ../../godmode/agentes/planned_downtime.editor.php:644 -msgid "Monthly" -msgstr "月次" - -#: ../../enterprise/include/functions_cron.php:504 -msgid "Yearly" -msgstr "年次" - -#: ../../enterprise/include/functions_cron.php:1531 -msgid "Scheduled report had an attempt to send an email without attachments." -msgstr "スケジュールされたレポートは、添付ファイルなしでメールを送信しました。" - -#: ../../enterprise/include/functions_cron.php:1534 -msgid "Scheduled report had an attempt to send an email with some attachments." -msgstr "" -"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しました。" - -#: ../../enterprise/include/functions_cron.php:1778 -msgid "Attached to this email there's a CSV file of the logs" -msgstr "このメールに添付されているのは、ログの CSV ファイルです。" - -#: ../../enterprise/include/functions_cron.php:1788 -msgid "logs csv" -msgstr "ログ CSV" - -#: ../../enterprise/include/functions_cron.php:2207 -#, php-format -msgid "Error while executing task: %s, running %s, reason %s" -msgstr "%s タスク実行中にエラーです。実行中 %s, 理由 %s" - -#: ../../enterprise/include/functions_cron.php:2221 -#: ../../enterprise/include/functions_cron.php:2231 -msgid "Error while executing task" -msgstr "タスク実行中にエラーです" - -#: ../../enterprise/include/functions_enterprise_api.php:1119 -msgid "Is not metaconsole" -msgstr "メタコンソールではありません" - -#: ../../enterprise/include/functions_enterprise_api.php:2580 -msgid "Error getting alert actions." -msgstr "アラートアクション取得エラー" - -#: ../../enterprise/include/functions_enterprise_api.php:3553 -#: ../../enterprise/include/functions_enterprise_api.php:3607 -#, php-format -msgid "%d agents added to apply queue." -msgstr "適用キューへ %d エージェントを追加しました" - -#: ../../enterprise/include/functions_enterprise_api.php:3576 -#: ../../enterprise/include/functions_policies.php:4857 -#, php-format -msgid "Successfully applied to node %s." -msgstr "ノード %s へ適用しました。" - -#: ../../enterprise/include/functions_enterprise_api.php:3578 -#: ../../enterprise/include/functions_policies.php:4859 -#, php-format -msgid "Successfully applied to nodes: %s." -msgstr "ノードへ適用しました: %s" - -#: ../../enterprise/include/functions_enterprise_api.php:3617 -#, php-format -msgid "Id policy %d already pending to apply." -msgstr "ポリシー ID %d はすでに適用保留中です。" - -#: ../../enterprise/include/functions_enterprise_api.php:3619 -#, php-format -msgid "Id policy %d already pending to apply in Id agent %d." -msgstr "ポリシー ID %d は、すでにエージェント ID %d への適用保留中です。" - -#: ../../enterprise/include/functions_enterprise_api.php:4035 -#: ../../enterprise/include/functions_enterprise_api.php:4062 -msgid "" -"Error adding web analysis module to policy. Id_module_type is not correct for web " -"analysis modules." -msgstr "" -"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 Id_module_type が、" -"ウェブ分析モジュールに対して正しくありません。" - -#: ../../enterprise/include/functions_enterprise_api.php:4044 -msgid "" -"Network Module could not be added to policy. Id_module_type is not correct for " -"network modules." -msgstr "" -"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネットワーク" -"モジュールに対して正しくありません。" - -#: ../../enterprise/include/functions_enterprise_api.php:4053 -msgid "" -"Error adding web module to policy. Id_module_type is not correct for web modules." -msgstr "" -"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対して正し" -"くありません。" - -#: ../../enterprise/include/functions_enterprise_api.php:4074 -msgid "Error adding module to policy configuration_data is not a valid base64." -msgstr "ポリシーへのモジュール追加エラー。設定データが正しい base64 ではありません。" - -#: ../../enterprise/include/functions_enterprise_api.php:6075 -msgid "The agent could not be added to the policy." -msgstr "エージェントをポリシーに追加できませんでした。" - -#: ../../enterprise/include/functions_enterprise_api.php:6292 -#, php-format -msgid "Failed Updated remote config files %d" -msgstr "リモート設定ファイル %d の更新に失敗しました。" - -#: ../../enterprise/include/functions_enterprise_api.php:6302 -#, php-format -msgid "Updated remote config files: %d => %d" -msgstr "リモート設定ファイルを更新しました: %d -> %d" - -#: ../../enterprise/include/functions_reporting_csv.php:416 -msgid "Event report agent" -msgstr "イベントレポートエージェント" - -#: ../../enterprise/include/functions_reporting_csv.php:418 -msgid "Event report group" -msgstr "イベントレポートグループ" - -#: ../../enterprise/include/functions_reporting_csv.php:442 -msgid "Event report module" -msgstr "イベントレポートモジュール" - -#: ../../enterprise/include/functions_reporting_csv.php:502 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2614 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2604 -msgid "Time in OK status" -msgstr "正常状態の時間" - -#: ../../enterprise/include/functions_reporting_csv.php:510 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2630 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2620 -msgid "Time in unknown status" -msgstr "不明状態の時間" - -#: ../../enterprise/include/functions_reporting_csv.php:514 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2632 -msgid "Time of not initialized module" -msgstr "未初期化モジュールの時間" - -#: ../../enterprise/include/functions_reporting_csv.php:518 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2654 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2644 -msgid "Time of downtime" -msgstr "計画停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "% OK" -msgstr "正常%" - -#: ../../enterprise/include/functions_reporting_csv.php:534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 -msgid "Checks in OK status" -msgstr "OK 状態のチェック" - -#: ../../enterprise/include/functions_reporting_csv.php:538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2744 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 -msgid "Unknown checks" -msgstr "不明チェック" - -#: ../../enterprise/include/functions_reporting_csv.php:662 -msgid "Maximum value" -msgstr "最大値" - -#: ../../enterprise/include/functions_reporting_csv.php:667 -msgid "Minimum value" -msgstr "最小値" - -#: ../../enterprise/include/functions_reporting_csv.php:670 -msgid "Average value" -msgstr "平均値" - -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Sec. group" -msgstr "セカンダリグループ" - -#: ../../enterprise/include/functions_reporting_csv.php:718 -msgid "Custom Field" -msgstr "カスタムフィールド" - -#: ../../enterprise/include/functions_reporting_csv.php:817 -msgid "Serialized data " -msgstr "連続データ " - -#: ../../enterprise/include/functions_reporting_csv.php:856 -msgid "Last Value " -msgstr "最新の値 " - -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Uknown agents" -msgstr "不明エージェント" - -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Last 8 hours events" -msgstr "直近 8時間のイベント" - -#: ../../enterprise/include/functions_reporting_csv.php:1115 -msgid "Illegal query or any other error" -msgstr "不正なクエリまたはその他エラー" - -#: ../../enterprise/include/functions_reporting_csv.php:1220 -#: ../../enterprise/include/functions_reporting_csv.php:1222 -#: ../../enterprise/include/functions_reporting_csv.php:1228 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -msgid "Minimum Value" -msgstr "最小値" - -#: ../../enterprise/include/functions_reporting_csv.php:1275 -#: ../../enterprise/include/functions_reporting_csv.php:1277 -#: ../../enterprise/include/functions_reporting_csv.php:1283 -#: ../../enterprise/include/functions_reporting_csv.php:1285 -msgid "Maximun Value" -msgstr "最大値" - -#: ../../enterprise/include/functions_reporting_csv.php:1394 -msgid "AVG" -msgstr "平均" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "% Wrong" -msgstr "異常%" - -#: ../../enterprise/include/functions_reporting_csv.php:1444 -msgid "Simple Graph" -msgstr "単一グラフ" - -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1550 -#: ../../enterprise/include/functions_reporting_csv.php:1623 -#: ../../enterprise/include/functions_reporting_csv.php:1742 -#: ../../enterprise/include/functions_reporting_csv.php:2050 -msgid "SLA Max" -msgstr "最大 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1505 -#: ../../enterprise/include/functions_reporting_csv.php:1551 -#: ../../enterprise/include/functions_reporting_csv.php:1624 -#: ../../enterprise/include/functions_reporting_csv.php:1743 -#: ../../enterprise/include/functions_reporting_csv.php:2051 -msgid "SLA Min" -msgstr "最小 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1507 -#: ../../enterprise/include/functions_reporting_csv.php:1553 -msgid "Time Total " -msgstr "合計時間 " - -#: ../../enterprise/include/functions_reporting_csv.php:1508 -#: ../../enterprise/include/functions_reporting_csv.php:1554 -msgid "Time OK " -msgstr "正常時間 " - -#: ../../enterprise/include/functions_reporting_csv.php:1509 -#: ../../enterprise/include/functions_reporting_csv.php:1555 -msgid "Time Error " -msgstr "障害時間 " - -#: ../../enterprise/include/functions_reporting_csv.php:1510 -#: ../../enterprise/include/functions_reporting_csv.php:1556 -msgid "Time Unknown " -msgstr "不明時間 " - -#: ../../enterprise/include/functions_reporting_csv.php:1511 -#: ../../enterprise/include/functions_reporting_csv.php:1557 -msgid "Time Not Init " -msgstr "未初期化時間 " - -#: ../../enterprise/include/functions_reporting_csv.php:1512 -#: ../../enterprise/include/functions_reporting_csv.php:1558 -msgid "Time Downtime " -msgstr "計画停止時間 " - -#: ../../enterprise/include/functions_reporting_csv.php:1513 -#: ../../enterprise/include/functions_reporting_csv.php:1559 -msgid "Checks Total " -msgstr "合計確認数 " - -#: ../../enterprise/include/functions_reporting_csv.php:1514 -#: ../../enterprise/include/functions_reporting_csv.php:1560 -msgid "Checks OK " -msgstr "正常確認数 " - -#: ../../enterprise/include/functions_reporting_csv.php:1515 -#: ../../enterprise/include/functions_reporting_csv.php:1561 -msgid "Checks Error " -msgstr "障害確認数 " - -#: ../../enterprise/include/functions_reporting_csv.php:1516 -#: ../../enterprise/include/functions_reporting_csv.php:1562 -msgid "Checks Unknown " -msgstr "不明確認数 " - -#: ../../enterprise/include/functions_reporting_csv.php:1517 -#: ../../enterprise/include/functions_reporting_csv.php:1563 -msgid "Checks Not Init " -msgstr "未初期化確認数 " - -#: ../../enterprise/include/functions_reporting_csv.php:1518 -#: ../../enterprise/include/functions_reporting_csv.php:1564 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:1519 -#: ../../enterprise/include/functions_reporting_csv.php:1565 -msgid "Status " -msgstr "状態 " - -#: ../../enterprise/include/functions_reporting_csv.php:1611 -#: ../../enterprise/include/functions_reporting_csv.php:1727 -#: ../../enterprise/include/functions_reporting_csv.php:1967 -#: ../../enterprise/include/functions_reporting_csv.php:2035 -msgid "Subtitle" -msgstr "サブタイトル" - -#: ../../enterprise/include/functions_reporting_csv.php:1626 -#: ../../enterprise/include/functions_reporting_csv.php:1758 -#: ../../enterprise/include/functions_reporting_csv.php:2066 -msgid "Time Total Month" -msgstr "月間合計時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1627 -#: ../../enterprise/include/functions_reporting_csv.php:1759 -#: ../../enterprise/include/functions_reporting_csv.php:2067 -msgid "Time OK Month" -msgstr "月間正常時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1628 -#: ../../enterprise/include/functions_reporting_csv.php:1760 -#: ../../enterprise/include/functions_reporting_csv.php:2068 -msgid "Time Error Month" -msgstr "月間障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1629 -#: ../../enterprise/include/functions_reporting_csv.php:1761 -#: ../../enterprise/include/functions_reporting_csv.php:2069 -msgid "Time Unknown Month" -msgstr "月間不明時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1630 -#: ../../enterprise/include/functions_reporting_csv.php:1762 -#: ../../enterprise/include/functions_reporting_csv.php:2070 -msgid "Time Downtime Month" -msgstr "月間計画停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1631 -#: ../../enterprise/include/functions_reporting_csv.php:1763 -#: ../../enterprise/include/functions_reporting_csv.php:2071 -msgid "Time Not Init Month" -msgstr "月間未初期化時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1632 -#: ../../enterprise/include/functions_reporting_csv.php:1764 -#: ../../enterprise/include/functions_reporting_csv.php:2072 -msgid "Checks Total Month" -msgstr "月間合計確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1633 -#: ../../enterprise/include/functions_reporting_csv.php:1765 -#: ../../enterprise/include/functions_reporting_csv.php:2073 -msgid "Checks OK Month" -msgstr "月間正常確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1634 -#: ../../enterprise/include/functions_reporting_csv.php:1766 -#: ../../enterprise/include/functions_reporting_csv.php:2074 -msgid "Checks Error Month" -msgstr "月間障害確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1635 -#: ../../enterprise/include/functions_reporting_csv.php:1767 -#: ../../enterprise/include/functions_reporting_csv.php:2075 -msgid "Checks Unknown Month" -msgstr "月間不明確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1636 -#: ../../enterprise/include/functions_reporting_csv.php:1768 -#: ../../enterprise/include/functions_reporting_csv.php:2076 -msgid "Checks Not Init Month" -msgstr "月間未初期化確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1637 -#: ../../enterprise/include/functions_reporting_csv.php:1769 -#: ../../enterprise/include/functions_reporting_csv.php:2077 -msgid "SLA Month" -msgstr "月間 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1638 -#: ../../enterprise/include/functions_reporting_csv.php:1770 -#: ../../enterprise/include/functions_reporting_csv.php:2078 -msgid "Status Month" -msgstr "月間状態" - -#: ../../enterprise/include/functions_reporting_csv.php:1660 -#: ../../enterprise/include/functions_reporting.php:2023 -msgid "Day" -msgstr "日" - -#: ../../enterprise/include/functions_reporting_csv.php:1661 -#: ../../enterprise/include/functions_reporting_csv.php:1816 -msgid "Time Total Day" -msgstr "日ごとの合計時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1662 -#: ../../enterprise/include/functions_reporting_csv.php:1817 -msgid "Time OK Day" -msgstr "日ごとの正常時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1663 -#: ../../enterprise/include/functions_reporting_csv.php:1818 -msgid "Time Error Day" -msgstr "日ごとの障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1664 -#: ../../enterprise/include/functions_reporting_csv.php:1819 -msgid "Time Unknown Day" -msgstr "日ごとの不明時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1665 -#: ../../enterprise/include/functions_reporting_csv.php:1820 -msgid "Time Not Init Day" -msgstr "日ごとの未初期化時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1666 -#: ../../enterprise/include/functions_reporting_csv.php:1821 -msgid "Time Downtime Day" -msgstr "日ごとの計画停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1667 -#: ../../enterprise/include/functions_reporting_csv.php:1822 -msgid "Time Out Day" -msgstr "日ごとの停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1668 -#: ../../enterprise/include/functions_reporting_csv.php:1823 -msgid "Checks Total Day" -msgstr "日ごとの合計確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1669 -#: ../../enterprise/include/functions_reporting_csv.php:1824 -msgid "Checks OK Day" -msgstr "日ごとの正常確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1670 -#: ../../enterprise/include/functions_reporting_csv.php:1825 -msgid "Checks Error Day" -msgstr "日ごとの障害確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1671 -#: ../../enterprise/include/functions_reporting_csv.php:1826 -msgid "Checks Unknown Day" -msgstr "日ごとの不明確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1672 -#: ../../enterprise/include/functions_reporting_csv.php:1827 -msgid "Checks Not Init Day" -msgstr "日ごとの不明確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1673 -#: ../../enterprise/include/functions_reporting_csv.php:1828 -msgid "SLA Day" -msgstr "日ごとの SLAd" - -#: ../../enterprise/include/functions_reporting_csv.php:1674 -#: ../../enterprise/include/functions_reporting_csv.php:1829 -msgid "SLA Fixed Day" -msgstr "日ごとの修正 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1675 -#: ../../enterprise/include/functions_reporting_csv.php:1830 -msgid "Date From Day" -msgstr "開始日" - -#: ../../enterprise/include/functions_reporting_csv.php:1676 -#: ../../enterprise/include/functions_reporting_csv.php:1831 -msgid "Date To Day" -msgstr "終了日" - -#: ../../enterprise/include/functions_reporting_csv.php:1677 -#: ../../enterprise/include/functions_reporting_csv.php:1832 -msgid "Status Day" -msgstr "日ごとの状態" - -#: ../../enterprise/include/functions_reporting_csv.php:1738 -#: ../../enterprise/include/functions_reporting_csv.php:2046 -msgid "Month Number" -msgstr "月の数" - -#: ../../enterprise/include/functions_reporting_csv.php:1739 -#: ../../enterprise/include/functions_reporting_csv.php:2047 -msgid "Year" -msgstr "年" - -#: ../../enterprise/include/functions_reporting_csv.php:1789 -msgid "Time Total week" -msgstr "週間合計時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1790 -msgid "Time OK week" -msgstr "週間正常時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1791 -msgid "Time Error week" -msgstr "週間障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1792 -msgid "Time Unknown week" -msgstr "週間不明時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1793 -msgid "Time Downtime week" -msgstr "週間計画停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1794 -msgid "Time Not Init week" -msgstr "週間未初期化時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1795 -msgid "Checks Total week" -msgstr "週間合計確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1796 -msgid "Checks OK week" -msgstr "週間正常確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1797 -msgid "Checks Error week" -msgstr "週間障害確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1798 -msgid "Checks Unknown week" -msgstr "週間不明確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:1799 -msgid "Status week" -msgstr "週間状態" - -#: ../../enterprise/include/functions_reporting_csv.php:1815 -msgid "Day Week" -msgstr "週" - -#: ../../enterprise/include/functions_reporting_csv.php:1867 -msgid "S.L.A. Services" -msgstr "SLA サービス" - -#: ../../enterprise/include/functions_reporting_csv.php:1885 -msgid "Lost sercice " -msgstr "失われたサービス " - -#: ../../enterprise/include/functions_reporting_csv.php:1886 -msgid "Service " -msgstr "サービス " - -#: ../../enterprise/include/functions_reporting_csv.php:1887 -msgid "Limit " -msgstr "制限 " - -#: ../../enterprise/include/functions_reporting_csv.php:1888 -msgid "SLA Compilance " -msgstr "SLA コンプライアンス " - -#: ../../enterprise/include/functions_reporting_csv.php:1889 -msgid "Unknown " -msgstr "不明 " - -#: ../../enterprise/include/functions_reporting_csv.php:1890 -msgid "Ok " -msgstr "Ok " - -#: ../../enterprise/include/functions_reporting_csv.php:1891 -msgid "Fail " -msgstr "失敗 " - -#: ../../enterprise/include/functions_reporting_csv.php:1892 -msgid "Result " -msgstr "結果 " - -#: ../../enterprise/include/functions_reporting_csv.php:1917 -msgid "IPAM Networks" -msgstr "IPAM ネットワーク" - -#: ../../enterprise/include/functions_reporting_csv.php:1977 -msgid "SLA max" -msgstr "最大 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1978 -msgid "SLA min" -msgstr "最小 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1979 -msgid "SLA limit" -msgstr "SLA 制限" - -#: ../../enterprise/include/functions_reporting_csv.php:1982 -msgid "Time Error" -msgstr "障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1988 -msgid "Checks Error" -msgstr "エラー数" - -#: ../../enterprise/include/functions_reporting_csv.php:1990 -#: ../../enterprise/include/functions_reporting.php:5066 -msgid "Checks Not Init" -msgstr "未初期化数" - -#: ../../enterprise/include/functions_reporting_csv.php:1992 -msgid "SLA Fixed" -msgstr "修正 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:2097 -msgid "Time Total day" -msgstr "日ごとの合計時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2098 -msgid "Time OK day" -msgstr "日ごとの正常時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2099 -msgid "Time Error day" -msgstr "日ごとの障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2100 -msgid "Time Unknown day" -msgstr "日ごとの不明時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2101 -msgid "Time Downtime day" -msgstr "日ごとの計画停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2102 -msgid "Time Not Init day" -msgstr "日ごとの未初期化時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2103 -msgid "Checks Total day" -msgstr "日ごとの合計確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2104 -msgid "Checks OK day" -msgstr "日ごとの正常確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2105 -msgid "Checks Error day" -msgstr "日ごとのエラー確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2106 -msgid "Checks Unknown day" -msgstr "日ごとの不明確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2107 -msgid "Status day" -msgstr "日ごとの状態" - -#: ../../enterprise/include/functions_reporting_csv.php:2123 -#: ../../enterprise/include/functions_events.php:230 -msgid "Hours" -msgstr "時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2124 -msgid "Time Total hours" -msgstr "1時間ごとの合計時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2125 -msgid "Time OK hours" -msgstr "1時間ごとの正常時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2126 -msgid "Time Error hours" -msgstr "1時間ごとの障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2127 -msgid "Time Unknown hours" -msgstr "1時間ごとの不明時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2128 -msgid "Time Not Init hours" -msgstr "1時間ごとの未初期化時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2129 -msgid "Time Downtime hours" -msgstr "1時間ごとの計画停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2130 -msgid "Time Out hours" -msgstr "1時間ごとの停止時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2131 -msgid "Checks Total hours" -msgstr "1時間ごとの確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2132 -msgid "Checks OK hours" -msgstr "1時間ごとの正常確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2133 -msgid "Checks Error hours" -msgstr "1時間ごとの障害確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2134 -msgid "Checks Unknown hours" -msgstr "1時間ごとの不明確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2135 -msgid "Checks Not Init hours" -msgstr "1時間ごとの未初期化確認数" - -#: ../../enterprise/include/functions_reporting_csv.php:2136 -msgid "SLA hours" -msgstr "1時間ごとの SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:2137 -msgid "SLA Fixed hours" -msgstr "1時間ごとの修正 SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:2138 -msgid "Date From hours" -msgstr "開始時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2139 -msgid "Date To hours" -msgstr "終了時間" - -#: ../../enterprise/include/functions_reporting_csv.php:2140 -msgid "Status hours" -msgstr "1時間ごとの状態" - -#: ../../enterprise/include/functions_reporting_csv.php:2267 -msgid "Simple Baseline Graph" -msgstr "シンプルベースライングラフ" - -#: ../../enterprise/include/functions_reporting_csv.php:2334 -#: ../../enterprise/meta/include/functions_wizard_meta.php:311 -msgid "Agent modules" -msgstr "エージェントモジュール" - -#: ../../enterprise/include/functions_reporting_csv.php:2465 -msgid "Actions Triggered" -msgstr "実行されたアクション" - -#: ../../enterprise/include/functions_reporting_csv.php:2465 -msgid "Template Triggered" -msgstr "実行されたテンプレート" - -#: ../../enterprise/include/functions_reporting_csv.php:2502 -msgid "Event Report Log" -msgstr "イベントレポートログ" - -#: ../../enterprise/include/functions_reporting_csv.php:2605 -msgid "Netflow data chart" -msgstr "Netflow データグラフ" - -#: ../../enterprise/include/functions_reporting_csv.php:2660 -msgid "Netflow summary" -msgstr "Netflow 概要" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. bits/sec" -msgstr "平均ビット/秒" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. packets/sec" -msgstr "平均パケット/秒" - -#: ../../enterprise/include/functions_reporting_csv.php:2680 -msgid "Avg. bytes/packet" -msgstr "平均バイト/パケット" - -#: ../../enterprise/include/functions_reporting_csv.php:2681 -msgid "Dst. IP" -msgstr "宛先 IP" - -#: ../../enterprise/include/functions_reporting_csv.php:2707 -msgid "Agent/module status" -msgstr "エージェント/モジュール状態" - -#: ../../enterprise/include/functions_reporting_csv.php:2808 -msgid "Average Throughput (bits/sec)" -msgstr "平均スループット (bits/sec)" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 -msgid "Capture regexp" -msgstr "正規表現キャプチャ" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1249 -#: ../../enterprise/meta/event/custom_events.php:160 -msgid "Fields" -msgstr "フィールド" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 -msgid "Empty ip or port" -msgstr "IP またはポートが空です" - -#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 -msgid "Curl Error: " -msgstr "Curl エラー: " - -#: ../../enterprise/include/ajax/servers.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:157 -#: ../../enterprise/include/ajax/servers.ajax.php:283 -#: ../../enterprise/include/functions_ipam.php:1343 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 -msgid "Subnet" -msgstr "サブネット" - -#: ../../enterprise/include/ajax/servers.ajax.php:139 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 -#: ../../enterprise/godmode/servers/list_satellite.php:69 -msgid "No Data" -msgstr "データがありません" - -#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 -msgid "Global time: " -msgstr "全体時間: " - -#: ../../enterprise/include/ajax/ipam.ajax.php:249 -msgid "Current Networks" -msgstr "現在のネットワーク" - -#: ../../enterprise/include/ajax/ipam.ajax.php:296 -msgid "Please, create networks to assign to " -msgstr "次へ割り当てるネットワークを作成してください: " - -#: ../../enterprise/include/ajax/ipam.ajax.php:300 -msgid "No networks to assign to supernet" -msgstr "スーパーネットへ割り当てるネットワークがありません" - -#: ../../enterprise/include/ajax/ipam.ajax.php:302 -msgid "Please, create networks to assign to" -msgstr "次へ割り当てるネットワークを作成してください:" - -#: ../../enterprise/include/ajax/ipam.ajax.php:307 -msgid "Create and add networks in bulk" -msgstr "一括でのネットワーク作成と追加" - -#: ../../enterprise/include/ajax/ipam.ajax.php:316 -msgid "Starting network" -msgstr "開始ネットワーク" - -#: ../../enterprise/include/ajax/ipam.ajax.php:316 -msgid "" -"The networks will be created/added starting from this address in the subnetting range " -"given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value was provided, " -"it uses the starting address of the supernet by default." -msgstr "" -"ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されます。 " -"CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デフォルトでスー" -"パーネットの開始アドレスが使用されます。" - -#: ../../enterprise/include/ajax/ipam.ajax.php:320 -msgid "Max. number" -msgstr "最大値" - -#: ../../enterprise/include/ajax/ipam.ajax.php:320 -msgid "" -"Maximum number of networks to be created/added from starting address of the range " -"specified above" -msgstr "上記で指定した範囲の開始アドレスから作成/追加するネットワークの最大数" - -#: ../../enterprise/include/ajax/ipam.ajax.php:622 -msgid "Go to supernet edition" -msgstr "スーパーネット編集へ行く" - -#: ../../enterprise/include/ajax/ipam.ajax.php:664 -msgid "Go to network edition" -msgstr "ネットワーク編集へ行く" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 -msgid "Group name" -msgstr "グループ名" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 -msgid "OS name" -msgstr "OS 名" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 -#: ../../enterprise/godmode/services/services.elements.php:220 -msgid "Custom field name" -msgstr "カスタムフィールド名" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -#: ../../enterprise/godmode/services/services.elements.php:232 -msgid "Custom field value" -msgstr "カスタムフィールド値" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 -msgid "IP Network range" -msgstr "IP ネットワーク範囲" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 -msgid "Script" -msgstr "スクリプト" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 -msgid "Arguments" -msgstr "引数" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 -msgid "Unknown option" -msgstr "不明なオプションです" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:877 -msgid "Update rule" -msgstr "ルール更新" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 -msgid "Create rule" -msgstr "ルール作成" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:129 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:323 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature from " -"centralized manager console. Go to %s to manage it." -msgstr "" -"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールからこの機能" -"を管理してください。管理するには %s に移動します。" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257 -msgid "IP range" -msgstr "IP 範囲" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 -msgid "Script output (> 0)" -msgstr "スクリプト出力 (> 0)" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 -#: ../../enterprise/meta/include/functions_autoprovision.php:642 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:375 -#: ../../extensions/quick_shell.php:190 -msgid "Method" -msgstr "方法" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:394 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634 -msgid "Op" -msgstr "Op" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:422 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:464 -msgid "Launch custom event" -msgstr "カスタムイベントの起動" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:465 -msgid "Launch alert action" -msgstr "アラートアクションの起動" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:567 -#: ../../godmode/snmpconsole/snmp_alert.php:1023 -#: ../../godmode/snmpconsole/snmp_alert.php:1220 -msgid "Alert action" -msgstr "アクション" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587 -msgid "Script path" -msgstr "スクリプトパス" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 -msgid "Script argument" -msgstr "スクリプト引数" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:491 -#: ../../godmode/alerts/alert_list.list.php:688 -#: ../../godmode/alerts/alert_list.list.php:1169 -msgid "Update action" -msgstr "アクションの更新" - -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:508 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 -#: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../godmode/snmpconsole/snmp_alert.php:1317 -#: ../../godmode/alerts/alert_list.list.php:899 -#: ../../godmode/alerts/alert_list.list.php:906 -#: ../../godmode/alerts/alert_list.list.php:1132 -msgid "Add action" -msgstr "アクションの追加" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 -msgid "avg" -msgstr "平均" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4267 -msgid "max" -msgstr "最大" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4268 -msgid "min" -msgstr "最小" - -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4269 -msgid "sum" -msgstr "合計" - -#: ../../enterprise/include/class/SAPView.class.php:146 -#: ../../enterprise/include/class/SAPView.class.php:190 -msgid "SAP View" -msgstr "SAP 表示" - -#: ../../enterprise/include/class/SAPView.class.php:164 -msgid "SAP data not found." -msgstr "SAP データがありません。" - -#: ../../enterprise/include/class/SAPView.class.php:258 -msgid "Refresh Every" -msgstr "更新間隔:" - -#: ../../enterprise/include/class/SAPView.class.php:259 -#: ../../enterprise/include/class/SAPView.class.php:296 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 -#: ../../enterprise/include/class/Aws.cloud.php:1343 -#: ../../enterprise/include/class/Aws.S3.php:531 -#: ../../enterprise/include/class/MySQL.app.php:583 -#: ../../enterprise/include/class/Oracle.app.php:568 -#: ../../enterprise/include/class/DB2.app.php:561 -#: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/VMware.app.php:693 -msgid "The minimum recomended interval is 5 minutes" -msgstr "推奨される最小間隔は 5分です" - -#: ../../enterprise/include/class/SAPView.class.php:295 -msgid "Graph Interval" -msgstr "グラフ間隔" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "" -"SAP view offers you to see the most important modules Discovery Server is usually " -"configured to retry. You have not configured a Discovery SAP R3 task yet, please visit" -msgstr "" -"SAP 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモジュールを" -"確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にアクセスしてくださ" -"い:" - -#: ../../enterprise/include/class/SAPView.class.php:626 -#: ../../enterprise/extensions/vmware/vmware_view.php:1240 -#: ../../enterprise/extensions/vmware/vmware_view.php:1526 -msgid "this link" -msgstr "このリンク" - -#: ../../enterprise/include/class/SAPView.class.php:626 -msgid "to start monitoring your SAP infrastructure." -msgstr "SAP インフラを監視するためです。" - -#: ../../enterprise/include/class/SAPView.class.php:633 -msgid "Discover SAP" -msgstr "自動検出 SAP" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:114 -#: ../../enterprise/godmode/menu.php:159 ../../godmode/wizards/HostDevices.class.php:159 -msgid "Import CSV" -msgstr "CSVのインポート" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:121 -msgid "The CSV file must have the fields in the following order:" -msgstr "CSV ファイルは次の順番のフィールドでなければいけません:" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:122 -msgid "Agent alias, IP address, OS id, Interval, Group id, Description" -msgstr "エージェント別名, IPアドレス, OS ID, 間隔, グループID, 説明" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:177 -msgid "Alias as name" -msgstr "名前としての別名" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:242 -msgid "No data or wrong separator" -msgstr "データが無いか不正なセパレータ" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:248 -#, php-format -msgid "Agent %s duplicated." -msgstr "エージェント %s が重複しています。" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:255 -#, php-format -msgid "Id group %s doesn't exist in %s" -msgstr "グループ ID %s は %s に存在しません" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:263 -msgid "General failure." -msgstr "一般的な失敗。" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:284 -msgid "No input file detected" -msgstr "入力ファイルがありません" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:373 -msgid "Agent processed successfully" -msgstr "エージェントの処理をしました" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:379 -msgid "Some errors while processing CSV." -msgstr "CSV 処理中にエラーです。" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:382 -msgid "All agents processed correctly" -msgstr "全エージェントを正しく処理しました。" - -#: ../../enterprise/include/class/CSVImportAgents.class.php:389 -#, php-format -msgid "Line %s" -msgstr "行 %s" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 -msgid "" -"This Microsoft SQL Server configuration has been already defined. Please edit it or " -"create a new one." -msgstr "" -"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成してく" -"ださい。" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 -msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." -msgstr "正しい Microsoft SQL Server の IP または FQDN を指定する必要があります。" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 -msgid "Failed to find discovery Microsoft SQL Server task." -msgstr "自動検出 Microsoft SQL Server タスクを見つけられませんでした。" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 -#: ../../enterprise/include/class/MySQL.app.php:403 -#: ../../enterprise/include/class/Oracle.app.php:393 -#: ../../enterprise/include/class/DB2.app.php:386 -#: ../../enterprise/include/class/SAP.app.php:336 -#: ../../enterprise/include/class/VMware.app.php:486 -msgid "Application" -msgstr "アプリケーション" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 -#: ../../enterprise/godmode/menu.php:173 -msgid "Microsoft SQL Server" -msgstr "Microsoft SQL Server" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 -#: ../../enterprise/include/class/Aws.cloud.php:1234 -#: ../../enterprise/include/class/Aws.S3.php:435 -#: ../../enterprise/include/class/MySQL.app.php:475 -#: ../../enterprise/include/class/Oracle.app.php:477 -#: ../../enterprise/include/class/DB2.app.php:470 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/VMware.app.php:763 -msgid "This group will be used also to classify discovered agents" -msgstr "このグループは、検出されたエージェントの分類にも使用されます" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 -msgid "Microsoft SQL Server targets" -msgstr "対象の Microsoft SQL Server" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 -msgid "" -"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you need." -msgstr "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 -#: ../../enterprise/include/class/Oracle.app.php:494 -#: ../../enterprise/include/class/DB2.app.php:487 -msgid "Use # symbol to comment a line." -msgstr "コメント行には # を使います。" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 -#: ../../enterprise/include/class/MySQL.app.php:656 -#: ../../enterprise/include/class/Oracle.app.php:641 -#: ../../enterprise/include/class/DB2.app.php:634 -msgid "Target agent" -msgstr "対象エージェント" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 -#: ../../enterprise/include/class/Oracle.app.php:642 -#: ../../enterprise/include/class/DB2.app.php:635 -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/MicrosoftSQLServer.app.php:655 -#: ../../enterprise/include/class/MySQL.app.php:676 -#: ../../enterprise/include/class/Oracle.app.php:661 -#: ../../enterprise/include/class/DB2.app.php:654 -msgid "Custom module prefix" -msgstr "カスタムモジュールプレフィックス" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 -#: ../../enterprise/include/class/MySQL.app.php:677 -#: ../../enterprise/include/class/Oracle.app.php:662 -#: ../../enterprise/include/class/DB2.app.php:655 -msgid "" -"Defines a custom prefix to be concatenated before module names generated by this task." -msgstr "" -"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックスを定義し" -"ます。" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 -#: ../../enterprise/include/class/MySQL.app.php:757 -#: ../../enterprise/include/class/Oracle.app.php:680 -msgid "Check engine uptime" -msgstr "エンジンの起動時間確認" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 -#: ../../enterprise/include/class/MySQL.app.php:773 -#: ../../enterprise/include/class/Oracle.app.php:696 -msgid "Retrieve query statistics" -msgstr "クエリ統計の取得" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 -#: ../../enterprise/include/class/MySQL.app.php:789 -#: ../../enterprise/include/class/Oracle.app.php:712 -msgid "Analyze connections" -msgstr "接続分析" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 -#: ../../enterprise/include/class/MySQL.app.php:837 -#: ../../enterprise/include/class/Oracle.app.php:776 -#: ../../enterprise/include/class/DB2.app.php:753 -msgid "Execute custom queries" -msgstr "カスタムクエリの実行" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 -#: ../../enterprise/include/class/MySQL.app.php:889 -#: ../../enterprise/include/class/Oracle.app.php:930 -#: ../../enterprise/include/class/DB2.app.php:821 -msgid "Custom queries" -msgstr "カスタムクエリ" - -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 -#: ../../enterprise/include/class/MySQL.app.php:890 -#: ../../enterprise/include/class/Oracle.app.php:931 -#: ../../enterprise/include/class/DB2.app.php:822 -msgid "Define here your custom queries." -msgstr "ここにカスタムクエリを定義します。" - -#: ../../enterprise/include/class/Aws.cloud.php:113 -#: ../../enterprise/include/class/Azure.cloud.php:148 -#: ../../enterprise/include/class/Google.cloud.php:142 -msgid "Cloud message" -msgstr "クラウドメッセージ" - -#: ../../enterprise/include/class/Aws.cloud.php:115 -#: ../../enterprise/include/class/Aws.cloud.php:162 -#: ../../enterprise/include/class/Azure.cloud.php:150 -#: ../../enterprise/include/class/Azure.cloud.php:194 -#: ../../enterprise/include/class/Google.cloud.php:144 -#: ../../enterprise/include/class/Google.cloud.php:188 -#: ../../enterprise/godmode/menu.php:193 -#: ../../enterprise/godmode/wizards/Cloud.class.php:186 -#: ../../enterprise/godmode/wizards/Cloud.class.php:195 -msgid "Cloud" -msgstr "クラウド" - -#: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Azure.cloud.php:190 -#: ../../enterprise/include/class/DeploymentCenter.class.php:590 -#: ../../enterprise/include/class/Google.cloud.php:184 -#: ../../enterprise/godmode/wizards/Applications.class.php:157 -#: ../../enterprise/godmode/wizards/Cloud.class.php:182 -#: ../../godmode/servers/discovery.php:59 ../../godmode/menu.php:62 -#: ../../godmode/wizards/HostDevices.class.php:190 -msgid "Discovery" -msgstr "自動検出" - -#: ../../enterprise/include/class/Aws.cloud.php:343 -msgid "Recon" -msgstr "自動検出" - -#: ../../enterprise/include/class/Aws.cloud.php:344 -msgid "Costs" -msgstr "コスト" - -#: ../../enterprise/include/class/Aws.cloud.php:346 -msgid "Instances" -msgstr "インスタンス" - -#: ../../enterprise/include/class/Aws.cloud.php:441 -msgid "Amazon EC2" -msgstr "Amazon EC2" - -#: ../../enterprise/include/class/Aws.cloud.php:446 -msgid "Amazon RDS" -msgstr "Amazon RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:451 -msgid "S3 Buckets" -msgstr "S3 バケット" - -#: ../../enterprise/include/class/Aws.cloud.php:471 -#: ../../godmode/wizards/HostDevices.class.php:696 -msgid "NetScan" -msgstr "ネットスキャン" - -#: ../../enterprise/include/class/Aws.cloud.php:500 -#: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/VMware.app.php:547 -msgid "" -"This kind of task uses multipurpose plugins in order to generate monitoring data, " -"configure your desired tentacle target." -msgstr "" -"この種のタスクでは、多目的プラグインを使用して監視データを生成し、目的の tentacle を設" -"定します。" - -#: ../../enterprise/include/class/Aws.cloud.php:510 -msgid "Discovery task name" -msgstr "自動検出タスク名" - -#: ../../enterprise/include/class/Aws.cloud.php:540 -#: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/VMware.app.php:614 -#: ../../enterprise/include/class/Azure.cloud.php:797 -msgid "Tentacle options" -msgstr "Tentacle オプション" - -#: ../../enterprise/include/class/Aws.cloud.php:566 -#: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/VMware.app.php:643 -#: ../../enterprise/include/class/Azure.cloud.php:823 -#: ../../enterprise/godmode/servers/manage_export_form.php:129 -msgid "Extra options" -msgstr "拡張オプション" - -#: ../../enterprise/include/class/Aws.cloud.php:614 -msgid "Total cost" -msgstr "全体のコスト" - -#: ../../enterprise/include/class/Aws.cloud.php:631 -msgid "Cost by region" -msgstr "リージョンごとのコスト" - -#: ../../enterprise/include/class/Aws.cloud.php:645 -msgid "Cost interval" -msgstr "コスト間隔" - -#: ../../enterprise/include/class/Aws.cloud.php:671 -#: ../../enterprise/include/class/Azure.cloud.php:928 -msgid "Scan and general monitoring." -msgstr "スキャンと一般的な監視。" - -#: ../../enterprise/include/class/Aws.cloud.php:688 -#: ../../enterprise/include/class/Azure.cloud.php:941 -msgid "Cpu performance summary" -msgstr "CPU パフォーマンス概要" - -#: ../../enterprise/include/class/Aws.cloud.php:698 -#: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Google.cloud.php:911 -msgid "IOPS performance summary" -msgstr "IOPS パフォーマンス概要" - -#: ../../enterprise/include/class/Aws.cloud.php:708 -#: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Google.cloud.php:919 -msgid "Disk performance summary" -msgstr "ディスクパフォーマンス概要" - -#: ../../enterprise/include/class/Aws.cloud.php:718 -#: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Google.cloud.php:927 -msgid "Network performance summary" -msgstr "ネットワークパフォーマンス概要" - -#: ../../enterprise/include/class/Aws.cloud.php:742 -#: ../../enterprise/include/class/Aws.cloud.php:1274 -#: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Google.cloud.php:822 -msgid "No instances found." -msgstr "インスタンスが見つかりません。" - -#: ../../enterprise/include/class/Aws.cloud.php:773 -msgid "Select EC2 instances" -msgstr "EC2 インスタンスの選択" - -#: ../../enterprise/include/class/Aws.cloud.php:789 -msgid "Storage" -msgstr "ストレージ" - -#: ../../enterprise/include/class/Aws.cloud.php:799 -msgid "Elastic IP Adresses" -msgstr "Elastic IP アドレス" - -#: ../../enterprise/include/class/Aws.cloud.php:982 -msgid "You must select at least one RDS instance." -msgstr "少なくとも一つの RDS インスタンスを選択する必要があります。" - -#: ../../enterprise/include/class/Aws.cloud.php:987 -msgid "" -"You cannot monitor RDS instances from different types. Please define several tasks " -"for several types." -msgstr "" -"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対してそ" -"れぞれのタスクを定義してください。" - -#: ../../enterprise/include/class/Aws.cloud.php:994 -msgid "Discovery.Cloud.AWS.RDS" -msgstr "自動検出.クラウド.AWS.RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1160 -msgid "RDS" -msgstr "RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1165 -msgid "DB monitoring" -msgstr "DB 監視" - -#: ../../enterprise/include/class/Aws.cloud.php:1175 -msgid "AWS RDS" -msgstr "AWS RDS" - -#: ../../enterprise/include/class/Aws.cloud.php:1249 -msgid "Global DB User" -msgstr "グローバル DB ユーザ" - -#: ../../enterprise/include/class/Aws.cloud.php:1259 -msgid "Global DB password" -msgstr "グローバル DB パスワード" - -#: ../../enterprise/include/class/Aws.cloud.php:1349 -msgid "Select RDS instances" -msgstr "RDS インスタンスの選択" - -#: ../../enterprise/include/class/Aws.cloud.php:1492 -#: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Google.cloud.php:349 -#, php-format -msgid "%s not found or not executable" -msgstr "%s が見つからないか実行できません" - -#: ../../enterprise/include/class/Aws.cloud.php:1652 -msgid "Invalid group" -msgstr "不正なグループ" - -#: ../../enterprise/include/class/Aws.cloud.php:1710 -msgid "Cannot update the recon database" -msgstr "自動検出データベースを更新できません" - -#: ../../enterprise/include/class/Aws.cloud.php:1732 -msgid "Engine not supported" -msgstr "エンジンがサポートされていません" - -#: ../../enterprise/include/class/AgentRepository.class.php:262 -#: ../../enterprise/include/class/DeploymentCenter.class.php:956 -msgid "Deploying" -msgstr "デプロイ中" - -#: ../../enterprise/include/class/AgentRepository.class.php:336 -msgid "Time in seconds before deployment is cancelled." -msgstr "デプロイがキャンセルされるまでの秒単位の時間。" - -#: ../../enterprise/include/class/AgentRepository.class.php:354 -#: ../../enterprise/include/class/AgentRepository.class.php:631 -#: ../../enterprise/include/class/AgentRepository.class.php:681 -#: ../../enterprise/include/class/DeploymentCenter.class.php:757 -#: ../../enterprise/include/class/DeploymentCenter.class.php:825 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Architecture" -msgstr "アーキテクチャ" - -#: ../../enterprise/include/class/AgentRepository.class.php:375 -msgid "Transfer timeout" -msgstr "転送タイムアウト" - -#: ../../enterprise/include/class/AgentRepository.class.php:383 -msgid "Installation file" -msgstr "インストールファイル" - -#: ../../enterprise/include/class/AgentRepository.class.php:423 -msgid "Agent version is required" -msgstr "エージェントバージョンが必要です" - -#: ../../enterprise/include/class/AgentRepository.class.php:429 -#: ../../enterprise/include/class/DeploymentCenter.class.php:245 -msgid "Target OS is required" -msgstr "対象 OS が必要です" - -#: ../../enterprise/include/class/AgentRepository.class.php:431 -#: ../../enterprise/include/class/DeploymentCenter.class.php:247 -msgid "Target architecture is required" -msgstr "対象アーキテクチャが必要です" - -#: ../../enterprise/include/class/AgentRepository.class.php:440 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 -msgid "Cannot create target dir [" -msgstr "対象ディレクトリを作成できません [" - -#: ../../enterprise/include/class/AgentRepository.class.php:461 -#, php-format -msgid "Invalid installation file for %s" -msgstr "%s 向けに不正なインストールファイルです" - -#: ../../enterprise/include/class/AgentRepository.class.php:490 -msgid "Installation files not modified" -msgstr "インストールファイルが編集されていません" - -#: ../../enterprise/include/class/AgentRepository.class.php:509 -msgid "Installation files updated" -msgstr "インストールファイルをアップロードしました" - -#: ../../enterprise/include/class/AgentRepository.class.php:512 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2341 -msgid "Agent successfully updated" -msgstr "エージェントを更新しました" - -#: ../../enterprise/include/class/AgentRepository.class.php:516 -msgid "You must provide installation files to create a new entry." -msgstr "新規エントリを作成するにはインストールファイルを提供する必要があります。" - -#: ../../enterprise/include/class/AgentRepository.class.php:537 -msgid "This agent has been already defined." -msgstr "このエージェントはすでに定義済です。" - -#: ../../enterprise/include/class/AgentRepository.class.php:553 -msgid "Agent successfully registered and uploaded" -msgstr "エージェントを登録しアップロードしました" - -#: ../../enterprise/include/class/AgentRepository.class.php:591 -#: ../../enterprise/include/class/DeploymentCenter.class.php:335 -msgid "Target successfully deleted" -msgstr "対象を削除しました" - -#: ../../enterprise/include/class/AgentRepository.class.php:613 -#: ../../enterprise/godmode/menu.php:126 -msgid "Software agents repository" -msgstr "ソフトウエアエージェントリポジトリ" - -#: ../../enterprise/include/class/AgentRepository.class.php:633 -msgid "Uploaded by" -msgstr "アップロード:" - -#: ../../enterprise/include/class/AgentRepository.class.php:634 -msgid "Upload date" -msgstr "アップロード日時" - -#: ../../enterprise/include/class/AgentRepository.class.php:713 -msgid "Add new software" -msgstr "新規ソフトウエアの追加" - -#: ../../enterprise/include/class/AgentRepository.class.php:900 -msgid "Add new Software agent" -msgstr "新規ソフトウエアエージェントの追加" - -#: ../../enterprise/include/class/AgentRepository.class.php:903 -msgid "Update Software agent" -msgstr "ソフトウエアエージェントの更新" - -#: ../../enterprise/include/class/LogSource.class.php:455 -msgid "Source is required" -msgstr "ソースが必要です" - -#: ../../enterprise/include/class/LogSource.class.php:562 -msgid "id cannot be empty" -msgstr "ID は空にできません" - -#: ../../enterprise/include/class/LogSource.class.php:610 -#, php-format -msgid "Log monitoring is disabled. %s" -msgstr "ログ監視が無効です。%s" - -#: ../../enterprise/include/class/LogSource.class.php:680 -#: ../../enterprise/include/class/LogSource.class.php:846 -msgid "Add log source" -msgstr "ログソースを追加" - -#: ../../enterprise/include/class/LogSource.class.php:715 -msgid "Source name" -msgstr "ソース名" - -#: ../../enterprise/include/class/LogSource.class.php:850 -msgid "Update log source" -msgstr "ログソース更新" - -#: ../../enterprise/include/class/Aws.S3.php:60 -msgid "Aws S3" -msgstr "AWS S3" - -#: ../../enterprise/include/class/Aws.S3.php:214 -msgid "You must select something." -msgstr "何かを選択する必要があります。" - -#: ../../enterprise/include/class/Aws.S3.php:236 -msgid "Discovery.Cloud.AWS.S3" -msgstr "自動検出.クラウド.AWS.S3" - -#: ../../enterprise/include/class/Aws.S3.php:294 -msgid "Unknown task" -msgstr "不明なタスク" - -#: ../../enterprise/include/class/Aws.S3.php:313 -msgid "Unknown section." -msgstr "不明なセクション。" - -#: ../../enterprise/include/class/Aws.S3.php:339 -msgid "S3" -msgstr "S3" - -#: ../../enterprise/include/class/Aws.S3.php:344 -msgid "Bucket monitoring" -msgstr "バケット監視" - -#: ../../enterprise/include/class/Aws.S3.php:454 -msgid "No buckets found." -msgstr "バケットがありません。" - -#: ../../enterprise/include/class/Aws.S3.php:598 -msgid "Select Buckets to be monitored" -msgstr "監視するバケットを選択" - -#: ../../enterprise/include/class/Aws.S3.php:633 -msgid "Monitor bucket size" -msgstr "監視バケットサイズ" - -#: ../../enterprise/include/class/Aws.S3.php:643 -msgid "Monitor bucket total items" -msgstr "監視バケット全アイテム" - -#: ../../enterprise/include/class/MySQL.app.php:173 -msgid "" -"This MySQL configuration has been already defined. Please edit it or create a new one." -msgstr "この MySQL 設定は既に定義済です。編集または新規作成してください。" - -#: ../../enterprise/include/class/MySQL.app.php:216 -msgid "You must provide a valid MySQL server IP or FQDN." -msgstr "正しい MySQL サーバ IP または FQDN を設定する必要があります。" - -#: ../../enterprise/include/class/MySQL.app.php:221 -msgid "You must provide a valid port number." -msgstr "正しいポート番号を設定する必要があります。" - -#: ../../enterprise/include/class/MySQL.app.php:233 -msgid "Discovery.Application.MySQL" -msgstr "自動検出.アプリケーション.MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:285 -msgid "Failed to find discovery MySQL task." -msgstr "自動検出 MySQL タスクを見つけられませんでした。" - -#: ../../enterprise/include/class/MySQL.app.php:420 -#: ../../enterprise/godmode/setup/setup.php:178 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/include/class/MySQL.app.php:491 -msgid "MySQL server IP" -msgstr "MySQL サーバ IP" - -#: ../../enterprise/include/class/MySQL.app.php:492 -msgid "Comma separated, as many targets as you need." -msgstr "寒波区切りで、必要な数の対象。" - -#: ../../enterprise/include/class/MySQL.app.php:511 -msgid "MySQL server Port" -msgstr "MySQL サーバポート" - -#: ../../enterprise/include/class/MySQL.app.php:657 -msgid "" -"Defines a target agent where this task will store data detected, if you have defined " -"multiple targets, define a comma separated list of names here or leave in blank to " -"use server IP address/ FQDN." -msgstr "" -"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定義した" -"場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレス/ FQDN を使用す" -"るために空白のままにします。" - -#: ../../enterprise/include/class/MySQL.app.php:698 -msgid "Scan databases" -msgstr "データベーススキャン" - -#: ../../enterprise/include/class/MySQL.app.php:714 -msgid "Create agent per database" -msgstr "データベースごとにエージェントを作成" - -#: ../../enterprise/include/class/MySQL.app.php:735 -msgid "Custom database agent prefix" -msgstr "カスタムデータベースエージェントプレフィックス" - -#: ../../enterprise/include/class/MySQL.app.php:736 -msgid "" -"Defines a custom prefix to be concatenated before database agent names generated by " -"this task." -msgstr "" -"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタムプレ" -"フィックスを定義します。" - -#: ../../enterprise/include/class/MySQL.app.php:805 -msgid "Retrieve InnoDB statistics" -msgstr "InnoDB 統計の取得" - -#: ../../enterprise/include/class/MySQL.app.php:821 -#: ../../enterprise/include/class/Oracle.app.php:760 -#: ../../enterprise/include/class/DB2.app.php:737 -msgid "Retrieve cache statistics" -msgstr "キャッシュ統計の取得" - -#: ../../enterprise/include/class/Oracle.app.php:172 -msgid "" -"This Oracle configuration has been already defined. Please edit it or create a new " -"one." -msgstr "この Oracle 設定はすでに定義済です。 編集するか、新しいものを作成してください。" - -#: ../../enterprise/include/class/Oracle.app.php:214 -msgid "You must provide a valid Oracle server IP or FQDN." -msgstr "正しい Oracle サーバ IP または FQDN を設定する必要があります。" - -#: ../../enterprise/include/class/Oracle.app.php:226 -msgid "Discovery.Application.Oracle" -msgstr "自動検出.アプリケーション.Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:277 -msgid "Failed to find discovery Oracle task." -msgstr "自動検出 Oracle タスクを見つけられませんでした。" - -#: ../../enterprise/include/class/Oracle.app.php:411 -#: ../../enterprise/godmode/setup/setup.php:179 ../../enterprise/godmode/menu.php:175 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/include/class/Oracle.app.php:493 -msgid "Oracle target strings" -msgstr "Oracle 対象文字列" - -#: ../../enterprise/include/class/Oracle.app.php:494 -msgid "SERVER:PORT/SID, comma separated or line by line, as many targets as you need." -msgstr "SERVER:PORT/SID で、カンマ区切り、または行ごとに必要な数の対象を定義。" - -#: ../../enterprise/include/class/Oracle.app.php:728 -msgid "Calculate fragmentation ratio" -msgstr "断片化率の計算" - -#: ../../enterprise/include/class/Oracle.app.php:744 -msgid "Monitor tablespaces" -msgstr "テーブルスペース監視" - -#: ../../enterprise/include/class/DB2.app.php:165 -msgid "" -"This DB2 configuration has been already defined. Please edit it or create a new one." -msgstr "この DB2 設定はすでに定義済です。 編集するか、新しいものを作成してください。" - -#: ../../enterprise/include/class/DB2.app.php:207 -msgid "You must provide a valid DB2 server IP or FQDN." -msgstr "正しい DB2 サーバ IP または FQDN を設定する必要があります。" - -#: ../../enterprise/include/class/DB2.app.php:219 -msgid "Discovery.Application.DB2" -msgstr "自動検出.アプリケーション.DB2" - -#: ../../enterprise/include/class/DB2.app.php:270 -msgid "Failed to find discovery DB2 task." -msgstr "自動検出 DB2 タスクを見つけられませんでした。" - -#: ../../enterprise/include/class/DB2.app.php:404 ../../enterprise/godmode/menu.php:178 -msgid "DB2" -msgstr "DB2" - -#: ../../enterprise/include/class/DB2.app.php:486 -msgid "DB2 target strings" -msgstr "DB2 対象文字列" - -#: ../../enterprise/include/class/DB2.app.php:487 -msgid "" -"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you need." -msgstr "" -"SERVER:PORT/DATABASE で、カンマ区切りまたは行ごとに必要な数のターゲッを設定します。" - -#: ../../enterprise/include/class/DB2.app.php:673 -msgid "Get database summary" -msgstr "データベース概要の取得" - -#: ../../enterprise/include/class/DB2.app.php:689 -msgid "Check transactional log utilization" -msgstr "トランザクションログ使用率の確認" - -#: ../../enterprise/include/class/DB2.app.php:705 -msgid "Get number of connections" -msgstr "接続数の取得" - -#: ../../enterprise/include/class/DB2.app.php:721 -msgid "Check DB size" -msgstr "DB サイズ確認" - -#: ../../enterprise/include/class/SAP.app.php:154 -msgid "" -"This SAP configuration has been already defined. Please edit it or create a new one." -msgstr "この SAP 設定はすでに定義済です。 編集するか、新しいものを作成してください。" - -#: ../../enterprise/include/class/SAP.app.php:195 -msgid "You must specify at last one SAP hostname." -msgstr "少なくとも 1つの SAP ホスト名を指定する必要があります。" - -#: ../../enterprise/include/class/SAP.app.php:206 -msgid "Discovery.Application.SAP" -msgstr "自動検出.アプリケーション.SAP" - -#: ../../enterprise/include/class/SAP.app.php:262 -msgid "Failed to find discovery SAP task." -msgstr "自動検出 SAP タスクを見つけられませんでした。" - -#: ../../enterprise/include/class/SAP.app.php:286 -msgid "Select at least a module." -msgstr "少なくとも一つのモジュールを選択してください。" - -#: ../../enterprise/include/class/SAP.app.php:354 -msgid "SAP R3" -msgstr "SAP R3" - -#: ../../enterprise/include/class/SAP.app.php:371 -#: ../../enterprise/include/class/DeploymentCenter.class.php:482 -#: ../../enterprise/include/class/DeploymentCenter.class.php:490 -#: ../../enterprise/include/class/DeploymentCenter.class.php:498 -#: ../../enterprise/include/class/DeploymentCenter.class.php:657 -#: ../../enterprise/extensions/vmware/vmware_view.php:1737 -msgid "here" -msgstr "こちら" - -#: ../../enterprise/include/class/SAP.app.php:547 -msgid "SAP Hostname" -msgstr "SAP ホスト名" - -#: ../../enterprise/include/class/SAP.app.php:571 -msgid "SAP Client" -msgstr "SAP クライアント" - -#: ../../enterprise/include/class/SAP.app.php:585 -msgid "SAP System Number" -msgstr "SAP システム番号" - -#: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:607 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1268 -#: ../../godmode/wizards/HostDevices.class.php:1434 -#: ../../godmode/wizards/HostDevices.class.php:1437 -msgid "No credentials available" -msgstr "認証情報がありません" - -#: ../../enterprise/include/class/SAP.app.php:605 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 -#: ../../godmode/wizards/HostDevices.class.php:1435 -#: ../../godmode/agentes/module_manager_editor_network.php:474 -msgid "Manage credentials" -msgstr "認証情報管理" - -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 -msgid "SAP Credentials" -msgstr "SAP 認証情報" - -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 -msgid "Optional" -msgstr "オプション" - -#: ../../enterprise/include/class/SAP.app.php:764 -#, php-format -msgid "" -"Module 180 must be customized before being used, please use advanced options to " -"define the module following the documentation:
    %s" -msgstr "" -"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを使用し" -"て、ドキュメントに従ってモジュールを定義してください。
    %s" - -#: ../../enterprise/include/class/SAP.app.php:785 -msgid "Available modules" -msgstr "存在するモジュール" - -#: ../../enterprise/include/class/SAP.app.php:821 -msgid "Add monitors" -msgstr "監視追加" - -#: ../../enterprise/include/class/SAP.app.php:834 -msgid "Remove monitors" -msgstr "監視削除" - -#: ../../enterprise/include/class/SAP.app.php:845 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594 -#: ../../enterprise/godmode/massive/massive_create_services.php:1235 -msgid "Selected modules" -msgstr "選択したモジュール" - -#: ../../enterprise/include/class/SAP.app.php:885 -msgid "Define your custom SAP modules." -msgstr "カスタム SAP モジュールを定義してください。" - -#: ../../enterprise/include/class/SAP.app.php:884 -msgid "Advanced module configuration" -msgstr "高度なモジュール設定" - -#: ../../enterprise/include/class/SAP.app.php:894 -msgid "Custom module definitions" -msgstr "カスタムモジュール定義" - -#: ../../enterprise/include/class/SAP.app.php:895 -msgid "" -"Each line is a module definition using following format: module name ; module_type ; " -"SAP check definition." -msgstr "" -"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイプ ; SAP" -"チェック定義" - -#: ../../enterprise/include/class/ManageBackups.class.php:106 -#, php-format -msgid "%s database backup manager" -msgstr "%s データベースバックアップ管理" - -#: ../../enterprise/include/class/ManageBackups.class.php:129 -#, php-format -msgid "To schedule a periodic (or one-time) backup task you can do it through %s." -msgstr "定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" - -#: ../../enterprise/include/class/ManageBackups.class.php:189 -msgid "Path backups" -msgstr "バックアップパス" - -#: ../../enterprise/include/class/ManageBackups.class.php:314 -msgid "Rollback to this backup" -msgstr "このバックアップへロールバックする" - -#: ../../enterprise/include/class/ManageBackups.class.php:323 -msgid "Lost" -msgstr "失敗" - -#: ../../enterprise/include/class/ManageBackups.class.php:330 -msgid "In Progress" -msgstr "処理中" - -#: ../../enterprise/include/class/ManageBackups.class.php:361 -msgid "The backup was successfully deleted" -msgstr "バックアップを削除しました" - -#: ../../enterprise/include/class/ManageBackups.class.php:367 -msgid "Missed id parameter" -msgstr "ID パラメータがありません" - -#: ../../enterprise/include/class/ManageBackups.class.php:386 -msgid "Something was wrong with the rollback action." -msgstr "ロールバック処理で問題が発生しました。" - -#: ../../enterprise/include/class/ManageBackups.class.php:389 -msgid "Missed id parameter." -msgstr "ID パラメータがありません。" - -#: ../../enterprise/include/class/ManageBackups.class.php:437 -msgid "" -"Are you sure you want to delete this database backup file? Once deleted you will not " -"be able to recover it." -msgstr "" -"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に戻すこ" -"とはできません。" - -#: ../../enterprise/include/class/ManageBackups.class.php:439 -msgid "Do you like perform a database restoration?" -msgstr "データベースの復元を実行しますか?" - -#: ../../enterprise/include/class/Omnishell.class.php:214 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 -msgid "Please follow the wizard." -msgstr "ウィザードに従ってください。" - -#: ../../enterprise/include/class/Omnishell.class.php:226 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 -msgid "You have no acess to edit this command." -msgstr "このコマンドを編集する権限がありません。" - -#: ../../enterprise/include/class/Omnishell.class.php:261 -msgid "Failed to save command." -msgstr "コメントを保存できませんでした" - -#: ../../enterprise/include/class/Omnishell.class.php:272 -msgid "Command not found." -msgstr "コマンドが見つかりません。" - -#: ../../enterprise/include/class/Omnishell.class.php:349 -#: ../../enterprise/include/class/Omnishell.class.php:610 -msgid "You must install php-yaml in order to use this feature." -msgstr "この機能を利用するには php-yaml をインストールする必要があります。" - -#: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4081 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4202 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4362 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 -#: ../../enterprise/godmode/policies/policy_queue.php:671 -#: ../../enterprise/godmode/policies/policy_queue.php:674 -msgid "Finished" -msgstr "完了" - -#: ../../enterprise/include/class/Omnishell.class.php:363 -#: ../../enterprise/include/class/Omnishell.class.php:1087 -#: ../../enterprise/include/class/DatabaseHA.class.php:214 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 -msgid "Pending" -msgstr "保留中" - -#: ../../enterprise/include/class/Omnishell.class.php:364 -msgid "Not Started" -msgstr "未開始" - -#: ../../enterprise/include/class/Omnishell.class.php:401 -#: ../../enterprise/include/functions_ipam.php:1411 -#: ../../enterprise/include/functions_ipam.php:1418 -#: ../../enterprise/include/functions_ipam.php:1423 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 -#: ../../enterprise/godmode/policies/policy_queue.php:650 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:606 -msgid "Progress" -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 "" -"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要があり" -"ます" - -#: ../../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 "" -"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要がありま" -"す" - -#: ../../enterprise/include/class/Omnishell.class.php:825 -#: ../../enterprise/include/class/Omnishell.class.php:904 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 -msgid "Filter agent" -msgstr "エージェントのフィルタ" - -#: ../../enterprise/include/class/Omnishell.class.php:835 -#: ../../godmode/agentes/planned_downtime.editor.php:799 -msgid "Available agents" -msgstr "エージェント" - -#: ../../enterprise/include/class/Omnishell.class.php:867 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 -msgid "Add agents" -msgstr "エージェント追加" - -#: ../../enterprise/include/class/Omnishell.class.php:880 -msgid "Remove agents" -msgstr "エージェント削除" - -#: ../../enterprise/include/class/Omnishell.class.php:915 -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579 -#: ../../enterprise/godmode/massive/massive_create_services.php:1220 -msgid "Selected agents" -msgstr "選択したエージェント" - -#: ../../enterprise/include/class/Omnishell.class.php:1157 -msgid "Selected command definition will be erased" -msgstr "選択したコマンド定義は削除されます" - -#: ../../enterprise/include/class/Omnishell.class.php:1243 -msgid "Command viewer" -msgstr "コマンドビューワ" - -#: ../../enterprise/include/class/Omnishell.class.php:1251 -msgid "Detailed view" -msgstr "詳細表示" - -#: ../../enterprise/include/class/Omnishell.class.php:1392 -msgid "Not an array of ids" -msgstr "ID の配列ではありません" - -#: ../../enterprise/include/class/Omnishell.class.php:1450 -msgid "There are no targets for this remote command" -msgstr "このリモートコマンドの対象がありません" - -#: ../../enterprise/include/class/Omnishell.class.php:1457 -msgid "Command does not exist" -msgstr "コマンドが存在しません" - -#: ../../enterprise/include/class/Omnishell.class.php:1553 -#: ../../enterprise/include/lib/Metaconsole/Node.php:141 -#: ../../enterprise/include/lib/Metaconsole/Node.php:190 -#: ../../enterprise/include/lib/Metaconsole/Node.php:241 -#: ../../enterprise/include/lib/Metaconsole/Node.php:336 -#: ../../enterprise/include/lib/Metaconsole/Node.php:389 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:99 -msgid "success" -msgstr "成功" - -#: ../../enterprise/include/class/Omnishell.class.php:1556 -msgid "timed out" -msgstr "タイムアウトしました" - -#: ../../enterprise/include/class/Omnishell.class.php:1559 -msgid "failed" -msgstr "失敗" - -#: ../../enterprise/include/class/Omnishell.class.php:1575 -msgid "Waiting results..." -msgstr "結果待ち..." - -#: ../../enterprise/include/class/Omnishell.class.php:1594 -msgid "RCMD does not exist" -msgstr "RCMD が存在しません" - -#: ../../enterprise/include/class/VMware.app.php:230 -msgid "" -"This VMware configuration has been already defined. Please edit it or create a new " -"one." -msgstr "" -"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してください。" - -#: ../../enterprise/include/class/VMware.app.php:274 -msgid "You must provide a valid V-Center IP or FQDN." -msgstr "正しい V-Center IP または FQDN を設定する必要があります。" - -#: ../../enterprise/include/class/VMware.app.php:291 -msgid "Discovery.Application.VMware" -msgstr "自動検出.アプリケーション.VMware" - -#: ../../enterprise/include/class/VMware.app.php:310 -msgid "Please select a valid group" -msgstr "正しいグループを選択してください" - -#: ../../enterprise/include/class/VMware.app.php:369 -msgid "Failed to find discovery VMware task." -msgstr "自動検出 VMware タスクを見つけられませんでした。" - -#: ../../enterprise/include/class/VMware.app.php:384 -msgid "Threads must be equal or greater than 1." -msgstr "スレッドは 1以上である必要があります。" - -#: ../../enterprise/include/class/VMware.app.php:503 -#: ../../enterprise/godmode/menu.php:176 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/include/class/VMware.app.php:656 -msgid "Datacenter user" -msgstr "データセンターユーザ" - -#: ../../enterprise/include/class/VMware.app.php:707 -msgid "V-Center IP" -msgstr "V-Center IP" - -#: ../../enterprise/include/class/VMware.app.php:718 -msgid "Datacenter name" -msgstr "データセンター名" - -#: ../../enterprise/include/class/VMware.app.php:719 -msgid "" -"This name must match with the name wich appears when you log in you VMware manager" -msgstr "" -"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があります" - -#: ../../enterprise/include/class/VMware.app.php:749 -msgid "Encrypt passwords" -msgstr "パスワード暗号化" - -#: ../../enterprise/include/class/VMware.app.php:870 -msgid "Max threads" -msgstr "最大スレッド" - -#: ../../enterprise/include/class/VMware.app.php:879 -msgid "Re-scan interval" -msgstr "再スキャン間隔" - -#: ../../enterprise/include/class/VMware.app.php:880 -msgid "Enables re-scan entities process every interval defined." -msgstr "定義された間隔ごとに再スキャンエンティティが処理できるようにします。" - -#: ../../enterprise/include/class/VMware.app.php:913 -msgid "Retry send" -msgstr "送信リトライ" - -#: ../../enterprise/include/class/VMware.app.php:923 -msgid "Event mode" -msgstr "イベントモード" - -#: ../../enterprise/include/class/VMware.app.php:923 -msgid "Only for VCenter." -msgstr "VCenter のみ。" - -#: ../../enterprise/include/class/VMware.app.php:933 -msgid "Virtual network monitoring" -msgstr "仮想ネットワーク監視" - -#: ../../enterprise/include/class/VMware.app.php:964 -msgid "Extra settings" -msgstr "追加設定" - -#: ../../enterprise/include/class/VMware.app.php:965 -msgid "This RAW block will be directly added to config file." -msgstr "この RAW ブロックは、設定ファイルに直接追加されます。" - -#: ../../enterprise/include/class/VMware.app.php:1259 -msgid "Include datastores" -msgstr "データストアを含める" - -#: ../../enterprise/include/class/VMware.app.php:1269 -msgid "Include datacenters" -msgstr "データセンタを含める" - -#: ../../enterprise/include/class/VMware.app.php:1279 -msgid "Include esxs" -msgstr "esx を含める" - -#: ../../enterprise/include/class/VMware.app.php:1289 -msgid "Include vms" -msgstr "vm を含める" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 -msgid "Alert not found." -msgstr "アラートが見つかりません。" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 -msgid "Invalid json data" -msgstr "不正な json データ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 -msgid "Rules updated." -msgstr "ルールを更新しました。" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 -msgid "JSON decoding error. Please call support." -msgstr "JSON デコードエラー: サポートに問い合わせてください。" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:897 -msgid "Pass" -msgstr "Pass" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898 -msgid "Drop" -msgstr "Drop" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 -msgid "Module alert" -msgstr "モジュールアラート" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:944 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2018 -msgid "Load from template" -msgstr "テンプレートから読み込む" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2197 -#: ../../godmode/alerts/configure_alert_template.php:625 -#: ../../godmode/alerts/alert_view.php:258 -msgid "Use special days list" -msgstr "特別日一覧を利用する" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:978 -#: ../../godmode/alerts/configure_alert_template.php:661 -msgid "Schedule" -msgstr "スケジュール" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981 -#: ../../godmode/alerts/configure_alert_template.php:665 -msgid "No alert has been scheduled yet" -msgstr "アラートがスケジューリングされていません" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1003 -msgid "Execute alert" -msgstr "アラート実行" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457 -msgid "from" -msgstr "開始" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1026 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3475 -msgid "times in" -msgstr "時間範囲" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1036 -msgid "threshold" -msgstr "しきい値" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046 -msgid "Rule evaluation mode" -msgstr "ルール評価モード" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046 -msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." -msgstr "" -"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止します。" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1063 -msgid "Grouped by" -msgstr "グループ化:" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1080 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 -#: ../../godmode/snmpconsole/snmp_alert.php:1043 -#: ../../godmode/alerts/configure_alert_template.php:749 -msgid "Disable event" -msgstr "イベント無効化" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1202 -msgid "" -"The templates shown are only for correlative alerts, event alert (legacy) will be " -"deprecated in the future" -msgstr "" -"表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)は将来非" -"推奨になります" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1212 -msgid "Available items" -msgstr "存在するアイテム" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213 -msgid "Block" -msgstr "ブロック" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1261 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1044 -msgid "Log content" -msgstr "ログの内容" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1266 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1047 -msgid "Log source" -msgstr "ログソース" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1271 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1050 -msgid "Log agent" -msgstr "ログエージェント" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1329 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 -msgid "Event content" -msgstr "イベントの内容" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1334 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1053 -msgid "Event user comment" -msgstr "イベントユーザコメント" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1339 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059 -msgid "Event agent" -msgstr "イベントエージェント" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1344 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1062 -msgid "Event module" -msgstr "イベントモジュール" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1349 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1065 -msgid "Event module alerts" -msgstr "イベントモジュールアラート" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1354 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1068 -msgid "Event group" -msgstr "イベントグループ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1360 -msgid "Event group (recursive)" -msgstr "イベントグループ(再帰)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1366 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1074 -msgid "Event severity" -msgstr "イベント重要度" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1371 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1077 -msgid "Event tag" -msgstr "イベントタグ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1376 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1080 -msgid "Event user" -msgstr "イベントユーザ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406 -msgid "Operators" -msgstr "演算子" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1411 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1455 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1393 -msgid "greater than" -msgstr "より大きい" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1416 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1459 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1405 -msgid "less than" -msgstr "より小さい" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1421 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1463 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1401 -msgid "greater or equal than" -msgstr "より大きいか等しい" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1426 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1467 -msgid "less or equal than" -msgstr "次より小さいか等しい: " - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1431 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1471 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1409 -msgid "is equal" -msgstr "同じ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1436 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1475 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1413 -msgid "is different" -msgstr "異なる" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1479 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1417 -msgid "is like (regex)" -msgstr "一致 (正規表現)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1446 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1483 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1421 -msgid "is not like (regex)" -msgstr "不一致 (正規表現)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1516 -msgid "Modifiers" -msgstr "修飾子" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1521 -msgid "within an interval (seconds)" -msgstr "間隔内 (秒)" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1526 -msgid "repeated at least" -msgstr "繰り返された最低数" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1566 -msgid "Matches on both true" -msgstr "両方が真の時にマッチ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1572 -msgid "Matches when any is false" -msgstr "いずれかが偽の時にマッチ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1578 -msgid "Matches on any true" -msgstr "いずれかが真の時にマッチ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1584 -msgid "Matches when both are false" -msgstr "両方が偽の時にマッチ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1590 -msgid "Matches when only one is true" -msgstr "一つだけ真の時にマッチ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1596 -msgid "Matches when both are either true or false" -msgstr "両方が真または偽の時にマッチ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1632 -msgid "Rule definition" -msgstr "ルール定義" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1921 -msgid "Remove rule" -msgstr "ルール削除" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1932 -msgid "Remove item" -msgstr "アイテム削除" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1943 -#: ../../enterprise/include/functions_HA_cluster.php:64 -msgid "Cleanup" -msgstr "クリーンアップ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2044 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2689 -#: ../../godmode/alerts/configure_alert_template.php:928 -#: ../../godmode/alerts/alert_commands.php:100 -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:121 -#: ../../godmode/alerts/alert_commands.php:127 ../../godmode/alerts/alert_view.php:484 -#: ../../godmode/alerts/alert_view.php:603 -#, php-format -msgid "Field %s" -msgstr "フィールド %s" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2111 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2113 -msgid "Triggering Condition" -msgstr "発報条件" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2201 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 -#: ../../godmode/snmpconsole/snmp_alert.php:996 -#: ../../godmode/alerts/configure_alert_template.php:676 -#: ../../godmode/alerts/alert_templates.php:91 ../../godmode/alerts/alert_view.php:262 -msgid "Time threshold" -msgstr "再通知間隔" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206 -#: ../../godmode/alerts/alert_view.php:266 -msgid "Number of alerts" -msgstr "アラート数" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2294 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2557 -#: ../../godmode/alerts/alert_view.php:403 -#: ../../godmode/alerts/configure_alert_action.php:305 -msgid "Firing" -msgstr "障害通知" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2409 -msgid "There are no defined actions for this alert" -msgstr "このアラートには定義済のアクションがありません" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2480 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3454 -msgid "Number of alerts match" -msgstr "アラートマッチ数" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558 -#: ../../godmode/alerts/alert_view.php:404 -msgid "Recovering" -msgstr "リカバリ中" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2575 -msgid "Select the desired action and mode to view the Triggering fields for this action" -msgstr "目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592 -#: ../../godmode/alerts/alert_view.php:395 -msgid "Select the action" -msgstr "アクションを選択" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2650 -#: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:435 ../../godmode/alerts/alert_view.php:569 -msgid "Firing fields" -msgstr "発報フィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2652 -#: ../../godmode/alerts/alert_view.php:437 -msgid "Fields passed to the command executed by this action when the alert is fired" -msgstr "" -"アラートが発報されたときに、このアクションによって実行されるコマンドに渡されるフィール" -"ド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658 -#: ../../godmode/alerts/alert_view.php:443 ../../godmode/alerts/alert_view.php:566 -msgid "Fields configured on the command associated to the action" -msgstr "アクションに関連付けられたコマンドで設定されたフィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2661 -msgid "Alerts fields" -msgstr "アラートフィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2663 -msgid "Triggering fields configured in Alerts" -msgstr "アラートで設定された発報フィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2666 -#: ../../godmode/alerts/alert_view.php:451 -msgid "Action fields" -msgstr "アクションフィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2668 -#: ../../godmode/alerts/alert_view.php:453 -msgid "Triggering fields configured in action" -msgstr "アクションで設定したトリガーフィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2671 -#: ../../godmode/alerts/alert_view.php:457 -msgid "Executed on firing" -msgstr "発報時の実行" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673 -#: ../../godmode/alerts/alert_view.php:459 ../../godmode/alerts/alert_view.php:571 -msgid "Fields used on execution when the alert is fired" -msgstr "アラートが発報したときに実行に使われるフィールド" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2722 -msgid "Correlated alerts" -msgstr "関連付け" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2746 -msgid "Alert succesfully deleted" -msgstr "アラートを削除しました" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2755 -msgid "Alerts validated" -msgstr "アラートを承諾しました" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2758 -msgid "Failed to process validation" -msgstr "承諾処理に失敗しました" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2808 -#: ../../enterprise/godmode/modules/local_components.php:547 -#: ../../godmode/modules/manage_network_components.php:659 -msgid "Free Search" -msgstr "検索文字列" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2843 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:88 -#: ../../enterprise/meta/general/main_menu.php:398 -#: ../../enterprise/meta/general/main_header.php:291 -#: ../../godmode/reporting/reporting_builder.list_items.php:222 -#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110 -msgid "Filters" -msgstr "フィルタ" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2900 -#: ../../enterprise/include/functions_ipam.php:1643 -#: ../../enterprise/meta/include/functions_autoprovision.php:473 -#: ../../enterprise/meta/include/functions_autoprovision.php:640 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../godmode/reporting/reporting_builder.list_items.php:440 -#: ../../godmode/reporting/reporting_builder.list_items.php:740 -#: ../../godmode/reporting/graph_builder.graph_editor.php:217 -#: ../../godmode/reporting/graph_builder.graph_editor.php:318 -msgid "Sort" -msgstr "並べ替え" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2903 -msgid "Matched" -msgstr "マッチしました" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2926 -#: ../../enterprise/include/class/CommandCenter.class.php:329 -msgid "Sort elements" -msgstr "要素の並べ替え" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2971 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3357 -msgid "No associated actions" -msgstr "関連アクションがありません" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3005 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3021 -msgid "Add Actions" -msgstr "アクション追加" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3076 -msgid "There are no defined correlated alerts" -msgstr "定義済の相関アラートがありません" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3212 -msgid "Are you sure you want to disable the alert" -msgstr "アラートを無効化してよろしいですか" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3219 -msgid "Are you sure you want to enable the alert" -msgstr "アラートを有効化してよろしいですか" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3226 -msgid "Disabled Alert" -msgstr "無効化アラート" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3268 -msgid "Are you sure you want to standby the alert" -msgstr "アラートをスタンバイにしてよろしいですか" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3275 -msgid "Are you sure you want to activate the alert" -msgstr "アラートを有効化してよろしいですか" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283 -msgid "Standby Alert" -msgstr "スタンバイアラート" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3332 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:465 -#: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../godmode/alerts/alert_list.list.php:642 -msgid "Until" -msgstr "次のアラート回数までアクション実施:" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355 -msgid "Delete Actions" -msgstr "アクション削除" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3534 -msgid "Successfully added action" -msgstr "アクションを追加しました" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3572 -msgid "Successfully delete action" -msgstr "アクションを削除しました" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3985 -msgid "Choosetime" -msgstr "時間選択" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4208 -msgid "Drop Here" -msgstr "ここにドロップしてください" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4266 -#: ../../godmode/alerts/configure_alert_template.php:1495 -msgid "Simple" -msgstr "シンプル" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4267 -#: ../../godmode/alerts/configure_alert_template.php:1496 -msgid "Detailed" -msgstr "詳細" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4322 -#: ../../godmode/alerts/configure_alert_template.php:1551 -msgid "Drag out to remove" -msgstr "削除にはドラッグアウトします" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:375 -msgid "Perform action" -msgstr "アクションの実行" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../enterprise/godmode/modules/local_components.php:690 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 -#: ../../enterprise/godmode/policies/policy_modules.php:1555 -#: ../../godmode/modules/manage_network_components.php:859 -#: ../../godmode/modules/manage_network_components.php:860 -#: ../../godmode/reporting/reporting_builder.php:1196 -#: ../../godmode/snmpconsole/snmp_alert.php:1303 -#: ../../godmode/snmpconsole/snmp_alert.php:1304 -#: ../../godmode/agentes/module_manager.php:1166 -#: ../../godmode/alerts/alert_actions.php:435 -#: ../../godmode/alerts/alert_templates.php:431 -msgid "Duplicate" -msgstr "複製" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 -msgid "NCM devices" -msgstr "NCM デバイス" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 -msgid "NCM templates" -msgstr "NCM テンプレート" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 -msgid "Registered vendors" -msgstr "登録ベンダ" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 -msgid "Registered models" -msgstr "登録モデル" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 -msgid "Registered snippets" -msgstr "" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 -msgid "Registered firmwares" -msgstr "登録ファームウエア" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 -msgid "No agents with NCM features enabled yet" -msgstr "NCM 機能が有効になっているエージェントがありません" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 -#, php-format -msgid "Template not found: %s" -msgstr "テンプレートが見つかりません: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 -msgid "Template created" -msgstr "テンプレートを作成しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 -msgid "Template updated" -msgstr "テンプレートを更新しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 -#, php-format -msgid "Vendor not found: %s" -msgstr "ベンダが見つかりません: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 -msgid "Failed saving vendor: " -msgstr "ベンダの保存に失敗しました: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 -#, php-format -msgid "model not found: %s" -msgstr "モデルが見つかりません: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 -msgid "you must select a valid vendor" -msgstr "正しいベンダを選択する必要があります。" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 -msgid "Failed saving model: " -msgstr "モデルの保存に失敗しました: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 -#, php-format -msgid "snippet not found: %s" -msgstr "" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 -msgid "Failed saving snippet: " -msgstr "" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 -#, php-format -msgid "firmware not found: %s" -msgstr "ファームウエアが見つかりません: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 -msgid "Firmware file missing" -msgstr "ファームウエアファイルがありません" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 -#, php-format -msgid "Failed to store file in %s" -msgstr "%s へのファイルの保存に失敗しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 -msgid "Failed saving firmware: " -msgstr "ファームウエアの保存に失敗しました: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 -msgid "" -"Upload only official binary files from your device provide in raw format (not " -"compressed)" -msgstr "" -"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロードしてくだ" -"さい" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 -#: ../../godmode/modules/manage_network_templates.php:83 -msgid "Template successfully deleted" -msgstr "テンプレートを削除しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 -msgid "Template successfully duplicated" -msgstr "テンプレートを複製しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 -#, php-format -msgid "Model not found: %s" -msgstr "モデルが見つかりません: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 -msgid "Model successfully deleted" -msgstr "モデルを削除しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 -msgid "Vendor successfully deleted" -msgstr "ベンダを削除しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 -#, php-format -msgid "Snippet not found: %s" -msgstr "" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 -msgid "Snippet successfully deleted" -msgstr "" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 -#, php-format -msgid "Firmware not found: %s" -msgstr "ファームウエアが見つかりません: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 -msgid "Firmware successfully deleted" -msgstr "ファームウエアを削除しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 -msgid "Not executed yet, no content to display, define your own in following textarea." -msgstr "" -"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定義してく" -"ださい。" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 -msgid "" -"Following content is already queued to be executed! You must wait until execution is " -"finished before being able to modify this." -msgstr "" -"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了するまで" -"待つ必要があります。" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 -msgid "Check progress" -msgstr "進捗確認" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 -#, php-format -msgid "Script scheduled %s %s" -msgstr "計画スクリプト %s %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 -#, php-format -msgid "Error retrieving template: %s" -msgstr "テンプレート取得エラー: %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 -msgid "you must select a template" -msgstr "テンプレートを選択する必要があります" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 -msgid "you must select a valid model" -msgstr "正しいモデルを選択する必要があります。" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 -msgid "you must select a valid port" -msgstr "正しいポートを選択する必要があります。" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 -#, php-format -msgid "Failed to update%s" -msgstr "アップデートに失敗しました %s" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 -msgid "No configuration registers to backup" -msgstr "バックアップのための設定レジスタがありません" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 -msgid "Successfully backed up" -msgstr "バックアップしました: " - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 -msgid "Invalid id given" -msgstr "不正な ID 指定です" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 -msgid "" -"Is highly recommendable to execute this kind of operation from agent details to " -"preview the script content" -msgstr "" -"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューすることを強" -"くお勧めします" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 -msgid "This operation is not ready yet! Keep up to date with latest updates" -msgstr "" -"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってください" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 -msgid "Invalid action" -msgstr "不正なアクション" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 -#: ../../enterprise/include/class/DatabaseHA.class.php:190 -msgid "Successfully scheduled" -msgstr "スケジュール設定しました" - -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 -msgid "Failed to schedule action." -msgstr "スケジュールアクションに失敗しました" - -#: ../../enterprise/include/class/Azure.cloud.php:248 -#: ../../enterprise/include/class/Google.cloud.php:242 -msgid "Task details" -msgstr "タスク詳細" - -#: ../../enterprise/include/class/Azure.cloud.php:249 -#: ../../enterprise/include/class/Google.cloud.php:243 -msgid "Instance explorer" -msgstr "インスタンスエクスプローラ" - -#: ../../enterprise/include/class/Azure.cloud.php:250 -#: ../../enterprise/include/class/Google.cloud.php:244 -msgid "Metrics" -msgstr "メトリック" - -#: ../../enterprise/include/class/Azure.cloud.php:307 -msgid "Microsoft Compute" -msgstr "Microsoft コンピュート" - -#: ../../enterprise/include/class/Azure.cloud.php:468 -#: ../../enterprise/include/class/Google.cloud.php:470 -msgid "Group not found." -msgstr "グループが見つかりません。" - -#: ../../enterprise/include/class/Azure.cloud.php:598 -#: ../../enterprise/include/class/Azure.cloud.php:646 -#: ../../enterprise/include/class/Google.cloud.php:597 -#: ../../enterprise/include/class/Google.cloud.php:643 -msgid "Unauthorized access" -msgstr "不正アクセス" - -#: ../../enterprise/include/class/Azure.cloud.php:909 -#: ../../enterprise/include/class/Google.cloud.php:865 -msgid "Select target virtual machines" -msgstr "対象の仮想マシンを選択してください" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:235 -msgid "IP address is required" -msgstr "IP アドレスが必要です" - -#: ../../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:352 -msgid "You should specify a Discovery server" -msgstr "自動検出サーバを指定する必要があります" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:354 -msgid "You must select some targets to deploy" -msgstr "デプロイする対象を選択する必要があります" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:384 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 -msgid "Failed to schedule" -msgstr "スケジュール設定に失敗しました" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:399 -msgid "Deploy scheduled" -msgstr "スケジュールされたものを展開" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:425 -msgid "CSV file is needed" -msgstr "CSV ファイルが必要です" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:480 -#, php-format -msgid "Credential identifier %s does not exist, please, add it to your repository %s " -msgstr "認証情報識別子 %s が存在しません。リポジトリ %s に追加してください " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:488 -#, php-format -msgid "OS %s does not math any existing, please, add it to OS list %s" -msgstr "OS%s が既存のものと一致しません。OSリスト %s に追加してください" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:496 -#, php-format -msgid "" -"Sofware agent version with id %s does not exist, please, add it to your repository %s " -msgstr "" -"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加してくだ" -"さい " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:518 -msgid "No target could be added. " -msgstr "対象を追加できませんでした。 " - -#: ../../enterprise/include/class/DeploymentCenter.class.php:613 -#: ../../enterprise/godmode/menu.php:163 ../../godmode/wizards/HostDevices.class.php:165 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:823 -msgid "Agent deployment" -msgstr "エージェントの展開" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:621 -msgid "Deployment center" -msgstr "デプロイセンター" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:637 -msgid "There are no targets defined yet, please add some." -msgstr "対象が定義されていません。追加してください。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:644 -#, php-format -msgid "Please set %s to make software available for targets." -msgstr "対象でソフトウェアを使用できるようにするには、%s を設定してください。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:656 -#, php-format -msgid "There are no software agents in your repository yet, please add some %s." -msgstr "リポジトリにはまだソフトウェアエージェントがありません。%s へ追加してください。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:675 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 -msgid "Scan for targets" -msgstr "対象のスキャン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:684 -msgid "Add target" -msgstr "対象の追加" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:693 -msgid "Load targets" -msgstr "対象をロード" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:758 -msgid "Key identifier" -msgstr "鍵識別子" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:759 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 -msgid "Target server IP" -msgstr "対象サーバ IP" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:760 -msgid "Agent version installed" -msgstr "インストール済エージェントバージョン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:761 -msgid "Agent version desired" -msgstr "必要なエージェントバージョン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:762 -msgid "Installation date" -msgstr "インストール日時" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:763 -msgid "Last error" -msgstr "最新のエラー" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:811 -msgid "Server IP" -msgstr "サーバ IP" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:836 -msgid "State" -msgstr "状態" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:868 -msgid "Deploy agent to targets" -msgstr "対象にエージェントをデプロイ" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 -msgid "You must define a network." -msgstr "ネットワークを定義する必要があります。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 -msgid "You must select at least one credential to test." -msgstr "テストのために少なくとも一つ認証情報を選択する必要があります。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 -msgid "You must select a Discovery server." -msgstr "自動検出サーバを選択する必要があります。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 -msgid "Please select a desired software agent version." -msgstr "希望するソフトウェアエージェントのバージョンを選択してください。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 -msgid "Please specify a server IP." -msgstr "サーバ IP を指定してください。" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 -msgid "Discovery task list" -msgstr "自動検出タスク一覧" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 -#, php-format -msgid "This network is already being scanned. See progress at %s" -msgstr "このネットワークはスキャン済です。%s で進捗を見ます" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 -#, php-format -msgid "Network scheduled to be scanned. You can see progress at %s" -msgstr "スキャンがスケジュールされているネットワーク。%s で進捗状況を見ることができます" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 -msgid "Network/mask" -msgstr "ネットワーク/マスク" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 -msgid "Scan from" -msgstr "次からスキャン:" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1447 -msgid "Credentials to try with" -msgstr "利用認証情報" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1189 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1316 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../enterprise/meta/include/functions_wizard_meta.php:974 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1058 -#: ../../extensions/api_checker.php:195 ../../godmode/wizards/HostDevices.class.php:1470 -msgid "Credentials" -msgstr "認証情報" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 -msgid "Desired agent version" -msgstr "必要なエージェントバージョン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 -msgid "CSV format" -msgstr "CSV フォーマット" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Target agent version" -msgstr "対象エージェントバージョン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 -#: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/massive/massive_edit_modules.php:1198 -#: ../../godmode/agentes/module_manager_editor_network.php:459 -msgid "Credential identifier" -msgstr "認証情報識別子" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -msgid "Target server ip" -msgstr "対象サーバ IP" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 -msgid "CSV file" -msgstr "CSVファイル" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 -msgid "Select desired targets to be deployed" -msgstr "デプロイする必要な対象を選択してください" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 -msgid "Deploy from" -msgstr "次からデプロイ:" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 -msgid "Available targets" -msgstr "存在する対象" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 -msgid "Add new target" -msgstr "新たな対象の追加" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 -msgid "Update target" -msgstr "対象の更新" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 -msgid "Import targets from CSV" -msgstr "CSV から対象をインポート" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 -#: ../../godmode/modules/manage_network_components_form_wizard.php:636 -msgid "Scan" -msgstr "スキャン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 -msgid "Select targets" -msgstr "対象を選択" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 -#: ../../enterprise/include/functions_HA_cluster.php:46 -msgid "Deploy" -msgstr "デプロイ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:137 -#: ../../enterprise/include/class/DatabaseHA.class.php:241 -#: ../../enterprise/include/class/DatabaseHA.class.php:423 -#: ../../enterprise/include/class/DatabaseHA.class.php:433 -#: ../../enterprise/include/class/DatabaseHA.class.php:525 -#: ../../enterprise/include/class/DatabaseHA.class.php:534 -#: ../../enterprise/include/class/DatabaseHA.class.php:651 -#: ../../enterprise/include/class/DatabaseHA.class.php:660 -msgid "Error, please refresh page" -msgstr "エラー、ページをリロードしてください" - -#: ../../enterprise/include/class/DatabaseHA.class.php:142 -msgid "Action already scheduled" -msgstr "アクションはすでに計画済です" - -#: ../../enterprise/include/class/DatabaseHA.class.php:148 -msgid "Unavailable action" -msgstr "存在しないアクション" - -#: ../../enterprise/include/class/DatabaseHA.class.php:160 -msgid "A node is already being synchronized, please wait until process finish." -msgstr "ノードはすでに同期済です。処理が完了するまでお待ちください。" - -#: ../../enterprise/include/class/DatabaseHA.class.php:172 -msgid "Please verify resync configuration is set before use this feature." -msgstr "この機能を使用する前に、再同期設定がされていることを確認してください。" - -#: ../../enterprise/include/class/DatabaseHA.class.php:220 -msgid "Uninitialized" -msgstr "未初期化" - -#: ../../enterprise/include/class/DatabaseHA.class.php:476 -#: ../../enterprise/include/class/DatabaseHA.class.php:575 -#: ../../enterprise/include/class/DatabaseHA.class.php:1251 -msgid "This is not a cluster node" -msgstr "これはクラスタノードではありません" - -#: ../../enterprise/include/class/DatabaseHA.class.php:480 -#: ../../enterprise/include/class/DatabaseHA.class.php:1255 -msgid "Failed to retrieve master position" -msgstr "マスターポジションの取得に失敗しました" - -#: ../../enterprise/include/class/DatabaseHA.class.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:1268 -msgid "Failed to retrieve slave information" -msgstr "スレーブ情報の取得に失敗しました" - -#: ../../enterprise/include/class/DatabaseHA.class.php:611 -msgid "Master" -msgstr "マスタ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:614 -msgid "Slave" -msgstr "スレーブ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:823 -#: ../../enterprise/include/class/DatabaseHA.class.php:1006 -msgid "DB Replication user" -msgstr "DB レプリケーションユーザ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:824 -msgid "User configured for Master to Slaves replication" -msgstr "マスター・スレーブレプリケーション設定用ユーザ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:834 -#: ../../enterprise/include/class/DatabaseHA.class.php:1015 -msgid "DB Replication user password" -msgstr "DB レプリケーションユーザパスワード" - -#: ../../enterprise/include/class/DatabaseHA.class.php:835 -msgid "User password" -msgstr "ユーザパスワード" - -#: ../../enterprise/include/class/DatabaseHA.class.php:845 -msgid "Resync data dir" -msgstr "再同期データディレクトリ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:846 -msgid "Directory where mysql files are stored (must be common to all nodes)" -msgstr "" -"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があります)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:856 -msgid "Resync tmp directory" -msgstr "再同期テンポラリディレクトリ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:857 -msgid "" -"Temporary working directory where to store the backups that will be used to re-" -"synchronize a slave node" -msgstr "" -"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクトリ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:867 -msgid "Resync MySQL user" -msgstr "再同期 MySQL ユーザ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:868 -msgid "" -"User of the system that owns the MySQL files, necessary for the adjustment of " -"permissions (by default mysql)" -msgstr "" -"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトでは mysql)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:878 -msgid "Resync MySQL group" -msgstr "再同期 MySQL グループ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:879 -msgid "" -"System group that owns the MySQL files, needed for permissions setting (default mysql)" -msgstr "" -"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは mysql)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:940 -msgid "IP or FQDN" -msgstr "IP または FQDN" - -#: ../../enterprise/include/class/DatabaseHA.class.php:941 -msgid "" -"This action only registers an already configured node. This action does not configure " -"any resource." -msgstr "" -"このアクションは、すでに設定されているノードのみを登録します。 このアクションでは、リ" -"ソースは設定されません。" - -#: ../../enterprise/include/class/DatabaseHA.class.php:951 -msgid "Cluster node label (pcs)" -msgstr "クラスタノードラベル (pcs)" - -#: ../../enterprise/include/class/DatabaseHA.class.php:959 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:602 -msgid "DB port" -msgstr "DB ポート" - -#: ../../enterprise/include/class/DatabaseHA.class.php:967 -msgid "SSH user" -msgstr "SSH ユーザ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:975 -msgid "SSH port" -msgstr "SSH ポート" - -#: ../../enterprise/include/class/DatabaseHA.class.php:983 -msgid "SSH key" -msgstr "SSH 鍵" - -#: ../../enterprise/include/class/DatabaseHA.class.php:991 -msgid "SSH public key" -msgstr "SSH 公開鍵" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1043 -msgid "Missed parameters" -msgstr "不足パラメータ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1090 -msgid "You must specify a host" -msgstr "ホストを指定する必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1092 -msgid "DB port must be a positive integer" -msgstr "DB ポートは正の整数である必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1094 -msgid "SSH port must be a positive integer" -msgstr "SSH ポートは正の整数である必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1096 -msgid "You must specify a SSH user" -msgstr "SSH ユーザを指定する必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1098 -msgid "You must specify a replication DB user" -msgstr "レプリケーション DB ユーザを指定する必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1100 -msgid "You must specify a replication DB pass" -msgstr "レプリケーション DB パスワードを指定する必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1102 -msgid "You must specify a public key path" -msgstr "公開鍵のパスを指定する必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1104 -msgid "You must specify a private path" -msgstr "秘密鍵のパスを指定する必要があります" - -#: ../../enterprise/include/class/DatabaseHA.class.php:1154 -msgid "Successfully " -msgstr "成功 " - -#: ../../enterprise/include/class/Google.cloud.php:301 -msgid "Compute Engine" -msgstr "コンピュートエンジン" - -#: ../../enterprise/include/class/Google.cloud.php:877 -msgid "This options only applies to zone (region) agents." -msgstr "このオプションはゾーン(リージョン)エージェントにのみ適用されます。" - -#: ../../enterprise/include/class/Google.cloud.php:890 -msgid "Scan and general monitoring" -msgstr "スキャンおよび一般的な監視" - -#: ../../enterprise/include/class/Google.cloud.php:903 -msgid "CPU performance summary" -msgstr "CPU パフォーマンス概要" - -#: ../../enterprise/include/class/CommandCenter.class.php:146 -msgid "Command center" -msgstr "コマンドセンター" - -#: ../../enterprise/include/class/CommandCenter.class.php:160 -msgid "Could not be start merge process, no nodes in the metaconsole " -msgstr "マージ処理を開始できませんでした。メタコンソールにノードがありません " - -#: ../../enterprise/include/class/CommandCenter.class.php:169 -#: ../../enterprise/include/functions_groups.php:49 -msgid "Metaconsole" -msgstr "メタコンソール" - -#: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:903 -msgid "" -"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in php." -"ini." -msgstr "" -"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に設定して" -"ください。" - -#: ../../enterprise/include/class/CommandCenter.class.php:312 -msgid "Nodes priority order" -msgstr "ノード優先順位" - -#: ../../enterprise/include/class/CommandCenter.class.php:317 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:830 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 -msgid "DB" -msgstr "DB" - -#: ../../enterprise/include/class/CommandCenter.class.php:318 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 -msgid "API" -msgstr "API" - -#: ../../enterprise/include/class/CommandCenter.class.php:366 -msgid "Unify databases" -msgstr "データベース統合" - -#: ../../enterprise/include/class/CommandCenter.class.php:383 -msgid "merge process" -msgstr "マージ処理" - -#: ../../enterprise/include/class/CommandCenter.class.php:391 -msgid "Process detail of node" -msgstr "ノードの処理詳細" - -#: ../../enterprise/include/class/CommandCenter.class.php:392 -msgid "Errors of node" -msgstr "ノードのエラー" - -#: ../../enterprise/include/class/CommandCenter.class.php:421 -msgid "Unexpected end of process" -msgstr "処理の予期しない終了" - -#: ../../enterprise/include/class/CommandCenter.class.php:422 -msgid "Please retry" -msgstr "再試行してください" - -#: ../../enterprise/include/class/CommandCenter.class.php:443 -msgid "Critical issues while merging" -msgstr "マージ中にクリティカルな問題が発生" - -#: ../../enterprise/include/class/CommandCenter.class.php:444 -msgid "Please restore your backups" -msgstr "バックアップをリストアしてください" - -#: ../../enterprise/include/class/CommandCenter.class.php:455 -#: ../../enterprise/include/class/CommandCenter.class.php:1119 -msgid "Error message" -msgstr "エラーメッセージ" - -#: ../../enterprise/include/class/CommandCenter.class.php:457 -msgid "Process details" -msgstr "処理詳細" - -#: ../../enterprise/include/class/CommandCenter.class.php:458 -msgid "" -"System is not unified yet, something is wrong, please troubleshoot the errors and " -"retry the merge process. Your data have not been modified." -msgstr "" -"システムはまだ統合されていません。何らかの問題があります。エラーのトラブルシューティン" -"グを行い、マージ処理を再試行してください。 データは変更されていません。" - -#: ../../enterprise/include/class/CommandCenter.class.php:459 -msgid "Errors while merging" -msgstr "マージ中にエラー" - -#: ../../enterprise/include/class/CommandCenter.class.php:460 -msgid "The process has been completed correctly" -msgstr "処理が正しく完了しました" - -#: ../../enterprise/include/class/CommandCenter.class.php:462 -msgid "System is merging your environment, please wait" -msgstr "システムは環境をマージしています。お待ちください。" - -#: ../../enterprise/include/class/CommandCenter.class.php:464 -#: ../../enterprise/include/class/CommandCenter.class.php:884 -msgid "Initialice merge" -msgstr "マージの初期化" - -#: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/include/class/CommandCenter.class.php:890 -msgid "Apply merge" -msgstr "マージを適用" - -#: ../../enterprise/include/class/CommandCenter.class.php:466 -msgid "Finished merge" -msgstr "完了したマージ" - -#: ../../enterprise/include/class/CommandCenter.class.php:467 -#: ../../enterprise/include/class/CommandCenter.class.php:896 -msgid "Restore merge" -msgstr "マージのリストア" - -#: ../../enterprise/include/class/CommandCenter.class.php:469 -msgid "Succesfully" -msgstr "正常終了" - -#: ../../enterprise/include/class/CommandCenter.class.php:470 -msgid "Pending operations" -msgstr "保留中操作" - -#: ../../enterprise/include/class/CommandCenter.class.php:472 -msgid "Error. Synchronization aborted. Backup restored" -msgstr "エラー。同期が中止され、バックアップが復元されました" - -#: ../../enterprise/include/class/CommandCenter.class.php:542 -#: ../../enterprise/include/class/CommandCenter.class.php:548 -msgid "Update priority nodes" -msgstr "優先ノードを更新" - -#: ../../enterprise/include/class/CommandCenter.class.php:543 -msgid "Successfully updated priority order nodes" -msgstr "優先ノードの更新を完了しました" - -#: ../../enterprise/include/class/CommandCenter.class.php:549 -msgid "Could not be updated priority order nodes" -msgstr "優先ノードの更新ができませんでした" - -#: ../../enterprise/include/class/CommandCenter.class.php:565 -msgid "" -"By unifying databases all information across your infrastructure will be merged to " -"gain integrity" -msgstr "" -"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマージされ、" -"整合性が得られます" - -#: ../../enterprise/include/class/CommandCenter.class.php:578 -#: ../../enterprise/include/class/CommandCenter.class.php:588 -msgid "Blocked" -msgstr "ブロックされています" - -#: ../../enterprise/include/class/CommandCenter.class.php:579 -msgid "This process already running" -msgstr "この処理は既に動作中です" - -#: ../../enterprise/include/class/CommandCenter.class.php:589 -msgid "You cannot start a new merge because system is merging events data." -msgstr "システムがイベントデータをマージ中のため、新しいマージを開始できません。" - -#: ../../enterprise/include/class/CommandCenter.class.php:597 -msgid "Press OK button to start the process" -msgstr "処理を開始するには OK ボタンを押します" - -#: ../../enterprise/include/class/CommandCenter.class.php:599 -msgid "" -"There are backups from a previous merging process, are you sure you want to overwrite " -"those backups? Press OK button to ignore this message and start the process." -msgstr "" -"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書きしてもよ" -"ろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタンを押してくださ" -"い。" - -#: ../../enterprise/include/class/CommandCenter.class.php:647 -msgid "System is merging events..." -msgstr "システムはイベントをマージしています..." - -#: ../../enterprise/include/class/CommandCenter.class.php:654 -msgid "Already working..." -msgstr "すでに動作中です..." - -#: ../../enterprise/include/class/CommandCenter.class.php:760 -#: ../../enterprise/include/class/CommandCenter.class.php:761 -msgid "Initilize" -msgstr "初期化" - -#: ../../enterprise/include/class/CommandCenter.class.php:866 -#: ../../enterprise/include/class/CommandCenter.class.php:1054 -msgid "Waiting" -msgstr "待機中" - -#: ../../enterprise/include/class/CommandCenter.class.php:873 -msgid "Process detail" -msgstr "処理詳細" - -#: ../../enterprise/include/class/CommandCenter.class.php:878 -msgid "Display errors" -msgstr "エラー表示" - -#: ../../enterprise/include/class/CommandCenter.class.php:909 -msgid "There are no nodes to do the merge process." -msgstr "マージ処理を行うノードがありません。" - -#: ../../enterprise/include/class/CommandCenter.class.php:1017 -msgid "merge events" -msgstr "マージイベント" - -#: ../../enterprise/include/class/CommandCenter.class.php:1060 -msgid "Retry process" -msgstr "処理の再試行" - -#: ../../enterprise/include/class/CommandCenter.class.php:1065 -msgid "Display events errors" -msgstr "イベントエラー表示" - -#: ../../enterprise/include/class/CommandCenter.class.php:1078 -msgid "Events History" -msgstr "ヒストリイベント" - -#: ../../enterprise/include/class/CommandCenter.class.php:1140 -msgid "merge process events" -msgstr "マージ処理イベント" - -#: ../../enterprise/include/functions_tasklist.php:58 -msgid "Discovery relies on a proper setup of cron, the time-based scheduling service" -msgstr "" -"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存していま" -"す" - -#: ../../enterprise/include/functions_tasklist.php:77 -msgid "Please check process is no locked." -msgstr "プロセスがロックされていないことを確認してください。" - -#: ../../enterprise/include/functions_tasklist.php:143 -#: ../../enterprise/include/functions_tasklist.php:688 -msgid "There are no console task defined yet." -msgstr "定義済のコンソールタスクがありません。" - -#: ../../enterprise/include/functions_tasklist.php:569 -msgid "Task disabled" -msgstr "無効化タスク" - -#: ../../enterprise/include/functions_tasklist.php:693 -msgid "Console Tasks" -msgstr "コンソールタスク" - -#: ../../enterprise/include/reset_pass.php:98 -#: ../../enterprise/meta/include/reset_pass.php:93 -msgid "User to reset password" -msgstr "パスワードリセットするユーザ" - -#: ../../enterprise/include/reset_pass.php:123 -#: ../../enterprise/include/process_reset_pass.php:136 -#: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/meta/include/process_reset_pass.php:132 -msgid "Back to login" -msgstr "ログインに戻る" - -#: ../../enterprise/include/reset_pass.php:174 -#: ../../enterprise/include/reset_pass.php:177 -#: ../../enterprise/meta/include/reset_pass.php:165 -#: ../../enterprise/meta/include/reset_pass.php:168 -msgid "Reset password failed" -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:548 -msgid "There was a problem creating RCMD" -msgstr "RCMD 作成で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:693 -#: ../../enterprise/include/lib/RCMDFile.class.php:717 -msgid "There was a problem deleting RCMD" -msgstr "RCMD 削除で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:865 -msgid "No agent configuration file" -msgstr "エージェント設定ファイルがありません" - -#: ../../enterprise/include/lib/RCMDFile.class.php:873 -msgid "you don't have write permissions in the configuration file" -msgstr "設定ファイルに書き込む権限がありません" - -#: ../../enterprise/include/lib/RCMDFile.class.php:914 -msgid "This agent is already a target" -msgstr "このエージェントはすでに対象です" - -#: ../../enterprise/include/lib/RCMDFile.class.php:945 -#, php-format -msgid "You do not have grants to access in this agent %s" -msgstr "このエージェント %s へアクセスする権限がありません" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1011 -msgid "There was a problem creating RCMD files" -msgstr "RCMD ファイルの作成で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1058 -msgid "There was a problem creating target" -msgstr "対象作成で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1092 -msgid "There was a problem adding items in the configuration file" -msgstr "設定ファイルへのアイテム追加で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1118 -#: ../../enterprise/include/lib/RCMDFile.class.php:1285 -msgid "No agent has been selected" -msgstr "エージェントが選択されていません" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1151 -msgid "Target doesn't exist" -msgstr "対象が存在しません" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1223 -msgid "There was a problem deleting tokens in the configuration file" -msgstr "設定ファイル内のトークン削除で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1259 -msgid "There was a problem deleting target from DB" -msgstr "DB からの対象削除で問題が発生しました" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1417 -msgid "Yaml is empty" -msgstr "Yaml が空です" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1426 -msgid "Doesn't have a valid YAML format" -msgstr "正しい YAML フォーマットではありません" - -#: ../../enterprise/include/lib/RCMDFile.class.php:1444 -#, php-format -msgid "%s field is not allowed" -msgstr "%s フィールドは許可されていません" - -#: ../../enterprise/include/lib/Service.php:152 -msgid "Service module does not match pointed one" -msgstr "サービスモジュールが指定のものと一致しません" - -#: ../../enterprise/include/lib/Service.php:158 -#, php-format -msgid "Service module not found %s
    " -msgstr "サービスモジュールが見つかりません %s
    " - -#: ../../enterprise/include/lib/Service.php:177 -msgid "Service module SLA not found" -msgstr "サービスモジュール SLA が見つかりません" - -#: ../../enterprise/include/lib/Service.php:183 -#, php-format -msgid "SLA service module not found %s
    " -msgstr "SLA サービスモジュールが見つかりません %s
    " - -#: ../../enterprise/include/lib/Service.php:202 -msgid "Service module SLA does not match pointed one" -msgstr "サービスモジュール SLA が指定のものと一致しません" - -#: ../../enterprise/include/lib/Service.php:208 -#, php-format -msgid "SLA service value module not found %s
    " -msgstr "SLA サービス値モジュールが見つかりません %s
    " - -#: ../../enterprise/include/lib/Service.php:221 -#, php-format -msgid "Service agent not found %s
    " -msgstr "サービスエージェントが見つかりません %s
    " - -#: ../../enterprise/include/lib/Service.php:232 -#, php-format -msgid "Service children could not be fully retrieved: %s
    " -msgstr "サービスの子を完全に取得できませんでした: %s
    " - -#: ../../enterprise/include/lib/Service.php:313 -msgid "" -" Cannot switch from SMART to MANUAL if there are dynamic elements attached to the " -"service. Please erase dynamic elements before change to MANUAL" -msgstr "" -" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 手動に変" -"更する前に、動的要素を消去してください" - -#: ../../enterprise/include/lib/Service.php:771 -#, php-format -msgid "Failed to update CPS for moduleValue for service %s: " -msgstr "サービス %s のモジュール値の CPS の更新に失敗しました: " - -#: ../../enterprise/include/lib/Service.php:1384 -msgid "Error: id agent must be defined." -msgstr "エラー: エージェント ID が定義されている必要があります。" - -#: ../../enterprise/include/lib/Service.php:1460 -msgid " error: Target agent does not exist." -msgstr " エラー: 対象のエージェントがありません。" - -#: ../../enterprise/include/lib/Policy.php:281 -#, php-format -msgid "Invalid operation %s" -msgstr "不正な操作 %s" - -#: ../../enterprise/include/lib/Policy.php:1168 -#, php-format -msgid "Policy already defined: \"%s\"" -msgstr "ポリシーはすでに定義済です: \"%s\"" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 -msgid "Cluster already defined, please use another name." -msgstr "クラスタは定義済です。他の名前を利用してください。" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779 -msgid "Cluster name" -msgstr "クラスタ名" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 -msgid "" -"An agent with the same name of the cluster will be created, as well a special service " -"with the same name" -msgstr "クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794 -msgid "Cluster type" -msgstr "クラスタタイプ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 -msgid "" -"AA is a cluster where all members are working. In AP cluster only master member is " -"working" -msgstr "" -"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-スタン" -"バイクラスタでは、マスターのみが稼働しています" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 -msgid "Active - Active" -msgstr "アクティブ - アクティブ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 -msgid "Active - Pasive" -msgstr "アクティブ - スタンバイ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 -msgid "Target cluster agent will be stored under this group" -msgstr "対象のクラスタエージェントはこのグループに保存されます" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 -msgid "You must select a Prediction Server to perform all cluster status calculations" -msgstr "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016 -msgid "critical if" -msgstr "次の場合に障害" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048 -#, php-format -msgid "% of balanced modules are down (equal or greater)." -msgstr "" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063 -msgid "Please, set threholds for all active-active modules" -msgstr "全アクティブ - アクティブモジュールのしきい値を設定してください" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167 -msgid "Please, check all active-passive modules critical for this cluster" -msgstr "このクラスタに重要な全アクティブ-スタンバイモジュールをチェックしてください" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169 -msgid "" -"If a critical balanced module is going to critical status, then cluster will be " -"critical." -msgstr "クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 -msgid "Cluster not found: " -msgstr "クラスタが見つかりません: " - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 -msgid "Cluster agent not found: " -msgstr "クラスタエージェントが見つかりません: " - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 -#, php-format -msgid "Error while deleting, reason: %s" -msgstr "削除中にエラーです。理由: %s" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 -msgid "Cluster successfully deleted." -msgstr "クラスタを削除しました" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 -#, php-format -msgid "Error while forcing, reason: %s" -msgstr "強制中にエラーです。理由: %s" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 -msgid "Cluster successfully forced." -msgstr "クラスタを強制しました。" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568 -msgid "Not set" -msgstr "未設定" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 -msgid "Active-Active" -msgstr "アクティブ-アクティブ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 -msgid "Active-Passive" -msgstr "アクティブ-スタンバイ" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171 -msgid "Activating node" -msgstr "ノードをアクティベート中" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:673 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:800 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1071 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1165 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1517 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1814 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2183 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3107 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3388 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3542 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3617 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3922 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4147 -msgid "Connect node" -msgstr "ノード接続" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:580 -msgid "Create table tmerge_error" -msgstr "テーブル tmerge_error を作成" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:606 -msgid "Create table tmerge_steps" -msgstr "テーブル tmerge_steps 作成" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:631 -msgid "Create table tmerge_queries" -msgstr "テーブル tmerge_queries 作成" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:772 -#, php-format -msgid "%s console" -msgstr "%s コンソール" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:777 -msgid "Check cron task" -msgstr "cron タスクチェック" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:778 -msgid "Please login into this node before using this feature" -msgstr "この機能を使う前にこのノードへログインしてください" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:860 -msgid "memory_limit current value" -msgstr "memory_limit 現在値" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 -msgid "Check current packages, all nodes and metaconsole, are not in the same version" -msgstr "" -"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンではありま" -"せん。" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879 -msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" -msgstr "" -"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではありません。" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891 -msgid "Max size collection, all nodes and metaconsole, are not equal" -msgstr "全ノードとメタコンソールで最大コレクションサイズが同じではありません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:916 -#, php-format -msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" -msgstr "" -"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:931 -#, php-format -msgid "" -"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" -msgstr "" -"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより小さくす" -"ることはできません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:993 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1009 -msgid "Problems with the backup directory" -msgstr "バックアップディレクトリに問題があります" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 -msgid "Cannot create \"merge_backups\" folder in attachment directory" -msgstr "添付ファイルディレクトリに \"merge_backups\" フォルダを作成できません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010 -msgid "The \"merge_backpus\" directory does not have the correct permissions" -msgstr "\"merge_backpus\" ディレクトリが正しいパーミッションではありません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1020 -msgid "Extension ZIP" -msgstr "拡張 ZIP" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1021 -msgid "The ZIP extension is not loaded, please install this dependency" -msgstr "ZIP 拡張機能がロードされていません。この依存ファイルをインストールしてください" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1122 -msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" -msgstr "バックアップの挿入、外部キーの無効化、tmerge_queries で例外発生" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1148 -msgid "Resets foreing keys and exceptions and ends the merge preparation process" -msgstr "外部キーと例外をリセットし、マージ準備処理を終了します" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1195 -msgid "Enable exceptions in tmerge_queries" -msgstr "tmerge_queries で例外を有効化" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1219 -msgid "Enable foreing keys in tmerge_queries" -msgstr "tmerge_queries で外部キーを有効化" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1498 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1783 -msgid "Preparation of all nodes for the table merge process" -msgstr "テーブルマージ処理のためのすべてのノードの準備" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1574 -msgid "This table does not have the id" -msgstr "このテーブルには id がありません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -msgid "Prepare merge request" -msgstr "マージリクエストの準備" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1901 -msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" -msgstr "tmerge_queries の切り捨て、自動インクリメント、挿入" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2071 -msgid "Inserts updates in tmerge_queries" -msgstr "tmerge_queries へのインサート更新" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2108 -msgid "Merging collections files" -msgstr "コレクションファイルのマージ中" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2164 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2310 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2481 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3094 -#, php-format -msgid "Api call: %s" -msgstr "API 呼出: %s" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2222 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223 -msgid "Problems while backing up collections from: " -msgstr "次のコレクションのバックアップで問題が発生しました: " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2240 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2244 -#, php-format -msgid "Problems downloading collections from %s" -msgstr "%s からのコレクションのダウンロードで問題が発生しました" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2256 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2260 -#, php-format -msgid "Problems unzipping collection file from %s" -msgstr "%s からのコレクションファイルの unzip で問題が発生しました" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2539 -msgid "Start phase merge" -msgstr "フェーズマージを開始" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2551 -msgid "Create backups" -msgstr "バックアップの作成" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2619 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2620 -msgid "Problems creating the backup conf agents" -msgstr "エージェント設定バックアップの作成で問題が発生しました" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2868 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3238 -msgid "Class agent" -msgstr "クラスエージェント" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2666 -msgid "Disable_foreing" -msgstr "強制を無効" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2678 -msgid "Truncate table" -msgstr "テーブルの切り捨て" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2696 -msgid "Autoincrement" -msgstr "自動インクリメント" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2708 -msgid "Inserts" -msgstr "挿入" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2726 -msgid "Disabling constraints" -msgstr "制約の無効化" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2744 -msgid "Updates" -msgstr "アップデート" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2767 -msgid "Restoring constraints" -msgstr "制約の復元" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2785 -msgid "Enable exceptions" -msgstr "例外の有効化" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2803 -msgid "Enable foreings keys" -msgstr "外部キーの有効化" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2820 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2821 -msgid "Update conf agent policies" -msgstr "エージェント設定ポリシーの更新" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2857 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2858 -msgid "Error updating agent conf" -msgstr "エージェント設定更新エラー" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2879 -msgid "Synchronizing collections" -msgstr "コレクションの同期中" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2891 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2892 -msgid "Error synchronizing collections" -msgstr "コレクションの同期エラー" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1765 -msgid "Final step" -msgstr "最終ステップ" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2930 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1766 -msgid "Database merged" -msgstr "データベースをマージしました" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2988 -msgid "Problems unzipping collections at: " -msgstr "次のコレクションの unzip で問題が発生しました: " - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2989 -#, php-format -msgid "File is not a valid zip file \"%s\"" -msgstr "ファイルが正しい zip ファイルではありません \"%s\"" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3147 -msgid "Restoring database backup" -msgstr "データベースバックアップのリストア中" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 -msgid "Problems creating the backup" -msgstr "バックアップ作成で問題が発生しました" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -msgid "Restore backups conf agents" -msgstr "エージェント設定バックアップのリストア" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3223 -msgid "Problems restoring the backup conf agents" -msgstr "エージェント設定バックアップのリストアで問題が発生しました" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3225 -#, php-format -msgid "Agent \"%s\" with md5 file \"%s\"" -msgstr "エージェント \"%s\" と md5 ファイル \"%s\"" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3251 -msgid "Restore collections" -msgstr "コレクションのリストア" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3266 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3267 -msgid "Error Synch collections" -msgstr "コレクション同期エラー" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3484 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3724 -msgid "Insert info steps" -msgstr "情報挿入ステップ" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3649 -msgid "Node not ready" -msgstr "ノードが準備できていません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3650 -msgid "Pending to be unified" -msgstr "統合待ち" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3889 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3894 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3946 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3951 -msgid "Initialize" -msgstr "初期化" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4093 -msgid "Backup" -msgstr "バックアップ" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4124 -msgid "Applying" -msgstr "適用中" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4350 -msgid "Error updating events" -msgstr "イベント更新エラー" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:145 -msgid "auth error." -msgstr "認証エラー" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:149 -msgid "connection error." -msgstr "接続エラー" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:153 -msgid "could not resolve the host." -msgstr "ホストの名前解決ができませんでした。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:157 -#: ../../enterprise/include/lib/Metaconsole/Node.php:206 -#: ../../enterprise/include/lib/Metaconsole/Node.php:253 -#: ../../enterprise/include/lib/Metaconsole/Node.php:509 -msgid "unknown error." -msgstr "不明なエラー" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:194 -msgid "missing credentials." -msgstr "認証情報がありません。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:198 -msgid "cannot connect to host." -msgstr "ホストに接続できません。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:202 -msgid "database does not exist." -msgstr "データベースが存在しません。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:245 -msgid "failed to connect to node database." -msgstr "ノードデータベースへの接続に失敗しました。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:249 -msgid "MR version mistmatch." -msgstr "MR バージョン不一致" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:288 -#, php-format -msgid "last event replication: %s" -msgstr "最新のイベントレプリケーション: %s" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:294 -msgid "server connection failed" -msgstr "サーバ接続に失敗しました" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:298 -#: ../../enterprise/include/lib/Metaconsole/Node.php:344 -#: ../../enterprise/include/lib/Metaconsole/Node.php:405 -msgid "unknown error" -msgstr "不明なエラー" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:310 -msgid "Last event replication" -msgstr "最新のイベント複製" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:340 -msgid "agent cache failed" -msgstr "エージェントキャッシュに失敗しました" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:393 -msgid "node is not recognized as metaconsole node." -msgstr "ノードはメタコンソールノードとして認識できません。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:397 -msgid "node license missmatch." -msgstr "ノードライセンス不整合" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:401 -msgid "cannot connect to node" -msgstr "ノードへ接続できません" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:433 -msgid "Database is up to date with this Metaconsole" -msgstr "このメタコンソールでデータベースは最新です" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:443 -msgid "Node not found" -msgstr "ノードが見つかりません" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:448 -#, php-format -msgid "There are %d queries pending to be applied, click in the eye to see results" -msgstr "" -"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認してくだ" -"さい" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:457 -msgid "Database synchronization state and pending tasks" -msgstr "データベース同期状態と保留中タスク" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:592 -msgid "Operation and table" -msgstr "操作とテーブル" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:707 -#, php-format -msgid "" -"Failed synchronizing %s, please check node PHP configuration issues and collection " -"max sizes" -msgstr "" -"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確認してく" -"ださい" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1232 -msgid "" -"The elimination of this node will lead to the suppression of its agents from " -"metaconsole and all the configuration assigned to them. " -msgstr "" -"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てられている" -"すべての設定が抑制されます。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1236 -msgid "The rules for this node may stop working. " -msgstr "このノードのルールが機能しなくなる可能性があります。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1240 -msgid "The deleted node will lose its license, and you must license it manually again. " -msgstr "" -"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があります。" - -#: ../../enterprise/include/lib/Metaconsole/Node.php:1747 -#, php-format -msgid "Failed to overwrite node data: %s" -msgstr "ノードデータの上書きに失敗しました: %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:798 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:812 -msgid "There was a problem creating Action" -msgstr "アクション作成で問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:849 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:862 -msgid "There was a problem updating Action" -msgstr "アクションの更新で問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:898 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:912 -msgid "There was a problem deleting Action" -msgstr "アクション削除で問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 -msgid "There was a problem standby alert" -msgstr "スタンバイアラートで問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:962 -msgid "There was a problem standby off alert" -msgstr "アラートのスタンバイ解除で問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005 -msgid "There was a problem enabled alert" -msgstr "アラート有効化で問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1015 -msgid "There was a problem disabled alert" -msgstr "アラート無効化で問題が発生しました" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1071 -msgid "Event group Recursive" -msgstr "イベントグループ再帰" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1089 -msgid "Time window" -msgstr "時刻ウィンドウ" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1623 -msgid "Failed to cleanup old rules." -msgstr "古いルールのクリーンアップに失敗しました。" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1631 -#, php-format -msgid "Failed SQL: %s" -msgstr "失敗した SQL: %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1636 -#, php-format -msgid "Failed to apply rule: %s." -msgstr "ルール適用に失敗しました: %s" - -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1784 -msgid "any" -msgstr "すべて" - -#: ../../enterprise/include/lib/NetworkManager/Template.php:192 -msgid "Error linking script: " -msgstr "スクリプトリンクエラー: " - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197 -msgid "No template assigned" -msgstr "テンプレートが割り当てられていません" - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227 -msgid "NCM Agent without template assigned." -msgstr "テンプレートが割り当てられていない NCM エージェント" - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233 -msgid "Current selected template does not match vendor configured." -msgstr "現在選択されているテンプレートが、設定されているベンダーと一致しません。" - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240 -msgid "Current selected template does not match model configured." -msgstr "現在選択されているテンプレートが、設定されているモデルと一致しません。" - -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549 -#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579 -#, php-format -msgid "No %s script available for this agent, check template %s" -msgstr "" -"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認してくだ" -"さい" - -#: ../../enterprise/include/lib/Policy/Inventory.php:156 -#, php-format -msgid "inventory module already registered: \"%d\"" -msgstr "インベントリモジュールはすでに登録済です: \"%d\"" - -#: ../../enterprise/include/lib/Policy/Inventory.php:181 -#, php-format -msgid "Failed to update, already exists: \"%d\"" -msgstr "更新に失敗しました。すでに存在します: \"%d\"" - -#: ../../enterprise/include/lib/Policy/Queue.php:378 -#, php-format -msgid "Already queued in %s" -msgstr "%s にすでにキューイングされています" - -#: ../../enterprise/include/lib/Policy/Module.php:227 -#, php-format -msgid "Failed to update: \"%s\"" -msgstr "更新に失敗しました: \"%s\"" - -#: ../../enterprise/include/lib/ServiceElement.php:611 -#, php-format -msgid "This filters will cause slowdown on server (%s ms)" -msgstr "このフィルタはサーバの速度を低下させます (%s ms)" - -#: ../../enterprise/include/lib/ServiceElement.php:625 -#, php-format -msgid "Regular expression is not valid: %s." -msgstr "正規表現が正しくありません: %s" - -#: ../../enterprise/include/lib/ServiceElement.php:864 -#, php-format -msgid " error while decoding rules: %s" -msgstr " ルールデコードエラー: %s" - -#: ../../enterprise/include/lib/ServiceElement.php:1271 -#, php-format -msgid " error: Failed to delete element: %s" -msgstr " エラー: 要素の削除に失敗しました: %s" - -#: ../../enterprise/include/lib/Core/SSH.php:163 -msgid "php-ssh2 not available" -msgstr "php-ssh2 がありません" - -#: ../../enterprise/include/lib/Core/SSH.php:184 -msgid "Failed to connect" -msgstr "接続に失敗しました" - -#: ../../enterprise/include/lib/Core/SSH.php:239 -#, php-format -msgid "Unable to open public key file %s" -msgstr "公開鍵ファイルを開けません %s" - -#: ../../enterprise/include/lib/Core/SSH.php:257 -msgid "Failed to login to target" -msgstr "対象へのログインに失敗しました" - -#: ../../enterprise/include/lib/Agent.php:99 -msgid " error, invalid agent." -msgstr " エラー、不正なエージェント。" - -#: ../../enterprise/include/lib/Agent.php:663 -#, php-format -msgid "Log module \"%s\" does not exist" -msgstr "ログモジュール \"%s\" が存在しません" - -#: ../../enterprise/include/lib/Agent.php:685 -#, php-format -msgid "Plugin \"%s\" does not exist" -msgstr "プラグイン \"%s\" が存在しません" - -#: ../../enterprise/include/lib/Agent.php:817 -#, php-format -msgid "Log module \"%s\" does not exist, %s skipped" -msgstr "ログモジュール \"%s\" が存在しません。%s はスキップされました。" - -#: ../../enterprise/include/lib/Agent.php:852 -#, php-format -msgid "Plugin \"%s\" does not exist, %s skipped" -msgstr "プラグイン \"%s\" は存在しません。%s はスキップされました。" - -#: ../../enterprise/include/lib/Agent.php:923 -#, php-format -msgid "Log module %s already defined" -msgstr "ログモジュール %s はすでに定義済です" - -#: ../../enterprise/include/lib/Agent.php:940 -#, php-format -msgid "Invalid module type %s" -msgstr "不正なモジュールタイプ %s" - -#: ../../enterprise/include/lib/Agent.php:970 -#, php-format -msgid "Plugin %s already defined" -msgstr "プラグイン %s はすでに定義済です" - -#: ../../enterprise/include/lib/Agent.php:984 -msgid "Invalid plugin definition" -msgstr "不正なプラグイン定義" - -#: ../../enterprise/include/lib/NetworkManager.php:83 -msgid "Retrieve config" -msgstr "設定取得" - -#: ../../enterprise/include/lib/NetworkManager.php:84 -msgid "Restore backed up config" -msgstr "設定バックアップのリストア" - -#: ../../enterprise/include/lib/NetworkManager.php:86 -msgid "Send firmware" -msgstr "ファームウエア送信" - -#: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 -msgid "On demand" -msgstr "オンデマンド" - -#: ../../enterprise/include/lib/NetworkManager.php:93 -msgid "Executing test" -msgstr "テストの実行中" - -#: ../../enterprise/include/lib/NetworkManager.php:94 -msgid "Retrieving config" -msgstr "設定の取得中" - -#: ../../enterprise/include/lib/NetworkManager.php:95 -msgid "Restoring backup" -msgstr "バックアップのリストア中" - -#: ../../enterprise/include/lib/NetworkManager.php:96 -msgid "Retrieving firmware version" -msgstr "ファームウェアバージョンの取得中" - -#: ../../enterprise/include/lib/NetworkManager.php:97 -msgid "Sending firmware update" -msgstr "ファームウェアアップデートの送信中" - -#: ../../enterprise/include/lib/NetworkManager.php:98 -msgid "Executing custom script" -msgstr "カスタムスクリプト実行中" - -#: ../../enterprise/include/lib/NetworkManager.php:99 -msgid "Executing on demand script" -msgstr "オンデマンドスクリプトの実行中" - -#: ../../enterprise/include/lib/NetworkManager.php:186 -msgid "Montly" -msgstr "月次" - -#: ../../enterprise/include/functions_services.php:108 -msgid "There is no information about" -msgstr "次に関する情報がありません: " - -#: ../../enterprise/include/functions_services.php:113 -msgid "Service does not exist." -msgstr "サービスがありません。" - -#: ../../enterprise/include/functions_services.php:125 -msgid "module that stores the service" -msgstr "サービスを保存するモジュール" - -#: ../../enterprise/include/functions_services.php:137 -msgid "module that stores SLA service" -msgstr "SLA サービスを保存するモジュール" - -#: ../../enterprise/include/functions_services.php:150 -msgid "agent that stores the service" -msgstr "サービスを保存するエージェント" - -#: ../../enterprise/include/functions_services.php:163 -msgid "agent that stores SLA service" -msgstr "SLA サービスを保存するエージェント" - -#: ../../enterprise/include/functions_services.php:184 -msgid "alert critical SLA service" -msgstr "SLA サービス障害アラート" - -#: ../../enterprise/include/functions_services.php:205 -msgid "alert warning service" -msgstr "サービス警告アラート" - -#: ../../enterprise/include/functions_services.php:226 -msgid "alert critical service" -msgstr "サービス障害アラート" - -#: ../../enterprise/include/functions_services.php:247 -msgid "alert unknown service" -msgstr "サービス不明アラート" - -#: ../../enterprise/include/functions_services.php:528 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "サービス %s のモジュール自動生成" - -#: ../../enterprise/include/functions_services.php:728 -#: ../../enterprise/godmode/services/services.service.php:279 -msgid "Error updating service: " -msgstr "サービス更新エラー: " - -#: ../../enterprise/include/functions_services.php:1368 -#: ../../enterprise/include/functions_services.php:1370 -#: ../../enterprise/include/functions_services.php:1404 -#: ../../enterprise/include/functions_services.php:1405 -#: ../../enterprise/include/functions_services.php:1407 -#: ../../enterprise/include/functions_services.php:1458 -#: ../../enterprise/include/functions_services.php:1460 -#: ../../enterprise/include/functions_reporting.php:5797 -msgid "Nonexistent" -msgstr "なし" - -#: ../../enterprise/include/functions_services.php:1432 -msgid "Normal (Alert)" -msgstr "正常 (アラート)" - -#: ../../enterprise/include/functions_services.php:1436 -msgid "Critical (Alert)" -msgstr "障害 (アラート)" - -#: ../../enterprise/include/functions_services.php:1444 -msgid "Warning (Alert)" -msgstr "警告 (アラート)" - -#: ../../enterprise/include/functions_services.php:1582 -msgid "There are no service elements defined" -msgstr "サービス要素が定義されていません" - -#: ../../enterprise/include/functions_services.php:1606 -msgid "Weight Critical" -msgstr "障害ウエイト" - -#: ../../enterprise/include/functions_services.php:1607 -msgid "Weight Warning" -msgstr "警告ウエイト" - -#: ../../enterprise/include/functions_services.php:1608 -msgid "Weight Unknown" -msgstr "不明ウエイト" - -#: ../../enterprise/include/functions_services.php:1609 -msgid "Weight Ok" -msgstr "正常ウエイト" - -#: ../../enterprise/include/functions_services.php:1672 -#: ../../enterprise/include/functions_services.php:1717 -#: ../../enterprise/include/functions_services.php:1785 -msgid "Nonexistent. This element should be deleted" -msgstr "存在しません。要素が削除されています。" - -#: ../../enterprise/include/functions_services.php:1700 -#: ../../enterprise/include/functions_services.php:1767 -#: ../../enterprise/include/functions_services.php:1813 -msgid "This element does not affect service weigth because is disabled." -msgstr "この要素は無効化されているためサービスのウエイトに影響しません。" - -#: ../../enterprise/include/functions_services.php:1828 -#, php-format -msgid "Dynamic element (%d) '%s' does not match any target" -msgstr "動的要素 (%d) '%s' は対象にマッチしません" - -#: ../../enterprise/include/functions_services.php:1837 -#, php-format -msgid "Dynamic element (%d) '%s' causes an error: %s" -msgstr "動的要素 (%d) '%s' でエラー発生: %s" - -#: ../../enterprise/include/functions_services.php:1849 -msgid "Dynamic element" -msgstr "動的要素" - -#: ../../enterprise/include/functions_services.php:1855 -#, php-format -msgid "agents like \"%s\"" -msgstr "次のエージェント: \"%s\"" - -#: ../../enterprise/include/functions_services.php:1860 -#, php-format -msgid "modules like \"%s\"" -msgstr "次のモジュール: \"%s\"" - -#: ../../enterprise/include/functions_services.php:1989 -msgid "NOT INITIALIZED" -msgstr "未初期化" - -#: ../../enterprise/include/functions_services.php:2015 -#: ../../enterprise/godmode/services/services.elements.php:806 -msgid "Edit service elements" -msgstr "サービス要素編集" - -#: ../../enterprise/include/functions_services.php:2023 -msgid "Delete service element" -msgstr "サービス要素削除" - -#: ../../enterprise/include/functions_services.php:2082 -msgid "FAIL" -msgstr "失敗" - -#: ../../enterprise/include/auth/saml.php:119 -#, php-format -msgid "Pandora FMS SAML authentication error: %s" -msgstr "Pandora FMS SAML 認証エラー: %s" - -#: ../../enterprise/include/auth/saml.php:184 -msgid "Force log out" -msgstr "強制ログアウト" - -#: ../../enterprise/include/functions_events.php:219 -msgid "Id source events" -msgstr "ソースイベントID" - -#: ../../enterprise/include/functions_events.php:245 -#: ../../enterprise/include/functions_events.php:267 -msgid "More than 5 tags" -msgstr "5つ以上のタグ" - -#: ../../enterprise/include/functions_metaconsole.php:1408 -#: ../../enterprise/include/functions_metaconsole.php:1441 -#: ../../enterprise/include/functions_metaconsole.php:1474 -#: ../../enterprise/include/functions_metaconsole.php:1507 -#: ../../enterprise/include/functions_metaconsole.php:1540 -#: ../../enterprise/include/functions_metaconsole.php:1573 -#: ../../enterprise/include/functions_metaconsole.php:1604 -#: ../../enterprise/include/functions_metaconsole.php:1637 -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 -#: ../../enterprise/meta/include/functions_wizard_meta.php:685 -#: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/godmode/modules/configure_local_component.php:503 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 -#: ../../godmode/agentes/module_manager_editor_web.php:172 -msgid "Check" -msgstr "チェック" - -#: ../../enterprise/include/functions_metaconsole.php:2943 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -msgid "Target server ip address is set" -msgstr "対象サーバの IP アドレスが設定されています" - -#: ../../enterprise/include/functions_metaconsole.php:2950 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159 -msgid "There are differences between MR versions" -msgstr "MR バージョンに違いがあります" - -#: ../../enterprise/include/functions_metaconsole.php:2957 -msgid "Agent alerts action does not exist in target node" -msgstr "エージェントアラートアクションが対象ノードに存在しません" - -#: ../../enterprise/include/functions_metaconsole.php:2964 -msgid "Agent alerts template does not exist in target node" -msgstr "エージェントアラートテンプレートが対象ノードに存在しません" - -#: ../../enterprise/include/functions_metaconsole.php:2971 -msgid "Agent inventory does not exist in target node" -msgstr "エージェントインベントリが対象ノードに存在しません" - -#: ../../enterprise/include/functions_metaconsole.php:2978 -msgid "Exists agent conf please remove configuration file from target node." -msgstr "エージェント設定が存在します。対象ノードから設定ファイルを削除してください。" - -#: ../../enterprise/include/functions_metaconsole.php:2985 -msgid "Agent collections does not exist in target node" -msgstr "エージェントコレクションが対象ノードに存在しません" - -#: ../../enterprise/include/functions_metaconsole.php:2992 -msgid "Agent plugins does not exist in target node" -msgstr "エージェントプラグインが対象ノードに存在しません" - -#: ../../enterprise/include/functions_metaconsole.php:2999 -msgid "Agent policies definitions does not match with defined ones in target node" -msgstr "エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" - -#: ../../enterprise/include/functions_metaconsole.php:3006 -msgid "Agent group does not exist in target node" -msgstr "エージェントグループが対象ノードに存在しません" - -#: ../../enterprise/include/functions_metaconsole.php:3013 -msgid "Agent already exists in target node" -msgstr "エージェントが対象ノードにすでに存在します" - -#: ../../enterprise/include/functions_metaconsole.php:3037 -msgid "The agent: has not been added due to problems in the insertion" -msgstr "エージェント: 挿入に問題があるため、追加されていません" - -#: ../../enterprise/include/functions_metaconsole.php:3042 -msgid "The agent: has already been added to the migration queue" -msgstr "エージェント: すでに移行キューに追加されています" - -#: ../../enterprise/include/functions_metaconsole.php:3120 -msgid "Cannot " -msgstr "できません" - -#: ../../enterprise/include/functions_login.php:22 -msgid "You must change password:" -msgstr "パスワードを変更する必要があります:" - -#: ../../enterprise/include/functions_login.php:38 -msgid "Password must be different from the 3 previous changes." -msgstr "パスワードは、過去 3回と異なる必要があります。" - -#: ../../enterprise/include/functions_login.php:50 -msgid "Old pass: " -msgstr "旧パスワード: " - -#: ../../enterprise/include/functions_login.php:53 -msgid "New pass: " -msgstr "新パスワード: " - -#: ../../enterprise/include/functions_login.php:57 -msgid "Confirm: " -msgstr "確認: " - -#: ../../enterprise/include/functions_login.php:63 -msgid "Change" -msgstr "変更" - -#: ../../enterprise/include/functions_login.php:97 -msgid "Login blocked" -msgstr "ログインがブロックされました" - -#: ../../enterprise/include/functions_login.php:105 -msgid "User has been blocked. Try again in " -msgstr "ユーザがブロックされました。次の時間経過後に再度試してください: " - -#: ../../enterprise/include/functions_login.php:105 -msgid " minutes" -msgstr " 分" - -#: ../../enterprise/include/functions_login.php:138 -msgid "Login successfully" -msgstr "ログイン成功" - -#: ../../enterprise/include/functions_login.php:146 -msgid "User pass successfully updated" -msgstr "パスワードを更新しました" - -#: ../../enterprise/include/functions_login.php:252 -msgid "Password must be different from the " -msgstr "パスワードは、次と異なっている必要があります: " - -#: ../../enterprise/include/functions_login.php:252 -msgid " previous changes." -msgstr " 回前までの変更" - -#: ../../enterprise/include/functions_login.php:265 -msgid "Password must be different" -msgstr "パスワードは違うものでなければいけません" - -#: ../../enterprise/include/functions_login.php:276 -msgid "Password too short" -msgstr "パスワードが短すぎます" - -#: ../../enterprise/include/functions_login.php:288 -msgid "Password must contain numbers" -msgstr "パスワードには数字を含めなければいけません" - -#: ../../enterprise/include/functions_login.php:301 -msgid "Password must contain symbols" -msgstr "パスワードには記号を含めなければいけません" - -#: ../../enterprise/include/functions_login.php:324 -msgid "Invalid old password" -msgstr "旧パスワードが不正です" - -#: ../../enterprise/include/functions_login.php:361 -msgid "Password confirm does not match" -msgstr "パスワード確認が一致しません" - -#: ../../enterprise/include/functions_login.php:368 -msgid "Password empty" -msgstr "パスワードが空です" - -#: ../../enterprise/include/functions_snmp.php:65 -msgid "Trap status agent recovered" -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_enterprise.php:460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:613 -#: ../../enterprise/meta/include/functions_wizard_meta.php:670 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../godmode/massive/massive_edit_modules.php:1141 -#: ../../godmode/agentes/module_manager_editor_web.php:93 -msgid "Web checks" -msgstr "ウェブチェック" - -#: ../../enterprise/include/functions_enterprise.php:464 -msgid "Tree view by tags" -msgstr "タグごとのツリー表示" - -#: ../../enterprise/include/functions_enterprise.php:494 -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:496 -msgid "Problems with event days purge and event days that pass data to history DB." -msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" - -#: ../../enterprise/include/functions_enterprise.php:507 -msgid "" -"If days purge is less than history days pass to history db, you will have a problems " -"and you lost data. Recommended that days purge will more taller than days to history " -"DB" -msgstr "" -"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失します。" -"データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてください。" - -#: ../../enterprise/include/functions_enterprise.php:509 -msgid "Problems with days purge and days that pass data to history DB" -msgstr "データの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" - -#: ../../enterprise/include/functions_inventory.php:85 -#: ../../enterprise/include/functions_inventory.php:837 -msgid "No changes found" -msgstr "変更がありません" - -#: ../../enterprise/include/functions_inventory.php:184 -msgid "Get CSV file" -msgstr "CSV ファイルを取得" - -#: ../../enterprise/include/functions_local_components.php:174 -#: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:217 -msgid "Empty name" -msgstr "名前が空です" - -#: ../../enterprise/include/functions_local_components.php:179 -msgid "Empty configuration" -msgstr "設定が空です" - -#: ../../enterprise/include/functions_local_components.php:184 -msgid "Empty OS" -msgstr "OS が空です" - -#: ../../enterprise/include/functions_log.php:279 -#: ../../enterprise/include/functions_log.php:282 -msgid "Lines" -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_reporting.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 -msgid "Wizard SLA" -msgstr "SLAウィザード" - -#: ../../enterprise/include/functions_reporting.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -msgid "Global" -msgstr "全体" - -#: ../../enterprise/include/functions_reporting.php:93 -msgid "Advance options" -msgstr "拡張オプション" - -#: ../../enterprise/include/functions_reporting.php:117 -msgid "Templates list" -msgstr "テンプレート一覧" - -#: ../../enterprise/include/functions_reporting.php:152 -msgid "Templates Wizard" -msgstr "テンプレートウィザード" - -#: ../../enterprise/include/functions_reporting.php:1232 -msgid "Availability item created from wizard." -msgstr "ウィザードから作成された可用性アイテム" - -#: ../../enterprise/include/functions_reporting.php:1903 -#: ../../enterprise/include/functions_reporting.php:2959 -#: ../../enterprise/include/functions_reporting.php:3947 -msgid "Planned Downtimes" -msgstr "計画停止" - -#: ../../enterprise/include/functions_reporting.php:1910 -msgid "Ignore time" -msgstr "除外時間" - -#: ../../enterprise/include/functions_reporting.php:1930 -msgid "SLA Compliance per days" -msgstr "日ごとの SLA 準拠" - -#: ../../enterprise/include/functions_reporting.php:2021 -msgid "Summary of SLA Failures" -msgstr "条件を満たさない SLA の概要" - -#: ../../enterprise/include/functions_reporting.php:2041 -#: ../../enterprise/include/functions_reporting.php:2042 -msgid "Out of SLA limits" -msgstr "SLA 制限外" - -#: ../../enterprise/include/functions_reporting.php:2047 -#: ../../enterprise/include/functions_reporting.php:2048 -msgid "IN of SLA limits" -msgstr "SLA 制限内" - -#: ../../enterprise/include/functions_reporting.php:2969 -#: ../../enterprise/include/functions_reporting.php:3210 -#: ../../enterprise/include/functions_reporting.php:3957 -msgid "Planned Downtime" -msgstr "計画停止" - -#: ../../enterprise/include/functions_reporting.php:2999 -msgid "T. Total" -msgstr "合計時間" - -#: ../../enterprise/include/functions_reporting.php:3000 -#: ../../enterprise/include/functions_reporting.php:3984 -msgid "T. OK" -msgstr "正常時間" - -#: ../../enterprise/include/functions_reporting.php:3001 -#: ../../enterprise/include/functions_reporting.php:3985 -msgid "T. Error" -msgstr "障害時間" - -#: ../../enterprise/include/functions_reporting.php:3002 -#: ../../enterprise/include/functions_reporting.php:3986 -msgid "T. Unknown" -msgstr "不明時間" - -#: ../../enterprise/include/functions_reporting.php:3003 -#: ../../enterprise/include/functions_reporting.php:3987 -msgid "T. Not_init" -msgstr "未初期化時間" - -#: ../../enterprise/include/functions_reporting.php:3004 -#: ../../enterprise/include/functions_reporting.php:3988 -msgid "T. Downtime" -msgstr "計画停止時間" - -#: ../../enterprise/include/functions_reporting.php:3005 -#: ../../enterprise/include/functions_reporting.php:3989 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:4211 -msgid "Ignore Planned Downtime" -msgstr "計画停止を無視" - -#: ../../enterprise/include/functions_reporting.php:4904 -msgid "Max/Min Critical" -msgstr "障害の最大/最小" - -#: ../../enterprise/include/functions_reporting.php:4905 -msgid "Max/Min Warning" -msgstr "警告の最大/最小" - -#: ../../enterprise/include/functions_reporting.php:4906 -msgid "Total checks ok/total" -msgstr "合計チェック ok/合計" - -#: ../../enterprise/include/functions_reporting.php:4907 -msgid "% time ok" -msgstr "% 時間 ok" - -#: ../../enterprise/include/functions_reporting.php:4967 -msgid "Time Critical" -msgstr "障害時間" - -#: ../../enterprise/include/functions_reporting.php:5062 -msgid "Checks Critical" -msgstr "障害チェック" - -#: ../../enterprise/include/functions_reporting.php:5582 -msgid "There are no SLAs defined." -msgstr "定義済のSLAがありません。" - -#: ../../enterprise/include/functions_reporting.php:6218 -msgid "Scheduled shutdow" -msgstr "計画停止" - -#: ../../enterprise/include/functions_reporting.php:6584 -#: ../../enterprise/include/functions_reporting.php:7474 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "エージェントグラフ(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7382 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "エージェントグラフ(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:7829 -msgid "There is not data for the selected conditions" -msgstr "選択した状態のデータがありません" - -#: ../../enterprise/include/functions_reporting.php:8021 -#: ../../enterprise/include/functions_reporting.php:8087 -msgid "Template editor" -msgstr "テンプレート編集" - -#: ../../enterprise/include/functions_reporting.php:8517 -msgid "Configuration changes" -msgstr "設定変更" - -#: ../../enterprise/include/functions_reporting.php:8534 -msgid "No NCM capabilities detected" -msgstr "NCM 機能がありません" - -#: ../../enterprise/include/process_reset_pass.php:118 -#: ../../enterprise/meta/include/process_reset_pass.php:114 -msgid "Repeat password" -msgstr "パスワード(確認)" - -#: ../../enterprise/include/process_reset_pass.php:124 -#: ../../enterprise/meta/include/process_reset_pass.php:120 -msgid "Change password" -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:765 -msgid "Value:" -msgstr "値:" - -#: ../../enterprise/include/functions_visual_map.php:672 -msgid "None of the services was added" -msgstr "サービスが追加されませんでした" - -#: ../../enterprise/include/functions_visual_map.php:674 -#, php-format -msgid "%d services couldn't be added" -msgstr "%d サービスを追加できませんでした" - -#: ../../enterprise/include/functions_visual_map.php:680 -msgid "There was an error retrieving the visual map information" -msgstr "ビジュアルマップ情報の取得エラー" - -#: ../../enterprise/include/functions_transactional.php:631 -msgid "Error in dependencies field" -msgstr "依存フィールドでエラーです" - -#: ../../enterprise/include/functions_transactional.php:640 -msgid "Error in enables field" -msgstr "有効化フィールドでエラーです" - -#: ../../enterprise/include/functions_setup.php:44 -#: ../../enterprise/include/functions_setup.php:108 -#: ../../enterprise/godmode/menu.php:295 ../../godmode/setup/setup.php:317 -#: ../../godmode/extensions.php:140 -msgid "Enterprise" -msgstr "エンタープライズ" - -#: ../../enterprise/include/functions_setup.php:79 -#: ../../enterprise/include/functions_setup.php:125 -msgid "Log collector" -msgstr "ログ収集" - -#: ../../enterprise/include/functions_setup.php:151 -msgid "Metaconsole link status" -msgstr "メタコンソールリンク状態" - -#: ../../enterprise/include/functions_setup.php:183 -msgid "DB connection" -msgstr "DB 接続" - -#: ../../enterprise/include/functions_setup.php:192 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 -msgid "Agent cache" -msgstr "エージェントキャッシュ" - -#: ../../enterprise/include/functions_setup.php:201 -#: ../../enterprise/meta/advanced/policymanager.sync.php:328 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 -#: ../../enterprise/godmode/servers/HA_cluster.php:166 -msgid "Sync" -msgstr "同期" - -#: ../../enterprise/include/functions_setup.php:205 -msgid "This console is joining a metaconsole." -msgstr "このコンソールはメタコンソールに参加しています。" - -#: ../../enterprise/include/functions_setup.php:213 -msgid "This console is not joining any metaconsole." -msgstr "このコンソールはどのメタコンソールにも参加していません。" - -#: ../../enterprise/include/functions_backup.php:162 -msgid "Command mysqldump not found." -msgstr "mysqldump コマンドが見つかりません。" - -#: ../../enterprise/include/functions_backup.php:177 -msgid "The mysqldump execution goes wrong." -msgstr "mysqldump の実行で問題が発生しました。" - -#: ../../enterprise/include/functions_backup.php:190 -msgid "" -"In order to make backups it is necessary to check if the configuration is correct." -msgstr "バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" - -#: ../../enterprise/include/functions_backup.php:256 -msgid "No description" -msgstr "説明がありません" - -#: ../../enterprise/include/functions_backup.php:408 -msgid "Restoring a backup" -msgstr "バックアップのリストア中" - -#: ../../enterprise/include/functions_backup.php:410 -#, php-format -msgid "Restoring a %s database backup must be done manually." -msgstr "%s データベースバックアップの復元は手動で行う必要があります。" - -#: ../../enterprise/include/functions_backup.php:412 -msgid "" -"It's a complex operation that needs human intervation to avoid system failures and " -"data loosing" -msgstr "システム不整合およびデータ消失を防ぐために、人よる操作が必要な複雑な作業です。" - -#: ../../enterprise/include/functions_backup.php:414 -msgid "To restore the selected backup, please follow these steps" -msgstr "選択したバックアップをリストアするには、これらの手順に従ってください" - -#: ../../enterprise/include/functions_backup.php:420 -msgid "Open a root shell in your system located at " -msgstr "次の場所にある root のシェルを開いてください: " - -#: ../../enterprise/include/functions_backup.php:424 -msgid "Connect to MySQL database using the following command" -msgstr "次のコマンドで MySQL データベースへ接続します" - -#: ../../enterprise/include/functions_backup.php:430 -msgid "Create a new database" -msgstr "新規データベースを作成します" - -#: ../../enterprise/include/functions_backup.php:454 -msgid "Restore the backup" -msgstr "バックアップをリストアします" - -#: ../../enterprise/include/functions_backup.php:469 -msgid "Modify console configuration to use this new database" -msgstr "新たなデータベースを使うようにコンソール設定を修正します" - -#: ../../enterprise/include/functions_backup.php:470 -msgid "Open configuration file" -msgstr "設定ファイルを開きます" - -#: ../../enterprise/include/functions_backup.php:473 -#: ../../enterprise/include/functions_backup.php:483 -msgid "Find" -msgstr "以下をみつけ" - -#: ../../enterprise/include/functions_backup.php:475 -#: ../../enterprise/include/functions_backup.php:485 -msgid "and replace with" -msgstr "次の通り書き換えます" - -#: ../../enterprise/include/functions_backup.php:480 -msgid "Modify servers configuration to use this new database" -msgstr "新たなデータベースを使うようにサーバ設定を修正します" - -#: ../../enterprise/include/functions_backup.php:481 -msgid "Find servers configuration file and replace the following lines" -msgstr "サーバ設定ファイルを見つけ、次の行を書き換えます" - -#: ../../enterprise/include/functions_backup.php:490 -msgid "Restart the servers and login again into the console" -msgstr "サーバを再起動し、コンソールからログインしなおします" - -#: ../../enterprise/include/functions_ipam.php:288 -msgid "Export to Excel" -msgstr "Excel にエクスポート" - -#: ../../enterprise/include/functions_ipam.php:395 -msgid "Assign next free IP" -msgstr "次の空き IP を割り当てる" - -#: ../../enterprise/include/functions_ipam.php:413 -msgid "Next available IP" -msgstr "次の空き IP" - -#: ../../enterprise/include/functions_ipam.php:1565 -msgid "Occupied" -msgstr "占有済" - -#: ../../enterprise/include/functions_ipam.php:1567 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 -msgid "Available" -msgstr "利用可能" - -#: ../../enterprise/include/functions_ipam.php:1573 -msgid "Not managed" -msgstr "管理対象外" - -#: ../../enterprise/include/functions_ipam.php:1579 -msgid "Not Reserved" -msgstr "未予約" - -#: ../../enterprise/include/functions_ipam.php:1589 -msgid "Occupancy statistics" -msgstr "占有率統計" - -#: ../../enterprise/include/functions_ipam.php:1646 -msgid "DESC" -msgstr "降順" - -#: ../../enterprise/include/functions_ipam.php:1647 -msgid "ASC" -msgstr "昇順" - -#: ../../enterprise/include/functions_ipam.php:1648 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/include/functions_ipam.php:1649 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 -msgid "Last check" -msgstr "最新の確認" - -#: ../../enterprise/include/functions_ipam.php:1650 -msgid "Newer -> Older" -msgstr "新しい -> 古い" - -#: ../../enterprise/include/functions_ipam.php:1651 -msgid "Older -> Newer" -msgstr "古い -> 新しい" - -#: ../../enterprise/include/functions_ipam.php:1678 -msgid "Exact address match" -msgstr "アドレスの完全一致" - -#: ../../enterprise/include/functions_ipam.php:1682 -msgid "S.O" -msgstr "OS" - -#: ../../enterprise/include/functions_ipam.php:1695 -msgid "Big" -msgstr "大" - -#: ../../enterprise/include/functions_ipam.php:1696 -msgid "Tiny" -msgstr "小" - -#: ../../enterprise/include/functions_ipam.php:1697 -msgid "Icons style" -msgstr "アイコンスタイル" - -#: ../../enterprise/include/functions_ipam.php:1714 -msgid "Show not alive hosts" -msgstr "非稼働ホスト表示" - -#: ../../enterprise/include/functions_ipam.php:1722 -msgid "Show only managed addresses" -msgstr "管理対象アドレスのみ表示" - -#: ../../enterprise/include/functions_ipam.php:1730 -msgid "Reserved addresses" -msgstr "予約済アドレス" - -#: ../../enterprise/include/functions_ipam.php:1735 -msgid "Unreserved" -msgstr "未予約" - -#: ../../enterprise/include/functions_ipam.php:1745 -msgid "Last Contact" -msgstr "最終接続" - -#: ../../enterprise/include/functions_ipam.php:1788 -msgid "Filter options" -msgstr "フィルターオプション" - -#: ../../enterprise/include/functions_ipam.php:1979 -msgid "id Network" -msgstr "ネットワーク ID" - -#: ../../enterprise/include/functions_ipam.php:1984 -msgid "ID recon task" -msgstr "自動検出タスク ID" - -#: ../../enterprise/include/functions_ipam.php:1985 -msgid "Scan Interval" -msgstr "スキャン間隔" - -#: ../../enterprise/include/functions_ipam.php:1986 -msgid "Users Operator" -msgstr "管理ユーザ" - -#: ../../enterprise/include/functions_ipam.php:1987 -msgid "Total Ips" -msgstr "全 IP" - -#: ../../enterprise/include/functions_ipam.php:1988 -msgid "Last Update" -msgstr "最終更新" - -#: ../../enterprise/include/functions_ipam.php:2041 -msgid "OS Name" -msgstr "OS 名" - -#: ../../enterprise/include/functions_ipam.php:2045 -msgid "Last updated" -msgstr "最終更新" - -#: ../../enterprise/include/functions_ipam.php:2046 -msgid "Last modified" -msgstr "最終更新" - -#: ../../enterprise/include/functions_ipam.php:2047 -msgid "Dhcp Leased" -msgstr "DHCP リース済" - -#: ../../enterprise/include/functions_ipam.php:2048 -msgid "Dhcp Leased Mode" -msgstr "DHCP リースモード" - -#: ../../enterprise/include/functions_ipam.php:2049 -msgid "Dhcp Leased Expiration" -msgstr "DHCP リース期限切れ" - -#: ../../enterprise/include/functions_ipam.php:2050 -msgid "Mac address" -msgstr "MAC アドレス" - -#: ../../enterprise/include/functions_reporting_pdf.php:1838 -msgid "Contents" -msgstr "目次" - -#: ../../enterprise/include/functions_collection.php:39 -#, php-format -msgid "Collection %d does not exist" -msgstr "コレクション %d が存在しません" - -#: ../../enterprise/include/functions_collection.php:48 -msgid "Collection dir does not exist." -msgstr "コレクションディレクトリが存在しません。" - -#: ../../enterprise/include/functions_collection.php:57 -#, php-format -msgid "Failed to create collection path: %s" -msgstr "コレクションパスの作成に失敗しました: %s" - -#: ../../enterprise/include/functions_collection.php:66 -msgid "Target collection path is not writable" -msgstr "対象のコレクションパスに書き込めません" - -#: ../../enterprise/include/functions_collection.php:80 -msgid "Failed to create zip file for collection" -msgstr "コレクションの zip ファイル作成に失敗しました" - -#: ../../enterprise/include/functions_collection.php:87 -#, php-format -msgid "File of collection is bigger than the limit (%s bytes)" -msgstr "コレクションのファイルが制限より大きいです (%s バイト)" - -#: ../../enterprise/include/functions_servicemap.php:80 -msgid "Failed to retrieve service elements: " -msgstr "サービス要素の取得に失敗しました: " - -#: ../../enterprise/include/functions_hostdevices.php:45 -msgid "Remote commands enabled" -msgstr "リモートコマンドが有効" - -#: ../../enterprise/include/functions_ui.php:79 -msgid "Select inventory module" -msgstr "インベントリモジュールの選択" - -#: ../../enterprise/include/functions_ui.php:92 -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 -msgid "Target" -msgstr "対象" - -#: ../../enterprise/include/functions_ui.php:96 -msgid "Use custom fields" -msgstr "カスタムフィールドを利用" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Field name" -msgstr "フィールド名" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "It's a password" -msgstr "それはパスワードです" - -#: ../../enterprise/include/functions_ui.php:179 -msgid "Add field" -msgstr "フィールド追加" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Perpetual" -msgstr "永続" - -#: ../../enterprise/include/functions_license.php:119 -msgid "Subscription" -msgstr "サブスクリプション" - -#: ../../enterprise/include/functions_license.php:120 -msgid "Expires" -msgstr "有効期限" - -#: ../../enterprise/include/functions_policies.php:675 -#, php-format -msgid "%s success" -msgstr "%s 成功" - -#: ../../enterprise/include/functions_policies.php:675 -#, php-format -msgid "%s failed" -msgstr "%s 失敗" - -#: ../../enterprise/include/functions_policies.php:680 -msgid "Policy cleaned from nodes: " -msgstr "ポリシーがノードから削除されました: " - -#: ../../enterprise/include/functions_policies.php:934 -#, php-format -msgid "Failed to connect to node %s" -msgstr "ノード %s への接続に失敗しました" - -#: ../../enterprise/include/functions_policies.php:3504 -msgid "Policy linkation" -msgstr "ポリシーリンク" - -#: ../../enterprise/include/functions_policies.php:3509 -msgid "Module linked" -msgstr "リンク済モジュール" - -#: ../../enterprise/include/functions_policies.php:3514 -#: ../../enterprise/include/functions_policies.php:3534 -msgid "Unlink from policy" -msgstr "ポリシーからリンクを外す" - -#: ../../enterprise/include/functions_policies.php:3519 -msgid "Module unlinked" -msgstr "未リンクモジュール" - -#: ../../enterprise/include/functions_policies.php:3524 -#: ../../enterprise/include/functions_policies.php:3544 -msgid "Relink to policy" -msgstr "ポリシーへの再リンク" - -#: ../../enterprise/include/functions_policies.php:3529 -msgid "Module pending to link" -msgstr "リンク待ちモジュール" - -#: ../../enterprise/include/functions_policies.php:3529 -#: ../../godmode/agentes/module_manager_editor.php:548 -msgid "Module will be linked in the next application" -msgstr "モジュールは次回適用時にリンクされます。" - -#: ../../enterprise/include/functions_policies.php:3539 -msgid "Module pending to unlink" -msgstr "リンク解除待ちモジュール" - -#: ../../enterprise/include/functions_policies.php:3539 -#: ../../godmode/agentes/module_manager_editor.php:562 -msgid "Module will be unlinked in the next application" -msgstr "モジュールは次回適用時にリンク解除されます。" - -#: ../../enterprise/include/functions_policies.php:3709 -#: ../../enterprise/godmode/menu.php:108 -msgid "Manage policies" -msgstr "ポリシー管理" - -#: ../../enterprise/include/functions_policies.php:3730 -#: ../../enterprise/godmode/policies/policy.php:102 -#: ../../godmode/agentes/configurar_agente.php:526 -msgid "Agent wizard" -msgstr "エージェントウィザード" - -#: ../../enterprise/include/functions_policies.php:3735 -#: ../../godmode/setup/snmp_wizard.php:31 -#: ../../godmode/agentes/configurar_agente.php:538 -#: ../../godmode/agentes/configurar_agente.php:759 -msgid "SNMP Wizard" -msgstr "SNMPウィザード" - -#: ../../enterprise/include/functions_policies.php:3738 -#: ../../godmode/agentes/configurar_agente.php:548 -#: ../../godmode/agentes/configurar_agente.php:765 -msgid "SNMP Interfaces wizard" -msgstr "SNMP インタフェースウィザード" - -#: ../../enterprise/include/functions_policies.php:3741 -#: ../../godmode/agentes/configurar_agente.php:558 -#: ../../godmode/agentes/configurar_agente.php:771 -msgid "WMI Wizard" -msgstr "WMIウィザード" - -#: ../../enterprise/include/functions_policies.php:3753 -#: ../../enterprise/meta/include/functions_components_meta.php:113 -#: ../../enterprise/meta/include/functions_components_meta.php:160 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 -#: ../../enterprise/godmode/menu.php:90 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -msgid "Inventory modules" -msgstr "インベントリモジュール" - -#: ../../enterprise/include/functions_policies.php:3769 -#: ../../enterprise/godmode/policies/policies.php:523 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -msgid "External alerts" -msgstr "外部アラート" - -#: ../../enterprise/include/functions_policies.php:3781 -#: ../../enterprise/godmode/policies/policy_linking.php:157 -#: ../../enterprise/godmode/policies/policies.php:501 -msgid "Linking" -msgstr "リンク" - -#: ../../enterprise/include/functions_policies.php:3811 -#: ../../enterprise/godmode/policies/policy.php:60 -#: ../../enterprise/godmode/policies/policies.php:527 -msgid "Queue" -msgstr "キュー" - -#: ../../enterprise/include/functions_policies.php:3830 -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 -#: ../../enterprise/godmode/policies/policy.php:82 -#: ../../godmode/agentes/configurar_agente.php:717 -msgid "Agent plugins" -msgstr "エージェントプラグイン" - -#: ../../enterprise/include/functions_policies.php:4058 -msgid "Create a new policy map" -msgstr "新規ポリシーマップ作成" - -#: ../../enterprise/include/functions_policies.php:4446 -#: ../../extensions/resource_registration.php:1098 -msgid "Error, please install the PHP libXML in the system." -msgstr "エラー。PHP libXML をインストールしてください。" - -#: ../../enterprise/include/functions_policies.php:4458 -#, php-format -msgid "" -"This extension makes registration of policies enterprise.
    You can get more " -"policies in our Public Resource Library" -msgstr "" -"この拡張は、Enterprise ポリシーを登録します。
    追加のポリシーは我々のリ" -"ソースライブラリから入手できます。" - -#: ../../enterprise/include/functions_policies.php:4465 -#: ../../extensions/resource_registration.php:1133 -msgid "Group filter: " -msgstr "グループフィルター: " - -#: ../../enterprise/include/functions_policies.php:4490 -#: ../../extensions/resource_registration.php:1150 -msgid "" -"Error uploading resource. Check if the selected file is a valid resource template in ." -"ptr format" -msgstr "" -"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の有効な" -"リソーステンプレートであるかどうかを確認してください" - -#: ../../enterprise/include/functions_policies.php:4516 -msgid "Policy does not exist" -msgstr "ポリシーがありません。" - -#: ../../enterprise/include/functions_policies.php:4906 -msgid "This will not produce any action." -msgstr "これはアクションを起こしません。" - -#: ../../enterprise/include/functions_policies.php:4935 -#, php-format -msgid "Error connecting with node %s." -msgstr "ノード %s への接続エラー。" - -#: ../../enterprise/include/functions_policies.php:4942 -#, php-format -msgid "This policy is being applied on node %s." -msgstr "このポリシーはノード %s に適用されています。" - -#: ../../enterprise/include/functions_policies.php:4980 -msgid "Error syncronizing ." -msgstr "同期エラー。" - -#: ../../enterprise/meta/screens/screens.php:37 -#: ../../enterprise/meta/general/main_menu.php:338 -#: ../../enterprise/meta/general/logon_ok.php:84 -#: ../../enterprise/meta/general/main_header.php:232 -msgid "Screens" -msgstr "画面" - -#: ../../enterprise/meta/screens/screens.visualmap.php:71 -msgid "Create visualmap" -msgstr "ビジュアルマップの作成" - -#: ../../enterprise/meta/screens/screens.visualmap.php:297 -#: ../../godmode/reporting/visual_console_builder.php:844 -msgid "New visual console" -msgstr "新規ビジュアルコンソール" - -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:264 -#: ../../godmode/events/events.php:68 -msgid "Event responses" -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:175 -#: ../../godmode/events/custom_events.php:129 -#: ../../godmode/agentes/status_monitor_custom_fields.php:164 -msgid "Fields available" -msgstr "存在するフィールド" - -#: ../../enterprise/meta/event/custom_events.php:177 -#: ../../godmode/events/custom_events.php:149 -#: ../../godmode/agentes/status_monitor_custom_fields.php:186 -msgid "Fields selected" -msgstr "選択されているフィールド" - -#: ../../enterprise/meta/event/custom_events.php:187 -#: ../../godmode/events/custom_events.php:136 -#: ../../godmode/agentes/status_monitor_custom_fields.php:171 -msgid "Add fields to select" -msgstr "フィールドを選択に加える" - -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../godmode/events/custom_events.php:144 -#: ../../godmode/agentes/status_monitor_custom_fields.php:180 -msgid "Delete fields to select" -msgstr "フィールドを選択から削除する" - -#: ../../enterprise/meta/event/custom_events.php:207 -#: ../../godmode/events/custom_events.php:74 -msgid "Show event fields" -msgstr "イベントフィールド表示" - -#: ../../enterprise/meta/event/custom_events.php:248 -#: ../../godmode/events/custom_events.php:203 -#: ../../godmode/agentes/status_monitor_custom_fields.php:240 -msgid "There must be at least one custom field. Timestamp will be set by default" -msgstr "" -"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定されま" -"す。" - -#: ../../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/main_menu.php:200 -#: ../../enterprise/meta/general/main_header.php:109 -msgid "Groups view" -msgstr "グループビュー" - -#: ../../enterprise/meta/general/main_menu.php:212 -#: ../../enterprise/meta/general/main_header.php:121 -msgid "Monitors view" -msgstr "モニタ表示" - -#: ../../enterprise/meta/general/main_menu.php:218 -#: ../../enterprise/meta/general/main_header.php:127 -msgid "Custom fields view" -msgstr "カスタムフィールド表示" - -#: ../../enterprise/meta/general/main_menu.php:276 -#: ../../enterprise/meta/general/main_header.php:174 -msgid "Create new report" -msgstr "新規レポート作成" - -#: ../../enterprise/meta/general/main_menu.php:286 -#: ../../enterprise/meta/general/main_header.php:190 -msgid "Report templates" -msgstr "レポートテンプレート" - -#: ../../enterprise/meta/general/main_menu.php:353 -#: ../../enterprise/meta/general/main_header.php:247 -#: ../../godmode/reporting/visual_console_favorite.php:118 -msgid "Favourite Visual Console" -msgstr "お気に入りのビジュアルコンソール" - -#: ../../enterprise/meta/general/main_menu.php:361 -#: ../../enterprise/meta/general/main_header.php:255 -msgid "Template Visual Console" -msgstr "ビジュアルコンソールテンプレート" - -#: ../../enterprise/meta/general/main_menu.php:368 -#: ../../enterprise/meta/general/main_header.php:262 -msgid "Wizard Visual Console" -msgstr "ビジュアルコンソールウィザード" - -#: ../../enterprise/meta/general/main_menu.php:389 -#: ../../enterprise/meta/general/main_header.php:281 -msgid "Live view" -msgstr "ライブビュー" - -#: ../../enterprise/meta/general/main_menu.php:407 ../../enterprise/godmode/menu.php:257 -msgid "Alert correlation" -msgstr "アラート相関" - -#: ../../enterprise/meta/general/main_menu.php:427 -#: ../../enterprise/meta/general/main_menu.php:508 -msgid "Centralised management" -msgstr "中央管理" - -#: ../../enterprise/meta/general/main_menu.php:434 -#: ../../enterprise/meta/general/main_menu.php:534 -#: ../../enterprise/meta/general/main_header.php:315 -#: ../../enterprise/meta/general/main_header.php:417 -msgid "Agent management" -msgstr "エージェント管理" - -#: ../../enterprise/meta/general/main_menu.php:440 -#: ../../enterprise/meta/general/main_menu.php:540 -#: ../../enterprise/meta/general/main_header.php:327 -#: ../../enterprise/meta/general/main_header.php:423 -#: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 -#: ../../godmode/modules/module_list.php:29 -#: ../../godmode/modules/manage_network_components.php:290 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Module management" -msgstr "モジュール管理" - -#: ../../enterprise/meta/general/main_menu.php:446 -#: ../../enterprise/meta/general/main_menu.php:563 -#: ../../enterprise/meta/general/main_header.php:333 -#: ../../enterprise/meta/general/main_header.php:439 -msgid "Alert management" -msgstr "アラート管理" - -#: ../../enterprise/meta/general/main_menu.php:452 -#: ../../enterprise/meta/general/main_header.php:339 -msgid "Component management" -msgstr "コンポーネント管理" - -#: ../../enterprise/meta/general/main_menu.php:464 -#: ../../enterprise/meta/general/main_menu.php:554 -#: ../../enterprise/meta/general/main_header.php:345 -msgid "Policy management" -msgstr "ポリシー管理" - -#: ../../enterprise/meta/general/main_menu.php:470 -#: ../../enterprise/meta/general/main_header.php:351 -msgid "Category management" -msgstr "カテゴリ管理" - -#: ../../enterprise/meta/general/main_menu.php:476 -#: ../../enterprise/meta/general/main_menu.php:547 -#: ../../enterprise/meta/general/main_header.php:357 -#: ../../enterprise/meta/general/main_header.php:430 -msgid "Server management" -msgstr "サーバ管理" - -#: ../../enterprise/meta/general/main_menu.php:482 ../../godmode/menu.php:183 -#: ../../godmode/massive/massive_operations.php:329 -msgid "Bulk operations" -msgstr "一括操作" - -#: ../../enterprise/meta/general/main_menu.php:488 -msgid "Agent operations" -msgstr "エージェント操作" - -#: ../../enterprise/meta/general/main_menu.php:496 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "Command Center" -msgstr "コマンドセンター" - -#: ../../enterprise/meta/general/main_menu.php:584 -#: ../../enterprise/meta/general/main_header.php:369 ../../godmode/menu.php:371 -msgid "License" -msgstr "ライセンス" - -#: ../../enterprise/meta/general/main_menu.php:590 -#: ../../enterprise/meta/general/main_header.php:375 -msgid "Metasetup" -msgstr "メタセットアップ" - -#: ../../enterprise/meta/general/main_menu.php:626 -#: ../../enterprise/meta/general/main_header.php:458 ../../godmode/extensions.php:28 -msgid "Extensions" -msgstr "拡張" - -#: ../../enterprise/meta/general/main_menu.php:667 ../../godmode/menu.php:388 -msgid "System audit log" -msgstr "システム監査ログ" - -#: ../../enterprise/meta/general/main_header.php:492 -msgid "Audit Logs" -msgstr "監査ログ" - -#: ../../enterprise/meta/general/footer.php:33 -#, php-format -msgid "%s %s - Build %s - MR %s" -msgstr "%s %s - ビルド %s - MR %s" - -#: ../../enterprise/meta/general/footer.php:38 -msgid "Page generated at" -msgstr "ページ更新日時:" - -#: ../../enterprise/meta/general/login_page.php:58 -#: ../../enterprise/meta/include/reset_pass.php:41 -#: ../../enterprise/meta/include/process_reset_pass.php:41 -msgid "Go to Pandora FMS Support" -msgstr "Pandora FMS サポートへ行く" - -#: ../../enterprise/meta/general/login_page.php:60 -#: ../../enterprise/meta/general/login_page.php:71 -#: ../../enterprise/meta/include/reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:54 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/process_reset_pass.php:54 -msgid "Go to " -msgstr "次へ行く " - -#: ../../enterprise/meta/general/login_page.php:69 -#: ../../enterprise/meta/include/reset_pass.php:52 -#: ../../enterprise/meta/include/process_reset_pass.php:52 -msgid "Go to Pandora FMS Wiki" -msgstr "Pandora FMS wiki へ行く" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 -#: ../../godmode/alerts/alert_templates.php:61 -msgid "Everyday" -msgstr "毎日" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Every" -msgstr "毎" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 -#: ../../godmode/alerts/alert_templates.php:84 -msgid "and" -msgstr "と" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56 -msgid "Agent succesfully deleted" -msgstr "エージェントを削除しました" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58 -msgid "Could not delete agent" -msgstr "エージェントを削除できません。" - -#: ../../enterprise/meta/include/reset_pass.php:139 -#: ../../enterprise/meta/include/process_reset_pass.php:142 -#, php-format -msgid "%s NEXT GENERATION" -msgstr "%s NEXT GENERATION" - -#: ../../enterprise/meta/include/functions_autoprovision.php:378 -msgid "Round Robin" -msgstr "ラウンドロビン" - -#: ../../enterprise/meta/include/functions_autoprovision.php:383 -msgid "Less loaded" -msgstr "低負荷" - -#: ../../enterprise/meta/include/functions_autoprovision.php:422 -msgid "" -"It uses the Round-robin planning method to distribute, \n" -" in an equitable way and in a rational order, all the new Pandora " -"software agents that reach the Metaconsole.\n" -" The distribution of the agents will be done in a circular way, " -"assigning the corresponding server to each new agent.\n" -" " -msgstr "" -"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウンドロビ" -"ン方式で公平に配布します。\n" -" エージェントの配布は循環的に行われ、新しいエージェントは対応するサー" -"バに割り当てられます。\n" -" " - -#: ../../enterprise/meta/include/functions_autoprovision.php:430 -msgid "The new agents will be dynamically assigned to those servers with less load." -msgstr "新しいエージェントは、負荷の少ないサーバに動的に割り当てられます。" - -#: ../../enterprise/meta/include/functions_autoprovision.php:435 -msgid "" -"In the customized classification, we will be able to define our own classification " -"rules, \n" -" based on certain parameters retrieved from the information reported " -"by the agent (name of the agent and its IP address).\n" -" " -msgstr "" -"カスタム配布では、独自の配布ルールを定義できます。\n" -" エージェントから取得された情報(エージェント名とその IP アドレス)に基" -"づきます。\n" -" " - -#: ../../enterprise/meta/include/functions_autoprovision.php:529 -msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add the first." -msgstr "" -"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックして、最初" -"のエントリを追加します。" - -#: ../../enterprise/meta/include/functions_autoprovision.php:534 -msgid "Create custom entry" -msgstr "カスタムエントリの作成" - -#: ../../enterprise/meta/include/functions_autoprovision.php:561 -msgid "Provisioning configuration" -msgstr "設定プロビジョニング" - -#: ../../enterprise/meta/include/functions_autoprovision.php:566 -#: ../../enterprise/meta/advanced/collections.data.php:332 -#: ../../enterprise/godmode/agentes/collections.data.php:425 -#: ../../godmode/setup/os.builder.php:35 -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "Name:" -msgstr "名前:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:572 -msgid "Configuration:" -msgstr "設定:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:610 -msgid "" -"There is no rules configured for this custom entry. Click on Add button to create the " -"first." -msgstr "" -"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリックして" -"作成します。" - -#: ../../enterprise/meta/include/functions_autoprovision.php:723 -msgid "There was an error when editing the rule." -msgstr "ルール編集中にエラーが発生しました。" - -#: ../../enterprise/meta/include/functions_autoprovision.php:737 -msgid "Operation:" -msgstr "操作:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:751 -msgid "Method:" -msgstr "方法:" - -#: ../../enterprise/meta/include/functions_autoprovision.php:816 -msgid "Move up" -msgstr "上へ" - -#: ../../enterprise/meta/include/functions_autoprovision.php:824 -msgid "Move down" -msgstr "下へ" - -#: ../../enterprise/meta/include/functions_relations.php:49 -msgid "Invalid file content" -msgstr "ファイルの内容が不正です" - -#: ../../enterprise/meta/include/functions_relations.php:54 -msgid "No relations found" -msgstr "関係がありません" - -#: ../../enterprise/meta/include/functions_relations.php:80 -#: ../../enterprise/meta/include/functions_relations.php:91 -#: ../../enterprise/meta/include/functions_relations.php:102 -#, php-format -msgid "The relation type: %s to %s -> %s was not saved" -msgstr "関係タイプ: %s から %s -> %s は保存されませんでした" - -#: ../../enterprise/meta/include/functions_relations.php:123 -#, php-format -msgid "The relation %s -> %s was not saved" -msgstr "関係 %s -> %s は保存されませんでした" - -#: ../../enterprise/meta/include/functions_relations.php:133 -msgid "File imported successfully" -msgstr "ファイルをインポートしました" - -#: ../../enterprise/meta/include/functions_relations.php:136 -msgid "Error inserting relations" -msgstr "関係の挿入エラー" - -#: ../../enterprise/meta/include/functions_relations.php:165 -msgid "Empty string" -msgstr "文字列が空です" - -#: ../../enterprise/meta/include/functions_relations.php:170 -msgid "Empty custom node address" -msgstr "カスタムノードアドレスが空です" - -#: ../../enterprise/meta/include/functions_relations.php:208 -#, php-format -msgid "" -"The relation type: %s to %s -> %s was not saved. This relationship already exists in " -"the database" -msgstr "" -"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既に存在" -"します" - -#: ../../enterprise/meta/include/functions_relations.php:230 -#, php-format -msgid "Error inserting the relation %s -> %s" -msgstr "関係 %s -> %s の挿入エラー" - -#: ../../enterprise/meta/include/functions_relations.php:238 -msgid "Relation created successfully" -msgstr "関係を作成しました" - -#: ../../enterprise/meta/include/functions_relations.php:263 -msgid "Error deleting the relation" -msgstr "関係の削除エラー" - -#: ../../enterprise/meta/include/functions_relations.php:269 -msgid "Relation deleted successfully" -msgstr "関係を削除しました" - -#: ../../enterprise/meta/include/functions_users_meta.php:186 -#: ../../enterprise/meta/include/functions_users_meta.php:212 ../../godmode/menu.php:130 -#: ../../godmode/users/user_list.php:225 ../../godmode/users/configure_user.php:234 -#: ../../godmode/users/configure_profile.php:66 ../../godmode/users/profile_list.php:74 -msgid "Profile management" -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_ui_meta.php:53 -#, php-format -msgid "%s - the Flexible Monitoring System" -msgstr "%s - フレキシブルモニタリングシステム" - -#: ../../enterprise/meta/include/functions_meta.php:49 -msgid "No admin user" -msgstr "管理者ではありません" - -#: ../../enterprise/meta/include/functions_meta.php:112 -msgid "Centralized management" -msgstr "中央管理" - -#: ../../enterprise/meta/include/functions_meta.php:148 -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -#: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" -msgstr "phantomjs バイナリディレクトリ" - -#: ../../enterprise/meta/include/functions_meta.php:198 -msgid "Netflow disable custom live view filters" -msgstr "Netflow は、カスタムライブビューフィルタを無効にします" - -#: ../../enterprise/meta/include/functions_meta.php:248 -#: ../../enterprise/meta/advanced/metasetup.setup.php:283 -#: ../../enterprise/godmode/setup/setup.php:378 -msgid "Enable update manager" -msgstr "アップデートマネージャの有効化" - -#: ../../enterprise/meta/include/functions_meta.php:262 -msgid "Customizable section" -msgstr "カスタマイズ可能なセクション" - -#: ../../enterprise/meta/include/functions_meta.php:283 -msgid "Agent API" -msgstr "エージェント API" - -#: ../../enterprise/meta/include/functions_meta.php:303 -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -#: ../../godmode/setup/setup_general.php:467 -msgid "Enable console log" -msgstr "コンソールログの有効化" - -#: ../../enterprise/meta/include/functions_meta.php:313 -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -#: ../../godmode/setup/setup_general.php:478 -msgid "Enable audit log" -msgstr "監査ログの有効化" - -#: ../../enterprise/meta/include/functions_meta.php:323 -msgid "Policy add max. agents" -msgstr "ポリシーでの最大エージェントの追加" - -#: ../../enterprise/meta/include/functions_meta.php:332 -msgid "Sync items warn detection" -msgstr "アイテム同期で警告検出" - -#: ../../enterprise/meta/include/functions_meta.php:470 -msgid "IP ElasticSearch" -msgstr "IP ElasticSearch" - -#: ../../enterprise/meta/include/functions_meta.php:480 -msgid "Port ElasticSearch" -msgstr "ポート ElasticSearch" - -#: ../../enterprise/meta/include/functions_meta.php:592 -msgid "2FA_all_users" -msgstr "全ユーザ二段階認証" - -#: ../../enterprise/meta/include/functions_meta.php:715 -#: ../../enterprise/meta/include/functions_meta.php:727 -#: ../../enterprise/godmode/setup/setup_auth.php:337 -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 -msgid "Auto enable node access" -msgstr "自動有効ノードアクセス" - -#: ../../enterprise/meta/include/functions_meta.php:858 -msgid "SAML profile parameters" -msgstr "SAML プロファイルパラメータ" - -#: ../../enterprise/meta/include/functions_meta.php:1029 -#: ../../godmode/setup/setup_auth.php:267 -msgid "Secondary start TLS" -msgstr "セカンダリ開始 TLS" - -#: ../../enterprise/meta/include/functions_meta.php:1135 -#, php-format -msgid "%s host" -msgstr "%s ホスト" - -#: ../../enterprise/meta/include/functions_meta.php:1189 -msgid "Babel Enterprise host" -msgstr "Babel Enterprise ホスト" - -#: ../../enterprise/meta/include/functions_meta.php:1318 -msgid "Graph color (min)" -msgstr "グラフの色 (最小値)" - -#: ../../enterprise/meta/include/functions_meta.php:1328 -msgid "Graph color (avg)" -msgstr "グラフの色 (平均値)" - -#: ../../enterprise/meta/include/functions_meta.php:1338 -msgid "Graph color (max)" -msgstr "グラフの色 (最大値)" - -#: ../../enterprise/meta/include/functions_meta.php:1362 -#: ../../enterprise/meta/advanced/metasetup.visual.php:252 -#: ../../godmode/setup/setup_visuals.php:869 -msgid "Number of elements in Custom Graph" -msgstr "カスタムグラフの要素数" - -#: ../../enterprise/meta/include/functions_meta.php:1403 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 -#: ../../godmode/setup/setup_visuals.php:1135 -msgid "Interval description" -msgstr "間隔の表示" - -#: ../../enterprise/meta/include/functions_meta.php:1488 -msgid "full scale charts" -msgstr "フルスケールグラフ" - -#: ../../enterprise/meta/include/functions_meta.php:1498 -msgid "type mode type charts" -msgstr "タイプモードタイプグラフ" - -#: ../../enterprise/meta/include/functions_meta.php:1508 -#: ../../enterprise/meta/advanced/metasetup.visual.php:969 -#: ../../godmode/setup/setup_visuals.php:1126 -msgid "Graph image height for HTML reports" -msgstr "HTML レポートのグラフ画像の高さ" - -#: ../../enterprise/meta/include/functions_meta.php:1518 -msgid "type mode zoom charts" -msgstr "タイプモード拡大グラフ" - -#: ../../enterprise/meta/include/functions_meta.php:1528 -#: ../../enterprise/meta/advanced/metasetup.visual.php:826 -#: ../../godmode/setup/setup_visuals.php:563 -msgid "Visual effects and animation" -msgstr "表示効果およびアニメーション" - -#: ../../enterprise/meta/include/functions_meta.php:1538 -msgid "Type of charts" -msgstr "グラフのタイプ" - -#: ../../enterprise/meta/include/functions_meta.php:1548 -#: ../../enterprise/meta/advanced/metasetup.visual.php:367 -msgid "Metaconsole elements" -msgstr "メタコンソール要素" - -#: ../../enterprise/meta/include/functions_meta.php:1558 -#: ../../enterprise/meta/advanced/metasetup.visual.php:454 -#: ../../godmode/setup/setup_visuals.php:1247 -msgid "Show only the group name" -msgstr "グループ名のみ表示" - -#: ../../enterprise/meta/include/functions_meta.php:1588 -msgid "Custom logo (white background)" -msgstr "カスタムロゴ (白背景)" - -#: ../../enterprise/meta/include/functions_meta.php:1688 -#: ../../enterprise/meta/advanced/metasetup.visual.php:775 -#: ../../godmode/setup/setup_visuals.php:495 -msgid "Docs URL (login)" -msgstr "ドキュメントURL(ログイン)" - -#: ../../enterprise/meta/include/functions_meta.php:1698 -#: ../../enterprise/meta/advanced/metasetup.visual.php:785 -#: ../../godmode/setup/setup_visuals.php:501 -msgid "Support URL (login)" -msgstr "サポートURL(ログイン)" - -#: ../../enterprise/meta/include/functions_meta.php:1708 -msgid "Custom background login" -msgstr "カスタムログイン背景" - -#: ../../enterprise/meta/include/functions_meta.php:1718 -msgid "Custom product name" -msgstr "カスタム製品名" - -#: ../../enterprise/meta/include/functions_meta.php:1728 -msgid "Custom copyright notice" -msgstr "カスタム著作権表示" - -#: ../../enterprise/meta/include/functions_meta.php:1929 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -msgid "Active events history" -msgstr "アクティブイベント履歴" - -#: ../../enterprise/meta/include/functions_meta.php:1969 -msgid "Default block size migration agents" -msgstr "デフォルトエージェントマイグレーションブロックサイズ" - -#: ../../enterprise/meta/include/functions_meta.php:1981 -msgid "Default block size execution event" -msgstr "デフォルト実行イベントブロックサイズ" - -#: ../../enterprise/meta/include/functions_meta.php:1992 -msgid "Default row limit in csv log" -msgstr "デフォルト csv ログ行制限" - -#: ../../enterprise/meta/include/functions_meta.php:2038 -msgid "Node address default" -msgstr "デフォルトノードアドレス" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:364 -msgid "Add selected modules to agent" -msgstr "選択したモジュールのエージェントへの追加" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -msgid "Undo changes" -msgstr "変更を元に戻す" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:496 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 -#: ../../godmode/massive/massive_edit_modules.php:818 -#: ../../godmode/agentes/module_manager_editor_wmi.php:60 -#: ../../godmode/agentes/module_manager_editor_network.php:95 -msgid "Force primary key" -msgstr "プライマリを利用" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:593 -msgid "Latency" -msgstr "待ち時間" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:594 -msgid "Response" -msgstr "応答" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:596 -#: ../../godmode/agentes/module_manager_editor_web.php:199 -msgid "Check type" -msgstr "チェックタイプ" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:649 -msgid "String to check" -msgstr "チェック文字列" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:655 -msgid "Add check" -msgstr "チェックを追加" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:664 -msgid "Delete check" -msgstr "チェックを削除" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:677 -#: ../../enterprise/godmode/modules/configure_local_component.php:494 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 -#: ../../godmode/agentes/module_manager_editor_web.php:164 -msgid "Load basic" -msgstr "基本設定読み込み" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:683 -#: ../../godmode/agentes/module_manager_editor_web.php:170 -msgid "Load a basic structure on Web Checks" -msgstr "ウェブチェックに基本構造を読み込む" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:691 -#: ../../godmode/agentes/module_manager_editor_web.php:178 -msgid "Check the correct structure of the WebCheck" -msgstr "ウェブチェックの構造確認" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:698 -#: ../../godmode/agentes/module_manager_editor_web.php:253 -msgid "First line must be \"task_begin\"" -msgstr "最初の行は、\"task_begin\" でなければいけません。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:699 -#: ../../godmode/agentes/module_manager_editor_web.php:254 -msgid "Webchecks configuration is empty" -msgstr "ウェブチェック設定が空です" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../enterprise/meta/include/functions_wizard_meta.php:701 -#: ../../godmode/agentes/module_manager_editor_web.php:255 -#: ../../godmode/agentes/module_manager_editor_web.php:256 -msgid "Last line must be \"task_end\"" -msgstr "最後の行は、\"task_end\" でなければいけません。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:702 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 -#: ../../godmode/agentes/module_manager_editor_web.php:257 -msgid "There is a line with a unknown token 'token_fail'." -msgstr "不明なトークン 'token_fail' を含む行があります。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:703 -#: ../../godmode/agentes/module_manager_editor_web.php:259 -msgid "Web checks are built correctly" -msgstr "ウェブチェックを設定しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:959 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1050 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1262 -msgid "Various" -msgstr "いろいろ" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:985 -#: ../../enterprise/meta/include/functions_wizard_meta.php:994 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1070 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1079 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1273 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1282 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1510 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1595 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1604 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1715 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1724 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1740 -#: ../../enterprise/godmode/modules/configure_local_component.php:338 -#: ../../enterprise/godmode/modules/configure_local_component.php:381 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 -#: ../../godmode/modules/manage_network_components_form_wizard.php:395 -#: ../../godmode/modules/manage_network_components_form_wizard.php:437 -#: ../../godmode/modules/manage_network_components_form_common.php:192 -#: ../../godmode/modules/manage_network_components_form_common.php:233 -#: ../../godmode/massive/massive_edit_modules.php:610 -#: ../../godmode/massive/massive_edit_modules.php:701 -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/agentes/module_manager_editor_common.php:520 -msgid "Inverse interval" -msgstr "条件の反転" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1090 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1622 -#: ../../godmode/agentes/module_manager_editor_web.php:224 -msgid "Proxy URL" -msgstr "プロキシURL" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1095 -msgid "Web configuration" -msgstr "ウェブ設定" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1289 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1731 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1738 -msgid "Str: " -msgstr "文字列: " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -msgid " Inverse interval " -msgstr " 条件の反転 " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1371 -msgid "Alerts in module" -msgstr "モジュール内のアラート" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1618 -msgid "Checks" -msgstr "チェック" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1829 -msgid "Deleted modules" -msgstr "削除済エージェント" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2017 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2117 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2672 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2791 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2882 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3077 -msgid "Another module already exists with the same name" -msgstr "同じ名前のモジュールが既に存在します" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2029 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2124 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2684 -#, php-format -msgid "Error adding module %s" -msgstr "モジュール %s 追加エラー" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2038 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2133 -msgid "There was an error creating the alerts, the operation has been cancelled" -msgstr "アラート作成でエラーが発生しました。操作はキャンセルされました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 -#: ../../enterprise/godmode/policies/policy_modules.php:919 -msgid "Successfully added module." -msgstr "モジュールを追加しました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2222 -#, php-format -msgid "Could not create agent %s" -msgstr "エージェント %s を作成できませんでした" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2235 -msgid "Agent successfully added" -msgstr "エージェントを追加しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2256 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2374 -#, php-format -msgid "%s Modules created" -msgstr "%s モジュールを作成しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2332 -#, php-format -msgid "Could not update agent %s" -msgstr "エージェント %s を更新できませんでした" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2380 -#, php-format -msgid "%s Modules deleted" -msgstr "%s モジュールを削除しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2696 -msgid "There was an error creating the alerts, the operation has been cancelled ." -msgstr "アラート作成エラーです。操作はキャンセルされました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2726 -msgid "Module successfully added." -msgstr "モジュールを追加しました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2798 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2889 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3084 -#, php-format -msgid "Error updating module %s" -msgstr "モジュール %s の更新エラー" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2820 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2911 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3106 -msgid "There was an error updating the alerts, the operation has been cancelled" -msgstr "アラートの更新でエラーが発生しました。操作はキャンセルされました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2841 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2932 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3127 -msgid "Successfully updated module." -msgstr "モジュールを更新しました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3507 -msgid "Manage agent modules" -msgstr "エージェントモジュール管理" - -#: ../../enterprise/meta/include/functions_alerts_meta.php:137 -#: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:237 -msgid "Commands" -msgstr "コマンド" - -#: ../../enterprise/meta/include/functions_alerts_meta.php:141 -msgid "Calendar" -msgstr "カレンダー" - -#: ../../enterprise/meta/include/functions_agents_meta.php:478 -#: ../../enterprise/meta/include/functions_agents_meta.php:542 -#: ../../enterprise/meta/include/functions_agents_meta.php:577 -msgid "Agents movement" -msgstr "エージェント移動" - -#: ../../enterprise/meta/include/functions_agents_meta.php:489 -#: ../../enterprise/meta/include/functions_agents_meta.php:557 -msgid "Provisioning management" -msgstr "プロビジョニング管理" - -#: ../../enterprise/meta/include/functions_agents_meta.php:500 -#: ../../enterprise/meta/include/functions_agents_meta.php:567 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:422 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:680 -msgid "Agent autoconfiguration" -msgstr "エージェント自動設定" - -#: ../../enterprise/meta/include/functions_agents_meta.php:511 -#: ../../enterprise/meta/include/functions_agents_meta.php:547 -#: ../../enterprise/meta/include/functions_agents_meta.php:552 -msgid "Group management" -msgstr "グループ管理" - -#: ../../enterprise/meta/include/functions_agents_meta.php:522 -msgid "Tree group" -msgstr "ツリーグループ" - -#: ../../enterprise/meta/include/functions_agents_meta.php:562 -msgid "Provisioning rules management" -msgstr "プロビジョニングルール管理" - -#: ../../enterprise/meta/include/functions_agents_meta.php:572 -msgid "Colecctions" -msgstr "コレクション" - -#: ../../enterprise/meta/include/functions_agents_meta.php:605 -msgid "Agents Management" -msgstr "エージェント管理" - -#: ../../enterprise/meta/include/functions_groups_meta.php:114 -#, php-format -msgid "Error Duplicate name (%s) " -msgstr "名前重複エラー (%s) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:132 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(重複 ID (%d) エラー) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:153 -msgid "Error Duplicate name" -msgstr "名前重複エラー" - -#: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 -#: ../../godmode/groups/group_list.php:667 -#, php-format -msgid "Error connecting to %s" -msgstr "%s への接続エラー" - -#: ../../enterprise/meta/include/functions_components_meta.php:80 -#: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:80 -msgid "Component groups" -msgstr "コンポーネントグループ管理" - -#: ../../enterprise/meta/include/functions_components_meta.php:88 -#: ../../enterprise/meta/include/functions_components_meta.php:139 -#: ../../enterprise/godmode/menu.php:99 ../../godmode/menu.php:153 -msgid "Local components" -msgstr "ローカルコンポーネント" - -#: ../../enterprise/meta/include/functions_components_meta.php:96 -#: ../../enterprise/meta/include/functions_components_meta.php:143 -msgid "Network components" -msgstr "コンポーネント管理" - -#: ../../enterprise/meta/include/functions_components_meta.php:104 -#: ../../enterprise/meta/include/functions_components_meta.php:147 -msgid "Plugin management" -msgstr "プラグイン管理" - -#: ../../enterprise/meta/include/functions_components_meta.php:124 -#: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin.php:295 ../../godmode/servers/plugin_registration.php:99 -msgid "Plugin registration" -msgstr "プラグインの登録" - -#: ../../enterprise/meta/include/functions_components_meta.php:153 -msgid "Create plugin" -msgstr "プラグイン作成" - -#: ../../enterprise/meta/include/functions_components_meta.php:155 -msgid "Edit plugin" -msgstr "プラグイン編集" - -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 -#: ../../godmode/massive/massive_edit_modules.php:468 -msgid "Agent Status" -msgstr "エージェントの状態" - -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 -msgid "No init" -msgstr "未初期化" - -#: ../../enterprise/meta/monitoring/group_view.php:55 -msgid "Group View" -msgstr "グループ表示" - -#: ../../enterprise/meta/monitoring/group_view.php:151 -msgid "Summary by status" -msgstr "状態ごとのまとめ" - -#: ../../enterprise/meta/monitoring/group_view.php:160 -#: ../../enterprise/meta/monitoring/group_view.php:172 -msgid "% Agents not init" -msgstr "未初期化エージェント%" - -#: ../../enterprise/meta/monitoring/group_view.php:163 -msgid "% Agents Warning" -msgstr "% エージェントが警告" - -#: ../../enterprise/meta/monitoring/group_view.php:166 -msgid "% Agents OK" -msgstr "% エージェントが正常" - -#: ../../enterprise/meta/monitoring/group_view.php:169 -msgid "% Agents Unknown" -msgstr "% のエージェントが不明状態" - -#: ../../enterprise/meta/monitoring/group_view.php:177 -msgid "% Monitors Critical" -msgstr "障害状態モジュール%" - -#: ../../enterprise/meta/monitoring/group_view.php:180 -msgid "% Monitors Warning" -msgstr "警告状態モジュール%" - -#: ../../enterprise/meta/monitoring/group_view.php:183 -msgid "% Monitors OK" -msgstr "正常状態モジュール%" - -#: ../../enterprise/meta/monitoring/group_view.php:186 -msgid "% Monitors Unknown" -msgstr "不明状態モジュール%" - -#: ../../enterprise/meta/monitoring/group_view.php:189 -msgid "% Monitors Not init" -msgstr "未初期化モジュール%" - -#: ../../enterprise/meta/monitoring/group_view.php:217 -#: ../../enterprise/meta/monitoring/group_view.php:223 -msgid "This data doesn't show in realtime" -msgstr "このデータはリアルタイムでは表示されません" - -#: ../../enterprise/meta/monitoring/group_view.php:234 -msgid "Group or Tag" -msgstr "グループまたはタグ" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 -msgid "Custom fields View" -msgstr "カスタムフィールド表示" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 -msgid "Custom Fields View" -msgstr "カスタムフィールド表示" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 -msgid "Status agents" -msgstr "エージェント状態" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 -msgid "Status module" -msgstr "モジュール状態" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 -msgid "Custom Fields Data" -msgstr "カスタムフィールドデータ" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 -msgid "Total counters" -msgstr "全カウンタ" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 -msgid "Total Agents" -msgstr "全エージェント" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 -msgid "Total Modules" -msgstr "全モジュール" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 -msgid "I.P" -msgstr "IP" - -#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 -msgid "There are no custom search defined." -msgstr "カスタム検索が定義されていません。" - -#: ../../enterprise/meta/monitoring/tactical.php:251 -msgid "Report of state" -msgstr "状態レポート" - -#: ../../enterprise/meta/monitoring/tactical.php:279 -msgid "Report of events" -msgstr "イベントレポート" - -#: ../../enterprise/meta/monitoring/tactical.php:284 -msgid "Info of state in events" -msgstr "イベントの状態" - -#: ../../enterprise/meta/monitoring/tactical.php:302 -msgid "More events" -msgstr "イベント追加" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 -#: ../../enterprise/meta/advanced/massive_operations.php:54 -#, php-format -msgid "You should centralise management in order to use Wizard section. Please go to %s" -msgstr "ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "追加しようとしているアラートは、アラート一覧にすでにあります。" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 -msgid "Are you sure? If the agent is on a policy, it will be removed from the policy." -msgstr "よろしいですか? エージェントがポリシーにある場合はポリシーから削除されます。" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 -#: ../../godmode/reporting/graph_builder.graph_editor.php:367 -msgid "Please, select a module" -msgstr "モジュールを選択してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 -msgid "Please, select an alert" -msgstr "アラートを選択してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 -msgid "Please, select an agent" -msgstr "エージェントを選択してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 -msgid "No agent name specified" -msgstr "エージェント名が定義されていません。" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 -msgid "Another agent already exists with the same name" -msgstr "他のエージェントがすでに同じ名前で存在します" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:213 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 -#, php-format -msgid "Cannot connect to %s instance." -msgstr "%s インスタンスに接続できません。" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 -#: ../../godmode/agentes/module_manager_editor_common.php:627 -#: ../../godmode/agentes/module_manager_editor_common.php:629 -#, php-format -msgid "Agent interval x %s" -msgstr "エージェント実行間隔 x %s" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 -msgid "Advanced configuration" -msgstr "拡張設定" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 -#: ../../enterprise/godmode/policies/policy_modules.php:380 -msgid "Edit module" -msgstr "モジュールの編集" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 -msgid "Please, set a name" -msgstr "名前を設定してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 -msgid "Invalid characters founded in module name" -msgstr "モジュール名に不正な文字があります" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 -msgid "Please, set an interval" -msgstr "間隔を設定してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:237 ../../godmode/menu.php:71 -#: ../../godmode/agentes/configurar_agente.php:818 -#: ../../godmode/agentes/configurar_agente.php:840 -#: ../../godmode/agentes/modificar_agente.php:108 -msgid "Manage agents" -msgstr "エージェント管理" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:286 -msgid "Select the agent to be edited or deleted" -msgstr "編集または削除するエージェントを選択" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 -#: ../../mobile/operation/agent.php:148 ../../mobile/operation/modules.php:241 -#: ../../mobile/operation/visualmaps.php:189 ../../mobile/operation/visualmap.php:255 -#: ../../mobile/operation/tactical.php:102 ../../mobile/operation/alerts.php:199 -#: ../../mobile/operation/events.php:614 ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 ../../mobile/operation/agents.php:209 -#: ../../mobile/operation/groups.php:82 -#: ../../godmode/alerts/configure_alert_action.php:395 -#: ../../godmode/groups/configure_group.php:272 -msgid "Back" -msgstr "戻る" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:335 -msgid "Manage modules" -msgstr "モジュール管理" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:381 -msgid "Select the agent where the module will be created" -msgstr "モジュールを作成するエージェントを選択" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:394 -msgid "Create Module" -msgstr "モジュールの作成" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:451 -msgid "Select the module to be edited or deleted" -msgstr "編集または削除するモジュールの選択" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:546 -msgid "Error creating alert" -msgstr "アラート作成エラー" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:510 -msgid "Alert could not be created" -msgstr "アラートの作成ができませんでした" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -msgid "Perform create alert" -msgstr "アラート作成の実行" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:534 -msgid "Alert created correctly" -msgstr "アラートを作成しました" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 -msgid "Alert template must be setted" -msgstr "アラートテンプレートを設定する必要があります" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:589 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 -msgid "Error updating alert" -msgstr "アラート更新エラー" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -msgid "Something gone wrong with alert update" -msgstr "アラート更新で何らかの問題が発生しました" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:604 -msgid "Perform update alert" -msgstr "アラート更新の実行" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:608 -msgid "Alert updated correctly" -msgstr "アラートを濃い更新しました" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:626 -msgid "Template must be set." -msgstr "テンプレートを設定する必要があります" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:651 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 -#: ../../godmode/snmpconsole/snmp_alert.php:91 -msgid "Create alert" -msgstr "アラート作成" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:656 -#: ../../godmode/alerts/alert_list.php:494 ../../godmode/alerts/alert_list.php:496 -#: ../../godmode/users/configure_profile.php:291 -msgid "Manage alerts" -msgstr "アラート管理" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:719 -msgid "Select the module where the alert will be created" -msgstr "アラートを作成するモジュールの選択" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:801 -msgid "Select the alert to be edited or deleted" -msgstr "編集または削除するアラートの選択" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -#: ../../godmode/modules/manage_network_components_form_wizard.php:335 -#: ../../godmode/massive/massive_delete_modules.php:323 -#: ../../godmode/massive/massive_edit_modules.php:309 -msgid "Module type" -msgstr "モジュールタイプ" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Web check" -msgstr "ウェブチェック" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 -msgid "Module description" -msgstr "モジュールの説明" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 -msgid "Step by step wizard" -msgstr "段階的ウィザード" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 -msgid "Click Create to continue" -msgstr "続けるには作成をクリックします" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 -msgid "Edit alert" -msgstr "アラート編集" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 -msgid "Create new template" -msgstr "新規テンプレートの作成" - -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 -msgid "Create new action" -msgstr "新規アクションの作成" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 -msgid "Edit agent" -msgstr "エージェントの編集" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 -msgid "Please, set a valid IP/Name address" -msgstr "正しい IPアドレス/ホスト名を設定してください" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209 -msgid "Please, select a group first" -msgstr "最初にグループを選択してください" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 -#, php-format -msgid "Provisioning custom data %s successfully deleted." -msgstr "プロビジョニングカスタムデータ %s を削除しました。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 -#, php-format -msgid "Cannot delete custom data %s." -msgstr "カスタムデータ %s を削除できませんでした。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 -msgid "There was an error when moving the custom provisioning data." -msgstr "カスタムプロビジョニングデータの移動中にエラーです。" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:27 -msgid "" -"Be aware that group synchronization can change the group configuration of the node" -msgstr "" -"グループの同期により、ノードのグループ設定が変更される可能性があることに注意してくださ" -"い" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.relations.php:96 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:46 -#: ../../enterprise/meta/advanced/metasetup.log.php:41 -#: ../../enterprise/meta/advanced/metasetup.visual.php:51 -#, php-format -msgid "Could not be update: Error in %s" -msgstr "更新できませでした、%s でエラーです。" - -#: ../../enterprise/meta/advanced/metasetup.auth.php:54 -#: ../../enterprise/meta/advanced/metasetup.relations.php:103 -#: ../../enterprise/meta/advanced/metasetup.performance.php:54 -#: ../../enterprise/meta/advanced/metasetup.setup.php:86 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.log.php:48 -#: ../../enterprise/meta/advanced/metasetup.visual.php:58 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:85 -msgid "Successfully update" -msgstr "更新しました" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 -#, php-format -msgid "Error creating %s policies" -msgstr "%s ポリシー作成エラー" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:259 -#, php-format -msgid "Created %s policies" -msgstr "%s ポリシーを作成しました" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:264 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "ポリシーモジュールの作成(%s)/更新(%s)エラー" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "ポリシーモジュールを作成(%s)/更新(%s)しました" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:273 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "%s ポリシーモジュールの削除エラー" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:277 -#, php-format -msgid "Deleted %s policy modules" -msgstr "%s ポリシーモジュールを削除しました" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:282 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "%s ポリシーアラートの作成エラー" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:286 -#, php-format -msgid "Created %s policy alerts" -msgstr "%s ポリシーアラートを作成しました" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:291 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "%s ポリシーアラートの削除エラー" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:295 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "%s ポリシーアラートを削除しました" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:321 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199 -#: ../../godmode/massive/massive_copy_modules.php:239 -msgid "Targets" -msgstr "対象" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 -msgid "Agent: " -msgstr "エージェント: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -msgid " already exists in target node" -msgstr " は対象ノードにすでに存在します" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 -msgid " group does not exist in target node" -msgstr " グループは対象ノードに存在しません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -msgid " policies definitions does not match with defined ones in target node" -msgstr " ポリシー定義は対象ノードの定義とマッチしません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -msgid " plugins does not exist in target node" -msgstr " プラグインは対象ノードに存在しません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -msgid " collections does not exist in target node" -msgstr " コレクションは対象ノードに存在しません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -msgid " inventory does not exist in target node" -msgstr " インベントリは対象ノードに存在しません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -msgid " alerts template does not exist in target node" -msgstr " アラートテンプレートは対象ノードに存在しません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 -msgid " alerts action does not exist in target node" -msgstr " アラートアクションは対象ノードに存在しません" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 -msgid "Exists agent conf for agent: " -msgstr "エージェントの設定ファイルが存在します: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 -msgid " please remove configuration file from target node." -msgstr " 対象ノードから設定ファイルを削除してください。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 -msgid "The agent: " -msgstr "エージェント: " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 -msgid " has been successfully added to the migration queue " -msgstr " はマイグレーションキューに追加されました " - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 -msgid " has not been added due to problems in the insertion" -msgstr " は挿入で問題が発生したため追加されませんでした" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 -#, php-format -msgid "The agent: %d has already been added to the migration queue" -msgstr "エージェント: %d はマイグレーションキューにすでに追加されています" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 -msgid "Problems delete queue" -msgstr "キューの削除で問題が発生しました" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 -msgid "Move Agents" -msgstr "エージェント移動" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 -msgid "Source Server" -msgstr "ソースサーバ" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 -msgid "Destination Server" -msgstr "対象サーバ" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 -msgid "Agents to move" -msgstr "移動するエージェント" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 -msgid "Add agents to destination server" -msgstr "対象サーバにエージェントを追加" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 -msgid "Remove agents to doesn't move to destination server" -msgstr "送り先サーバへ移動させないエージェントを削除" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 -msgid "Discard history data" -msgstr "ヒストリデータ削除" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 -msgid "Agents do not exist in target server." -msgstr "対象サーバにエージェントがありません。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 -msgid "Check group is synchronized with target server." -msgstr "対象サーバでグループが同期されていることを確認してください。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 -msgid "All policies needed are synchronized with target server." -msgstr "必要なすべてのポリシーは、対象サーバと同期されています。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 -msgid "All remote plugins needed are synchronized with target server." -msgstr "必要なすべてのプラグインは対象サーバと同期されています。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 -msgid "All collections needed are syncronized with target server." -msgstr "必要なすべてのコレクションは対象サーバと同期されています。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 -msgid "All remote inventory definitions needed are syncronized with target server." -msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 -msgid "All alert templates definitions needed are syncronized with target server." -msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 -msgid "All alert actions needed are syncronized with target server." -msgstr "必要なすべてのアラートアクションは対象サーバと同期されています。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 -msgid "Agents conf does not exists in target server." -msgstr "対象サーバにエージェントの設定がありません。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 -#, php-format -msgid "Both %s servers must be in the same version" -msgstr "両方の %s サーバは同じバージョンである必要があります" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 -msgid "Check target server ip address is set" -msgstr "対象サーバの IP アドレスが設定されているか確認してください。" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 -msgid "Move" -msgstr "移動" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 -msgid "Source node" -msgstr "ソースノード" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 -msgid "Target node" -msgstr "対象ノード" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 -msgid "Active db only" -msgstr "アクティブ DB のみ" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 -msgid "Creating modules in target node" -msgstr "対象ノードでモジュール作成中" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 -msgid "Disabling agent in source node and enabling in target one" -msgstr "ソースノードでエージェント無効化および対象ノードで有効化中" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 -msgid "Transferring data" -msgstr "データ転送中" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 -msgid "Creating agent in target node" -msgstr "対象ノードでエージェント作成中" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 -msgid "Queued" -msgstr "キューに入っています" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 -msgid "checking migration requirements" -msgstr "マイグレーション要求をチェック中" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:129 -#: ../../enterprise/godmode/policies/policy.php:198 -#: ../../enterprise/godmode/policies/policy.php:246 -msgid "Duplicated or incompatible operation in the queue" -msgstr "重複もしくは完了できない操作がキューにあります" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/godmode/policies/policy.php:186 -#: ../../enterprise/godmode/policies/policy.php:241 -msgid "Operation successfully added to the queue" -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:145 -#: ../../enterprise/meta/advanced/policymanager.apply.php:149 -#: ../../enterprise/meta/advanced/policymanager.apply.php:153 -#: ../../enterprise/godmode/policies/policy.php:192 -#: ../../enterprise/godmode/policies/policy.php:242 -msgid "Operation cannot be added to the queue" -msgstr "操作をキューに追加できません" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:186 -msgid "Apply Policies" -msgstr "ポリシー適用" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../mobile/include/functions_web.php:28 ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:333 -#: ../../godmode/menu.php:278 -msgid "Servers" -msgstr "サーバ" - -#: ../../enterprise/meta/advanced/agents_setup.php:64 -msgid "Propagation" -msgstr "伝播" - -#: ../../enterprise/meta/advanced/policymanager.php:58 -msgid "Policy Manager" -msgstr "ポリシー管理" - -#: ../../enterprise/meta/advanced/policymanager.php:75 -msgid "Apply policies" -msgstr "ポリシー適用" - -#: ../../enterprise/meta/advanced/policymanager.php:79 -#: ../../enterprise/meta/advanced/policymanager.php:97 -msgid "Policies queue" -msgstr "ポリシーキュー" - -#: ../../enterprise/meta/advanced/policymanager.php:93 -msgid "Policies apply" -msgstr "ポリシー適用" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:58 -#: ../../enterprise/godmode/policies/policy_queue.php:96 -msgid "Operation successfully deleted from the queue" -msgstr "キューから操作を削除しました" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:59 -#: ../../enterprise/godmode/policies/policy_queue.php:97 -msgid "Operation cannot be deleted from the queue" -msgstr "キューから操作を削除できません" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:609 -msgid "Apply (database and files)" -msgstr "適用 (データベースおよびファイル)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:219 -#: ../../enterprise/meta/advanced/policymanager.queue.php:315 -#: ../../enterprise/godmode/policies/policy_queue.php:610 -#: ../../enterprise/godmode/policies/policy_queue.php:718 -msgid "Apply (only database)" -msgstr "適用 (データベースのみ)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:620 -msgid "Complete" -msgstr "完了" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:621 -msgid "Incomplete" -msgstr "未完了" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:688 -msgid "Policy " -msgstr "ポリシー" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:748 -#: ../../enterprise/godmode/policies/policy_queue.php:757 -msgid "Policy applying timeout" -msgstr "ポリシー適用タイムアウト" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:776 -msgid "Delete from queue" -msgstr "キューから削除" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:371 -msgid "Empty queue." -msgstr "キューが空です" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -#: ../../godmode/update_manager/update_manager.setup.php:168 -#: ../../godmode/update_manager/update_manager.setup.php:243 -msgid "Succesful Update the url config vars." -msgstr "URL 設定を更新しました。" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:80 -#: ../../godmode/update_manager/update_manager.setup.php:169 -#: ../../godmode/update_manager/update_manager.setup.php:244 -msgid "Unsuccesful Update the url config vars." -msgstr "URL 設定を更新できませんでした。" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:98 -msgid "" -"Please notice that some providers like Gmail or Office365 need to setup/enable " -"manually external connections using SMTP and you need to use STARTTLS on port 587.\n" -"\n" -"If you have manual settings in your pandora_server.conf, please note these settings " -"will ignore this console setup." -msgstr "" -"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で設定/有" -"効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意してくださ" -"い。\n" -"\n" -"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注意して" -"ください。" - -#: ../../enterprise/meta/advanced/metasetup.mail.php:104 -#: ../../godmode/setup/setup_general.php:518 -msgid "Mail configuration" -msgstr "メール設定" - -#: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:180 -msgid "Server deleted successfully" -msgstr "サーバを削除しました。" - -#: ../../enterprise/meta/advanced/servers.php:41 -#: ../../godmode/servers/modificar_server.php:182 -msgid "There was a problem deleting the server" -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/metasetup.relations.php:239 -msgid "Node Address Default" -msgstr "デフォルトノードアドレス" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:271 -#: ../../enterprise/meta/advanced/metasetup.relations.php:388 -msgid "This value will be the one returned by the API" -msgstr "この値は、APIによって返される値になります" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:305 -msgid "Import file" -msgstr "ファイルインポート" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:319 -msgid "Ip Gateway" -msgstr "IP ゲートウェイ" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:320 -#: ../../enterprise/meta/advanced/metasetup.relations.php:564 -msgid "Imei" -msgstr "IMEI" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:351 -msgid "Relation" -msgstr "関係" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:361 -#: ../../enterprise/meta/advanced/metasetup.relations.php:440 -msgid "Node Address" -msgstr "ノードアドレス" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:398 -msgid "Insert relation" -msgstr "関係の挿入" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:406 -msgid "Show list relations" -msgstr "関係一覧の表示" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:462 -msgid "Show Filters" -msgstr "フィルタ表示" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:549 -msgid "Node address" -msgstr "ノードアドレス" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:562 -msgid "Gateway" -msgstr "ゲートウェイ" - -#: ../../enterprise/meta/advanced/metasetup.relations.php:642 -msgid "There are no relations yet" -msgstr "関係がありません" - -#: ../../enterprise/meta/advanced/servers.build_table.php:34 -#: ../../godmode/servers/servers.build_table.php:52 -msgid "There are no servers configured into the database" -msgstr "データベースにサーバがありません。" - -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 -msgid "Lag" -msgstr "遅延" - -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 -msgid "Avg. Delay(sec)/Modules delayed" -msgstr "平均遅延(秒)/遅延モジュール" - -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 -msgid "T/Q" -msgstr "T/Q" - -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 -msgid "Threads / Queued modules currently" -msgstr "スレッド数 / 現在キューに溜まっているモジュール数" - -#: ../../enterprise/meta/advanced/servers.build_table.php:91 -#: ../../godmode/servers/servers.build_table.php:134 -msgid "This is a master server" -msgstr "マスタサーバです。" - -#: ../../enterprise/meta/advanced/servers.build_table.php:106 -#: ../../enterprise/meta/advanced/servers.build_table.php:112 -#: ../../godmode/servers/servers.build_table.php:153 -#: ../../godmode/servers/servers.build_table.php:159 -msgid "of" -msgstr "/" - -#: ../../enterprise/meta/advanced/servers.build_table.php:134 -#: ../../godmode/servers/servers.build_table.php:260 -msgid "Modules run by this server will stop working. Do you want to continue?" -msgstr "このサーバで動作しているモジュールを停止します。実行しますか?" - -#: ../../enterprise/meta/advanced/servers.build_table.php:160 -#: ../../godmode/servers/servers.build_table.php:287 -msgid "Tactical server information" -msgstr "モニタリングサーバの情報" - -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Module groups Management" -msgstr "モジュールグループ管理" - -#: ../../enterprise/meta/advanced/component_management.php:60 -msgid "OS Management" -msgstr "OS 管理" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 -#: ../../enterprise/extensions/translate_string.php:253 -msgid "Translation added successfully" -msgstr "翻訳を追加しました" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 -#: ../../enterprise/extensions/translate_string.php:255 -msgid "Translation string could not be created" -msgstr "翻訳文字列を作成できませんでした" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 -#: ../../enterprise/extensions/translate_string.php:268 -msgid "Translation updated successfully" -msgstr "翻訳を更新しました" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 -#: ../../enterprise/extensions/translate_string.php:270 -msgid "Translation string could not be updated" -msgstr "翻訳文字列を更新できませんでした" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/translate_string.php:314 -#: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:309 -#: ../../enterprise/godmode/policies/policies.php:326 -#: ../../enterprise/godmode/policies/policy_collections.php:248 -msgid "Free text for search (*)" -msgstr "検索文字列 (*)" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 -#: ../../enterprise/extensions/translate_string.php:334 -msgid "Original string" -msgstr "オリジナルの文字列" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 -#: ../../enterprise/extensions/translate_string.php:335 -msgid "Translation in selected language" -msgstr "選択した言語での翻訳" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 -#: ../../enterprise/extensions/translate_string.php:336 -msgid "Customize translation" -msgstr "翻訳カスタマイズ" - -#: ../../enterprise/meta/advanced/collections.editor.php:79 -#: ../../enterprise/meta/advanced/collections.data.php:320 -msgid "This console is not manager of this environment." -msgstr "このコンソールは、この環境の管理コンソールではありません。" - -#: ../../enterprise/meta/advanced/collections.editor.php:128 -#: ../../enterprise/meta/advanced/collections.editor.php:195 -#: ../../enterprise/godmode/agentes/collections.editor.php:161 -#: ../../enterprise/godmode/agentes/collections.editor.php:226 -msgid "Back to file explorer" -msgstr "ファイルエクスプローラへ戻る" - -#: ../../enterprise/meta/advanced/collections.editor.php:217 -#: ../../enterprise/godmode/agentes/collections.editor.php:248 -#: ../../godmode/servers/plugin.php:192 -msgid "Compatibility mode" -msgstr "互換モード" - -#: ../../enterprise/meta/advanced/collections.editor.php:269 -#: ../../enterprise/godmode/agentes/collections.editor.php:299 -msgid "Correct update file." -msgstr "ファイルを更新しました。" - -#: ../../enterprise/meta/advanced/collections.editor.php:270 -#: ../../enterprise/godmode/agentes/collections.editor.php:300 -msgid "Incorrect update file." -msgstr "ファイルの更新に失敗しました。" - -#: ../../enterprise/meta/advanced/collections.editor.php:403 -#: ../../enterprise/godmode/agentes/collections.editor.php:447 -msgid "Please, first save a new collection before to upload files." -msgstr "ファイルをアップロードする前に新規コレクションを保存してください。" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/setup/setup.php:125 ../../godmode/setup/setup.php:260 -#: ../../godmode/menu.php:334 -msgid "Performance" -msgstr "パフォーマンス" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:94 -msgid "Migration block size" -msgstr "マイグレーションブロックサイズ" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:104 -#: ../../godmode/setup/performance.php:612 -msgid "Events response max. execution" -msgstr "イベント応答の最大実行" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:106 -msgid "Number of events that will perform the desired action at the same time" -msgstr "目的のアクションを同時に実行するイベントの数" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:142 -#: ../../godmode/setup/performance.php:658 -#, php-format -msgid "" -"%s web2image cache system cleanup. It is always cleaned up after perform an upgrade" -msgstr "" -"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は常にク" -"リーンアップされます" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:147 -#: ../../godmode/setup/performance.php:665 -msgid "PhantomJS cache cleanup " -msgstr "PhantomJS キャッシュのクリーンアップ" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:154 -#: ../../godmode/setup/performance.php:672 -msgid "No scheduled" -msgstr "スケジュールされていません" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:155 -#: ../../godmode/setup/performance.php:673 -msgid "Each week" -msgstr "各週" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:156 -#: ../../godmode/setup/performance.php:674 -msgid "Each day" -msgstr "それぞれの日" - -#: ../../enterprise/meta/advanced/cron_main.php:75 -#: ../../enterprise/extensions/cron.php:156 -msgid "Cron jobs" -msgstr "Cron ジョブ" - -#: ../../enterprise/meta/advanced/cron_main.php:87 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 -msgid "Add new job" -msgstr "新規ジョブ追加" - -#: ../../enterprise/meta/advanced/cron_main.php:173 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 -msgid "Only administrator users can create this type of functions" -msgstr "管理者ユーザのみがこのタイプの機能を作成できます" - -#: ../../enterprise/meta/advanced/cron_main.php:244 -#: ../../enterprise/meta/advanced/cron_main.php:278 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 -msgid "Edit job" -msgstr "ジョブ編集" - -#: ../../enterprise/meta/advanced/cron_main.php:333 -msgid "In order to make backups it is necessary to have mysqldump on your console." -msgstr "" -"バックアップを作成するには、コンソールに mysqldump をインストールする必要があります。" - -#: ../../enterprise/meta/advanced/cron_main.php:407 -msgid "Date format in Pandora is year/month/day" -msgstr "Pandora での日付フォーマットは、年/月/日 です" - -#: ../../enterprise/meta/advanced/cron_main.php:418 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 です" - -#: ../../enterprise/meta/advanced/collections.data.php:76 -#: ../../enterprise/godmode/agentes/collections.data.php:174 -msgid "Unable to create the collection. Another collection with the same short name." -msgstr "コレクションを作成できません。同じ短い名前で他のコレクションがあります。" - -#: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -#: ../../enterprise/godmode/agentes/collections.data.php:217 -msgid "Unable to create the collection" -msgstr "コレクションを作成できません" - -#: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -msgid "Invalid characters in short name" -msgstr "短い名前に不正な文字が含まれています" - -#: ../../enterprise/meta/advanced/collections.data.php:111 -#: ../../enterprise/godmode/agentes/collections.data.php:59 -#: ../../enterprise/godmode/agentes/collections.data.php:167 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:211 -#: ../../enterprise/godmode/agentes/collections.data.php:238 -#: ../../enterprise/godmode/agentes/collections.data.php:294 -msgid "Manager configuration > New" -msgstr "設定管理 > 新規" - -#: ../../enterprise/meta/advanced/collections.data.php:142 -#: ../../enterprise/meta/advanced/collections.data.php:190 -#: ../../enterprise/godmode/agentes/collections.data.php:244 -#: ../../enterprise/godmode/agentes/collections.data.php:302 -msgid "Unable to create the collection." -msgstr "コレクションを作成できません。" - -#: ../../enterprise/meta/advanced/collections.data.php:163 -#: ../../enterprise/meta/advanced/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:270 -msgid "Correct create collection" -msgstr "コレクションを作成しました" - -#: ../../enterprise/meta/advanced/collections.data.php:231 -#: ../../enterprise/godmode/agentes/collections.editor.php:84 -#: ../../enterprise/godmode/agentes/collections.data.php:106 -#: ../../enterprise/godmode/agentes/collections.data.php:262 -#: ../../enterprise/godmode/agentes/collections.data.php:351 -#: ../../enterprise/godmode/agentes/collections.data.php:367 -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Manager configuration > Edit " -msgstr "設定管理 > 編集 " - -#: ../../enterprise/meta/advanced/collections.data.php:287 -#: ../../enterprise/godmode/agentes/collections.data.php:358 -msgid "Unable to edit the collection, empty name." -msgstr "コレクションを編集できません。名前が空です。" - -#: ../../enterprise/meta/advanced/collections.data.php:300 -#: ../../enterprise/godmode/agentes/collections.data.php:373 -msgid "Unable to edit the collection." -msgstr "コレクションを編集できません。" - -#: ../../enterprise/meta/advanced/collections.data.php:345 -#: ../../enterprise/godmode/agentes/collections.data.php:438 -msgid "Recreate file" -msgstr "ファイル再生成" - -#: ../../enterprise/meta/advanced/collections.data.php:373 -#: ../../enterprise/meta/advanced/collections.data.php:374 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/agentes/collection_manager.php:281 -#: ../../enterprise/godmode/agentes/collection_manager.php:282 -#: ../../enterprise/godmode/agentes/collections.data.php:467 -#: ../../enterprise/godmode/agentes/collections.data.php:468 -msgid "Need to regenerate" -msgstr "再生成が必要です" - -#: ../../enterprise/meta/advanced/collections.data.php:397 -#: ../../enterprise/godmode/agentes/collections.data.php:492 -msgid "Group:" -msgstr "グループ:" - -#: ../../enterprise/meta/advanced/collections.data.php:420 -#: ../../enterprise/godmode/agentes/collections.data.php:514 -msgid "Short name:" -msgstr "短い名前:" - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "" -"The collection's short name is the name of dir in attachment dir and the package " -"collection." -msgstr "" -"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレクトリ名" -"です。" - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "短い名前は、アルファベットと、- および _ のみ利用できます。" - -#: ../../enterprise/meta/advanced/collections.data.php:426 -#: ../../enterprise/godmode/agentes/collections.data.php:519 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" - -#: ../../enterprise/meta/advanced/license_meta.php:52 ../../godmode/setup/license.php:80 -msgid "Failed to Update license file" -msgstr "ライセンスファイルのアップデートに失敗しました" - -#: ../../enterprise/meta/advanced/license_meta.php:59 -msgid "Metaconsole and all nodes license updated" -msgstr "メタコンソールと全ノードのライセンスを更新しました" - -#: ../../enterprise/meta/advanced/license_meta.php:61 -#, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "メタコンソールのライセンスを更新しましたが、%d/%d ノードの同期に失敗しました" - -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "コンソール設定" - -#: ../../enterprise/meta/advanced/metasetup.php:63 -#: ../../enterprise/meta/advanced/metasetup.php:216 -msgid "General setup" -msgstr "一般設定" - -#: ../../enterprise/meta/advanced/metasetup.php:71 -#: ../../enterprise/meta/advanced/metasetup.php:219 -msgid "Passwords setup" -msgstr "パスワード設定" - -#: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/meta/advanced/metasetup.php:227 ../../godmode/setup/setup.php:113 -#: ../../godmode/setup/setup.php:255 ../../godmode/menu.php:331 -msgid "Authentication" -msgstr "認証" - -#: ../../enterprise/meta/advanced/metasetup.php:101 -#: ../../enterprise/meta/advanced/metasetup.php:231 -msgid "Visual setup" -msgstr "表示設定" - -#: ../../enterprise/meta/advanced/metasetup.php:109 -#: ../../enterprise/meta/advanced/metasetup.php:235 -msgid "Performance setup" -msgstr "パフォーマンス設定" - -#: ../../enterprise/meta/advanced/metasetup.php:117 -#: ../../enterprise/meta/advanced/metasetup.php:239 -#: ../../godmode/setup/file_manager.php:46 ../../godmode/menu.php:399 -msgid "File manager" -msgstr "ファイルマネージャ" - -#: ../../enterprise/meta/advanced/metasetup.php:125 -#: ../../enterprise/meta/advanced/metasetup.php:243 -msgid "Strings translation" -msgstr "文字列翻訳" - -#: ../../enterprise/meta/advanced/metasetup.php:133 -#: ../../enterprise/meta/advanced/metasetup.php:247 -msgid "Mail" -msgstr "メール" - -#: ../../enterprise/meta/advanced/metasetup.php:141 -#: ../../enterprise/meta/advanced/metasetup.php:251 ../../godmode/setup/setup.php:204 -#: ../../godmode/setup/setup.php:300 ../../godmode/menu.php:355 -msgid "Notifications" -msgstr "通知" - -#: ../../enterprise/meta/advanced/metasetup.php:153 -msgid "Relations rules" -msgstr "関係ルール" - -#: ../../enterprise/meta/advanced/metasetup.php:166 -msgid "Options Update Manager" -msgstr "アップデートマネージャオプション" - -#: ../../enterprise/meta/advanced/metasetup.php:174 -msgid "Options Update Journal" -msgstr "アップデートジャーナルオプション" - -#: ../../enterprise/meta/advanced/metasetup.php:182 -msgid "Offline Update Manager" -msgstr "オフラインアップデートマネージャ" - -#: ../../enterprise/meta/advanced/metasetup.php:190 -msgid "Online Update Manager" -msgstr "オンラインアップデートマネージャ" - -#: ../../enterprise/meta/advanced/metasetup.php:211 -msgid "Consoles setup" -msgstr "コンソール設定" - -#: ../../enterprise/meta/advanced/metasetup.php:255 -msgid "Relations Rules" -msgstr "関係ルール" - -#: ../../enterprise/meta/advanced/metasetup.php:259 -msgid "Online Update Options" -msgstr "オンラインアップデートオプション" - -#: ../../enterprise/meta/advanced/metasetup.php:263 -msgid "Online Update Journal" -msgstr "オンラインアップデートジャーナル" - -#: ../../enterprise/meta/advanced/metasetup.php:268 -msgid "Online Update Offline" -msgstr "オンラインアップデート オフライン" - -#: ../../enterprise/meta/advanced/metasetup.php:275 -msgid "Online Update Online" -msgstr "オンラインアップデート オンライン" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:164 -#: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/alerts/configure_alert_template.php:933 -#: ../../godmode/alerts/configure_alert_template.php:974 -#: ../../godmode/alerts/configure_alert_template.php:1137 -#: ../../godmode/alerts/alert_commands.php:141 -#: ../../godmode/alerts/alert_commands.php:182 -#: ../../godmode/users/configure_user.php:1210 -msgid "Basic" -msgstr "基本" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 -msgid "Database" -msgstr "データベース" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#, php-format -msgid "" -"If SSL is not properly configured, you will lose access to the %s Console. Do you " -"want to continue?" -msgstr "" -"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けますか?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Directory where temporary data is stored." -msgstr "テンポラリデータの保存ディレクトリ" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." -msgstr "phantomjs バイナリファイルが実行権限付きで置かれているディレクトリ。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:193 -#: ../../godmode/setup/setup_general.php:296 -msgid "Change timezone" -msgstr "タイムゾーン変更" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:198 -#, php-format -msgid "" -"Set this value when you need your %s to be accessible via a public URL (for example " -"using Apache mod_proxy settings)." -msgstr "" -"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、Apache " -"mod_proxy 設定を使用)、この値を設定します。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:202 -msgid "Force using defined public URL)." -msgstr "定義された公開 URL を使用するように強制します)。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:209 -#, php-format -msgid "" -"If public URL is not properly configured, you will lose access to the %s Console. Do " -"you want to continue?" -msgstr "" -"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 続けま" -"すか?" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -msgid "" -"Disable the definition of custom filters in the live view. Only existing filters can " -"be used." -msgstr "" -"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利用可能" -"です。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -msgid "The string modules with several lines show as command output" -msgstr "複数行の文字列モジュールはコマンドの出力として表示されます。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:227 -msgid "Customize sections" -msgstr "セクションのカスタマイズ" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:248 -msgid "Disabled sections" -msgstr "無効化セクション" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:250 -msgid "Enabled sections" -msgstr "有効化セクション" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:255 -msgid "Push selected sections to enable it" -msgstr "選択したセクションを有効にする" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:257 -msgid "Pop selected sections to disable it" -msgstr "選択したセクションを無効にする" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -msgid "Please be careful if you put a password put https access." -msgstr "パスワードの設定には注意してください。httpsアクセスを使ってください。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:289 -#: ../../enterprise/godmode/setup/setup.php:98 -msgid " Bytes" -msgstr " バイト" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -msgid "Max. agents to add in policy concurrently" -msgstr "ポリシーに同時に追加する最大エージェント" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 -msgid "" -"Maximum allowed number of agents to be added in policy concurrently (adding a high " -"number of agents at a time can lead to performance issues)" -msgstr "" -"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを追加する" -"と、パフォーマンスの問題が発生する可能性があります)" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Synchronization queue items warn detection" -msgstr "同期キューアイテムの警告を検出" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Number of items in synchronization queue before be notified, per node" -msgstr "ノードごとの通知前の同期キュー内のアイテム数" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:298 -msgid "Enable Agent API" -msgstr "エージェント API の有効化" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:320 -msgid "Enable log viewer" -msgstr "ログビューワの有効化" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -msgid "Log location: pandora_console/log/console.log" -msgstr "ログの場所: pandora_console/log/console.log" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -msgid "Log location: pandora_console/log/audit.log" -msgstr "ログの場所: pandora_console/log/audit.log" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:105 -#, php-format -msgid "Node %s is not recognized as metaconsole node." -msgstr "ノード %s はメタコンソールノードとして認識されません。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:112 -#, php-format -msgid "Node %s license missmatch." -msgstr "ノード %s のライセンスが不整合です。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:119 -#, php-format -msgid "Cannot connect to node %s" -msgstr "ノード %s へ接続できません" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 -#, php-format -msgid "Unknown error synchronizing %s" -msgstr "%s 同期中に不明なエラーです" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:136 -#, php-format -msgid "Synchronized %d nodes, but some failed to synchronize %s" -msgstr "%d ノードを同期しましたが、%s への’同期でいくつか失敗しました" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:143 -#, php-format -msgid "Successfully synchronized all nodes (%d)" -msgstr "全ノードを同期しました (%d)" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 -msgid "Node synchronization process failed" -msgstr "ノード同期処理に失敗しました。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:210 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -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 にあるフォームを使用してください。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:220 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:86 -msgid "Could not be update" -msgstr "更新できませんでした" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 -msgid "Could not be created, duplicated register found." -msgstr "作成できませんでした。重複登録があります。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -msgid "Node synchronization process failed: " -msgstr "ノード同期処理が失敗しました: " - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -#: ../../godmode/setup/license.php:101 -msgid "Unknown error" -msgstr "不明なエラー" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 -msgid "Successfully registered" -msgstr "登録しました" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:344 -#, php-format -msgid "Could not be registered %s" -msgstr "%s を登録できませんでした" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 -msgid "Successfully delete" -msgstr "削除しました" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:371 -msgid "Could not be delete" -msgstr "削除できませんでした" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:413 -#, php-format -msgid "Could not be disabled: %s" -msgstr "無効化できませんでした: %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:429 -#, php-format -msgid "" -"System is centralised, but you just modify nodes registered, please go to %s to " -"perform a database merge process." -msgstr "" -"システムは中央管理になっています。登録されているノードを変更するだけです。%s に移動し" -"て、データベースの管理処理を実行してください。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 -msgid "This node will not be usable until unifying the environment" -msgstr "このノードは、環境を統合するまで使用できません" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:507 -#, php-format -msgid "%s Metaconsole item edition" -msgstr "%s メタコンソールアイテム編集" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:513 -msgid "Custom label to identify this setup." -msgstr "この設定を識別するためのカスタムラベル。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -msgid "Console URL" -msgstr "コンソール URL" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:516 -#, php-format -msgid "Full path to %s console (without index.php). Example %s" -msgstr "%s コンソールへのフルパス(index.php を除く)。例 %s" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:519 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -msgid "Auth token" -msgstr "認証トークン" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:520 -#, php-format -msgid "" -"Token previously configured on the destination %s console in order to use delegated " -"authentification." -msgstr "委任された認証を使用するための、宛先 %s コンソールで以前に設定されたトークン。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:544 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:233 -msgid "Console User" -msgstr "コンソールユーザ" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:553 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:237 -msgid "Console Password" -msgstr "コンソールパスワード" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:840 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:215 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:275 -msgid "DB Host" -msgstr "DB ホスト" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:573 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:219 -msgid "DB Name" -msgstr "DB 名" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:582 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 -msgid "DB User" -msgstr "DB ユーザ" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:591 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:228 -msgid "DB Password" -msgstr "DB パスワード" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:613 -msgid "Define database connection from Pandora FMS node to this Metaconsole" -msgstr "Pandora FMS ノードからメタコンソールへのデータベース接続定義" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 -msgid "Metaconsole DB Host" -msgstr "メタコンソール DB ホスト" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:644 -msgid "Metaconsole DB Name" -msgstr "メタコンソール DB 名" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:653 -msgid "Metaconsole DB User" -msgstr "メタコンソール DB ユーザ" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 -msgid "Metaconsole DB Password" -msgstr "メタコンソール DB パスワード" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:673 -#: ../../enterprise/godmode/setup/setup.php:250 -msgid "Metaconsole DB port" -msgstr "メタコンソール DB ポート" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:726 -msgid "Register empty node" -msgstr "空のノードを登録" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 -msgid "Register node with data to merge" -msgstr "マージするデータと合わせてノードを登録" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:769 -msgid "Node data will be wiped out" -msgstr "ノードデータは消去されます" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:770 -msgid "" -"Information contained in this node is not needed. Node information will be erased, " -"and replaced with new data from this metaconsole automatically after register the " -"node. Are you sure?" -msgstr "" -"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後にこのメ" -"タコンソールからの新しいデータに自動的に置き換えられます。よろしいですか?" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:786 -msgid "Node data will be merged" -msgstr "ノードデータはマージされます" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:787 -msgid "" -"Information contained in this node is useful. After register the node, you must " -"launch a merge process from command center, which will combine information in current " -"environment with information contained in this new node. Are you sure?" -msgstr "" -"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターからマージ処理" -"を起動する必要があります。これにより、現在の環境の情報がこの新しいノードに含まれる情報" -"とマージされます。よろしいですか?" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 -msgid "Compatibility" -msgstr "互換性" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 -msgid "Event replication" -msgstr "イベント複製" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 -msgid "Database sync" -msgstr "データベース同期" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:903 -msgid "New node" -msgstr "新規ノード" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:935 -msgid "Synchronize all" -msgstr "すべて同期" - -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "パスワード" - -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -#: ../../enterprise/godmode/setup/setup.php:484 -msgid " Caracters" -msgstr " 文字" - -#: ../../enterprise/meta/advanced/metasetup.password.php:105 -msgid "Set 0 if never expire." -msgstr "0 に設定すると期限切れは発生しません" - -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/godmode/setup/setup.php:513 -msgid " Days" -msgstr " 日" - -#: ../../enterprise/meta/advanced/metasetup.password.php:110 -#: ../../enterprise/godmode/setup/setup.php:533 -msgid " Minutes" -msgstr " 分" - -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid "Two attempts minimum" -msgstr "最小は 2回です" - -#: ../../enterprise/meta/advanced/metasetup.password.php:114 -#: ../../enterprise/godmode/setup/setup.php:544 -msgid " Attempts" -msgstr " 回" - -#: ../../enterprise/meta/advanced/collections.php:111 -msgid "Collection has been deleted" -msgstr "コレクションを削除しました" - -#: ../../enterprise/meta/advanced/collections.php:122 -#: ../../enterprise/meta/advanced/collections.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:94 -#: ../../enterprise/godmode/agentes/collections.php:188 -#: ../../enterprise/godmode/agentes/collections.php:210 -msgid "Successful create collection package." -msgstr "コレクションパッケージを作成しました。" - -#: ../../enterprise/meta/advanced/collections.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:95 -#: ../../enterprise/godmode/agentes/collections.php:211 -msgid "Can not create collection package." -msgstr "コレクションパッケージを作成できません。" - -#: ../../enterprise/meta/advanced/collections.php:154 -msgid "To manage collections you must activate centralized management" -msgstr "コレクションを管理するには、中央管理を有効化する必要があります" - -#: ../../enterprise/meta/advanced/collections.php:167 -#: ../../enterprise/meta/advanced/collections.php:173 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 -msgid "Search by username, fullname or email" -msgstr "ユーザ名、フルネーム、メールアドレスでの検索" - -#: ../../enterprise/meta/advanced/collections.php:199 -#: ../../godmode/users/user_list.php:451 -msgid "Users control filter" -msgstr "ユーザ制御フィルタ" - -#: ../../enterprise/meta/advanced/collections.php:208 -#: ../../enterprise/godmode/agentes/collections.php:245 -msgid "Error: The main directory of collections does not exist." -msgstr "エラー: コレクションのメインディレクトリが存在しません。" - -#: ../../enterprise/meta/advanced/collections.php:312 -#: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:328 -#: ../../enterprise/godmode/policies/policy_collections.php:170 -#: ../../enterprise/godmode/policies/policy_collections.php:264 -msgid "Short Name" -msgstr "短い名前" - -#: ../../enterprise/meta/advanced/collections.php:373 -#: ../../enterprise/godmode/agentes/collections.php:360 -msgid "Are you sure to delete?" -msgstr "削除しますがよろしいですか?" - -#: ../../enterprise/meta/advanced/collections.php:378 -#: ../../enterprise/meta/advanced/collections.php:379 -#: ../../enterprise/godmode/agentes/collections.php:361 -msgid "Delete collection" -msgstr "コレクションの削除" - -#: ../../enterprise/meta/advanced/collections.php:388 -#: ../../enterprise/godmode/agentes/collections.php:368 -msgid "Are you sure to re-apply?" -msgstr "再適用しますか?" - -#: ../../enterprise/meta/advanced/collections.php:389 -#: ../../enterprise/godmode/agentes/collections.php:369 -msgid "Re-Apply changes" -msgstr "変更の再適用" - -#: ../../enterprise/meta/advanced/collections.php:396 -#: ../../enterprise/godmode/agentes/collections.php:376 -msgid "Are you sure to apply?" -msgstr "適用しますか?" - -#: ../../enterprise/meta/advanced/collections.php:397 -#: ../../enterprise/godmode/agentes/collections.php:377 -msgid "Apply changes" -msgstr "変更を適用" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 -#: ../../godmode/menu.php:337 -msgid "Visual styles" -msgstr "画面設定" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:109 -#: ../../godmode/setup/setup_visuals.php:1257 -msgid "Example" -msgstr "例" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../godmode/setup/setup_visuals.php:1275 -msgid "Timestamp, time comparison, or compact mode" -msgstr "日時表示、経過時間表示、コンパクト表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:139 -#: ../../godmode/setup/setup_visuals.php:1277 -msgid "Comparation in rollover" -msgstr "経過時間表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:148 -#: ../../godmode/setup/setup_visuals.php:1278 -msgid "Timestamp in rollover" -msgstr "日時表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:157 -#: ../../godmode/setup/setup_visuals.php:1279 -msgid "Compact mode" -msgstr "コンパクト表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:197 -msgid "Data precision for reports and visual consoles" -msgstr "レポートとビジュアルコンソールのデータ精度" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:200 -msgid "Precision must be a integer number between 0 and 5" -msgstr "精度は 0 と 5 の間の整数でなければいけません" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:219 -msgid "Show percentile 95 in graphs" -msgstr "グラフに 95パーセントを表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:291 -#: ../../godmode/setup/setup_visuals.php:951 -msgid "On Boolean graphs" -msgstr "二値グラフ" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:294 -msgid "Graph TIP view" -msgstr "グラフ詳細表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:295 -msgid "This option may cause performance issues" -msgstr "このオプションはパフォーマンスの問題を発生させる可能性があります" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:309 -#: ../../godmode/setup/setup_visuals.php:970 -msgid "Show only average by default" -msgstr "デフォルトで平均の表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:971 -msgid "Show MAX/AVG/MIN by default" -msgstr "デフォルトで最大/平均/最小を表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:312 -#: ../../godmode/setup/setup_visuals.php:967 -msgid "Graph mode" -msgstr "グラフモード" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:986 -msgid "Zoom graphs:" -msgstr "グラフ倍率:" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:346 -#: ../../godmode/setup/setup_visuals.php:901 -msgid "Type of module charts" -msgstr "モジュールグラフのタイプ" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:369 -msgid "The number of elements retrieved for each instance in some views." -msgstr "一部のビュー内での各インスタンスの要素数" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:390 -msgid "Add new custom value to intervals" -msgstr "新たな間隔カスタム値の追加" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:505 -msgid "" -"You can place your favicon into the folder images/custom_favicon/. This file should " -"be in .ico format with a size of 16x16." -msgstr "" -"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、16x16 のサ" -"イズの .ico 形式である必要があります。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:531 -#: ../../godmode/setup/setup_visuals.php:212 -msgid "Custom background logo" -msgstr "カスタム背景ロゴ" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:533 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "カスタム画像を images/backgrounds/ フォルダに置くことができます。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:576 -#: ../../godmode/setup/setup_visuals.php:279 -msgid "Custom logo (menu)" -msgstr "カスタムロゴ(メニュー)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:607 -#: ../../godmode/setup/setup_visuals.php:284 -msgid "Custom logo collapsed (menu)" -msgstr "縮小カスタムロゴ(メニュー)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:638 -#: ../../godmode/setup/setup_visuals.php:289 -msgid "Custom logo (header white background)" -msgstr "カスタムロゴ(白背景ヘッダ)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:667 -#: ../../godmode/setup/setup_visuals.php:328 -msgid "Custom logo (login)" -msgstr "カスタムロゴ (ログイン)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:696 -#: ../../godmode/setup/setup_visuals.php:367 -msgid "Custom Splash (login)" -msgstr "カスタムスプラッシュ(ログイン)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:746 -#: ../../godmode/setup/setup_visuals.php:471 -msgid "Title (header)" -msgstr "タイトル(ヘッダ)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:750 -#: ../../godmode/setup/setup_visuals.php:476 -msgid "Subtitle (header)" -msgstr "サブタイトル(ヘッダ)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:754 -#: ../../godmode/setup/setup_visuals.php:482 -msgid "Title 1 (login)" -msgstr "タイトル 1 (ログイン)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:765 -#: ../../godmode/setup/setup_visuals.php:489 -msgid "Title 2 (login)" -msgstr "タイトル 2 (ログイン)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:815 -msgid "Graphs font family" -msgstr "グラフフォントファミリ" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:836 -#: ../../godmode/setup/setup_visuals.php:1020 -msgid "Legacy Visual Console View" -msgstr "レガシービジュアルコンソール表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:838 -msgid "To use the old view when using the Visual Console visor" -msgstr "ビジュアルコンソールで古い表示を使用する場合" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:857 -#: ../../godmode/setup/setup_visuals.php:1038 -msgid "Default cache expiration" -msgstr "デフォルトのキャッシュ有効期限" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:877 -msgid "This interval will affect to Visual Console pages" -msgstr "この間隔はビジュアルコンソールページで有効です" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:903 -#: ../../godmode/setup/setup_visuals.php:1451 -msgid "Data multiplier to use in graphs/data" -msgstr "グラフのデータで利用するデータ倍率" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:907 -#: ../../godmode/setup/setup_visuals.php:1453 -msgid "Use 1024 when module unit are bytes" -msgstr "モジュールの単位がバイトの場合 1024 を利用" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:908 -#: ../../godmode/setup/setup_visuals.php:1454 -msgid "Use always 1000" -msgstr "常に 1000を利用" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:909 -#: ../../godmode/setup/setup_visuals.php:1455 -msgid "Use always 1024" -msgstr "常に 1024 を利用" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:933 -msgid "Reports configuration" -msgstr "レポート設定" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:939 -#: ../../godmode/setup/setup_visuals.php:1097 -msgid "Show report info with description" -msgstr "説明とともにレポート情報を表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:940 -msgid "" -"Custom report description info. It will be applied to all reports and templates by " -"default." -msgstr "" -"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用されま" -"す。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:951 -#: ../../godmode/setup/setup_visuals.php:1106 -msgid "Custom report front page" -msgstr "カスタムレポート表紙" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:952 -msgid "" -"Custom report front page. It will be applied to all reports and templates by default." -msgstr "" -"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用されます。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:971 -msgid "" -"This is the height in pixels of the module graph or custom graph in the reports " -"(only: HTML)" -msgstr "" -"これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです(HTMLの" -"み)。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1038 -msgid "" -"A long interval description is for example 10 hours, 20 minutes 33 seconds”, a short " -"one is 10h 20m 33s" -msgstr "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1054 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 -msgid "" -"The path of custom logos is 'images/custom_logo' in the console installation. You can " -"upload more files (ONLY JPEG AND PNG) with the upload tool." -msgstr "" -"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツールを使" -"用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1318 -#: ../../godmode/setup/setup_visuals.php:1752 -msgid "Logo preview" -msgstr "ロゴのプレビュー" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1340 -#: ../../godmode/setup/setup_visuals.php:1782 -msgid "Splash Preview" -msgstr "スプラッシュプレビュー" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1345 -#: ../../godmode/setup/setup_visuals.php:1806 -msgid "Background preview" -msgstr "背景のプレビュー" - -#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 -msgid "There was a problem creating link" -msgstr "リンクの作成に失敗しました。" - -#: ../../enterprise/meta/advanced/links.php:60 -msgid "The link was not updated, the data is identical" -msgstr "リンクは更新されませんでした。データは同一です" - -#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 -msgid "There was a problem modifying link" -msgstr "リンクの編集に失敗しました。" - -#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 -msgid "There was a problem deleting link" -msgstr "リンクの削除に失敗しました。" - -#: ../../enterprise/meta/advanced/links.php:100 -msgid "Link Name error" -msgstr "リンク名エラー" - -#: ../../enterprise/meta/advanced/links.php:127 -#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 -#: ../../godmode/setup/links.php:145 -msgid "Link name" -msgstr "リンク名" - -#: ../../enterprise/meta/advanced/links.php:130 -#: ../../enterprise/godmode/policies/policy_linking.php:204 -#: ../../godmode/setup/links.php:119 -msgid "Link" -msgstr "リンク" - -#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 -msgid "There isn't links" -msgstr "リンクがありません" - -#: ../../enterprise/meta/index.php:848 -#, php-format -msgid "System is not centralised, please go to %s to perform a database merge process." -msgstr "" -"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行ってくださ" -"い。" - -#: ../../enterprise/meta/index.php:916 -#, php-format -msgid "There are nodes with different MR than this (%d):" -msgstr "こちら(%d)とは異なる MR を持つノードがあります: " - -#: ../../enterprise/meta/agentsearch.php:121 -msgid "Search results for" -msgstr "検索結果:" - -#: ../../enterprise/meta/agentsearch.php:301 -msgid "There are no agents included in this group" -msgstr "このグループに属しているエージェントが存在しません" - -#: ../../enterprise/meta/agentsearch.php:450 -msgid "There are no policies included in this group" -msgstr "このグループに含まれるポリシーがありません" - -#: ../../enterprise/extensions/disabled/check_acls.php:16 -msgid "ACL users for this agent" -msgstr "このエージェントのACLユーザ" - -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:136 -msgid "Agents reading" -msgstr "エージェントからの情報取得" - -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:138 -msgid "Agents disable" -msgstr "エージェント無効化" - -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:139 -msgid "Alerts editing" -msgstr "アラート編集" - -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:140 ../../godmode/menu.php:125 -msgid "Users management" -msgstr "ユーザ管理" - -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:141 -msgid "Database management" -msgstr "データベース管理" - -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:142 -msgid "Alerts management" -msgstr "アラート管理" - -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:143 -msgid "Reports reading" -msgstr "レポート参照" - -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:144 -msgid "Reports writing" -msgstr "レポート編集" - -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:145 -msgid "Reports management" -msgstr "レポート管理" - -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:146 -msgid "Events reading" -msgstr "イベント参照" - -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:147 -msgid "Events writing" -msgstr "イベント編集" - -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:148 -msgid "Events management" -msgstr "イベント管理" - -#: ../../enterprise/extensions/disabled/check_acls.php:62 -#: ../../enterprise/extensions/disabled/check_acls.php:149 -msgid "Systems management" -msgstr "システム管理" - -#: ../../enterprise/extensions/disabled/check_acls.php:112 -msgid "There are no defined users" -msgstr "定義済ユーザがありません" - -#: ../../enterprise/extensions/disabled/check_acls.php:134 ../../godmode/menu.php:117 -msgid "Module tags" -msgstr "モジュールタグ" - -#: ../../enterprise/extensions/disabled/check_acls.php:197 -msgid "ACL module tags for the modules in this agent" -msgstr "このエージェントのモジュールのACLモジュールタグ" - -#: ../../enterprise/extensions/disabled/check_acls.php:208 -msgid "Only admin users can see this section." -msgstr "この画面はadminユーザのみ参照できます。" - -#: ../../enterprise/extensions/disabled/check_acls.php:215 -msgid "Check ACL" -msgstr "ACLチェック" - -#: ../../enterprise/extensions/csv_import_group/main.php:23 -#: ../../enterprise/extensions/csv_import_group.php:69 -msgid "CSV import group" -msgstr "CSV インポートグループ" - -#: ../../enterprise/extensions/csv_import_group/main.php:48 -#, php-format -msgid "Created group %s" -msgstr "グループを %s 作成しました" - -#: ../../enterprise/extensions/csv_import_group/main.php:49 -#, php-format -msgid "Could not create group %s" -msgstr "グループ %s を作成できませんでした" - -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "File processed" -msgstr "ファイルを処理しました" - -#: ../../enterprise/extensions/csv_import_group/main.php:59 -msgid "Please syncronize groups to nodes" -msgstr "グループをノードに同期してください" - -#: ../../enterprise/extensions/resource_registration/functions.php:61 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." -msgstr "'%s' ポリシー作成エラー。すでに存在する名前です。" - -#: ../../enterprise/extensions/resource_registration/functions.php:69 -#, 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:78 -msgid "Error the policy haven't name." -msgstr "ポリシーに名前がありません。" - -#: ../../enterprise/extensions/resource_registration/functions.php:99 -#, php-format -msgid "Success create '%s' policy." -msgstr "'%s' ポリシーを作成しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:100 -#, php-format -msgid "Error create '%s' policy." -msgstr "'%s' ポリシー作成エラー" - -#: ../../enterprise/extensions/resource_registration/functions.php:142 -#, php-format -msgid "Error add '%s' agent. The agent does not exist" -msgstr "'%s' エージェント追加エラー。エージェントが存在しません" - -#: ../../enterprise/extensions/resource_registration/functions.php:147 -#, php-format -msgid "Success add '%s' agent." -msgstr "'%s' エージェントを追加しました" - -#: ../../enterprise/extensions/resource_registration/functions.php:148 -#, php-format -msgid "Error add '%s' agent." -msgstr "'%s' エージェント追加エラー" - -#: ../../enterprise/extensions/resource_registration/functions.php:167 -msgid "The collection does not exist" -msgstr "コレクションが存在しません" - -#: ../../enterprise/extensions/resource_registration/functions.php:172 -#, php-format -msgid "Success add '%s' collection." -msgstr "'%s' コレクションを追加しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:173 -#, php-format -msgid "Error add '%s' collection." -msgstr "'%s' コレクション追加エラー" - -#: ../../enterprise/extensions/resource_registration/functions.php:191 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "エージェントプラグイン '%s' を追加しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:192 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "エージェントプラグイン '%s' の追加エラー。" - -#: ../../enterprise/extensions/resource_registration/functions.php:205 -msgid "Error add the module, haven't type." -msgstr "モジュール追加エラー。タイプがありません。" - -#: ../../enterprise/extensions/resource_registration/functions.php:411 -#: ../../enterprise/extensions/resource_registration/functions.php:480 -#: ../../enterprise/extensions/resource_registration/functions.php:581 -#: ../../enterprise/extensions/resource_registration/functions.php:637 -msgid "Error add the module, error in tag component." -msgstr "モジュール追加エラー。タグコンポーネント内にエラーがあります。" - -#: ../../enterprise/extensions/resource_registration/functions.php:693 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "モジュールプラグイン追加エラー。プラグインは登録されていません。" - -#: ../../enterprise/extensions/resource_registration/functions.php:703 -#, php-format -msgid "Success add '%s' module." -msgstr "'%s' モジュールを追加しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:704 -#, php-format -msgid "Error add '%s' module." -msgstr "'%s' モジュール追加エラー" - -#: ../../enterprise/extensions/resource_registration/functions.php:718 -#, php-format -msgid "Error add the alert, the template '%s' don't exist." -msgstr "アラート追加エラー。テンプレート '%s' は存在しません。" - -#: ../../enterprise/extensions/resource_registration/functions.php:731 -#: ../../enterprise/extensions/resource_registration/functions.php:749 -#, php-format -msgid "Error add the alert, the module '%s' don't exist." -msgstr "アラート追加エラー。モジュール '%s' は存在しません。" - -#: ../../enterprise/extensions/resource_registration/functions.php:771 -#, php-format -msgid "Success add '%s' alert." -msgstr "'%s' アラートを追加しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:772 -#, php-format -msgid "Error add '%s' alert." -msgstr "'%s' アラート追加エラー" - -#: ../../enterprise/extensions/resource_registration/functions.php:798 -#, php-format -msgid "Error add the alert, the action '%s' don't exist." -msgstr "アラートの追加エラー。アクション '%s' は存在しません。" - -#: ../../enterprise/extensions/resource_registration/functions.php:817 -#, php-format -msgid "Success add '%s' action." -msgstr "'%s' アクションを追加しました" - -#: ../../enterprise/extensions/resource_registration/functions.php:818 -#: ../../extensions/resource_registration.php:436 -#: ../../extensions/resource_registration.php:458 -#: ../../extensions/resource_registration.php:469 -#, php-format -msgid "Error add '%s' action." -msgstr "アクション '%s' の追加に失敗しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:854 -msgid "The inventory module does not exist" -msgstr "インベントリモジュールが存在しません" - -#: ../../enterprise/extensions/resource_registration/functions.php:859 -#, php-format -msgid "Success add '%s' inventory module." -msgstr "'%s' インベントリモジュールを追加しました。" - -#: ../../enterprise/extensions/resource_registration/functions.php:860 -#, php-format -msgid "Error add '%s' inventory module." -msgstr "'%s' インベントリモジュール追加エラー。" - -#: ../../enterprise/extensions/translate_string.php:168 -#: ../../enterprise/extensions/translate_string.php:380 -msgid "Translate string" -msgstr "翻訳文字列" - -#: ../../enterprise/extensions/vmware.php:46 -msgid "Failed to initialize VMware extension." -msgstr "VMWare 拡張の初期化に失敗しました。" - -#: ../../enterprise/extensions/vmware.php:89 -msgid "VMware View" -msgstr "VMware 表示" - -#: ../../enterprise/extensions/csv_import_group.php:50 -#, php-format -msgid "" -"This node is configured with centralized mode. All group information is read only. Go " -"to %s to import the CSV." -msgstr "" -"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専用で" -"す。CSV をインポートするには %s に移動します。" - -#: ../../enterprise/extensions/csv_import_group.php:83 -msgid "CSV group import" -msgstr "CSV グループインポート" - -#: ../../enterprise/extensions/resource_exportation/functions.php:20 -msgid "Export agents" -msgstr "エージェントエクスポート" - -#: ../../enterprise/extensions/vmware/vmware_view.php:61 -msgid "Top 5 VMs CPU Usage" -msgstr "CPU利用率上位 5位内のVM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:70 -msgid "Top 5 VMs Memory Usage" -msgstr "メモリ使用率上位 5位内のVM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:82 -msgid "Top 5 VMs Provisioning Usage" -msgstr "プロビジョニング使用量の上位 5つの VM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:91 -msgid "Top 5 VMs Network Usage" -msgstr "ネットワーク使用率上位 5位内のVM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:684 -msgid "Host ESX" -msgstr "ホスト ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1036 -msgid "CPU Usage" -msgstr "CPU 使用率" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1046 -msgid "Memory Usage" -msgstr "メモリ使用率" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1056 -msgid "Disk I/O Rate" -msgstr "ディスク I/O 速度" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1066 -msgid "Network Usage" -msgstr "ネットワーク使用率" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1169 -msgid "Settings updated " -msgstr "設定を更新しました " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1171 -msgid "No changes in settings " -msgstr "設定の変更がありません " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1179 -msgid "CPU usage graphs" -msgstr "CPU 利用量グラフ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1180 -#: ../../enterprise/extensions/vmware/vmware_view.php:1186 -#: ../../enterprise/extensions/vmware/vmware_view.php:1192 -#: ../../enterprise/extensions/vmware/vmware_view.php:1198 -msgid "Force minimum value" -msgstr "最小値を強制" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1182 -#: ../../enterprise/extensions/vmware/vmware_view.php:1188 -#: ../../enterprise/extensions/vmware/vmware_view.php:1194 -#: ../../enterprise/extensions/vmware/vmware_view.php:1200 -msgid "Force maximum value" -msgstr "最大値を強制" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1185 -msgid "Memory usage graphs" -msgstr "メモリ利用量グラフ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1191 -msgid "Provisioning Usage graphs" -msgstr "プロビジョニング利用量グラフ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1197 -msgid "Network usage graphs" -msgstr "ネットワーク利用量グラフ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1208 -msgid "Map items" -msgstr "マップアイテム" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1209 -msgid "Show datastores" -msgstr "データストア表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1216 -msgid "Show ESXis" -msgstr "ESXi 表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1223 -msgid "Show VMs" -msgstr "VM 表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1230 -msgid "Font size (px)" -msgstr "フォントサイズ (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1232 -msgid "Node radius (px)" -msgstr "ノード半径 (px)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1234 -msgid "Node separation (rate)" -msgstr "ノード分離 (割合)" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1239 -msgid "" -"Looking for VMware configuration? You can configure several tasks using Discovery " -"Applications." -msgstr "" -"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設定でき" -"ます。" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1247 -msgid "Graph settings" -msgstr "グラフ設定" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1252 -msgid "Map settings" -msgstr "マップ設定" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1296 -#: ../../enterprise/extensions/vmware/vmware_view.php:1368 -msgid "Welcome" -msgstr "ようこそ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1327 -msgid "ESX Detail" -msgstr "ESX 詳細" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1358 -msgid "ESX details" -msgstr "ESX 詳細" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1363 -msgid "VMware view options" -msgstr "VMware 表示オプション" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1399 -msgid "VMWare" -msgstr "VMWare" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1504 -msgid "Some ESX Hosts are not up to date, please check VMware plugin configuration." -msgstr "" -"一部の ESX ホストは最新ではありません。VMware プラグインの設定を確認してください。" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1506 -msgid "VMware plugin is working." -msgstr "動作中 VMware プラグイン。" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1515 -msgid "View VMware map" -msgstr "VMware マップ表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1516 -msgid "View VMware dashboard" -msgstr "VMware ダッシュボード表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1517 -msgid "View ESX Host statistics from" -msgstr "次の ESX ホスト統計表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1524 -msgid "There are no VMware information detected in this environment." -msgstr "環境内で検出した VMware 情報がありません。" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1525 -msgid "You can configure several tasks using Discovery Applications at " -msgstr "次で自動検出アプリケーションを用いて複数のタスクを設定できます: " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1734 -#, php-format -msgid "" -"This map is a quick representation of all your VMware entities detected. You can " -"create a custom VMware map by defining a network map based on your VMware discovery " -"task %s" -msgstr "" -"このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 VMware " -"検出タスク %s に基づいてネットワークマップを定義することにより、カスタム VMware マップ" -"を作成できます。" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1744 -msgid "Show Datastores" -msgstr "データストア表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1747 -msgid "Show ESX" -msgstr "ESX 表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1750 -msgid "Show VM" -msgstr "VM 表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1754 -#: ../../godmode/reporting/visual_console_builder.wizard.php:215 -msgid "Font" -msgstr "フォント" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1772 -msgid "View options" -msgstr "オプションの表示" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:227 -msgid "Power Status: " -msgstr "電源状態: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:273 -msgid "Change Status" -msgstr "状態の変更" - -#: ../../enterprise/load_html_extra.php:202 -msgid "Activate license" -msgstr "ライセンスの有効化" - -#: ../../enterprise/load_html_extra.php:203 -msgid "Your request key is:" -msgstr "リクエストキー:" - -#: ../../enterprise/load_html_extra.php:206 -#, php-format -msgid "" -"You can activate it manually here or " -"automatically filling the form below:" -msgstr "" -"ここから手動で有効化するか、以下のフォームから自" -"動入力できます:" - -#: ../../enterprise/load_html_extra.php:213 -msgid "Auth Key:" -msgstr "認証キー:" - -#: ../../enterprise/load_html_extra.php:221 ../../enterprise/load_html_extra.php:240 -msgid "Online validation" -msgstr "オンライン認証" - -#: ../../enterprise/load_html_extra.php:233 -msgid "ERROR:" -msgstr "エラー:" - -#: ../../enterprise/load_html_extra.php:233 -msgid "When connecting to licence server." -msgstr "ライセンスサーバへの接続時。" - -#: ../../enterprise/load_enterprise.php:559 ../../godmode/setup/license.php:83 -msgid "License updated" -msgstr "ライセンスを更新しました" - -#: ../../enterprise/load_enterprise.php:560 -msgid "Failed while updating license." -msgstr "ライセンス更新に失敗しました。" - -#: ../../enterprise/load_enterprise.php:585 ../../enterprise/load_enterprise.php:650 -msgid "Invalid licence." -msgstr "不正なライセンス。" - -#: ../../enterprise/load_enterprise.php:585 -msgid "Please contact your system administrator." -msgstr "システム管理者に連絡してください。" - -#: ../../enterprise/load_enterprise.php:650 -#, php-format -msgid "Please contact %s for a valid licence." -msgstr "正しいライセンス取得は %s に連絡してください。" - -#: ../../enterprise/load_enterprise.php:651 -#, php-format -msgid "Or disable %s enterprise" -msgstr "または、%s enterprise を無効化します" - -#: ../../enterprise/load_enterprise.php:753 ../../enterprise/load_enterprise.php:1048 -msgid "Request new licence" -msgstr "新規ライセンスの要求" - -#: ../../enterprise/load_enterprise.php:832 -msgid "" -"Metaconsole unreached

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

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

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

    このライセンスは " -"%d エージェントまでですが、%d エージェントが設定されています。" - -#: ../../enterprise/load_enterprise.php:850 ../../enterprise/load_enterprise.php:857 -#: ../../enterprise/load_enterprise.php:866 ../../enterprise/load_enterprise.php:873 -#: ../../enterprise/load_enterprise.php:885 -#, php-format -msgid "Please contact %s to extend the license." -msgstr "ライセンスを拡張するには %s へ連絡してください。" - -#: ../../enterprise/load_enterprise.php:856 ../../enterprise/load_enterprise.php:858 -#: ../../enterprise/load_enterprise.php:872 ../../enterprise/load_enterprise.php:874 -#: ../../enterprise/load_enterprise.php:901 ../../enterprise/load_enterprise.php:907 -msgid "This console will work in limited mode. Enterprise features will not function." -msgstr "このコンソールは制限モードで動作します。Enterprise 機能は動作しません。" - -#: ../../enterprise/load_enterprise.php:865 -#, php-format -msgid "" -"License exceeded

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

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

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

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

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

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

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

    こ" -"の %s インストールは引き続き制限なく動作しますが、サポートや更新はありません。" - -#: ../../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:124 -msgid "Seconds" -msgstr "秒" - -#: ../../enterprise/godmode/setup/setup.php:144 -msgid "Last replication at" -msgstr "最新の複製" - -#: ../../enterprise/godmode/setup/setup.php:146 -msgid "No replication yet" -msgstr "複製されていません" - -#: ../../enterprise/godmode/setup/setup.php:160 -msgid "Only validated events" -msgstr "承諾済イベントのみ" - -#: ../../enterprise/godmode/setup/setup.php:175 -msgid "Metaconsole DB engine" -msgstr "メタコンソール DB エンジン" - -#: ../../enterprise/godmode/setup/setup.php:193 -msgid "Metaconsole DB host" -msgstr "メタコンソール DB ホスト" - -#: ../../enterprise/godmode/setup/setup.php:207 -msgid "Metaconsole DB name" -msgstr "メタコンソール DB 名" - -#: ../../enterprise/godmode/setup/setup.php:221 -msgid "Metaconsole DB user" -msgstr "メタコンソール DB ユーザ" - -#: ../../enterprise/godmode/setup/setup.php:235 -msgid "Metaconsole DB password" -msgstr "メタコンソール DB パスワード" - -#: ../../enterprise/godmode/setup/setup.php:275 -msgid "Events Configuration Information" -msgstr "イベント設定情報" - -#: ../../enterprise/godmode/setup/setup.php:277 -msgid "" -" If you are replicating events, events validated or deleted on the metaconsole WILL " -"NOT be deleted or validated here. This option is just to allow local pandora users to " -"see events, but not to operate with them. Operation, when event replication is " -"enabled, should be done only in metaconsole" -msgstr "" -" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここでは削除" -"または検証されません。 このオプションは、ローカルの pandora ユーザがイベントを表示でき" -"るようにするためだけのものであり、イベントを操作するためのものではありません。イベント" -"の複製が有効になっている場合の操作は、メタコンソールでのみ実行する必要があります。" - -#: ../../enterprise/godmode/setup/setup.php:345 -msgid "Out of black list" -msgstr "ブラックリスト対象外" - -#: ../../enterprise/godmode/setup/setup.php:347 -msgid "In black list" -msgstr "ブラックリスト対象" - -#: ../../enterprise/godmode/setup/setup.php:352 -msgid "Push selected modules into blacklist" -msgstr "選択したモジュールをブラックリストへ追加" - -#: ../../enterprise/godmode/setup/setup.php:354 -msgid "Pop selected modules out of blacklist" -msgstr "選択したモジュールをブラックリストから削除" - -#: ../../enterprise/godmode/setup/setup.php:389 -msgid "Critical threshold for occupied addresses" -msgstr "占有アドレスの障害しきい値" - -#: ../../enterprise/godmode/setup/setup.php:401 -msgid "Warning threshold for occupied addresses" -msgstr "占有アドレスの警告しきい値" - -#: ../../enterprise/godmode/setup/setup.php:429 -msgid "Enterprise options" -msgstr "Enterprise オプション" - -#: ../../enterprise/godmode/setup/setup.php:589 -#, php-format -msgid "" -"Password related configuration only applies when local %s authentication is selected." -msgstr "" -"パスワード関連の設定は、ローカル %s 認証が選択されている場合にのみ適用されます。" - -#: ../../enterprise/godmode/setup/setup.php:598 -msgid "Enterprise password policy" -msgstr "Enterprise パスワードポリシー" - -#: ../../enterprise/godmode/setup/setup_history.php:84 -msgid "Method does not exist" -msgstr "メソッドがありません" - -#: ../../enterprise/godmode/setup/setup_history.php:223 -msgid "Configure connection target" -msgstr "接続対象設定" - -#: ../../enterprise/godmode/setup/setup_history.php:237 -msgid "Active to historical settings" -msgstr "ヒストリ設定有効化" - -#: ../../enterprise/godmode/setup/setup_history.php:241 -#, php-format -msgid "" -"Data will be available in active database as time as days you specify here. Older " -"information will be sent to historical database. Note data will be purged from active " -"database after %d days." -msgstr "" -"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒストリ" -"データベースに送信されます。 データは %d 日後にメインのデータベースから削除されること" -"に注意してください。" - -#: ../../enterprise/godmode/setup/setup_history.php:247 -msgid "Data days old to keep in active database" -msgstr "メインのデータベースに保持するデータの日数" - -#: ../../enterprise/godmode/setup/setup_history.php:262 -msgid "" -"Number of rows to be sent to historical database each 'delay' seconds. If you " -"experience issues running pandora_db, try decreasing this value." -msgstr "" -"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題が発生し" -"た場合は、この値を減らしてみてください。" - -#: ../../enterprise/godmode/setup/setup_history.php:266 -msgid "Transference block size (Step)" -msgstr "転送ブロックサイズ (ステップ)" - -#: ../../enterprise/godmode/setup/setup_history.php:271 -msgid "Delay between transferences (seconds)" -msgstr "転送間の遅延 (秒)" - -#: ../../enterprise/godmode/setup/setup_history.php:276 -msgid "Historical data settings" -msgstr "ヒストリデータ設定" - -#: ../../enterprise/godmode/setup/setup_history.php:278 -msgid "Maximum historical data age (days)" -msgstr "最大ヒストリデータ保存期間 (日)" - -#: ../../enterprise/godmode/setup/setup_history.php:283 -msgid "Maximum historical string data age (days)" -msgstr "最大ヒストリ文字列データ保存期間 (日)" - -#: ../../enterprise/godmode/setup/setup_history.php:288 -msgid "Data older than 'days' is compacted in order to improve disk utilization." -msgstr "設定した '日' より古いデータは、ディスク使用率を向上させるために圧縮されます。" - -#: ../../enterprise/godmode/setup/setup_history.php:293 -msgid "" -"Automatically create partitions on specific database IDB files (tagente_datos, " -"tagente_datos_string, tevento). Monthly partitions." -msgstr "" -"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)にパー" -"ティションを自動的に作成します。 月次のパーティションです。" - -#: ../../enterprise/godmode/setup/setup_history.php:297 -msgid "Automatic partition of big tables." -msgstr "大きなテーブルの自動パーティション" - -#: ../../enterprise/godmode/setup/setup_history.php:308 -msgid "Historical events settings" -msgstr "ヒストリイベント設定" - -#: ../../enterprise/godmode/setup/setup_history.php:319 -#, php-format -msgid "" -"Events will remain in active database a maximum of specified days, then they will be " -"transferred to historical database. Note events will be purged from active database " -"after %d days." -msgstr "" -"イベントは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリデータ" -"ベースに転送されます。 イベントは %d 日後にメインのデータベースから削除されることに注" -"意してください。" - -#: ../../enterprise/godmode/setup/setup_history.php:325 -msgid "Events days old to keep in active database" -msgstr "メインのデータベースに保持するイベントの日数" - -#: ../../enterprise/godmode/setup/setup_history.php:340 -msgid "Events will be purged from historical database after specified days." -msgstr "イベントは、指定された日後にヒストリデータベースから削除されます。" - -#: ../../enterprise/godmode/setup/setup_history.php:344 -msgid "Maximum historical events age (days)" -msgstr "最大ヒストリイベント保持期間 (日)" - -#: ../../enterprise/godmode/setup/setup_history.php:361 -msgid "Enable historical events" -msgstr "ヒストリイベント有効化" - -#: ../../enterprise/godmode/setup/setup_history.php:373 -msgid "Customize settings" -msgstr "設定カスタマイズ" - -#: ../../enterprise/godmode/setup/setup_history.php:385 -msgid "Enable historical database" -msgstr "ヒストリデータベース有効化" - -#: ../../enterprise/godmode/setup/setup_history.php:407 -msgid "History database connection is available." -msgstr "ヒストリデータベース接続が可能です。" - -#: ../../enterprise/godmode/setup/setup_history.php:414 -#, php-format -msgid "History database connection failed: %s" -msgstr "ヒストリデータベース接続に失敗しました: %s" - -#: ../../enterprise/godmode/setup/setup_history.php:430 -msgid "History database schema is installed." -msgstr "ヒストリデータベーススキーマをインストールしました。" - -#: ../../enterprise/godmode/setup/setup_history.php:439 -#, php-format -msgid "Database is not installed: %s" -msgstr "データベースがインストールされていません: %s" - -#: ../../enterprise/godmode/setup/setup_history.php:444 -msgid "Install database schema" -msgstr "データベーススキーマのインストール" - -#: ../../enterprise/godmode/setup/setup_history.php:445 -msgid "This action will install the schema into the target, are you sure?" -msgstr "この操作は対象にスキーマをインストールします。よろしいですか?" - -#: ../../enterprise/godmode/setup/setup_history.php:467 -msgid "History database schema is up to date with active database." -msgstr "メインのデータベースでヒストリデータベーススキーマを更新します。" - -#: ../../enterprise/godmode/setup/setup_history.php:476 -#, php-format -msgid "Database is not updated: %s" -msgstr "データベースが更新されていません: %s" - -#: ../../enterprise/godmode/setup/setup_history.php:491 -msgid "Current schema: " -msgstr "現在のスキーマ: " - -#: ../../enterprise/godmode/setup/setup_history.php:498 -msgid "Upgrade database schema" -msgstr "データベーススキーマのアップグレード" - -#: ../../enterprise/godmode/setup/setup_history.php:499 -msgid "" -"This action will schedule the installation or upgrade of database schema into the " -"target, are you sure?" -msgstr "" -"このアクションにより、データベーススキーマの対象へのインストールまたはアップグレードが" -"スケジュールされます。よろしいですか?" - -#: ../../enterprise/godmode/setup/setup_history.php:513 -#: ../../godmode/setup/performance.php:684 -msgid "Database maintenance status" -msgstr "データベースメンテナンス状態" - -#: ../../enterprise/godmode/setup/setup_history.php:532 -msgid "" -"By enabling historical database, target connection will be tested. If needed, " -"database schema will be applied on your selected target, do you want to proceed?" -msgstr "" -"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応じて、" -"データベーススキーマが選択した対象に適用されます。続行しますか?" - -#: ../../enterprise/godmode/setup/setup_history.php:533 -msgid "" -"Changing historical database target, schema will be recreated in new one, but old " -"data will remain in previous node, unlinked from this console and not maintained, do " -"you want to proceed?" -msgstr "" -"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されますが、古い" -"データは前のノードに残り、このコンソールからリンク解除され、維持されません。続行します" -"か?" - -#: ../../enterprise/godmode/setup/setup_history.php:535 -#, php-format -msgid "" -"Disabling historical database, you will not keep any data older than %d days. Are you " -"sure?" -msgstr "" -"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろしいです" -"か?" - -#: ../../enterprise/godmode/setup/setup_history.php:539 -#, php-format -msgid "" -"Historical database allows you to keep data older than %d days. This action will " -"produce no changes. Historical database will remain disabled." -msgstr "" -"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクションでは変" -"更は行われません。ヒストリデータベースは無効のままになります。" - -#: ../../enterprise/godmode/setup/setup_history.php:544 -msgid "" -"By changing historical database target, the new connection will be tested. If needed, " -"database schema will be applied on your selected target. Information stored in " -"previous configuration will be IGNORED, do you want to proceed?" -msgstr "" -"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必要に応" -"じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存された情報は" -"無視されます。続行しますか?" - -#: ../../enterprise/godmode/setup/setup_history.php:547 -msgid "Please ensure all fields matches your needs." -msgstr "すべてのフィールドがニーズに一致していることを確認してください。" - -#: ../../enterprise/godmode/setup/setup_history.php:681 -msgid "Update scheduled." -msgstr "更新が予定されています。" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:31 -msgid "Metaconsole setup" -msgstr "メタコンソール設定" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 -msgid "Pandora FMS Metaconsole item edition" -msgstr "Pandora FMS メタコンソールアイテム編集" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -msgid "" -"Token previously configured on the destination Pandora console in order to use " -"delegated authentification." -msgstr "" -"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンです。" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:274 -msgid "Console URLxxxxxx" -msgstr "コンソール URLxxxxxx" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Active directory" -msgstr "アクティブディレクトリ" - -#: ../../enterprise/godmode/setup/setup_auth.php:35 -msgid "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:87 -msgid "Force automatically create profile user" -msgstr "プロファイルユーザを自動的に作成するように強制する" - -#: ../../enterprise/godmode/setup/setup_auth.php:92 -msgid "Local command" -msgstr "ローカルコマンド" - -#: ../../enterprise/godmode/setup/setup_auth.php:95 -msgid "PHP function" -msgstr "PHP 関数" - -#: ../../enterprise/godmode/setup/setup_auth.php:172 -#: ../../enterprise/godmode/setup/setup_auth.php:456 -#: ../../enterprise/godmode/setup/setup_auth.php:1251 -msgid "Profiles selected" -msgstr "選択しているプロファイル" - -#: ../../enterprise/godmode/setup/setup_auth.php:173 -#: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1252 -msgid "Groups selected" -msgstr "選択しているグループ" - -#: ../../enterprise/godmode/setup/setup_auth.php:174 -#: ../../enterprise/godmode/setup/setup_auth.php:458 -#: ../../enterprise/godmode/setup/setup_auth.php:1253 -#: ../../enterprise/godmode/modules/configure_local_component.php:581 -#: ../../godmode/modules/manage_network_components_form_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:1014 -msgid "Tags selected" -msgstr "選択タグ" - -#: ../../enterprise/godmode/setup/setup_auth.php:176 -#: ../../enterprise/godmode/setup/setup_auth.php:233 -msgid "LDAP Attributes" -msgstr "LDAP アトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:177 -#: ../../enterprise/godmode/setup/setup_auth.php:234 -#: ../../enterprise/godmode/setup/setup_auth.php:460 -#: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_auth.php:1255 -#: ../../enterprise/godmode/setup/setup_auth.php:1309 -#: ../../godmode/setup/snmp_wizard.php:44 -msgid "OP" -msgstr "OP" - -#: ../../enterprise/godmode/setup/setup_auth.php:229 -#: ../../enterprise/godmode/setup/setup_auth.php:508 -#: ../../enterprise/godmode/setup/setup_auth.php:1305 ../../godmode/menu.php:136 -#: ../../godmode/users/profile_list.php:323 ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:380 -msgid "Profiles" -msgstr "プロファイル" - -#: ../../enterprise/godmode/setup/setup_auth.php:242 -#: ../../enterprise/godmode/setup/setup_auth.php:519 -#: ../../enterprise/godmode/setup/setup_auth.php:1316 -msgid "Select profile" -msgstr "プロファイルを選択" - -#: ../../enterprise/godmode/setup/setup_auth.php:287 -#: ../../enterprise/godmode/setup/setup_auth.php:557 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 -msgid "Add new permissions" -msgstr "新規の権限を追加" - -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 -msgid "New users will be able to log in to the nodes." -msgstr "新規ユーザがノードへログインできます。" - -#: ../../enterprise/godmode/setup/setup_auth.php:459 -#: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/godmode/setup/setup_auth.php:1254 -#: ../../enterprise/godmode/setup/setup_auth.php:1308 -msgid "AD Groups" -msgstr "ADグループ" - -#: ../../enterprise/godmode/setup/setup_auth.php:738 -#: ../../enterprise/godmode/setup/setup_auth.php:854 -msgid "You must select a profile from the list of profiles." -msgstr "プロファイル一覧からぷらファイルを選択する必要があります。" - -#: ../../enterprise/godmode/setup/setup_auth.php:743 -#: ../../enterprise/godmode/setup/setup_auth.php:859 -msgid "You must select a group from the list of groups." -msgstr "グループ一覧からグループを選択する必要があります。" - -#: ../../enterprise/godmode/setup/setup_auth.php:1084 -msgid "SimpleSAML path" -msgstr "SimpleSAML パス" - -#: ../../enterprise/godmode/setup/setup_auth.php:1085 -msgid "Directory where your 'simplesamlphp' folder is located." -msgstr "'simplesamlphp' フォルダがあるディレクトリ" - -#: ../../enterprise/godmode/setup/setup_auth.php:1091 -msgid "SAML source" -msgstr "SAML ソース" - -#: ../../enterprise/godmode/setup/setup_auth.php:1092 -msgid "Authsource name, e.g. 'example-userpass'" -msgstr "認証ソース名、例: 'example-userpass'" - -#: ../../enterprise/godmode/setup/setup_auth.php:1099 -msgid "SAML user id attribute" -msgstr "SAML ユーザ ID アトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1104 -msgid "SAML mail attribute" -msgstr "SAML メールアトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1105 -msgid "" -"SAML field where search for the user email (while autocreate remote users is enabled)" -msgstr "" -"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっている場" -"合)" - -#: ../../enterprise/godmode/setup/setup_auth.php:1112 -msgid "SAML group name attribute" -msgstr "SAML グループ名アトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1113 -msgid "" -"SAML field where search for the group name (while autocreate remote users is enabled)" -msgstr "" -"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になっている場" -"合)" - -#: ../../enterprise/godmode/setup/setup_auth.php:1120 -msgid "Simple attribute / Multivalue attribute" -msgstr "シンプルアトリビュート / 複数の値のアトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1125 -msgid "SAML profiles and tag attribute" -msgstr "SAML プロファイルおよびタグアトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1130 -msgid "Profile attribute" -msgstr "プロファイルアトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1135 -msgid "Tag attribute" -msgstr "タグアトリビュート" - -#: ../../enterprise/godmode/setup/setup_auth.php:1140 -msgid "SAML profile and tags prefix" -msgstr "SAML プロファイルおよびタグプレフィックス" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 -msgid "ElasticSearch IP" -msgstr "ElasticSearch IP" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 -msgid "IP of ElasticSearch server" -msgstr "ElasticSearch サーバの IP" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 -msgid "ElasticSearch Port" -msgstr "ElasticSearch ポート" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 -msgid "Port of ElasticSearch server" -msgstr "ElasticSearch サーバのポート" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "ElasticSearch Status" -msgstr "ElasticSearch の状態" - -#: ../../enterprise/godmode/setup/edit_skin.php:44 -#: ../../enterprise/godmode/setup/setup_skins.php:38 -msgid "Skins configuration" -msgstr "スキン設定" - -#: ../../enterprise/godmode/setup/edit_skin.php:47 -msgid "Successfully updated skin" -msgstr "スキンを更新しました" - -#: ../../enterprise/godmode/setup/edit_skin.php:49 -#: ../../enterprise/godmode/setup/edit_skin.php:67 -msgid "Error updating skin" -msgstr "スキン更新エラー" - -#: ../../enterprise/godmode/setup/edit_skin.php:197 -msgid "Error creating skin" -msgstr "スキン作成エラー" - -#: ../../enterprise/godmode/setup/edit_skin.php:201 -msgid "Successfully created skin" -msgstr "スキンを作成しました" - -#: ../../enterprise/godmode/setup/edit_skin.php:241 -#: ../../enterprise/godmode/setup/setup_skins.php:126 -msgid "Relative path" -msgstr "相対パス" - -#: ../../enterprise/godmode/setup/edit_skin.php:242 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have alphanumeric " -"characters." -msgstr "" -"skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アルファベッ" -"トのみです。" - -#: ../../enterprise/godmode/setup/edit_skin.php:267 -msgid "Group/s" -msgstr "グループ" - -#: ../../enterprise/godmode/setup/setup_module_library.php:68 -#: ../../enterprise/godmode/wizards/Cloud.class.php:381 -#: ../../godmode/module_library/module_library_view.php:163 -msgid "Invalid username or password" -msgstr "ユーザ名またはパスワードが不正です" - -#: ../../enterprise/godmode/setup/setup_module_library.php:69 -#: ../../godmode/module_library/module_library_view.php:162 -msgid "Problem with authentication. Check your internet connection" -msgstr "認証に問題があります。内部接続を確認してください。" - -#: ../../enterprise/godmode/setup/setup_skins.php:77 -msgid "Error deleting skin" -msgstr "スキン削除エラー" - -#: ../../enterprise/godmode/setup/setup_skins.php:79 -msgid "Successfully deleted skin" -msgstr "スキンを削除しました" - -#: ../../enterprise/godmode/setup/setup_skins.php:125 -msgid "Skin name" -msgstr "スキン名" - -#: ../../enterprise/godmode/setup/setup_skins.php:153 -msgid "There are no defined skins" -msgstr "定義済のスキンがありません" - -#: ../../enterprise/godmode/setup/setup_skins.php:159 -msgid "Create skin" -msgstr "スキン作成" - -#: ../../enterprise/godmode/setup/setup_acl.php:46 -msgid "Enterprise ACL setup" -msgstr "Enterprise ACL 設定" - -#: ../../enterprise/godmode/setup/setup_acl.php:69 -msgid "ACL element was deleted successfully" -msgstr "ACL 要素を削除しました" - -#: ../../enterprise/godmode/setup/setup_acl.php:71 -msgid "There was a problem delete ACL element" -msgstr "ACL 要素削除で問題が発生しました" - -#: ../../enterprise/godmode/setup/setup_acl.php:417 -msgid "This record already exists in the database" -msgstr "このレコードは既にデータベースに存在します" - -#: ../../enterprise/godmode/setup/setup_acl.php:422 -msgid "ACL element is added successfully" -msgstr "ACL 要素を追加しました" - -#: ../../enterprise/godmode/setup/setup_acl.php:424 -msgid "There was a problem adding ACL element" -msgstr "ACL 要素追加で問題が発生しました。" - -#: ../../enterprise/godmode/setup/setup_acl.php:464 -#: ../../enterprise/godmode/setup/setup_acl.php:539 -msgid "Add new ACL element to profile" -msgstr "プロファイルへの新ACL要素の追加" - -#: ../../enterprise/godmode/setup/setup_acl.php:469 -#: ../../enterprise/godmode/setup/setup_acl.php:544 -#: ../../enterprise/godmode/setup/setup_acl.php:592 -msgid "Section" -msgstr "セクション" - -#: ../../enterprise/godmode/setup/setup_acl.php:476 -#: ../../enterprise/godmode/setup/setup_acl.php:694 -msgid "Mobile" -msgstr "モバイル" - -#: ../../enterprise/godmode/setup/setup_acl.php:480 -#: ../../enterprise/godmode/setup/setup_acl.php:690 -msgid "Head search" -msgstr "ヘッドサーチ" - -#: ../../enterprise/godmode/setup/setup_acl.php:497 -#: ../../enterprise/godmode/setup/setup_acl.php:548 -#: ../../enterprise/godmode/setup/setup_acl.php:593 -msgid "Section 2" -msgstr "セクション 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:514 -#: ../../enterprise/godmode/setup/setup_acl.php:552 -#: ../../enterprise/godmode/setup/setup_acl.php:594 -msgid "Section 3" -msgstr "セクション 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:538 -msgid "Hidden" -msgstr "隠す" - -#: ../../enterprise/godmode/setup/setup_acl.php:570 -msgid "Filter by profile" -msgstr "プロファイルによるフィルタ" - -#: ../../enterprise/godmode/setup/setup_acl.php:749 -#: ../../enterprise/godmode/setup/setup_acl.php:759 -msgid "Invalid" -msgstr "無効" - -#: ../../enterprise/godmode/servers/manage_export_form.php:59 -#: ../../enterprise/godmode/servers/manage_export.php:43 -#: ../../enterprise/godmode/menu.php:247 -msgid "Export targets" -msgstr "エクスポートターゲット" - -#: ../../enterprise/godmode/servers/manage_export_form.php:91 -#: ../../enterprise/godmode/servers/manage_export.php:138 -msgid "Preffix" -msgstr "プレフィックス" - -#: ../../enterprise/godmode/servers/manage_export_form.php:103 -#: ../../enterprise/godmode/servers/manage_export.php:141 -msgid "Transfer mode" -msgstr "転送モード" - -#: ../../enterprise/godmode/servers/manage_export_form.php:125 -msgid "Target directory" -msgstr "対象ディレクトリ" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 -msgid "Credential Boxes List" -msgstr "認証情報ボックス一覧" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 -msgid "Credential Boxes" -msgstr "認証情報ボックス" - -#: ../../enterprise/godmode/servers/manage_export.php:69 -msgid "Error updating export target" -msgstr "エクスポートターゲットの更新に失敗しました。" - -#: ../../enterprise/godmode/servers/manage_export.php:71 -msgid "Successfully updated export target" -msgstr "エクスポートターゲットを更新しました。" - -#: ../../enterprise/godmode/servers/manage_export.php:82 -msgid "Error deleting export target" -msgstr "エクスポートターゲットの削除に失敗しました。" - -#: ../../enterprise/godmode/servers/manage_export.php:84 -msgid "" -"Successfully deleted export target. All the linked modules will be automatically " -"unattached" -msgstr "" -"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは自動的" -"に接続解除されます" - -#: ../../enterprise/godmode/servers/manage_export.php:107 -msgid "Can't be created export target: User and password must be filled with FTP mode" -msgstr "" -"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力する必要" -"があります" - -#: ../../enterprise/godmode/servers/manage_export.php:126 -msgid "There are no defined export targets" -msgstr "定義済のエクスポートターゲットがありません" - -#: ../../enterprise/godmode/servers/list_satellite.php:27 -msgid "Satellite Server" -msgstr "サテライトサーバ" - -#: ../../enterprise/godmode/servers/HA_cluster.php:59 -#: ../../enterprise/godmode/servers/HA_cluster.php:83 -msgid "View nodes" -msgstr "ノード参照" - -#: ../../enterprise/godmode/servers/HA_cluster.php:80 -msgid "Manage Pandora DB HA" -msgstr "Pandora DB HA 管理" - -#: ../../enterprise/godmode/servers/HA_cluster.php:101 -msgid "Manage Database HA" -msgstr "データベース HA 管理" - -#: ../../enterprise/godmode/servers/HA_cluster.php:136 -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 "" -"クラスタの過去の操作失敗履歴をクリアし、現在の状態を再検出します。\n" -"これは、解決済の過去の障害に関する記録を一掃するのに役立ちます。\n" -"リソース ID が指定されていない場合、すべてのリソース / stonith デバイスは\n" -"クリーンアップされます。 ノードが指定されていない場合、すべてのノード\n" -"のリソース/ stonith デバイスがクリーンアップされます。" - -#: ../../enterprise/godmode/servers/HA_cluster.php:162 -msgid "Node label" -msgstr "ノードラベル" - -#: ../../enterprise/godmode/servers/HA_cluster.php:164 -msgid "DB Repl." -msgstr "DB レプリケーション" - -#: ../../enterprise/godmode/servers/HA_cluster.php:165 -msgid "DB Status" -msgstr "DB の状態" - -#: ../../enterprise/godmode/servers/HA_cluster.php:167 -#: ../../extensions/quick_shell.php:195 -#: ../../godmode/agentes/module_manager_editor_network.php:478 -msgid "SSH" -msgstr "SSH" - -#: ../../enterprise/godmode/servers/HA_cluster.php:168 -msgid "DB Role" -msgstr "DB ロール" - -#: ../../enterprise/godmode/servers/HA_cluster.php:169 -msgid "Cluster Role" -msgstr "クラスタロール" - -#: ../../enterprise/godmode/servers/HA_cluster.php:171 -msgid "Seconds behind master" -msgstr "秒のマスタからの遅延" - -#: ../../enterprise/godmode/servers/HA_cluster.php:172 -msgid "Virtual IP" -msgstr "仮想 IP" - -#: ../../enterprise/godmode/servers/HA_cluster.php:173 -msgid "SQL version" -msgstr "SQL バージョン" - -#: ../../enterprise/godmode/servers/HA_cluster.php:174 -msgid "DB version" -msgstr "DB バージョン" - -#: ../../enterprise/godmode/servers/HA_cluster.php:176 -msgid "Pending action" -msgstr "保留中アクション" - -#: ../../enterprise/godmode/servers/HA_cluster.php:301 -msgid "Show/ edit node" -msgstr "ノードの表示 / 編集" - -#: ../../enterprise/godmode/servers/HA_cluster.php:317 -msgid "Put node into standby status" -msgstr "ノードをスタンバイ状態にする" - -#: ../../enterprise/godmode/servers/HA_cluster.php:332 -msgid "Force node resync" -msgstr "ノードの再同期を強制" - -#: ../../enterprise/godmode/servers/HA_cluster.php:359 -msgid "Put node into online status" -msgstr "ノードをオンライン状態にする" - -#: ../../enterprise/godmode/servers/HA_cluster.php:374 -msgid "Show cluster details" -msgstr "クラスタ詳細表示" - -#: ../../enterprise/godmode/servers/HA_cluster.php:392 -msgid "Remove node from this list" -msgstr "一覧からノードを削除" - -#: ../../enterprise/godmode/servers/HA_cluster.php:428 -msgid "Register node" -msgstr "ノード登録" - -#: ../../enterprise/godmode/servers/HA_cluster.php:466 -msgid "" -"Target node will be erased from this list but not removed from cluster. Do you want " -"to continue?" -msgstr "" -"対象ノードはこの一覧から消去されますが、クラスタからは削除されません。 続けますか?" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 -msgid "Error: The conf file of server is not readble." -msgstr "エラー: サービスの設定ファイルを読めません。" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:152 -msgid "Error: The conf file of server is not writable." -msgstr "エラー: サービスの設定ファイルに書き込めません。" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 -msgid "Delete remote conf server files" -msgstr "リモート設定サーバファイル削除" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../godmode/agentes/agent_manager.php:495 -msgid "Delete remote configuration file" -msgstr "リモート設定ファイル削除" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -msgid "Delete this conf file implies that server will send back local config to console" -msgstr "" -"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すことを意味し" -"ます" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 -msgid "ICMP server" -msgstr "ICMP サーバ" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 -msgid "Network timeout" -msgstr "ネットワークタイムアウト" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666 -msgid " Seconds" -msgstr " 秒" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 -msgid "Plugin timeout" -msgstr "プラグインタイムアウト" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 -msgid "SNMP console threads" -msgstr "SNMP コンソールスレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 -msgid "Network threads" -msgstr "ネットワークスレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 -msgid "Plugin threads" -msgstr "プラグインスレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 -msgid "Recon threads" -msgstr "自動検出スレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738 -msgid "Dataserver threads" -msgstr "データサーバスレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 -msgid "Web threads" -msgstr "ウェブスレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 -msgid "SNMP threads" -msgstr "SNMP スレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786 -msgid "ICMP threads" -msgstr "ICMP スレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 -msgid "Autocreate group" -msgstr "グループの自動作成" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 -msgid "Autocreate group force" -msgstr "グループの強制自動作成" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847 -msgid "Autocreate" -msgstr "自動作成" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 -msgid "Server features" -msgstr "サーバ機能" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 -msgid "Optimization settings" -msgstr "カスタム設定" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 -msgid "Other server settings" -msgstr "他のサーバ設定" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "認証情報ボックスの追加" - -#: ../../enterprise/godmode/modules/configure_local_component.php:141 -msgid "Update Local Component" -msgstr "ローカルコンポーネント更新" - -#: ../../enterprise/godmode/modules/configure_local_component.php:143 -msgid "Create Local Component" -msgstr "ローカルコンポーネント作成" - -#: ../../enterprise/godmode/modules/configure_local_component.php:162 -#: ../../godmode/modules/manage_network_components_form_common.php:50 -#: ../../godmode/alerts/configure_alert_template.php:1134 -msgid "Wizard level" -msgstr "ウィザードレベル" - -#: ../../enterprise/godmode/modules/configure_local_component.php:192 -msgid "Throw unknown events" -msgstr "不明イベントを発生させる" - -#: ../../enterprise/godmode/modules/configure_local_component.php:292 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 -#: ../../godmode/modules/manage_network_components_form_common.php:146 -#: ../../godmode/massive/massive_edit_modules.php:552 -msgid "Dynamic Interval" -msgstr "動的間隔" - -#: ../../enterprise/godmode/modules/configure_local_component.php:298 -#: ../../godmode/modules/manage_network_components_form_common.php:152 -#: ../../godmode/agentes/module_manager_editor_common.php:691 -msgid "Advanced options Dynamic Threshold" -msgstr "拡張オプション 動的閾値" - -#: ../../enterprise/godmode/modules/configure_local_component.php:303 -#: ../../godmode/modules/manage_network_components_form_common.php:157 -msgid "Dynamic Min. " -msgstr "動的最小値 " - -#: ../../enterprise/godmode/modules/configure_local_component.php:305 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 -#: ../../godmode/modules/manage_network_components_form_common.php:159 -#: ../../godmode/massive/massive_edit_modules.php:556 -msgid "Dynamic Max." -msgstr "動的最大値" - -#: ../../enterprise/godmode/modules/configure_local_component.php:307 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../godmode/massive/massive_edit_modules.php:558 -msgid "Dynamic Two Tailed: " -msgstr "2つの動的しきい値 " - -#: ../../enterprise/godmode/modules/configure_local_component.php:343 -#: ../../enterprise/godmode/modules/configure_local_component.php:386 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 -#: ../../godmode/modules/manage_network_components_form_wizard.php:399 -#: ../../godmode/modules/manage_network_components_form_wizard.php:441 -#: ../../godmode/modules/manage_network_components_form_common.php:196 -#: ../../godmode/modules/manage_network_components_form_common.php:237 -#: ../../godmode/massive/massive_edit_modules.php:630 -#: ../../godmode/massive/massive_edit_modules.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:464 -#: ../../godmode/agentes/module_manager_editor_common.php:526 -msgid "Percentage" -msgstr "パーセント" - -#: ../../enterprise/godmode/modules/configure_local_component.php:391 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:243 -#: ../../godmode/massive/massive_edit_modules.php:930 -#: ../../godmode/agentes/module_manager_editor_common.php:780 -msgid "FF threshold" -msgstr "連続抑制回数" - -#: ../../enterprise/godmode/modules/configure_local_component.php:394 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 -#: ../../godmode/modules/manage_network_components_form_common.php:246 -#: ../../godmode/massive/massive_edit_modules.php:994 -#: ../../godmode/agentes/module_manager_editor_common.php:782 -msgid "Keep counters" -msgstr "カウンタの維持" - -#: ../../enterprise/godmode/modules/configure_local_component.php:402 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 -#: ../../godmode/modules/manage_network_components_form_common.php:260 -#: ../../godmode/massive/massive_edit_modules.php:938 -#: ../../godmode/massive/massive_edit_modules.php:953 -#: ../../godmode/agentes/module_manager_editor_common.php:799 -msgid "All state changing" -msgstr "全状態変化" - -#: ../../enterprise/godmode/modules/configure_local_component.php:417 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 -#: ../../godmode/modules/manage_network_components_form_common.php:276 -#: ../../godmode/massive/massive_edit_modules.php:937 -#: ../../godmode/massive/massive_edit_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:821 -msgid "Each state changing" -msgstr "個別状態変化" - -#: ../../enterprise/godmode/modules/configure_local_component.php:418 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 -#: ../../godmode/modules/manage_network_components_form_common.php:277 -#: ../../godmode/massive/massive_edit_modules.php:964 -#: ../../godmode/agentes/module_manager_editor_common.php:822 -msgid "To normal" -msgstr "正常移行時" - -#: ../../enterprise/godmode/modules/configure_local_component.php:427 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 -#: ../../godmode/modules/manage_network_components_form_common.php:286 -#: ../../godmode/massive/massive_edit_modules.php:974 -#: ../../godmode/agentes/module_manager_editor_common.php:836 -msgid "To warning" -msgstr "警告移行時" - -#: ../../enterprise/godmode/modules/configure_local_component.php:436 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 -#: ../../godmode/modules/manage_network_components_form_common.php:295 -#: ../../godmode/massive/massive_edit_modules.php:984 -#: ../../godmode/agentes/module_manager_editor_common.php:850 -msgid "To critical" -msgstr "障害移行時" - -#: ../../enterprise/godmode/modules/configure_local_component.php:450 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/massive/massive_edit_modules.php:1028 -#: ../../godmode/agentes/module_manager_editor_common.php:880 -msgid "FF timeout" -msgstr "連続抑制タイムアウト" - -#: ../../enterprise/godmode/modules/configure_local_component.php:458 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 -#: ../../godmode/massive/massive_edit_modules.php:1038 -msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " -"counter is reset. Set to 0 for no timeout." -msgstr "" -"連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリセットさ" -"れます。0に設定するとタイムアウトしません。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -msgid "This value can be set only in the async modules." -msgstr "この値は非同期モジュールでのみ設定可能です。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:309 -msgid "Any value below this number is discarted" -msgstr "この値よりも小さい値は削除されます。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:311 -msgid "Any value over this number is discarted" -msgstr "この値よりも大きい値は削除されます。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:473 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../godmode/modules/manage_network_components_form_plugin.php:49 -#: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/modules/manage_network_components_form_network.php:178 -#: ../../godmode/massive/massive_edit_modules.php:780 -#: ../../godmode/agentes/module_manager_editor_common.php:649 -msgid "Post process" -msgstr "データ保存倍率" - -#: ../../enterprise/godmode/modules/configure_local_component.php:500 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 -msgid "Load a basic structure on data configuration" -msgstr "データ設定に基本構造をロードします" - -#: ../../enterprise/godmode/modules/configure_local_component.php:503 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 -msgid "Check the correct structure of the data configuration" -msgstr "データ設定の正常性を確認" - -#: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 -msgid "First line must be \"module_begin\"" -msgstr "最初の行は、\"module_begin\" でなければいけません" - -#: ../../enterprise/godmode/modules/configure_local_component.php:507 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 -msgid "Data configuration is empty" -msgstr "データ設定が空です" - -#: ../../enterprise/godmode/modules/configure_local_component.php:508 -#: ../../enterprise/godmode/modules/configure_local_component.php:512 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 -msgid "Last line must be \"module_end\"" -msgstr "最後の行は \"module_end\" でなければいけません" - -#: ../../enterprise/godmode/modules/configure_local_component.php:509 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 -msgid "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to data " -"configuration" -msgstr "" -"名前がありません。データ設定に \"module_name モジュール名\" という行を追加してくださ" -"い。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:510 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 -msgid "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to data " -"configuration" -msgstr "" -"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加してく" -"ださい。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:511 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 -msgid "Type is wrong. Please set a correct type" -msgstr "タイプが不正です。正しいタイプを選択してください。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:514 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 -msgid "Error in the syntax, please check the data configuration." -msgstr "書式エラーです。データ設定を確認してください。" - -#: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 -msgid "Data configuration are built correctly" -msgstr "データ設定が正しく作られました" - -#: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:1092 -#: ../../godmode/agentes/module_manager_editor_common.php:1093 -msgid "Critical instructions" -msgstr "障害時手順" - -#: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:1092 -msgid "Instructions when the status is critical" -msgstr "障害状態になった時の手順" - -#: ../../enterprise/godmode/modules/configure_local_component.php:528 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:1096 -#: ../../godmode/agentes/module_manager_editor_common.php:1098 -msgid "Warning instructions" -msgstr "警告時手順" - -#: ../../enterprise/godmode/modules/configure_local_component.php:528 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:1096 -msgid "Instructions when the status is warning" -msgstr "警告状態になった時の手順" - -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:1100 -#: ../../godmode/agentes/module_manager_editor_common.php:1102 -msgid "Unknown instructions" -msgstr "不明状態時手順" - -#: ../../enterprise/godmode/modules/configure_local_component.php:533 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:1100 -msgid "Instructions when the status is unknown" -msgstr "不明状態になった時の手順" - -#: ../../enterprise/godmode/modules/configure_local_component.php:542 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 -#: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/massive/massive_edit_modules.php:1060 -#: ../../godmode/agentes/module_manager_editor_common.php:1143 -#: ../../godmode/module_library/module_library_view.php:123 -msgid "Category" -msgstr "操作" - -#: ../../enterprise/godmode/modules/configure_local_component.php:561 -#: ../../godmode/modules/manage_network_components_form_common.php:362 -#: ../../godmode/agentes/module_manager_editor_common.php:906 -msgid "Tags available" -msgstr "利用可能なタグ" - -#: ../../enterprise/godmode/modules/configure_local_component.php:579 -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../godmode/agentes/module_manager_editor_common.php:1001 -msgid "Add tags to module" -msgstr "モジュールへのタグ追加" - -#: ../../enterprise/godmode/modules/configure_local_component.php:580 -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../godmode/agentes/module_manager_editor_common.php:1010 -msgid "Delete tags to module" -msgstr "モジュールのタグ削除" - -#: ../../enterprise/godmode/modules/configure_local_component.php:603 -msgid "Macros" -msgstr "マクロ" - -#: ../../enterprise/godmode/modules/configure_local_component.php:978 -#: ../../godmode/modules/manage_network_components_form_common.php:706 -#: ../../godmode/agentes/module_manager_editor_common.php:1994 -msgid "Normal Status" -msgstr "正常状態" - -#: ../../enterprise/godmode/modules/configure_local_component.php:979 -#: ../../godmode/modules/manage_network_components_form_common.php:707 -#: ../../godmode/agentes/module_manager_editor_common.php:1995 -msgid "Warning Status" -msgstr "警告状態" - -#: ../../enterprise/godmode/modules/configure_local_component.php:980 -#: ../../godmode/modules/manage_network_components_form_common.php:708 -#: ../../godmode/agentes/module_manager_editor_common.php:1996 -msgid "Critical Status" -msgstr "障害状態" - -#: ../../enterprise/godmode/modules/configure_local_component.php:983 -#: ../../godmode/modules/manage_network_components_form_common.php:710 -#: ../../godmode/agentes/module_manager_editor_common.php:1998 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "警告の最大値は、警告の最小値よりも大きくしてください" - -#: ../../enterprise/godmode/modules/configure_local_component.php:985 -#: ../../godmode/modules/manage_network_components_form_common.php:711 -#: ../../godmode/agentes/module_manager_editor_common.php:1999 -msgid "Please introduce a maximum critical higher than the minimun critical" -msgstr "障害の最大値は、障害の最小値よりも大きくしてください" - -#: ../../enterprise/godmode/modules/configure_local_component.php:987 -msgid "Please introduce a positicve percentage value" -msgstr "正のパーセント値を指定してください" - -#: ../../enterprise/godmode/modules/local_components.php:141 -#: ../../godmode/modules/manage_network_components.php:196 -#: ../../godmode/alerts/configure_alert_template.php:191 -#, php-format -msgid "Successfully created from %s" -msgstr "%s から作成しました。" - -#: ../../enterprise/godmode/modules/local_components.php:157 -msgid "Local component management" -msgstr "ローカルコンポーネント管理" - -#: ../../enterprise/godmode/modules/local_components.php:263 -#, php-format -msgid "" -"This node is configured with centralized mode. All local components are read only. Go " -"to %s to manage them." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは読み取" -"り専用です。それらを管理するには、%s に移動します。" - -#: ../../enterprise/godmode/modules/local_components.php:443 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 -#: ../../godmode/modules/manage_network_components.php:578 -#: ../../godmode/modules/manage_network_templates.php:114 -#: ../../godmode/modules/manage_nc_groups.php:194 -msgid "Successfully multiple deleted" -msgstr "複数削除しました" - -#: ../../enterprise/godmode/modules/local_components.php:444 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 -#: ../../godmode/modules/manage_network_components.php:579 -#: ../../godmode/modules/manage_network_templates.php:115 -#: ../../godmode/modules/manage_nc_groups.php:195 -msgid "Not deleted. Error deleting multiple data" -msgstr "削除できませんでした。複数データの削除でエラーです。" - -#: ../../enterprise/godmode/modules/local_components.php:548 -msgid "Search by name, description or data, list matches." -msgstr "名前、説明、データでマッチするものを検索します。" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40 -msgid "To manage inventory plugin you must activate centralized management" -msgstr "インベントリプラグインを管理するには、中央管理を有効化する必要があります" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:117 -msgid "Successfully created inventory module" -msgstr "インベントリモジュールを作成しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 -msgid "Error creating inventory module" -msgstr "インベントリモジュールの作成エラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 -#: ../../enterprise/godmode/agentes/inventory_manager.php:128 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -msgid "Successfully updated inventory module" -msgstr "インベントリモジュールを更新しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:144 -#: ../../enterprise/godmode/agentes/inventory_manager.php:130 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -msgid "Error updating inventory module" -msgstr "インベントリモジュールの更新エラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:162 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:100 -msgid "Successfully deleted inventory module" -msgstr "インベントリモジュールを削除しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 -#: ../../enterprise/godmode/agentes/inventory_manager.php:102 -msgid "Error deleting inventory module" -msgstr "インベントリモジュールの削除エラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 -msgid "Interpreter" -msgstr "処理系" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 -msgid "No inventory modules defined" -msgstr "インベントリモジュールがありません" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 -msgid "Local module" -msgstr "ローカルモジュール" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 -msgid "Remote/Local" -msgstr "リモート/ローカル" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 -msgid "" -"The configurations of inventory modules from the nodes have been unified.\n" -"\t\tFrom this point on, changes to the inventory scripts must be made through this " -"screen." -msgstr "" -"ノードからのインベントリモジュールの設定が統合されました。\n" -"\t\tこれ以降、インベントリスクリプトへの変更はこの画面から行う必要があります。" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:355 -msgid "You can find more information at:" -msgstr "詳細については次を参照してください:" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 -#: ../../enterprise/godmode/agentes/inventory_manager.php:165 -msgid "Inventory module error" -msgstr "インベントリモジュールエラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 -msgid "Left blank for the LOCAL inventory modules" -msgstr "ローカルインベントリモジュールの場合は入力しないでください" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -msgid "Block Mode" -msgstr "ブロックモード" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "separate fields with " -msgstr "フィールドセパレータは、 " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory modules " -"don't use this field" -msgstr "" -"リモートインベントリモジュールのスクリプトを入力します。ローカルインベントリモジュール" -"ではこのフィールドは使いません。" - -#: ../../enterprise/godmode/services/services.elements.php:72 -msgid "Invalid service" -msgstr "不正なサービスです" - -#: ../../enterprise/godmode/services/services.elements.php:250 -msgid "Add custom field match" -msgstr "カスタムフィールドマッチを追加" - -#: ../../enterprise/godmode/services/services.elements.php:256 -msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." -msgstr "" -"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視します。" - -#: ../../enterprise/godmode/services/services.elements.php:261 -msgid "MySQL Regular expressions case sensitive." -msgstr "MySQL 正規表現では大文字と小文字が区別されます。" - -#: ../../enterprise/godmode/services/services.elements.php:267 -msgid "Matching objects type" -msgstr "一致するオブジェクトタイプ" - -#: ../../enterprise/godmode/services/services.elements.php:282 -msgid "Filter by group" -msgstr "グループでフィルタする" - -#: ../../enterprise/godmode/services/services.elements.php:294 -msgid "Use regular expresions selectors" -msgstr "正規表現セレクターを使用する" - -#: ../../enterprise/godmode/services/services.elements.php:302 -msgid "Having agent name" -msgstr "エージェント名あり" - -#: ../../enterprise/godmode/services/services.elements.php:310 -msgid "Having module name" -msgstr "モジュール名あり" - -#: ../../enterprise/godmode/services/services.elements.php:320 -msgid "Having custom fields" -msgstr "カスタムフィールドあり" - -#: ../../enterprise/godmode/services/services.elements.php:331 -msgid "Apply rules on this server" -msgstr "このサーバにルールを適用" - -#: ../../enterprise/godmode/services/services.elements.php:350 -msgid "Weights" -msgstr "ウェイト" - -#: ../../enterprise/godmode/services/services.elements.php:355 -msgid "In smart mode weights are automatically calculated." -msgstr "スマートモードでは、ウエイトは自動的に計算されます。" - -#: ../../enterprise/godmode/services/services.elements.php:453 -#: ../../enterprise/godmode/services/services.elements.php:461 -#: ../../enterprise/godmode/services/services.elements.php:468 -msgid "Selected agent not found." -msgstr "選択したエージェントが見つかりません。" - -#: ../../enterprise/godmode/services/services.elements.php:474 -#: ../../enterprise/godmode/services/services.elements.php:485 -#, php-format -msgid "Selected module not found in %s." -msgstr "選択したモジュールが %s に見つかりません。" - -#: ../../enterprise/godmode/services/services.elements.php:494 -msgid "Selected service not found." -msgstr "選択したサービスが見つかりません。" - -#: ../../enterprise/godmode/services/services.elements.php:511 -msgid "Selected service could generate a loop" -msgstr "選択したサービスはループを起こす可能性があります" - -#: ../../enterprise/godmode/services/services.elements.php:521 -#, php-format -msgid "Failed adding service child: %s" -msgstr "子サービスの追加に失敗しました: %s" - -#: ../../enterprise/godmode/services/services.elements.php:560 -#, php-format -msgid "Selected rules are not valid: %s." -msgstr "選択したルールが不正です: %s。" - -#: ../../enterprise/godmode/services/services.elements.php:568 -msgid "Invalid element type." -msgstr "要素タイプが不正です。" - -#: ../../enterprise/godmode/services/services.elements.php:594 -msgid "Element registered successfully" -msgstr "要素を登録しました" - -#: ../../enterprise/godmode/services/services.elements.php:640 -#, php-format -msgid "Error deleting element: %s" -msgstr "要素削除エラー: %s" - -#: ../../enterprise/godmode/services/services.elements.php:842 -msgid "Add element" -msgstr "要素追加" - -#: ../../enterprise/godmode/services/services.elements.php:853 -msgid "Edit element" -msgstr "要素編集" - -#: ../../enterprise/godmode/services/services.service.php:107 -msgid "Service already exists." -msgstr "サービスは既に存在します。" - -#: ../../enterprise/godmode/services/services.service.php:118 -#: ../../enterprise/godmode/massive/massive_create_services.php:110 -msgid "No name specified for the service" -msgstr "サービスに名前がありません" - -#: ../../enterprise/godmode/services/services.service.php:129 -#: ../../enterprise/godmode/massive/massive_create_services.php:116 -msgid "No description specified for the service" -msgstr "サービスに説明がありません" - -#: ../../enterprise/godmode/services/services.service.php:140 -#: ../../enterprise/godmode/massive/massive_create_services.php:122 -msgid "You must specify an agent to store the service" -msgstr "サービスを保存するエージェントを指定する必要があります" - -#: ../../enterprise/godmode/services/services.service.php:197 -msgid "Error creating service: " -msgstr "サービス作成エラー: " - -#: ../../enterprise/godmode/services/services.service.php:206 -#: ../../enterprise/godmode/services/services.service.php:310 -msgid "New Service" -msgstr "新規サービス" - -#: ../../enterprise/godmode/services/services.service.php:212 -msgid "Service created successfully" -msgstr "サービスを作成しました" - -#: ../../enterprise/godmode/services/services.service.php:290 -msgid "Service updated successfully" -msgstr "サービスを更新しました" - -#: ../../enterprise/godmode/services/services.service.php:361 -msgid "Dynamic elements are not affected by cascade protection" -msgstr "動的要素は関連障害検知抑制の影響を受けません" - -#: ../../enterprise/godmode/services/services.service.php:511 -msgid "No Services or concrete action" -msgstr "サービスまたは具体的なアクションがありません" - -#: ../../enterprise/godmode/services/services.service.php:530 -msgid "Random name" -msgstr "ランダムな名前" - -#: ../../enterprise/godmode/services/services.service.php:562 -#: ../../enterprise/godmode/massive/massive_create_services.php:659 -msgid "This group will be used also to control access to this service and its elements." -msgstr "" -"このグループは、このサービスとその要素へのアクセスを制御するためにも使用されます。" - -#: ../../enterprise/godmode/services/services.service.php:578 -msgid "Server assigned" -msgstr "割当サーバ" - -#: ../../enterprise/godmode/services/services.service.php:579 -msgid "Selected Prediction server will be assigned to evaluate the service." -msgstr "選択した予測サーバはサービスの評価に割り当てられます。" - -#: ../../enterprise/godmode/services/services.service.php:600 -msgid "Evaluation interval" -msgstr "評価間隔" - -#: ../../enterprise/godmode/services/services.service.php:626 -#: ../../enterprise/godmode/massive/massive_create_services.php:674 -msgid "Agent to store data" -msgstr "データを保存するエージェント" - -#: ../../enterprise/godmode/services/services.service.php:668 -#: ../../enterprise/godmode/massive/massive_create_services.php:716 -msgid "In smart mode, thresholds are percentual." -msgstr "スマートモードでは、しきい値はパーセントです。" - -#: ../../enterprise/godmode/services/services.service.php:718 -#: ../../enterprise/godmode/massive/massive_create_services.php:799 -msgid "Unknown elements as critical" -msgstr "障害と認識する不明要素" - -#: ../../enterprise/godmode/services/services.service.php:748 -#: ../../enterprise/godmode/massive/massive_create_services.php:829 -msgid "Cascade protection enabled" -msgstr "関連障害検知抑制が有効" - -#: ../../enterprise/godmode/services/services.service.php:758 -msgid "General Data" -msgstr "一般データ" - -#: ../../enterprise/godmode/services/services.service.php:768 -#: ../../enterprise/godmode/massive/massive_create_services.php:842 -msgid "Calculate continuous SLA" -msgstr "連続 SLA 計算" - -#: ../../enterprise/godmode/services/services.service.php:778 -#: ../../enterprise/godmode/massive/massive_create_services.php:852 -msgid "S.L.A. interval" -msgstr "SLA 間隔" - -#: ../../enterprise/godmode/services/services.service.php:792 -#: ../../enterprise/godmode/massive/massive_create_services.php:866 -msgid "S.L.A. limit" -msgstr "SLA 制限" - -#: ../../enterprise/godmode/services/services.service.php:813 -msgid "" -"Here are described the alert templates, which will use their default actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who stores data " -"and alert definitions about the service and the SLA status." -msgstr "" -"アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" -"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでアラー" -"トを編集することによりデフォルトの動作を変更できます。" - -#: ../../enterprise/godmode/services/services.service.php:839 -#: ../../enterprise/godmode/massive/massive_create_services.php:896 -msgid "Warning service alert" -msgstr "警告サービスアラート" - -#: ../../enterprise/godmode/services/services.service.php:851 -#: ../../enterprise/godmode/massive/massive_create_services.php:908 -msgid "Critical service alert" -msgstr "障害サービスアラート" - -#: ../../enterprise/godmode/services/services.service.php:863 -#: ../../enterprise/godmode/massive/massive_create_services.php:920 -msgid "Unknown service alert" -msgstr "不明サービスアラート" - -#: ../../enterprise/godmode/services/services.service.php:875 -#: ../../enterprise/godmode/massive/massive_create_services.php:932 -msgid "S.L.A. critical service alert" -msgstr "SLA 障害サービスアラート" - -#: ../../enterprise/godmode/services/services.service.php:970 -msgid "" -"This change in the service configuration will delete the history of the service " -"modules. Do you wish to continue?" -msgstr "" -"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しますか?" - -#: ../../enterprise/godmode/services/services.service.php:972 -msgid "" -"This change in the service configuration will prevent the SLA modules from being " -"created. Do you wish to continue?" -msgstr "" -"このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行しますか?" - -#: ../../enterprise/godmode/services/services.massive.meta.php:56 -#: ../../enterprise/godmode/services/services.massive.elements.php:93 -#: ../../godmode/massive/massive_edit_agents.php:952 -#: ../../godmode/agentes/agent_manager.php:502 -msgid "Not available" -msgstr "利用できません" - -#: ../../enterprise/godmode/services/services.massive.elements.php:56 -#: ../../enterprise/godmode/massive/massive_operations.php:157 -msgid "Bulk service elements adition" -msgstr "一括サービス要素追加" - -#: ../../enterprise/godmode/services/services.massive.elements.php:57 -#: ../../enterprise/godmode/massive/massive_operations.php:159 -msgid "Bulk service elements deletion" -msgstr "一括サービス要素削除" - -#: ../../enterprise/godmode/services/services.massive.elements.php:61 -#: ../../enterprise/godmode/massive/massive_operations.php:158 -msgid "Bulk service elements edition" -msgstr "一括サービス要素編集" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:63 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 -#: ../../godmode/reporting/map_builder.php:75 -#: ../../godmode/reporting/map_builder.php:121 -#: ../../godmode/reporting/visual_console_favorite.php:72 -msgid "Visual Console List" -msgstr "ビジュアルコンソール一覧" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:75 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 -#: ../../godmode/reporting/map_builder.php:87 -#: ../../godmode/reporting/visual_console_favorite.php:84 -msgid "Visual Favourite Console" -msgstr "お気に入りビジュアルコンソール" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:88 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 -#: ../../godmode/reporting/map_builder.php:100 -#: ../../godmode/reporting/visual_console_favorite.php:97 -msgid "Visual Console Template" -msgstr "ビジュアルコンソールテンプレート" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:100 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 -#: ../../godmode/reporting/map_builder.php:112 -#: ../../godmode/reporting/visual_console_favorite.php:109 -msgid "Visual Console Template Wizard" -msgstr "ビジュアルコンソールテンプレートウィザード" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:141 -#: ../../enterprise/godmode/reporting/visual_console_template.php:157 -msgid "visual console has not been selected" -msgstr "ビジュアルコンソールが選択されていません" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:147 -msgid "Error. Error created template" -msgstr "エラー: テンプレート作成エラー" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:149 -msgid "Error. Template name cannot be repeated" -msgstr "エラー: 同じテンプレート名は利用できません" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:151 -msgid "Successfully created template" -msgstr "テンプレートを作成しました" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:163 -msgid "Error. Error delete template" -msgstr "エラー: テンプレート削除エラー" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:165 -msgid "Successfully delete template" -msgstr "テンプレートを削除しました" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:187 -msgid "Create From" -msgstr "次から作成:" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:198 -msgid "There is not any visual console created. Please, create one firstly." -msgstr "作成済のビジュアルコンソールがありません。最初に一つ作成してください。" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:254 -#: ../../enterprise/godmode/reporting/graph_template_list.php:257 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 -msgid "Create template" -msgstr "テンプレートの作成" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:260 -msgid "Create New Template" -msgstr "新しいテンプレートを作成" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 -msgid "Template Wizard" -msgstr "テンプレートウィザード" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "Sucessfully applied" -msgstr "適用しました" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 -msgid "Could not be applied" -msgstr "適用できません" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 -msgid "Visual console name" -msgstr "ビジュアルコンソール名" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 -msgid "" -"You can use macro _agentalias_ here. Left in blank if you want to use default name: " -"Template name - agent alias" -msgstr "" -"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白のまま" -"にします: テンプレート名 - エージェントの別名" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 -msgid "Target group" -msgstr "対象グループ" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -msgid "Agents available" -msgstr "存在するエージェント" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Agents to apply" -msgstr "適用するエージェント" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 -msgid "Add agents to template" -msgstr "テンプレートにエージェントを追加" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 -msgid "Undo agents to template" -msgstr "エージェントをテンプレートから外します" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 -msgid "Apply template" -msgstr "テンプレート適用" - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -msgid "Please set template distinct than " -msgstr "次より明確なテンプレートを指定してください: " - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -msgid "Please set agent distinct than " -msgstr "エージェントを次のもの以外で明確にしてください: " - -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 -msgid "" -"This will be delete all reports created in previous template applications. Do you " -"want to continue?" -msgstr "以前のテンプレート内の全レポートを削除します。続けますか?" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:378 -#: ../../godmode/reporting/reporting_builder.list_items.php:397 -#: ../../godmode/reporting/reporting_builder.list_items.php:416 -msgid "Ascendent" -msgstr "上へ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../godmode/reporting/reporting_builder.list_items.php:385 -#: ../../godmode/reporting/reporting_builder.list_items.php:404 -#: ../../godmode/reporting/reporting_builder.list_items.php:420 -msgid "Descent" -msgstr "下へ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1722 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 -#: ../../godmode/reporting/reporting_builder.list_items.php:424 -#: ../../godmode/reporting/create_container.php:364 -#: ../../godmode/reporting/create_container.php:473 -#: ../../godmode/reporting/create_container.php:527 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1212 -msgid "Time lapse" -msgstr "時間経過" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 -#: ../../godmode/reporting/reporting_builder.list_items.php:425 -msgid "Name or Description" -msgstr "名前または説明" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 -#: ../../godmode/netflow/nf_item_list.php:228 ../../godmode/netflow/nf_item_list.php:230 -msgid "Move to up" -msgstr "上へ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 -#: ../../godmode/netflow/nf_item_list.php:226 ../../godmode/netflow/nf_item_list.php:231 -msgid "Move to down" -msgstr "下へ" - -#: ../../enterprise/godmode/reporting/aws_view.php:53 -msgid "Instance" -msgstr "インスタンス" - -#: ../../enterprise/godmode/reporting/aws_view.php:55 -msgid "IO read" -msgstr "IO 読み込み" - -#: ../../enterprise/godmode/reporting/aws_view.php:56 -msgid "IO write" -msgstr "IO 書き込み" - -#: ../../enterprise/godmode/reporting/aws_view.php:57 -msgid "Disk read" -msgstr "ディスクの読み込み" - -#: ../../enterprise/godmode/reporting/aws_view.php:58 -msgid "Disk write" -msgstr "ディスクの書き込み" - -#: ../../enterprise/godmode/reporting/aws_view.php:59 -msgid "Network in" -msgstr "入力トラフィック" - -#: ../../enterprise/godmode/reporting/aws_view.php:60 -msgid "Network out" -msgstr "出力トラフィック" - -#: ../../enterprise/godmode/reporting/aws_view.php:134 -msgid "Failed to retrieve AWS information using selected account." -msgstr "選択したアカウントで AWS 情報の取得に失敗しました。" - -#: ../../enterprise/godmode/reporting/aws_view.php:153 -msgid "AWS credentials not validated." -msgstr "AWS 認証情報は検証されていません。" - -#: ../../enterprise/godmode/reporting/aws_view.php:168 -msgid "Discovery Cloud: AWS" -msgstr "クラウド検出: AWS" - -#: ../../enterprise/godmode/reporting/aws_view.php:177 -msgid "Please, select an account: " -msgstr "アカウントを選択してください: " - -#: ../../enterprise/godmode/reporting/aws_view.php:186 -msgid "CREATE CLOUD MONITORING DISCOVERY TASK" -msgstr "クラウド監視自動検出タスク作成" - -#: ../../enterprise/godmode/reporting/aws_view.php:189 -msgid "" -"Within this view you will find information collected using Discovery Cloud AWS task. " -"You will be able to see the most relevant information about your infrastructure, such " -"as the current cost of your contracted services, the number of instances per region " -"or resource usage metrics. In order to collect this information you must create a " -"Cloud Monitoring Discovery task." -msgstr "" -"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 契約サー" -"ビスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指標など、インフラ" -"に関する最も関連性の高い情報を確認できます。 この情報を収集するには、クラウド監視自動" -"検出タスクを作成する必要があります。" - -#: ../../enterprise/godmode/reporting/aws_view.php:192 -msgid "Press the create button to begin." -msgstr "始めるには作成ボタンを押してください。" - -#: ../../enterprise/godmode/reporting/aws_view.php:221 -msgid "Instance table" -msgstr "インスタンステーブル" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 -msgid "Cleanup sucessfully" -msgstr "整理しました" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 -msgid "Cleanup error" -msgstr "整理エラー" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127 -#: ../../enterprise/godmode/reporting/graph_template_list.php:111 -#: ../../godmode/reporting/graph_container.php:101 -#: ../../godmode/reporting/graph_container.php:109 -#: ../../godmode/reporting/create_container.php:188 -msgid "Graph container" -msgstr "グラフコンテナ" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 -msgid "Wizard template" -msgstr "ウィザードテンプレート" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 -msgid "Clean up template" -msgstr "整理テンプレート" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 -msgid "No item could be applied to report." -msgstr "レポートにアイテムを適用できませんでした。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "reports" -msgstr "レポート" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -msgid "items" -msgstr "アイテム" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 -#: ../../godmode/massive/massive_operations.php:347 -msgid "" -"In order to perform massive operations, PHP needs a correct configuration in timeout " -"parameters. Please, open your PHP configuration file (php.ini) for example: sudo " -"vi /etc/php5/apache2/php.ini;
    And set your timeout parameters to a correct " -"value:
    max_execution_time = 0 and max_input_time = -1" -msgstr "" -"一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。php設定" -"ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タイムアウトパラ" -"メータを次のように設定してください。
    max_execution_time = 0、 " -"max_input_time = -1" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 -msgid "Create template report wizard" -msgstr "レポートウィザードテンプレート作成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 -msgid "Create report per agent" -msgstr "エージェントごとのレポート作成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 -msgid "" -"Left in blank if you want to use default name: Template name - agents (num agents) - " -"Date" -msgstr "" -"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用したい" -"場合は、空白にしてください。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 -msgid "Filter by" -msgstr "フィルタ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 -msgid "Filter tag" -msgstr "タグフィルタ" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:66 -msgid "Custom MySQL template builder" -msgstr "カスタム MySQL テンプレートビルダ" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:117 -msgid "Create custom SQL" -msgstr "カスタム SQL 作成" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:146 -msgid "Create new custom" -msgstr "設定の新規作成" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:187 -msgid "List of custom MySQL templates" -msgstr "カスタム MySQL テンプレート一覧" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:193 -msgid "Template builder" -msgstr "テンプレートビルダ" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 -msgid "Successfully operation" -msgstr "操作が完了しました" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 -msgid "Could not be operation" -msgstr "操作を完了できませんでした" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -msgid "Without changes" -msgstr "変更なし" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 -msgid "Advance Reporting" -msgstr "拡張レポート" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 -msgid "Page orientation" -msgstr "ページの向き" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65 -msgid "Graph template item editor" -msgstr "グラフテンプレートアイテムエディタ" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -msgid "Decrease Weight" -msgstr "ウエイトを減らす" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 -msgid "Increase Weight" -msgstr "ウエイトを増やす" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../godmode/reporting/reporting_builder.item_editor.php:58 -msgid "Only table" -msgstr "表のみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 -#: ../../godmode/reporting/reporting_builder.item_editor.php:59 -msgid "Table & Graph" -msgstr "表とグラフ" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 -#: ../../godmode/reporting/reporting_builder.item_editor.php:60 -msgid "Only graph" -msgstr "グラフのみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 -msgid "hourly S.L.A." -msgstr "時間ごとの S.L.A." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 -msgid "Availability Graph S.L.A." -msgstr "S.L.A. 可用性グラフ" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:207 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 -msgid "If you select several agents, only the common modules will be displayed" -msgstr "複数のエージェントを選択すると、共通のモジュールのみ表示されます。" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:275 -msgid "Elements to apply" -msgstr "適用する要素" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 -msgid "SLA min value" -msgstr "SLA 最小値" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366 -msgid "Enter possible range of values in SLA." -msgstr "SLA に可能な値の範囲を入力してください。" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 -msgid "SLA min Value" -msgstr "SLA 最小値" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360 -msgid "SLA max value" -msgstr "SLA 最大値" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361 -msgid "SLA max Value" -msgstr "SLA 最大値" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366 -msgid "SLA Limit %" -msgstr "SLA 制限 %" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:367 -msgid "SLA Limit Value" -msgstr "SLA 制限値" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:372 -msgid "Dynamic SLA" -msgstr "動的 SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:379 -msgid "Inverse SLA" -msgstr "SLA の反転" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:388 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3030 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3077 -msgid "Failover mode" -msgstr "フェイルオーバーモード" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:389 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3031 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:449 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3078 -msgid "" -"SLA calculation must be performed taking into account the failover modules assigned " -"to the primary module" -msgstr "" -"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考慮して" -"実行する必要があります" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3050 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:466 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3097 -msgid "Failover type" -msgstr "フェイルオーバータイプ" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:411 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3055 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:471 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3102 -msgid "Failover normal" -msgstr "通常のフェイルオーバー" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:423 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:483 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3114 -msgid "Failover simple" -msgstr "シンプルなフェイルオーバー" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2965 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3022 -msgid "SLA items sorted by fulfillment value" -msgstr "実データによりソートしたSLAアイテム" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:441 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1816 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1309 -msgid "Only display wrong SLAs" -msgstr "不正な SLA のみ表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2566 -msgid "Show graph" -msgstr "グラフ表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:465 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:783 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3427 -msgid "Show item in landscape format (only PDF)" -msgstr "項目を横向き形式で表示(PDFのみ)" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3436 -msgid "Page break at the end of the item (only PDF)" -msgstr "アイテムの最後の改ページ(PDFのみ)" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:520 -msgid "Please introduce a SLA max value higher than the SLA min value" -msgstr "SLA の最大値は、SLA の最小値よりも大きくしてください" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:644 -msgid "Dynamic SLA can not be Inverse" -msgstr "動的 SLA は反転できません" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:649 -msgid "Check Dynamic SLA or introduce a max and min SLA value" -msgstr "動的 SLA を確認するか、最大および最小 SLA 値を入力します" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:653 -msgid "SLA Limit value is needed" -msgstr "SLA 制限値が必要です" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:58 -msgid "Not created. Blank name" -msgstr "作成できませんでした。名前が空です" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:94 -msgid "Graph template editor" -msgstr "グラフテンプレートエディタ" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:173 -msgid "Template updated successfully" -msgstr "テンプレートを更新しました" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 -msgid "3 hours" -msgstr "3時間" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 -#: ../../godmode/setup/performance.php:532 -msgid "2 days" -msgstr "2日" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 -msgid "4 days" -msgstr "4日" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 -#: ../../godmode/setup/performance.php:534 -msgid "Last week" -msgstr "先週" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 -#: ../../godmode/setup/performance.php:536 -msgid "Last month" -msgstr "先月" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 -msgid "2 months" -msgstr "2ヶ月" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -msgid "Stacked" -msgstr "積み上げ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 -msgid "Advance Options" -msgstr "拡張オプション" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:119 -msgid "Graph template management" -msgstr "グラフテンプレート管理" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 -#: ../../godmode/alerts/alert_list.list.php:56 -msgid "Template name" -msgstr "テンプレート名" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:252 -msgid "There are no defined graph templates" -msgstr "定義済のグラフテンプレートがありません" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 -msgid "Edit template" -msgstr "テンプレートの編集" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 -msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* will " -"match with the following agent alias: network_agent1, NetworK CHECKS" -msgstr "" -"エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次のエー" -"ジェント別名と一致します: network_agent1, NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 -#: ../../godmode/reporting/reporting_builder.main.php:226 -msgid "Generate cover page in PDF render" -msgstr "PDFレンダリングで表紙を生成する" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 -#: ../../godmode/reporting/reporting_builder.main.php:234 -msgid "Generate index in PDF render" -msgstr "PDFレンダリングで目次を生成する" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 -#: ../../godmode/reporting/reporting_builder.php:3660 -msgid "Successfull action" -msgstr "処理に成功しました。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1625 -#: ../../godmode/servers/modificar_server.php:157 -#: ../../godmode/servers/modificar_server.php:168 -msgid "Unsuccessfull action" -msgstr "処理に失敗しました。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1642 -#: ../../godmode/reporting/reporting_builder.item_editor.php:972 -msgid "Item Editor" -msgstr "アイテムエディタ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4993 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:797 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1237 -#: ../../godmode/reporting/reporting_builder.item_editor.php:6945 -msgid "" -"Warning: period 0 reports cannot be used to show information back in time. " -"Information contained in this kind of reports will be always reporting the most " -"recent information" -msgstr "" -"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれるの" -"は、最新の情報のみとなります。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:759 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1277 -msgid "Projection period" -msgstr "予想期間" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1296 -msgid "Data range" -msgstr "データ範囲" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1323 -msgid "Current month" -msgstr "今月" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1840 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1339 -msgid "Working time" -msgstr "対象時間" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1905 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1405 -msgid "Time from" -msgstr "開始時間" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1923 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1423 -msgid "Time to" -msgstr "終了時間" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1441 -msgid "Show 24x7 item" -msgstr "24時間365日のアイテムを表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1971 -msgid "Select server" -msgstr "サーバ選択" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:189 -msgid "Local metaconsole" -msgstr "ローカルメタコンソール" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2056 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3632 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3864 -msgid "" -"Case insensitive regular expression or string for module name. For example: if you " -"use this field with \"Module exact match\" enabled then this field has to be " -"fulfilled with the literally string of the module name, if not you can use a regular " -"expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1." -msgstr "" -"モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モジュール" -"完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字列そのままの指" -"定です。そうでない場合は正規表現です。例えば .*usage.* は、cpu_usage、vram usage in " -"machine 1 にマッチします。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078 -msgid "Module exact match" -msgstr "モジュール完全一致" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2079 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3564 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3640 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3788 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3871 -msgid "Check it if you want to match module name literally" -msgstr "モジュール名の文字列通りにマッチさせたい場合にチェックします" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095 -msgid "Case insensitive regular expression or string for templates name." -msgstr "テンプレート名の大文字と小文字を区別しない正規表現または文字列。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2118 -msgid "Case insensitive regular expression or string for actions name." -msgstr "アクション名の大文字と小文字を区別しない正規表現または文字列。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2140 -msgid "Hide items without data" -msgstr "データのないアイテムを隠す" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2141 -msgid "Check it if you want not show items without data" -msgstr "データのないアイテムを表示したくない場合はチェックしてください" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2198 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2237 -msgid "Max items" -msgstr "最大アイテム" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2215 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2249 -msgid "Serialized header" -msgstr "ヘッダの並び" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2216 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2250 -msgid "The separator character is |" -msgstr "デリミタは'|'です。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2231 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2202 -msgid "Custom SQL template" -msgstr "カスタム SQL テンプレート" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2223 -msgid "The entities of the fields that contain them must be included." -msgstr "それらを含むフィールドのエンティティを含める必要があります。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2277 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2280 -msgid "Protocol must be specified in URL (e.g.: \"https://\")" -msgstr "URL にはプロトコルを指定する必要があります。(例: \"https://\")" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2286 -msgid "Field separator" -msgstr "フィールドセパレータ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2287 -msgid "Separator for different fields in the serialized text chain" -msgstr "連なったテキスト文字列でフィールドを分離するためのセパレータ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2307 -msgid "Line separator" -msgstr "行セパレータ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2308 -msgid "Separator in different lines (composed by fields) of the serialized text chain" -msgstr "(複数フィールドからなる)複数行のテキスト文字列をまたぐセパレータ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:313 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2328 -msgid "Group by agent" -msgstr "エージェント毎のグループ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2341 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3392 -msgid "Group by" -msgstr "グループ化" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:325 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 -msgid "Show in the same row" -msgstr "同一行に表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2377 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3000 -msgid "Show one module per row with all its operations" -msgstr "すべての操作で行ごとに1つのモジュールを表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2469 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 -msgid "Graph render" -msgstr "グラフレンダリング" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2475 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:529 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2438 -msgid "Avg, max & min" -msgstr "平均、最大 & 最小" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:530 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2439 -msgid "Max only" -msgstr "最大のみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:531 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2440 -msgid "Min only" -msgstr "最小のみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:532 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 -msgid "Avg only" -msgstr "平均のみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2491 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:559 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2487 -msgid "Full resolution graph (TIP)" -msgstr "詳細グラフ (TIP)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:577 -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:2533 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2542 -msgid "Condition" -msgstr "状態" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2543 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:424 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2550 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:426 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2590 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2580 -msgid "Select fields to show" -msgstr "表示するフィールドの選択" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:354 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2656 -msgid "Show address instead module name" -msgstr "モジュール名の代わりにアドレスを表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2670 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:355 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2657 -msgid "Show the main address of agent." -msgstr "エージェントのメインアドレスを表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2676 -msgid "Show resume" -msgstr "復旧を表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2690 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450 -msgid "Show a resume table with max, min, average of total modules on the report bottom" -msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2708 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2696 -msgid "

    Select fields to show

    " -msgstr "

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

    " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2756 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 -msgid "

    Select fields to show

    " -msgstr "

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

    " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2772 -msgid "Agent min values" -msgstr "エージェント最小値" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2784 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 -msgid "Show Summary group" -msgstr "グループ概要を表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2801 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3375 -msgid "Show Summary" -msgstr "概要を表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2870 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:655 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2871 -msgid "Event Status" -msgstr "イベントの状態" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2901 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:685 -msgid "By agent" -msgstr "エージェントで分類" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:695 -msgid "By user validator" -msgstr "ユーザで分類" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:705 -msgid "By criticity" -msgstr "重要度で分類" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2931 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:715 -msgid "Validated vs unvalidated" -msgstr "承諾済み・未承諾で分類" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2979 -msgid "Height (dynamic graphs)" -msgstr "高さ(動的グラフ)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2963 -msgid "Query History Database" -msgstr "ヒストリデータベース問い合わせ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2997 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3044 -msgid "Priority mode" -msgstr "優先モード" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3002 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3049 -msgid "Priority ok mode" -msgstr "正常優先モード" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3061 -msgid "Priority unknown mode" -msgstr "不明優先モード" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3104 -msgid "Modules to match" -msgstr "マッチするモジュール" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106 -msgid "Select the modules to match when create a report for agents" -msgstr "エージェントのレポートを作成する時にマッチするモジュールを選択します" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3206 -msgid "Modules to match (Free text)" -msgstr "マッチするモジュール (任意のテキスト)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3208 -msgid "Free text to filter the modules of agents when apply this template." -msgstr "このテンプレートを適用する時のエージェントのモジュールフィルタテキスト" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3225 -msgid "Create a graph for each agent" -msgstr "それぞれのエージェントのグラフ作成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3227 -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." -msgstr "" -"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチします。そ" -"うでなければ、全エージェントの全モジュールの大きなグラフを生成します。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3254 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3169 -msgid "Calculate for custom intervals" -msgstr "時間間隔の計算" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3181 -msgid "Time lapse intervals" -msgstr "時間経過間隔" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3184 -msgid "Lapses of time in which the period is divided to make more precise calculations" -msgstr "より正確な計算を行うために期間が分割された経過時間" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3225 -msgid "Table only" -msgstr "表のみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3236 -msgid "Graph only" -msgstr "グラフのみ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3333 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 -msgid "Graph and table" -msgstr "グラフと表" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3350 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:816 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3264 -msgid "Uncompress module" -msgstr "非圧縮モジュール" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3265 -msgid "Use uncompressed module data." -msgstr "非圧縮モジュールデータを利用します。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3382 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1165 -msgid "Filter by network" -msgstr "ネットワークによるフィルタ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1184 -msgid "Show alive IPs only" -msgstr "応答のある IP のみ表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3425 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1197 -msgid "Show IPs not assigned to an agent" -msgstr "エージェントに割り当てられていない IP の表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3699 -#: ../../godmode/netflow/nf_item_list.php:282 -msgid "Create item" -msgstr "アイテムの作成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3793 -msgid "SLA Min. (value)" -msgstr "SLA 最小値" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3798 -msgid "SLA Max. (value)" -msgstr "SLA 最大値" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3519 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3803 -msgid "SLA Limit (%)" -msgstr "SLA 制限 (%)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3536 -msgid "Please save the SLA template for start to add items in this list." -msgstr "この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3804 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4394 -msgid "Not literally" -msgstr "存在しません" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3623 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3855 -msgid "" -"Case insensitive regular expression for agent name. For example: Network* will match " -"with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"エージェント名に対して大文字小文字を区別しない正規表現です。例: Network* は、" -"network_agent1、NetworKCHECKS というエージェント名にマッチします。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3870 -msgid "Literal module name forced" -msgstr "リテラルモジュール名が強制されました" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3760 -msgid "Please save the template to start adding items into the list." -msgstr "リストに項目を追加するにはテンプレートを保存してください。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4275 -msgid "Name and SLA limit should not be empty" -msgstr "名前と SLA 制限は空にできません" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 -msgid "Push the selected services into the list" -msgstr "選択したサービスを一覧に入れる" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 -msgid "Remove the services from the list" -msgstr "一覧からサービスを削除" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 -msgid "Icon preview" -msgstr "アイコンプレビュー" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 -msgid "The services list is empty" -msgstr "サービス一覧が空です" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 -msgid "List templates" -msgstr "テンプレート一覧" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 -#: ../../godmode/reporting/reporting_builder.php:1055 -msgid "HTML view" -msgstr "HTML 表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 -#: ../../godmode/reporting/reporting_builder.php:1065 -msgid "Export to XML" -msgstr "XML へエクスポート" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 -msgid "You haven't created templates yet." -msgstr "テンプレートが作成されていません。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 -msgid "Generate a dynamic report" -msgstr "動的レポートを生成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 -msgid "Set start and end date" -msgstr "開始・終了日を設定" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 -msgid "Monthly SLA period" -msgstr "SLA 期間の編集" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 -msgid "This field only applies in case of Monthly SLA item." -msgstr "このフィールドは、月次 SLA アイテムの場合にのみ適用されます。" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 -msgid "Undo agents" -msgstr "エージェント追加取り消し" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 -msgid "RegEx agent filter" -msgstr "正規表現エージェントフィルタ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 -msgid "Generate" -msgstr "生成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -msgid "Please set agent or agent regex distinct than " -msgstr "エージェントまたはエージェントの正規表現を次とは別のものに設定してください: " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 -msgid "It is not a regular expression " -msgstr "正規表現ではありません " - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 -msgid "No agent matches regular expression " -msgstr "正規表現にマッチするエージェントがありません " - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:298 -msgid "Order:" -msgstr "並び順:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:334 -msgid "" -"Show a resume table with max, min, average of total modules on the report bottom:" -msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "サテライトサーバ管理" - -#: ../../enterprise/godmode/menu.php:25 -#: ../../enterprise/godmode/massive/massive_operations.php:99 -msgid "Policies operations" -msgstr "ポリシー操作" - -#: ../../enterprise/godmode/menu.php:36 -#: ../../enterprise/godmode/massive/massive_operations.php:75 -msgid "SNMP operations" -msgstr "SNMP 操作" - -#: ../../enterprise/godmode/menu.php:48 -#: ../../enterprise/godmode/massive/massive_operations.php:28 -msgid "Satellite operations" -msgstr "サテライト操作" - -#: ../../enterprise/godmode/menu.php:60 -#: ../../enterprise/godmode/massive/massive_operations.php:53 -msgid "Services operations" -msgstr "サービス操作" - -#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278 -msgid "Duplicate config" -msgstr "設定の複製" - -#: ../../enterprise/godmode/menu.php:81 ../../godmode/agentes/configurar_agente.php:706 -msgid "Network config manager" -msgstr "ネットワーク設定管理" - -#: ../../enterprise/godmode/menu.php:117 -msgid "Manage agent autoconfiguration" -msgstr "エージェント自動設定管理" - -#: ../../enterprise/godmode/menu.php:174 -msgid "Mysql" -msgstr "Mysql" - -#: ../../enterprise/godmode/menu.php:179 -#: ../../enterprise/godmode/wizards/Applications.class.php:163 -#: ../../enterprise/godmode/wizards/Applications.class.php:171 -msgid "Applications" -msgstr "アプリケーション" - -#: ../../enterprise/godmode/menu.php:190 -msgid "Amazon Web Services" -msgstr "Amazon Web Services" - -#: ../../enterprise/godmode/menu.php:191 -msgid "Microsoft Azure" -msgstr "Microsoft Azure" - -#: ../../enterprise/godmode/menu.php:192 -msgid "Google Compute Platform" -msgstr "Google Compute Platform" - -#: ../../enterprise/godmode/menu.php:208 -msgid "New console task" -msgstr "新規コンソールタスク" - -#: ../../enterprise/godmode/menu.php:218 -msgid "Enterprise ACL Setup" -msgstr "Enterprise ACL 設定" - -#: ../../enterprise/godmode/menu.php:227 -msgid "Skins" -msgstr "スキン" - -#: ../../enterprise/godmode/menu.php:237 -msgid "Manage database HA" -msgstr "データベース HA 管理" - -#: ../../enterprise/godmode/menu.php:269 -msgid "Log Collector" -msgstr "ログ収集" - -#: ../../enterprise/godmode/menu.php:287 -msgid "Password policy" -msgstr "パスワードポリシー" - -#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190 -#: ../../godmode/setup/setup.php:289 -msgid "Module Library" -msgstr "モジュールライブラリ" - -#: ../../enterprise/godmode/menu.php:339 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -msgid "Inventory alerts" -msgstr "インベントリアラート" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 -msgid "Custom OID" -msgstr "カスタム OID" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 -msgid "Successfully added trap custom values" -msgstr "トラップカスタム値を追加しました" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239 -msgid "Error adding trap custom values" -msgstr "トラップカスタム値の追加エラー" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 -msgid "This custom OID is preexistent." -msgstr "このカスタム OID はすでに存在します。" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 -msgid "No change in data" -msgstr "データに変更がありません" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 -msgid "Successfully updated trap custom values" -msgstr "トラップカスタム値を更新しました" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 -msgid "Error updating trap custom values" -msgstr "トラップカスタム値の更新エラー" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 -msgid "Successfully deleted trap custom values" -msgstr "トラップカスタム値を削除しました" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 -msgid "Error deleting trap custom values" -msgstr "トラップカスタム値の削除エラー" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "%s/%s トラップをアップロードしました" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 -msgid "Fail uploaded file" -msgstr "ファイルのアップロードに失敗しました" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 -msgid "" -"MIB files will be loaded and searched for SNMP trap definitions. They will not be " -"installed on the system! You can use the MIB uploader for that purpose." -msgstr "" -"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストールされ" -"ません。MIB アップローダはこの目的の範囲で利用できます。" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360 -msgid "Load MIB" -msgstr "MIBのロード" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362 -msgid "Upload MIB" -msgstr "MIBをアップロード" - -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Show extended info" -msgstr "拡張情報表示" - -#: ../../enterprise/godmode/admin_access_logs.php:99 -msgid "" -"The security check cannot be performed. There are no data in tsession_extended to " -"check the hash." -msgstr "" -"セキュリティチェックを実行できません。ハッシュをチェックするための tsession_extended " -"にデータがありません。" - -#: ../../enterprise/godmode/admin_access_logs.php:108 -msgid "Security check is ok." -msgstr "セキュリティチェックは正常です。" - -#: ../../enterprise/godmode/admin_access_logs.php:113 -msgid "Security check is fail." -msgstr "セキュリティチェックに失敗しました。" - -#: ../../enterprise/godmode/admin_access_logs.php:208 -msgid "Extended info:" -msgstr "拡張情報:" - -#: ../../enterprise/godmode/admin_access_logs.php:216 -msgid "Changes:" -msgstr "変更点:" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71 -msgid "You must select a service" -msgstr "サービスを選択する必要があります" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131 -msgid "Failed to process updating elements in services: " -msgstr "サービス要素の更新に失敗しました: " - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251 -#, php-format -msgid "%d modules" -msgstr "%d モジュール" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259 -#, php-format -msgid "%d agents" -msgstr "%d エージェント" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267 -#, php-format -msgid "%d services" -msgstr "%d サービス" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274 -msgid "No changes made" -msgstr "変更されませんでした" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496 -msgid "In smart services weights are automatically calculated." -msgstr "スマートサービスウエイトは自動的に計算されます。" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501 -msgid "" -"Weights configured are common for every item added to the service, if you want to " -"customize them, please edit each element at service element editor." -msgstr "" -"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらをカスタマ" -"イズする場合は、サービス要素エディタで各要素を編集してください。" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506 -#: ../../enterprise/godmode/massive/massive_create_services.php:1148 -msgid "Service items summary" -msgstr "サービス要素概要" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535 -#: ../../enterprise/godmode/massive/massive_create_services.php:1177 -msgid "Unknown weight" -msgstr "不明ウエイト" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548 -#: ../../enterprise/godmode/massive/massive_create_services.php:1190 -msgid "Normal weight" -msgstr "通常ウエイト" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320 -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211 -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564 -#: ../../enterprise/godmode/massive/massive_create_services.php:1205 -msgid "Selected services" -msgstr "選択したサービス" - -#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373 -msgid "Update selected service elements" -msgstr "選択したサービス要素を更新" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:554 -msgid "Dynamic Min." -msgstr "動的最小値" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 -#: ../../godmode/massive/massive_edit_modules.php:796 -msgid "SMNP community" -msgstr "SNMPコミュニティ" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/massive/massive_edit_modules.php:806 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1272 -#: ../../godmode/wizards/HostDevices.class.php:1303 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -#: ../../godmode/agentes/module_manager_editor_network.php:371 -msgid "The pass length must be eight character minimum." -msgstr "パスワード長は、最低8文字以上必要です。" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/massive/massive_edit_modules.php:912 -#: ../../godmode/agentes/module_manager_editor_common.php:731 -msgid "Export target" -msgstr "データのエクスポート" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 -#: ../../godmode/massive/massive_edit_modules.php:998 -msgid "Active Counters" -msgstr "アクティブカウンター" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 -#: ../../godmode/massive/massive_edit_modules.php:999 -msgid "Inactive Counters" -msgstr "非アクティブカウンター" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1014 -#: ../../godmode/agentes/module_manager_editor_common.php:865 -msgid "FF interval" -msgstr "連続抑制時の間隔" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 -#: ../../godmode/massive/massive_edit_modules.php:1024 -msgid "Module execution flip flop time interval (in secs)." -msgstr "連続抑制時のモジュールの実行間隔(秒単位)です。" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 -msgid "Policy linking status" -msgstr "ポリシーリンク状態" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 -msgid "This field only has sense in modules adopted by a policy." -msgstr "このフィールドは、ポリシーに関連づけられたモジュールにのみ影響します。" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/massive/massive_edit_modules.php:1067 -msgid "Linked" -msgstr "リンク済" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 -#: ../../godmode/modules/manage_network_components_form_common.php:315 -#: ../../godmode/massive/massive_edit_modules.php:1076 -#: ../../godmode/agentes/module_manager_editor_common.php:764 -msgid "Discard unknown events" -msgstr "不明イベントを削除" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 -#: ../../godmode/massive/massive_edit_modules.php:1105 -msgid "The module still store data but the alerts and events will be stop" -msgstr "モジュールはデータを保存しますが、アラートとイベントは停止します" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1131 -msgid "Seconds that agent will wait for the execution of the module." -msgstr "エージェントがモジュールの実行完了を待つ秒数。" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 -#: ../../godmode/massive/massive_edit_modules.php:1137 -msgid "Number of retries that the module will attempt to run." -msgstr "モジュールを再実行する回数。" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 -#: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/massive/massive_edit_modules.php:1148 -#: ../../godmode/agentes/module_manager_editor_network.php:281 -msgid "TCP send" -msgstr "TCP 送信文字列" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 -#: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:1151 -#: ../../godmode/agentes/module_manager_editor_network.php:295 -msgid "TCP receive" -msgstr "TCP 受信文字列" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 -#: ../../godmode/modules/manage_network_components_form_wmi.php:31 -#: ../../godmode/massive/massive_edit_modules.php:1154 -#: ../../godmode/agentes/module_manager_editor_wmi.php:133 -msgid "WMI query" -msgstr "WMI クエリ" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 -#: ../../godmode/modules/manage_network_components_form_wizard.php:684 -#: ../../godmode/modules/manage_network_components_form_wmi.php:33 -#: ../../godmode/massive/massive_edit_modules.php:1157 -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -msgid "Key string" -msgstr "Key 文字列" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 -#: ../../godmode/modules/manage_network_components_form_wmi.php:39 -#: ../../godmode/massive/massive_edit_modules.php:1160 -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -msgid "Field number" -msgstr "フィールド番号" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085 -#: ../../godmode/servers/plugin_registration.php:503 -#: ../../godmode/modules/manage_network_components_form_plugin.php:35 -#: ../../godmode/massive/massive_edit_plugins.php:346 -#: ../../godmode/massive/massive_edit_modules.php:1163 -#: ../../godmode/agentes/module_manager_editor_plugin.php:49 -msgid "Plugin" -msgstr "プラグイン" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 -#: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/massive/massive_edit_modules.php:1213 -#: ../../godmode/agentes/module_manager_editor_network.php:477 -msgid "Inherited" -msgstr "継承" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136 -#: ../../godmode/modules/manage_network_components_form_network.php:259 -#: ../../godmode/massive/massive_edit_modules.php:1214 -msgid "Linux" -msgstr "Linux" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137 -#: ../../godmode/modules/manage_network_components_form_network.php:260 -#: ../../godmode/massive/massive_edit_modules.php:1215 -msgid "Windows" -msgstr "Windows" - -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140 -#: ../../godmode/modules/manage_network_components_form_network.php:263 -#: ../../godmode/massive/massive_edit_modules.php:1218 -msgid "Target OS" -msgstr "対象 OS" - -#: ../../enterprise/godmode/massive/massive_operations.php:115 -msgid "Bulk alerts policy add" -msgstr "一括アラートポリシー追加" - -#: ../../enterprise/godmode/massive/massive_operations.php:116 -msgid "Bulk alerts policy delete" -msgstr "一括アラートポリシー削除" - -#: ../../enterprise/godmode/massive/massive_operations.php:117 -msgid "Bulk tags module policy edit" -msgstr "一括タグモジュールポリシー編集" - -#: ../../enterprise/godmode/massive/massive_operations.php:118 -msgid "Bulk modules policy tags edit" -msgstr "一括モジュールポリシータグ編集" - -#: ../../enterprise/godmode/massive/massive_operations.php:119 -msgid "Bulk modules policy add from agent" -msgstr "エージェントからの一括モジュールポリシー追加" - -#: ../../enterprise/godmode/massive/massive_operations.php:120 -msgid "Bulk modules policy edit" -msgstr "一括モジュールポリシー編集" - -#: ../../enterprise/godmode/massive/massive_operations.php:131 -msgid "Bulk alert SNMP delete" -msgstr "一括SNMPアラート削除" - -#: ../../enterprise/godmode/massive/massive_operations.php:132 -msgid "Bulk alert SNMP edit" -msgstr "一括SNMPアラート編集" - -#: ../../enterprise/godmode/massive/massive_operations.php:143 -msgid "Bulk Satellite modules edit" -msgstr "一括サテライトモジュール編集" - -#: ../../enterprise/godmode/massive/massive_operations.php:156 -msgid "Bulk services creation" -msgstr "一括サービス作成" - -#: ../../enterprise/godmode/massive/massive_operations.php:160 -msgid "Bulk services deletion" -msgstr "一括サービス削除" - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90 -msgid "Failed to process deleting services elements: " -msgstr "サービス要素の削除に失敗しました: " - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131 -msgid "removed" -msgstr "削除しました" - -#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264 -msgid "Remove selected" -msgstr "選択したものを削除" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 -msgid "Success: remove the alerts." -msgstr "成功: アラート削除" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "失敗: このモジュールのアラート削除、確認してください。" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/policies/policy_alerts.php:642 -#: ../../godmode/massive/massive_add_alerts.php:280 -#: ../../godmode/massive/massive_standby_alerts.php:217 -#: ../../godmode/massive/massive_delete_alerts.php:271 -#: ../../godmode/massive/massive_enable_disable_alerts.php:189 -msgid "Alert template" -msgstr "アラートテンプレート" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141 -msgid "Modules agents in policy" -msgstr "ポリシー内のモジュールエージェント" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87 -msgid "Successful update the tags" -msgstr "タグを更新しました" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88 -msgid "Unsuccessful update the tags" -msgstr "タグの更新に失敗しました" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143 -msgid "Tags unused" -msgstr "未使用タグ" - -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183 -msgid "Tags used" -msgstr "使用中タグ" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 -msgid "Success: create the alerts." -msgstr "成功: アラート作成" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87 -msgid "Failed: create the alerts for this modules, please check." -msgstr "失敗: このモジュールのアラート作成、確認してください。" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131 -msgid "Modules in policy" -msgstr "ポリシー内モジュール" - -#: ../../enterprise/godmode/massive/massive_delete_services.php:50 -#, php-format -msgid "Failed to delete: %s" -msgstr "削除に失敗しました: %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112 -#, php-format -msgid "Problems while adding module element: %d, %s" -msgstr "モジュール要素追加中に問題が発生: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157 -#, php-format -msgid "Problems while adding agent element: %d, %s" -msgstr "エージェント要素追加中に問題が発生: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205 -#, php-format -msgid "%s: %d, %s" -msgstr "%s: %d, %s" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228 -msgid "Failed to process adding elements in services: " -msgstr "サービス要素の追加に失敗しました: " - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270 -msgid "added" -msgstr "追加しました" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354 -msgid "Item type to be added" -msgstr "追加されるアイテムタイプ" - -#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371 -#: ../../enterprise/godmode/massive/massive_create_services.php:974 -msgid "Add selected" -msgstr "選択中を追加" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75 -msgid "Successfully copied " -msgstr "コピーしました: " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid " cannot be copied to " -msgstr " は次へコピーできません: " - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82 -msgid " policy" -msgstr " ポリシー" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190 -#: ../../godmode/massive/massive_copy_modules.php:213 -msgid "No modules for this agent" -msgstr "このエージェントにはモジュールがありません。" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223 -msgid "To policies" -msgstr "ポリシーへ" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 -#: ../../godmode/massive/massive_add_alerts.php:324 -#: ../../godmode/massive/massive_edit_agents.php:1199 -#: ../../godmode/massive/massive_delete_alerts.php:382 -msgid "" -"Unsucessful sending the data, please contact with your administrator or make with " -"less elements." -msgstr "データ処理に失敗しました。管理者に連絡するか要素を少なくしてください。" - -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 -msgid "No destiny policies to copy" -msgstr "コピー先のポリシーがありません" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159 -#: ../../godmode/snmpconsole/snmp_alert.php:682 -#, php-format -msgid "Successfully deleted alerts (%s / %s)" -msgstr "アラート (%s / %s) を削除しました" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167 -#: ../../godmode/snmpconsole/snmp_alert.php:686 -#, php-format -msgid "Unsuccessfully deleted alerts (%s / %s)" -msgstr "アラート (%s /%s) を削除できませんでした" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 -msgid "You must select a SNMP alert" -msgstr "SNMP アラートを選択する必要があります" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 -msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " -"each Custom OIDs/Datas." -msgstr "" -"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/データ " -"フィールドで検索します。" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217 -msgid "SNMP Alerts to be deleted" -msgstr "削除するSNMPアラート" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 -msgid "No snmp alert found." -msgstr "snmp アラートがありません。" - -#: ../../enterprise/godmode/massive/massive_create_services.php:210 -#, php-format -msgid "Failed to create service for agent %s, %s" -msgstr "エージェント %s, %s のサービス作成に失敗しました" - -#: ../../enterprise/godmode/massive/massive_create_services.php:294 -#, php-format -msgid "Failed to create service for module %s, %s" -msgstr "モジュール %s, %s のサービス作成に失敗しました" - -#: ../../enterprise/godmode/massive/massive_create_services.php:380 -#, php-format -msgid "Failed to create service for service %s, %s" -msgstr "サービス %s, %s のサービス作成に失敗しました" - -#: ../../enterprise/godmode/massive/massive_create_services.php:435 -#, php-format -msgid "Agent selected %d not found" -msgstr "選択したエージェント %d が見つかりません" - -#: ../../enterprise/godmode/massive/massive_create_services.php:481 -#, php-format -msgid "Module selected %d not found" -msgstr "選択したモジュール %d が見つかりません" - -#: ../../enterprise/godmode/massive/massive_create_services.php:528 -#, php-format -msgid "Service selected %d not found" -msgstr "選択したサービス %d が見つかりません" - -#: ../../enterprise/godmode/massive/massive_create_services.php:562 -#, php-format -msgid "Failed to create service for agent %s" -msgstr "エージェント %s のサービス作成に失敗しました" - -#: ../../enterprise/godmode/massive/massive_create_services.php:573 -#, php-format -msgid "Failed to create services: %s" -msgstr "サービス作成に失敗しました: %s" - -#: ../../enterprise/godmode/massive/massive_create_services.php:593 -#, php-format -msgid "%d services created with %d items" -msgstr "%d サービスが %d アイテムで作成されました" - -#: ../../enterprise/godmode/massive/massive_create_services.php:599 -msgid "No services created" -msgstr "サービスが作成されませんでした" - -#: ../../enterprise/godmode/massive/massive_create_services.php:632 -msgid "Service(s) definition" -msgstr "サービス定義" - -#: ../../enterprise/godmode/massive/massive_create_services.php:765 -msgid "Create a service per item" -msgstr "アイテムごとにサービスを作成する" - -#: ../../enterprise/godmode/massive/massive_create_services.php:766 -msgid "If enabled multiple services will be created." -msgstr "有効にすると、複数のサービスが作成されます。" - -#: ../../enterprise/godmode/massive/massive_create_services.php:784 -msgid "Services header" -msgstr "サービスヘッダ" - -#: ../../enterprise/godmode/massive/massive_create_services.php:785 -msgid "All services names created will start with selected name." -msgstr "作成されるすべてのサービス名は、選択した名前で始まります。" - -#: ../../enterprise/godmode/massive/massive_create_services.php:839 -msgid "SLA calculation" -msgstr "SLA 計算" - -#: ../../enterprise/godmode/massive/massive_create_services.php:946 -msgid "Items selected here will be added to the lists at Service items summary." -msgstr "ここで選択したアイテムは、サービスアイテム概要の一覧に追加されます。" - -#: ../../enterprise/godmode/massive/massive_create_services.php:949 -msgid "Item(s) definition" -msgstr "アイテム定義" - -#: ../../enterprise/godmode/massive/massive_create_services.php:957 -msgid "Item type" -msgstr "アイテムタイプ" - -#: ../../enterprise/godmode/massive/massive_create_services.php:1144 -msgid "" -"Weights configured are common for every item added to the service, if you want to " -"customize them, please edit the service." -msgstr "" -"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらをカスタマ" -"イズする場合は、サービスを編集してください。" - -#: ../../enterprise/godmode/massive/massive_create_services.php:1260 -msgid "Create services" -msgstr "サービスの作成" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127 -msgid "Modules unused" -msgstr "未使用モジュール" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167 -msgid "Modules used" -msgstr "使用中モジュール" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 -#, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "アラートを更新しました (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "アラートの更新に失敗しました (%s / %s)" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277 -msgid "SNMP Alerts to be edit" -msgstr "編集するSNMPアラート" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 -#: ../../godmode/snmpconsole/snmp_alert.php:735 -msgid "Custom Value/OID" -msgstr "カスタム値/OID" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 -#: ../../godmode/snmpconsole/snmp_alert.php:785 -msgid "Single value" -msgstr "単一値" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 -#: ../../godmode/snmpconsole/snmp_alert.php:988 -#: ../../godmode/alerts/configure_alert_template.php:691 -msgid "Min. number of alerts" -msgstr "最小アラート数" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 -#: ../../godmode/snmpconsole/snmp_alert.php:991 -#: ../../godmode/alerts/configure_alert_template.php:728 -msgid "Max. number of alerts" -msgstr "最大アラート数" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326 -#: ../../godmode/snmpconsole/snmp_alert.php:1010 -msgid "Other value" -msgstr "他の値" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 -#: ../../godmode/massive/massive_delete_modules.php:372 -#: ../../godmode/massive/massive_edit_modules.php:356 -msgid "Agent group" -msgstr "エージェントグループ" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242 -msgid "Filter module" -msgstr "モジュールのフィルタ" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 -#: ../../godmode/massive/massive_add_alerts.php:260 -#: ../../godmode/massive/massive_delete_modules.php:551 -#: ../../godmode/massive/massive_add_action_alerts.php:220 -#: ../../godmode/massive/massive_delete_action_alerts.php:241 -#: ../../godmode/massive/massive_delete_alerts.php:335 -#: ../../godmode/massive/massive_edit_modules.php:524 -msgid "When select agents" -msgstr "エージェント選択時の動作" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 -msgid "Updated modules on database" -msgstr "データベース上のモジュールを更新しました" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 -msgid "Agent configuration files updated" -msgstr "エージェント設定ファイルを更新しました" - -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 -msgid "No changes have been made." -msgstr "変更されませんでした。" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 -msgid "Command Mysqldump is failed." -msgstr "mysqldump コマンドが失敗しました。" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 -msgid "Failed to create task" -msgstr "タスクの作成に失敗しました" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 -msgid "No template selected" -msgstr "テンプレートが選択されていません" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 -msgid "I do not know what you want to do" -msgstr "何をしたいのかが不明です" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 -msgid "You have no access to manage console tasks." -msgstr "コンソールタスク管理へのアクセス権がありません。" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 -msgid "Create new console task" -msgstr "新規コンソールタスクの作成" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 -msgid "Updating console task" -msgstr "コンソールタスクの更新中" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 ../../godmode/menu.php:33 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 -msgid "Task list" -msgstr "タスク一覧" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 -msgid "Update console task" -msgstr "コンソールタスクの更新" - -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 -msgid "Next Execution" -msgstr "次回実行" - -#: ../../enterprise/godmode/wizards/Applications.class.php:186 -#: ../../enterprise/godmode/wizards/Cloud.class.php:210 -msgid "" -"All company names used here are for identification purposes only. Use of these names, " -"logos, and brands does not imply endorsement." -msgstr "" -"ここで使用されているすべての会社名は、識別することのみを目的としています。 これらの名" -"前、ロゴ、およびブランドの使用の承認を意味するものではありません。" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:240 -#: ../../enterprise/godmode/wizards/Cloud.class.php:248 -#, php-format -msgid "%s credentials" -msgstr "%s 認証情報" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:264 -msgid "" -"If a task with the selected credentials is already running, it will be edited. To " -"create a new one, another account from the credential store must be selected." -msgstr "" -"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 新規作" -"成するには、認証情報ストアから別のアカウントを選択する必要があります。" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:284 -msgid "Manage accounts" -msgstr "アカウント管理" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:296 -msgid "Cloud tool full path" -msgstr "クラウドツールのフルパス" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:304 -msgid "Account" -msgstr "アカウント" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:365 -msgid "Select a set of credentials from the list" -msgstr "一覧からから一連の認証情報を選択してください" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:378 -#, php-format -msgid "Path %s is not executable." -msgstr "パス %s は実行できません。" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:423 -msgid "Account disconnected" -msgstr "アカウントを切断しました" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:425 -msgid "Failed disconnecting account" -msgstr "アカウントの切断に失敗しました" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:503 -msgid "Credentials successfully updated" -msgstr "認証情報を更新しました" - -#: ../../enterprise/godmode/wizards/Cloud.class.php:505 -msgid "Failed updating credentials process" -msgstr "認証情報の更新処理に失敗しました" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 -msgid "The changes on this field are linked with the configuration data." -msgstr "このフィールド上の変更は、設定データにリンクされます。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 -msgid "Using local component" -msgstr "ローカルコンポーネントの利用" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 -#: ../../godmode/agentes/module_manager_editor_common.php:118 -#: ../../godmode/agentes/module_manager_editor_common.php:135 -msgid "Manual setup" -msgstr "個別設定" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 -#: ../../godmode/agentes/module_manager_editor_common.php:127 -msgid "No component was found" -msgstr "コンポーネントが見つかりません。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 -msgid "Show configuration data" -msgstr "設定データを表示する" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 -msgid "Hide configuration data" -msgstr "設定データを隠す" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 -msgid "Data configuration" -msgstr "データ設定" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 -msgid "Capacity planning" -msgstr "キャパシティプランニング" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 -msgid "Synthetic arithmetic" -msgstr "統合計算" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 -msgid "Synthetic average" -msgstr "統合平均" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 -msgid "Trending module" -msgstr "トレンドモジュール" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 -msgid "Fixed value" -msgstr "固定値" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 -msgid "Add module to operation as add" -msgstr "足し算処理にモジュールを追加" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 -msgid "Add module to operations as deduct" -msgstr "引き算処理にモジュールを追加" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -msgid "Add module to operations as multiplicate " -msgstr "掛け算処理にモジュールを追加 " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 -msgid "Add module to operations as divide" -msgstr "割り算処理にモジュールを追加" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 -msgid "Remove selected modules" -msgstr "選択したモジュールの削除" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 -msgid "Add module to average operation" -msgstr "平均処理にモジュールを追加" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 -msgid "Remove selected modules from operations stack" -msgstr "選択したモジュールをオペレーションスタックから削除する" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 -msgid "Move down selected modules" -msgstr "選択したモジュールを下へ" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 -msgid "Move up selected modules" -msgstr "選択したモジュールを上へ" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 -msgid "Select Service" -msgstr "サービス選択" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 -msgid "Netflow filter" -msgstr "Netflow フィルタ" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 -msgid "Select filter" -msgstr "フィルタ選択" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 -msgid "Percentual value" -msgstr "パーセント値" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:84 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 -msgid "Successfully added inventory module" -msgstr "インベントリモジュールを追加しました" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:86 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -msgid "Error adding inventory module" -msgstr "インベントリモジュールの追加エラー" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:89 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 -msgid "The inventory of the module already exists" -msgstr "モジュールのインベントリはすでに存在します" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:110 -msgid "Successfully forced inventory module" -msgstr "インベントリモジュールを強制実行しました" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:112 -msgid "Error forcing inventory module" -msgstr "インベントリモジュールの強制実行エラー" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 -msgid "Error: The conf file of agent is not readble." -msgstr "エラー: エージェント設定ファイルを読めません。" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 -msgid "Error: The conf file of agent is not writable." -msgstr "エラー: エージェント設定ファイルに書き込めません。" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 -#: ../../enterprise/godmode/policies/policy_modules.php:387 -msgid "Add module" -msgstr "モジュール追加" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 -msgid "No module was found" -msgstr "モジュールがありません" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 -msgid "Delete remote conf agent files" -msgstr "エージェントのリモート設定ファイル削除" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -msgid "" -"Delete this conf file implies that for restore you must reactive remote config in the " -"local agent." -msgstr "" -"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化する必" -"要があります。" - -#: ../../enterprise/godmode/agentes/module_manager.php:48 -msgid "Create a new web analysis module" -msgstr "新規ウェブ分析モジュールの作成" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:51 -msgid "Cannot delete autoconfiguration" -msgstr "自動設定を削除できません" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 -msgid "enabled" -msgstr "有効" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:67 -msgid "enabling" -msgstr "有効化" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:69 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 -msgid "disabled" -msgstr "無効化" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:70 -msgid "disabling" -msgstr "無効化" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:75 -#, php-format -msgid "Successfully %s" -msgstr "成功 %s" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:76 -#, php-format -msgid "Error %s" -msgstr "エラー %s" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:96 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292 -msgid "Agent autoconfiguration list" -msgstr "エージェント自動設定一覧" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:158 -msgid "There are no defined autoconfigurations" -msgstr "定義済の自動設定がありません" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:195 -msgid "Add new configuration definition" -msgstr "新規設定定義追加" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 -msgid "Cannot delete rule from autoconfiguration" -msgstr "自動設定からルールを削除できません" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 -msgid "Agent Autoconfiguration Information" -msgstr "エージェント自動設定情報" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 -msgid "You must click the Create or Update buttom for a correct configuration!!!" -msgstr "" -"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要があります!!!" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 -msgid "" -"Cannot create autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成してください" -"(中央管理)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 -msgid "Cannot create autoconfiguration in metaconsole" -msgstr "メタコンソールで自動設定を作成できません" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 -msgid "Cannot create unnamed autoconfiguration" -msgstr "名前のない自動設定は作成できません" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 -msgid "" -"Cannot udpate autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成してください" -"(中央管理)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 -msgid "Cannot update autoconfiguration" -msgstr "自動設定を更新できません" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 -msgid "" -"Cannot modify autoconfiguration from read only console, please create from " -"metaconsole (centralized management)" -msgstr "" -"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールから作成し" -"てください(中央管理)" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:335 -msgid "Autoconfiguration" -msgstr "自動設定" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 -msgid "Add rule" -msgstr "ルール追加" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:410 -msgid "Rules" -msgstr "ルール" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:432 -msgid "New group" -msgstr "新規グループ" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:619 -#: ../../enterprise/godmode/policies/configure_policy.php:47 -msgid "Add policy" -msgstr "ポリシー追加" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:651 -msgid "Extra configuration block" -msgstr "追加設定ブロック" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:653 -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:686 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:717 -msgid "Extra actions" -msgstr "追加アクション" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:707 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010 -msgid "Add extra action" -msgstr "追加アクションの追加" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:875 -msgid "Add new rule" -msgstr "新規ルール追加" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1097 -msgid "Update extra action" -msgstr "拡張アクションの更新" - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Succesful add the collection" -msgstr "コレクションを追加しました" - -#: ../../enterprise/godmode/agentes/collection_manager.php:78 -msgid "Unsuccesful add the collection" -msgstr "コレクションの追加に失敗しました" - -#: ../../enterprise/godmode/agentes/collections.editor.php:98 -msgid "Files in " -msgstr "次の中に存在するファイル: " - -#: ../../enterprise/godmode/agentes/collections.editor.php:109 -#: ../../enterprise/godmode/agentes/collections.data.php:395 -#: ../../enterprise/godmode/agentes/collections.php:92 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature from %s." -msgstr "" -"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理してくだ" -"さい。" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 -msgid "Data Copy" -msgstr "データコピー" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 -msgid "No selected agents to copy" -msgstr "コピーするエージェントが選択されていません。" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 -msgid "No source agent selected" -msgstr "ソースエージェントが選択されていません" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 -msgid "Making copy of configuration file for" -msgstr "設定ファイルのコピーを作成中:" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -msgid "Error copying md5 file " -msgstr "md5 ファイルのコピーエラー " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " md5 file" -msgstr " md5 ファイル" - -#: ../../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:123 -msgid "Error copying " -msgstr "コピーエラー " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid " config file" -msgstr " 設定ファイル" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:135 -msgid "Remote configuration management" -msgstr "リモート設定管理" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:186 -msgid "To agent(s):" -msgstr "適用先エージェント:" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:203 -msgid "Replicate configuration" -msgstr "設定の複製" - -#: ../../enterprise/godmode/agentes/collections.agents.php:36 -msgid "Show Agent >" -msgstr "エージェント表示 >" - -#: ../../enterprise/godmode/agentes/collections.agents.php:120 -#: ../../enterprise/godmode/agentes/collections.agents.php:124 -msgid "This collection has not been added to any agents" -msgstr "このコレクションはどのエージェントにも追加されていません" - -#: ../../enterprise/godmode/agentes/collections.data.php:384 -msgid "Collection updated successfully" -msgstr "コレクションを更新しました" - -#: ../../enterprise/godmode/agentes/collections.data.php:410 -msgid "Please go to the metaconsole and apply this collection" -msgstr "メタコンソールに移動して、このコレクションを適用してください" - -#: ../../enterprise/godmode/agentes/collections.data.php:414 -msgid "Error: The collection directory does not exist." -msgstr "エラー: コレクションディレクトリが存在しません。" - -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95 -msgid "Empty Network maps editor" -msgstr "空のネットワークマップエディタ" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 -#: ../../godmode/agentes/module_manager_editor_common.php:238 -msgid "Delete module" -msgstr "モジュール削除" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 -msgid "Run performance tests" -msgstr "パフォーマンステストの実行" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 -msgid "Target web site" -msgstr "対象ウェブサイト" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 -msgid "The url specified in this field is mandatory to retrieve performance stats." -msgstr "このフィールドで指定された URL は、パフォーマンス統計を取得するために必須です。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 -msgid "target web site (http://...)" -msgstr "対象ウェブサイト (http://...)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 -msgid "Execute tests from" -msgstr "次からテストを実行:" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 -msgid "Browser" -msgstr "ブラウザ" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 -msgid "" -"Support for IE and Edge browsers is experimental. Tests might not work as expected." -msgstr "" -"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能しない可" -"能性があります。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 -msgid "Accept insecure certificates" -msgstr "安全でない証明書を受け入れる" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 -msgid "Only Selenium 3." -msgstr "Selenium 3 のみ。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 -msgid "Paste your selenium test, exported as HTML, here" -msgstr "HTML としてエクスポートされた selenium テストをここに貼り付けます" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 -msgid "Add file" -msgstr "ファイル追加" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 -msgid "Upload your selenium test in html or side (only Selenium 3) format" -msgstr "selenium テストを html または side (Selenium 3 のみ)形式でアップロードします" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 -#: ../../godmode/agentes/module_manager.php:1105 -msgid "" -"The policy modules of data type will only update their intervals when policy is " -"applied." -msgstr "" -"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔でのみ更" -"新されます。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 -#: ../../enterprise/godmode/policies/policy_modules.php:417 -#: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager_editor.php:750 -msgid "Custom macros" -msgstr "カスタムマクロ" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:66 -msgid "Plug-in updated succesfully" -msgstr "プラグインを更新しました" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:66 -msgid "Plug-in cannot be updated" -msgstr "プラグインを更新できませんでした" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in deleted succesfully" -msgstr "プラグインを削除しました" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in cannot be deleted" -msgstr "プラグインを削除できません" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:87 -#: ../../enterprise/godmode/policies/policy_plugins.php:90 -msgid "Plug-in added succesfully" -msgstr "プラグインを追加しました" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:87 -#: ../../enterprise/godmode/policies/policy_plugins.php:91 -msgid "Plug-in cannot be added" -msgstr "プラグインを追加できません" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:97 -msgid "Plug-in enabled succesfully" -msgstr "プラグインを有効化しました" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be enabled" -msgstr "プラグインを有効化できません" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:109 -msgid "Plug-in disabled succesfully" -msgstr "プラグインを無効化しました" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:110 -msgid "Plug-in cannot be disabled" -msgstr "プラグインを無効化できません" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/policies/policy_plugins.php:109 -msgid "If enabled, allows to define a complex module plugin or log." -msgstr "有効にすると、複雑なモジュールプラグインまたはログを定義できます。" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:142 -#: ../../enterprise/godmode/policies/policy_plugins.php:123 -msgid "New plug-in" -msgstr "新規プラグイン" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:192 -#: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_plugins.php:167 ../../godmode/menu.php:293 -msgid "Plugins" -msgstr "プラグイン" - -#: ../../enterprise/godmode/agentes/collections.php:65 -msgid "Success: recreate file" -msgstr "成功: ファイル再作成" - -#: ../../enterprise/godmode/agentes/collections.php:67 -msgid "Error: recreate file " -msgstr "エラー: ファイル再作成 " - -#: ../../enterprise/godmode/agentes/collections.php:82 -#: ../../enterprise/godmode/agentes/collections.php:123 -#: ../../enterprise/godmode/agentes/collections.php:232 -msgid "Collections Management" -msgstr "コレクション管理" - -#: ../../enterprise/godmode/agentes/collections.php:175 -msgid "Manager collection" -msgstr "コレクション管理" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 -#: ../../godmode/massive/massive_add_alerts.php:168 -#: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/alerts/alert_list.php:271 -msgid "Successfully added" -msgstr "追加されました。" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 -#: ../../enterprise/godmode/policies/policy_agents.php:251 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../godmode/massive/massive_add_action_alerts.php:134 -#: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_add_action_alerts.php:166 -#: ../../godmode/massive/massive_delete_action_alerts.php:175 -#: ../../godmode/alerts/alert_list.php:272 -msgid "Could not be added" -msgstr "追加できませんでした。" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -msgid "Inventory alert filters" -msgstr "インベントリアラートフィルタ" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 -msgid "Alert name" -msgstr "アラート名" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 -#: ../../godmode/alerts/alert_list.list.php:673 -msgid "Delete action" -msgstr "アクションの削除" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 -msgid "Disable alert" -msgstr "アラート無効化" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 -msgid "Enable alert" -msgstr "アラート有効化" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 -msgid "Delete alert" -msgstr "アラート削除" - -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 -msgid "There are no defined inventory alerts" -msgstr "定義済のインベントリアラートがありません" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 -msgid "Group acl" -msgstr "グループ ACL" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 -msgid "Alert groups" -msgstr "アラートグループ" - -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 -#: ../../godmode/snmpconsole/snmp_alert.php:83 -msgid "Update alert" -msgstr "アラート設定" - -#: ../../enterprise/godmode/alerts/alert_inventory.php:67 -msgid "Inventory alert list" -msgstr "インベントリアラート一覧" - -#: ../../enterprise/godmode/alerts/alert_inventory.php:71 -msgid "Inventory alert builder" -msgstr "インベントリアラートビルダ" - -#: ../../enterprise/godmode/policies/policy_agents.php:62 -#: ../../enterprise/godmode/policies/policy_queue.php:78 -msgid "" -"Starting with Pandora FMS version 760, assigning an entire group to a policy will " -"apply it automatically to all the new agents added to that group." -msgstr "" -"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグループに" -"追加されたすべての新しいエージェントに自動的に適用されます。" - -#: ../../enterprise/godmode/policies/policy_agents.php:85 -#: ../../enterprise/godmode/policies/policy_linking.php:41 -#: ../../enterprise/godmode/policies/policy_modules.php:599 -#: ../../enterprise/godmode/policies/policies.php:249 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 -#: ../../enterprise/godmode/policies/policy_alerts.php:94 -#: ../../enterprise/godmode/policies/policy_collections.php:63 -#: ../../godmode/agentes/module_manager_editor.php:542 -msgid "This policy is applying and cannot be modified" -msgstr "このポリシーを摘要すると変更できません。" - -#: ../../enterprise/godmode/policies/policy_agents.php:102 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next policy " -"application." -msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" - -#: ../../enterprise/godmode/policies/policy_agents.php:113 -#: ../../enterprise/godmode/policies/policy_agents.php:129 -#: ../../enterprise/godmode/policies/policy_modules.php:1316 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 -#: ../../enterprise/godmode/policies/policy_alerts.php:259 -#: ../../enterprise/godmode/policies/policy_collections.php:103 -#: ../../enterprise/godmode/policies/policy_plugins.php:70 -msgid "Successfully reverted deletion" -msgstr "削除を取り消しました" - -#: ../../enterprise/godmode/policies/policy_agents.php:114 -#: ../../enterprise/godmode/policies/policy_agents.php:130 -#: ../../enterprise/godmode/policies/policy_modules.php:1317 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 -#: ../../enterprise/godmode/policies/policy_alerts.php:260 -#: ../../enterprise/godmode/policies/policy_collections.php:104 -#: ../../enterprise/godmode/policies/policy_plugins.php:71 -msgid "Could not be reverted" -msgstr "取り消しできませんでした" - -#: ../../enterprise/godmode/policies/policy_agents.php:124 -msgid "" -"Successfully added to delete pending groups. Will be deleted in the next policy " -"application." -msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。" - -#: ../../enterprise/godmode/policies/policy_agents.php:148 -#: ../../enterprise/godmode/policies/policy_agents.php:193 -#: ../../enterprise/godmode/policies/policy_agents.php:261 -msgid "Policy with this id does not exist. " -msgstr "この ID のポリシーは存在しません。" - -#: ../../enterprise/godmode/policies/policy_agents.php:177 -#: ../../enterprise/godmode/policies/policy_agents.php:310 -msgid "Successfully added to delete queue" -msgstr "削除キューに追加しました" - -#: ../../enterprise/godmode/policies/policy_agents.php:178 -#: ../../enterprise/godmode/policies/policy_agents.php:311 -msgid "Could not be added to delete queue" -msgstr "削除キューに追加できませんでした" - -#: ../../enterprise/godmode/policies/policy_agents.php:250 -#, php-format -msgid "Successfully added %d" -msgstr "追加しました %d" - -#: ../../enterprise/godmode/policies/policy_agents.php:281 -msgid "" -"Number of agents added to the policy concurrently is too large. This might cause the " -"operation to fail or lead to performance issues." -msgstr "" -"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗した" -"り、パフォーマンスの問題が発生したりする可能性があります。" - -#: ../../enterprise/godmode/policies/policy_agents.php:288 -msgid "Successfully added to policy" -msgstr "ポリシーに追加しました" - -#: ../../enterprise/godmode/policies/policy_agents.php:289 -msgid "Could not be added to policy" -msgstr "ポリシーに追加できませんでした" - -#: ../../enterprise/godmode/policies/policy_agents.php:407 -msgid "Apply to" -msgstr "次へ適用:" - -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 -msgid "Agents in Policy" -msgstr "ポリシー内エージェント" - -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 -msgid "Groups in Policy" -msgstr "ポリシー内グループ" - -#: ../../enterprise/godmode/policies/policy_agents.php:707 -msgid "Add agents to policy" -msgstr "ポリシーへのエージェント追加" - -#: ../../enterprise/godmode/policies/policy_agents.php:734 -msgid "Delete agents from policy" -msgstr "ポリシーからエージェント削除" - -#: ../../enterprise/godmode/policies/policy_agents.php:831 -msgid "Applied" -msgstr "適用済" - -#: ../../enterprise/godmode/policies/policy_agents.php:832 -msgid "Not applied" -msgstr "未適用" - -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/servers/servers.build_table.php:246 -#: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/massive/massive_edit_agents.php:945 -#: ../../godmode/agentes/configurar_agente.php:603 -#: ../../godmode/agentes/configurar_agente.php:753 -#: ../../godmode/agentes/agent_manager.php:485 -msgid "Remote configuration" -msgstr "リモート設定" - -#: ../../enterprise/godmode/policies/policy_agents.php:853 -msgid "Unlinked modules" -msgstr "未リンクモジュール" - -#: ../../enterprise/godmode/policies/policy_agents.php:853 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 -msgid "Add to delete queue" -msgstr "削除キューへの追加" - -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 -msgid "D." -msgstr "削除" - -#: ../../enterprise/godmode/policies/policy_agents.php:946 -#: ../../godmode/agentes/agent_manager.php:260 -msgid "This agent can be remotely configured" -msgstr "このエージェントはリモートから設定可能です。" - -#: ../../enterprise/godmode/policies/policy_agents.php:953 -msgid "This agent can not be remotely configured" -msgstr "このエージェントはリモート設定できません" - -#: ../../enterprise/godmode/policies/policy_agents.php:1003 -#: ../../enterprise/godmode/policies/policy_agents.php:1482 -msgid "Process deletion" -msgstr "プロセス削除" - -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 -#: ../../enterprise/godmode/policies/policy_queue.php:337 -msgid "Add to apply queue" -msgstr "適用キューへ追加" - -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 -#: ../../enterprise/godmode/policies/policy_modules.php:1573 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:533 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:529 -msgid "Undo deletion" -msgstr "削除取り消し" - -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 -msgid "Need apply" -msgstr "要適用" - -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 -msgid "Applying policy" -msgstr "ポリシー適用中" - -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 -msgid "Deleting from policy" -msgstr "ポリシーから削除中" - -#: ../../enterprise/godmode/policies/policy_agents.php:1295 -msgid "Add groups to policy" -msgstr "ポリシーへのグループ追加" - -#: ../../enterprise/godmode/policies/policy_agents.php:1317 -msgid "Delete groups from policy" -msgstr "ポリシーからグループを削除" - -#: ../../enterprise/godmode/policies/policy_agents.php:1370 -msgid "Total agents in policy group" -msgstr "ポリシーグループ内の全エージェント" - -#: ../../enterprise/godmode/policies/policy_agents.php:1370 -msgid "T." -msgstr "T." - -#: ../../enterprise/godmode/policies/policy_queue.php:63 -msgid "No policies with this id" -msgstr "この ID のポリシーがありません" - -#: ../../enterprise/godmode/policies/policy_queue.php:146 -#, php-format -msgid "%s: Operations successfully deleted from the queue" -msgstr "%s: キューから操作を削除しました" - -#: ../../enterprise/godmode/policies/policy_queue.php:153 -msgid "Operations successfully deleted from the queue" -msgstr "キューから操作を削除しました" - -#: ../../enterprise/godmode/policies/policy_queue.php:154 -msgid "Operations cannot be deleted from the queue" -msgstr "キューから操作を削除できません" - -#: ../../enterprise/godmode/policies/policy_queue.php:261 -#, php-format -msgid "Some nodes (%s) are unreachebles. Some information may be missing." -msgstr "" -"いくつかのノード(%s)には到達できません。一部の情報が欠落している可能性があります。" - -#: ../../enterprise/godmode/policies/policy_queue.php:308 -msgid "Update pending" -msgstr "更新待ち" - -#: ../../enterprise/godmode/policies/policy_queue.php:314 -msgid "Update pending agents" -msgstr "更新待ちエージェント" - -#: ../../enterprise/godmode/policies/policy_queue.php:343 -msgid "Add to apply queue only for database" -msgstr "データベースにのみ適用キューを追加" - -#: ../../enterprise/godmode/policies/policy_queue.php:354 -msgid "Update pending groups" -msgstr "ペンディンググループ更新" - -#: ../../enterprise/godmode/policies/policy_queue.php:368 -msgid "Link pending modules" -msgstr "リンク待ちモジュール" - -#: ../../enterprise/godmode/policies/policy_queue.php:376 -msgid "Will be linked in the next policy application" -msgstr "次回のポリシー適用でリンクされます" - -#: ../../enterprise/godmode/policies/policy_queue.php:382 -msgid "Unlink pending modules" -msgstr "リンク解除待ちモジュール" - -#: ../../enterprise/godmode/policies/policy_queue.php:388 -msgid "Will be unlinked in the next policy application" -msgstr "次回のポリシー適用でリンクが解除されます" - -#: ../../enterprise/godmode/policies/policy_queue.php:393 -msgid "Delete pending" -msgstr "削除待ち" - -#: ../../enterprise/godmode/policies/policy_queue.php:399 -msgid "Delete pending agents" -msgstr "削除待ちエージェント" - -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/policies/policy_queue.php:422 -#: ../../enterprise/godmode/policies/policy_queue.php:437 -#: ../../enterprise/godmode/policies/policy_queue.php:452 -#: ../../enterprise/godmode/policies/policy_queue.php:467 -#: ../../enterprise/godmode/policies/policy_queue.php:482 -#: ../../enterprise/godmode/policies/policy_queue.php:497 -#: ../../enterprise/godmode/policies/policy_queue.php:512 -msgid "Will be deleted in the next policy application" -msgstr "次回のポリシー適用で削除されます" - -#: ../../enterprise/godmode/policies/policy_queue.php:414 -msgid "Delete pending groups" -msgstr "ペンディンググループ削除" - -#: ../../enterprise/godmode/policies/policy_queue.php:429 -msgid "Delete pending modules" -msgstr "削除待ちモジュール" - -#: ../../enterprise/godmode/policies/policy_queue.php:444 -msgid "Delete pending inventory modules" -msgstr "削除待ちインベントリモジュール" - -#: ../../enterprise/godmode/policies/policy_queue.php:459 -msgid "Delete pending alerts" -msgstr "削除待ちアラート" - -#: ../../enterprise/godmode/policies/policy_queue.php:474 -msgid "Delete pending external alerts" -msgstr "削除待ち外部アラート" - -#: ../../enterprise/godmode/policies/policy_queue.php:489 -msgid "Delete pending file collections" -msgstr "削除待ちファイルコレクション" - -#: ../../enterprise/godmode/policies/policy_queue.php:504 -msgid "Delete pending plugins" -msgstr "削除待ちプラグイン" - -#: ../../enterprise/godmode/policies/policy_queue.php:518 -msgid "Advices" -msgstr "アドバイス" - -#: ../../enterprise/godmode/policies/policy_queue.php:523 -msgid "Queue summary" -msgstr "キューサマリ" - -#: ../../enterprise/godmode/policies/policy_queue.php:636 -msgid "Queue filter" -msgstr "キューフィルタ" - -#: ../../enterprise/godmode/policies/policy_queue.php:790 -msgid "Empty queue" -msgstr "キューが空です" - -#: ../../enterprise/godmode/policies/policy_queue.php:804 -msgid "This operation could take a long time" -msgstr "この操作は時間がかかります" - -#: ../../enterprise/godmode/policies/policy_queue.php:815 -msgid "Apply all queues" -msgstr "全てのキューの適用" - -#: ../../enterprise/godmode/policies/policy_queue.php:821 -msgid "Clear all items" -msgstr "全アイテムをクリア" - -#: ../../enterprise/godmode/policies/policy_linking.php:28 -msgid "Linking modules" -msgstr "リンク中モジュール" - -#: ../../enterprise/godmode/policies/policy_linking.php:99 -msgid "Error: Update linking modules to policy" -msgstr "エラー: ポリシーへのモジュールリンク更新" - -#: ../../enterprise/godmode/policies/policy_linking.php:101 -msgid "Success: Update linking modules to policy" -msgstr "成功: ポリシーへのモジュールリンク更新" - -#: ../../enterprise/godmode/policies/policy_linking.php:127 -msgid "Free text for filter (*)" -msgstr "フィルタテキスト (*)" - -#: ../../enterprise/godmode/policies/policy_linking.php:128 -msgid "Free text for filter" -msgstr "フィルタテキスト" - -#: ../../enterprise/godmode/policies/policy_linking.php:138 -msgid "Cannot retrieve unlinked modules" -msgstr "リンクされていないモジュールを取得できません" - -#: ../../enterprise/godmode/policies/policy_linking.php:140 -msgid "There are no defined modules unlinked" -msgstr "定義済の未リンクモジュールがありません" - -#: ../../enterprise/godmode/policies/policy_linking.php:142 -msgid "List of modules unlinked" -msgstr "未リンクモジュール一覧" - -#: ../../enterprise/godmode/policies/policy_modules.php:299 -msgid "" -"If you change this description, you must change into the text of Data configuration." -msgstr "この説明を変更すると、データ設定のテキストを変更する必要があります。" - -#: ../../enterprise/godmode/policies/policy_modules.php:372 -msgid "Invalid module type." -msgstr "不正なモジュールタイプ。" - -#: ../../enterprise/godmode/policies/policy_modules.php:403 -#: ../../godmode/agentes/module_manager_editor.php:738 -msgid "Base options" -msgstr "ベースオプション" - -#: ../../enterprise/godmode/policies/policy_modules.php:548 -msgid "Could not be added module(s). You must select a policy" -msgstr "モジュールを追加できません。ポリシーを選択する必要があります。" - -#: ../../enterprise/godmode/policies/policy_modules.php:581 -#, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "モジュール (%s/%s) を、ポリシー %s に追加しました" - -#: ../../enterprise/godmode/policies/policy_modules.php:587 -#, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "モジュール (%s/%s) をポリシー %s に追加できませんでした" - -#: ../../enterprise/godmode/policies/policy_modules.php:623 -msgid "To define plugins please use plugin configuration tab." -msgstr "プラグインの定義にはプラグイン設定タブを使ってください。" - -#: ../../enterprise/godmode/policies/policy_modules.php:920 -msgid "Could not be added module." -msgstr "モジュールを追加できませんでした。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1265 -msgid "The module type in Data configuration is empty, take from combo box of form." -msgstr "データ設定内のモジュールタイプが空です。フォームから選択してください。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1269 -msgid "The module name in Data configuration is empty, take from text field of form." -msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1299 -#: ../../enterprise/godmode/policies/policy_modules.php:1312 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 -msgid "" -"Successfully added to delete pending modules. Will be deleted in the next policy " -"application." -msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1303 -msgid "Could not be added to deleted all modules." -msgstr "削除済の全モジュールへの追加ができませんでした。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1381 -#: ../../godmode/agentes/configurar_agente.php:2124 -#, php-format -msgid "copy of %s (%d)" -msgstr "%s のコピー (%d)" - -#: ../../enterprise/godmode/policies/policy_modules.php:1411 -msgid "Successfully duplicate the module." -msgstr "モジュールを複製しました。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1492 -msgid "Local component" -msgstr "ローカルコンポーネント" - -#: ../../enterprise/godmode/policies/policy_modules.php:1509 -#: ../../enterprise/godmode/policies/policy_modules.php:1510 -msgid "Disabled module" -msgstr "無効化モジュール" - -#: ../../enterprise/godmode/policies/policy_modules.php:1517 -#: ../../enterprise/godmode/policies/policy_modules.php:1518 -msgid "Enabled module" -msgstr "有効化モジュール" - -#: ../../enterprise/godmode/policies/policy_modules.php:1528 -#: ../../enterprise/godmode/policies/policy_modules.php:1529 -#: ../../godmode/agentes/module_manager.php:1143 -#: ../../godmode/agentes/module_manager.php:1144 -msgid "Enable module" -msgstr "モジュールを有効化" - -#: ../../enterprise/godmode/policies/policy_modules.php:1538 -#: ../../enterprise/godmode/policies/policy_modules.php:1539 -#: ../../godmode/agentes/module_manager.php:1153 -#: ../../godmode/agentes/module_manager.php:1154 -msgid "Disable module" -msgstr "モジュールを無効化" - -#: ../../enterprise/godmode/policies/policy_modules.php:1624 -msgid "There are no defined modules" -msgstr "定義済のモジュールがありません" - -#: ../../enterprise/godmode/policies/policy_modules.php:1643 -#: ../../godmode/massive/massive_copy_modules.php:188 -msgid "Copy modules" -msgstr "モジュールのコピー" - -#: ../../enterprise/godmode/policies/policy_modules.php:1644 -msgid "Copy selected modules to policy: " -msgstr "選択したモジュールをポリシーへコピー: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1706 -#: ../../godmode/agentes/module_manager_editor.php:822 -msgid "No module name provided" -msgstr "モジュール名がありません。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1707 -#: ../../godmode/agentes/module_manager_editor.php:832 -msgid "No target IP provided" -msgstr "対象 IP がありません。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1708 -#: ../../godmode/agentes/module_manager_editor.php:842 -msgid "No SNMP OID provided" -msgstr "SNMP OID がありません。" - -#: ../../enterprise/godmode/policies/policy_modules.php:1849 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "モジュールをポリシーにコピーしますか?\\n" - -#: ../../enterprise/godmode/policies/policy_modules.php:1869 -msgid "Please select any module to copy" -msgstr "コピーするモジュールを選択してください" - -#: ../../enterprise/godmode/policies/policies.php:85 -msgid "Policy not found." -msgstr "ポリシーが見つかりません。" - -#: ../../enterprise/godmode/policies/policies.php:153 -msgid "Policy name already exists" -msgstr "ポリシー名が既に存在します" - -#: ../../enterprise/godmode/policies/policies.php:224 -msgid "Policies Management" -msgstr "ポリシー管理" - -#: ../../enterprise/godmode/policies/policies.php:243 -msgid "All policy agents added to delete queue" -msgstr "削除キューに全ポリシーエージェントを追加しました" - -#: ../../enterprise/godmode/policies/policies.php:244 -msgid "Policy agents cannot be added to the delete queue" -msgstr "削除キューにポリシーエージェントを追加できません" - -#: ../../enterprise/godmode/policies/policies.php:330 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:514 -msgid "Agent Wizard" -msgstr "エージェントウィザード" - -#: ../../enterprise/godmode/policies/policies.php:595 -msgid "There must be no agents to delete the policy." -msgstr "ポリシーを削除するにはエージェントがあってはいけません。" - -#: ../../enterprise/godmode/policies/policies.php:601 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "" -"エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" - -#: ../../enterprise/godmode/policies/policies.php:611 -msgid "Deleting all policy agents" -msgstr "全ポリシーエージェントの削除中" - -#: ../../enterprise/godmode/policies/policies.php:616 -msgid "All the policy agents will be deleted" -msgstr "全ポリシーエージェントが削除されます" - -#: ../../enterprise/godmode/policies/policies.php:625 -msgid "Delete all agents" -msgstr "全エージェント削除" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 -#: ../../godmode/alerts/alert_list.php:173 -msgid "No module specified" -msgstr "モジュールが指定されていません" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 -msgid "Created successfuly" -msgstr "作成しました" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 -msgid "Duplicated alert" -msgstr "アラートが重複しています" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 -#: ../../enterprise/godmode/policies/policy_alerts.php:255 -msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next policy " -"application." -msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 -msgid "Deleted action successfuly" -msgstr "アクションを削除しました" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -msgid "Added action successfuly" -msgstr "アクションを追加しました" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 -msgid "Modules in policy per agents" -msgstr "エージェントごとのポリシー内モジュール" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:566 -msgid "There is not external alerts configured in this policy" -msgstr "このポリシーに設定された外部アラートがありません" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:620 -msgid "Modules in policy agents" -msgstr "ポリシーエージェント内のモジュール" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:648 -msgid "Alert Template" -msgstr "アラートテンプレート" - -#: ../../enterprise/godmode/policies/configure_policy.php:122 -msgid "Force Apply" -msgstr "強制適用" - -#: ../../enterprise/godmode/policies/configure_policy.php:122 -msgid "" -"Force the creation of modules even if the software agent does not have remote " -"configuration" -msgstr "" -"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制します" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 -msgid "Module is not selected" -msgstr "モジュールが選択されていません" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 -msgid "There are no defined inventory modules" -msgstr "定義済のインベントリモジュールがありません" - -#: ../../enterprise/godmode/policies/policy_alerts.php:178 -#: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:420 -msgid "Successfully set standby" -msgstr "スタンバイ状態にしました。" - -#: ../../enterprise/godmode/policies/policy_alerts.php:179 -#: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:421 -msgid "Could not be set standby" -msgstr "スタンバイ状態にできませんでした。" - -#: ../../enterprise/godmode/policies/policy_alerts.php:204 -#: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:447 -msgid "Successfully set off standby" -msgstr "非スタンバイ状態にしました。" - -#: ../../enterprise/godmode/policies/policy_alerts.php:205 -#: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:448 -msgid "Could not be set off standby" -msgstr "非スタンバイ状態にできませんでした。" - -#: ../../enterprise/godmode/policies/policy_alerts.php:249 -msgid " created successfuly" -msgstr " を作成しました" - -#: ../../enterprise/godmode/policies/policy_alerts.php:249 -msgid " could not be created" -msgstr " の作成ができませんでした" - -#: ../../enterprise/godmode/policies/policy_alerts.php:613 -msgid "There is not alerts configured in this policy." -msgstr "このポリシーにアラート設定がありません。" - -#: ../../enterprise/godmode/policies/policy_alerts.php:653 -msgid "Policy module" -msgstr "ポリシーモジュール" - -#: ../../enterprise/godmode/policies/policy_alerts.php:731 -#: ../../godmode/alerts/alert_list.list.php:1057 -msgid "Set off standby" -msgstr "非スタンバイ状態にする" - -#: ../../enterprise/godmode/policies/policy_alerts.php:740 -#: ../../godmode/alerts/alert_list.list.php:1084 -msgid "Set standby" -msgstr "スタンバイ状態にする" - -#: ../../enterprise/godmode/policies/policy_collections.php:99 -msgid "" -"Successfully added to delete the collection. Will be deleted in the next policy " -"application." -msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" - -#: ../../enterprise/godmode/policies/policy_collections.php:241 -msgid "Collections in policy" -msgstr "ポリシー内コレクション" - -#: ../../enterprise/godmode/policies/policy_collections.php:245 -msgid "Collections to add" -msgstr "追加するコレクション" - -#: ../../enterprise/godmode/policies/policy_collections.php:315 -msgid "No available collection to add" -msgstr "追加するコレクションがありません" - -#: ../../enterprise/godmode/policies/policy_plugins.php:56 -msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next policy " -"application." -msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" - -#: ../../enterprise/godmode/policies/policy_plugins.php:57 -msgid "Cannot be added to delete pending plugins." -msgstr "削除待ちプラグインを追加できません。" - -#: ../../enterprise/godmode/policies/policy_plugins.php:210 -msgid "There are no defined plugins" -msgstr "定義済のプラグインがありません" - -#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 -msgid "WebService engine has not been started, please check documentation." -msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" - -#: ../../extensions/quick_shell.php:152 -msgid "Retry" -msgstr "再試行" - -#: ../../extensions/quick_shell.php:196 -msgid "Telnet" -msgstr "Telnet" - -#: ../../extensions/quick_shell.php:204 -msgid "Connect" -msgstr "接続" - -#: ../../extensions/quick_shell.php:232 -msgid "Please use SSH or Telnet." -msgstr "SSH または Telnet を利用してください。" - -#: ../../extensions/quick_shell.php:266 -msgid "WebService engine is not working properly, please check documentation." -msgstr "" -"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。" - -#: ../../extensions/quick_shell.php:425 -#, php-format -msgid "%d Updated" -msgstr "%d 更新" - -#: ../../extensions/quick_shell.php:428 -#, php-format -msgid "%d Updated, please restart WebSocket engine service" -msgstr "%d 更新、WebSocket サービスを再起動してください。" - -#: ../../extensions/quick_shell.php:438 -msgid "Quickshell" -msgstr "クイックシェル" - -#: ../../extensions/quick_shell.php:448 -msgid "Gotty path" -msgstr "Gotty パス" - -#: ../../extensions/quick_shell.php:458 -msgid "Gotty host" -msgstr "Gotty ホスト" - -#: ../../extensions/quick_shell.php:468 -msgid "Gotty ssh port" -msgstr "Gotty ssh ポート" - -#: ../../extensions/quick_shell.php:478 -msgid "Gotty telnet port" -msgstr "Gotty telnet ポート" - -#: ../../extensions/quick_shell.php:495 -msgid "Gotty user" -msgstr "Gotty ユーザ" - -#: ../../extensions/quick_shell.php:505 -msgid "Gotty password" -msgstr "Gotty パスワード" - -#: ../../extensions/quick_shell.php:545 -msgid "QuickShell" -msgstr "クイックシェル" - -#: ../../extensions/disabled/matrix_events.php:30 -msgid "Matrix events" -msgstr "Matrix イベント" - -#: ../../extensions/pandora_logs.php:29 -msgid "Cannot find file" -msgstr "ファイルが見つかりません" - -#: ../../extensions/pandora_logs.php:34 -msgid "File is too large than PHP memory allocated in the system." -msgstr "PHP のメモリ割り当てよりもファイルが大きすぎます。" - -#: ../../extensions/pandora_logs.php:35 -msgid "The preview file is imposible." -msgstr "ファイルのプレビューはできません。" - -#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 -msgid "The folder /var/log/pandora must have pandora:apache and its content too." -msgstr "/var/log/pandora フォルダ以下は、pandora:apache である必要があります。" - -#: ../../extensions/pandora_logs.php:67 -msgid "System logfile viewer" -msgstr "システムログファイルビューワ" - -#: ../../extensions/pandora_logs.php:69 -#, php-format -msgid "Use this tool to view your %s logfiles directly on the console" -msgstr "コンソールで %s ログファイルを直接参照するためにこのツールを利用" - -#: ../../extensions/pandora_logs.php:71 -msgid "" -"You can choose the amount of information shown in general setup (Log size limit in " -"system logs viewer extension), " -msgstr "" -"一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できます。 " - -#: ../../extensions/pandora_logs.php:85 -msgid "System logfiles" -msgstr "システムログファイル" - -#: ../../extensions/users_connected.php:37 ../../extensions/users_connected.php:209 -msgid "Users connected" -msgstr "接続ユーザ" - -#: ../../extensions/users_connected.php:42 -msgid "This user does not have any associated profile" -msgstr "このユーザに関連付けられたプロファイルがありません" - -#: ../../extensions/users_connected.php:132 -msgid "No other users connected" -msgstr "他のユーザは接続していません" - -#: ../../extensions/users_connected.php:145 -msgid "Last login" -msgstr "最終ログイン" - -#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:268 -msgid "Realtime graphs" -msgstr "リアルタイムグラフ" - -#: ../../extensions/realtime_graphs.php:134 -#, php-format -msgid "%s Server CPU" -msgstr "%s サーバ CPU" - -#: ../../extensions/realtime_graphs.php:136 -#, php-format -msgid "Pending packages from %s Server" -msgstr "%s サーバの保留中 XML 処理" - -#: ../../extensions/realtime_graphs.php:140 -#, php-format -msgid "%s Server Disk IO Wait" -msgstr "%s サーバディスク IO ウエイト" - -#: ../../extensions/realtime_graphs.php:144 -#, php-format -msgid "%s Server Apache load" -msgstr "%s サーバ Apache 負荷" - -#: ../../extensions/realtime_graphs.php:148 -#, php-format -msgid "%s Server MySQL load" -msgstr "%s サーバ MySQL 負荷" - -#: ../../extensions/realtime_graphs.php:152 -#, php-format -msgid "%s Server load" -msgstr "%s サーバ負荷" - -#: ../../extensions/realtime_graphs.php:155 -msgid "SNMP Interface throughput" -msgstr "SNMP インタフェーススループット" - -#: ../../extensions/realtime_graphs.php:206 -msgid "Refresh interval" -msgstr "更新間隔" - -#: ../../extensions/realtime_graphs.php:217 -#: ../../godmode/modules/manage_network_components_form_wizard.php:135 -msgid "Incremental" -msgstr "インクリメンタル" - -#: ../../extensions/realtime_graphs.php:222 -msgid "Clear graph" -msgstr "グラフをクリア" - -#: ../../extensions/realtime_graphs.php:249 -#: ../../godmode/agentes/module_manager_editor_network.php:43 -msgid "Use this OID" -msgstr "この OID を利用" - -#: ../../extensions/dbmanager.php:110 -msgid "Database interface" -msgstr "DBインタフェース" - -#: ../../extensions/dbmanager.php:123 -msgid "" -"Warning, you are accessing the database directly. You can leave the system " -"inoperative if you run an inappropriate SQL statement" -msgstr "" -"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行すると、シ" -"ステムが動作しなくなる可能性があります" - -#: ../../extensions/dbmanager.php:161 -#, 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:207 -msgid "Select query target" -msgstr "クエリ対象を選択" - -#: ../../extensions/dbmanager.php:214 -msgid "Execute SQL" -msgstr "SQLの実行" - -#: ../../extensions/dbmanager.php:255 -msgid "Error querying database node" -msgstr "データベースノードへのクエリ中にエラー" - -#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:433 -msgid "DB interface" -msgstr "DBインタフェース" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Unreliable petition" -msgstr "信頼性の低い操作" - -#: ../../extensions/files_repo/files_repo_get_file.php:66 -msgid "Please contact the administrator" -msgstr "管理者に連絡してください" - -#: ../../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: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:248 -msgid "The file could not be copied" -msgstr "ファイルをコピーできませんでした" - -#: ../../extensions/files_repo/functions_files_repo.php:251 -msgid "There was an error creating the file" -msgstr "ファイル作成でエラーが発生しました" - -#: ../../extensions/files_repo/functions_files_repo.php:295 -msgid "There was an error updating the file" -msgstr "ファイル更新でエラーが発生しました" - -#: ../../extensions/files_repo/files_repo_form.php:84 -msgid "Only 200 characters are permitted" -msgstr "200文字までです" - -#: ../../extensions/files_repo/files_repo_form.php:95 ../../godmode/extensions.php:138 -msgid "File" -msgstr "ファイル" - -#: ../../extensions/files_repo/files_repo_form.php:98 -#: ../../extensions/files_repo/files_repo_form.php:104 -#: ../../extensions/files_repo/files_repo_list.php:112 -msgid "Public link" -msgstr "公開リンク" - -#: ../../extensions/files_repo/files_repo_list.php:106 -msgid "Copy to clipboard" -msgstr "クリップボードへコピー" - -#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:433 -msgid "DB Schema check" -msgstr "DBスキーマチェック" - -#: ../../extensions/db_status.php:43 -msgid "" -"This extension checks the DB is correct. Because sometimes the old DB from a " -"migration has not some fields in the tables or the data is changed." -msgstr "" -"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーションでテー" -"ブルのフィールドが不足していたりデータが変更されていなかったりするためです。" - -#: ../../extensions/db_status.php:46 -msgid "At the moment the checks is for MySQL/MariaDB." -msgstr "現時点では、MySQL/MariaDB 用です。" - -#: ../../extensions/db_status.php:52 -msgid "DB settings" -msgstr "DB 設定" - -#: ../../extensions/db_status.php:56 -msgid "DB User with privileges" -msgstr "権限のある DB ユーザ" - -#: ../../extensions/db_status.php:58 -msgid "DB Password for this user" -msgstr "この DB ユーザのパスワード" - -#: ../../extensions/db_status.php:62 -msgid "DB Hostname" -msgstr "DB ホスト名" - -#: ../../extensions/db_status.php:64 -msgid "DB Name (temporal for testing)" -msgstr "DB 名 (一時的なテスト用)" - -#: ../../extensions/db_status.php:72 -msgid "Execute Test" -msgstr "テスト実行" - -#: ../../extensions/db_status.php:108 -msgid "Unsuccessful connected to the DB" -msgstr "DB 接続に失敗しました" - -#: ../../extensions/db_status.php:119 -msgid "Unsuccessful created the testing DB" -msgstr "テスト DB の作成に失敗しました" - -#: ../../extensions/db_status.php:135 -msgid "Unsuccessful installed tables into the testing DB" -msgstr "テスト DB へのテーブル設定に失敗しました" - -#: ../../extensions/db_status.php:219 -#, php-format -msgid "Success! %s DB contains all tables" -msgstr "成功! %s DB はすべてのテーブルを含んでいます" - -#: ../../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:343 -#, php-format -msgid "Unsuccessful the table %s has not the field %s" -msgstr "テーブル %s に、フィールド %s がありません。" - -#: ../../extensions/db_status.php:408 -msgid "Successful all the tables have the correct fields" -msgstr "すべてのテーブルにおいてフィールドは正しい状態です" - -#: ../../extensions/agents_alerts.php:37 -msgid "Agents/Alerts view" -msgstr "エージェント/アラート 表示" - -#: ../../extensions/extension_uploader.php:29 -msgid "Uploader extension" -msgstr "拡張アップローダ" - -#: ../../extensions/extension_uploader.php:72 -msgid "Success to upload extension" -msgstr "拡張をアップロードしました" - -#: ../../extensions/extension_uploader.php:73 -msgid "Fail to upload extension" -msgstr "拡張のアップロードに失敗しました" - -#: ../../extensions/extension_uploader.php:82 -msgid "Upload extension" -msgstr "拡張のアップロード" - -#: ../../extensions/extension_uploader.php:83 -msgid "Upload the extension as a zip file." -msgstr "zipファイルで拡張をアップロードしてください。" - -#: ../../extensions/extension_uploader.php:85 -msgid "Upload enterprise extension" -msgstr "Enterprise 拡張のアップロード" - -#: ../../extensions/extension_uploader.php:98 -msgid "Extension uploader" -msgstr "拡張アップローダ" - -#: ../../extensions/module_groups.php:48 -msgid "Counters Module" -msgstr "カウンタモジュール" - -#: ../../extensions/module_groups.php:49 -msgid "Alerts_Fired" -msgstr "アラート発報" - -#: ../../extensions/module_groups.php:51 -msgid "warning" -msgstr "警告" - -#: ../../extensions/module_groups.php:54 -msgid "Not_init" -msgstr "未初期化" - -#: ../../extensions/module_groups.php:251 -msgid "Combined table of agent group and module group" -msgstr "エージェントグループとモジュールグループの一覧" - -#: ../../extensions/module_groups.php:275 -msgid "Search by agent group" -msgstr "エージェントグループでの検索" - -#: ../../extensions/module_groups.php:279 -msgid "Search by module group" -msgstr "モジュールグループでの検索" - -#: ../../extensions/module_groups.php:392 -msgid "Orange cell when the module group and agent have at least one alarm fired." -msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが発生して" -"いる時にオレンジになります。" - -#: ../../extensions/module_groups.php:393 -msgid "" -"Red cell when the module group and agent have at least one module in critical status " -"and the others in any status" -msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の時に赤に" -"なります。" - -#: ../../extensions/module_groups.php:394 -msgid "" -"Yellow cell when the module group and agent have at least one in warning status and " -"the others in grey or green status" -msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態で、その他" -"のモジュールが不明か正常状態の時にに黄色なります。" - -#: ../../extensions/module_groups.php:395 -msgid "" -"Grey cell when the module group and agent have at least one in unknown status and the " -"others in green status" -msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態で、その他" -"のモジュールが正常状態の時にグレーになります。" - -#: ../../extensions/module_groups.php:396 -msgid "Green cell when the module group and agent have all modules in OK status" -msgstr "" -"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑になります。" - -#: ../../extensions/module_groups.php:397 -msgid "Blue cell when the module group and agent have all modules in not init status." -msgstr "青のセルは、全モジュールが未初期化状態であることを示します。" - -#: ../../extensions/module_groups.php:401 -msgid "" -"This table shows in columns the modules group and in rows agents group. The cell " -"shows all modules" -msgstr "" -"列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モジュール" -"の状態を表示しています。" - -#: ../../extensions/module_groups.php:402 -msgid "There are no defined groups or module groups" -msgstr "定義済のグループまたはモジュールグループがありません。" - -#: ../../extensions/agents_modules.php:564 -msgid "Agent/module view" -msgstr "エージェント/モジュール表示" - -#: ../../extensions/agents_modules.php:605 -msgid "Filters " -msgstr "フィルタ " - -#: ../../extensions/agents_modules.php:605 -msgid "Secondary groups and agent subgroups will be taken into account." -msgstr "セカンダリグループとエージェントサブグループが考慮されます。" - -#: ../../extensions/agents_modules.php:765 -msgid "Previous modules" -msgstr "前のモジュールへ" - -#: ../../extensions/agents_modules.php:791 -msgid "More modules" -msgstr "次のモジュールへ" - -#: ../../extensions/agents_modules.php:945 -msgid "Cell turns blue when the module is in 'not initialize' status" -msgstr "モジュールが未初期化状態のときにセルが青になります。" - -#: ../../extensions/agents_modules.php:959 -msgid "Agents/Modules view" -msgstr "エージェント/モジュール表示" - -#: ../../extensions/files_repo.php:103 -msgid "Extension not installed" -msgstr "拡張がインストールされていません" - -#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 -msgid "Administration view" -msgstr "管理画面" - -#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 -msgid "Files repository manager" -msgstr "ファイルリポジトリ管理" - -#: ../../extensions/files_repo.php:148 -msgid "" -"Problem uploading. Please check this PHP runtime variable values:
      "
    -"post_max_size (currently "
    -msgstr ""
    -"アップロードに問題があります。 次の PHP ランタイム変数値を確認してください: 
     "
    -"post_max_size(現在 "
    -
    -#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
    -msgid "Files repository"
    -msgstr "ファイルリポジトリ"
    -
    -#: ../../extensions/resource_registration.php:55
    -#, php-format
    -msgid "Success add '%s' item in report '%s'."
    -msgstr "レポート '%s' に、アイテム '%s' を追加しました。"
    -
    -#: ../../extensions/resource_registration.php:60
    -#, php-format
    -msgid "Error create '%s' item in report '%s'."
    -msgstr "レポート '%s' にアイテム '%s' の追加でエラーになりました。"
    -
    -#: ../../extensions/resource_registration.php:96
    -#, php-format
    -msgid "Error create '%s' report, the name exist and there aren't free name."
    -msgstr "レポート '%s' でエラーです。指定の名前はすでに使われています。"
    -
    -#: ../../extensions/resource_registration.php:104
    -#, php-format
    -msgid "Warning create '%s' report, the name exist, the report have a name %s."
    -msgstr ""
    -"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s です。"
    -
    -#: ../../extensions/resource_registration.php:113
    -msgid "Error the report haven't name."
    -msgstr "レポートに名前がありません。"
    -
    -#: ../../extensions/resource_registration.php:127
    -msgid "Error the report haven't group."
    -msgstr "レポートにグループがありません。"
    -
    -#: ../../extensions/resource_registration.php:140
    -#, php-format
    -msgid "Success create '%s' report."
    -msgstr "レポート '%s' を作成しました。"
    -
    -#: ../../extensions/resource_registration.php:141
    -#, php-format
    -msgid "Error create '%s' report."
    -msgstr "レポート '%s' の作成に失敗しました。"
    -
    -#: ../../extensions/resource_registration.php:435
    -#: ../../extensions/resource_registration.php:457
    -#: ../../extensions/resource_registration.php:468
    -#, php-format
    -msgid "Success add '%s' content."
    -msgstr "コンテンツ '%s'を追加しました。"
    -
    -#: ../../extensions/resource_registration.php:445
    -#, php-format
    -msgid "Success add '%s' SLA."
    -msgstr "SLA '%s' を追加しました。"
    -
    -#: ../../extensions/resource_registration.php:446
    -#, php-format
    -msgid "Error add '%s' SLA."
    -msgstr "SLA '%s' の追加に失敗しました。"
    -
    -#: ../../extensions/resource_registration.php:489
    -#, php-format
    -msgid "Error create '%s' visual map, lost tag name."
    -msgstr "ビジュアルマップ '%s' の作成に失敗しました。タグ名がありません。"
    -
    -#: ../../extensions/resource_registration.php:532
    -#, php-format
    -msgid "Error create '%s' visual map, the name exist and there aren't free name."
    -msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前がすでに存在します。"
    -
    -#: ../../extensions/resource_registration.php:540
    -#, php-format
    -msgid "Warning create '%s' visual map, the name exist, the report have a name %s."
    -msgstr ""
    -"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s です。"
    -
    -#: ../../extensions/resource_registration.php:552
    -#, php-format
    -msgid "Success create '%s' visual map."
    -msgstr "ビジュアルマップ '%s' を作成しました。"
    -
    -#: ../../extensions/resource_registration.php:553
    -#, php-format
    -msgid "Error create '%s' visual map."
    -msgstr "ビジュアルマップ '%s' の作成に失敗しました。"
    -
    -#: ../../extensions/resource_registration.php:718
    -#, php-format
    -msgid "Success create item type '%d' visual map."
    -msgstr "アイテムタイプ '%d' のビジュアルマップを作成しました。"
    -
    -#: ../../extensions/resource_registration.php:719
    -#, php-format
    -msgid "Error create item type '%d' visual map."
    -msgstr "アイテムタイム '%d' のビジュアルマップを作成できませんでした。"
    -
    -#: ../../extensions/resource_registration.php:742
    -#: ../../extensions/resource_registration.php:763
    -#, php-format
    -msgid "Success create item for agent '%s' visual map."
    -msgstr "'%s'ビジュアルマップ用エージェント項目を作成しました。"
    -
    -#: ../../extensions/resource_registration.php:743
    -#: ../../extensions/resource_registration.php:764
    -#, php-format
    -msgid "Error create item for agent '%s' visual map."
    -msgstr "'%s'ビジュアルマップ用エージェント項目の作成に失敗しました。"
    -
    -#: ../../extensions/resource_registration.php:1028
    -#, php-format
    -msgid "Success create '%s' component."
    -msgstr "コンポーネント '%s' を作成しました。"
    -
    -#: ../../extensions/resource_registration.php:1029
    -#, php-format
    -msgid "Error create '%s' component."
    -msgstr "コンポーネント '%s' の作成に失敗しました。"
    -
    -#: ../../extensions/resource_registration.php:1095
    -#: ../../extensions/resource_registration.php:1158
    -msgid "Resource registration"
    -msgstr "リソース登録"
    -
    -#: ../../extensions/resource_registration.php:1114
    -#, php-format
    -msgid "This node is configured with centralized mode. Go to %s to create a policy."
    -msgstr "このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。"
    -
    -#: ../../extensions/resource_registration.php:1123
    -msgid "This extension makes registering resource templates easier."
    -msgstr "この拡張機能により、リソーステンプレートの登録が簡単になります。"
    -
    -#: ../../extensions/resource_registration.php:1123
    -msgid "Here you can upload a resource template in .ptr format."
    -msgstr "ここに、.ptr フォーマットでリソーステンプレートをアップロードできます。"
    -
    -#: ../../extensions/resource_registration.php:1123
    -#, php-format
    -msgid ""
    -"Please refer to our documentation for more information on how to obtain and use %s "
    -"resources."
    -msgstr ""
    -"%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してください。"
    -
    -#: ../../extensions/resource_registration.php:1123
    -msgid ""
    -"You can get more resurces in our Public Resource Library"
    -msgstr ""
    -"公開リソースライブラリから追加の"
    -"リソースを入手できます。"
    -
    -#: ../../extensions/resource_exportation.php:50
    -#: ../../extensions/resource_exportation.php:420
    -msgid "Resource exportation"
    -msgstr "リソースのエクスポート"
    -
    -#: ../../extensions/resource_exportation.php:423
    -msgid "This extension makes exportation of resource template more easy."
    -msgstr "この拡張機能により、リソーステンプレートのエクスポートがより簡単になります。"
    -
    -#: ../../extensions/resource_exportation.php:423
    -msgid "You can export resource templates in .ptr format."
    -msgstr "リソーステンプレートを .ptr フォーマットでエクスポートできます。"
    -
    -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248
    -msgid "API checker"
    -msgstr "API チェッカ"
    -
    -#: ../../extensions/api_checker.php:128
    -#, php-format
    -msgid "%s Console URL"
    -msgstr "%s コンソールURL"
    -
    -#: ../../extensions/api_checker.php:133
    -msgid "API Pass"
    -msgstr "API パス"
    -
    -#: ../../extensions/api_checker.php:151
    -msgid "Action (get or set)"
    -msgstr "アクション (get または set)"
    -
    -#: ../../extensions/api_checker.php:166
    -msgid "ID 2"
    -msgstr "ID 2"
    -
    -#: ../../extensions/api_checker.php:171
    -msgid "Return Type"
    -msgstr "Return Type"
    -
    -#: ../../extensions/api_checker.php:181
    -msgid "Other Mode"
    -msgstr "Other Mode"
    -
    -#: ../../extensions/api_checker.php:189
    -msgid "Raw URL"
    -msgstr "詳細 URL"
    -
    -#: ../../extensions/api_checker.php:200
    -msgid "Call parameters"
    -msgstr "呼び出しパラメータ"
    -
    -#: ../../extensions/api_checker.php:200
    -msgid "Action: get Operation: module_last_value id: 63"
    -msgstr "アクション: get操作: module_last_value id:63"
    -
    -#: ../../extensions/api_checker.php:207
    -msgid "Custom URL"
    -msgstr "カスタムURL"
    -
    -#: ../../extensions/api_checker.php:213
    -msgid "Call"
    -msgstr "呼び出し"
    -
    -#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239
    -msgid "Show URL"
    -msgstr "URL を表示"
    -
    -#: ../../extensions/api_checker.php:235
    -msgid "Hide URL"
    -msgstr "URL を隠す"
    -
    -#: ../../extensions/insert_data.php:58
    -msgid "Insert data"
    -msgstr "データの挿入"
    -
    -#: ../../extensions/insert_data.php:89
    -msgid "You haven't privileges for insert data in the agent."
    -msgstr "エージェントにデータを挿入する権限がありません。"
    -
    -#: ../../extensions/insert_data.php:125
    -#, php-format
    -msgid "Can't save agent (%s), module (%s) data xml."
    -msgstr "エージェント(%s)、モジュール(%s) のデータを保存できません。"
    -
    -#: ../../extensions/insert_data.php:134
    -#, php-format
    -msgid "Save agent (%s), module (%s) data xml."
    -msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。"
    -
    -#: ../../extensions/insert_data.php:145
    -#, php-format
    -msgid ""
    -"Please check that the directory \"%s\" is writeable by the apache user. 

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

    CSV ファイルフォーマットは、date;value<newline>date;value<newline>... で" -"す。CSV 内の日時フォーマットは Y/m/d H:i:s です。" - -#: ../../extensions/insert_data.php:273 -msgid "Insert Data" -msgstr "データの挿入" - -#: ../../mobile/operation/agent.php:162 -msgid "No agent found" -msgstr "エージェントがありません" - -#: ../../mobile/operation/agent.php:238 -msgid "Modules by status" -msgstr "状態ごとのモジュール" - -#: ../../mobile/operation/agent.php:375 -#, php-format -msgid "Last %s Events" -msgstr "最新の %s イベント" - -#: ../../mobile/operation/modules.php:250 -#, php-format -msgid "Filter Modules by %s" -msgstr "%s によるモジュールのフィルタ" - -#: ../../mobile/operation/modules.php:325 ../../mobile/operation/alerts.php:266 -#: ../../mobile/operation/events.php:718 ../../mobile/operation/agents.php:260 -msgid "Apply Filter" -msgstr "フィルタの適用" - -#: ../../mobile/operation/modules.php:659 -msgid "Interval." -msgstr "間隔" - -#: ../../mobile/operation/modules.php:661 -msgid "Last update." -msgstr "最新の更新" - -#: ../../mobile/operation/modules.php:772 ../../godmode/agentes/agent_template.php:269 -msgid "No modules" -msgstr "モジュールがありません" - -#: ../../mobile/operation/modules.php:885 ../../mobile/operation/alerts.php:379 -#: ../../mobile/operation/events.php:1155 ../../mobile/operation/agents.php:550 -msgid "(Default)" -msgstr "(デフォルト)" - -#: ../../mobile/operation/modules.php:891 ../../mobile/operation/alerts.php:392 -#: ../../mobile/operation/events.php:1188 ../../mobile/operation/agents.php:556 -#, php-format -msgid "Group: %s" -msgstr "グループ: %s" - -#: ../../mobile/operation/modules.php:906 -#, php-format -msgid "Module group: %s" -msgstr "モジュールグループ: %s" - -#: ../../mobile/operation/modules.php:913 ../../mobile/operation/alerts.php:399 -#: ../../mobile/operation/events.php:1208 ../../mobile/operation/agents.php:563 -#, php-format -msgid "Status: %s" -msgstr "状態: %s" - -#: ../../mobile/operation/modules.php:920 ../../mobile/operation/alerts.php:406 -#: ../../mobile/operation/agents.php:570 -#, php-format -msgid "Free Search: %s" -msgstr "検索: %s" - -#: ../../mobile/operation/modules.php:928 -#, php-format -msgid "Tag: %s" -msgstr "タグ: %s" - -#: ../../mobile/operation/visualmaps.php:242 -msgid "All visual consoles" -msgstr "全てのビジュアルコンソール" - -#: ../../mobile/operation/visualmaps.php:254 -msgid "Favourite visual consoles" -msgstr "お気に入りのビジュアルコンソール" - -#: ../../mobile/operation/visualmaps.php:263 -msgid "No maps defined" -msgstr "定義済マップがありません" - -#: ../../mobile/operation/home.php:161 ../../mobile/include/ui.class.php:239 -msgid "Home" -msgstr "ホーム" - -#: ../../mobile/operation/tactical.php:216 -msgid "Last activity" -msgstr "最近の操作" - -#: ../../mobile/operation/alerts.php:125 ../../mobile/operation/alerts.php:126 -#: ../../mobile/operation/alerts.php:256 ../../mobile/operation/alerts.php:257 -#: ../../godmode/alerts/alert_view.php:128 -msgid "Stand by" -msgstr "スタンバイ" - -#: ../../mobile/operation/alerts.php:208 -#, php-format -msgid "Filter Alerts by %s" -msgstr "%sによる発報アラート" - -#: ../../mobile/operation/alerts.php:346 -msgid "Last Fired" -msgstr "直近の発報" - -#: ../../mobile/operation/alerts.php:357 -msgid "No alerts" -msgstr "アラートなし" - -#: ../../mobile/operation/alerts.php:385 -#, php-format -msgid "Standby: %s" -msgstr "スタンバイ: %s" - -#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 -#: ../../mobile/operation/events.php:643 ../../mobile/operation/events.php:644 -msgid "Preset Filters" -msgstr "定義済フィルタ" - -#: ../../mobile/operation/events.php:485 -msgid "ERROR: Event detail" -msgstr "エラー: イベント詳細" - -#: ../../mobile/operation/events.php:486 -msgid "Error connecting to DB." -msgstr "DB 接続エラー。" - -#: ../../mobile/operation/events.php:501 -msgid "Event detail" -msgstr "イベント詳細" - -#: ../../mobile/operation/events.php:584 -msgid "Sucessful validate" -msgstr "承諾しました" - -#: ../../mobile/operation/events.php:586 -msgid "Fail validate" -msgstr "承諾に失敗しました" - -#: ../../mobile/operation/events.php:625 -#, php-format -msgid "Filter Events by %s" -msgstr "%s によるイベントのフィルタ" - -#: ../../mobile/operation/events.php:1160 -#, php-format -msgid "Filter: %s" -msgstr "フィルタ: %s" - -#: ../../mobile/operation/events.php:1172 -#, php-format -msgid "Severity: %s" -msgstr "重要度: %s" - -#: ../../mobile/operation/events.php:1201 -#, php-format -msgid "Type: %s" -msgstr "タイプ: %s" - -#: ../../mobile/operation/events.php:1215 -#, php-format -msgid "Free search: %s" -msgstr "検索: %s" - -#: ../../mobile/operation/events.php:1222 -#, php-format -msgid "Hours: %s" -msgstr "時間: %s" - -#: ../../mobile/operation/module_graph.php:359 -#: ../../mobile/operation/module_graph.php:372 -#, php-format -msgid "%s: %s" -msgstr "%s: %s" - -#: ../../mobile/operation/module_graph.php:405 -#, php-format -msgid "Options for %s : %s" -msgstr "%s : %s のオプション" - -#: ../../mobile/operation/module_graph.php:412 -msgid "Show Alerts" -msgstr "アラート表示" - -#: ../../mobile/operation/module_graph.php:420 -msgid "Show Events" -msgstr "イベント表示" - -#: ../../mobile/operation/module_graph.php:449 -msgid "Time range (hours)" -msgstr "時間範囲 (時間)" - -#: ../../mobile/operation/module_graph.php:468 -msgid "Update graph" -msgstr "グラフ更新" - -#: ../../mobile/operation/module_graph.php:478 -msgid "Error get the graph" -msgstr "グラフ生成エラー" - -#: ../../mobile/operation/agents.php:218 -#, php-format -msgid "Filter Agents by %s" -msgstr "%s によるエージェントフィルタ" - -#: ../../mobile/operation/agents.php:454 -msgid "No agents" -msgstr "エージェントがありません" - -#: ../../mobile/include/user.class.php:171 -msgid "User cannot log in into this console, please contact administrator" -msgstr "ユーザはこのコンソールにログインできません。管理者に連絡してください。" - -#: ../../mobile/include/user.class.php:264 ../../mobile/include/user.class.php:279 -#: ../../mobile/include/user.class.php:286 -msgid "Double authentication failed" -msgstr "二段階認証に失敗しました" - -#: ../../mobile/include/user.class.php:265 -msgid "Secret code not found" -msgstr "シークレットコードがありません" - -#: ../../mobile/include/user.class.php:265 -msgid "Please contact the administrator to reset your double authentication" -msgstr "二段階認証をリセットするには管理者へ連絡してください。" - -#: ../../mobile/include/user.class.php:287 -msgid "There was an error checking the code" -msgstr "コードの確認でエラーが発生しました" - -#: ../../mobile/include/user.class.php:328 -msgid "Login Failed" -msgstr "ログイン失敗" - -#: ../../mobile/include/user.class.php:332 -msgid "User not found in database or incorrect password." -msgstr "ユーザが存在しないかパスワードが異なります。" - -#: ../../mobile/include/user.class.php:341 -msgid "Login out" -msgstr "ログアウト" - -#: ../../mobile/include/user.class.php:372 -msgid "user" -msgstr "ユーザ" - -#: ../../mobile/include/user.class.php:379 -msgid "password" -msgstr "パスワード" - -#: ../../mobile/include/user.class.php:468 ../../mobile/include/user.class.php:469 -msgid "Authenticator code" -msgstr "認証コード" - -#: ../../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/system.class.php:156 -#, php-format -msgid "" -"Please remember that any attempts to access this page will be recorded on the %s " -"System Database." -msgstr "このページへのアクセスは、%s システムデータベースに記録されます。" - -#: ../../mobile/include/ui.class.php:120 -#, php-format -msgid "%s mobile" -msgstr "%s モバイル" - -#: ../../mobile/include/ui.class.php:217 -#, php-format -msgid "%s : Mobile" -msgstr "%s : モバイル" - -#: ../../mobile/include/ui.class.php:327 -#, php-format -msgid "%s %s - Build %s" -msgstr "%s %s - ビルド %s" - -#: ../../mobile/include/ui.class.php:773 -msgid "Not found header." -msgstr "ヘッダーがありません" - -#: ../../mobile/include/ui.class.php:775 -msgid "Not found content." -msgstr "コンテンツがありません" - -#: ../../mobile/include/ui.class.php:777 -msgid "Not found footer." -msgstr "フッターがありません" - -#: ../../mobile/include/ui.class.php:779 -msgid "Incorrect form." -msgstr "フォームが不正です" - -#: ../../mobile/include/ui.class.php:781 -msgid "Incorrect grid." -msgstr "グリッドが不正です" - -#: ../../mobile/include/ui.class.php:783 -msgid "Incorrect collapsible." -msgstr "折り返しが不正です" - -#: ../../mobile/include/functions_web.php:83 -#, php-format -msgid "Pandora FMS %s - Build %s" -msgstr "Pandora FMS %s - ビルド %s" - -#: ../../godmode/setup/setup.php:165 ../../godmode/setup/setup.php:283 -#: ../../godmode/setup/setup_integria.php:585 ../../godmode/menu.php:350 -msgid "Integria IMS" -msgstr "Integria IMS" - -#: ../../godmode/setup/setup.php:216 -msgid "Websocket engine" -msgstr "Websocket エンジン" - -#: ../../godmode/setup/setup.php:234 -msgid "GIS Map connection" -msgstr "GIS マップ接続" - -#: ../../godmode/setup/setup.php:295 ../../godmode/menu.php:365 -msgid "Map conections GIS" -msgstr "GIS 利用マップ" - -#: ../../godmode/setup/setup.php:305 -msgid "Pandora Websocket Engine" -msgstr "Pandora Websocket エンジン" - -#: ../../godmode/setup/setup.php:349 -msgid "Correct update the setup options" -msgstr "設定オプションを更新しました" - -#: ../../godmode/setup/snmp_wizard.php:155 -msgid "Unsucessful update the snmp translation" -msgstr "SNMP翻訳の更新に失敗しました" - -#: ../../godmode/setup/snmp_wizard.php:162 -msgid "Unsucessful update the snmp translation." -msgstr "SNMP翻訳の更新に失敗しました。" - -#: ../../godmode/setup/snmp_wizard.php:210 -msgid "Unsucessful delete the snmp translation" -msgstr "SNMP翻訳の削除に失敗しました" - -#: ../../godmode/setup/snmp_wizard.php:217 -msgid "Unsucessful delete the snmp translation." -msgstr "SNMP翻訳の削除に失敗しました。" - -#: ../../godmode/setup/snmp_wizard.php:278 -msgid "Unsucessful save the snmp translation" -msgstr "SNMP翻訳の保存に失敗しました" - -#: ../../godmode/setup/snmp_wizard.php:287 -msgid "Unsucessful save the snmp translation." -msgstr "SNMP翻訳の保存に失敗しました。" - -#: ../../godmode/setup/os.list.php:56 -#, php-format -msgid "" -"This node is configured with centralized mode. All OS definitions are read only. Go " -"to %s to manage them." -msgstr "" -"このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用です。 そ" -"れらを管理するには、%s に移動します。" - -#: ../../godmode/setup/os.list.php:141 -msgid "There are no defined operating systems" -msgstr "定義済のオペレーティングシステムがありません" - -#: ../../godmode/setup/os.list.php:147 -msgid "Create OS" -msgstr "OS を作成" - -#: ../../godmode/setup/setup_integria.php:296 -msgid "URL to Integria IMS setup" -msgstr "Integria IMS セットアップ URL" - -#: ../../godmode/setup/setup_integria.php:296 -msgid "" -"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://" -"support.mycompany.com)." -msgstr "" -"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, https://" -"support.mycompany.com)" - -#: ../../godmode/setup/setup_integria.php:302 -msgid "API Password" -msgstr "API パスワード" - -#: ../../godmode/setup/setup_integria.php:309 ../../godmode/setup/setup_ehorus.php:105 -msgid "Request timeout" -msgstr "要求タイムアウト" - -#: ../../godmode/setup/setup_integria.php:315 -msgid "Sync inventory" -msgstr "インベントリ同期" - -#: ../../godmode/setup/setup_integria.php:348 ../../godmode/setup/setup_integria.php:469 -msgid "Ticket body" -msgstr "チケット本文" - -#: ../../godmode/setup/setup_integria.php:603 -msgid "Integria API settings" -msgstr "Integria API 設定" - -#: ../../godmode/setup/setup_integria.php:614 -msgid "Alert default values" -msgstr "アラートデフォルト値" - -#: ../../godmode/setup/setup_integria.php:624 -msgid "Event custom response default values" -msgstr "イベントカスタム応答デフォルト値" - -#: ../../godmode/setup/setup_integria.php:719 ../../godmode/setup/setup_ehorus.php:254 -msgid "Connection timeout" -msgstr "接続タイムアウト" - -#: ../../godmode/setup/gis_step_2.php:37 -msgid "GIS Maps connections" -msgstr "GIS マップ接続" - -#: ../../godmode/setup/gis_step_2.php:54 -msgid "Create new map connection" -msgstr "新たな利用マップ設定" - -#: ../../godmode/setup/gis_step_2.php:81 -msgid "Edit map connection" -msgstr "利用マップ編集" - -#: ../../godmode/setup/gis_step_2.php:213 -msgid "Connection Name" -msgstr "名称" - -#: ../../godmode/setup/gis_step_2.php:219 -msgid "Number of zoom levels" -msgstr "選択可能な拡大率の数" - -#: ../../godmode/setup/gis_step_2.php:223 -msgid "Default zoom level" -msgstr "デフォルト拡大レベル" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Basic configuration" -msgstr "基本設定" - -#: ../../godmode/setup/gis_step_2.php:231 -msgid "Open Street Maps" -msgstr "Open Street マップ" - -#: ../../godmode/setup/gis_step_2.php:232 -msgid "Google Maps" -msgstr "Google マップ" - -#: ../../godmode/setup/gis_step_2.php:234 -msgid "WMS Server" -msgstr "WMS サーバ" - -#: ../../godmode/setup/gis_step_2.php:236 -msgid "Please select the connection type" -msgstr "利用マップタイプを選択してください" - -#: ../../godmode/setup/gis_step_2.php:238 -msgid "Map connection type" -msgstr "利用マップタイプ" - -#: ../../godmode/setup/gis_step_2.php:286 -msgid "Tile Server URL" -msgstr "サーバ URL" - -#: ../../godmode/setup/gis_step_2.php:299 -msgid "Google Physical" -msgstr "地形" - -#: ../../godmode/setup/gis_step_2.php:300 -msgid "Google Hybrid" -msgstr "航空写真" - -#: ../../godmode/setup/gis_step_2.php:301 -msgid "Google Satelite" -msgstr "地図" - -#: ../../godmode/setup/gis_step_2.php:303 -msgid "Google Map Type" -msgstr "Google マップタイプ" - -#: ../../godmode/setup/gis_step_2.php:327 -msgid "Google Maps Key" -msgstr "Google マップキー" - -#: ../../godmode/setup/gis_step_2.php:336 -msgid "Image URL" -msgstr "画像 URL" - -#: ../../godmode/setup/gis_step_2.php:343 -msgid "Corners of the area of the image" -msgstr "画像が表す領域の範囲" - -#: ../../godmode/setup/gis_step_2.php:371 -msgid "Image Size" -msgstr "画像サイズ" - -#: ../../godmode/setup/gis_step_2.php:388 -msgid "WMS Server URL" -msgstr "WMS サーバ URL" - -#: ../../godmode/setup/gis_step_2.php:395 -#: ../../godmode/gis_maps/configure_gis_map.php:552 -msgid "Layers" -msgstr "レイヤ" - -#: ../../godmode/setup/gis_step_2.php:430 -msgid "" -"Preview to select the center of the map and the default position of an agent without " -"gis data" -msgstr "マップの中心選択と、GISデータが無い場合のエージェントのデフォルト位置プレビュー" - -#: ../../godmode/setup/gis_step_2.php:431 -msgid "Load preview map" -msgstr "マッププレビュー" - -#: ../../godmode/setup/gis_step_2.php:440 -msgid "Map Center" -msgstr "マップの中心" - -#: ../../godmode/setup/gis_step_2.php:441 -msgid "Default position for agents without GIS data" -msgstr "GIS データが無い場合のエージェントのデフォルト位置" - -#: ../../godmode/setup/gis_step_2.php:443 -msgid "Change in the map" -msgstr "マップ内での変更" - -#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659 -msgid "Center" -msgstr "中心" - -#: ../../godmode/setup/gis_step_2.php:624 -msgid "Refresh preview map" -msgstr "マッププレビューの再実行" - -#: ../../godmode/setup/setup_visuals.php:79 -msgid "Paginated module view" -msgstr "ページ区切りモジュール表示" - -#: ../../godmode/setup/setup_visuals.php:106 -msgid "Click to display lateral menus" -msgstr "クリックして横のメニューを表示" - -#: ../../godmode/setup/setup_visuals.php:120 -msgid "Space between items in Service maps" -msgstr "サービスマップにおける要素間のスペース" - -#: ../../godmode/setup/setup_visuals.php:151 -msgid "Colors" -msgstr "色" - -#: ../../godmode/setup/setup_visuals.php:152 -msgid "Faces" -msgstr "顔" - -#: ../../godmode/setup/setup_visuals.php:153 -msgid "Colors and text" -msgstr "色と文字" - -#: ../../godmode/setup/setup_visuals.php:451 -msgid "Custom mobile console icon" -msgstr "カスタムモバイルコンソールアイコン" - -#: ../../godmode/setup/setup_visuals.php:519 -msgid "Disable logo in graphs" -msgstr "グラフ内ロゴの無効化" - -#: ../../godmode/setup/setup_visuals.php:535 -msgid "Disable helps" -msgstr "ヘルプの無効化" - -#: ../../godmode/setup/setup_visuals.php:555 -msgid "Automatically hide submenu" -msgstr "サブメニューを自動的に隠す" - -#: ../../godmode/setup/setup_visuals.php:604 -msgid "Agent icon group" -msgstr "エージェントアイコングループ" - -#: ../../godmode/setup/setup_visuals.php:622 -msgid "Graphs font size" -msgstr "グラフフォントサイズ" - -#: ../../godmode/setup/setup_visuals.php:654 ../../godmode/setup/setup_visuals.php:659 -msgid "Small:" -msgstr "小:" - -#: ../../godmode/setup/setup_visuals.php:655 ../../godmode/setup/setup_visuals.php:660 -msgid "Normal:" -msgstr "通常:" - -#: ../../godmode/setup/setup_visuals.php:678 -msgid "Show unit along with value in reports" -msgstr "レポート内に値に加えて単位を表示する" - -#: ../../godmode/setup/setup_visuals.php:824 -msgid "Data precision" -msgstr "データ精度" - -#: ../../godmode/setup/setup_visuals.php:842 -msgid "Data precision in graphs" -msgstr "グラフにおけるデータの精度" - -#: ../../godmode/setup/setup_visuals.php:918 -msgid "Type of interface charts" -msgstr "インタフェースグラフのタイプ" - -#: ../../godmode/setup/setup_visuals.php:946 -msgid "Graph TIP view:" -msgstr "グラフ詳細表示:" - -#: ../../godmode/setup/setup_visuals.php:1059 -msgid "Classic view" -msgstr "クラシック表示" - -#: ../../godmode/setup/setup_visuals.php:1060 -msgid "View of favorites" -msgstr "お気に入りの表示" - -#: ../../godmode/setup/setup_visuals.php:1061 -msgid "Type of view of visual consoles" -msgstr "ビジュアルコンソールの表示タイプ" - -#: ../../godmode/setup/setup_visuals.php:1065 -msgid "Number of favorite visual consoles to show in the menu" -msgstr "メニューに表示するお気に入りビジュアルコンソールの数" - -#: ../../godmode/setup/setup_visuals.php:1083 -msgid "Number of favorite services to show in the menu" -msgstr "メニューに表示するお気に入りのサービスの数" - -#: ../../godmode/setup/setup_visuals.php:1150 -msgid "" -"The dir of custom logos is in your www Console in 'images/custom_logo'. You can " -"upload more files (ONLY JPEG AND PNG) in upload tool in console." -msgstr "" -"カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にあります。 コ" -"ンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップロードできま" -"す。" - -#: ../../godmode/setup/setup_visuals.php:1287 -msgid "Custom values post process" -msgstr "保存倍率のカスタム値" - -#: ../../godmode/setup/setup_visuals.php:1308 ../../godmode/setup/setup_visuals.php:1376 -msgid "Delete custom values" -msgstr "カスタム値の削除" - -#: ../../godmode/setup/setup_visuals.php:1340 -msgid "Interval values" -msgstr "間隔値" - -#: ../../godmode/setup/setup_visuals.php:1368 -msgid "Module units" -msgstr "モジュール単位" - -#: ../../godmode/setup/setup_visuals.php:1484 -msgid "Behaviour configuration" -msgstr "動作設定" - -#: ../../godmode/setup/setup_visuals.php:1489 -msgid "GIS configuration" -msgstr "GIS設定" - -#: ../../godmode/setup/setup_visuals.php:1494 -msgid "Style configuration" -msgstr "スタイル設定" - -#: ../../godmode/setup/setup_visuals.php:1499 -msgid "Charts configuration" -msgstr "グラフ設定" - -#: ../../godmode/setup/setup_visuals.php:1504 -msgid "Font and Text configuration" -msgstr "フォントおよびテキスト設定" - -#: ../../godmode/setup/setup_visuals.php:1509 -msgid "Visual consoles configuration" -msgstr "ビジュアルコンソール設定" - -#: ../../godmode/setup/setup_visuals.php:1514 -msgid "Reports configuration " -msgstr "レポート設定 " - -#: ../../godmode/setup/setup_visuals.php:1519 -msgid "Services configuration" -msgstr "サービス設定" - -#: ../../godmode/setup/setup_visuals.php:1524 -msgid "Other configuration" -msgstr "その他設定" - -#: ../../godmode/setup/setup_visuals.php:1801 -msgid "Mobile console logo preview" -msgstr "モバイルコンソールロゴプレビュー" - -#: ../../godmode/setup/setup_visuals.php:1836 -msgid "Gis icons preview" -msgstr "GISアイコンのプレビュー" - -#: ../../godmode/setup/setup_visuals.php:1902 -msgid "Status set preview" -msgstr "状態表示プレビュー" - -#: ../../godmode/setup/os.php:190 -msgid "List OS" -msgstr "OS 一覧" - -#: ../../godmode/setup/os.php:202 -msgid "Builder OS" -msgstr "OS 設定" - -#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229 -#: ../../godmode/menu.php:369 -msgid "Edit OS" -msgstr "OS の編集" - -#: ../../godmode/setup/os.php:211 -msgid "List of OS" -msgstr "OS 一覧" - -#: ../../godmode/setup/os.php:242 -msgid "Fail creating OS" -msgstr "OS の作成に失敗しました" - -#: ../../godmode/setup/os.php:250 -msgid "Error updating OS" -msgstr "OS の更新に失敗しました" - -#: ../../godmode/setup/os.php:254 -msgid "There are agents with this OS." -msgstr "この OS のエージェントがあります。" - -#: ../../godmode/setup/os.php:258 -msgid "Success deleting" -msgstr "削除しました" - -#: ../../godmode/setup/os.php:262 -msgid "Error deleting" -msgstr "削除に失敗しました" - -#: ../../godmode/setup/news.php:29 -msgid "Site news management" -msgstr "サイトニュース管理" - -#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92 -msgid "Name error" -msgstr "名前が不正です。" - -#: ../../godmode/setup/news.php:191 -msgid "Modal screen" -msgstr "別ウインドウ" - -#: ../../godmode/setup/news.php:194 -msgid "Expire" -msgstr "有効期限" - -#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250 -msgid "Expiration" -msgstr "有効期限" - -#: ../../godmode/setup/news.php:241 -msgid "There are no defined news" -msgstr "定義済のニュースがありません" - -#: ../../godmode/setup/news.php:268 -msgid "Modal" -msgstr "別ウインドウ" - -#: ../../godmode/setup/news.php:270 -msgid "Board" -msgstr "ボード" - -#: ../../godmode/setup/news.php:281 -msgid "Expired" -msgstr "期限切れ" - -#: ../../godmode/setup/setup_auth.php:207 -msgid "Enable secondary LDAP" -msgstr "セカンダリ LDAP の有効化" - -#: ../../godmode/setup/setup_auth.php:278 -msgid "Secondary Base DN" -msgstr "セカンダリ Base DN" - -#: ../../godmode/setup/setup_auth.php:291 -msgid "Secondary Login attribute" -msgstr "セカンダリログイン属性" - -#: ../../godmode/setup/setup_auth.php:368 -msgid "Force 2FA for all users is enabled" -msgstr "全ユーザに二段階認証を強制する" - -#: ../../godmode/setup/setup_auth.php:389 -msgid "Session timeout (mins)" -msgstr "セッションタイムアウト(分)" - -#: ../../godmode/setup/setup_auth.php:432 -#, php-format -msgid "Local %s" -msgstr "ローカル %s" - -#: ../../godmode/setup/setup_auth.php:433 -msgid "ldap" -msgstr "LDAP" - -#: ../../godmode/setup/license.php:51 -msgid "License management" -msgstr "ライセンス管理" - -#: ../../godmode/setup/license.php:99 -msgid "Error while connecting to licence server." -msgstr "ライセンスサーバへの接続エラー" - -#: ../../godmode/setup/license.php:100 -msgid "Invalid response while validating license." -msgstr "ライセンスの検証に失敗しました。" - -#: ../../godmode/setup/license.php:121 -msgid "Licence" -msgstr "ライセンス" - -#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139 -#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145 -msgid "agents" -msgstr "エージェント" - -#: ../../godmode/setup/license.php:150 -msgid "NMS" -msgstr "NMS" - -#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182 -msgid "Request new license" -msgstr "新規ライセンス要求" - -#: ../../godmode/setup/license.php:186 -#, php-format -msgid "To get your %s Enterprise License:" -msgstr "%s Enterprise ライセンスの取得:" - -#: ../../godmode/setup/license.php:189 -#, php-format -msgid "Go to %s" -msgstr "%s へ移動" - -#: ../../godmode/setup/license.php:192 -msgid "Enter the auth key and the following request key:" -msgstr "auth key と次の request key を入力してください:" - -#: ../../godmode/setup/license.php:198 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。" - -#: ../../godmode/setup/license.php:201 -msgid "Click on Generate." -msgstr "
    生成 をクリックします。" - -#: ../../godmode/setup/license.php:204 -msgid "" -"Click here, enter the " -"generated license key and click on Validate." -msgstr "" -"ここをクリックし、生成された" -"ライセンスキーを入力し有効化をクリックします。" - -#: ../../godmode/setup/setup_general.php:145 -msgid "Enforce https Information" -msgstr "https の利用" - -#: ../../godmode/setup/setup_general.php:146 -msgid "If SSL is not properly configured you will lose access to " -msgstr "SSL が正しく設定されていないと、こちらへのアクセスができなくなります: " - -#: ../../godmode/setup/setup_general.php:146 ../../godmode/setup/setup_general.php:340 -msgid " Console" -msgstr " コンソール" - -#: ../../godmode/setup/setup_general.php:160 -msgid "Use cert of SSL" -msgstr "SSL証明書の利用" - -#: ../../godmode/setup/setup_general.php:173 -msgid "Path of SSL Cert." -msgstr "SSL証明書のパス" - -#: ../../godmode/setup/setup_general.php:338 -msgid "Enforce public URL usage information" -msgstr "公開 URL 利用に関する情報" - -#: ../../godmode/setup/setup_general.php:340 -msgid "If public URL is not properly configured you will lose access to " -msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: " - -#: ../../godmode/setup/setup_general.php:378 -msgid "Change remote config encoding" -msgstr "リモートコンフィグのエンコーディング自動調整" - -#: ../../godmode/setup/setup_general.php:407 -msgid "Full mode" -msgstr "フルモード" - -#: ../../godmode/setup/setup_general.php:409 -msgid "Expert" -msgstr "上級者" - -#: ../../godmode/setup/setup_general.php:433 -msgid "Limit for bulk operations" -msgstr "一括操作制限" - -#: ../../godmode/setup/setup_general.php:443 -msgid "Include agents manually disabled" -msgstr "手動で無効化したエージェントを含める" - -#: ../../godmode/setup/setup_general.php:451 -msgid "Set alias as name by default in agent creation" -msgstr "エージェント作成でデフォルトでエイリアスを名前にする" - -#: ../../godmode/setup/setup_general.php:468 ../../godmode/setup/setup_general.php:479 -msgid "Log location" -msgstr "ログの場所" - -#: ../../godmode/setup/setup_general.php:489 -msgid "Module custom ID readonly" -msgstr "モジュールカスタム ID を読み出し専用にする" - -#: ../../godmode/setup/setup_general.php:490 -msgid "Useful for integrations" -msgstr "統合に便利です" - -#: ../../godmode/setup/setup_general.php:503 -msgid "General options" -msgstr "全般オプション" - -#: ../../godmode/setup/setup_general.php:522 -msgid "" -"Please notice that some providers like Gmail or Office365 need to setup/enable " -"manually external connections using SMTP and you need to use STARTTLS on port 587.\n" -"\n" -" If you have manual settings in your pandora_server.conf, please note these " -"settings will ignore this console setup." -msgstr "" -"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有効化す" -"る必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してください。" - -#: ../../godmode/setup/setup_general.php:528 -msgid "From address" -msgstr "発信元アドレス" - -#: ../../godmode/setup/setup_general.php:548 -msgid "SMTP Server" -msgstr "SMTP サーバ" - -#: ../../godmode/setup/setup_general.php:558 -msgid "SMTP Port" -msgstr "SMTP ポート" - -#: ../../godmode/setup/setup_general.php:608 -msgid "Email test" -msgstr "Email テスト" - -#: ../../godmode/setup/setup_general.php:670 -msgid "Check mail configuration" -msgstr "メール設定確認" - -#: ../../godmode/setup/gis.php:68 -msgid "Map connection name" -msgstr "GIS 利用マップ名" - -#: ../../godmode/setup/gis.php:86 -msgid "Do you wan delete this connection?" -msgstr "このマップ利用設定を削除しますか。" - -#: ../../godmode/setup/performance.php:181 -msgid "Pandora_db running in active database." -msgstr "アクティブデータベースで pandora_db が動作しています。" - -#: ../../godmode/setup/performance.php:182 ../../godmode/setup/performance.php:238 -msgid "Executed:" -msgstr "実行済:" - -#: ../../godmode/setup/performance.php:237 -msgid "Pandora_db running in historical database." -msgstr "ヒストリデータベースで pandora_db が動作しています。" - -#: ../../godmode/setup/performance.php:245 -msgid "not executed" -msgstr "未実行" - -#: ../../godmode/setup/performance.php:341 -msgid "Max. days before delete autodisabled agents" -msgstr "自動無効化エージェントを削除せず保持する日数" - -#: ../../godmode/setup/performance.php:508 -msgid "Item limit for realtime reports" -msgstr "リアルタイムレポートのアイテム制限" - -#: ../../godmode/setup/performance.php:531 -msgid "Last day" -msgstr "昨日" - -#: ../../godmode/setup/performance.php:533 -msgid "10 days" -msgstr "10日" - -#: ../../godmode/setup/performance.php:535 -msgid "2 weeks" -msgstr "2週間" - -#: ../../godmode/setup/performance.php:582 -msgid "Big Operation Step to purge old data" -msgstr "古いデータ削除のための大きい処理の分割数" - -#: ../../godmode/setup/performance.php:632 -msgid "SNMP walk binary" -msgstr "snmpwalk バイナリ" - -#: ../../godmode/setup/performance.php:643 -msgid "" -"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead (by " -"default snmpwalk, slower)." -msgstr "" -"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されます。(デ" -"フォルトで snmpwalk で遅くなります)" - -#: ../../godmode/setup/performance.php:646 -msgid "SNMP walk binary (fallback)" -msgstr "snmpwalk バイナリ (フォールバック)" - -#: ../../godmode/setup/performance.php:689 -msgid "Database maintenance options" -msgstr "データベースメンテナンスオプション" - -#: ../../godmode/setup/performance.php:695 -msgid "Historical database maintenance options" -msgstr "ヒストリデータベースメンテナンスオプション" - -#: ../../godmode/setup/setup_ehorus.php:93 -msgid "API Hostname" -msgstr "API ホスト名" - -#: ../../godmode/setup/setup_ehorus.php:99 -msgid "API Port" -msgstr "API ポート" - -#: ../../godmode/setup/setup_ehorus.php:139 -msgid "Remote Management System" -msgstr "リモート管理システム" - -#: ../../godmode/setup/setup_ehorus.php:147 -msgid "Custom field eHorusID created" -msgstr "カスタムフィールド eHorusID を作成しました" - -#: ../../godmode/setup/setup_ehorus.php:147 -msgid "Error creating custom field" -msgstr "カスタムフィールド作成エラー" - -#: ../../godmode/setup/setup_ehorus.php:151 -msgid "eHorus has his own agent identifiers" -msgstr "eHorus には独自のエージェント識別があります" - -#: ../../godmode/setup/setup_ehorus.php:152 -msgid "To store them, it will be necessary to use an agent custom field" -msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります" - -#: ../../godmode/setup/setup_ehorus.php:153 -msgid "Possibly the eHorus id will have to be filled in by hand for every agent" -msgstr "eHorus ID は、エージェントごとに設定する必要があります" - -#: ../../godmode/setup/setup_ehorus.php:158 -msgid "The custom field does not exists already" -msgstr "カスタムフィールドが存在しません" - -#: ../../godmode/setup/setup_ehorus.php:172 -msgid "eHorus API" -msgstr "eHorus API" - -#: ../../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/links.php:28 -msgid "Link management" -msgstr "リンク管理" - -#: ../../godmode/servers/plugin.php:73 -msgid "Network Components" -msgstr "ネットワークコンポーネント" - -#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617 -#: ../../godmode/servers/plugin_registration.php:59 -msgid "To manage plugin you must activate centralized management" -msgstr "プラグインを管理するには、中央管理を有効化する必要があります。" - -#: ../../godmode/servers/plugin.php:303 -msgid "Plugin update" -msgstr "プラグインの更新" - -#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 -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:345 -msgid "Plugin type" -msgstr "プラグインタイプ" - -#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845 -#: ../../godmode/servers/modificar_server.php:40 -msgid "Standard" -msgstr "標準" - -#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 -msgid "Nagios" -msgstr "Nagios" - -#: ../../godmode/servers/plugin.php:352 -msgid "Max. timeout" -msgstr "最大タイムアウト" - -#: ../../godmode/servers/plugin.php:352 -msgid "" -"This value only will be applied if is minor than the server general configuration " -"plugin timeout" -msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。" - -#: ../../godmode/servers/plugin.php:352 -msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "タイムアウトを 0 に設定した場合、plugin_timeout の値が利用されます。" - -#: ../../godmode/servers/plugin.php:401 -msgid "Plugin command" -msgstr "プラグインコマンド" - -#: ../../godmode/servers/plugin.php:401 -msgid "Specify interpreter and plugin path. The server needs permissions to run it." -msgstr "" -"インタプリタとプラグインのパスを指定します。サーバでそれを実行する権限が必要です。" - -#: ../../godmode/servers/plugin.php:413 -msgid "Plug-in parameters" -msgstr "プラグインパラメータ" - -#: ../../godmode/servers/plugin.php:422 ../../godmode/alerts/alert_view.php:527 -#: ../../godmode/alerts/alert_view.php:654 -#: ../../godmode/alerts/configure_alert_action.php:310 -msgid "Command preview" -msgstr "実行されるコマンドのプレビュー" - -#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 -msgid "Parameters macros" -msgstr "パラメータマクロ" - -#: ../../godmode/servers/plugin.php:623 -#, php-format -msgid "Plug-ins registered on %s" -msgstr "%s に登録されているプラグイン" - -#: ../../godmode/servers/plugin.php:645 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "Windows に対応したプラグインを作成する必要があります" - -#: ../../godmode/servers/plugin.php:711 -msgid "Problem updating plugin" -msgstr "プラグインの更新に失敗しました。" - -#: ../../godmode/servers/plugin.php:713 -msgid "Plugin updated successfully" -msgstr "プラグインを更新しました。" - -#: ../../godmode/servers/plugin.php:771 -msgid "Problem creating plugin" -msgstr "プラグインの作成に失敗しました。" - -#: ../../godmode/servers/plugin.php:773 -msgid "Plugin created successfully" -msgstr "プラグインを作成しました。" - -#: ../../godmode/servers/plugin.php:785 -msgid "Problem deleting plugin" -msgstr "プラグインの削除に失敗しました。" - -#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 -msgid "Plugin deleted successfully" -msgstr "プラグインを削除しました。" - -#: ../../godmode/servers/plugin.php:884 -msgid "All the modules that are using this plugin will be deleted" -msgstr "このプラグインを利用しているすべてのモジュールが削除されます" - -#: ../../godmode/servers/plugin.php:901 -msgid "There are no plugins in the system" -msgstr "プラグインがありません。" - -#: ../../godmode/servers/plugin.php:915 -#, php-format -msgid "List of modules and components created by \"%s\" " -msgstr "\"%s\" にて作成されたモジュールおよびコンポーネントの一覧 " - -#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 -msgid "Some modules or components are using the plugin" -msgstr "いくつかのモジュールまたはコンポーネントがプラグインを利用しています" - -#: ../../godmode/servers/plugin.php:1022 -msgid "" -"The modules or components should be updated manually or using the bulk operations for " -"plugins after this change" -msgstr "" -"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作を使う必" -"要があります。" - -#: ../../godmode/servers/plugin.php:1024 -msgid "Are you sure you want to perform this action?" -msgstr "この処理を実行してもよろしいですか。" - -#: ../../godmode/servers/plugin.php:1038 -msgid "Are you sure you want to unlock this item?" -msgstr "このアイテムをロック解除してもよろしいですか。" - -#: ../../godmode/servers/plugin.php:1058 -msgid "" -"The plugin command cannot be updated because some modules or components are using the " -"plugin." -msgstr "" -"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインコマ" -"ンドを更新できません。" - -#: ../../godmode/servers/plugin.php:1064 -msgid "" -"The plugin macros cannot be updated because some modules or components are using the " -"plugin" -msgstr "" -"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインマク" -"ロは更新できません。" - -#: ../../godmode/servers/modificar_server.php:34 -msgid "Update Server" -msgstr "サーバ情報の更新" - -#: ../../godmode/servers/modificar_server.php:77 -msgid "Exec Server" -msgstr "実行サーバ" - -#: ../../godmode/servers/modificar_server.php:85 -msgid "Leave blank to use SSH default port (22)" -msgstr "SSH デフォルトポート(22)を使うには空のままにします" - -#: ../../godmode/servers/modificar_server.php:90 -msgid "Check Exec Server" -msgstr "実行サーバ確認" - -#: ../../godmode/servers/modificar_server.php:106 -msgid "Credential boxes" -msgstr "認証情報ボックス" - -#: ../../godmode/servers/modificar_server.php:130 -msgid "Standard editor" -msgstr "標準エディタ" - -#: ../../godmode/servers/modificar_server.php:134 -msgid "Advanced editor" -msgstr "高度なエディタ" - -#: ../../godmode/servers/modificar_server.php:141 -msgid "Remote Configuration" -msgstr "リモート設定" - -#: ../../godmode/servers/modificar_server.php:150 -#, php-format -msgid "%s servers" -msgstr "%s サーバ" - -#: ../../godmode/servers/modificar_server.php:159 -#: ../../godmode/servers/modificar_server.php:170 -msgid "Successfully action" -msgstr "アクションに成功しました。" - -#: ../../godmode/servers/modificar_server.php:201 -msgid "Server updated successfully" -msgstr "サーバを更新しました。" - -#: ../../godmode/servers/modificar_server.php:203 -msgid "There was a problem updating the server" -msgstr "サーバの更新に失敗しました。" - -#: ../../godmode/servers/modificar_server.php:222 -#: ../../godmode/agentes/configurar_agente.php:867 -msgid "Conf file deleted successfully" -msgstr "conf ファイルを削除しました。" - -#: ../../godmode/servers/modificar_server.php:223 -#: ../../godmode/agentes/configurar_agente.php:868 -msgid "Could not delete conf file" -msgstr "conf ファイルの削除に失敗しました。" - -#: ../../godmode/servers/plugin_registration.php:65 -msgid "PLUGIN REGISTRATION" -msgstr "プラグイン登録" - -#: ../../godmode/servers/plugin_registration.php:76 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature from " -"feature from %s." -msgstr "" -"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理してく" -"ださい。" - -#: ../../godmode/servers/plugin_registration.php:95 -msgid "Plugin Registration" -msgstr "プラグイン登録" - -#: ../../godmode/servers/plugin_registration.php:103 -msgid "You can get more plugins in our" -msgstr "追加プラグインは次から入手できます:" - -#: ../../godmode/servers/plugin_registration.php:105 -msgid "Public Resource Library" -msgstr "公開リソースライブラリ" - -#: ../../godmode/servers/plugin_registration.php:133 -msgid "Failed to create temporary directory" -msgstr "一時ディレクトリの作成に失敗しました" - -#: ../../godmode/servers/plugin_registration.php:152 -msgid "Cannot load INI file" -msgstr "INI ファイルをロードできません。" - -#: ../../godmode/servers/plugin_registration.php:177 -msgid "Plugin exec not found. Aborting!" -msgstr "実行可能なプラグインがありません。中止します。" - -#: ../../godmode/servers/plugin_registration.php:188 -msgid "Plugin already registered. Aborting!" -msgstr "プラグインは既に登録されています。中止します。" - -#: ../../godmode/servers/plugin_registration.php:355 -msgid "Plug-in Remote Registered unsuccessfull" -msgstr "プラグインのリモート登録に失敗しました" - -#: ../../godmode/servers/plugin_registration.php:358 -msgid "Please check the syntax of file \"plugin_definition.ini\"" -msgstr "\"plugin_definition.ini\" の書式を確認してください。" - -#: ../../godmode/servers/plugin_registration.php:498 -msgid "Module plugin registered" -msgstr "モジュールプラグインを登録しました。" - -#: ../../godmode/servers/plugin_registration.php:503 -msgid "Registered successfully" -msgstr "登録しました。" - -#: ../../godmode/servers/plugin_registration.php:516 -msgid "Unable to uncompress uploaded file" -msgstr "アップロードされたファイルを展開できません" - -#: ../../godmode/servers/plugin_registration.php:534 -#, php-format -msgid "Cannot move uploaded file to %s." -msgstr "アップロードされたファイルを %s へ移動できません。" - -#: ../../godmode/servers/servers.build_table.php:118 -msgid "Server has crashed." -msgstr "サーバがクラッシュしました。" - -#: ../../godmode/servers/servers.build_table.php:126 -msgid "Server is stopped." -msgstr "サーバが停止しました。" - -#: ../../godmode/servers/servers.build_table.php:138 -msgid "Exec server enabled" -msgstr "Exec サーバが有効化されています" - -#: ../../godmode/servers/servers.build_table.php:196 -msgid "Manage Discovery tasks" -msgstr "自動検出タスク管理" - -#: ../../godmode/servers/servers.build_table.php:211 -msgid "Reset module status and fired alert counts" -msgstr "モジュールの状態とアラート発報回数のリセット" - -#: ../../godmode/servers/servers.build_table.php:222 -msgid "Claim back SNMP modules" -msgstr "SNMP モジュールに戻す" - -#: ../../godmode/servers/discovery.php:182 -msgid "You must create a task first" -msgstr "タスクを最初に作成する必要があります。" - -#: ../../godmode/um_client/index.php:96 -#, php-format -msgid "" -"You cannot use update manager %s. You are exceding monitoring limits by %s elements. " -"Please update your license or disable enterprise section by moving enterprise " -"directory to another location and try again." -msgstr "" -"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライセンスを" -"更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の機能を無効にし" -"て、再試行してください。" - -#: ../../godmode/um_client/index.php:107 -#, php-format -msgid "" -"You cannot use update manager %s. This license has expired %d days ago. Please update " -"your license or disable enterprise section by moving enterprise directory to another " -"location and try again." -msgstr "" -"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れになり" -"ました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動して " -"Enterprise 版の機能を無効にして、再試行してください。" - -#: ../../godmode/um_client/index.php:120 -#, php-format -msgid "" -"You cannot use update manager %s. This license is a trial license to test all %s " -"features. Please update your license to unlock all %s features." -msgstr "" -"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能をテス" -"トするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能のロックを解除" -"してください。" - -#: ../../godmode/um_client/index.php:215 -#, php-format -msgid "Master server version %s does not match console version %s." -msgstr "マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。" - -#: ../../godmode/um_client/index.php:227 -#, php-format -msgid "" -"'%s' recommended value is %s or greater. Please, change it on your PHP configuration " -"file (php.ini) or contact with administrator" -msgstr "" -"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連絡して" -"ください 。" - -#: ../../godmode/um_client/index.php:316 -msgid "Update manager online requires registration." -msgstr "オンラインアップデートマネージャは登録が必要です。" - -#: ../../godmode/um_client/index.php:321 -msgid "" -"Applying offline patches may make your console unusable, we recommend to completely " -"backup your files before applying any patch." -msgstr "" -"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。パッチを適" -"用する前に、ファイルを完全にバックアップすることをお勧めします。" - -#: ../../godmode/update_manager/update_manager.php:49 -msgid "Journal" -msgstr "ジャーナル" - -#: ../../godmode/update_manager/update_manager.php:56 -msgid "Offline update manager" -msgstr "オフラインアップデートマネージャ" - -#: ../../godmode/update_manager/update_manager.php:63 -msgid "Online update manager" -msgstr "オンラインアップデートマネージャ" - -#: ../../godmode/update_manager/update_manager.php:68 -msgid "Update manager » Journal" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:72 -msgid "Update manager » Setup" -msgstr "アップデートマネージャ > 設定" - -#: ../../godmode/update_manager/update_manager.php:76 -msgid "Update manager » Offline" -msgstr "アップデートマネージャ > オフライン" - -#: ../../godmode/update_manager/update_manager.php:81 -msgid "Update manager » Online" -msgstr "アップデートマネージャ > オンライン" - -#: ../../godmode/update_manager/update_manager.setup.php:271 -msgid "URL update manager:" -msgstr "アップデートマネージャ URL:" - -#: ../../godmode/update_manager/update_manager.setup.php:275 -msgid "URL update manager" -msgstr "アップデートマネージャ URL" - -#: ../../godmode/update_manager/update_manager.setup.php:281 -msgid "Use secured update manager:" -msgstr "安全なアップデートマネージャーを使用します:" - -#: ../../godmode/update_manager/update_manager.setup.php:290 -msgid "Proxy server:" -msgstr "プロキシサーバ:" - -#: ../../godmode/update_manager/update_manager.setup.php:294 -msgid "Proxy server" -msgstr "プロキシサーバ" - -#: ../../godmode/update_manager/update_manager.setup.php:300 -msgid "Proxy port:" -msgstr "プロキシポート:" - -#: ../../godmode/update_manager/update_manager.setup.php:304 -msgid "Proxy port" -msgstr "プロキシのポート番号" - -#: ../../godmode/update_manager/update_manager.setup.php:310 -msgid "Proxy user:" -msgstr "プロキシユーザ:" - -#: ../../godmode/update_manager/update_manager.setup.php:314 -msgid "Proxy user" -msgstr "プロキシのユーザ" - -#: ../../godmode/update_manager/update_manager.setup.php:320 -msgid "Proxy password:" -msgstr "プロキシパスワード:" - -#: ../../godmode/update_manager/update_manager.setup.php:324 -msgid "Proxy password" -msgstr "プロキシのパスワード" - -#: ../../godmode/update_manager/update_manager.setup.php:330 -msgid "Allow no-consecutive patches:" -msgstr "不連続パッチを許可: " - -#: ../../godmode/update_manager/update_manager.setup.php:339 -msgid "Limit to LTS updates:" -msgstr "LTS アップデートに限定: " - -#: ../../godmode/update_manager/update_manager.setup.php:349 -msgid "Registration ID:" -msgstr "登録ID:" - -#: ../../godmode/update_manager/update_manager.setup.php:353 -msgid "Cancel registration:" -msgstr "登録のキャンセル:" - -#: ../../godmode/update_manager/update_manager.setup.php:365 -msgid "Unregister" -msgstr "登録解除" - -#: ../../godmode/update_manager/update_manager.setup.php:370 -msgid "Pandora FMS community reminder" -msgstr "Pandora FMS コミュニティリマインダ" - -#: ../../godmode/update_manager/update_manager.setup.php:370 -msgid "" -"Every 8 days, a message is displayed to admin users to remember to register this " -"Pandora instance" -msgstr "" -"8日ごとに、この Pandora インスタンスを登録するリマインダメッセージを admin ユーザに表" -"示します。" - -#: ../../godmode/update_manager/update_manager.history.php:42 -msgid "Origin" -msgstr "オリジナル" - -#: ../../godmode/modules/module_list.php:29 -msgid "Defined modules" -msgstr "定義済みモジュール" - -#: ../../godmode/modules/module_list.php:51 -msgid "Problem modifying module" -msgstr "モジュールの更新に失敗しました。" - -#: ../../godmode/modules/module_list.php:53 -msgid "Module updated successfully" -msgstr "モジュールを更新しました。" - -#: ../../godmode/modules/manage_network_components_form.php:355 -msgid "Update Network Component" -msgstr "ネットワークコンポーネント更新" - -#: ../../godmode/modules/manage_network_components_form.php:357 -msgid "Create Network Component" -msgstr "ネットワークコンポーネント作成" - -#: ../../godmode/modules/manage_network_components.php:290 -msgid "Remote component management" -msgstr "リモートコンポーネント管理" - -#: ../../godmode/modules/manage_network_components.php:313 -#, php-format -msgid "" -"This node is configured with centralized mode. All remote components are read only. " -"Go to %s to manage them." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは読み取" -"り専用です。 それらを管理するには、%s に移動します。" - -#: ../../godmode/modules/manage_network_components.php:424 -msgid "Could not be created because the component exists" -msgstr "コンポーネントが存在するため、作成できませんでした" - -#: ../../godmode/modules/manage_network_components.php:660 -msgid "Search by name, description, tcp send or tcp rcv, list matches." -msgstr "名前、説明、tcp送受信による検索にマッチした一覧を表示" - -#: ../../godmode/modules/manage_network_components.php:753 -msgid "Max/Min" -msgstr "最大/最小" - -#: ../../godmode/modules/manage_network_components.php:837 -msgid "Wizard module" -msgstr "ウィザードモジュール" - -#: ../../godmode/modules/manage_network_components.php:910 -msgid "There are no defined network components" -msgstr "定義済のネットワークコンポーネントがありません" - -#: ../../godmode/modules/manage_network_components.php:921 -msgid "Create a new network component" -msgstr "ネットワークコンポーネントを新規作成する。" - -#: ../../godmode/modules/manage_network_components.php:922 -msgid "Create a new plugin component" -msgstr "プラグインコンポーネントを新規作成する。" - -#: ../../godmode/modules/manage_network_components.php:923 -msgid "Create a new WMI component" -msgstr "WMIコンポーネントを新規作成する。" - -#: ../../godmode/modules/manage_network_components.php:924 -msgid "Create a new wizard component" -msgstr "ウィザードコンポーネントを新規作成する。" - -#: ../../godmode/modules/manage_network_templates.php:84 -msgid "Error deleting template" -msgstr "テンプレートの削除に失敗しました。" - -#: ../../godmode/modules/manage_network_templates.php:124 -msgid "This template does not exist" -msgstr "このテンプレートは存在しません" - -#: ../../godmode/modules/manage_network_templates.php:304 -msgid "There are no defined network profiles" -msgstr "ネットワークプロファイルが定義されていません。" - -#: ../../godmode/modules/manage_network_templates_form.php:59 -msgid "Successfully deleted module from profile" -msgstr "プロファイルからモジュールを削除しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:60 -msgid "Error deleting module from profile" -msgstr "プロファイルからのモジュール削除に失敗しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:79 -msgid "Successfully added module to profile" -msgstr "プロファイルにモジュールを追加しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:80 -msgid "Error adding module to profile" -msgstr "プロファイルへのモジュール追加に失敗しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:113 -msgid "Successfully updated network profile" -msgstr "ネットワークプロファイルを更新しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:114 -msgid "Error updating network profile" -msgstr "ネットワークプロファイルの更新に失敗しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:138 -msgid "Successfully added network profile" -msgstr "ネットワークプロファイルを追加しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:139 -msgid "Error adding network profile" -msgstr "ネットワークプロファイルの追加に失敗しました。" - -#: ../../godmode/modules/manage_network_templates_form.php:145 -msgid "Cannot create a template without name" -msgstr "名前無しではテンプレートを作成できません" - -#: ../../godmode/modules/manage_network_templates_form.php:219 -msgid "No modules for this profile" -msgstr "このプロファイルにはモジュールがありません。" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:92 -msgid "Add a macro oid" -msgstr "マクロ OID の追加" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:110 -msgid "Remove last macro oid" -msgstr "最後のマクロ OID の削除" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:134 -msgid "Numeric" -msgstr "数値" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:136 -msgid "Boolean" -msgstr "ブーリアン" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:137 -msgid "Alphanumeric" -msgstr "英数字" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:257 -msgid "Add by default" -msgstr "デフォルトで追加" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:285 -msgid "Module protocol" -msgstr "モジュールプロトコル" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:301 -msgid "Protocol" -msgstr "プロトコル" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:314 -#: ../../godmode/modules/manage_network_components_form_network.php:191 -msgid "Name OID" -msgstr "OID 名" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:317 -msgid "Manufacturer ID" -msgstr "製造者ID" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:349 -msgid "Component Group" -msgstr "コンポーネントグループ" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:367 -msgid "Module unit" -msgstr "モジュール単位" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:457 -msgid "Scan Type" -msgstr "スキャンタイプ" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:471 -#: ../../godmode/agentes/planned_downtime.list.php:321 -msgid "Execution type" -msgstr "実行タイプ" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:491 -msgid "Value OID" -msgstr "OID 値" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:508 -msgid "Macros OID" -msgstr "マクロ OID" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:516 -#: ../../godmode/modules/manage_network_components_form_wizard.php:701 -msgid "Value operation" -msgstr "値の操作" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:533 -#: ../../godmode/modules/manage_network_components_form_wizard.php:718 -msgid "Satellite execution" -msgstr "サテライト実行" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:550 -#: ../../godmode/modules/manage_network_components_form_wizard.php:735 -msgid "Server plugin" -msgstr "サーバプラグイン" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:588 -msgid "WMI class" -msgstr "WMI クラス" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:605 -msgid "Query key field" -msgstr "クエリキーフィールド" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:622 -msgid "Query extra fields" -msgstr "クエリ追加フィールド" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:630 -msgid "Query filters" -msgstr "クエリフィルタ" - -#: ../../godmode/modules/manage_network_components_form_wizard.php:673 -msgid "Field value" -msgstr "フィールド値" - -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Component group management" -msgstr "コンポーネントグループ管理" - -#: ../../godmode/modules/manage_nc_groups.php:293 -#, php-format -msgid "" -"This node is configured with centralized mode. Component groups are read only. Go to " -"%s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り専用で" -"す。管理は %s にて行います。" - -#: ../../godmode/modules/manage_nc_groups.php:311 -msgid "There are no defined component groups" -msgstr "定義済のコンポーネントグループがありません" - -#: ../../godmode/modules/manage_network_components_form_common.php:712 -#: ../../godmode/agentes/module_manager_editor_common.php:2000 -msgid "Please introduce a positive percentage value" -msgstr "正のパーセント値を設定してください" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:41 -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -msgid "Namespace" -msgstr "名前空間" - -#: ../../godmode/modules/manage_network_components_form_network.php:72 -msgid "SNMP Enterprise String" -msgstr "SNMP Enterprise 文字列" - -#: ../../godmode/modules/manage_nc_groups_form.php:54 -msgid "Update Group Component" -msgstr "グループコンポーネント更新" - -#: ../../godmode/modules/manage_nc_groups_form.php:56 -msgid "Create Group Component" -msgstr "グループコンポーネント作成" - -#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 -#: ../../godmode/category/edit_category.php:47 -#: ../../godmode/category/edit_category.php:61 -msgid "List categories" -msgstr "カテゴリ一覧" - -#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 -#: ../../godmode/category/edit_category.php:73 -#: ../../godmode/category/edit_category.php:75 -msgid "Categories configuration" -msgstr "カテゴリ設定" - -#: ../../godmode/category/category.php:108 -#, php-format -msgid "" -"This node is configured with centralized mode. All categories information is read " -"only. Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専用です。" -"管理するには %s に移動します。" - -#: ../../godmode/category/category.php:123 -msgid "Error deleting category" -msgstr "カテゴリの削除に失敗しました" - -#: ../../godmode/category/category.php:129 -msgid "Successfully deleted category" -msgstr "カテゴリを削除しました" - -#: ../../godmode/category/category.php:168 -msgid "Category name" -msgstr "カテゴリ名" - -#: ../../godmode/category/category.php:226 -msgid "No categories found" -msgstr "カテゴリがありません" - -#: ../../godmode/category/category.php:239 ../../godmode/category/edit_category.php:171 -msgid "Create category" -msgstr "カテゴリの作成" - -#: ../../godmode/category/edit_category.php:73 -msgid "Editor" -msgstr "編集" - -#: ../../godmode/category/edit_category.php:95 -msgid "Error updating category" -msgstr "カテゴリの更新に失敗しました" - -#: ../../godmode/category/edit_category.php:101 -msgid "Successfully updated category" -msgstr "カテゴリを更新しました" - -#: ../../godmode/category/edit_category.php:123 -msgid "Error creating category" -msgstr "カテゴリの作成に失敗しました" - -#: ../../godmode/category/edit_category.php:131 -msgid "Successfully created category" -msgstr "カテゴリを作成しました" - -#: ../../godmode/category/edit_category.php:163 -msgid "Update category" -msgstr "カテゴリ更新" - -#: ../../godmode/gis_maps/configure_gis_map.php:98 -msgid "View GIS" -msgstr "GIS 表示" - -#: ../../godmode/gis_maps/configure_gis_map.php:106 -msgid "GIS Maps builder" -msgstr "GIS マップビルダ" - -#: ../../godmode/gis_maps/configure_gis_map.php:196 -msgid "Map successfully created" -msgstr "マップを作成しました。" - -#: ../../godmode/gis_maps/configure_gis_map.php:197 -msgid "Map could not be created" -msgstr "マップを作成できませんでした。" - -#: ../../godmode/gis_maps/configure_gis_map.php:299 -msgid "Map successfully update" -msgstr "マップを更新しました。" - -#: ../../godmode/gis_maps/configure_gis_map.php:300 -msgid "Map could not be updated" -msgstr "マップを更新できませんでした" - -#: ../../godmode/gis_maps/configure_gis_map.php:353 -msgid "Do you want to use the default data from the connection?" -msgstr "利用マップのデフォルトデータを利用しますか。" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "The connection" -msgstr "利用マップ" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "just added previously." -msgstr "すでに追加されています。" - -#: ../../godmode/gis_maps/configure_gis_map.php:455 -msgid "Map Name" -msgstr "マップ名" - -#: ../../godmode/gis_maps/configure_gis_map.php:474 -msgid "Add Map connection" -msgstr "利用マップの追加" - -#: ../../godmode/gis_maps/configure_gis_map.php:523 -msgid "Default zoom" -msgstr "デフォルトの拡大率" - -#: ../../godmode/gis_maps/configure_gis_map.php:530 -msgid "Center Latitude" -msgstr "中心の緯度" - -#: ../../godmode/gis_maps/configure_gis_map.php:533 -msgid "Center Longitude" -msgstr "中心の経度" - -#: ../../godmode/gis_maps/configure_gis_map.php:536 -msgid "Center Altitude" -msgstr "中心の高度" - -#: ../../godmode/gis_maps/configure_gis_map.php:539 -msgid "Default Latitude" -msgstr "デフォルトの緯度" - -#: ../../godmode/gis_maps/configure_gis_map.php:542 -msgid "Default Longitude" -msgstr "デフォルトの経度" - -#: ../../godmode/gis_maps/configure_gis_map.php:545 -msgid "Default Altitude" -msgstr "デフォルトの高度" - -#: ../../godmode/gis_maps/configure_gis_map.php:561 -msgid "List of layers" -msgstr "レイヤ一覧" - -#: ../../godmode/gis_maps/configure_gis_map.php:562 -msgid "New layer" -msgstr "新規レイヤ" - -#: ../../godmode/gis_maps/configure_gis_map.php:568 -msgid "Layer name" -msgstr "レイヤ名" - -#: ../../godmode/gis_maps/configure_gis_map.php:570 -msgid "Visible" -msgstr "可視化" - -#: ../../godmode/gis_maps/configure_gis_map.php:574 -msgid "Show agents from group" -msgstr "表示するエージェントのグループ" - -#: ../../godmode/gis_maps/configure_gis_map.php:586 -msgid "Add agent" -msgstr "エージェント追加" - -#: ../../godmode/gis_maps/configure_gis_map.php:608 -msgid "List of Agents to be shown in the layer" -msgstr "レイヤ内に表示されるエージェント一覧" - -#: ../../godmode/gis_maps/configure_gis_map.php:639 -msgid "Use the data of this agent" -msgstr "このエージェントのデータを利用" - -#: ../../godmode/gis_maps/configure_gis_map.php:647 -msgid "List of groups to be shown in the layer" -msgstr "レイヤーに表示されるグループの一覧" - -#: ../../godmode/gis_maps/configure_gis_map.php:654 -msgid "Save Layer" -msgstr "レイヤの保存" - -#: ../../godmode/gis_maps/configure_gis_map.php:670 -#: ../../godmode/gis_maps/configure_gis_map.php:677 -msgid "Save map" -msgstr "マップの保存" - -#: ../../godmode/gis_maps/configure_gis_map.php:672 -msgid "Update map" -msgstr "マップの更新" - -#: ../../godmode/gis_maps/configure_gis_map.php:1060 -msgid "Using data from" -msgstr "次のデータを利用" - -#: ../../godmode/gis_maps/configure_gis_map.php:1218 -msgid "Empty layer names are not supported" -msgstr "空のレイヤ名には対応していません" - -#: ../../godmode/extensions.php:28 -msgid "Defined extensions" -msgstr "定義されている拡張" - -#: ../../godmode/extensions.php:33 -msgid "There are no extensions defined" -msgstr "「拡張」が定義されていません。" - -#: ../../godmode/extensions.php:141 -msgid "Godmode Function" -msgstr "システム管理機能" - -#: ../../godmode/extensions.php:142 -msgid "Godmode Menu" -msgstr "システム管理メニュー" - -#: ../../godmode/extensions.php:143 -msgid "Operation Menu" -msgstr "操作メニュー" - -#: ../../godmode/extensions.php:144 -msgid "Operation Function" -msgstr "操作機能" - -#: ../../godmode/extensions.php:145 -msgid "Login Function" -msgstr "ログイン機能" - -#: ../../godmode/extensions.php:146 -msgid "Agent operation tab" -msgstr "エージェント操作タブ" - -#: ../../godmode/extensions.php:147 -msgid "Agent godmode tab" -msgstr "エージェント管理タブ" - -#: ../../godmode/reporting/reporting_builder.main.php:146 -msgid "Only the group can view the report" -msgstr "指定のグループのみレポートを参照可能" - -#: ../../godmode/reporting/reporting_builder.main.php:147 -msgid "The next group can edit the report" -msgstr "グループがレポートを編集可能" - -#: ../../godmode/reporting/reporting_builder.main.php:148 -msgid "Only the user and admin user can edit the report" -msgstr "ユーザおよび管理者のみがレポートを編集可能" - -#: ../../godmode/reporting/reporting_builder.main.php:150 -msgid "Write Access" -msgstr "書き込みアクセス" - -#: ../../godmode/reporting/reporting_builder.main.php:152 -msgid "" -"For example, you want a report that the people of \"All\" groups can see but you want " -"to edit only for you or your group." -msgstr "" -"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分のグルー" -"プのみが編集できるようにしたい場合等に利用します。" - -#: ../../godmode/reporting/reporting_builder.main.php:193 -msgid "Non interactive report" -msgstr "非対話型レポート" - -#: ../../godmode/reporting/map_builder.php:318 -#: ../../godmode/reporting/map_builder.php:326 -msgid "Not copied. Error copying data" -msgstr "コピーできませんでした。データのコピーでエラーが発生しました。" - -#: ../../godmode/reporting/map_builder.php:368 -#: ../../godmode/reporting/visual_console_favorite.php:185 -msgid "Group Recursion" -msgstr "子グループを含む" - -#: ../../godmode/reporting/map_builder.php:384 -msgid "Map name" -msgstr "マップ名" - -#: ../../godmode/reporting/map_builder.php:386 -msgid "Items" -msgstr "アイテム" - -#: ../../godmode/reporting/visual_console_builder.php:211 -msgid "This file isn't image" -msgstr "このファイルは画像ではありません" - -#: ../../godmode/reporting/visual_console_builder.php:214 -msgid "This file isn't image." -msgstr "このファイルは画像ではありません。" - -#: ../../godmode/reporting/visual_console_builder.php:220 -#: ../../godmode/reporting/visual_console_builder.php:223 -msgid "File already are exists." -msgstr "ファイルが既に存在します。" - -#: ../../godmode/reporting/visual_console_builder.php:231 -#: ../../godmode/reporting/visual_console_builder.php:234 -msgid "The file have not image extension." -msgstr "画像ファイルの拡張子ではありません。" - -#: ../../godmode/reporting/visual_console_builder.php:246 -#: ../../godmode/reporting/visual_console_builder.php:249 -#: ../../godmode/reporting/visual_console_builder.php:259 -#: ../../godmode/reporting/visual_console_builder.php:265 -msgid "Problems with move file to target." -msgstr "対象へのファイルの移動で問題が発生しました。" - -#: ../../godmode/reporting/visual_console_builder.php:302 -msgid "Successfully update." -msgstr "更新しました。" - -#: ../../godmode/reporting/visual_console_builder.php:321 -msgid "Could not be update." -msgstr "更新に失敗しました。" - -#: ../../godmode/reporting/visual_console_builder.php:341 -msgid "Successfully created." -msgstr "作成しました。" - -#: ../../godmode/reporting/visual_console_builder.php:360 -msgid "Could not be created." -msgstr "作成に失敗しました。" - -#: ../../godmode/reporting/visual_console_builder.php:408 -msgid "Successfully multiple delete." -msgstr "複数削除をしました。" - -#: ../../godmode/reporting/visual_console_builder.php:409 -msgid "Unsuccessful multiple delete." -msgstr "複数削除失敗。" - -#: ../../godmode/reporting/visual_console_builder.php:529 -msgid "Successfully delete." -msgstr "削除しました。" - -#: ../../godmode/reporting/graphs.php:106 -msgid "Graphs containers" -msgstr "グラフコンテナ" - -#: ../../godmode/reporting/graphs.php:120 -msgid "List of custom graphs" -msgstr "カスタムグラフ一覧" - -#: ../../godmode/reporting/graphs.php:235 -#: ../../godmode/reporting/reporting_builder.php:779 -msgid "Free text for search: " -msgstr "文字列検索: " - -#: ../../godmode/reporting/graphs.php:236 -#: ../../godmode/reporting/reporting_builder.php:781 -msgid "Search by report name or description, list matches." -msgstr "レポート名または説明で検索したリスト。" - -#: ../../godmode/reporting/graphs.php:248 -#: ../../godmode/reporting/reporting_builder.php:807 -msgid "Show Option" -msgstr "オプション表示" - -#: ../../godmode/reporting/graphs.php:402 -msgid "Create graph" -msgstr "グラフ作成" - -#: ../../godmode/reporting/graph_container.php:134 -#: ../../godmode/reporting/create_container.php:196 -msgid "Create container" -msgstr "コンテナ作成" - -#: ../../godmode/reporting/reporting_builder.list_items.php:706 -#: ../../godmode/reporting/reporting_builder.list_items.php:710 -#: ../../godmode/reporting/graph_builder.graph_editor.php:284 -#: ../../godmode/reporting/graph_builder.graph_editor.php:288 -msgid "Sort items" -msgstr "アイテムの並び替え" - -#: ../../godmode/reporting/reporting_builder.list_items.php:713 -msgid "Sort selected items from position: " -msgstr "選択したアイテムを次の位置から並び替え: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:716 -msgid "Move before to" -msgstr "この前に移動:" - -#: ../../godmode/reporting/reporting_builder.list_items.php:717 -msgid "Move after to" -msgstr "この後ろに移動:" - -#: ../../godmode/reporting/reporting_builder.list_items.php:757 -#: ../../godmode/reporting/reporting_builder.list_items.php:761 -msgid "Delete items" -msgstr "アイテムの削除" - -#: ../../godmode/reporting/reporting_builder.list_items.php:764 -msgid "Delete selected items from position: " -msgstr "次の場所から選択したアイテムを削除する: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:767 -msgid "Delete above to" -msgstr "次の上を削除" - -#: ../../godmode/reporting/reporting_builder.list_items.php:768 -msgid "Delete below to" -msgstr "次の下を削除" - -#: ../../godmode/reporting/reporting_builder.list_items.php:824 -msgid "" -"Are you sure to sort the items into the report?\\n. This action change the sorting of " -"items into data base." -msgstr "" -"レポートのアイテムを並べ替えますか?\\n この操作は、データベースでのアイテムのソートを" -"変更します。" - -#: ../../godmode/reporting/reporting_builder.list_items.php:844 -#: ../../godmode/reporting/graph_builder.graph_editor.php:407 -msgid "Please select any item to order" -msgstr "並び替えるアイテムを選択してください" - -#: ../../godmode/reporting/reporting_builder.list_items.php:874 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "レポートのアイテムを削除しますがよろしいですか?\\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:901 -msgid "Please select any item to delete" -msgstr "削除するアイテムを選択してください" - -#: ../../godmode/reporting/graph_builder.php:336 -msgid "Graph builder" -msgstr "グラフビルダー" - -#: ../../godmode/reporting/graph_builder.php:378 -msgid "Graph stored successfully" -msgstr "グラフを作成しました。" - -#: ../../godmode/reporting/graph_builder.php:379 -msgid "There was a problem storing Graph" -msgstr "グラフの作成に失敗しました。" - -#: ../../godmode/reporting/graph_builder.php:386 -#: ../../godmode/agentes/configurar_agente.php:1938 -msgid "Module added successfully" -msgstr "モジュールを追加しました。" - -#: ../../godmode/reporting/graph_builder.php:387 -msgid "There was a problem adding Module" -msgstr "モジュール追加で問題が発生しました。" - -#: ../../godmode/reporting/graph_builder.php:394 -msgid "Update the graph" -msgstr "グラフを更新しました。" - -#: ../../godmode/reporting/graph_builder.php:395 -msgid "Bad update the graph" -msgstr "グラフ更新に失敗しました。" - -#: ../../godmode/reporting/graph_builder.php:402 -msgid "Graph deleted successfully" -msgstr "グラフを削除しました。" - -#: ../../godmode/reporting/graph_builder.php:403 -msgid "There was a problem deleting Graph" -msgstr "グラフの削除で問題が発生しました。" - -#: ../../godmode/reporting/visual_console_builder.data.php:94 -msgid "Create visual console" -msgstr "ビジュアルコンソールの作成" - -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this map name in " -"main menu" -msgstr "" -"最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに表示する" -"には、'[*] Map name' です。" - -#: ../../godmode/reporting/visual_console_builder.data.php:179 -msgid "Background image" -msgstr "背景画像" - -#: ../../godmode/reporting/visual_console_builder.data.php:211 -msgid "Layout size" -msgstr "レイアウトサイズ" - -#: ../../godmode/reporting/visual_console_builder.data.php:214 -msgid "Set custom size" -msgstr "カスタムサイズを設定" - -#: ../../godmode/reporting/visual_console_builder.data.php:220 -msgid "Get default image size" -msgstr "デフォルトのイメージサイズ取得" - -#: ../../godmode/reporting/visual_console_builder.data.php:222 -msgid "Favourite visual console" -msgstr "お気に入りのビジュアルコンソール" - -#: ../../godmode/reporting/visual_console_builder.data.php:225 -msgid "Auto adjust to screen in fullscreen" -msgstr "全画面時の画面自動調整" - -#: ../../godmode/reporting/create_container.php:155 -msgid "Container name is missing." -msgstr "コンテナ名がありません。" - -#: ../../godmode/reporting/create_container.php:205 -msgid "Container stored successfully" -msgstr "コンテナを保存しました" - -#: ../../godmode/reporting/create_container.php:205 -msgid "There was a problem storing container" -msgstr "コンテナの保存に問題が発生しました" - -#: ../../godmode/reporting/create_container.php:212 -msgid "Update the container" -msgstr "コンテナの更新" - -#: ../../godmode/reporting/create_container.php:212 -msgid "Bad update the container" -msgstr "コンテナの更新に失敗しました" - -#: ../../godmode/reporting/create_container.php:287 -msgid "Parent container" -msgstr "親コンテナ" - -#: ../../godmode/reporting/create_container.php:365 -#: ../../godmode/reporting/create_container.php:474 -#: ../../godmode/reporting/create_container.php:528 -msgid "" -"This is the interval or period of time with which the graph data will be obtained. " -"For example, a week means data from a week ago from now. " -msgstr "" -"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味します。 " - -#: ../../godmode/reporting/create_container.php:448 -#: ../../godmode/reporting/create_container.php:501 -#: ../../godmode/reporting/create_container.php:596 -msgid "Add item" -msgstr "アイテムの追加" - -#: ../../godmode/reporting/create_container.php:614 -msgid "There are no items in this container." -msgstr "このコンテナにはアイテムがありません。" - -#: ../../godmode/reporting/create_container.php:623 -msgid "Agent/Module" -msgstr "エージェント/モジュール" - -#: ../../godmode/reporting/create_container.php:626 -msgid "M.Group" -msgstr "モジュールグループ" - -#: ../../godmode/reporting/visual_console_favorite.php:223 -msgid "No favourite consoles defined" -msgstr "お気に入りコンソールが定義されていません" - -#: ../../godmode/reporting/visual_console_builder.elements.php:106 -msgid "Width x Height
    Max value" -msgstr "幅 x 高さ
    最大値" - -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -msgid "Map linked" -msgstr "リンク先マップ" - -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -msgid "Percentile Bar" -msgstr "パーセントバー" - -#: ../../godmode/reporting/visual_console_builder.elements.php:203 -msgid "Percentile Bubble" -msgstr "パーセント円表示" - -#: ../../godmode/reporting/visual_console_builder.elements.php:251 -msgid "Simple Value (Process Max)" -msgstr "値 (最大値)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:262 -msgid "Simple Value (Process Min)" -msgstr "値 (最小値)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:273 -msgid "Simple Value (Process Avg)" -msgstr "値 (平均値)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:394 -#: ../../godmode/reporting/visual_console_builder.elements.php:832 -msgid "Edit label" -msgstr "ラベル編集" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:993 -msgid "Not valid" -msgstr "不正です" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1001 -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:1151 -msgid "Log number" -msgstr "ログ番号" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1153 -msgid "" -"Warning: this parameter limits the contents of the logs and affects the performance." -msgstr "警告: このパラメータはログの内容を制限しパフォーマンスに影響します。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1214 -msgid "" -"This is the range, or period of time over which the report renders the information " -"for this report type. For example, a week means data from a week ago from now. " -msgstr "" -"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 たと" -"えば、1週間は、今から1週間前のデータを意味します。 " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1773 -msgid "Show modules" -msgstr "モジュール表示" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2154 -msgid "Target server" -msgstr "対象サーバ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2455 -msgid "Macros definition" -msgstr "マクロ定義" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2466 -msgid "Render definition" -msgstr "描画定義" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2467 -msgid "Please note that not all CSS styles are supported by PDF reports." -msgstr "" -"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意してくださ" -"い。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2547 -msgid "Greater or equal (>=)" -msgstr "以上 (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2548 -msgid "Less or equal (<=)" -msgstr "以下 (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 -msgid "Less (<)" -msgstr "未満 (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2550 -msgid "Greater (>)" -msgstr "超えて (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2551 -msgid "Equal (=)" -msgstr "同じ (=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2552 -msgid "Not equal (!=)" -msgstr "異なる (!=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2677 -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:2732 -msgid "Checks in Warning status" -msgstr "警告状態のチェック" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2802 -msgid "Only data" -msgstr "ベースのみ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2900 -msgid "Include extended events" -msgstr "拡張イベントを含める" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2919 -msgid "By agent " -msgstr "エージェントごと " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2929 -msgid "By user validator " -msgstr "承諾ユーザごと " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2939 -msgid "By criticity " -msgstr "重要度ごと " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2949 -msgid "Validated vs unvalidated " -msgstr "承諾済 / 未承諾 " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2964 -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:3149 -msgid "Include filter" -msgstr "含めるフィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 -msgid "Free text string search on event description" -msgstr "イベントの説明の任意のテキスト検索" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3158 -msgid "Exclude filter" -msgstr "除外フィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3357 -msgid "Select by group" -msgstr "グループ選択" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 -msgid "Display options" -msgstr "表示オプション" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 -msgid "Agent group filter" -msgstr "エージェントグループフィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3523 -msgid "Agent OS filter" -msgstr "エージェント OS フィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3549 -msgid "Agent custom field" -msgstr "エージェントカスタムフィールド" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 -msgid "Agent custom field filter" -msgstr "エージェントカスタムフィールドフィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3595 -msgid "Agent status filter" -msgstr "エージェント状態フィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3633 -msgid "Agent version filter" -msgstr "エージェントバージョンフィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3657 -msgid "Agent has remote configuration" -msgstr "リモート設定エージェント" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3658 -msgid "Filter agents by remote configuration enabled." -msgstr "リモート設定が有効化されているエージェントのフィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3669 -msgid "Agent module filter" -msgstr "エージェントモジュールフィルタ" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3775 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4290 -msgid "Agent Failover" -msgstr "エージェントフェイルオーバー" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3780 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4293 -msgid "Module Failover" -msgstr "モジュールフェイルオーバー" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:3820 -msgid "Please save the item before adding entries to this list." -msgstr "一覧へのエントリ追加の前に、アイテムを保存してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4266 -msgid "rate" -msgstr "律" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4314 -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:4334 -msgid "Please save the report to start adding items into the list." -msgstr "リストに項目を追加する前にレポートを保存してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4600 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4604 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4608 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4612 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4616 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4628 -msgid "Item Editor Information" -msgstr "アイテムエディタ情報" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4601 -msgid "Please select a name." -msgstr "名前を選択してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4605 -msgid "Please select an agent." -msgstr "エージェントを選択してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4609 -#: ../../godmode/agentes/planned_downtime.editor.php:1388 -msgid "Please select a module." -msgstr "モジュールを選択してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4613 -msgid "Please insert a SQL query." -msgstr "SQL クエリを入力してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4617 -msgid "Please insert a URL." -msgstr "URL を入力してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4621 -msgid "Please checked a custom interval option." -msgstr "カスタム間隔オプションを確認してください。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4625 -msgid "Please select a user." -msgstr "ユーザを選択して下さい。" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:4629 -msgid "Please select a group." -msgstr "グループを選択してください。" - -#: ../../godmode/reporting/reporting_builder.php:535 -#: ../../godmode/reporting/reporting_builder.php:3439 -#: ../../godmode/reporting/reporting_builder.php:3522 -#: ../../godmode/reporting/reporting_builder.php:3570 -msgid "Reports list" -msgstr "レポート一覧" - -#: ../../godmode/reporting/reporting_builder.php:583 -msgid "List of reports" -msgstr "レポート一覧" - -#: ../../godmode/reporting/reporting_builder.php:1046 -msgid "This report exceeds the item limit for realtime operations" -msgstr "このレポートはリアルタイム処理のアイテム数制限を超過しています" - -#: ../../godmode/reporting/reporting_builder.php:1278 -msgid "Create report" -msgstr "レポートの作成" - -#: ../../godmode/reporting/reporting_builder.php:3573 -msgid "Create Custom Report" -msgstr "カスタムレポートの作成" - -#: ../../godmode/reporting/reporting_builder.php:3661 -msgid "Unsuccessful action

    " -msgstr "アクション失敗

    " - -#: ../../godmode/reporting/visual_console_builder.editor.php:163 -msgid "Min allowed size is 1024x768" -msgstr "最小サイズは 1024x768 です" - -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -msgid "Loading in progress" -msgstr "読み込み中" - -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -msgid "Saving in progress" -msgstr "保存中" - -#: ../../godmode/reporting/visual_console_builder.editor.php:171 -msgid "Deletion in progress" -msgstr "削除中" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:199 -#, php-format -msgid "" -"The maximum number of items in a chart is %d. You have %d elements, only first %d " -"will be displayed." -msgstr "" -"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムのみ表示さ" -"れます。" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:291 -msgid "Sort selected items" -msgstr "選択アイテムの並べ替え" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:294 -msgid "before to" -msgstr "この前へ:" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:295 -msgid "after to" -msgstr "この後へ:" - -#: ../../godmode/reporting/graph_builder.main.php:230 -msgid "Equalize maximum thresholds" -msgstr "最大閾値を合わせる" - -#: ../../godmode/reporting/graph_builder.main.php:258 -msgid "Add summatory series" -msgstr "合計の表示" - -#: ../../godmode/reporting/graph_builder.main.php:268 -msgid "Add average series" -msgstr "平均の表示" - -#: ../../godmode/reporting/graph_builder.main.php:279 -msgid "Modules and series" -msgstr "モジュール値と統計値" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:165 -msgid "Range between elements (px)" -msgstr "エレメント間の幅 (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -msgid "Size (px)" -msgstr "サイズ (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:273 -msgid "Width (px)" -msgstr "幅 (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:378 -msgid "One item per agent" -msgstr "1エージェントに 1アイテム" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:448 -#: ../../godmode/reporting/visual_console_builder.wizard.php:765 -msgid "Agent - Module" -msgstr "エージェント - モジュール" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:465 -msgid "Enable link agent" -msgstr "エージェントのリンクを有効にする" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:476 -msgid "Set Parent" -msgstr "親を設定" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:479 -msgid "Item created in the visualmap" -msgstr "ビジュアルマップに作成したアイテム" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:480 -msgid "Use the agents relationship (from selected agents)" -msgstr "エージェント関係を利用する (選択したエージェント)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:489 -msgid "Item in the map" -msgstr "マップ内のアイテム" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:490 -#, php-format -msgid "The parenting relationships in %s will be drawn on the map." -msgstr "%s の親子関係がマップに描画されます。" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:510 -#: ../../godmode/reporting/visual_console_builder.wizard.php:514 -msgid "Are you sure to add many elements\\nin visual map?" -msgstr "" -"ビジュアルマップに多くのエレメントを追加しようとしています。\n" -"よろしいですか。" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:686 -msgid "Please select any module or modules." -msgstr "モジュールを選択してください。" - -#: ../../godmode/menu.php:41 -msgid "Network scan" -msgstr "ネットワークスキャン" - -#: ../../godmode/menu.php:43 -msgid "Custom network scan" -msgstr "カスタムネットワークスキャン" - -#: ../../godmode/menu.php:47 -msgid "Manage scan scripts" -msgstr "スキャンスクリプト管理" - -#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 -msgid "Host & devices" -msgstr "ホスト & デバイス" - -#: ../../godmode/menu.php:83 -msgid "Module categories" -msgstr "モジュールカテゴリ" - -#: ../../godmode/menu.php:87 -msgid "Module types" -msgstr "モジュールタイプ" - -#: ../../godmode/menu.php: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:103 ../../godmode/agentes/configurar_agente.php:817 -#: ../../godmode/agentes/configurar_agente.php:839 -#: ../../godmode/agentes/modificar_agente.php:104 -msgid "Resources" -msgstr "リソース" - -#: ../../godmode/menu.php:111 -msgid "Manage agents groups" -msgstr "エージェントグループ管理" - -#: ../../godmode/menu.php:149 ../../godmode/wizards/HostDevices.class.php:1077 -#: ../../godmode/agentes/configurar_agente.php:437 -msgid "Module templates" -msgstr "モジュールテンプレート" - -#: ../../godmode/menu.php:155 -msgid "Remote components" -msgstr "リモートコンポーネント" - -#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:257 -msgid "Agents operations" -msgstr "エージェント操作" - -#: ../../godmode/menu.php:189 ../../godmode/massive/massive_operations.php:269 -msgid "Modules operations" -msgstr "モジュール操作" - -#: ../../godmode/menu.php:190 ../../godmode/massive/massive_operations.php:281 -msgid "Plugins operations" -msgstr "プラグイン操作" - -#: ../../godmode/menu.php:192 ../../godmode/massive/massive_operations.php:245 -msgid "Users operations" -msgstr "ユーザ操作" - -#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:233 -msgid "Alerts operations" -msgstr "アラート操作" - -#: ../../godmode/menu.php:205 ../../godmode/groups/group_list.php:349 -msgid "Credential store" -msgstr "認証情報ストア" - -#: ../../godmode/menu.php:225 -msgid "List of Alerts" -msgstr "アラート一覧" - -#: ../../godmode/menu.php:240 ../../godmode/menu.php:241 -msgid "Special days list" -msgstr "特別日一覧" - -#: ../../godmode/menu.php:245 -msgid "SNMP alerts" -msgstr "SNMPアラート" - -#: ../../godmode/menu.php:257 -msgid "Event filters" -msgstr "イベントフィルタ" - -#: ../../godmode/menu.php:262 -msgid "Custom events" -msgstr "カスタムイベント" - -#: ../../godmode/menu.php:285 -msgid "Manage servers" -msgstr "サーバ管理" - -#: ../../godmode/menu.php:296 -msgid "Register Plugin" -msgstr "プラグイン登録" - -#: ../../godmode/menu.php:358 -msgid "Websocket Engine" -msgstr "Websocket エンジン" - -#: ../../godmode/menu.php:392 -msgid "Diagnostic info" -msgstr "診断情報" - -#: ../../godmode/menu.php:397 -msgid "Site news" -msgstr "サイトニュース" - -#: ../../godmode/menu.php:403 -msgid "DB Schema Check" -msgstr "DB スキーマチェック" - -#: ../../godmode/menu.php:406 -msgid "DB Interface" -msgstr "DB インタフェース" - -#: ../../godmode/menu.php:493 -msgid "Extension manager view" -msgstr "拡張マネージャ表示" - -#: ../../godmode/menu.php:497 -msgid "Extension manager" -msgstr "拡張マネージャ" - -#: ../../godmode/menu.php:528 -msgid "Update manager" -msgstr "アップデートマネージャ" - -#: ../../godmode/menu.php:533 -msgid "Update Manager offline" -msgstr "オフラインアップデートマネージャ" - -#: ../../godmode/menu.php:536 -msgid "Update Manager online" -msgstr "オンラインアップデートマネージャ" - -#: ../../godmode/menu.php:539 -msgid "Update Manager options" -msgstr "アップデートマネージャオプション" - -#: ../../godmode/menu.php:542 -msgid "Update Manager journal" -msgstr "アップデートマネージャジャーナル" - -#: ../../godmode/menu.php:550 ../../godmode/module_library/module_library_view.php:81 -msgid "Module library" -msgstr "モジュールライブラリ" - -#: ../../godmode/menu.php:557 ../../godmode/module_library/module_library_view.php:54 -#: ../../godmode/module_library/module_library_view.php:68 -#: ../../godmode/module_library/module_library_view.php:104 -msgid "Categories" -msgstr "分類" - -#: ../../godmode/snmpconsole/snmp_alert.php:99 -msgid "Alert overview" -msgstr "アラート一覧" - -#: ../../godmode/snmpconsole/snmp_alert.php:277 -msgid "There was a problem creating the alert" -msgstr "アラートの作成に失敗しました。" - -#: ../../godmode/snmpconsole/snmp_alert.php:413 -msgid "There was a problem updating the alert" -msgstr "アラートの編集に失敗しました。" - -#: ../../godmode/snmpconsole/snmp_alert.php:610 -#: ../../godmode/snmpconsole/snmp_alert.php:623 -msgid "There was a problem duplicating the alert" -msgstr "アラートの複製で問題が発生しました" - -#: ../../godmode/snmpconsole/snmp_alert.php:616 -msgid "Successfully Duplicate" -msgstr "複製しました" - -#: ../../godmode/snmpconsole/snmp_alert.php:644 -msgid "There was a problem deleting the alert" -msgstr "アラートの削除に失敗しました。" - -#: ../../godmode/snmpconsole/snmp_alert.php:730 -msgid "Matches substrings. End the string with $ for exact matches." -msgstr "部分文字列に一致します。 完全に一致させるには、文字列を $ で終了します。" - -#: ../../godmode/snmpconsole/snmp_alert.php:790 -#: ../../godmode/snmpconsole/snmp_alert.php:797 -#: ../../godmode/snmpconsole/snmp_alert.php:806 -#: ../../godmode/snmpconsole/snmp_alert.php:815 -#: ../../godmode/snmpconsole/snmp_alert.php:824 -#: ../../godmode/snmpconsole/snmp_alert.php:833 -#: ../../godmode/snmpconsole/snmp_alert.php:842 -#: ../../godmode/snmpconsole/snmp_alert.php:850 -#: ../../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 -msgid "Variable bindings/Data" -msgstr "変数バインディング/データ" - -#: ../../godmode/snmpconsole/snmp_alert.php:1074 -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:1093 -msgid "Alert SNMP control filter" -msgstr "SNMPアラート管理フィルタ" - -#: ../../godmode/snmpconsole/snmp_alert.php:1178 -msgid "There are no SNMP alerts" -msgstr "SNMP アラートはありません。" - -#: ../../godmode/snmpconsole/snmp_alert.php:1229 -msgid "Custom Value/Enterprise String" -msgstr "カスタム値/Enterprise文字列" - -#: ../../godmode/snmpconsole/snmp_alert.php:1234 -msgid "TF." -msgstr "回数" - -#: ../../godmode/snmpconsole/snmp_alert.php:1357 -msgid "ID Alert SNMP" -msgstr "SNMPアラートID" - -#: ../../godmode/snmpconsole/snmp_alert.php:1589 -msgid "Add action " -msgstr "アクション追加 " - -#: ../../godmode/snmpconsole/snmp_filters.php:41 -msgid "Filter overview" -msgstr "フィルタの概要" - -#: ../../godmode/snmpconsole/snmp_filters.php:108 -msgid "There was a problem updating the filter" -msgstr "フィルタの更新に問題が発生しました。" - -#: ../../godmode/snmpconsole/snmp_filters.php:126 -#: ../../godmode/snmpconsole/snmp_filters.php:152 -msgid "Description is empty" -msgstr "説明が空です" - -#: ../../godmode/snmpconsole/snmp_filters.php:129 -msgid "Filter is empty" -msgstr "フィルタが空です" - -#: ../../godmode/snmpconsole/snmp_filters.php:149 -msgid "Filters are empty" -msgstr "フィルタが空です" - -#: ../../godmode/snmpconsole/snmp_filters.php:159 -msgid "There was a problem creating the filter" -msgstr "フィルタの作成に問題が発生しました。" - -#: ../../godmode/snmpconsole/snmp_filters.php:178 -msgid "There was a problem deleting the filter" -msgstr "フィルタの削除で問題が発生しました。" - -#: ../../godmode/snmpconsole/snmp_filters.php:221 -#: ../../godmode/snmpconsole/snmp_filters.php:231 -msgid "" -"This field contains a substring, could be part of a IP address, a numeric OID, or a " -"plain substring" -msgstr "このフィールドには、IPアドレス、OID、文字列の一部を入力します。" - -#: ../../godmode/snmpconsole/snmp_filters.php:223 -msgid "Click to remove the filter" -msgstr "フィルタ削除" - -#: ../../godmode/snmpconsole/snmp_filters.php:254 -#: ../../godmode/snmpconsole/snmp_filters.php:255 -msgid "Click to add new filter" -msgstr "新規フィルタ追加" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:38 -msgid "SNMP Trap generator" -msgstr "SNMPトラップジェネレータ" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:68 -msgid "Empty parameters" -msgstr "パラメータが空です" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 -msgid "Successfully generated" -msgstr "生成しました" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#, php-format -msgid "Could not be generated: %s" -msgstr "生成できません: %s" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -msgid "Host address" -msgstr "ホストアドレス" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 -msgid "SNMP Type" -msgstr "SNMPタイプ" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 -msgid "Generate trap" -msgstr "トラップ生成" - -#: ../../godmode/tag/edit_tag.php:57 ../../godmode/tag/edit_tag.php:75 -#: ../../godmode/tag/tag.php:140 -msgid "List tags" -msgstr "タグ一覧" - -#: ../../godmode/tag/edit_tag.php:85 ../../godmode/tag/tag.php:152 -msgid "Tags configuration" -msgstr "タグ設定" - -#: ../../godmode/tag/edit_tag.php:128 -msgid "Successfully updated tag" -msgstr "タグを更新しました" - -#: ../../godmode/tag/edit_tag.php:129 -msgid "Error updating tag" -msgstr "タグ更新に失敗" - -#: ../../godmode/tag/edit_tag.php:169 -msgid "Successfully created tag" -msgstr "タグを作成しました" - -#: ../../godmode/tag/edit_tag.php:170 -msgid "Error creating tag" -msgstr "タグを作成できません" - -#: ../../godmode/tag/edit_tag.php:201 -msgid "Update Tag" -msgstr "タグの更新" - -#: ../../godmode/tag/edit_tag.php:205 -msgid "Create Tag" -msgstr "タグの作成" - -#: ../../godmode/tag/edit_tag.php:229 -msgid "Hyperlink to help information that has to exist previously." -msgstr "情報がある場所へのハイパーリンク" - -#: ../../godmode/tag/edit_tag.php:241 -msgid "Associated Email direction to use later in alerts associated to Tags." -msgstr "タグに関連付けられるアラートで利用するためのメール送信先" - -#: ../../godmode/tag/edit_tag.php:251 ../../godmode/tag/tag.php:282 -msgid "Phone" -msgstr "電話番号" - -#: ../../godmode/tag/edit_tag.php:253 -msgid "Associated phone number to use later in alerts associated to Tags." -msgstr "タグに関連付けられるアラートで利用するための電話番号" - -#: ../../godmode/tag/tag.php:117 -msgid "Number of modules" -msgstr "モジュール数" - -#: ../../godmode/tag/tag.php:119 -msgid "Number of policy modules" -msgstr "ポリシーモジュール数" - -#: ../../godmode/tag/tag.php:178 -msgid "Successfully deleted tag" -msgstr "タグを削除しました" - -#: ../../godmode/tag/tag.php:179 -msgid "Error deleting tag" -msgstr "タグを削除できません" - -#: ../../godmode/tag/tag.php:195 -#, php-format -msgid "" -"This node is configured with centralized mode. All tags information is read only. Go " -"to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。すべてのタグ情報は読み取り専用です。管理" -"するには %s に移動します。" - -#: ../../godmode/tag/tag.php:277 -msgid "Tag name" -msgstr "タグ名" - -#: ../../godmode/tag/tag.php:279 -msgid "Detail information" -msgstr "詳細情報" - -#: ../../godmode/tag/tag.php:280 -msgid "Number of modules affected" -msgstr "影響するモジュール数" - -#: ../../godmode/tag/tag.php:311 -msgid "Tag details" -msgstr "タグ詳細" - -#: ../../godmode/tag/tag.php:344 -#, php-format -msgid "Emails for the tag: %s" -msgstr "タグ %s のメールアドレス" - -#: ../../godmode/tag/tag.php:367 -#, php-format -msgid "Phones for the tag: %s" -msgstr "タグ %s の電話番号" - -#: ../../godmode/tag/tag.php:413 -msgid "No tags defined" -msgstr "タグが定義されていません" - -#: ../../godmode/tag/tag.php:428 -msgid "Create tag" -msgstr "タグの作成" - -#: ../../godmode/events/event_edit_filter.php:249 -msgid "Update Filter" -msgstr "フィルタ更新" - -#: ../../godmode/events/event_edit_filter.php:251 -msgid "Create Filter" -msgstr "フィルタ作成" - -#: ../../godmode/events/event_edit_filter.php:264 -msgid "Save in group" -msgstr "保存グループ" - -#: ../../godmode/events/event_edit_filter.php:264 -msgid "This group will be use to restrict the visibility of this filter with ACLs" -msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます" - -#: ../../godmode/events/event_edit_filter.php:414 -msgid "Choose between the users who have validated an event. " -msgstr "イベントを承諾したユーザを選択します。 " - -#: ../../godmode/events/event_edit_filter.php:636 -msgid "Custom data filter type" -msgstr "カスタムデータフィルタタイプ" - -#: ../../godmode/events/event_edit_filter.php:639 -msgid "Filter custom data by name field" -msgstr "名前フィールドでカスタムデータをフィルタ" - -#: ../../godmode/events/event_edit_filter.php:640 -msgid "Filter custom data by value field" -msgstr "値フィールドでカスタムデータをフィルタ" - -#: ../../godmode/events/event_edit_filter.php:654 -msgid "Id souce event" -msgstr "ソースイベントID" - -#: ../../godmode/events/event_responses.editor.php:73 -msgid "Edit event responses" -msgstr "イベント応答の編集" - -#: ../../godmode/events/event_responses.editor.php:123 -msgid "For Command type Modal Window mode is enforced" -msgstr "種類がコマンドの場合は、専用ウインドウになります。" - -#: ../../godmode/events/event_responses.editor.php:125 -msgid "Modal window" -msgstr "専用ウインドウ" - -#: ../../godmode/events/event_responses.editor.php:126 -msgid "New window" -msgstr "新しいウィンドウ" - -#: ../../godmode/events/event_responses.editor.php:198 -msgid "Command timeout (s)" -msgstr "コマンドタイムアウト: (s)" - -#: ../../godmode/events/event_responses.editor.php:204 -msgid "Display command" -msgstr "表示コマンド" - -#: ../../godmode/events/event_responses.editor.php:204 -msgid "" -"If enabled the command will be displayed to any user that can execute this event " -"response" -msgstr "" -"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されます" - -#: ../../godmode/events/custom_events.php:76 -msgid "Load the fields from previous events" -msgstr "前のイベントからフィールドをロード" - -#: ../../godmode/events/custom_events.php:76 -msgid "Event fields will be loaded. Do you want to continue?" -msgstr "イベントフィールドが読み込まれます。続けますか?" - -#: ../../godmode/events/custom_events.php:97 -msgid "Agent Name" -msgstr "エージェント名" - -#: ../../godmode/events/event_responses.php:51 -msgid "Response added succesfully" -msgstr "応答を追加しました" - -#: ../../godmode/events/event_responses.php:53 -msgid "Response cannot be added" -msgstr "応答を追加できません" - -#: ../../godmode/events/event_responses.php:77 -msgid "Response updated succesfully" -msgstr "応答を更新しました" - -#: ../../godmode/events/event_responses.php:79 -msgid "Response cannot be updated" -msgstr "応答を更新できません" - -#: ../../godmode/events/event_responses.php:89 -msgid "Response deleted succesfully" -msgstr "応答を削除しました" - -#: ../../godmode/events/event_responses.php:91 -msgid "Response cannot be deleted" -msgstr "応答を削除できません" - -#: ../../godmode/events/event_responses.list.php:32 -msgid "No responses found" -msgstr "応答がありません" - -#: ../../godmode/events/event_responses.list.php:92 -msgid "Create response" -msgstr "応答の作成" - -#: ../../godmode/events/events.php:54 ../../godmode/netflow/nf_edit_form.php:53 -msgid "Filter list" -msgstr "フィルタ一覧" - -#: ../../godmode/events/event_filter.php:215 ../../godmode/netflow/nf_edit.php:212 -msgid "There are no defined filters" -msgstr "定義済のフィルタがありません" - -#: ../../godmode/db/db_main.php:74 -msgid "Current database maintenance setup" -msgstr "現在のデータベース設定" - -#: ../../godmode/db/db_main.php:80 -msgid "Database setup" -msgstr "データベース設定" - -#: ../../godmode/db/db_main.php:84 -msgid "Max. time before compact data" -msgstr "データ保持日数(未圧縮)" - -#: ../../godmode/db/db_main.php:90 -msgid "Max. time before purge" -msgstr "データ保持日数" - -#: ../../godmode/db/db_main.php:114 -msgid "Total data items (tagente_datos)" -msgstr "データ要素数 (tagente_datos)" - -#: ../../godmode/db/db_main.php:127 -msgid "Total log4x items (tagente_datos_log4x)" -msgstr "log4x 要素数 (tagente_datos_log4x)" - -#: ../../godmode/db/db_main.php:140 -msgid "Total data string items (tagente_datos_string)" -msgstr "文字列データ要素数 (tagente_datos_string)" - -#: ../../godmode/db/db_main.php:146 -msgid "Total modules configured" -msgstr "定義済モジュール数" - -#: ../../godmode/db/db_main.php:154 -msgid "Total agent access records" -msgstr "エージェントアクセス数" - -#: ../../godmode/db/db_main.php:166 -msgid "Database sanity" -msgstr "データベースの健全性" - -#: ../../godmode/db/db_main.php:170 -msgid "Total uknown agents" -msgstr "不明なエージェント数" - -#: ../../godmode/db/db_main.php:176 -msgid "Total non-init modules" -msgstr "未初期化モジュール数" - -#: ../../godmode/db/db_main.php:185 -msgid "Last time on DB maintance" -msgstr "最終 DB メンテナンス日時" - -#: ../../godmode/db/db_main.php:208 -#, php-format -msgid "" -"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 "" -"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されているこ" -"とを確認してください。 %s の最高のパフォーマンスと結果を得るには、データベースを最新の" -"状態に保つことが非常に重要です。" - -#: ../../godmode/netflow/nf_edit.php:38 -msgid "Manage Netflow Filter" -msgstr "Netflow フィルタ管理" - -#: ../../godmode/netflow/nf_edit_form.php:55 ../../godmode/netflow/nf_edit_form.php:77 -msgid "Add filter" -msgstr "フィルタの追加" - -#: ../../godmode/netflow/nf_edit_form.php:58 -msgid "Netflow Filter" -msgstr "Netflow フィルタ" - -#: ../../godmode/netflow/nf_edit_form.php:235 -msgid "Filter:" -msgstr "フィルタ:" - -#: ../../godmode/netflow/nf_item_list.php:30 ../../godmode/netflow/nf_item_list.php:38 -msgid "Report items" -msgstr "レポートアイテム" - -#: ../../godmode/netflow/nf_item_list.php:33 -msgid "Edit report" -msgstr "レポートの編集" - -#: ../../godmode/netflow/nf_item_list.php:53 -msgid "Netflow reports" -msgstr "Netflow レポート" - -#: ../../godmode/netflow/nf_item_list.php:57 -msgid "Item list" -msgstr "アイテム一覧" - -#: ../../godmode/netflow/nf_item_list.php:277 -msgid "There are no defined items" -msgstr "定義済のアイテムがありません" - -#: ../../godmode/massive/massive_add_alerts.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:108 -msgid "No alert selected" -msgstr "アラートが選択されていません。" - -#: ../../godmode/massive/massive_delete_modules.php:82 -msgid "No module selected" -msgstr "モジュールが選択されていません。" - -#: ../../godmode/massive/massive_delete_modules.php:156 -msgid "There was an error deleting the modules, the operation has been cancelled" -msgstr "モジュール削除でエラーが発生しました。操作はキャンセルされます。" - -#: ../../godmode/massive/massive_delete_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:304 -msgid "Selection mode" -msgstr "選択モード" - -#: ../../godmode/massive/massive_delete_modules.php:319 -#: ../../godmode/massive/massive_edit_modules.php:305 -msgid "Select modules first " -msgstr "モジュールを先に選択 " - -#: ../../godmode/massive/massive_delete_modules.php:320 -#: ../../godmode/massive/massive_edit_modules.php:306 -msgid "Select agents first " -msgstr "エージェントを先に選択 " - -#: ../../godmode/massive/massive_delete_modules.php:343 -#: ../../godmode/massive/massive_edit_modules.php:325 -msgid "Select all modules of this type" -msgstr "このタイプの全てのモジュールを選択" - -#: ../../godmode/massive/massive_delete_modules.php:387 -#: ../../godmode/massive/massive_edit_modules.php:371 -msgid "Select all modules of this group" -msgstr "このグループの全てのモジュールを選択" - -#: ../../godmode/massive/massive_delete_modules.php:458 -#: ../../godmode/massive/massive_copy_modules.php:196 -#: ../../godmode/massive/massive_edit_modules.php:420 -msgid "Filter Modules" -msgstr "モジュールフィルタ" - -#: ../../godmode/massive/massive_delete_modules.php:477 -#: ../../godmode/massive/massive_edit_modules.php:436 -msgid "Select all modules" -msgstr "全モジュールを選択" - -#: ../../godmode/massive/massive_delete_modules.php:479 -#: ../../godmode/massive/massive_edit_modules.php:438 -msgid "When select modules" -msgstr "モジュール選択時の動作" - -#: ../../godmode/massive/massive_delete_modules.php:483 -#: ../../godmode/massive/massive_edit_modules.php:442 -msgid "Show common agents" -msgstr "共通エージェントの表示" - -#: ../../godmode/massive/massive_delete_modules.php:484 -#: ../../godmode/massive/massive_edit_modules.php:443 -msgid "Show all agents" -msgstr "全エージェント表示" - -#: ../../godmode/massive/massive_delete_modules.php:530 -#: ../../godmode/massive/massive_copy_modules.php:292 -msgid "Filter Agents" -msgstr "エージェントフィルタ" - -#: ../../godmode/massive/massive_delete_modules.php:549 -#: ../../godmode/massive/massive_edit_modules.php:522 -msgid "Select all agents" -msgstr "全エージェントを選択" - -#: ../../godmode/massive/massive_delete_modules.php:557 -#: ../../godmode/massive/massive_add_action_alerts.php:226 -#: ../../godmode/massive/massive_delete_action_alerts.php:247 -#: ../../godmode/massive/massive_edit_modules.php:530 -msgid "Show unknown and not init modules" -msgstr "不明および未初期化モジュールを表示" - -#: ../../godmode/massive/massive_delete_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:1260 -msgid "Please, select an agent first" -msgstr "エージェントを先に選択してください" - -#: ../../godmode/massive/massive_copy_modules.php:193 -msgid "Copy alerts" -msgstr "アラートのコピー" - -#: ../../godmode/massive/massive_copy_modules.php:230 -msgid "No alerts for this agent" -msgstr "このエージェントにはアラートが定義されていません。" - -#: ../../godmode/massive/massive_copy_modules.php:309 -msgid "To agent(s)" -msgstr "適用先エージェント" - -#: ../../godmode/massive/massive_copy_modules.php:559 -msgid "No operation selected" -msgstr "操作が選択されていません。" - -#: ../../godmode/massive/massive_operations.php:59 -msgid "Bulk alert add" -msgstr "一括アラート追加" - -#: ../../godmode/massive/massive_operations.php:60 -msgid "Bulk alert delete" -msgstr "一括アラート削除" - -#: ../../godmode/massive/massive_operations.php:61 -msgid "Bulk alert actions add" -msgstr "一括アラートアクション追加" - -#: ../../godmode/massive/massive_operations.php:62 -msgid "Bulk alert actions delete" -msgstr "一括アラートアクション削除" - -#: ../../godmode/massive/massive_operations.php:63 -msgid "Bulk alert enable/disable" -msgstr "一括アラート有効化/無効化" - -#: ../../godmode/massive/massive_operations.php:64 -msgid "Bulk alert setting standby" -msgstr "一括アラートスタンバイ設定" - -#: ../../godmode/massive/massive_operations.php:68 -msgid "Bulk agent edit" -msgstr "一括エージェント編集" - -#: ../../godmode/massive/massive_operations.php:69 -#: ../../godmode/massive/massive_operations.php:73 -msgid "Bulk agent delete" -msgstr "一括エージェント削除" - -#: ../../godmode/massive/massive_operations.php:79 -msgid "Bulk profile add" -msgstr "一括プロファイル追加" - -#: ../../godmode/massive/massive_operations.php:80 -msgid "Bulk profile delete" -msgstr "一括プロファイル削除" - -#: ../../godmode/massive/massive_operations.php:87 -msgid "Bulk module edit" -msgstr "一括モジュール編集" - -#: ../../godmode/massive/massive_operations.php:88 -msgid "Bulk module copy" -msgstr "一括モジュールコピー" - -#: ../../godmode/massive/massive_operations.php:89 -msgid "Bulk module delete" -msgstr "一括モジュール削除" - -#: ../../godmode/massive/massive_operations.php:93 -msgid "Bulk plugin edit" -msgstr "一括プラグイン編集" - -#: ../../godmode/massive/massive_operations.php:389 -#, php-format -msgid "" -"No changes have been made because they exceed the maximum allowed (%d). Make fewer " -"changes or contact the administrator." -msgstr "" -"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理者に連" -"絡してください。" - -#: ../../godmode/massive/massive_operations.php:417 -#, php-format -msgid "This node is configured with centralized mode. To delete agents go to %s" -msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s に移動し" -"ます" - -#: ../../godmode/massive/massive_operations.php:440 -msgid "The blank fields will not be updated" -msgstr "未入力の項目は更新されません。" - -#: ../../godmode/massive/massive_add_profiles.php:52 -#: ../../godmode/massive/massive_delete_profiles.php:52 -#, php-format -msgid "" -"This node is configured with centralized mode. All profiles user information is read " -"only. Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報は読み" -"取り専用です。管理するには %s に移動します。" - -#: ../../godmode/massive/massive_add_profiles.php:184 -msgid "Profiles added successfully" -msgstr "プロファイルを追加しました。" - -#: ../../godmode/massive/massive_add_profiles.php:185 -msgid "Profiles cannot be added" -msgstr "プロファイルの追加ができませんでした。" - -#: ../../godmode/massive/massive_standby_alerts.php:223 -msgid "Not standby alerts" -msgstr "非スタンバイ状態アラート" - -#: ../../godmode/massive/massive_standby_alerts.php:252 -#: ../../godmode/massive/massive_standby_alerts.php:256 -msgid "Set standby selected alerts" -msgstr "選択したアラートをスタンバイ状態にする" - -#: ../../godmode/massive/massive_standby_alerts.php:258 -msgid "Standby alerts" -msgstr "スタンバイ状態アラート" - -#: ../../godmode/massive/massive_add_action_alerts.php:134 -msgid "No alerts selected" -msgstr "アラートが選択されていません。" - -#: ../../godmode/massive/massive_add_action_alerts.php:166 -msgid "No actions selected" -msgstr "アクションが選択されていません" - -#: ../../godmode/massive/massive_add_action_alerts.php:212 -#: ../../godmode/massive/massive_delete_action_alerts.php:230 -msgid "Agents with templates" -msgstr "テンプレートがあるエージェント" - -#: ../../godmode/massive/massive_add_action_alerts.php:218 -#: ../../godmode/massive/massive_delete_action_alerts.php:239 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -msgid "Alert templates" -msgstr "アラートテンプレート" - -#: ../../godmode/massive/massive_edit_agents.php:176 -msgid "No values changed" -msgstr "値が変更されていません。" - -#: ../../godmode/massive/massive_edit_agents.php:227 -msgid "Configuration files deleted successfully" -msgstr "設定ファイルを削除しました。" - -#: ../../godmode/massive/massive_edit_agents.php:228 -msgid "Configuration files cannot be deleted" -msgstr "設定ファイルを削除できませんでした。" - -#: ../../godmode/massive/massive_edit_agents.php:420 -#, php-format -msgid "Agents updated successfully (%d)" -msgstr "エージェントをアップデートしました (%d)" - -#: ../../godmode/massive/massive_edit_agents.php:435 -#, php-format -msgid "Agents cannot be updated (%d), ids (%s)" -msgstr "エージェントの更新ができませんでした (%d), ID (%s)" - -#: ../../godmode/massive/massive_edit_agents.php:450 -#, php-format -msgid "Agent ID: %s cannot be updated custom fields (%s)" -msgstr "エージェントID: %s はカスタムフィールド (%s) を更新できません" - -#: ../../godmode/massive/massive_edit_agents.php:470 -#, php-format -msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" -msgstr "エージェントID: %s は %s セカンダリグループ (%s) を更新できません" - -#: ../../godmode/massive/massive_edit_agents.php:547 -#: ../../godmode/massive/massive_delete_agents.php:226 -msgid "Show agents" -msgstr "エージェント表示" - -#: ../../godmode/massive/massive_edit_agents.php:661 -#: ../../godmode/agentes/agent_manager.php:551 -msgid "Cascade protection" -msgstr "関連障害検知抑制" - -#: ../../godmode/massive/massive_edit_agents.php:858 -#: ../../godmode/agentes/agent_manager.php:567 -msgid "Module definition" -msgstr "モジュール定義" - -#: ../../godmode/massive/massive_edit_agents.php:870 -#: ../../godmode/agentes/agent_manager.php:572 -msgid "Learning mode" -msgstr "学習モード" - -#: ../../godmode/massive/massive_edit_agents.php:881 -#: ../../godmode/agentes/agent_manager.php:582 -msgid "Normal mode" -msgstr "通常モード" - -#: ../../godmode/massive/massive_edit_agents.php:892 -#: ../../godmode/agentes/agent_manager.php:592 -msgid "Autodisable mode" -msgstr "自動無効化モード" - -#: ../../godmode/massive/massive_edit_agents.php:919 -msgid "" -"If the remote configuration is enabled, it will also go into standby mode when " -"disabling it." -msgstr "リモート設定が有効になっている場合、無効にするとスタンバイモードになります。" - -#: ../../godmode/massive/massive_edit_agents.php:932 -msgid "Active" -msgstr "有効" - -#: ../../godmode/massive/massive_edit_agents.php:948 -msgid "Delete available remote configurations" -msgstr "リモート設定の削除" - -#: ../../godmode/massive/massive_edit_agents.php:980 -#: ../../godmode/agentes/agent_manager.php:656 -msgid "Agent icon" -msgstr "エージェントアイコン" - -#: ../../godmode/massive/massive_edit_agents.php:981 -msgid "Without status" -msgstr "状態不明" - -#: ../../godmode/massive/massive_edit_agents.php:984 -#: ../../godmode/agentes/agent_conf_gis.php:124 -msgid "Ignore new GIS data:" -msgstr "新たな GIS データを無視する:" - -#: ../../godmode/massive/massive_edit_agents.php:991 -msgid "The agent still runs but the alerts and events will be stop" -msgstr "エージェントは実行しますが、アラートとイベントは停止します" - -#: ../../godmode/massive/massive_edit_agents.php:1006 -#: ../../godmode/agentes/agent_manager.php:479 -msgid "Safe operation mode" -msgstr "セーフオペレーションモード" - -#: ../../godmode/massive/massive_edit_agents.php:1008 -#, 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_delete_profiles.php:133 -msgid "Profiles deleted successfully" -msgstr "プロファイルを削除しました。" - -#: ../../godmode/massive/massive_delete_profiles.php:134 -msgid "Profiles cannot be deleted" -msgstr "プロファイルを削除できませんでした。" - -#: ../../godmode/massive/massive_delete_action_alerts.php:75 -msgid "Could not be deleted. No agents selected" -msgstr "削除できません。エージェントが選択されていません。" - -#: ../../godmode/massive/massive_delete_action_alerts.php:122 -msgid "Could not be deleted. No alerts selected" -msgstr "削除できません。アラートが選択されていません。" - -#: ../../godmode/massive/massive_delete_action_alerts.php:181 -msgid "Could not be deleted. No action selected" -msgstr "削除できません。アクションが選択されていません。" - -#: ../../godmode/massive/massive_delete_alerts.php:301 -msgid "Show alerts on disabled modules" -msgstr "無効化モジュールのアラート表示" - -#: ../../godmode/massive/massive_delete_agents.php:122 -#, php-format -msgid "" -"There was an error deleting the agent, the operation has been cancelled Could not " -"delete agent %s" -msgstr "" -"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェント %s " -"は削除できません。" - -#: ../../godmode/massive/massive_delete_agents.php:132 -#, php-format -msgid "Successfully deleted (%s)" -msgstr "削除しました。(%s)" - -#: ../../godmode/massive/massive_edit_plugins.php:177 -msgid "Error retrieving the plugin macros" -msgstr "プラグインマクロ検索エラー" - -#: ../../godmode/massive/massive_edit_plugins.php:185 -msgid "Error retrieving the modified macros" -msgstr "編集済マクロ検索エラー" - -#: ../../godmode/massive/massive_edit_plugins.php:208 -msgid "Error retrieving the module plugin macros" -msgstr "モジュールプラグインマクロ検索エラー" - -#: ../../godmode/massive/massive_edit_plugins.php:226 -msgid "Error retrieving the module plugin macros data" -msgstr "モジュールプラグインマクロデータ検索エラー" - -#: ../../godmode/massive/massive_edit_plugins.php:264 -msgid "Error building the new macros" -msgstr "新規マクロ作成エラー" - -#: ../../godmode/massive/massive_edit_plugins.php:290 -#, php-format -msgid "%d modules updated" -msgstr "%d個のモジュールを更新しました。" - -#: ../../godmode/massive/massive_edit_plugins.php:321 -msgid "There are not registered plugins" -msgstr "登録済のプラグインがありません" - -#: ../../godmode/massive/massive_edit_plugins.php:464 -msgid "Invalid plugin data" -msgstr "不正なプラグインデータ" - -#: ../../godmode/massive/massive_edit_plugins.php:571 -msgid "Clear" -msgstr "消去" - -#: ../../godmode/massive/massive_edit_plugins.php:599 -msgid "Invalid macros array" -msgstr "マクロ配列が不正です" - -#: ../../godmode/massive/massive_edit_plugins.php:624 -msgid "Multiple values" -msgstr "複数の値" - -#: ../../godmode/massive/massive_edit_plugins.php:656 -#: ../../godmode/massive/massive_edit_plugins.php:792 -#: ../../godmode/massive/massive_edit_plugins.php:808 -msgid "Invalid agents array" -msgstr "エージェント配列が不正です" - -#: ../../godmode/massive/massive_edit_plugins.php:672 -msgid "Invalid agent element" -msgstr "エージェントの要素が不正です" - -#: ../../godmode/massive/massive_edit_plugins.php:683 -msgid "Invalid modules array" -msgstr "モジュール配列が不正です" - -#: ../../godmode/massive/massive_edit_plugins.php:711 -msgid "Invalid module element" -msgstr "モジュールの要素が不正です" - -#: ../../godmode/massive/massive_edit_plugins.php:920 -msgid "There are no modules using this plugin" -msgstr "このプラグインを使っているモジュールはありません" - -#: ../../godmode/massive/massive_edit_plugins.php:1005 -msgid "There was a problem loading the module plugin macros data" -msgstr "モジュールプラグインマクロデータのロード中に問題が発生しました" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -msgid "Enabled alerts" -msgstr "有効なアラート" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:224 -msgid "Disable selected alerts" -msgstr "選択したアラートを無効にする" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:228 -msgid "Enable selected alerts" -msgstr "選択したアラートを有効にする" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -msgid "Disabled alerts" -msgstr "無効なアラート" - -#: ../../godmode/massive/massive_edit_modules.php:137 -msgid "Error updating the modules from a module type" -msgstr "モジュールタイプからのモジュール更新エラー" - -#: ../../godmode/massive/massive_edit_modules.php:160 -msgid "Error updating the modules from an agent group" -msgstr "エージェントグループからのモジュール更新エラー" - -#: ../../godmode/massive/massive_edit_modules.php:178 -msgid "Error updating the modules (maybe there was no field to update)" -msgstr "モジュール更新エラー (更新するフィールドがない可能性があります)" - -#: ../../godmode/wizards/HostDevices.class.php:152 -msgid "Net Scan" -msgstr "ネットスキャン" - -#: ../../godmode/wizards/HostDevices.class.php:172 -msgid "Custom NetScan" -msgstr "カスタムネットスキャン" - -#: ../../godmode/wizards/HostDevices.class.php:180 -msgid "Manage NetScan scripts" -msgstr "ネットスキャンスクリプト管理" - -#: ../../godmode/wizards/HostDevices.class.php:325 -#, php-format -msgid "Invalid mimetype for csv file: %s" -msgstr "CSV ファイルの mime タイプが不正です: %s" - -#: ../../godmode/wizards/HostDevices.class.php:348 -#, php-format -msgid "Invalid content readed from csv file: %s" -msgstr "CSV ファイルから読み込んだ内容が不正です: %s" - -#: ../../godmode/wizards/HostDevices.class.php:391 -msgid "" -"This network scan task has been already defined. Please edit it or create a new one." -msgstr "" -"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作成して" -"ください。" - -#: ../../godmode/wizards/HostDevices.class.php:433 -msgid "You must provide a valid network." -msgstr "正しいネットワークを指定する必要があります。" - -#: ../../godmode/wizards/HostDevices.class.php:700 -#, php-format -msgid "\"%s\" features" -msgstr "\"%s\" 機能" - -#: ../../godmode/wizards/HostDevices.class.php:868 -msgid "Use CSV file definition" -msgstr "CSV ファイルの定義を利用" - -#: ../../godmode/wizards/HostDevices.class.php:869 -msgid "Define targets using csv o network definition." -msgstr "CSV またはネットワーク定義を利用して対象を定義" - -#: ../../godmode/wizards/HostDevices.class.php:887 -msgid "Networks (csv)" -msgstr "ネットワーク (CSV)" - -#: ../../godmode/wizards/HostDevices.class.php:888 -msgid "" -"You can upload a CSV file. Each line must contain a network in IP/MASK format. For " -"instance: 192.168.1.1/32" -msgstr "" -"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含まれている" -"必要があります。例: 192.168.1.1/32" - -#: ../../godmode/wizards/HostDevices.class.php:900 -msgid "Networks (current)" -msgstr "ネットワーク (現在)" - -#: ../../godmode/wizards/HostDevices.class.php:901 -msgid "Please upload a new file to overwrite this content." -msgstr "この内容を上書きするために新たなファイルをアップロードしてください。" - -#: ../../godmode/wizards/HostDevices.class.php:917 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" -msgstr "" -"カンマ区切りで複数のネットワークを指定できます。例: 192.168.50.0/24,192.168.60.0/24" - -#: ../../godmode/wizards/HostDevices.class.php:1047 -msgid "Filter by opened ports" -msgstr "開いているポートでフィルタ" - -#: ../../godmode/wizards/HostDevices.class.php:1049 -msgid "" -"Targets will be scanned if at least one of defined ports (comma separated) is open." -msgstr "" -"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャンされま" -"す。" - -#: ../../godmode/wizards/HostDevices.class.php:1062 -msgid "Auto discover known hardware" -msgstr "既知のハードウェアの自動検出" - -#: ../../godmode/wizards/HostDevices.class.php:1064 -msgid "" -"Targets will be monitorized based on its Private Enterprise Number. Requires " -"SNMP." -msgstr "" -"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP が必要" -"です。" - -#: ../../godmode/wizards/HostDevices.class.php:1079 -msgid "Module Host Alive will be added to discovered agents by default." -msgstr "" -"モジュール Host Alive が検出されたエージェントにデフォルトで追加されます。" - -#: ../../godmode/wizards/HostDevices.class.php:1127 -#, php-format -msgid "" -"Configured networks could generate %d agents, your license only allows %d, 'review " -"results' is mandatory." -msgstr "" -"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセンスは %d " -"までです。'結果の確認' は必須です。" - -#: ../../godmode/wizards/HostDevices.class.php:1135 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:908 -msgid "Review results" -msgstr "結果確認" - -#: ../../godmode/wizards/HostDevices.class.php:1137 -msgid "Targets must be validated by user before create agents." -msgstr "エージェントを作成する前に、ユーザが対象を検証する必要があります。" - -#: ../../godmode/wizards/HostDevices.class.php:1163 -msgid "Apply autoconfiguration rules" -msgstr "自動設定ルールの適用" - -#: ../../godmode/wizards/HostDevices.class.php:1165 -msgid "" -"System is able to auto configure detected host & devices by applying your defined " -"configuration rules." -msgstr "" -"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイスを自動" -"設定できます。" - -#: ../../godmode/wizards/HostDevices.class.php:1181 -msgid "SNMP enabled" -msgstr "SNMP 有効化" - -#: ../../godmode/wizards/HostDevices.class.php:1223 -msgid "SNMP communities to try with" -msgstr "処理実行時の SNMP コミュニティ" - -#: ../../godmode/wizards/HostDevices.class.php:1225 -msgid "" -"You can specify several values, separated by commas, for example: public,mysecret,1234" -msgstr "カンマ区切りで複数の値を指定できます。例: public,mysecret,1234" - -#: ../../godmode/wizards/HostDevices.class.php:1353 -msgid "OS detection" -msgstr "OSの検出" - -#: ../../godmode/wizards/HostDevices.class.php:1365 -msgid "Name resolution" -msgstr "名前解決" - -#: ../../godmode/wizards/HostDevices.class.php:1376 -msgid "Parent detection" -msgstr "親の検出" - -#: ../../godmode/wizards/HostDevices.class.php:1387 -msgid "Parent recursion" -msgstr "親の再帰検出" - -#: ../../godmode/wizards/HostDevices.class.php:1398 -msgid "VLAN enabled" -msgstr "VLAN 有効" - -#: ../../godmode/wizards/HostDevices.class.php:1409 -msgid "WMI enabled" -msgstr "WMI 有効" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:254 -msgid "Task successfully deleted" -msgstr "タスクを削除しました" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:488 -msgid "Task successfully enabled" -msgstr "タスクが有効化されました" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:361 -msgid "Task succesfully disabled" -msgstr "タスクを無効化しました" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:401 -msgid "Console Task successfully deleted" -msgstr "コンソールタスクを削除しました" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:443 -msgid "Task successfully disabled" -msgstr "タスクが無効化されました" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:520 -msgid "Discovery Server is disabled" -msgstr "自動検出サーバが無効です" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:603 -msgid "Task type" -msgstr "タスクタイプ" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:682 -msgid "This task has not been completely defined, please edit it" -msgstr "このタスクは定義が完了していません。編集してください。" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:732 -msgid "Discovery Cloud Azure Compute" -msgstr "Cloud Azure Compute の自動検出" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:736 -msgid "Cloud.Azure.Compute" -msgstr "Cloud.Azure.Compute" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:745 -msgid "Discovery Cloud AWS EC2" -msgstr "Cloud AWS EC2 の自動検出" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:749 -msgid "Cloud.AWS.EC2" -msgstr "Cloud.AWS.EC2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:758 -msgid "Discovery Cloud RDS" -msgstr "Cloud RDS の自動検出" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:762 -msgid "Discovery.Cloud.Aws.RDS" -msgstr "Discovery.Cloud.Aws.RDS" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:771 -msgid "Discovery Cloud S3" -msgstr "クラウド検出 S3" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:775 -msgid "Discovery.Cloud.Aws.S3" -msgstr "クラウド検出 AWS.S3" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 -msgid "Discovery Applications MySQL" -msgstr "MySQL アプリケーションの自動検出" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:788 -msgid "Discovery.App.MySQL" -msgstr "Discovery.App.MySQL" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 -msgid "Discovery Applications Oracle" -msgstr "Oracle アプリケーションの自動検出" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 -msgid "Discovery.App.Oracle" -msgstr "Discovery.App.Oracle" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:810 -msgid "Discovery Applications DB2" -msgstr "アプリケーション検出 DB2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:814 -msgid "Discovery.App.DB2" -msgstr "検出.App.DB2" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 -msgid "Discovery.Agent.Deployment" -msgstr "Discovery.Agent.Deployment" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:833 -msgid "Discovery Applications Microsoft SQL Server" -msgstr "アプリケーション検出 Microsoft SQL Server" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 -msgid "Discovery.App.Microsoft SQL Server" -msgstr "検出.App.Microsoft SQL Server" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:846 -msgid "Discovery NetScan" -msgstr "NetScan 自動検出" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:850 -msgid "Discovery.NetScan" -msgstr "Discovery.NetScan" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:896 -msgid "Not executed yet" -msgstr "未実行" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:920 -msgid "View summary" -msgstr "概要表示" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:941 -msgid "View map" -msgstr "マップ表示" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:965 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 -msgid "Edit task" -msgstr "タスク編集" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001 -msgid "Delete task" -msgstr "タスク削除" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014 -msgid "enable task" -msgstr "タスク有効化" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 -msgid "has no discovery tasks assigned" -msgstr "に自動検出タスクが割り当てられていません。" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050 -msgid "Server Tasks" -msgstr "サーバタスク" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197 -msgid "Overall Progress" -msgstr "全体の進捗" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216 -msgid "Scanning network" -msgstr "ネットワークスキャン中" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220 -msgid "Checking" -msgstr "確認中" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224 -msgid "Finding AFT connectivity" -msgstr "AFT 接続検出中" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228 -msgid "Finding traceroute connectivity" -msgstr "traceroute 到達性検出中" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232 -msgid "Finding gateway connectivity" -msgstr "ゲートウェイ到達性検出中" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236 -msgid "Searching for devices..." -msgstr "デバイスを検索中..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240 -msgid "Analyzing application..." -msgstr "アプリケーションの分析中..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244 -msgid "Executing custom queries..." -msgstr "カスタムクエリの実行中..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248 -msgid "Testing modules..." -msgstr "モジュールのテスト中..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252 -msgid "Processing results..." -msgstr "結果の処理中..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256 -msgid "Processing..." -msgstr "処理中..." - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369 -msgid "Host&devices total" -msgstr "全ホスト&デバイス" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374 -msgid "Agents monitored" -msgstr "監視対象エージェント" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379 -msgid "Agents pending" -msgstr "保留中エージェント" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386 -msgid "Hosts discovered" -msgstr "ホストが見つかりました" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402 -msgid "Responding SNMP" -msgstr "SNMP 応答" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 -msgid "Responding WMI" -msgstr "WMI 応答" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452 -msgid "Task completed." -msgstr "タスク完了" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 -msgid "This task has never executed" -msgstr "このタスクは一度も実行されていません" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466 -msgid "Task queued, please wait." -msgstr "タスクがキューに入っています。お待ちください。" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510 -msgid "" -"Please ensure instances or regions are being monitorized and 'scan and general " -"monitoring' is enabled." -msgstr "" -"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有効に" -"なっていることを確認してください。" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670 -msgid "Invalid task" -msgstr "不正なタスク" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627 -msgid "Please select devices to be monitored" -msgstr "監視するデバイスを選択してください" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630 -msgid "select all" -msgstr "全て選択" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633 -msgid "deselect all" -msgstr "全て未選択" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636 -msgid "expand all" -msgstr "すべて展開" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639 -msgid "collapse all" -msgstr "すべて折りたたむ" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653 -msgid "No devices found in temporary resources, please re-launch." -msgstr "一時リソースにデバイスが見つかりません。再実行してください。" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720 -#, php-format -msgid "Your selection exceeds the agents available on your license. Limit %d" -msgstr "選択内容がライセンスで利用可能なエージェント数を超えています。制限: %d" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763 -msgid "Removed" -msgstr "削除済" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800 -msgid "No changes. Re-Scheduled" -msgstr "変更なし。再スケジュール" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 -msgid "Scheduled for creation" -msgstr "作成予定" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829 -msgid "Cancelled" -msgstr "取消済" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830 -msgid "Server has been restarted while executing this task, please retry." -msgstr "このタスクの実行中にサーバが再起動されました。再試行してください。" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858 -msgid "Not started" -msgstr "開始していません" - -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -msgid "Searching" -msgstr "検索中" - -#: ../../godmode/agentes/module_manager_editor_web.php:155 -msgid "Debug remotely this module" -msgstr "このモジュールをリモートデバッグ" - -#: ../../godmode/agentes/module_manager_editor_web.php:158 -msgid "Debug this module once it has been initialized" -msgstr "初期化されたら、このモジュールをデバッグ" - -#: ../../godmode/agentes/module_manager_editor_web.php:205 -msgid "Requests" -msgstr "リクエスト" - -#: ../../godmode/agentes/module_manager_editor_web.php:208 -msgid "Agent browser id" -msgstr "エージェントブラウザID" - -#: ../../godmode/agentes/module_manager_editor_web.php:214 -msgid "HTTP auth (login)" -msgstr "HTTP 認証 (ログイン)" - -#: ../../godmode/agentes/module_manager_editor_web.php:217 -msgid "HTTP auth (password)" -msgstr "HTTP 認証(パスワード)" - -#: ../../godmode/agentes/module_manager_editor_web.php:231 -msgid "Proxy auth (login)" -msgstr "プロキシ認証(ログイン)" - -#: ../../godmode/agentes/module_manager_editor_web.php:235 -msgid "Proxy auth (pass)" -msgstr "プロキシ認証(パスワード)" - -#: ../../godmode/agentes/module_manager_editor_web.php:242 -msgid "Proxy auth (server)" -msgstr "プロキシ認証(サーバ)" - -#: ../../godmode/agentes/module_manager_editor_web.php:246 -msgid "Proxy auth (realm)" -msgstr "プロキシ認証(レルム)" - -#: ../../godmode/agentes/module_manager_editor_web.php:258 -msgid "There isn't get or post" -msgstr "get または post がありません" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -msgid "Optional. WMI namespace. If unsure leave blank." -msgstr "オプション。WMI 名前空間。不明な場合は空白のままにします。" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -msgid "" -"Optional. Substring to look for in the WQL query result. The module returns 1 if " -"found, 0 if not." -msgstr "" -"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 を返" -"し、見つからない場合は 0 を返します。" - -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -msgid "Column number to retrieve from the WQL query result (starting from zero)." -msgstr "WQL クエリ結果から取得する列番号(ゼロから開始)。" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 -msgid "Source module" -msgstr "対象モジュール" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:148 -#: ../../godmode/agentes/module_manager_editor_prediction.php:169 -msgid "Select Module" -msgstr "モジュールの選択" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:195 -msgid "Calculation type" -msgstr "計算タイプ" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:203 -msgid "Estimated absolute value" -msgstr "推定絶対値" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:204 -msgid "Calculation of days to reach limit" -msgstr "制限に達するまでの日数の計算" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:213 -msgid "Future estimation" -msgstr "将来の見積" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:228 -msgid "Limit value" -msgstr "制限値" - -#: ../../godmode/agentes/module_manager.php:130 -msgid "Create a new data server module" -msgstr "データサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:132 -msgid "Create a new network server module" -msgstr "ネットワークサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:136 -msgid "Create a new plugin server module" -msgstr "プラグインサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:140 -msgid "Create a new WMI server module" -msgstr "WMI サーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:144 -msgid "Create a new prediction server module" -msgstr "予測サーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:148 -msgid "Create a new web Server module" -msgstr "ウェブサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:211 -msgid "

    Type

    " -msgstr "

    タイプ

    " - -#: ../../godmode/agentes/module_manager.php:241 -msgid "Get more modules on Monitoring Library" -msgstr "ライブラリからモジュールを取得" - -#: ../../godmode/agentes/module_manager.php:280 -msgid "There was a problem completing the operation" -msgstr "処理が正しく終了しませんでした。" - -#: ../../godmode/agentes/module_manager.php:437 -#: ../../godmode/agentes/module_manager.php:478 -#, php-format -msgid "There was a problem completing the operation. Applied to 0/%d modules." -msgstr "処理が正しく終了しませんでした。 0 /%d モジュールに適用されます。" - -#: ../../godmode/agentes/module_manager.php:443 -#: ../../godmode/agentes/module_manager.php:484 -msgid "Operation finished successfully." -msgstr "処理が正常に終了しました。" - -#: ../../godmode/agentes/module_manager.php:447 -#: ../../godmode/agentes/module_manager.php:488 -#, php-format -msgid "There was a problem completing the operation. Applied to %d/%d modules." -msgstr "処理が正しく完了しませんでした。%d/%d モジュールに適用されます。" - -#: ../../godmode/agentes/module_manager.php:868 -msgid "Del." -msgstr "削除" - -#: ../../godmode/agentes/module_manager.php:1180 -msgid "Normalize" -msgstr "正規化" - -#: ../../godmode/agentes/module_manager.php:1190 -msgid "Normalize (Disabled)" -msgstr "正規化 (無効)" - -#: ../../godmode/agentes/module_manager.php:1214 -msgid "Create network component (Disabled)" -msgstr "ネットワークコンポーネントの作成 (無効)" - -#: ../../godmode/agentes/module_manager.php:1274 -msgid "Execute action" -msgstr "アクション実行" - -#: ../../godmode/agentes/configure_field.php:41 -msgid "Update agent custom field" -msgstr "エージェントカスタムフィールドの更新" - -#: ../../godmode/agentes/configure_field.php:43 -msgid "Create agent custom field" -msgstr "エージェントカスタムフィールドの作成" - -#: ../../godmode/agentes/configure_field.php:55 -#: ../../godmode/agentes/configure_field.php:59 -#: ../../godmode/agentes/configure_field.php:63 -#: ../../godmode/agentes/configure_field.php:67 -msgid "Agent Custom Fields Information" -msgstr "エージェントカスタムフィールド情報" - -#: ../../godmode/agentes/configure_field.php:56 -msgid "" -"You cannot set the Password type until you clear the combo values and click on update " -"button." -msgstr "" -"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定することはでき" -"ません。" - -#: ../../godmode/agentes/configure_field.php:60 -msgid "" -"You cannot unset the enable combo until you clear the combo values and click on " -"update." -msgstr "" -"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできません。" - -#: ../../godmode/agentes/configure_field.php:64 -msgid "If you select Enabled combo the Password type will be disabled." -msgstr "有効な設定を選択すると、パスワードタイプは無効になります。" - -#: ../../godmode/agentes/configure_field.php:68 -msgid "If you select Passord type the Enabled combo will be disabled." -msgstr "パスワードを選択すると、有効な設定が無効化されます。" - -#: ../../godmode/agentes/configure_field.php:84 -msgid "Pass type" -msgstr "パスタイプ" - -#: ../../godmode/agentes/configure_field.php:85 -msgid "" -"The fields with pass type enabled will be displayed like html input type pass in html" -msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" - -#: ../../godmode/agentes/configure_field.php:106 -msgid "Enabled combo" -msgstr "有効な設定" - -#: ../../godmode/agentes/configure_field.php:118 -msgid "Combo values" -msgstr "選択肢" - -#: ../../godmode/agentes/configure_field.php:119 -msgid "Set values separated by comma" -msgstr "カンマ区切りで値を設定" - -#: ../../godmode/agentes/module_manager_editor_common.php:108 -msgid "Using module component" -msgstr "モジュールコンポーネント" - -#: ../../godmode/agentes/module_manager_editor_common.php:413 -msgid "Warning threshold" -msgstr "警告閾値" - -#: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/agentes/module_manager_editor_common.php:476 -msgid "Min. " -msgstr "最小 " - -#: ../../godmode/agentes/module_manager_editor_common.php:474 -msgid "Critical threshold" -msgstr "障害閾値" - -#: ../../godmode/agentes/module_manager_editor_common.php:673 -msgid "Dynamic Threshold Interval" -msgstr "動的しきい値の間隔" - -#: ../../godmode/agentes/module_manager_editor_common.php:700 -msgid "Dynamic Threshold Min. " -msgstr "最小動的しきい値 " - -#: ../../godmode/agentes/module_manager_editor_common.php:713 -msgid "Dynamic Threshold Max. " -msgstr "最大動的しきい値 " - -#: ../../godmode/agentes/module_manager_editor_common.php:726 -msgid "Dynamic Threshold Two Tailed: " -msgstr "2つの動的しきい値を使う: " - -#: ../../godmode/agentes/module_manager_editor_common.php:737 -msgid "Not needed" -msgstr "不要です。" - -#: ../../godmode/agentes/module_manager_editor_common.php:1035 -msgid "Tags from policy" -msgstr "ポリシーからのタグ" - -#: ../../godmode/agentes/module_manager_editor_common.php:1075 -msgid "Cascade Protection Services" -msgstr "サービス関連障害検知抑制" - -#: ../../godmode/agentes/module_manager_editor_common.php:1109 -#: ../../godmode/agentes/module_manager_editor_common.php:1117 -#: ../../godmode/agentes/module_manager_editor_common.php:1126 -msgid "Cron from" -msgstr "Cron 開始" - -#: ../../godmode/agentes/module_manager_editor_common.php:1113 -#: ../../godmode/agentes/module_manager_editor_common.php:1121 -#: ../../godmode/agentes/module_manager_editor_common.php:1130 -msgid "Cron to" -msgstr "Cron 終了" - -#: ../../godmode/agentes/module_manager_editor_common.php:1166 -msgid "Module parent" -msgstr "モジュールの親" - -#: ../../godmode/agentes/module_manager_editor_common.php:1264 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -msgid "Direct" -msgstr "直接" - -#: ../../godmode/agentes/module_manager_editor_common.php:1266 -msgid "Rel. type" -msgstr "関係タイプ" - -#: ../../godmode/agentes/module_manager_editor_common.php:1281 -msgid "Add relationship" -msgstr "関係の追加" - -#: ../../godmode/agentes/module_manager_editor_common.php:1306 -msgid "Changes" -msgstr "変更" - -#: ../../godmode/agentes/status_monitor_custom_fields.php:125 -msgid "Show monitor detail fields" -msgstr "監視詳細フィールド表示" - -#: ../../godmode/agentes/configurar_agente.php:243 -#: ../../godmode/agentes/configurar_agente.php:1040 -msgid "No agent alias specified" -msgstr "エージェントの別名が定義されていません" - -#: ../../godmode/agentes/configurar_agente.php:246 -msgid "Agent cannot be created due to the maximum agent limit for this group" -msgstr "このグループのエージェント上限のため、エージェントを作成できません" - -#: ../../godmode/agentes/configurar_agente.php:352 -msgid "Could not be created, because name already exists" -msgstr "名前がすでに存在するため、作成できませんでした。" - -#: ../../godmode/agentes/configurar_agente.php:354 -msgid "Could not be created, because IP already exists" -msgstr "IP はすでに存在するため作成できません" - -#: ../../godmode/agentes/configurar_agente.php:744 -msgid "Gis" -msgstr "GIS" - -#: ../../godmode/agentes/configurar_agente.php:786 -msgid "SNMP explorer" -msgstr "SNMPエクスプローラ" - -#: ../../godmode/agentes/configurar_agente.php:827 -msgid "Agent manager" -msgstr "エージェントマネージャ" - -#: ../../godmode/agentes/configurar_agente.php:912 -#: ../../godmode/agentes/configurar_agente.php:916 -msgid "No data to normalize" -msgstr "正規化するデータがありません。" - -#: ../../godmode/agentes/configurar_agente.php:921 -#, php-format -msgid "Deleted data above %f" -msgstr "%f を超えるデータを削除しました。" - -#: ../../godmode/agentes/configurar_agente.php:922 -#, php-format -msgid "Error normalizing module %s" -msgstr "モジュール %s において正規化に失敗しました。" - -#: ../../godmode/agentes/configurar_agente.php:1050 -#, php-format -msgid "The group id %d is incorrect." -msgstr "グループ ID %d は不正です。" - -#: ../../godmode/agentes/configurar_agente.php:1052 -msgid "Agent cannot be updated due to the maximum agent limit for this group" -msgstr "このグループのエージェント上限のため、エージェントを更新できません" - -#: ../../godmode/agentes/configurar_agente.php:1054 -msgid "Duplicate main IP address" -msgstr "メイン IP が重複しています" - -#: ../../godmode/agentes/configurar_agente.php:1106 -msgid "There was a problem updating the agent" -msgstr "エージェントの更新に失敗しました。" - -#: ../../godmode/agentes/configurar_agente.php:1199 -msgid "There was a problem loading the agent" -msgstr "エージェントのロードに失敗しました。" - -#: ../../godmode/agentes/configurar_agente.php:1709 -msgid "" -"There was a problem updating module. Another module already exists with the same name." -msgstr "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" - -#: ../../godmode/agentes/configurar_agente.php:1713 -msgid "There was a problem updating module. Some required fields are missed: (name)" -msgstr "" -"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" - -#: ../../godmode/agentes/configurar_agente.php:1717 -msgid "There was a problem updating module. \"No change\"" -msgstr "モジュールの更新で問題が発生しました。\"変更点がありません\"" - -#: ../../godmode/agentes/configurar_agente.php:1723 -msgid "There was a problem updating module. Processing error" -msgstr "モジュールの更新で問題が発生しました。処理エラー" - -#: ../../godmode/agentes/configurar_agente.php:1752 -msgid "Module successfully updated" -msgstr "モジュールの更新が完了しました。" - -#: ../../godmode/agentes/configurar_agente.php:1899 -msgid "" -"There was a problem adding module. Another module already exists with the same name." -msgstr "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" - -#: ../../godmode/agentes/configurar_agente.php:1903 -msgid "There was a problem adding module. Some required fields are missed : (name)" -msgstr "" -"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" - -#: ../../godmode/agentes/configurar_agente.php:1909 -msgid "There was a problem adding module. Processing error" -msgstr "モジュールの追加で問題が発生しました。処理エラー" - -#: ../../godmode/agentes/configurar_agente.php:2089 -msgid "There was a problem deleting the module" -msgstr "モジュールの削除に失敗しました。" - -#: ../../godmode/agentes/configurar_agente.php:2093 -msgid "Module deleted succesfully" -msgstr "モジュールを削除しました。" - -#: ../../godmode/agentes/configurar_agente.php:2339 -#: ../../godmode/agentes/configurar_agente.php:2351 -msgid "Invalid tab specified" -msgstr "不正なタブが指定されました" - -#: ../../godmode/agentes/agent_manager.php:241 -msgid "Delete agent" -msgstr "エージェント削除" - -#: ../../godmode/agentes/agent_manager.php:272 -msgid "QR Code Agent view" -msgstr "エージェント表示 QR コード" - -#: ../../godmode/agentes/agent_manager.php:293 -msgid "Use alias as name" -msgstr "名前に別名を利用" - -#: ../../godmode/agentes/agent_manager.php:335 -msgid "Primary group" -msgstr "プライマリグループ" - -#: ../../godmode/agentes/agent_manager.php:520 -msgid "Cascade protection services" -msgstr "サービス関連障害検知抑制" - -#: ../../godmode/agentes/agent_manager.php:609 -msgid "Disabled mode" -msgstr "無効化モード" - -#: ../../godmode/agentes/agent_manager.php:706 -msgid "Update new GIS data:" -msgstr "新たな GIS データ更新:" - -#: ../../godmode/agentes/agent_manager.php:764 -msgid "Click to display" -msgstr "クリックして表示" - -#: ../../godmode/agentes/agent_manager.php:1016 -msgid "Secondary group cannot be primary too." -msgstr "セカンダリグループはプライマリにできません。" - -#: ../../godmode/agentes/planned_downtime.export_csv.php:202 -#: ../../godmode/agentes/planned_downtime.list.php:574 -msgid "No scheduled downtime" -msgstr "計画停止がありません" - -#: ../../godmode/agentes/module_manager_editor.php:718 -msgid "Invalid module type" -msgstr "不正なモジュールタイプ" - -#: ../../godmode/agentes/module_manager_editor.php:762 -msgid "Module relations" -msgstr "モジュール関係" - -#: ../../godmode/agentes/module_manager_editor.php:852 -msgid "No module to predict" -msgstr "予測モジュールがありません。" - -#: ../../godmode/agentes/module_manager_editor.php:862 -msgid "No plug-in provided" -msgstr "プラグインがありません" - -#: ../../godmode/agentes/module_manager_editor.php:872 -msgid "No server provided" -msgstr "サーバがありません" - -#: ../../godmode/agentes/module_manager_editor.php:903 -msgid "" -"Error, The field name and name in module_name in data configuration are different." -msgstr "エラー、データ設定におけるフィールド名と module_name 内の名前が異なります。" - -#: ../../godmode/agentes/module_manager_editor.php:941 -msgid "The File APIs are not fully supported in this browser." -msgstr "このブラウザでは、ファイル API は完全にはサポートされていません。" - -#: ../../godmode/agentes/module_manager_editor.php:942 -msgid "Couldn`t find the fileinput element." -msgstr "ファイル入力要素がみつかりません。" - -#: ../../godmode/agentes/module_manager_editor.php:943 -msgid "This browser doesn`t seem to support the files property of file inputs." -msgstr "" -"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。" - -#: ../../godmode/agentes/module_manager_editor.php:944 -msgid "Please select a file before clicking Load" -msgstr "読み込みをクリックする前にファイルを選択してください。" - -#: ../../godmode/agentes/planned_downtime.editor.php:208 -#: ../../godmode/agentes/planned_downtime.editor.php:1123 -#: ../../godmode/agentes/planned_downtime.editor.php:1258 -msgid "This elements cannot be modified while the downtime is being executed" -msgstr "計画停止実行中は、この要素は変更できません。" - -#: ../../godmode/agentes/planned_downtime.editor.php:583 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "静観: モジュールはイベント生成やアラートの発報を行いません" - -#: ../../godmode/agentes/planned_downtime.editor.php:583 -msgid "Disable Agents: Disables the selected agents." -msgstr "エージェント無効化: 選択したエージェントを無効化します。" - -#: ../../godmode/agentes/planned_downtime.editor.php:583 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "アラートのみ無効化: 選択したエージェントのアラートを無効化します。" - -#: ../../godmode/agentes/planned_downtime.editor.php:589 -#: ../../godmode/agentes/planned_downtime.list.php:656 -msgid "Disabled Agents" -msgstr "エージェント無効化" - -#: ../../godmode/agentes/planned_downtime.editor.php:590 -#: ../../godmode/agentes/planned_downtime.list.php:657 -msgid "Disabled only Alerts" -msgstr "アラートのみ無効化" - -#: ../../godmode/agentes/planned_downtime.editor.php:606 -#: ../../godmode/agentes/planned_downtime.list.php:318 -msgid "Once" -msgstr "一回のみ" - -#: ../../godmode/agentes/planned_downtime.editor.php:607 -#: ../../godmode/agentes/planned_downtime.list.php:319 -#: ../../godmode/agentes/planned_downtime.list.php:664 -msgid "Periodically" -msgstr "定期的" - -#: ../../godmode/agentes/planned_downtime.editor.php:622 -msgid "Configure the time" -msgstr "時間設定" - -#: ../../godmode/agentes/planned_downtime.editor.php:641 -msgid "Type Periodicity:" -msgstr "定期実行タイプ:" - -#: ../../godmode/agentes/planned_downtime.editor.php:673 -msgid "From day:" -msgstr "開始日:" - -#: ../../godmode/agentes/planned_downtime.editor.php:687 -msgid "To day:" -msgstr "終了日:" - -#: ../../godmode/agentes/planned_downtime.editor.php:706 -msgid "From hour:" -msgstr "開始時間:" - -#: ../../godmode/agentes/planned_downtime.editor.php:719 -msgid "To hour:" -msgstr "終了時間:" - -#: ../../godmode/agentes/planned_downtime.editor.php:795 -msgid "Group filter" -msgstr "グループフィルタ" - -#: ../../godmode/agentes/planned_downtime.editor.php:829 -msgid "Available modules:" -msgstr "存在するモジュール:" - -#: ../../godmode/agentes/planned_downtime.editor.php:830 -msgid "Only for type Quiet for downtimes." -msgstr "静観タイプの場合のみ" - -#: ../../godmode/agentes/planned_downtime.editor.php:888 -msgid "Agents planned for this downtime" -msgstr "この計画停止が予定される対象エージェント" - -#: ../../godmode/agentes/planned_downtime.editor.php:906 -msgid "There are no agents" -msgstr "エージェントがありません" - -#: ../../godmode/agentes/planned_downtime.editor.php:948 -msgid "All alerts" -msgstr "全アラート" - -#: ../../godmode/agentes/planned_downtime.editor.php:950 -msgid "Entire agent" -msgstr "エージェント全体" - -#: ../../godmode/agentes/planned_downtime.editor.php:953 -#: ../../godmode/agentes/planned_downtime.editor.php:1075 -msgid "All modules" -msgstr "全モジュール" - -#: ../../godmode/agentes/planned_downtime.editor.php:955 -#: ../../godmode/agentes/planned_downtime.editor.php:1067 -#: ../../godmode/agentes/planned_downtime.editor.php:1071 -msgid "Some modules" -msgstr "いくつかのモジュール" - -#: ../../godmode/agentes/planned_downtime.editor.php:1021 -msgid "Add Module:" -msgstr "モジュール追加:" - -#: ../../godmode/agentes/planned_downtime.editor.php:1523 -msgid "" -"WARNING: If you edit this scheduled downtime, the data of future SLA reports may be " -"altered" -msgstr "警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます" - -#: ../../godmode/agentes/planned_downtime.list.php:206 -msgid "An error occurred stopping the scheduled downtime" -msgstr "計画停止の中止中にエラーが発生しました" - -#: ../../godmode/agentes/planned_downtime.list.php:233 -msgid "This scheduled downtime is running" -msgstr "この計画停止を実行中" - -#: ../../godmode/agentes/planned_downtime.list.php:333 -msgid "Show past downtimes" -msgstr "終了した計画停止の表示" - -#: ../../godmode/agentes/planned_downtime.list.php:610 -msgid "Name #Ag." -msgstr "名前" - -#: ../../godmode/agentes/planned_downtime.list.php:617 -msgid "Affected" -msgstr "対象" - -#: ../../godmode/agentes/planned_downtime.list.php:622 -#: ../../godmode/agentes/planned_downtime.list.php:725 -#: ../../godmode/agentes/planned_downtime.list.php:731 -msgid "Stop downtime" -msgstr "計画停止の中止" - -#: ../../godmode/agentes/planned_downtime.list.php:663 -msgid "once" -msgstr "一回" - -#: ../../godmode/agentes/planned_downtime.list.php:678 -msgid "Not running" -msgstr "停止中" - -#: ../../godmode/agentes/planned_downtime.list.php:696 -msgid "Agents / Modules affected" -msgstr "対象エージェント/モジュール" - -#: ../../godmode/agentes/planned_downtime.list.php:705 -msgid "Agents and modules affected" -msgstr "対象エージェントとモジュール" - -#: ../../godmode/agentes/planned_downtime.list.php:903 -msgid "" -"WARNING: If you delete this scheduled downtime, it will not be taken into account in " -"future SLA reports" -msgstr "警告: この計画停止を削除すると、将来の SLA レポートには考慮されません" - -#: ../../godmode/agentes/planned_downtime.list.php:909 -msgid "WARNING: There are malformed scheduled downtimes" -msgstr "警告: 不正な計画停止があります" - -#: ../../godmode/agentes/planned_downtime.list.php:909 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "不正な要素を自動的に移動しますか。" - -#: ../../godmode/agentes/agent_conf_gis.php:50 -msgid "" -"There is no GIS data for this agent, so it's positioned in default position of map." -msgstr "" -"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配置し" -"ます。" - -#: ../../godmode/agentes/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:67 -msgid "Agent position" -msgstr "エージェントの位置" - -#: ../../godmode/agentes/agent_conf_gis.php:73 -msgid "Latitude: " -msgstr "緯度: " - -#: ../../godmode/agentes/agent_conf_gis.php:90 -msgid "Longitude: " -msgstr "経度: " - -#: ../../godmode/agentes/agent_conf_gis.php:107 -msgid "Altitude: " -msgstr "高度: " - -#: ../../godmode/agentes/fields_manager.php:30 -msgid "Agents custom fields manager" -msgstr "エージェントカスタムフィールド管理" - -#: ../../godmode/agentes/fields_manager.php:48 -msgid "The name must be unique" -msgstr "名前はユニークである必要があります" - -#: ../../godmode/agentes/fields_manager.php:59 -msgid "Field successfully created" -msgstr "フィールドを作成しました。" - -#: ../../godmode/agentes/fields_manager.php:80 -msgid "Field successfully updated" -msgstr "フィールドを更新しました。" - -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem modifying field" -msgstr "フィールドの修正で問題が発生しました。" - -#: ../../godmode/agentes/fields_manager.php:94 -msgid "There was a problem deleting field" -msgstr "フィールドの削除で問題が発生しました。" - -#: ../../godmode/agentes/fields_manager.php:96 -msgid "Field successfully deleted" -msgstr "フィールドを削除しました。" - -#: ../../godmode/agentes/fields_manager.php:168 -msgid "Create field" -msgstr "フィールド作成" - -#: ../../godmode/agentes/agent_incidents.php:69 -msgid "No incidents associated to this agent" -msgstr "このエージェントに関連付けられたインシデントがありません" - -#: ../../godmode/agentes/agent_incidents.php:90 -msgid "Incident" -msgstr "インシデント" - -#: ../../godmode/agentes/agent_template.php:156 -msgid "Error adding modules" -msgstr "モジュールを追加できませんでした。" - -#: ../../godmode/agentes/agent_template.php:158 -msgid "Error adding modules. The following errors already exists: " -msgstr "モジュールを追加できませんでした。次のモジュールは存在します: " - -#: ../../godmode/agentes/agent_template.php:188 -msgid "Assign" -msgstr "割当" - -#: ../../godmode/agentes/module_manager_editor_network.php:266 -msgid "SNMP walk" -msgstr "snmpwalk" - -#: ../../godmode/agentes/module_manager_editor_network.php:448 -msgid "" -"Please use single quotation marks when necessary. \n" -"\n" -"If double quotation marks are needed, please escape them with a backslash (\\")" -msgstr "" -"必要であれば、シングルクォーテーションを使ってください。\n" -"\n" -"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープしてくださ" -"い。" - -#: ../../godmode/agentes/module_manager_editor_network.php:479 -msgid "Windows remote" -msgstr "リモート Windows" - -#: ../../godmode/agentes/modificar_agente.php:95 -#, php-format -msgid "Agents defined in %s" -msgstr "%s で定義されたエージェント" - -#: ../../godmode/agentes/modificar_agente.php:124 -#, php-format -msgid "This node is configured with centralized mode. Go to %s to delete an agent" -msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に移動し" -"ます" - -#: ../../godmode/agentes/modificar_agente.php:170 -msgid "Success deleted agent." -msgstr "エージェントを削除しました" - -#: ../../godmode/agentes/modificar_agente.php:171 -msgid "Could not be deleted." -msgstr "削除できませんでした。" - -#: ../../godmode/agentes/modificar_agente.php:186 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "confまたはmd5ファイルを削除できませんでした" - -#: ../../godmode/agentes/modificar_agente.php:320 -msgid "Show Agents" -msgstr "エージェント表示" - -#: ../../godmode/agentes/modificar_agente.php:322 -msgid "Everyone" -msgstr "全て" - -#: ../../godmode/agentes/modificar_agente.php:336 -msgid "Operative System" -msgstr "オペレーションシステム" - -#: ../../godmode/agentes/modificar_agente.php:367 -msgid "Search filter by alias, name, description, IP address or custom fields content" -msgstr "別名、名前、説明、IPドレス、カスタムフィールドの内容による検索フィルタ" - -#: ../../godmode/agentes/modificar_agente.php:648 -msgid "Remote agent configuration" -msgstr "リモートエージェント設定" - -#: ../../godmode/agentes/modificar_agente.php:648 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:858 -msgid "Edit remote config" -msgstr "リモート設定" - -#: ../../godmode/agentes/modificar_agente.php:908 -msgid "You are going to enable a cluster agent. Are you sure?" -msgstr "クラスタエージェントを有効化します。よろしいですか?" - -#: ../../godmode/agentes/modificar_agente.php:911 -msgid "Enable agent" -msgstr "エージェントの有効化" - -#: ../../godmode/agentes/modificar_agente.php:918 -msgid "You are going to disable a cluster agent. Are you sure?" -msgstr "クラスタエージェントを無効化します。よろしいですか?" - -#: ../../godmode/agentes/modificar_agente.php:921 -msgid "Disable agent" -msgstr "エージェントの無効化" - -#: ../../godmode/agentes/modificar_agente.php:931 -msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" -msgstr "警告! - クラスタエージェントを削除します。よろしいですか?" - -#: ../../godmode/alerts/configure_alert_template.php:250 -#: ../../godmode/alerts/configure_alert_template.php:254 -msgid "Conditions" -msgstr "状態" - -#: ../../godmode/alerts/configure_alert_template.php:271 -#: ../../godmode/alerts/configure_alert_template.php:275 -msgid "Advanced fields" -msgstr "拡張フィールド" - -#: ../../godmode/alerts/configure_alert_template.php:419 -#, php-format -msgid "" -"This node is configured with centralized mode. All alerts templates information is " -"read only. Go to Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は読み" -"取り専用です。 管理するには、%s に移動します。" - -#: ../../godmode/alerts/configure_alert_template.php:531 -msgid "No template name specified" -msgstr "テンプレート名が指定されていません" - -#: ../../godmode/alerts/configure_alert_template.php:712 -msgid "Reset counter for non-sustained alerts" -msgstr "アラートが継続しない場合にカウンターをリセット" - -#: ../../godmode/alerts/configure_alert_template.php:714 -msgid "" -"Enable this option if you want the counter to be reset when the alert is not being " -"fired consecutively, even if it's within the time threshold" -msgstr "" -"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタをリセッ" -"トしたい場合にこのオプションを有効化します。" - -#: ../../godmode/alerts/configure_alert_template.php:788 -msgid "" -"Unless they're left blank, the fields from the action will override those set on the " -"template." -msgstr "" -"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優先され" -"ます。" - -#: ../../godmode/alerts/configure_alert_template.php:792 -msgid "Condition type" -msgstr "条件種別" - -#: ../../godmode/alerts/configure_alert_template.php:809 -msgid "Trigger when matches the value" -msgstr "以下の値にマッチしたら、条件を満たしたと判断する。" - -#: ../../godmode/alerts/configure_alert_template.php:832 -msgid "The regular expression is valid" -msgstr "この正規表現は正しいです。" - -#: ../../godmode/alerts/configure_alert_template.php:842 -msgid "The regular expression is not valid" -msgstr "この正規表現は間違っています。" - -#: ../../godmode/alerts/configure_alert_template.php:897 -msgid "Alert recovery" -msgstr "復旧アラート" - -#: ../../godmode/alerts/configure_alert_template.php:919 -msgid "Recovery fields" -msgstr "復旧フィールド" - -#: ../../godmode/alerts/configure_alert_template.php:1136 -msgid "No wizard" -msgstr "ウィザードがありません" - -#: ../../godmode/alerts/configure_alert_template.php:1217 -#, php-format -msgid "The alert would fire when the value doesn\\'t match %s" -msgstr "値が %s にマッチしなかったときにアラートが発報します" - -#: ../../godmode/alerts/configure_alert_template.php:1221 -msgid "" -"The alert would fire when the value is not between and " -msgstr "" -"値が の間にない場合、アラートが発生しま" -"す。" - -#: ../../godmode/alerts/configure_alert_template.php:1222 -#: ../../godmode/alerts/alert_view.php:200 -msgid "The alert would fire when the value is below " -msgstr "値が より小さかったときにアラートが発報します" - -#: ../../godmode/alerts/configure_alert_template.php:1223 -#: ../../godmode/alerts/alert_view.php:205 -msgid "The alert would fire when the value is above " -msgstr "値が を超えたときにアラートが発報されます" - -#: ../../godmode/alerts/configure_alert_template.php:1226 -#: ../../godmode/alerts/alert_view.php:211 -msgid "The alert would fire when the module value changes" -msgstr "モジュールの値が変化したときにアラートが上がります。" - -#: ../../godmode/alerts/configure_alert_template.php:1227 -#: ../../godmode/alerts/alert_view.php:213 -msgid "The alert would fire when the module value does not change" -msgstr "モジュールの値が変化しなかったときにアラートが上がります。" - -#: ../../godmode/alerts/configure_alert_template.php:1228 -#: ../../godmode/alerts/alert_view.php:230 -msgid "The alert would fire when the module is in unknown status" -msgstr "モジュールが不明状態になるとアラートが発生します。" - -#: ../../godmode/alerts/configure_alert_template.php:1229 -msgid "The alert template cannot have the same value for min and max thresholds." -msgstr "アラートテンプレートは最小と最大の閾値に同じ値を設定できません。" - -#: ../../godmode/alerts/configure_alert_template.php:1230 -#: ../../godmode/alerts/alert_view.php:226 -msgid "The alert would fire when the module is in not normal status" -msgstr "モジュールが正常状態でない場合にアラートが発報されます。" - -#: ../../godmode/alerts/configure_alert_template.php:1407 -msgid "" -"The alert would fire when the module is in unknown status. Warning: unknown_updates " -"of pandora_server.conf must be equal to 1" -msgstr "" -"モジュールのステータスが不明の場合、アラートが発生します。 警告: pandora_server.conf " -"の unknown_updates を 1 にする必要があります" - -#: ../../godmode/alerts/alert_list.list.php:123 -msgid "Field content" -msgstr "フィールドの内容" - -#: ../../godmode/alerts/alert_list.list.php:662 ../../godmode/alerts/alert_view.php:317 -msgid "" -"The default actions will be executed every time that the alert is fired and no other " -"action is executed" -msgstr "" -"他のアクションが無い場合に、アラートが発生するたびに実行されるデフォルトのアクション。" - -#: ../../godmode/alerts/alert_list.list.php:930 -msgid "View alert advanced details" -msgstr "アラートの拡張詳細表示" - -#: ../../godmode/alerts/alert_actions.php:222 -#: ../../godmode/alerts/configure_alert_action.php:120 -#, php-format -msgid "" -"This node is configured with centralized mode. All alert actions information is read " -"only. Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は読み取" -"り専用です。管理するには %s に移動します。" - -#: ../../godmode/alerts/alert_actions.php:396 -msgid "You cannot edit this action, You don't have the permission to edit All group." -msgstr "このアクションは編集できません。'全て' グループを編集する権限がありません。" - -#: ../../godmode/alerts/alert_actions.php:407 -msgid "" -"The action and the command associated with it do not have the same group. Please " -"contact an administrator to fix it." -msgstr "" -"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連絡して" -"修正してください。" - -#: ../../godmode/alerts/alert_actions.php:465 -msgid "No alert actions configured" -msgstr "アクションが設定されていません。" - -#: ../../godmode/alerts/alert_list.builder.php:91 -msgid "Latest value" -msgstr "最新の値" - -#: ../../godmode/alerts/alert_list.builder.php:201 -msgid "Finish and view cluster" -msgstr "終了しクラスタを見る" - -#: ../../godmode/alerts/alert_templates.php:268 -#, php-format -msgid "" -"This node is configured with centralized mode. All alert templates information is " -"read only. Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は読み" -"取り専用です。管理するには %s に移動します。" - -#: ../../godmode/alerts/alert_templates.php:412 -msgid "" -"You cannot edit this alert template, You don't have the permission to edit All group." -msgstr "" -"このアラートテンプレートを編集することはできません。'全て' グループを編集する権限があ" -"りません。" - -#: ../../godmode/alerts/alert_templates.php:473 -msgid "No alert templates defined" -msgstr "アラートテンプレートが定義されていません" - -#: ../../godmode/alerts/alert_commands.php:143 -msgid "" -"For sending emails, text must be HTML format, if you want to use plain text, type it " -"between the following labels:
    "
    -msgstr ""
    -"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキストを使"
    -"いたい場合は、ラベル 
     の間に入力してください。"
    -
    -#: ../../godmode/alerts/alert_commands.php:219
    -#: ../../godmode/alerts/alert_commands.php:250
    -msgid "Text/plain"
    -msgstr "Text/plain"
    -
    -#: ../../godmode/alerts/alert_commands.php:221
    -#: ../../godmode/alerts/alert_commands.php:252
    -msgid "For sending emails only text plain"
    -msgstr "プレーンテキストのみでのメール送信"
    -
    -#: ../../godmode/alerts/alert_commands.php:235
    -#: ../../godmode/alerts/alert_commands.php:266
    -msgid "Text/html"
    -msgstr "Text/html"
    -
    -#: ../../godmode/alerts/alert_commands.php:474
    -msgid "Permissions warning"
    -msgstr "権限の警告"
    -
    -#: ../../godmode/alerts/alert_commands.php:477
    -msgid ""
    -"Command management is limited to administrator users or user profiles with "
    -"permissions PM"
    -msgstr ""
    -"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられたユーザに制"
    -"限されています"
    -
    -#: ../../godmode/alerts/alert_commands.php:494
    -msgid "Alert commands"
    -msgstr "アラートコマンド"
    -
    -#: ../../godmode/alerts/alert_commands.php:619
    -msgid " (copy)"
    -msgstr " (コピー)"
    -
    -#: ../../godmode/alerts/alert_commands.php:643
    -#: ../../godmode/alerts/configure_alert_command.php:196
    -#, php-format
    -msgid ""
    -"This node is configured with centralized mode. All alert commands information is read "
    -"only. Go to %s to manage it."
    -msgstr ""
    -"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読み取り"
    -"専用です。管理するには %s に移動します。"
    -
    -#: ../../godmode/alerts/alert_commands.php:740
    -msgid "No alert commands configured"
    -msgstr "アラートコマンドが設定されていません"
    -
    -#: ../../godmode/alerts/alert_list.php:115
    -msgid "Already added"
    -msgstr "すでに追加されています。"
    -
    -#: ../../godmode/alerts/alert_list.php:169
    -msgid "No template specified"
    -msgstr "テンプレートが指定されていません"
    -
    -#: ../../godmode/alerts/alert_list.php:480 ../../godmode/alerts/alert_view.php:83
    -#: ../../godmode/alerts/alert_view.php:84
    -msgid "List alerts"
    -msgstr "アラート一覧"
    -
    -#: ../../godmode/alerts/alert_list.php:484
    -msgid "Builder alert"
    -msgstr "アラート作成"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:60
    -msgid "Configure alert command"
    -msgstr "コマンドの作成"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:207
    -msgid "Update Command"
    -msgstr "コマンドの更新"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:207
    -#: ../../godmode/alerts/configure_alert_action.php:275
    -msgid "Create Command"
    -msgstr "コマンドの作成"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:297
    -#, php-format
    -msgid "Field %s description"
    -msgstr "フィールド %s の説明"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:325
    -#, php-format
    -msgid "Field %s values"
    -msgstr "フィールド %s の値"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:327
    -msgid "value1,tag1;value2,tag2;value3,tag3"
    -msgstr "値1,タグ1;値2,タグ2;値3,タグ3"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:363
    -msgid "Hide"
    -msgstr "隠す"
    -
    -#: ../../godmode/alerts/alert_view.php:281
    -msgid "Firing conditions"
    -msgstr "発報条件"
    -
    -#: ../../godmode/alerts/alert_view.php:305 ../../godmode/alerts/alert_view.php:339
    -msgid "Every time that the alert is fired"
    -msgstr "アラート発生のたび"
    -
    -#: ../../godmode/alerts/alert_view.php:385
    -msgid ""
    -"Select the desired action and mode to see the Firing/Recovery fields for this action"
    -msgstr ""
    -"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選択して"
    -"ください。"
    -
    -#: ../../godmode/alerts/alert_view.php:446
    -msgid "Template fields"
    -msgstr "テンプレートフィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:448
    -msgid "Triggering fields configured in template"
    -msgstr "テンプレートで設定したトリガーフィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:542
    -msgid "The alert recovering is disabled on this template."
    -msgstr "このテンプレートでは復旧アラートが無効です。"
    -
    -#: ../../godmode/alerts/alert_view.php:558
    -msgid "Recovering fields"
    -msgstr "復旧フィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:560
    -msgid "Fields passed to the command executed by this action when the alert is recovered"
    -msgstr ""
    -"アラートが復旧したときに、このアクションによって実行されるコマンドに渡されるフィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:574
    -msgid "Template recovery fields"
    -msgstr "テンプレート復旧フィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:576
    -msgid "Recovery fields configured in alert template"
    -msgstr "アラートテンプレートで設定した復旧フィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:579
    -msgid "Action recovery fields"
    -msgstr "アクション復旧フィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:581
    -msgid "Recovery fields configured in alert action"
    -msgstr "アラートアクションで設定した復旧フィールド"
    -
    -#: ../../godmode/alerts/alert_view.php:584
    -msgid "Executed on recovery"
    -msgstr "復旧時の実行"
    -
    -#: ../../godmode/alerts/alert_view.php:586
    -msgid "Fields used on execution when the alert is recovered"
    -msgstr "アラートが復旧した時に実行に使われるフィールド"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:74
    -#: ../../godmode/alerts/configure_alert_action.php:87
    -msgid "Configure alert action"
    -msgstr "アクションの作成"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:167
    -msgid "Update Action"
    -msgstr "アクションの更新"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:204
    -msgid "This action may stop working, if you change its name."
    -msgstr "名前を変更すると、このアクションは動作を停止します。"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:306
    -msgid "Recovery"
    -msgstr "復旧通知"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:330
    -msgid "Create workunit on recovery"
    -msgstr "リカバリ時のワークユニットを作成"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:331
    -msgid ""
    -"If closed status is set on recovery, a workunit will be added to the ticket in "
    -"Integria IMS rather that closing the ticket."
    -msgstr ""
    -"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットをクローズ"
    -"するのではなく、Integria IMS のチケットに追加されます。"
    -
    -#: ../../godmode/users/user_list.php:250
    -#, php-format
    -msgid "Users defined on %s"
    -msgstr "%s に定義済のユーザ"
    -
    -#: ../../godmode/users/user_list.php:287 ../../godmode/users/configure_user.php:151
    -#, php-format
    -msgid "Deleted user %s"
    -msgstr "ユーザ %s を削除しました"
    -
    -#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332
    -#: ../../godmode/users/configure_user.php:158
    -msgid "There was a problem deleting the user"
    -msgstr "ユーザの削除に失敗しました。"
    -
    -#: ../../godmode/users/user_list.php:308 ../../godmode/users/configure_user.php:173
    -#, php-format
    -msgid "Deleted user %s from metaconsole"
    -msgstr "メタコンソールから、ユーザ %s を削除しました"
    -
    -#: ../../godmode/users/user_list.php:320 ../../godmode/users/configure_user.php:184
    -#, php-format
    -msgid "Deleted user %s from %s"
    -msgstr "ユーザ %s を %s から削除しました"
    -
    -#: ../../godmode/users/user_list.php:326 ../../godmode/users/configure_user.php:190
    -#, php-format
    -msgid "Successfully deleted from %s"
    -msgstr "%s から削除しました"
    -
    -#: ../../godmode/users/user_list.php:327 ../../godmode/users/configure_user.php:191
    -#, php-format
    -msgid "There was a problem deleting the user from %s"
    -msgstr "%s からのユーザ削除で問題が発生しました"
    -
    -#: ../../godmode/users/user_list.php:341 ../../godmode/users/profile_list.php:127
    -msgid "There was a problem deleting the profile"
    -msgstr "プロファイルの削除に失敗しました。"
    -
    -#: ../../godmode/users/user_list.php:367
    -msgid "There was a problem disabling user"
    -msgstr "ユーザの無効化で問題が発生しました"
    -
    -#: ../../godmode/users/user_list.php:373
    -msgid "There was a problem enabling user"
    -msgstr "ユーザの有効化で問題が発生しました"
    -
    -#: ../../godmode/users/user_list.php:484
    -msgid "Profile / Group"
    -msgstr "プロファイル / グループ"
    -
    -#: ../../godmode/users/user_list.php:714
    -msgid "Other profiles are also assigned."
    -msgstr "他のプロファイルも割り当てられています。"
    -
    -#: ../../godmode/users/user_list.php:716
    -msgid ""
    -"Other profiles you cannot manage are also assigned. These profiles are not shown. You "
    -"cannot enable/disable or delete this user."
    -msgstr ""
    -"管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示されてい"
    -"ません。このユーザを有効/無効または削除することはできません。"
    -
    -#: ../../godmode/users/user_list.php:873 ../../godmode/users/configure_user.php:208
    -msgid "Create user"
    -msgstr "ユーザの作成"
    -
    -#: ../../godmode/users/user_list.php:876 ../../godmode/users/configure_user.php:317
     #, php-format
    -msgid "The current authentication scheme doesn't support creating users on %s"
    -msgstr "現在の認証スキーマは、%s のユーザ作成に対応していません。"
    -
    -#: ../../godmode/users/configure_user.php:206
    -msgid "Update user"
    -msgstr "ユーザ更新"
    -
    -#: ../../godmode/users/configure_user.php:403
    -msgid "User ID cannot be empty"
    -msgstr "ユーザ ID は空に設定できません。"
    -
    -#: ../../godmode/users/configure_user.php:410
    -msgid "Invalid user ID: leading or trailing blank spaces not allowed"
    -msgstr "不正なユーザID: 先頭または末尾にスペースを含めることはできません"
    -
    -#: ../../godmode/users/configure_user.php:418
    -msgid "Passwords cannot be empty"
    -msgstr "パスワードは空に設定できません。"
    -
    -#: ../../godmode/users/configure_user.php:425
    -msgid "Passwords didn't match"
    -msgstr "パスワードが一致しません。"
    -
    -#: ../../godmode/users/configure_user.php:484
    -msgid ""
    -"Strict ACL is not recommended for admin users because performance could be affected."
    -msgstr "パフォーマンスに影響するため、管理者ユーザへの厳重な ACL 設定はお勧めしません。"
    +#~ msgid "'Show events' is disabled because this %s node is set to event replication."
    +#~ msgstr ""
    +#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' は無効で"
    +#~ "す。"
     
    -#: ../../godmode/users/configure_user.php:519 ../../godmode/users/configure_user.php:806
    -msgid "Profile added successfully"
    -msgstr "プロファイルを追加しました。"
    +#~ msgid "Treshold"
    +#~ msgstr "閾値"
     
    -#: ../../godmode/users/configure_user.php:520 ../../godmode/users/configure_user.php:807
    -msgid "Profile cannot be added"
    -msgstr "プロファイルの追加に失敗しました。"
    +#~ msgid "Alert fired in module "
    +#~ msgstr "モジュールのアラートフィールド "
     
    -#: ../../godmode/users/configure_user.php:644 ../../godmode/users/configure_user.php:668
    -#: ../../godmode/users/configure_user.php:738 ../../godmode/users/configure_user.php:745
    -#: ../../godmode/users/configure_user.php:777
    -msgid "Error updating user info (no change?)"
    -msgstr "ユーザ情報の更新に失敗しました。(変更なし?)"
    +#~ msgid " is going to critical"
    +#~ msgstr " は障害状態になりました"
     
    -#: ../../godmode/users/configure_user.php:673
    -msgid "Password of the active user is required to perform password change"
    -msgstr "パスワード変更を行うには、アクティブユーザのパスワードが必要です"
    +#~ msgid " is going to warning"
    +#~ msgstr " は警告状態になりました"
     
    -#: ../../godmode/users/configure_user.php:675
    -msgid "Password of active user is not correct"
    -msgstr "アクティブユーザのパスワードが正しくありません"
    +#~ msgid " is going to unknown"
    +#~ msgstr " は不明状態になりました"
     
    -#: ../../godmode/users/configure_user.php:691
    -msgid "Passwords does not match"
    -msgstr "パスワードが一致しません。"
    +#~ msgid "Update Manager"
    +#~ msgstr "アップデートマネージャ"
     
    -#: ../../godmode/users/configure_user.php:766
    -msgid "Strict ACL is not recommended for this user. Performance could be affected."
    -msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。"
    +#~ msgid ""
    +#~ "Click  "
    +#~ "here to start the registration process"
    +#~ msgstr ""
    +#~ "登録処理を開始するには、 こちら をクリックしてください"
     
    -#: ../../godmode/users/configure_user.php:845
    -msgid "Update User"
    -msgstr "ユーザ更新"
    +#~ msgid "There are no events matching selected search filters"
    +#~ msgstr "選択した検索フィルタにマッチするイベントがありません"
     
    -#: ../../godmode/users/configure_user.php:847
    -msgid "Create User"
    -msgstr "ユーザ作成"
    +#~ msgid "Pandora System"
    +#~ msgstr "Pandora System"
     
    -#: ../../godmode/users/configure_user.php:968
    -msgid "Own password confirmation"
    -msgstr "自分自身のパスワードの確認"
    +#~ msgid "Validated but not assigned"
    +#~ msgstr "承諾済ですが未割当"
     
    -#: ../../godmode/users/configure_user.php:977
    -msgid "Global Profile"
    -msgstr "全体プロファイル"
    +#~ msgid "Agent Module"
    +#~ msgstr "エージェントモジュール"
     
    -#: ../../godmode/users/configure_user.php:985
    -msgid ""
    -"This user has permissions to manage all. An admin user should not requiere additional "
    -"group permissions, except for using Enterprise ACL."
    -msgstr ""
    -"このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、管理者ユー"
    -"ザは追加のグループパーミッション設定をすべきではありません。"
    +#~ msgid "Events replication"
    +#~ msgstr "イベント複製"
     
    -#: ../../godmode/users/configure_user.php:1000
    -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 ""
    -"このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限られた権限"
    -"を所有します。"
    +#~ msgid "Replication interval"
    +#~ msgstr "複製間隔"
     
    -#: ../../godmode/users/configure_user.php:1081
    -msgid "Search custom field view"
    -msgstr "カスタムフィールド表示検索"
    +#~ msgid "Replication limit"
    +#~ msgstr "複製制限"
     
    -#: ../../godmode/users/configure_user.php:1081
    -msgid "Load by default the selected view in custom field view"
    -msgstr "デフォルトでは、選択した表示をカスタムフィールド表示に読み込みます"
    +#~ msgid "Show events list in local console (read only)"
    +#~ msgstr "ローカルコンソールでのイベント一覧表示 (参照のみ)"
     
    -#: ../../godmode/users/configure_user.php:1098
    -msgid "Use global conf"
    -msgstr "グローバル設定を利用します。"
    +#~ msgid "Replication DB engine"
    +#~ msgstr "複製 DB エンジン"
     
    -#: ../../godmode/users/configure_user.php:1115
    -msgid "External link"
    -msgstr "外部リンク"
    +#~ msgid "Maximum of events shown"
    +#~ msgstr "最大表示イベント"
     
    -#: ../../godmode/users/configure_user.php:1208
    -msgid "Metaconsole access"
    -msgstr "メタコンソールアクセス"
    +#~ msgid "Bulk service elements operations"
    +#~ msgstr "一括サービス要素操作"
     
    -#: ../../godmode/users/configure_user.php:1226
    -msgid "Not Login"
    -msgstr "ログイン無し"
    +#~ msgid "Bulk creation"
    +#~ msgstr "一括作成"
     
    -#: ../../godmode/users/configure_user.php:1228
    -msgid "The user with not login set only can access to API."
    -msgstr "ログイン無しを設定したユーザは、API にのみアクセスできます。"
    -
    -#: ../../godmode/users/configure_user.php:1238
    -msgid "Local user"
    -msgstr "ローカルユーザ"
    -
    -#: ../../godmode/users/configure_user.php:1240
    -msgid "The user with local authentication enabled will always use local authentication."
    -msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。"
    -
    -#: ../../godmode/users/configure_user.php:1250
    -msgid "Session Time"
    -msgstr "セッション時間"
    -
    -#: ../../godmode/users/configure_user.php:1252
    -msgid ""
    -"This is defined in minutes, If you wish a permanent session should putting -1 in this "
    -"field."
    -msgstr "分単位で定義します。無制限の場合は -1 を設定してください。"
    -
    -#: ../../godmode/users/configure_user.php:1286
    -msgid "Default event filter"
    -msgstr "デフォルトイベントフィルタ"
    -
    -#: ../../godmode/users/configure_user.php:1300
    -msgid "eHorus user access enabled"
    -msgstr "eHorus ユーザアクセス有効化"
    -
    -#: ../../godmode/users/configure_user.php:1340
    -msgid "User must be created before activating double authentication."
    -msgstr "二段階認証を有効にする前に、ユーザを作成する必要があります。"
    -
    -#: ../../godmode/users/configure_user.php:1368
    -msgid "Enable agents managment"
    -msgstr "エージェント管理を有効にする"
    -
    -#: ../../godmode/users/configure_user.php:1376
    -msgid "Assigned node"
    -msgstr "割り当てノード"
    -
    -#: ../../godmode/users/configure_user.php:1376
    -msgid "Server where the agents created of this user will be placed"
    -msgstr "このユーザでエージェントが作成されたサーバです。"
    -
    -#: ../../godmode/users/configure_user.php:1385
    -msgid "Enable node access"
    -msgstr "ノードアクセスを有効にする"
    -
    -#: ../../godmode/users/configure_user.php:1385
    -msgid "With this option enabled, the user will can access to nodes console"
    -msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。"
    -
    -#: ../../godmode/users/configure_user.php:1602
    -msgid "yes"
    -msgstr "はい"
    -
    -#: ../../godmode/users/configure_user.php:1605
    -msgid "no"
    -msgstr "いいえ"
    -
    -#: ../../godmode/users/configure_user.php:1609
    -msgid "please select profile and group"
    -msgstr "プロファイルとグループを選択してください"
    -
    -#: ../../godmode/users/configure_user.php:1635
    -msgid "Deleting last profile will delete this user"
    -msgstr "最後のプロファイルを削除すると、このユーザが削除されます"
    -
    -#: ../../godmode/users/configure_user.php:1675
    -msgid ""
    -"User will be created without profiles assigned and won't be able to log in, are you "
    -"sure?"
    -msgstr ""
    -"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなります。よ"
    -"ろしいですか?"
    -
    -#: ../../godmode/users/configure_profile.php:76 ../../godmode/users/profile_list.php:84
     #, php-format
    -msgid "Profiles defined on %s"
    -msgstr "%s に定義済のプロファイル"
    -
    -#: ../../godmode/users/configure_profile.php:142
    -msgid "Create profile"
    -msgstr "プロファイル作成"
    -
    -#: ../../godmode/users/configure_profile.php:147
    -msgid "There was a problem loading profile"
    -msgstr "プロファイルの読み込みに失敗しました。"
    -
    -#: ../../godmode/users/configure_profile.php:239
    -msgid "Update profile"
    -msgstr "プロファイルを更新しました。"
    -
    -#: ../../godmode/users/configure_profile.php:249
    -msgid "Update Profile"
    -msgstr "プロファイル更新"
    -
    -#: ../../godmode/users/configure_profile.php:251
    -msgid "Create Profile"
    -msgstr "プロファイル作成"
    -
    -#: ../../godmode/users/configure_profile.php:272
    -msgid "View agents"
    -msgstr "エージェント参照"
    -
    -#: ../../godmode/users/configure_profile.php:276
    -msgid "Disable agents"
    -msgstr "エージェント無効化"
    -
    -#: ../../godmode/users/configure_profile.php:280
    -msgid "Edit agents"
    -msgstr "エージェント編集"
    -
    -#: ../../godmode/users/configure_profile.php:287
    -msgid "Edit alerts"
    -msgstr "アラート編集"
    -
    -#: ../../godmode/users/configure_profile.php:302
    -msgid "Edit events"
    -msgstr "イベント編集"
    -
    -#: ../../godmode/users/configure_profile.php:313
    -msgid "View reports"
    -msgstr "レポート表示"
    -
    -#: ../../godmode/users/configure_profile.php:317
    -msgid "Edit reports"
    -msgstr "レポート編集"
    -
    -#: ../../godmode/users/configure_profile.php:321
    -msgid "Manage reports"
    -msgstr "レポート管理"
    -
    -#: ../../godmode/users/configure_profile.php:328
    -msgid "View network maps"
    -msgstr "ネットワークマップ参照"
    +#~ msgid "last event replication: %s"
    +#~ msgstr "最新のイベントレプリケーション: %s"
     
    -#: ../../godmode/users/configure_profile.php:332
    -msgid "Edit network maps"
    -msgstr "ネットワークマップ編集"
    +#~ msgid "server connection failed"
    +#~ msgstr "サーバ接続に失敗しました"
     
    -#: ../../godmode/users/configure_profile.php:336
    -msgid "Manage network maps"
    -msgstr "ネットワークマップ管理"
    +#~ msgid "Last event replication"
    +#~ msgstr "最新のイベント複製"
     
    -#: ../../godmode/users/configure_profile.php:347
    -msgid "Edit visual console"
    -msgstr "ビジュアルコンソール編集"
    +#~ msgid "Cannot "
    +#~ msgstr "できません"
     
    -#: ../../godmode/users/configure_profile.php:351
    -msgid "Manage visual console"
    -msgstr "ビジュアルコンソール管理"
    +#~ msgid "This console is not joining any metaconsole."
    +#~ msgstr "このコンソールはどのメタコンソールにも参加していません。"
     
    -#: ../../godmode/users/configure_profile.php:363
    -msgid "View NCM data"
    -msgstr "NCM データ表示"
    -
    -#: ../../godmode/users/configure_profile.php:367
    -msgid "Operate NCM"
    -msgstr "NCM 操作"
    -
    -#: ../../godmode/users/configure_profile.php:371
    -msgid "Manage NCM"
    -msgstr "NCM 管理"
    -
    -#: ../../godmode/users/configure_profile.php:378
    -msgid "Manage users"
    -msgstr "ユーザ管理"
    -
    -#: ../../godmode/users/configure_profile.php:385
    -msgid "Manage database"
    -msgstr "データベース管理"
    -
    -#: ../../godmode/users/configure_profile.php:392
    -#, php-format
    -msgid "%s management"
    -msgstr "%s 管理"
    -
    -#: ../../godmode/users/profile_list.php:115
     #, php-format
    -msgid ""
    -"This node is configured with centralized mode. All profiles information is read only. "
    -"Go to %s to manage it."
    -msgstr ""
    -"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取り専用"
    -"です。管理には %s に移動します。"
    -
    -#: ../../godmode/users/profile_list.php:254
    -msgid "There was a problem updating this profile"
    -msgstr "プロファイルの更新に失敗しました。"
    -
    -#: ../../godmode/users/profile_list.php:257
    -msgid "Profile name cannot be empty"
    -msgstr "プロファイル名は空にできません"
    -
    -#: ../../godmode/users/profile_list.php:303 ../../godmode/users/profile_list.php:306
    -msgid "There was a problem creating this profile"
    -msgstr "プロファイルの作成に失敗しました。"
    -
    -#: ../../godmode/users/profile_list.php:456
    -msgid "There are no defined profiles"
    -msgstr "定義済のプロファイルがありません"
    -
    -#: ../../godmode/module_library/module_library_view.php:68
    -msgid "Main view"
    -msgstr "メイン表示"
    -
    -#: ../../godmode/module_library/module_library_view.php:147
    -msgid "View all categories"
    -msgstr "全カテゴリ表示"
    -
    -#: ../../godmode/module_library/module_library_view.php:158
    -msgid "More details"
    -msgstr "詳細"
    -
    -#: ../../godmode/module_library/module_library_view.php:160
    -msgid "View in Module Library"
    -msgstr "モジュールライブラリの参照"
    -
    -#: ../../godmode/module_library/module_library_view.php:161
    -msgid "No module found"
    -msgstr "モジュールが見つかりません"
    +#~ msgid "%s %s - Build %s - MR %s"
    +#~ msgstr "%s %s - ビルド %s - MR %s"
     
    -#: ../../godmode/module_library/module_library_view.php:164
    -msgid "Error loading Module Library"
    -msgstr "モジュールライブラリのロードエラー"
    +#~ msgid "Options Update Manager"
    +#~ msgstr "アップデートマネージャオプション"
     
    -#: ../../godmode/module_library/module_library_view.php:165
    -msgid "Error loading category"
    -msgstr "カテゴリ読み込みエラー"
    +#~ msgid "Offline Update Manager"
    +#~ msgstr "オフラインアップデートマネージャ"
     
    -#: ../../godmode/module_library/module_library_view.php:166
    -msgid "Error loading categories"
    -msgstr "カテゴリ読み込みエラー"
    +#~ msgid "Online Update Manager"
    +#~ msgstr "オンラインアップデートマネージャ"
     
    -#: ../../godmode/module_library/module_library_view.php:167
    -msgid "There is no such category"
    -msgstr "そのようなカテゴリがありません"
    +#~ msgid "Event replication"
    +#~ msgstr "イベント複製"
     
    -#: ../../godmode/module_library/module_library_view.php:168
    -msgid "Error loading results"
    -msgstr "結果の読み込みエラー"
    +#~ msgid "Seconds"
    +#~ msgstr "秒"
     
    -#: ../../godmode/groups/configure_group.php:87
    -#: ../../godmode/groups/configure_modu_group.php:49
    -msgid "There was a problem loading group"
    -msgstr "グループの読み込みに失敗しました。"
    +#~ msgid "Last replication at"
    +#~ msgstr "最新の複製"
     
    -#: ../../godmode/groups/configure_group.php:106
    -msgid "Update group"
    -msgstr "グループ情報の更新"
    +#~ msgid "No replication yet"
    +#~ msgstr "複製されていません"
     
    -#: ../../godmode/groups/configure_group.php:108 ../../godmode/groups/group_list.php:981
    -msgid "Create group"
    -msgstr "グループの作成"
    +#~ msgid "Only validated events"
    +#~ msgstr "承諾済イベントのみ"
     
    -#: ../../godmode/groups/configure_group.php:126 ../../godmode/groups/group_list.php:384
    -msgid "Manage agents group"
    -msgstr "エージェントグループ管理"
    +#~ msgid " Seconds"
    +#~ msgstr " 秒"
     
    -#: ../../godmode/groups/configure_group.php:138
    -msgid "Update Group"
    -msgstr "グループの更新"
    +#~ msgid "Services operations"
    +#~ msgstr "サービス操作"
     
    -#: ../../godmode/groups/configure_group.php:140
    -msgid "Create Group"
    -msgstr "グループの作成"
    +#~ msgid "Bulk services creation"
    +#~ msgstr "一括サービス作成"
     
    -#: ../../godmode/groups/configure_group.php:178
    -msgid "You have not access to the parent."
    -msgstr "親へアクセスできません"
    +#~ msgid "Bulk services deletion"
    +#~ msgstr "一括サービス削除"
     
    -#: ../../godmode/groups/configure_group.php:226
    -msgid "Group Password"
    -msgstr "グループパスワード"
    +#~ msgid "No selected agents to copy"
    +#~ msgstr "コピーするエージェントが選択されていません。"
     
    -#: ../../godmode/groups/configure_group.php:230
    -msgid "Enable alert use in this group."
    -msgstr "このグループでアラート利用を有効化"
    +#~ msgid "Making copy of configuration file for"
    +#~ msgstr "設定ファイルのコピーを作成中:"
     
    -#: ../../godmode/groups/configure_group.php:234
    -msgid "Propagate ACL"
    -msgstr "ACL の伝播"
    +#~ msgid "Error copying md5 file "
    +#~ msgstr "md5 ファイルのコピーエラー "
     
    -#: ../../godmode/groups/configure_group.php:234
    -msgid "Propagate the same ACL security into the child subgroups."
    -msgstr "子のサブグループへ同じ ACL を適用します。"
    +#~ msgid "Remote configuration management"
    +#~ msgstr "リモート設定管理"
     
    -#: ../../godmode/groups/configure_group.php:246
    -msgid "Contact information accessible through the _groupcontact_ macro"
    -msgstr "_groupcontact_ マクロで参照可能な連絡先情報"
    +#~ msgid "To agent(s):"
    +#~ msgstr "適用先エージェント:"
     
    -#: ../../godmode/groups/configure_group.php:250
    -msgid "Information accessible through the _group_other_ macro"
    -msgstr "_group_other_ マクロで参照可能な情報"
    +#~ msgid "List of OS"
    +#~ msgstr "OS 一覧"
     
    -#: ../../godmode/groups/configure_group.php:259
    -msgid "Max agents allowed"
    -msgstr "最大エージェント数"
    +#~ msgid "Online update manager"
    +#~ msgstr "オンラインアップデートマネージャ"
     
    -#: ../../godmode/groups/configure_group.php:259
    -msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
    -msgstr "このグループの最大エージェント数を設定します。0 は無制限です。"
    +#~ msgid "Update manager » Setup"
    +#~ msgstr "アップデートマネージャ > 設定"
     
    -#: ../../godmode/groups/modu_group_list.php:70
    -#, php-format
    -msgid "Module groups defined in %s"
    -msgstr "%s に定義済のモジュールグループ"
    -
    -#: ../../godmode/groups/modu_group_list.php:92
    -#, php-format
    -msgid ""
    -"This node is configured with centralized mode. All module groups information is read "
    -"only. Go to %s to manage it."
    -msgstr ""
    -"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は読み取"
    -"り専用です。管理するには %s に移動します。"
    -
    -#: ../../godmode/groups/modu_group_list.php:119 ../../godmode/groups/group_list.php:468
    -msgid "Group successfully created"
    -msgstr "グループを作成しました。"
    -
    -#: ../../godmode/groups/modu_group_list.php:122 ../../godmode/groups/group_list.php:470
    -msgid "There was a problem creating group"
    -msgstr "グループの作成に失敗しました。"
    -
    -#: ../../godmode/groups/modu_group_list.php:127
    -#: ../../godmode/groups/modu_group_list.php:163
    -msgid "Each module group must have a different name"
    -msgstr "各モジュールグループは、異なる名前でなければいけません。"
    -
    -#: ../../godmode/groups/modu_group_list.php:131
    -#: ../../godmode/groups/modu_group_list.php:167
    -msgid "Module group must have a name"
    -msgstr "モジュールグループには名前が必要です"
    -
    -#: ../../godmode/groups/modu_group_list.php:155 ../../godmode/groups/group_list.php:540
    -msgid "Group successfully updated"
    -msgstr "グループを更新しました。"
    +#~ msgid "Update manager » Offline"
    +#~ msgstr "アップデートマネージャ > オフライン"
     
    -#: ../../godmode/groups/modu_group_list.php:158 ../../godmode/groups/group_list.php:542
    -msgid "There was a problem modifying group"
    -msgstr "グループの更新に失敗しました。"
    +#~ msgid "Update manager » Online"
    +#~ msgstr "アップデートマネージャ > オンライン"
     
    -#: ../../godmode/groups/modu_group_list.php:227 ../../godmode/groups/group_list.php:723
    -msgid "There was a problem deleting group"
    -msgstr "グループの削除に失敗しました。"
    +#~ msgid "URL update manager:"
    +#~ msgstr "アップデートマネージャ URL:"
     
    -#: ../../godmode/groups/modu_group_list.php:229 ../../godmode/groups/group_list.php:720
    -msgid "Group successfully deleted"
    -msgstr "グループを削除しました。"
    +#~ msgid "Proxy server:"
    +#~ msgstr "プロキシサーバ:"
     
    -#: ../../godmode/groups/modu_group_list.php:294
    -msgid "There are no defined module groups"
    -msgstr "定義済のモジュールグループがありません"
    +#~ msgid "Proxy port:"
    +#~ msgstr "プロキシポート:"
     
    -#: ../../godmode/groups/modu_group_list.php:303
    -msgid "Create module group"
    -msgstr "モジュールグループの作成"
    +#~ msgid "Proxy user:"
    +#~ msgstr "プロキシユーザ:"
     
    -#: ../../godmode/groups/group_list.php:309
    -msgid "Tree Group view"
    -msgstr "グループツリー表示"
    +#~ msgid "Proxy password:"
    +#~ msgstr "プロキシパスワード:"
     
    -#: ../../godmode/groups/group_list.php:333
    -msgid "Credential Store"
    -msgstr "認証情報ストア"
    +#~ msgid "Custom events"
    +#~ msgstr "カスタムイベント"
     
    -#: ../../godmode/groups/group_list.php:339
    -#, php-format
    -msgid "Groups defined in %s"
    -msgstr "%s に定義済のグループ"
    -
    -#: ../../godmode/groups/group_list.php:365
    -msgid "Edit or delete groups can cause problems with synchronization"
    -msgstr "グループの編集や削除は、同期で問題が発生する可能性があります。"
    -
    -#: ../../godmode/groups/group_list.php:403
    -#, php-format
    -msgid ""
    -"This node is configured with centralized mode. All groups information is read only. "
    -"Go to %s to manage it."
    -msgstr ""
    -"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専用で"
    -"す。管理するには %s に移動します。"
    +#~ msgid "Update manager"
    +#~ msgstr "アップデートマネージャ"
     
    -#: ../../godmode/groups/group_list.php:473 ../../godmode/groups/group_list.php:545
    -msgid "Each group must have a different name"
    -msgstr "各グループは異なる名前でなければいけません"
    +#~ msgid "Update Manager offline"
    +#~ msgstr "オフラインアップデートマネージャ"
     
    -#: ../../godmode/groups/group_list.php:476 ../../godmode/groups/group_list.php:548
    -msgid "Group must have a name"
    -msgstr "グループには名前が必要です"
    +#~ msgid "Update Manager options"
    +#~ msgstr "アップデートマネージャオプション"
     
    -#: ../../godmode/groups/group_list.php:605
    -#, php-format
    -msgid "The group %s could not be deleted because it is not empty in the nodes"
    -msgstr "グループ %s はノードが空ではないため、削除できませんでした"
    -
    -#: ../../godmode/groups/group_list.php:679
    -msgid ""
    -"The group has not been deleted in the metaconsole due to an error in the node database"
    -msgstr "ノードデータベースのエラーのため、グループはメタコンソールで削除されていません"
    +#~ msgid "Update Manager journal"
    +#~ msgstr "アップデートマネージャジャーナル"
     
    -#: ../../godmode/groups/group_list.php:688
    -#, php-format
    -msgid "The group %s has been deleted in the nodes"
    -msgstr "グループ %s をノードで削除しました"
    +#~ msgid "once"
    +#~ msgstr "一回"
     
    -#: ../../godmode/groups/group_list.php:730
    -#, php-format
    -msgid "The group is not empty. It is use in %s."
    -msgstr "グループが空ではありません。%s で利用されています。"
    +#~ msgid "Global Profile"
    +#~ msgstr "全体プロファイル"
     
    -#: ../../godmode/groups/group_list.php:775 ../../godmode/groups/group_list.php:969
    -msgid "There are no defined groups"
    -msgstr "グループが定義されていません"
    +#~ msgid ""
    +#~ "This user has permissions to manage all. An admin user should not requiere "
    +#~ "additional group permissions, except for using Enterprise ACL."
    +#~ msgstr ""
    +#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、管理者"
    +#~ "ユーザは追加のグループパーミッション設定をすべきではありません。"
     
    -#: ../../godmode/groups/group_list.php:924
    -msgid "Are you sure? This group will also be deleted in all the nodes."
    -msgstr "よろしいですか? このグループはすべてのノードで削除されます。"
    +#~ 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/groups/group_list.php:930
    -msgid "The child groups will be updated to use the parent id of the deleted group"
    -msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます"
    +#~ msgid "Assigned node"
    +#~ msgstr "割り当てノード"
     
    -#: ../../godmode/groups/configure_modu_group.php:31
    -msgid "Module group management"
    -msgstr "モジュールグループ管理"
    +#~ msgid "Server where the agents created of this user will be placed"
    +#~ msgstr "このユーザでエージェントが作成されたサーバです。"
     
     #~ msgid "An error occurred while migrating the malformed scheduled downtimes"
     #~ msgstr "不正な形式の計画停止の移行中にエラーが発生しました"
    @@ -50231,9 +51564,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Create backup"
     #~ msgstr "バックアップの作成"
     
    -#~ msgid "Path to save backup"
    -#~ msgstr "バックアップを保存するパス"
    -
     #~ msgid "It is important that Apache can read and write on the selected path"
     #~ msgstr "選択したパスが Apache で読み書きできることが重要です"
     
    @@ -50657,9 +51987,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Update incident"
     #~ msgstr "更新"
     
    -#~ msgid "Add note"
    -#~ msgstr "コメントを追加"
    -
     #~ msgid "Notes attached to incident"
     #~ msgstr "コメント一覧"
     
    @@ -50718,9 +52045,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Regenerate"
     #~ msgstr "再生成"
     
    -#~ msgid "Distance between nodes"
    -#~ msgstr "ノード間隔"
    -
     #~ msgid "Separation between elements in the map (in Non-overlap mode)"
     #~ msgstr "マップ内でのエレメントの分割 (重ね合わせ無しモード)"
     
    @@ -50778,9 +52102,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Not closed"
     #~ msgstr "閉じられていません"
     
    -#~ msgid "Search string"
    -#~ msgstr "検索文字列"
    -
     #~ msgid "Workunits"
     #~ msgstr "操作単位"
     
    @@ -50827,9 +52148,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Error updating recon task"
     #~ msgstr "自動検出処理の更新に失敗しました。"
     
    -#~ msgid "Network provided is not correct"
    -#~ msgstr "指定されたネットワークは正しくありません。"
    -
     #~ msgid "Successfully created recon task"
     #~ msgstr "自動検出処理を作成しました。"
     
    @@ -50973,9 +52291,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Language code for Pandora"
     #~ msgstr "Pandoraの言語"
     
    -#~ msgid "Directory where agent remote configuration is stored."
    -#~ msgstr "エージェントのリモート設定保存ディレクトリ"
    -
     #~ msgid ""
     #~ "If SSL is not properly configured you will lose access to Pandora FMS Console. Do "
     #~ "you want to continue?"
    @@ -51551,9 +52866,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Correct module enable"
     #~ msgstr "モジュールを有効にしました"
     
    -#~ msgid "Recon task"
    -#~ msgstr "自動検出タスク"
    -
     #~ msgid "Default password for \"Admin\" user has not been changed."
     #~ msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。"
     
    @@ -52571,9 +53883,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "The module still stores data but the alerts and events will be stop"
     #~ msgstr "モジュールはデータの保存を行いますが、アラートとイベントは停止します"
     
    -#~ msgid "Cron"
    -#~ msgstr "Cron"
    -
     #~ msgid ""
     #~ "If cron is set the module interval is ignored and the module runs on the specified "
     #~ "date and time"
    @@ -52630,9 +53939,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Device"
     #~ msgstr "デバイス"
     
    -#~ msgid "Temperature"
    -#~ msgstr "温度"
    -
     #, php-format
     #~ msgid "Purge task launched for agent %s :: Data older than %s"
     #~ msgstr "エージェント %s の削除タスクを起動しました。%s より古いデータが対象です。"
    @@ -53381,9 +54687,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Profile mode"
     #~ msgstr "プロファイルモード"
     
    -#~ msgid "Profile synchronization mode."
    -#~ msgstr "プロファイル同期モード"
    -
     #~ msgid "New profile"
     #~ msgstr "新規プロファイル"
     
    @@ -54028,9 +55331,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Netflow statistics table"
     #~ msgstr "Netflow 統計表"
     
    -#~ msgid "Agent address"
    -#~ msgstr "エージェントアドレス"
    -
     #~ msgid "Agent id"
     #~ msgstr "エージェント ID"
     
    @@ -54376,9 +55676,6 @@ msgstr "モジュールグループ管理"
     #~ msgid "Problems with disable functions in PHP.INI"
     #~ msgstr "PHP.INI で無効化された機能の問題"
     
    -#~ msgid "Poling time"
    -#~ msgstr "ポーリング時間"
    -
     #~ msgid "Contact:"
     #~ msgstr "連絡先:"
     
    @@ -55520,9 +56817,6 @@ msgstr "モジュールグループ管理"
     #~ "\t\t\tおそらく、データベース名、ホスト名、ユーザ名またはパスワードの値が不正か、\n"
     #~ "\t\t\tデータベースが動作していません。"
     
    -#~ msgid "The last version of package installed is:"
    -#~ msgstr "インストールされている最新バージョンのパッケージ:"
    -
     #~ msgid "Unsuccessfull action

    " #~ msgstr "実行に失敗

    " diff --git a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php index fcca4b5968..2eed27df11 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php @@ -126,21 +126,21 @@ class GroupedMeterGraphs extends Widget * * @var array */ - private array $size; + private $size; /** * Number of boxes. * * @var float */ - private float $boxNumber; + private $boxNumber; /** * Thresholds. * * @var array */ - private array $thresholds; + private $thresholds; /** diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index d17f782663..6b9ba646fc 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -90,6 +90,7 @@ final class Container extends Model 'backgroundURL' => static::extractBackgroundUrl($data), 'relationLineWidth' => (int) $data['relationLineWidth'], 'hash' => static::extractHash($data), + 'maintenanceMode' => static::extractMaintenanceMode($data), ]; } @@ -238,6 +239,45 @@ final class Container extends Model } + /** + * Extract a background color value. + * + * @param array $data Unknown input data structure. + * + * @return mixed String representing the color (not empty) or null. + */ + private static function extractMaintenanceMode(array $data) + { + global $config; + $maintenance_mode = static::notEmptyStringOr( + static::issetInArray( + $data, + [ + 'maintenanceMode', + 'maintenance_mode', + ] + ), + null + ); + + $result = null; + if ($maintenance_mode !== null) { + $result = json_decode($maintenance_mode, true); + + $result['date'] = date( + $config['date_format'], + $result['timestamp'] + ); + + $result['timestamp'] = human_time_description_raw( + (time() - $result['timestamp']) + ); + } + + return $result; + } + + /** * Extract the "is favorite" switch value. * diff --git a/pandora_console/include/styles/omnishell.css b/pandora_console/include/styles/omnishell.css index a958eb630a..16b5fdd50a 100644 --- a/pandora_console/include/styles/omnishell.css +++ b/pandora_console/include/styles/omnishell.css @@ -398,7 +398,6 @@ li > input[type="email"], border: none; border-radius: 0; border-bottom: 1px solid #ccc; - font-weight: lighter; padding: 0px 0px 2px 0px; box-sizing: border-box; margin-bottom: 4px; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index eeff4d2fce..13e617f877 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -9119,3 +9119,37 @@ div#err_msg_centralised { margin-right: -110px; margin-top: 13px; } + +.tag-editor { + padding: 0.5em !important; +} + +.tag-editor div { + float: right !important; +} + +.tag-editor .tag-editor-tag { + padding: 5px !important; + color: #fff !important; + background: #82b92e !important; + border-radius: 0 2px 2px 0 !important; +} + +.tag-editor .tag-editor-delete { + padding: 5px !important; + line-height: 16px !important; + background: #82b92e !important; + border-radius: 2px 0 0 2px !important; +} + +.tag-editor .tag-editor-delete i { + line-height: 16pt !important; +} + +.tag-editor .tag-editor-delete i:before { + color: #fff !important; +} + +.tag-editor .tag-editor-delete:hover i:before { + color: #ccc !important; +} diff --git a/pandora_console/include/visual-console-client/maintenanceMode.png b/pandora_console/include/visual-console-client/maintenanceMode.png new file mode 100644 index 0000000000..5598e26ade Binary files /dev/null and b/pandora_console/include/visual-console-client/maintenanceMode.png differ diff --git a/pandora_console/include/visual-console-client/vc.main.css b/pandora_console/include/visual-console-client/vc.main.css index a740ae872b..00be76df37 100644 --- a/pandora_console/include/visual-console-client/vc.main.css +++ b/pandora_console/include/visual-console-client/vc.main.css @@ -7,6 +7,14 @@ margin-top: 5px; } +.is-maintenance { + background-image: url(maintenanceMode.png) !important; +} + +.is-maintenance :nth-child(1) { + display: none; +} + .visual-console-item { position: absolute; display: flex; diff --git a/pandora_console/include/visual-console-client/vc.main.css.map b/pandora_console/include/visual-console-client/vc.main.css.map index 0048da93b1..fcb0a4e4c4 100644 --- a/pandora_console/include/visual-console-client/vc.main.css.map +++ b/pandora_console/include/visual-console-client/vc.main.css.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///main.css","webpack:///FontAwesomeIcon.styles.css","webpack:///autocomplete.css","webpack:///styles.css"],"names":[],"mappings":"AAAA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,4BAA4B;EAC5B,0BAA0B;EAC1B,2BAA2B;EAC3B,eAAe;AACjB;;AAEA;EACE,kBAAkB;EAClB,aAAa;EACb,uBAAuB;EACvB,qBAAqB;EACrB,mBAAmB;EACnB,iBAAiB;EACjB,UAAU;AACZ;;AAEA;EACE,UAAU;AACZ;;AAEA;EACE,iBAAiB;EACjB,oBAAoB;AACtB;;AAEA;EACE,0BAA0B;EAC1B,4CAA4C;EAC5C,iBAAiB;AACnB;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,0BAA0B;EAC1B,YAAY;EACZ,WAAW;AACb;AACA;EACE,YAAY;EACZ,kBAAkB;EAClB,QAAQ;EACR,SAAS;EACT,WAAW;EACX,YAAY;EACZ,yCAAoC;EACpC,iBAAiB;EACjB,WAAW;AACb;;AAEA;EACE,oBAAoB;AACtB;;AAEA;EACE;IACE,uBAAuB;EACzB;EACA;IACE,wBAAwB;EAC1B;AACF;;AAEA;EACE,6BAA6B;EAC7B,gBAAgB;EAChB,qCAAqC;EACrC,uCAAuC;EACvC,wCAAwC;EACxC,4CAA4C;;EAE5C,+BAA+B;EAC/B,wBAAwB;EACxB,mCAAmC;EACnC,iCAAiC;AACnC;;AAEA;;EAEE,cAAc;EACd,WAAW;EACX,YAAY;EACZ,kBAAkB;AACpB;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;EACE,kBAAkB;EAClB,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,YAAY;EACZ,8BAA8B;EAC9B,WAAW;AACb;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,aAAa;AACf;;AAEA,QAAQ;AACR;EACE,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,eAAe;EACf,gBAAgB;EAChB,cAAc;EACd,kBAAkB;AACpB;AACA;EACE,gBAAgB;AAClB;;AAEA;;EAEE,YAAY;EACZ,eAAe;EACf,6BAA6B;EAC7B,YAAY;EACZ,gBAAgB;EAChB,6BAA6B;EAC7B,oBAAoB;EACpB,wBAAwB;EACxB,sBAAsB;EACtB,kBAAkB;EAClB,iBAAiB;AACnB;;AAEA;EACE,kBAAkB;EAClB,WAAW;EACX,YAAY;AACd;;AAEA;EACE,oBAAoB;EACpB,eAAe;AACjB;;AAEA;EACE,aAAa;EACb,sBAAsB;EACtB,eAAe;AACjB;;AAEA;EACE,WAAW;EACX,mBAAmB;EACnB,kBAAkB;AACpB;;AAEA;EACE,aAAa;EACb,sBAAsB;EACtB,eAAe;EACf,uBAAuB;AACzB;;AAEA;EACE,kBAAkB;EAClB,gBAAgB;AAClB;;AAEA;;EAEE,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,mBAAmB;AACrB;;AAEA;EACE,uBAAuB;EACvB,kBAAkB;EAClB,kBAAkB;EAClB,0BAA0B;EAC1B,cAAc;AAChB;;AAEA;EACE,iBAAiB;AACnB;;AAEA;EACE,aAAa;EACb,sBAAsB;EACtB,eAAe;EACf,uBAAuB;EACvB,8BAA8B;EAC9B,YAAY;AACd;;AAEA;EACE,kBAAkB;AACpB;;AAEA;EACE,YAAY;AACd;;AAEA;EACE,iBAAiB;AACnB;;AAEA;EACE,iBAAiB;AACnB;;AAEA;;;EAGE,sBAAsB;AACxB;;AAEA;EACE,mBAAmB;AACrB;;AAEA;EACE,WAAW;EACX,WAAW;AACb;;AAEA,+BAA+B;;AAE/B;EACE,qBAAqB;EACrB,SAAS;AACX;;AAEA;;;;EAIE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE;IACE,uBAAuB;EACzB;EACA;IACE,yBAAyB;EAC3B;AACF;;AAEA;EACE,6CAA6C;EAC7C,kBAAkB;EAClB,qBAAqB;AACvB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,yBAAyB;EACzB,mBAAmB;EACnB,gBAAgB;EAChB,yEAAyE;EACzE,kBAAkB;EAClB,UAAU;EACV,cAAc;EACd,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE,WAAW;EACX,aAAa;EACb,eAAe;EACf,sBAAsB;EACtB,gCAAgC;EAChC,6BAA6B;AAC/B;AACA;EACE,WAAW;EACX,yBAAyB;AAC3B;AACA;EACE,0DAA0D;EAC1D,uCAAuC;EACvC,cAAc;AAChB;;AAEA,kBAAkB;;AAElB;EACE,oBAAoB;EACpB,oBAAoB;EACpB,aAAa;EACb,sBAAsB;EACtB,uBAAuB;EACvB,qBAAqB;EACrB,qBAAqB;EACrB,mBAAmB;AACrB;;AAEA;EACE,0BAA0B;EAC1B,kCAAkC;EAClC,wCAAwC;AAC1C;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA,iBAAiB;;AAEjB;EACE,kBAAkB;AACpB;;AAEA;EACE,6CAA6C;AAC/C;;AAEA;EACE,8CAA8C;AAChD;;AAEA;EACE,4CAA4C;AAC9C;;AAEA;EACE,yBAAyB;EACzB,WAAW;AACb;;AAEA;EACE,WAAW;EACX,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,8BAA8B;AAChC;;AAEA;EACE,kBAAkB;AACpB;;AAEA;EACE,8BAA8B;AAChC;;AAEA;EACE,WAAW;AACb;;AAEA;;EAEE,kBAAkB;AACpB;;AAEA;;EAEE,WAAW;AACb;;AAEA;;;;EAIE,cAAc;EACd,iBAAiB;AACnB;;AAEA;EACE,aAAa;EACb,mBAAmB;EACnB,yBAAyB;AAC3B;;AAEA;EACE,aAAa;AACf;;AAEA;EACE,mBAAmB;EACnB,cAAc;AAChB;;AAEA;EACE,YAAY;AACd;;AAEA;;;;;;EAME,6BAA6B;AAC/B;AACA;;EAEE,gBAAgB;EAChB,cAAc;AAChB;;AAEA;;EAEE,aAAa;AACf;;AAEA;EACE,iBAAiB;AACnB;;AAEA;EACE,yBAAyB;AAC3B;;AAEA,kCAAkC;AAClC;EACE,aAAa;EACb,sBAAsB;EACtB,WAAW;EACX,YAAY;AACd;AACA;EACE,WAAW;EACX,WAAW;EACX,yBAAyB;EACzB,YAAY;EACZ,iBAAiB;EACjB,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,WAAW;EACX,WAAW;EACX,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,WAAW;EACX,mBAAmB;AACrB;;AAEA;EACE,aAAa;EACb,aAAa;EACb,mBAAmB;EACnB,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB,UAAU;AACZ;;AAEA;EACE,OAAO;EACP,WAAW;EACX,eAAe;EACf,WAAW;EACX,WAAW;EACX,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;EACE,OAAO;EACP,uBAAuB;EACvB,YAAY;EACZ,eAAe;EACf,WAAW;EACX,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;;EAEE,sBAAsB;EACtB,uBAAuB;EACvB,aAAa;EACb,sBAAsB;EACtB,uBAAuB;AACzB;;AAEA;EACE,kCAAkC;AACpC;;AAEA;EACE,YAAY;AACd;;AAEA;EACE,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;EACE,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,qBAAqB;EACrB,uBAAuB;AACzB;;AAEA;EACE,WAAW;EACX,WAAW;EACX,aAAa;AACf;;AAEA;EACE,SAAS;EACT,UAAU;EACV,YAAY;EACZ,UAAU;EACV,aAAa;EACb,mBAAmB;EACnB,kBAAkB;EAClB,eAAe;AACjB;;AAEA;EACE,SAAS;EACT,UAAU;EACV,YAAY;EACZ,UAAU;EACV,aAAa;EACb,mBAAmB;EACnB,uBAAuB;EACvB,kBAAkB;AACpB;;AAEA;EACE,eAAe;EACf,sBAAsB;EACtB,4BAA4B;EAC5B,kBAAkB;AACpB;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,kBAAkB;EAClB,sBAAsB;EACtB,YAAY;EACZ,iBAAiB;EACjB,eAAe;AACjB;;AAEA;EACE,2BAA2B;AAC7B;;AAEA;EACE,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,kBAAkB;EAClB,aAAa;EACb,qBAAqB;AACvB;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,iBAAiB;EACjB,oCAAoC;EACpC,aAAa;EACb,mBAAmB;EACnB,yBAAyB;EACzB,sBAAsB;EACtB,gBAAgB;AAClB;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,oCAAoC;EACpC,4BAA4B;EAC5B,gCAAgC;EAChC,cAAc;EACd,gBAAgB;AAClB;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,cAAc;EACd,yBAAyB;EACzB,iBAAiB;EACjB,kBAAkB;EAClB,oCAAoC;EACpC,4BAA4B;EAC5B,gCAAgC;AAClC;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,WAAW;EACX,YAAY;EACZ,yBAAyB;EACzB,iBAAiB;EACjB,kBAAkB;EAClB,oCAAoC;EACpC,4BAA4B;EAC5B,gCAAgC;AAClC;;AAEA;EACE,UAAU;EACV,WAAW;EACX,gBAAgB;EAChB,WAAW;EACX,YAAY;EACZ,2BAA2B;EAC3B,kBAAkB;EAClB,aAAa;EACb,uBAAuB;EACvB,qBAAqB;AACvB;;AAEA;EACE,aAAa;AACf;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,WAAW;AACb;;AAEA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;;AC3sBA,+BAA+B;;AAE/B;EACE,qBAAqB;EACrB,SAAS;AACX;;AAEA;;;;EAIE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE;IACE,uBAAuB;EACzB;EACA;IACE,yBAAyB;EAC3B;AACF;;AC1CA;EACE,6CAA6C;EAC7C,kBAAkB;EAClB,qBAAqB;AACvB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,yBAAyB;EACzB,mBAAmB;EACnB,gBAAgB;EAChB,yEAAyE;EACzE,kBAAkB;EAClB,UAAU;EACV,cAAc;EACd,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE,WAAW;EACX,aAAa;EACb,eAAe;EACf,sBAAsB;EACtB,gCAAgC;EAChC,6BAA6B;AAC/B;AACA;EACE,WAAW;EACX,yBAAyB;AAC3B;AACA;EACE,0DAA0D;EAC1D,uCAAuC;EACvC,cAAc;AAChB;;ACnCA,kBAAkB;;AAElB;EACE,aAAa;EACb,sBAAsB;EACtB,6BAA6B;EAC7B,qBAAqB;EACrB,qBAAqB;EACrB,mBAAmB;AACrB;;AAEA;EACE,0BAA0B;EAC1B,mCAAmC;EACnC,kCAAkC;EAClC,kCAAkC;EAClC,wCAAwC;AAC1C;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA,iBAAiB;;AAEjB;EACE,kBAAkB;AACpB;;AAEA;EACE,6CAA6C;AAC/C;;AAEA;EACE,8CAA8C;AAChD;;AAEA;EACE,4CAA4C;AAC9C","file":"vc.main.css","sourcesContent":["#visual-console-container {\n margin: 0px auto;\n position: relative;\n background-repeat: no-repeat;\n background-size: 100% 100%;\n background-position: center;\n margin-top: 5px;\n}\n\n.visual-console-item {\n position: absolute;\n display: flex;\n flex-direction: initial;\n justify-items: center;\n align-items: center;\n user-select: text;\n z-index: 1;\n}\n\n.visual-console-item.is-on-top {\n z-index: 2;\n}\n\n.visual-console-item * {\n overflow: visible;\n font-family: inherit;\n}\n\n.visual-console-item.is-editing {\n border: 2px dashed #b2b2b2;\n transform: translateX(-2px) translateY(-2px);\n user-select: none;\n}\n\n.visual-console-item.is-editing:hover {\n border-color: #82b92e;\n}\n\n.visual-console-item.is-editing.is-selected {\n border: 2px dashed #2b2b2b;\n cursor: move;\n z-index: 10;\n}\n.visual-console-item.is-editing > .resize-draggable {\n float: right;\n position: absolute;\n right: 0;\n bottom: 0;\n width: 15px;\n height: 15px;\n background: url(./resize-handle.svg);\n cursor: se-resize;\n z-index: 10;\n}\n\n.visual-console-item.is-editing :first-child {\n pointer-events: none;\n}\n\n@keyframes spinner-loading {\n 0% {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(1turn);\n }\n}\n\n.visual-console-spinner {\n background-color: transparent;\n margin: 0px auto;\n border-top: 5px solid rgb(82, 85, 87);\n border-right: 5px solid rgb(82, 85, 87);\n border-bottom: 5px solid rgb(82, 85, 87);\n border-left: 5px solid rgba(82, 85, 87, 0.2);\n\n animation-name: spinner-loading;\n animation-duration: 0.8s;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n}\n\n.visual-console-spinner,\n.visual-console-spinner :after {\n display: block;\n width: 32px;\n height: 32px;\n border-radius: 50%;\n}\n\n.visual-console-spinner.small,\n.visual-console-spinner.small :after {\n width: 12px;\n height: 12px;\n}\n\n.div-visual-console-spinner {\n position: absolute;\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n opacity: 0.7;\n background: rgb(212, 215, 218);\n z-index: 10;\n}\n\n.show-elements {\n display: inline-block;\n}\n\n.hide-elements {\n display: none;\n}\n\n/*Forms*/\n.div-input-group label {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: center;\n font-size: 12pt;\n font-weight: 600;\n color: #343434;\n margin-right: 10px;\n}\n.div-input-group label img {\n margin-left: 4px;\n}\n\n.div-input-group input[type=\"text\"],\n.div-input-group input[type=\"number\"] {\n height: 25px;\n font-size: 10pt;\n background-color: transparent;\n border: none;\n border-radius: 0;\n border-bottom: 1px solid #ccc;\n font-weight: lighter;\n padding: 0px 0px 2px 0px;\n box-sizing: border-box;\n margin-right: 10px;\n padding-left: 2px;\n}\n\n.div-input-group input[type=\"radio\"] {\n margin-right: 10px;\n width: 17px;\n height: 17px;\n}\n\n.div-input-group select {\n font-weight: lighter;\n font-size: 10pt;\n}\n\n.input-groups {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n}\n\n.input-group {\n width: 100%;\n margin-bottom: 25px;\n padding-left: 20px;\n}\n\n.div-ranges-input-group {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n align-items: flex-start;\n}\n\n.div-ranges-input-group > div {\n padding-left: 20px;\n margin-top: 10px;\n}\n\n.div-input-group,\n.div-input-group div div {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: center;\n}\n\n.div-input-group h3 {\n text-transform: initial;\n text-align: center;\n font-style: italic;\n text-decoration: underline;\n margin: 0 auto;\n}\n\n.div-input-group div div a {\n margin-left: 10px;\n}\n\n.div-input-group-autocomplete-agent {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n align-items: flex-start;\n justify-content: space-between;\n height: 70px;\n}\n\n.div-input-group-inside {\n padding-left: 20px;\n}\n\n.input-group-link-console {\n height: 70px;\n}\n\n.show-elements > div.div-input-group-autocomplete-agent {\n margin-left: 20px;\n}\n\n.img-vc-elements {\n margin-left: 10px;\n}\n\ninput.error-input-validate[type=\"number\"],\ninput.error-input-validate[type=\"text\"],\nselect.error-input-validate {\n border: 1px solid #c00;\n}\n\nselect.error-input-validate:focus {\n outline-color: #c00;\n}\n\np.error-p-validate {\n width: 100%;\n color: #c00;\n}\n\n/* Styles for the solid icons */\n\n.fa {\n display: inline-block;\n margin: 0;\n}\n\n.fa,\n.fa > svg,\n.fa.medium,\n.fa.medium > svg {\n width: 28px;\n height: 28px;\n}\n\n.fa.fa-small,\n.fa.fa-small > svg {\n width: 14px;\n height: 14px;\n}\n\n.fa.fa-large,\n.fa.fa-large > svg {\n width: 44px;\n height: 44px;\n}\n\n.fa-spin {\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n animation: fa-spin 1s infinite steps(8);\n}\n\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.autocomplete {\n /*the container must be positioned relative:*/\n position: relative;\n display: inline-block;\n}\n.autocomplete input {\n /*background: pink;*/\n}\n.autocomplete-items {\n border: 1px solid #d4d4d4;\n border-bottom: none;\n border-top: none;\n /*position the autocomplete items to be the same width as the container:*/\n position: absolute;\n z-index: 1;\n overflow: auto;\n max-height: 150px;\n max-width: 250px;\n}\n.autocomplete-items div {\n width: 100%;\n padding: 10px;\n cursor: pointer;\n background-color: #fff;\n border-bottom: 1px solid #d4d4d4;\n border-top: 1px solid #d4d4d4;\n}\n.autocomplete-items div:hover {\n width: 100%;\n background-color: #e9e9e9;\n}\n.autocomplete-active {\n /*when navigating through the items using the arrow keys:*/\n background-color: DodgerBlue !important;\n color: #ffffff;\n}\n\n/* Digital clock */\n\n.visual-console-item .digital-clock {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n flex-direction: column;\n justify-content: center;\n justify-items: center;\n align-content: center;\n align-items: center;\n}\n\n.visual-console-item .digital-clock > span {\n /* To improve legibility */\n text-rendering: optimizeLegibility;\n text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;\n}\n\n.visual-console-item .digital-clock > span.time {\n font-size: 50px;\n}\n\n.visual-console-item .digital-clock > span.date {\n font-size: 25px;\n}\n\n.visual-console-item .digital-clock > span.timezone {\n font-size: 25px;\n}\n\n/* Analog clock */\n\n.visual-console-item .analogic-clock {\n text-align: center;\n}\n\n.visual-console-item .analogic-clock .hour-hand {\n animation: rotate-hour 43200s infinite linear;\n}\n\n.visual-console-item .analogic-clock .minute-hand {\n animation: rotate-minute 3600s infinite linear;\n}\n\n.visual-console-item .analogic-clock .second-hand {\n animation: rotate-second 60s infinite linear;\n}\n\n#html-tabs .ui-widget-header {\n background-color: #ffffff;\n border: 0px;\n}\n\n#html-tabs .ui-tabs-anchor {\n float: none;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n}\n\n#html-tabs .ui-tabs-anchor img {\n margin-right: 10px;\n}\n\n#html-tabs .ui-tabs-nav li {\n border-radius: 5px 5px 0px 0px;\n}\n\nlabel span.p-slider {\n width: 30px;\n}\n\nli.interval-color-ranges > label,\nli#li-default-ranges > label {\n margin-right: 15px;\n}\n\nli.interval-color-ranges > input[type=\"number\"],\nli#li-default-ranges > input[type=\"number\"] {\n width: 80px;\n}\n\nli.interval-color-ranges > label:not(:first-child),\nli#li-default-ranges > label:not(:first-child),\nli#li-size-item > label:not(:first-child),\nli#li-position-item > label:not(:first-child) {\n width: initial;\n margin-left: 15px;\n}\n\nli#li-image-item label {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n}\n\nli#li-image-item label img {\n flex: initial;\n}\n\n.discovery.modal * {\n font-weight: normal;\n color: #343434;\n}\n\n.discovery.modal select {\n width: 100px;\n}\n\n.discovery.modal div#period_manual select,\n.discovery.modal div#period_manual input,\n.discovery.modal div#period_default select,\n.discovery.modal div#cacheExpiration_manual select,\n.discovery.modal div#cacheExpiration_manual input,\n.discovery.modal div#cacheExpiration_default select {\n font-size: inherit !important;\n}\n.discovery.modal div#period_default select#period_select,\n.discovery.modal div#cacheExpiration_default select#cacheExpiration_select {\n max-width: 230px;\n width: inherit;\n}\n\nli#li-timeZone-item > label:not(:first-child),\n.discovery.modal li#div-textarea-label > label {\n flex: inherit;\n}\n\nli#li-timeZone-item > select:not(:first-child) {\n margin-left: 10px;\n}\n\n.discovery.modal li#div-textarea-label table tbody td.mceIframeContainer {\n background-color: #ededed;\n}\n\n/*style item group show statistic*/\n.group-container {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n}\n.group-container .group-item-title {\n width: 100%;\n height: 30%;\n background-color: #9d9ea0;\n color: black;\n font-weight: bold;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n.group-container .group-item-info {\n width: 100%;\n height: 70%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n padding: 2%;\n align-items: center;\n}\n\n.group-container .group-item-info .group-item-info-container {\n flex: 1 1 20%;\n display: flex;\n flex-direction: row;\n border-radius: 2px;\n max-height: 50px;\n min-height: 35px;\n margin: 1%;\n}\n\n.group-container .group-item-info .group-item-info-container .value-style {\n flex: 1;\n color: #fff;\n font-size: 100%;\n padding: 0%;\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n\n.group-container .group-item-info .group-item-info-container .name-style {\n flex: 1;\n background-color: white;\n color: black;\n font-size: 100%;\n padding: 0%;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n\ndiv.label,\ndiv.simple-value {\n min-width: fit-content;\n min-height: fit-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\ndiv.simple-value > div {\n max-height: -webkit-fill-available;\n}\n\ndiv.module-graph .parent_graph p table tr {\n height: 25px;\n}\n\ndiv.module-graph {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: center;\n justify-content: center;\n}\n\ndiv.basic-chart {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: flex-end;\n justify-content: center;\n}\n\n.basic-chart-header {\n height: 40%;\n width: 100%;\n display: flex;\n}\n\n.basic-chart-header-name {\n margin: 0;\n padding: 0;\n height: 100%;\n width: 80%;\n display: flex;\n align-items: center;\n font-size: 2.5vmin;\n margin-left: 3%;\n}\n\n.basic-chart-header-value {\n margin: 0;\n padding: 0;\n height: 100%;\n width: 20%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 2.5vmin;\n}\n\ndiv.module-graph .gauge_d3_class {\n flex: 1 1 100px;\n float: none !important;\n overflow: inherit !important;\n text-align: center;\n}\n\n.textDecorationNone:hover {\n text-decoration: none;\n}\n\n.vc-item-nl-label {\n border-radius: 5px;\n background-color: #fff;\n padding: 5px;\n padding-left: 1em;\n font-size: 14px;\n}\n\n.odometer {\n overflow: hidden !important;\n}\n\n.odometer-container {\n width: 100%;\n height: 100%;\n overflow: hidden;\n text-align: center;\n display: flex;\n align-items: flex-end;\n}\n\n.odometer-a {\n z-index: 5;\n position: absolute;\n width: 65%;\n height: 65%;\n left: calc(17.5%);\n border-radius: 1000px 1000px 0px 0px;\n display: flex;\n align-items: center;\n justify-content: flex-end;\n flex-direction: column;\n line-height: 0px;\n}\n\n.odometer-b {\n z-index: 4;\n position: relative;\n width: 95%;\n height: 95%;\n border-radius: 0px 0px 1000px 1000px;\n transform-origin: center top;\n transition: all 1.3s ease-in-out;\n top: calc(95%);\n left: calc(2.5%);\n}\n\n.odometer-c {\n z-index: 3;\n position: absolute;\n width: 96%;\n height: 96%;\n left: calc(2%);\n background-color: #202226;\n margin-left: auto;\n margin-right: auto;\n border-radius: 1000px 1000px 0px 0px;\n transform-origin: center top;\n transition: all 1.3s ease-in-out;\n}\n\n.odometer-d {\n z-index: 0;\n position: absolute;\n width: 100%;\n height: 100%;\n background-color: #82b92e;\n margin-left: auto;\n margin-right: auto;\n border-radius: 1000px 1000px 0px 0px;\n transform-origin: center top;\n transition: all 1.3s ease-in-out;\n}\n\n.gauge-data {\n z-index: 4;\n color: #fff;\n font-size: 1.5em;\n width: 100%;\n height: 100%;\n transition: all 1s ease-out;\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: flex-end;\n}\n\n.svg_warning {\n fill: #f3b200;\n}\n\n.svg_warning_hide {\n fill: #fff !important;\n}\n\n.gauge-data #percent {\n color: #000;\n}\n\n.orange_background {\n background: #ffa631;\n}\n.red_background {\n background: #e63c52;\n}\n.yellow_background {\n background: #f3b200;\n}\n.grey_background {\n background: #b2b2b2;\n}\n.blue_background {\n background: #4a83f3;\n}\n.green_background {\n background: #82b92e;\n}\n","/* Styles for the solid icons */\n\n.fa {\n display: inline-block;\n margin: 0;\n}\n\n.fa,\n.fa > svg,\n.fa.medium,\n.fa.medium > svg {\n width: 28px;\n height: 28px;\n}\n\n.fa.fa-small,\n.fa.fa-small > svg {\n width: 14px;\n height: 14px;\n}\n\n.fa.fa-large,\n.fa.fa-large > svg {\n width: 44px;\n height: 44px;\n}\n\n.fa-spin {\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n animation: fa-spin 1s infinite steps(8);\n}\n\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n",".autocomplete {\n /*the container must be positioned relative:*/\n position: relative;\n display: inline-block;\n}\n.autocomplete input {\n /*background: pink;*/\n}\n.autocomplete-items {\n border: 1px solid #d4d4d4;\n border-bottom: none;\n border-top: none;\n /*position the autocomplete items to be the same width as the container:*/\n position: absolute;\n z-index: 1;\n overflow: auto;\n max-height: 150px;\n max-width: 250px;\n}\n.autocomplete-items div {\n width: 100%;\n padding: 10px;\n cursor: pointer;\n background-color: #fff;\n border-bottom: 1px solid #d4d4d4;\n border-top: 1px solid #d4d4d4;\n}\n.autocomplete-items div:hover {\n width: 100%;\n background-color: #e9e9e9;\n}\n.autocomplete-active {\n /*when navigating through the items using the arrow keys:*/\n background-color: DodgerBlue !important;\n color: #ffffff;\n}\n","/* Digital clock */\n\n.visual-console-item .digital-clock {\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n justify-items: center;\n align-content: center;\n align-items: center;\n}\n\n.visual-console-item .digital-clock > span {\n /* To improve legibility */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-rendering: optimizeLegibility;\n text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;\n}\n\n.visual-console-item .digital-clock > span.time {\n font-size: 50px;\n}\n\n.visual-console-item .digital-clock > span.date {\n font-size: 25px;\n}\n\n.visual-console-item .digital-clock > span.timezone {\n font-size: 25px;\n}\n\n/* Analog clock */\n\n.visual-console-item .analogic-clock {\n text-align: center;\n}\n\n.visual-console-item .analogic-clock .hour-hand {\n animation: rotate-hour 43200s infinite linear;\n}\n\n.visual-console-item .analogic-clock .minute-hand {\n animation: rotate-minute 3600s infinite linear;\n}\n\n.visual-console-item .analogic-clock .second-hand {\n animation: rotate-second 60s infinite linear;\n}\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///main.css","webpack:///FontAwesomeIcon.styles.css","webpack:///autocomplete.css","webpack:///styles.css"],"names":[],"mappings":"AAAA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,4BAA4B;EAC5B,0BAA0B;EAC1B,2BAA2B;EAC3B,eAAe;AACjB;;AAEA;EACE,sDAA2D;AAC7D;;AAEA;EACE,aAAa;AACf;;AAEA;EACE,kBAAkB;EAClB,aAAa;EACb,uBAAuB;EACvB,qBAAqB;EACrB,mBAAmB;EACnB,iBAAiB;EACjB,UAAU;AACZ;;AAEA;EACE,UAAU;AACZ;;AAEA;EACE,iBAAiB;EACjB,oBAAoB;AACtB;;AAEA;EACE,0BAA0B;EAC1B,4CAA4C;EAC5C,iBAAiB;AACnB;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,0BAA0B;EAC1B,YAAY;EACZ,WAAW;AACb;AACA;EACE,YAAY;EACZ,kBAAkB;EAClB,QAAQ;EACR,SAAS;EACT,WAAW;EACX,YAAY;EACZ,yCAAoC;EACpC,iBAAiB;EACjB,WAAW;AACb;;AAEA;EACE,oBAAoB;AACtB;;AAEA;EACE;IACE,uBAAuB;EACzB;EACA;IACE,wBAAwB;EAC1B;AACF;;AAEA;EACE,6BAA6B;EAC7B,gBAAgB;EAChB,qCAAqC;EACrC,uCAAuC;EACvC,wCAAwC;EACxC,4CAA4C;;EAE5C,+BAA+B;EAC/B,wBAAwB;EACxB,mCAAmC;EACnC,iCAAiC;AACnC;;AAEA;;EAEE,cAAc;EACd,WAAW;EACX,YAAY;EACZ,kBAAkB;AACpB;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;EACE,kBAAkB;EAClB,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,YAAY;EACZ,8BAA8B;EAC9B,WAAW;AACb;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,aAAa;AACf;;AAEA,QAAQ;AACR;EACE,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,eAAe;EACf,gBAAgB;EAChB,cAAc;EACd,kBAAkB;AACpB;AACA;EACE,gBAAgB;AAClB;;AAEA;;EAEE,YAAY;EACZ,eAAe;EACf,6BAA6B;EAC7B,YAAY;EACZ,gBAAgB;EAChB,6BAA6B;EAC7B,oBAAoB;EACpB,wBAAwB;EACxB,sBAAsB;EACtB,kBAAkB;EAClB,iBAAiB;AACnB;;AAEA;EACE,kBAAkB;EAClB,WAAW;EACX,YAAY;AACd;;AAEA;EACE,oBAAoB;EACpB,eAAe;AACjB;;AAEA;EACE,aAAa;EACb,sBAAsB;EACtB,eAAe;AACjB;;AAEA;EACE,WAAW;EACX,mBAAmB;EACnB,kBAAkB;AACpB;;AAEA;EACE,aAAa;EACb,sBAAsB;EACtB,eAAe;EACf,uBAAuB;AACzB;;AAEA;EACE,kBAAkB;EAClB,gBAAgB;AAClB;;AAEA;;EAEE,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,mBAAmB;AACrB;;AAEA;EACE,uBAAuB;EACvB,kBAAkB;EAClB,kBAAkB;EAClB,0BAA0B;EAC1B,cAAc;AAChB;;AAEA;EACE,iBAAiB;AACnB;;AAEA;EACE,aAAa;EACb,sBAAsB;EACtB,eAAe;EACf,uBAAuB;EACvB,8BAA8B;EAC9B,YAAY;AACd;;AAEA;EACE,kBAAkB;AACpB;;AAEA;EACE,YAAY;AACd;;AAEA;EACE,iBAAiB;AACnB;;AAEA;EACE,iBAAiB;AACnB;;AAEA;;;EAGE,sBAAsB;AACxB;;AAEA;EACE,mBAAmB;AACrB;;AAEA;EACE,WAAW;EACX,WAAW;AACb;;AAEA,+BAA+B;;AAE/B;EACE,qBAAqB;EACrB,SAAS;AACX;;AAEA;;;;EAIE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE;IACE,uBAAuB;EACzB;EACA;IACE,yBAAyB;EAC3B;AACF;;AAEA;EACE,6CAA6C;EAC7C,kBAAkB;EAClB,qBAAqB;AACvB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,yBAAyB;EACzB,mBAAmB;EACnB,gBAAgB;EAChB,yEAAyE;EACzE,kBAAkB;EAClB,UAAU;EACV,cAAc;EACd,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE,WAAW;EACX,aAAa;EACb,eAAe;EACf,sBAAsB;EACtB,gCAAgC;EAChC,6BAA6B;AAC/B;AACA;EACE,WAAW;EACX,yBAAyB;AAC3B;AACA;EACE,0DAA0D;EAC1D,uCAAuC;EACvC,cAAc;AAChB;;AAEA,kBAAkB;;AAElB;EACE,oBAAoB;EACpB,oBAAoB;EACpB,aAAa;EACb,sBAAsB;EACtB,uBAAuB;EACvB,qBAAqB;EACrB,qBAAqB;EACrB,mBAAmB;AACrB;;AAEA;EACE,0BAA0B;EAC1B,kCAAkC;EAClC,wCAAwC;AAC1C;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA,iBAAiB;;AAEjB;EACE,kBAAkB;AACpB;;AAEA;EACE,6CAA6C;AAC/C;;AAEA;EACE,8CAA8C;AAChD;;AAEA;EACE,4CAA4C;AAC9C;;AAEA;EACE,yBAAyB;EACzB,WAAW;AACb;;AAEA;EACE,WAAW;EACX,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,8BAA8B;AAChC;;AAEA;EACE,kBAAkB;AACpB;;AAEA;EACE,8BAA8B;AAChC;;AAEA;EACE,WAAW;AACb;;AAEA;;EAEE,kBAAkB;AACpB;;AAEA;;EAEE,WAAW;AACb;;AAEA;;;;EAIE,cAAc;EACd,iBAAiB;AACnB;;AAEA;EACE,aAAa;EACb,mBAAmB;EACnB,yBAAyB;AAC3B;;AAEA;EACE,aAAa;AACf;;AAEA;EACE,mBAAmB;EACnB,cAAc;AAChB;;AAEA;EACE,YAAY;AACd;;AAEA;;;;;;EAME,6BAA6B;AAC/B;AACA;;EAEE,gBAAgB;EAChB,cAAc;AAChB;;AAEA;;EAEE,aAAa;AACf;;AAEA;EACE,iBAAiB;AACnB;;AAEA;EACE,yBAAyB;AAC3B;;AAEA,kCAAkC;AAClC;EACE,aAAa;EACb,sBAAsB;EACtB,WAAW;EACX,YAAY;AACd;AACA;EACE,WAAW;EACX,WAAW;EACX,yBAAyB;EACzB,YAAY;EACZ,iBAAiB;EACjB,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,WAAW;EACX,WAAW;EACX,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,WAAW;EACX,mBAAmB;AACrB;;AAEA;EACE,aAAa;EACb,aAAa;EACb,mBAAmB;EACnB,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB,UAAU;AACZ;;AAEA;EACE,OAAO;EACP,WAAW;EACX,eAAe;EACf,WAAW;EACX,WAAW;EACX,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;EACE,OAAO;EACP,uBAAuB;EACvB,YAAY;EACZ,eAAe;EACf,WAAW;EACX,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;;EAEE,sBAAsB;EACtB,uBAAuB;EACvB,aAAa;EACb,sBAAsB;EACtB,uBAAuB;AACzB;;AAEA;EACE,kCAAkC;AACpC;;AAEA;EACE,YAAY;AACd;;AAEA;EACE,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,uBAAuB;AACzB;;AAEA;EACE,WAAW;EACX,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,qBAAqB;EACrB,uBAAuB;AACzB;;AAEA;EACE,WAAW;EACX,WAAW;EACX,aAAa;AACf;;AAEA;EACE,SAAS;EACT,UAAU;EACV,YAAY;EACZ,UAAU;EACV,aAAa;EACb,mBAAmB;EACnB,kBAAkB;EAClB,eAAe;AACjB;;AAEA;EACE,SAAS;EACT,UAAU;EACV,YAAY;EACZ,UAAU;EACV,aAAa;EACb,mBAAmB;EACnB,uBAAuB;EACvB,kBAAkB;AACpB;;AAEA;EACE,eAAe;EACf,sBAAsB;EACtB,4BAA4B;EAC5B,kBAAkB;AACpB;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,kBAAkB;EAClB,sBAAsB;EACtB,YAAY;EACZ,iBAAiB;EACjB,eAAe;AACjB;;AAEA;EACE,2BAA2B;AAC7B;;AAEA;EACE,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,kBAAkB;EAClB,aAAa;EACb,qBAAqB;AACvB;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,iBAAiB;EACjB,oCAAoC;EACpC,aAAa;EACb,mBAAmB;EACnB,yBAAyB;EACzB,sBAAsB;EACtB,gBAAgB;AAClB;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,oCAAoC;EACpC,4BAA4B;EAC5B,gCAAgC;EAChC,cAAc;EACd,gBAAgB;AAClB;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,cAAc;EACd,yBAAyB;EACzB,iBAAiB;EACjB,kBAAkB;EAClB,oCAAoC;EACpC,4BAA4B;EAC5B,gCAAgC;AAClC;;AAEA;EACE,UAAU;EACV,kBAAkB;EAClB,WAAW;EACX,YAAY;EACZ,yBAAyB;EACzB,iBAAiB;EACjB,kBAAkB;EAClB,oCAAoC;EACpC,4BAA4B;EAC5B,gCAAgC;AAClC;;AAEA;EACE,UAAU;EACV,WAAW;EACX,gBAAgB;EAChB,WAAW;EACX,YAAY;EACZ,2BAA2B;EAC3B,kBAAkB;EAClB,aAAa;EACb,uBAAuB;EACvB,qBAAqB;AACvB;;AAEA;EACE,aAAa;AACf;;AAEA;EACE,qBAAqB;AACvB;;AAEA;EACE,WAAW;AACb;;AAEA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,mBAAmB;AACrB;;ACntBA,+BAA+B;;AAE/B;EACE,qBAAqB;EACrB,SAAS;AACX;;AAEA;;;;EAIE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;;EAEE,WAAW;EACX,YAAY;AACd;;AAEA;EACE,qCAAqC;AACvC;;AAEA;EACE,uCAAuC;AACzC;;AAEA;EACE;IACE,uBAAuB;EACzB;EACA;IACE,yBAAyB;EAC3B;AACF;;AC1CA;EACE,6CAA6C;EAC7C,kBAAkB;EAClB,qBAAqB;AACvB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,yBAAyB;EACzB,mBAAmB;EACnB,gBAAgB;EAChB,yEAAyE;EACzE,kBAAkB;EAClB,UAAU;EACV,cAAc;EACd,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE,WAAW;EACX,aAAa;EACb,eAAe;EACf,sBAAsB;EACtB,gCAAgC;EAChC,6BAA6B;AAC/B;AACA;EACE,WAAW;EACX,yBAAyB;AAC3B;AACA;EACE,0DAA0D;EAC1D,uCAAuC;EACvC,cAAc;AAChB;;ACnCA,kBAAkB;;AAElB;EACE,aAAa;EACb,sBAAsB;EACtB,6BAA6B;EAC7B,qBAAqB;EACrB,qBAAqB;EACrB,mBAAmB;AACrB;;AAEA;EACE,0BAA0B;EAC1B,mCAAmC;EACnC,kCAAkC;EAClC,kCAAkC;EAClC,wCAAwC;AAC1C;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA;EACE,eAAe;AACjB;;AAEA,iBAAiB;;AAEjB;EACE,kBAAkB;AACpB;;AAEA;EACE,6CAA6C;AAC/C;;AAEA;EACE,8CAA8C;AAChD;;AAEA;EACE,4CAA4C;AAC9C","file":"vc.main.css","sourcesContent":["#visual-console-container {\n margin: 0px auto;\n position: relative;\n background-repeat: no-repeat;\n background-size: 100% 100%;\n background-position: center;\n margin-top: 5px;\n}\n\n.is-maintenance {\n background-image: url(./lib/maintenanceMode.png) !important;\n}\n\n.is-maintenance :nth-child(1) {\n display: none;\n}\n\n.visual-console-item {\n position: absolute;\n display: flex;\n flex-direction: initial;\n justify-items: center;\n align-items: center;\n user-select: text;\n z-index: 1;\n}\n\n.visual-console-item.is-on-top {\n z-index: 2;\n}\n\n.visual-console-item * {\n overflow: visible;\n font-family: inherit;\n}\n\n.visual-console-item.is-editing {\n border: 2px dashed #b2b2b2;\n transform: translateX(-2px) translateY(-2px);\n user-select: none;\n}\n\n.visual-console-item.is-editing:hover {\n border-color: #82b92e;\n}\n\n.visual-console-item.is-editing.is-selected {\n border: 2px dashed #2b2b2b;\n cursor: move;\n z-index: 10;\n}\n.visual-console-item.is-editing > .resize-draggable {\n float: right;\n position: absolute;\n right: 0;\n bottom: 0;\n width: 15px;\n height: 15px;\n background: url(./resize-handle.svg);\n cursor: se-resize;\n z-index: 10;\n}\n\n.visual-console-item.is-editing :first-child {\n pointer-events: none;\n}\n\n@keyframes spinner-loading {\n 0% {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(1turn);\n }\n}\n\n.visual-console-spinner {\n background-color: transparent;\n margin: 0px auto;\n border-top: 5px solid rgb(82, 85, 87);\n border-right: 5px solid rgb(82, 85, 87);\n border-bottom: 5px solid rgb(82, 85, 87);\n border-left: 5px solid rgba(82, 85, 87, 0.2);\n\n animation-name: spinner-loading;\n animation-duration: 0.8s;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n}\n\n.visual-console-spinner,\n.visual-console-spinner :after {\n display: block;\n width: 32px;\n height: 32px;\n border-radius: 50%;\n}\n\n.visual-console-spinner.small,\n.visual-console-spinner.small :after {\n width: 12px;\n height: 12px;\n}\n\n.div-visual-console-spinner {\n position: absolute;\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n opacity: 0.7;\n background: rgb(212, 215, 218);\n z-index: 10;\n}\n\n.show-elements {\n display: inline-block;\n}\n\n.hide-elements {\n display: none;\n}\n\n/*Forms*/\n.div-input-group label {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: center;\n font-size: 12pt;\n font-weight: 600;\n color: #343434;\n margin-right: 10px;\n}\n.div-input-group label img {\n margin-left: 4px;\n}\n\n.div-input-group input[type=\"text\"],\n.div-input-group input[type=\"number\"] {\n height: 25px;\n font-size: 10pt;\n background-color: transparent;\n border: none;\n border-radius: 0;\n border-bottom: 1px solid #ccc;\n font-weight: lighter;\n padding: 0px 0px 2px 0px;\n box-sizing: border-box;\n margin-right: 10px;\n padding-left: 2px;\n}\n\n.div-input-group input[type=\"radio\"] {\n margin-right: 10px;\n width: 17px;\n height: 17px;\n}\n\n.div-input-group select {\n font-weight: lighter;\n font-size: 10pt;\n}\n\n.input-groups {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n}\n\n.input-group {\n width: 100%;\n margin-bottom: 25px;\n padding-left: 20px;\n}\n\n.div-ranges-input-group {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n align-items: flex-start;\n}\n\n.div-ranges-input-group > div {\n padding-left: 20px;\n margin-top: 10px;\n}\n\n.div-input-group,\n.div-input-group div div {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: center;\n}\n\n.div-input-group h3 {\n text-transform: initial;\n text-align: center;\n font-style: italic;\n text-decoration: underline;\n margin: 0 auto;\n}\n\n.div-input-group div div a {\n margin-left: 10px;\n}\n\n.div-input-group-autocomplete-agent {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n align-items: flex-start;\n justify-content: space-between;\n height: 70px;\n}\n\n.div-input-group-inside {\n padding-left: 20px;\n}\n\n.input-group-link-console {\n height: 70px;\n}\n\n.show-elements > div.div-input-group-autocomplete-agent {\n margin-left: 20px;\n}\n\n.img-vc-elements {\n margin-left: 10px;\n}\n\ninput.error-input-validate[type=\"number\"],\ninput.error-input-validate[type=\"text\"],\nselect.error-input-validate {\n border: 1px solid #c00;\n}\n\nselect.error-input-validate:focus {\n outline-color: #c00;\n}\n\np.error-p-validate {\n width: 100%;\n color: #c00;\n}\n\n/* Styles for the solid icons */\n\n.fa {\n display: inline-block;\n margin: 0;\n}\n\n.fa,\n.fa > svg,\n.fa.medium,\n.fa.medium > svg {\n width: 28px;\n height: 28px;\n}\n\n.fa.fa-small,\n.fa.fa-small > svg {\n width: 14px;\n height: 14px;\n}\n\n.fa.fa-large,\n.fa.fa-large > svg {\n width: 44px;\n height: 44px;\n}\n\n.fa-spin {\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n animation: fa-spin 1s infinite steps(8);\n}\n\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.autocomplete {\n /*the container must be positioned relative:*/\n position: relative;\n display: inline-block;\n}\n.autocomplete input {\n /*background: pink;*/\n}\n.autocomplete-items {\n border: 1px solid #d4d4d4;\n border-bottom: none;\n border-top: none;\n /*position the autocomplete items to be the same width as the container:*/\n position: absolute;\n z-index: 1;\n overflow: auto;\n max-height: 150px;\n max-width: 250px;\n}\n.autocomplete-items div {\n width: 100%;\n padding: 10px;\n cursor: pointer;\n background-color: #fff;\n border-bottom: 1px solid #d4d4d4;\n border-top: 1px solid #d4d4d4;\n}\n.autocomplete-items div:hover {\n width: 100%;\n background-color: #e9e9e9;\n}\n.autocomplete-active {\n /*when navigating through the items using the arrow keys:*/\n background-color: DodgerBlue !important;\n color: #ffffff;\n}\n\n/* Digital clock */\n\n.visual-console-item .digital-clock {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n flex-direction: column;\n justify-content: center;\n justify-items: center;\n align-content: center;\n align-items: center;\n}\n\n.visual-console-item .digital-clock > span {\n /* To improve legibility */\n text-rendering: optimizeLegibility;\n text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;\n}\n\n.visual-console-item .digital-clock > span.time {\n font-size: 50px;\n}\n\n.visual-console-item .digital-clock > span.date {\n font-size: 25px;\n}\n\n.visual-console-item .digital-clock > span.timezone {\n font-size: 25px;\n}\n\n/* Analog clock */\n\n.visual-console-item .analogic-clock {\n text-align: center;\n}\n\n.visual-console-item .analogic-clock .hour-hand {\n animation: rotate-hour 43200s infinite linear;\n}\n\n.visual-console-item .analogic-clock .minute-hand {\n animation: rotate-minute 3600s infinite linear;\n}\n\n.visual-console-item .analogic-clock .second-hand {\n animation: rotate-second 60s infinite linear;\n}\n\n#html-tabs .ui-widget-header {\n background-color: #ffffff;\n border: 0px;\n}\n\n#html-tabs .ui-tabs-anchor {\n float: none;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n}\n\n#html-tabs .ui-tabs-anchor img {\n margin-right: 10px;\n}\n\n#html-tabs .ui-tabs-nav li {\n border-radius: 5px 5px 0px 0px;\n}\n\nlabel span.p-slider {\n width: 30px;\n}\n\nli.interval-color-ranges > label,\nli#li-default-ranges > label {\n margin-right: 15px;\n}\n\nli.interval-color-ranges > input[type=\"number\"],\nli#li-default-ranges > input[type=\"number\"] {\n width: 80px;\n}\n\nli.interval-color-ranges > label:not(:first-child),\nli#li-default-ranges > label:not(:first-child),\nli#li-size-item > label:not(:first-child),\nli#li-position-item > label:not(:first-child) {\n width: initial;\n margin-left: 15px;\n}\n\nli#li-image-item label {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n}\n\nli#li-image-item label img {\n flex: initial;\n}\n\n.discovery.modal * {\n font-weight: normal;\n color: #343434;\n}\n\n.discovery.modal select {\n width: 100px;\n}\n\n.discovery.modal div#period_manual select,\n.discovery.modal div#period_manual input,\n.discovery.modal div#period_default select,\n.discovery.modal div#cacheExpiration_manual select,\n.discovery.modal div#cacheExpiration_manual input,\n.discovery.modal div#cacheExpiration_default select {\n font-size: inherit !important;\n}\n.discovery.modal div#period_default select#period_select,\n.discovery.modal div#cacheExpiration_default select#cacheExpiration_select {\n max-width: 230px;\n width: inherit;\n}\n\nli#li-timeZone-item > label:not(:first-child),\n.discovery.modal li#div-textarea-label > label {\n flex: inherit;\n}\n\nli#li-timeZone-item > select:not(:first-child) {\n margin-left: 10px;\n}\n\n.discovery.modal li#div-textarea-label table tbody td.mceIframeContainer {\n background-color: #ededed;\n}\n\n/*style item group show statistic*/\n.group-container {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n}\n.group-container .group-item-title {\n width: 100%;\n height: 30%;\n background-color: #9d9ea0;\n color: black;\n font-weight: bold;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n.group-container .group-item-info {\n width: 100%;\n height: 70%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n padding: 2%;\n align-items: center;\n}\n\n.group-container .group-item-info .group-item-info-container {\n flex: 1 1 20%;\n display: flex;\n flex-direction: row;\n border-radius: 2px;\n max-height: 50px;\n min-height: 35px;\n margin: 1%;\n}\n\n.group-container .group-item-info .group-item-info-container .value-style {\n flex: 1;\n color: #fff;\n font-size: 100%;\n padding: 0%;\n width: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n\n.group-container .group-item-info .group-item-info-container .name-style {\n flex: 1;\n background-color: white;\n color: black;\n font-size: 100%;\n padding: 0%;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n\ndiv.label,\ndiv.simple-value {\n min-width: fit-content;\n min-height: fit-content;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\ndiv.simple-value > div {\n max-height: -webkit-fill-available;\n}\n\ndiv.module-graph .parent_graph p table tr {\n height: 25px;\n}\n\ndiv.module-graph {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: center;\n justify-content: center;\n}\n\ndiv.basic-chart {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-items: flex-end;\n justify-content: center;\n}\n\n.basic-chart-header {\n height: 40%;\n width: 100%;\n display: flex;\n}\n\n.basic-chart-header-name {\n margin: 0;\n padding: 0;\n height: 100%;\n width: 80%;\n display: flex;\n align-items: center;\n font-size: 2.5vmin;\n margin-left: 3%;\n}\n\n.basic-chart-header-value {\n margin: 0;\n padding: 0;\n height: 100%;\n width: 20%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 2.5vmin;\n}\n\ndiv.module-graph .gauge_d3_class {\n flex: 1 1 100px;\n float: none !important;\n overflow: inherit !important;\n text-align: center;\n}\n\n.textDecorationNone:hover {\n text-decoration: none;\n}\n\n.vc-item-nl-label {\n border-radius: 5px;\n background-color: #fff;\n padding: 5px;\n padding-left: 1em;\n font-size: 14px;\n}\n\n.odometer {\n overflow: hidden !important;\n}\n\n.odometer-container {\n width: 100%;\n height: 100%;\n overflow: hidden;\n text-align: center;\n display: flex;\n align-items: flex-end;\n}\n\n.odometer-a {\n z-index: 5;\n position: absolute;\n width: 65%;\n height: 65%;\n left: calc(17.5%);\n border-radius: 1000px 1000px 0px 0px;\n display: flex;\n align-items: center;\n justify-content: flex-end;\n flex-direction: column;\n line-height: 0px;\n}\n\n.odometer-b {\n z-index: 4;\n position: relative;\n width: 95%;\n height: 95%;\n border-radius: 0px 0px 1000px 1000px;\n transform-origin: center top;\n transition: all 1.3s ease-in-out;\n top: calc(95%);\n left: calc(2.5%);\n}\n\n.odometer-c {\n z-index: 3;\n position: absolute;\n width: 96%;\n height: 96%;\n left: calc(2%);\n background-color: #202226;\n margin-left: auto;\n margin-right: auto;\n border-radius: 1000px 1000px 0px 0px;\n transform-origin: center top;\n transition: all 1.3s ease-in-out;\n}\n\n.odometer-d {\n z-index: 0;\n position: absolute;\n width: 100%;\n height: 100%;\n background-color: #82b92e;\n margin-left: auto;\n margin-right: auto;\n border-radius: 1000px 1000px 0px 0px;\n transform-origin: center top;\n transition: all 1.3s ease-in-out;\n}\n\n.gauge-data {\n z-index: 4;\n color: #fff;\n font-size: 1.5em;\n width: 100%;\n height: 100%;\n transition: all 1s ease-out;\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: flex-end;\n}\n\n.svg_warning {\n fill: #f3b200;\n}\n\n.svg_warning_hide {\n fill: #fff !important;\n}\n\n.gauge-data #percent {\n color: #000;\n}\n\n.orange_background {\n background: #ffa631;\n}\n.red_background {\n background: #e63c52;\n}\n.yellow_background {\n background: #f3b200;\n}\n.grey_background {\n background: #b2b2b2;\n}\n.blue_background {\n background: #4a83f3;\n}\n.green_background {\n background: #82b92e;\n}\n","/* Styles for the solid icons */\n\n.fa {\n display: inline-block;\n margin: 0;\n}\n\n.fa,\n.fa > svg,\n.fa.medium,\n.fa.medium > svg {\n width: 28px;\n height: 28px;\n}\n\n.fa.fa-small,\n.fa.fa-small > svg {\n width: 14px;\n height: 14px;\n}\n\n.fa.fa-large,\n.fa.fa-large > svg {\n width: 44px;\n height: 44px;\n}\n\n.fa-spin {\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n animation: fa-spin 1s infinite steps(8);\n}\n\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n",".autocomplete {\n /*the container must be positioned relative:*/\n position: relative;\n display: inline-block;\n}\n.autocomplete input {\n /*background: pink;*/\n}\n.autocomplete-items {\n border: 1px solid #d4d4d4;\n border-bottom: none;\n border-top: none;\n /*position the autocomplete items to be the same width as the container:*/\n position: absolute;\n z-index: 1;\n overflow: auto;\n max-height: 150px;\n max-width: 250px;\n}\n.autocomplete-items div {\n width: 100%;\n padding: 10px;\n cursor: pointer;\n background-color: #fff;\n border-bottom: 1px solid #d4d4d4;\n border-top: 1px solid #d4d4d4;\n}\n.autocomplete-items div:hover {\n width: 100%;\n background-color: #e9e9e9;\n}\n.autocomplete-active {\n /*when navigating through the items using the arrow keys:*/\n background-color: DodgerBlue !important;\n color: #ffffff;\n}\n","/* Digital clock */\n\n.visual-console-item .digital-clock {\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n justify-items: center;\n align-content: center;\n align-items: center;\n}\n\n.visual-console-item .digital-clock > span {\n /* To improve legibility */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-rendering: optimizeLegibility;\n text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;\n}\n\n.visual-console-item .digital-clock > span.time {\n font-size: 50px;\n}\n\n.visual-console-item .digital-clock > span.date {\n font-size: 25px;\n}\n\n.visual-console-item .digital-clock > span.timezone {\n font-size: 25px;\n}\n\n/* Analog clock */\n\n.visual-console-item .analogic-clock {\n text-align: center;\n}\n\n.visual-console-item .analogic-clock .hour-hand {\n animation: rotate-hour 43200s infinite linear;\n}\n\n.visual-console-item .analogic-clock .minute-hand {\n animation: rotate-minute 3600s infinite linear;\n}\n\n.visual-console-item .analogic-clock .second-hand {\n animation: rotate-second 60s infinite linear;\n}\n"],"sourceRoot":""} \ No newline at end of file diff --git a/pandora_console/include/visual-console-client/vc.main.min.js b/pandora_console/include/visual-console-client/vc.main.min.js index b8be24d123..f55059b345 100644 --- a/pandora_console/include/visual-console-client/vc.main.min.js +++ b/pandora_console/include/visual-console-client/vc.main.min.js @@ -1,7 +1,7 @@ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=15)}([function(e,t,n){"use strict";n.d(t,"n",(function(){return i})),n.d(t,"m",(function(){return o})),n.d(t,"s",(function(){return s})),n.d(t,"k",(function(){return a})),n.d(t,"l",(function(){return l})),n.d(t,"o",(function(){return p})),n.d(t,"r",(function(){return u})),n.d(t,"j",(function(){return d})),n.d(t,"i",(function(){return h})),n.d(t,"h",(function(){return m})),n.d(t,"p",(function(){return f})),n.d(t,"d",(function(){return b})),n.d(t,"f",(function(){return v})),n.d(t,"g",(function(){return g})),n.d(t,"q",(function(){return y})),n.d(t,"c",(function(){return E})),n.d(t,"a",(function(){return w})),n.d(t,"b",(function(){return M})),n.d(t,"t",(function(){return k})),n.d(t,"e",(function(){return C}));n(10),n(4),n(5),n(13);var r=function(){return(r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&!isNaN(parseInt(e))?parseInt(e):t}function o(e,t){return"number"==typeof e?e:"string"==typeof e&&e.length>0&&!isNaN(parseFloat(e))?parseFloat(e):t}function s(e){return null==e||0===e.length}function a(e,t){return"string"==typeof e&&e.length>0?e:t}function l(e){return"boolean"==typeof e?e:"number"==typeof e?e>0:"string"==typeof e&&("1"===e||"true"===e)}function c(e,t,n){void 0===n&&(n=" "),"number"==typeof e&&(e=""+e),"number"==typeof n&&(n=""+n);var r=t-e.length;if(0===r)return e;if(r<0)return e.substr(Math.abs(r));if(r===n.length)return""+n+e;if(r0&&rb||d+o+v.width-y>u.width||o===_&&d<0&&r>f+_+c,C=i0&&im||g+s+v.height-y>u.height||s===E&&g<0&&i>h+E+p;(t=O?0:k?_:d+o)<0&&(t=0),(n=C?0:x?E:g+s)<0&&(n=0),a=r,l=i,t===o&&n===s||(M(t,n),w(t,n),o=t,s=n)},C=function(){o=0,s=0,a=0,l=0,document.removeEventListener("mousemove",k),document.removeEventListener("mouseup",C),e.draggable=i,document.body.style.userSelect="auto"},x=function(t){if(2!==t.button){t.stopPropagation(),e.draggable=!1,e.setAttribute("ondragstart","return false;"),e.setAttribute("draggable","false");var n=O(e,r);o=n.left,s=n.top,a=t.pageX,l=t.pageY,c=t.offsetX,p=t.offsetY,u=r.getBoundingClientRect(),d=O(r),h=d.top,m=h+u.height,f=d.left,b=f+u.width,v=e.getBoundingClientRect(),g=window.getComputedStyle(e).borderWidth||"0",y=2*Number.parseInt(g),document.addEventListener("mousemove",k),document.addEventListener("mouseup",C),document.body.style.userSelect="none"}};return e.addEventListener("mousedown",x),function(){e.removeEventListener("mousedown",x),C()}}function M(e,t){var n=document.createElement("div");n.className="resize-draggable",e.appendChild(n);var r=e.parentElement,i=e.draggable,o=0,s=0,a=0,l=0,c=0,p=r.getBoundingClientRect(),u=O(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,b=O(e),v=b.top,g=b.left,y=window.getComputedStyle(e).borderWidth||"0",w=Number.parseInt(y),M=E(32,t),k=_(16,t),C=function(e){var t=o+(e.pageX-a),n=s+(e.pageY-l);t===o&&n===s||tg+(o-c)||(t<15?t=15:t+g-w/2>=f&&(t=f-g),n<15?n=15:n+v-w/2>=h&&(n=h-v),k(t,n),M(t,n),o=t,s=n,a=e.pageX,l=e.pageY)},x=function(){o=0,s=0,a=0,l=0,c=0,0,document.removeEventListener("mousemove",C),document.removeEventListener("mouseup",x),e.draggable=i,document.body.style.userSelect="auto"};return n.addEventListener("mousedown",(function(t){t.stopPropagation(),e.draggable=!1;var n=e.getBoundingClientRect(),i=n.width,y=n.height;o=i,s=y,a=t.pageX,l=t.pageY,c=t.offsetX,t.offsetY,p=r.getBoundingClientRect(),u=O(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,b=O(e),v=b.top,g=b.left,document.addEventListener("mousemove",C),document.addEventListener("mouseup",x),document.body.style.userSelect="none"})),function(){n.remove(),x()}}function k(e){return e}function C(e,t,n){return void 0===t&&(t=140),void 0===n&&(n="…"),e.trim().length>t?e.substr(0,t).trim()+n:e}},function(e,t,n){"use strict";n.d(t,"b",(function(){return l}));var r=n(0),i=n(2),o=n(3),s=function(){return(s=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){var r=t.labelElementRef.getBoundingClientRect(),i=r.width,o=r.height;switch(t.props.labelPosition){case"up":case"down":n-=o;break;case"left":case"right":e-=i}}var s={width:t.props.width,height:t.props.height},a={width:e,height:n};t.sizeChanged(s,a)&&(t.resizeElement(e,n),t.resizedEventManager.emit({item:t,prevSize:s,newSize:a}),t.debouncedResizementSave(e,n))})))},e.prototype.stopResizementListener=function(){this.removeResizement&&(this.removeResizement(),this.removeResizement=null)},e.prototype.init=function(){this.elementRef=this.createContainerDomElement(),this.labelElementRef=this.createLabelDomElement(),this.childElementRef=this.createDomElement(),this.elementRef.appendChild(this.childElementRef),this.elementRef.appendChild(this.labelElementRef),this.resizeElement(this.itemProps.width,this.itemProps.height),this.changeLabelPosition(this.itemProps.labelPosition)},e.prototype.createContainerDomElement=function(){var e,t=this;return this.props.isLinkEnabled?(e=document.createElement("a"),this.props.link?e.href=this.props.link:e.className="textDecorationNone"):(e=document.createElement("div")).className="textDecorationNone",e.classList.add("visual-console-item"),this.props.isOnTop&&e.classList.add("is-on-top"),e.style.left=this.props.x+"px",e.style.top=this.props.y+"px",e.addEventListener("dblclick",(function(e){t.meta.isBeingMoved||t.meta.isBeingResized||(t.unSelectItem(),t.selectItem(),t.dblClickEventManager.emit({item:t,nativeEvent:e}))})),e.addEventListener("click",(function(e){if(t.meta.editMode)e.preventDefault(),e.stopPropagation();else if(t.itemProps.isLinkEnabled&&null!=t.itemProps.link){var n=document.createElement("div");n.className="div-visual-console-spinner";var r=document.createElement("div");r.className="visual-console-spinner",n.appendChild(r);for(var i=e.composedPath(),o="visual-console-container",s=0;s0){var n=document.createElement("table"),r=document.createElement("tr"),i=document.createElement("tr"),o=document.createElement("tr"),s=document.createElement("td");switch(s.innerHTML=t,r.appendChild(s),n.appendChild(i),n.appendChild(r),n.appendChild(o),n.style.textAlign="center",this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width=this.props.width+"px",n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height=this.props.height+"px")}e.appendChild(n)}return e},e.prototype.getLabelWithMacrosReplaced=function(){var e=this.props;return Object(r.q)([{macro:"_date_",value:Object(r.f)(new Date)},{macro:"_time_",value:Object(r.g)(new Date)},{macro:"_agent_",value:null!=e.agentAlias?e.agentAlias:""},{macro:"_agentdescription_",value:null!=e.agentDescription?e.agentDescription:""},{macro:"_address_",value:null!=e.agentAddress?e.agentAddress:""},{macro:"_module_",value:null!=e.moduleName?e.moduleName:""},{macro:"_moduledescription_",value:null!=e.moduleDescription?e.moduleDescription:""}],this.props.label||"")},e.prototype.updateDomElement=function(e){e.innerHTML=this.createDomElement().innerHTML},Object.defineProperty(e.prototype,"props",{get:function(){return s({},this.itemProps)},set:function(e){this.setProps(e)},enumerable:!1,configurable:!0}),e.prototype.setProps=function(e){var t=this.props;this.itemProps=e,this.shouldBeUpdated(t,e)&&this.render(t,this._metadata)},Object.defineProperty(e.prototype,"meta",{get:function(){return s({},this._metadata)},set:function(e){this.setMeta(e)},enumerable:!1,configurable:!0}),e.prototype.setMeta=function(e){var t=this._metadata;this._metadata=s(s({},t),e),void 0!==e.isSelected&&t.isSelected!==e.isSelected&&this.selectionChangedEventManager.emit({selected:e.isSelected}),this.render(this.itemProps,t)},e.prototype.shouldBeUpdated=function(e,t){return e!==t},e.prototype.render=function(e,t){void 0===e&&(e=null),void 0===t&&(t=null),this.updateDomElement(this.childElementRef),e&&!this.positionChanged(e,this.props)||this.moveElement(this.props.x,this.props.y),e&&!this.sizeChanged(e,this.props)||this.resizeElement(this.props.width,this.props.height);var n=this.labelElementRef.innerHTML,r=this.createLabelDomElement().innerHTML;if(n!==r&&(this.labelElementRef.innerHTML=r),e&&e.labelPosition===this.props.labelPosition||this.changeLabelPosition(this.props.labelPosition),e&&e.isOnTop===this.props.isOnTop||(this.props.isOnTop?this.elementRef.classList.add("is-on-top"):this.elementRef.classList.remove("is-on-top")),e&&e.isLinkEnabled!==this.props.isLinkEnabled){var i=this.createContainerDomElement();i.innerHTML=this.elementRef.innerHTML;for(var o=this.elementRef.attributes,s=0;s0?t.item(0):null;if(n)switch(this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width=this.props.width+"px",n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height=this.props.height+"px")}},e.prototype.moveElement=function(e,t){this.elementRef.style.left=e+"px",this.elementRef.style.top=t+"px"},e.prototype.move=function(e,t){this.moveElement(e,t),this.itemProps=s(s({},this.props),{x:e,y:t})},e.prototype.sizeChanged=function(e,t){return e.width!==t.width||e.height!==t.height},e.prototype.resizeElement=function(e,t){if(13!=this.props.type&&21!=this.props.type&&(this.childElementRef.style.width=e>0?e+"px":"",this.childElementRef.style.height=t>0?t+"px":""),this.props.label&&this.props.label.length>0){var n=this.labelElementRef.getElementsByTagName("table"),r=n.length>0?n.item(0):null;if(r)switch(this.props.labelPosition){case"up":case"down":r.style.width=e>0?e+"px":"";break;case"left":case"right":r.style.height=t>0?t+"px":""}}},e.prototype.resize=function(e,t){this.resizeElement(e,t),this.itemProps=s(s({},this.props),{width:e,height:t})},e.prototype.onClick=function(e){var t=this.clickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onDblClick=function(e){var t=this.dblClickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onMoved=function(e){var t=this.movedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onMovementFinished=function(e){var t=this.movementFinishedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onResized=function(e){var t=this.resizedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onResizeFinished=function(e){var t=this.resizeFinishedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onRemove=function(e){var t=this.removeEventManager.on(e);return this.disposables.push(t),t},e.prototype.onSelectionChanged=function(e){var t=this.selectionChangedEventManager.on(e);return this.disposables.push(t),t},e.prototype.selectItem=function(){this.meta=s(s({},this.meta),{isSelected:!0}),this.initMovementListener(this.elementRef),13!==this.props.type&&21!==this.props.type&&this.initResizementListener(this.elementRef)},e.prototype.unSelectItem=function(){this.meta=s(s({},this.meta),{isSelected:!1}),this.stopMovementListener(),13!==this.props.type&&this.stopResizementListener()},e.prototype.getFormContainer=function(){return e.getFormContainer(this.props)},e.getFormContainer=function(e){var t=e.type?function(e){var t="";switch(e){case 0:t=Object(r.t)("Static image");break;case 1:t=Object(r.t)("Module graph");break;case 2:t=Object(r.t)("Simple value");break;case 3:t=Object(r.t)("Percentile item");break;case 4:t=Object(r.t)("Label");break;case 5:t=Object(r.t)("Icon");break;case 6:case 7:case 8:t=Object(r.t)("Simple value");break;case 9:t=Object(r.t)("Percentile item");break;case 10:t=Object(r.t)("Service");break;case 11:t=Object(r.t)("Group");break;case 12:t=Object(r.t)("Box");break;case 13:t=Object(r.t)("Line");break;case 14:t=Object(r.t)("Event history graph");break;case 15:case 16:t=Object(r.t)("Percentile item");break;case 17:t=Object(r.t)("Serialized pie graph");break;case 18:t=Object(r.t)("Bars graph");break;case 19:t=Object(r.t)("Clock");break;case 20:t=Object(r.t)("Color cloud");break;case 21:t=Object(r.t)("Network link");break;case 22:t=Object(r.t)("Odometer");break;case 23:t=Object(r.t)("Basic chart");break;default:t=Object(r.t)("Item")}return t}(e.type):Object(r.t)("Item");return new o.FormContainer(t,[],[])},e}();t.a=c},function(e,t,n){"use strict";var r=function(){var e=this;this.listeners=[],this.listenersOncer=[],this.on=function(t){return e.listeners.push(t),{dispose:function(){return e.off(t)}}},this.once=function(t){e.listenersOncer.push(t)},this.off=function(t){var n=e.listeners.indexOf(t);n>-1&&e.listeners.splice(n,1)},this.emit=function(t){e.listeners.forEach((function(e){return e(t)})),e.listenersOncer.forEach((function(e){return e(t)})),e.listenersOncer=[]},this.pipe=function(t){return e.on((function(e){return t.emit(e)}))}};t.a=r},function(e,t,n){"use strict";n.r(t),n.d(t,"InputGroup",(function(){return s})),n.d(t,"FormContainer",(function(){return a}));var r=n(2),i=function(){return(i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&(this.inputGroupsByName=t.reduce((function(e,t){return t.onDataRequested(i.handleItemDataRequested),e[t.name]=t,e}),this.inputGroupsByName)),n.length>0&&(this.enabledInputGroupNames=o(this.enabledInputGroupNames,n.filter((function(e){return null!=i.inputGroupsByName[e]}))))}return e.prototype.getInputGroup=function(e){return this.inputGroupsByName[e]||null},e.prototype.addInputGroup=function(e,t){return void 0===t&&(t=null),e.onDataRequested(this.handleItemDataRequested),this.inputGroupsByName[e.name]=e,this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(t){return t!==e.name})),null!==t?t<=0?this.enabledInputGroupNames=o([e.name],this.enabledInputGroupNames):t>=this.enabledInputGroupNames.length?this.enabledInputGroupNames=o(this.enabledInputGroupNames,[e.name]):this.enabledInputGroupNames=o(this.enabledInputGroupNames.slice(0,t),[e.name],this.enabledInputGroupNames.slice(t)):this.enabledInputGroupNames=o(this.enabledInputGroupNames,[e.name]),this},e.prototype.removeInputGroup=function(e){return delete this.inputGroupsByName[e],this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(t){return t!==e})),this},e.prototype.getFormElement=function(e){var t=this;void 0===e&&(e="update");var n=document.createElement("form");n.id="visual-console-item-edition",n.className="visual-console-item-edition",n.addEventListener("submit",(function(e){e.preventDefault(),t.submitEventManager.emit({nativeEvent:e,data:t.enabledInputGroupNames.reduce((function(e,n){return t.inputGroupsByName[n]&&(e=i(i({},e),t.inputGroupsByName[n].data)),e}),{})})}));var r=document.createElement("div");return r.className="input-groups",this.enabledInputGroupNames.forEach((function(e){t.inputGroupsByName[e]&&r.appendChild(t.inputGroupsByName[e].element)})),n.appendChild(r),n},e.prototype.reset=function(){var e=this;this.enabledInputGroupNames.forEach((function(t){e.inputGroupsByName[t]&&e.inputGroupsByName[t].reset()}))},e.prototype.onSubmit=function(e){return this.submitEventManager.on(e)},e.prototype.onInputGroupDataRequested=function(e){return this.itemDataRequestedEventManager.on(e)},e}()},function(e,t,n){"use strict";n(12);var r="http://www.w3.org/2000/svg";t.a=function(e,t,n){var i=void 0===n?{}:n,o=i.size,s=i.color,a=i.spin,l=i.pulse,c=document.createElement("figure");c.title=t,c.className="fa fa-"+e.iconName,o&&c.classList.add("fa-"+o),a?c.classList.add("fa-spin"):l&&c.classList.add("fa-pulse");var p=document.createElementNS(r,"svg");p.setAttribute("viewBox","0 0 "+e.icon[0]+" "+e.icon[1]),s&&p.setAttribute("fill",s);var u=document.createElementNS(r,"path"),d="string"==typeof e.icon[4]?e.icon[4]:e.icon[4][0];return u.setAttribute("d",d),p.appendChild(u),c.appendChild(p),c}},function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"d",(function(){return s})); +!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=15)}([function(e,t,n){"use strict";n.d(t,"n",(function(){return i})),n.d(t,"m",(function(){return o})),n.d(t,"s",(function(){return s})),n.d(t,"k",(function(){return a})),n.d(t,"l",(function(){return l})),n.d(t,"o",(function(){return p})),n.d(t,"r",(function(){return u})),n.d(t,"j",(function(){return d})),n.d(t,"i",(function(){return h})),n.d(t,"h",(function(){return m})),n.d(t,"p",(function(){return f})),n.d(t,"d",(function(){return b})),n.d(t,"f",(function(){return v})),n.d(t,"g",(function(){return g})),n.d(t,"q",(function(){return y})),n.d(t,"c",(function(){return E})),n.d(t,"a",(function(){return w})),n.d(t,"b",(function(){return M})),n.d(t,"t",(function(){return k})),n.d(t,"e",(function(){return C}));n(10),n(4),n(5),n(13);var r=function(){return(r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&!isNaN(parseInt(e))?parseInt(e):t}function o(e,t){return"number"==typeof e?e:"string"==typeof e&&e.length>0&&!isNaN(parseFloat(e))?parseFloat(e):t}function s(e){return null==e||0===e.length}function a(e,t){return"string"==typeof e&&e.length>0?e:t}function l(e){return"boolean"==typeof e?e:"number"==typeof e?e>0:"string"==typeof e&&("1"===e||"true"===e)}function c(e,t,n){void 0===n&&(n=" "),"number"==typeof e&&(e=""+e),"number"==typeof n&&(n=""+n);var r=t-e.length;if(0===r)return e;if(r<0)return e.substr(Math.abs(r));if(r===n.length)return""+n+e;if(r0&&rb||d+o+v.width-y>u.width||o===_&&d<0&&r>f+_+c,C=i0&&im||g+s+v.height-y>u.height||s===E&&g<0&&i>h+E+p;(t=O?0:k?_:d+o)<0&&(t=0),(n=C?0:x?E:g+s)<0&&(n=0),a=r,l=i,t===o&&n===s||(M(t,n),w(t,n),o=t,s=n)},C=function(){o=0,s=0,a=0,l=0,document.removeEventListener("mousemove",k),document.removeEventListener("mouseup",C),e.draggable=i,document.body.style.userSelect="auto"},x=function(t){if(2!==t.button){t.stopPropagation(),e.draggable=!1,e.setAttribute("ondragstart","return false;"),e.setAttribute("draggable","false");var n=O(e,r);o=n.left,s=n.top,a=t.pageX,l=t.pageY,c=t.offsetX,p=t.offsetY,u=r.getBoundingClientRect(),d=O(r),h=d.top,m=h+u.height,f=d.left,b=f+u.width,v=e.getBoundingClientRect(),g=window.getComputedStyle(e).borderWidth||"0",y=2*Number.parseInt(g),document.addEventListener("mousemove",k),document.addEventListener("mouseup",C),document.body.style.userSelect="none"}};return e.addEventListener("mousedown",x),function(){e.removeEventListener("mousedown",x),C()}}function M(e,t){var n=document.createElement("div");n.className="resize-draggable",e.appendChild(n);var r=e.parentElement,i=e.draggable,o=0,s=0,a=0,l=0,c=0,p=r.getBoundingClientRect(),u=O(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,b=O(e),v=b.top,g=b.left,y=window.getComputedStyle(e).borderWidth||"0",w=Number.parseInt(y),M=E(32,t),k=_(16,t),C=function(e){var t=o+(e.pageX-a),n=s+(e.pageY-l);t===o&&n===s||tg+(o-c)||(t<15?t=15:t+g-w/2>=f&&(t=f-g),n<15?n=15:n+v-w/2>=h&&(n=h-v),k(t,n),M(t,n),o=t,s=n,a=e.pageX,l=e.pageY)},x=function(){o=0,s=0,a=0,l=0,c=0,0,document.removeEventListener("mousemove",C),document.removeEventListener("mouseup",x),e.draggable=i,document.body.style.userSelect="auto"};return n.addEventListener("mousedown",(function(t){t.stopPropagation(),e.draggable=!1;var n=e.getBoundingClientRect(),i=n.width,y=n.height;o=i,s=y,a=t.pageX,l=t.pageY,c=t.offsetX,t.offsetY,p=r.getBoundingClientRect(),u=O(r),d=u.top,h=d+p.height,m=u.left,f=m+p.width,b=O(e),v=b.top,g=b.left,document.addEventListener("mousemove",C),document.addEventListener("mouseup",x),document.body.style.userSelect="none"})),function(){n.remove(),x()}}function k(e){return e}function C(e,t,n){return void 0===t&&(t=140),void 0===n&&(n="…"),e.trim().length>t?e.substr(0,t).trim()+n:e}},function(e,t,n){"use strict";n.d(t,"b",(function(){return l}));var r=n(0),i=n(2),o=n(3),s=function(){return(s=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){var r=t.labelElementRef.getBoundingClientRect(),i=r.width,o=r.height;switch(t.props.labelPosition){case"up":case"down":n-=o;break;case"left":case"right":e-=i}}var s={width:t.props.width,height:t.props.height},a={width:e,height:n};t.sizeChanged(s,a)&&(t.resizeElement(e,n),t.resizedEventManager.emit({item:t,prevSize:s,newSize:a}),t.debouncedResizementSave(e,n))})))},e.prototype.stopResizementListener=function(){this.removeResizement&&(this.removeResizement(),this.removeResizement=null)},e.prototype.init=function(){this.elementRef=this.createContainerDomElement(),this.labelElementRef=this.createLabelDomElement(),this.childElementRef=this.createDomElement(),this.elementRef.appendChild(this.childElementRef),this.elementRef.appendChild(this.labelElementRef),this.resizeElement(this.itemProps.width,this.itemProps.height),this.changeLabelPosition(this.itemProps.labelPosition)},e.prototype.createContainerDomElement=function(){var e,t=this;return this.props.isLinkEnabled?(e=document.createElement("a"),this.props.link?e.href=this.props.link:e.className="textDecorationNone"):(e=document.createElement("div")).className="textDecorationNone",e.classList.add("visual-console-item"),this.props.isOnTop&&e.classList.add("is-on-top"),e.style.left=this.props.x+"px",e.style.top=this.props.y+"px",e.addEventListener("dblclick",(function(e){t.meta.isBeingMoved||t.meta.isBeingResized||(t.unSelectItem(),t.selectItem(),t.dblClickEventManager.emit({item:t,nativeEvent:e}))})),e.addEventListener("click",(function(e){if(t.meta.editMode)e.preventDefault(),e.stopPropagation();else if(t.itemProps.isLinkEnabled&&null!=t.itemProps.link){var n=document.createElement("div");n.className="div-visual-console-spinner";var r=document.createElement("div");r.className="visual-console-spinner",n.appendChild(r);for(var i=e.composedPath(),o="visual-console-container",s=0;s0){var n=document.createElement("table"),r=document.createElement("tr"),i=document.createElement("tr"),o=document.createElement("tr"),s=document.createElement("td");switch(s.innerHTML=t,r.appendChild(s),n.appendChild(i),n.appendChild(r),n.appendChild(o),n.style.textAlign="center",this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width=this.props.width+"px",n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height=this.props.height+"px")}e.appendChild(n)}return e},e.prototype.getLabelWithMacrosReplaced=function(){var e=this.props;return Object(r.q)([{macro:"_date_",value:Object(r.f)(new Date)},{macro:"_time_",value:Object(r.g)(new Date)},{macro:"_agent_",value:null!=e.agentAlias?e.agentAlias:""},{macro:"_agentdescription_",value:null!=e.agentDescription?e.agentDescription:""},{macro:"_address_",value:null!=e.agentAddress?e.agentAddress:""},{macro:"_module_",value:null!=e.moduleName?e.moduleName:""},{macro:"_moduledescription_",value:null!=e.moduleDescription?e.moduleDescription:""}],this.props.label||"")},e.prototype.updateDomElement=function(e){e.innerHTML=this.createDomElement().innerHTML},Object.defineProperty(e.prototype,"props",{get:function(){return s({},this.itemProps)},set:function(e){this.setProps(e)},enumerable:!1,configurable:!0}),e.prototype.setProps=function(e){var t=this.props;this.itemProps=e,this.shouldBeUpdated(t,e)&&this.render(t,this._metadata)},Object.defineProperty(e.prototype,"meta",{get:function(){return s({},this._metadata)},set:function(e){this.setMeta(e)},enumerable:!1,configurable:!0}),e.prototype.setMeta=function(e){var t=this._metadata;this._metadata=s(s({},t),e),void 0!==e.isSelected&&t.isSelected!==e.isSelected&&this.selectionChangedEventManager.emit({selected:e.isSelected}),this.render(this.itemProps,t)},e.prototype.shouldBeUpdated=function(e,t){return e!==t},e.prototype.render=function(e,t){void 0===e&&(e=null),void 0===t&&(t=null),this.updateDomElement(this.childElementRef),e&&!this.positionChanged(e,this.props)||this.moveElement(this.props.x,this.props.y),e&&!this.sizeChanged(e,this.props)||this.resizeElement(this.props.width,this.props.height);var n=this.labelElementRef.innerHTML,r=this.createLabelDomElement().innerHTML;if(n!==r&&(this.labelElementRef.innerHTML=r),e&&e.labelPosition===this.props.labelPosition||this.changeLabelPosition(this.props.labelPosition),e&&e.isOnTop===this.props.isOnTop||(this.props.isOnTop?this.elementRef.classList.add("is-on-top"):this.elementRef.classList.remove("is-on-top")),e&&e.isLinkEnabled!==this.props.isLinkEnabled){var i=this.createContainerDomElement();i.innerHTML=this.elementRef.innerHTML;for(var o=this.elementRef.attributes,s=0;s0?t.item(0):null;if(n)switch(this.props.labelPosition){case"up":case"down":this.props.width>0&&(n.style.width=this.props.width+"px",n.style.height="");break;case"left":case"right":this.props.height>0&&(n.style.width="",n.style.height=this.props.height+"px")}},e.prototype.moveElement=function(e,t){this.elementRef.style.left=e+"px",this.elementRef.style.top=t+"px"},e.prototype.move=function(e,t){this.moveElement(e,t),this.itemProps=s(s({},this.props),{x:e,y:t})},e.prototype.sizeChanged=function(e,t){return e.width!==t.width||e.height!==t.height},e.prototype.resizeElement=function(e,t){if(13!=this.props.type&&21!=this.props.type&&(this.childElementRef.style.width=e>0?e+"px":"",this.childElementRef.style.height=t>0?t+"px":""),this.props.label&&this.props.label.length>0){var n=this.labelElementRef.getElementsByTagName("table"),r=n.length>0?n.item(0):null;if(r)switch(this.props.labelPosition){case"up":case"down":r.style.width=e>0?e+"px":"";break;case"left":case"right":r.style.height=t>0?t+"px":""}}},e.prototype.resize=function(e,t){this.resizeElement(e,t),this.itemProps=s(s({},this.props),{width:e,height:t})},e.prototype.onClick=function(e){var t=this.clickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onDblClick=function(e){var t=this.dblClickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onMoved=function(e){var t=this.movedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onMovementFinished=function(e){var t=this.movementFinishedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onResized=function(e){var t=this.resizedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onResizeFinished=function(e){var t=this.resizeFinishedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onRemove=function(e){var t=this.removeEventManager.on(e);return this.disposables.push(t),t},e.prototype.onSelectionChanged=function(e){var t=this.selectionChangedEventManager.on(e);return this.disposables.push(t),t},e.prototype.selectItem=function(){this.meta=s(s({},this.meta),{isSelected:!0}),this.initMovementListener(this.elementRef),13!==this.props.type&&21!==this.props.type&&this.initResizementListener(this.elementRef)},e.prototype.unSelectItem=function(){this.meta=s(s({},this.meta),{isSelected:!1}),this.stopMovementListener(),13!==this.props.type&&this.stopResizementListener()},e.prototype.getFormContainer=function(){return e.getFormContainer(this.props)},e.getFormContainer=function(e){var t=e.type?function(e){var t="";switch(e){case 0:t=Object(r.t)("Static image");break;case 1:t=Object(r.t)("Module graph");break;case 2:t=Object(r.t)("Simple value");break;case 3:t=Object(r.t)("Percentile item");break;case 4:t=Object(r.t)("Label");break;case 5:t=Object(r.t)("Icon");break;case 6:case 7:case 8:t=Object(r.t)("Simple value");break;case 9:t=Object(r.t)("Percentile item");break;case 10:t=Object(r.t)("Service");break;case 11:t=Object(r.t)("Group");break;case 12:t=Object(r.t)("Box");break;case 13:t=Object(r.t)("Line");break;case 14:t=Object(r.t)("Event history graph");break;case 15:case 16:t=Object(r.t)("Percentile item");break;case 17:t=Object(r.t)("Serialized pie graph");break;case 18:t=Object(r.t)("Bars graph");break;case 19:t=Object(r.t)("Clock");break;case 20:t=Object(r.t)("Color cloud");break;case 21:t=Object(r.t)("Network link");break;case 22:t=Object(r.t)("Odometer");break;case 23:t=Object(r.t)("Basic chart");break;default:t=Object(r.t)("Item")}return t}(e.type):Object(r.t)("Item");return new o.FormContainer(t,[],[])},e}();t.a=c},function(e,t,n){"use strict";var r=function(){var e=this;this.listeners=[],this.listenersOncer=[],this.on=function(t){return e.listeners.push(t),{dispose:function(){return e.off(t)}}},this.once=function(t){e.listenersOncer.push(t)},this.off=function(t){var n=e.listeners.indexOf(t);n>-1&&e.listeners.splice(n,1)},this.emit=function(t){e.listeners.forEach((function(e){return e(t)})),e.listenersOncer.forEach((function(e){return e(t)})),e.listenersOncer=[]},this.pipe=function(t){return e.on((function(e){return t.emit(e)}))}};t.a=r},function(e,t,n){"use strict";n.r(t),n.d(t,"InputGroup",(function(){return s})),n.d(t,"FormContainer",(function(){return a}));var r=n(2),i=function(){return(i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&(this.inputGroupsByName=t.reduce((function(e,t){return t.onDataRequested(i.handleItemDataRequested),e[t.name]=t,e}),this.inputGroupsByName)),n.length>0&&(this.enabledInputGroupNames=o(this.enabledInputGroupNames,n.filter((function(e){return null!=i.inputGroupsByName[e]}))))}return e.prototype.getInputGroup=function(e){return this.inputGroupsByName[e]||null},e.prototype.addInputGroup=function(e,t){return void 0===t&&(t=null),e.onDataRequested(this.handleItemDataRequested),this.inputGroupsByName[e.name]=e,this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(t){return t!==e.name})),null!==t?t<=0?this.enabledInputGroupNames=o([e.name],this.enabledInputGroupNames):t>=this.enabledInputGroupNames.length?this.enabledInputGroupNames=o(this.enabledInputGroupNames,[e.name]):this.enabledInputGroupNames=o(this.enabledInputGroupNames.slice(0,t),[e.name],this.enabledInputGroupNames.slice(t)):this.enabledInputGroupNames=o(this.enabledInputGroupNames,[e.name]),this},e.prototype.removeInputGroup=function(e){return delete this.inputGroupsByName[e],this.enabledInputGroupNames=this.enabledInputGroupNames.filter((function(t){return t!==e})),this},e.prototype.getFormElement=function(e){var t=this;void 0===e&&(e="update");var n=document.createElement("form");n.id="visual-console-item-edition",n.className="visual-console-item-edition",n.addEventListener("submit",(function(e){e.preventDefault(),t.submitEventManager.emit({nativeEvent:e,data:t.enabledInputGroupNames.reduce((function(e,n){return t.inputGroupsByName[n]&&(e=i(i({},e),t.inputGroupsByName[n].data)),e}),{})})}));var r=document.createElement("div");return r.className="input-groups",this.enabledInputGroupNames.forEach((function(e){t.inputGroupsByName[e]&&r.appendChild(t.inputGroupsByName[e].element)})),n.appendChild(r),n},e.prototype.reset=function(){var e=this;this.enabledInputGroupNames.forEach((function(t){e.inputGroupsByName[t]&&e.inputGroupsByName[t].reset()}))},e.prototype.onSubmit=function(e){return this.submitEventManager.on(e)},e.prototype.onInputGroupDataRequested=function(e){return this.itemDataRequestedEventManager.on(e)},e}()},function(e,t,n){"use strict";n(12);var r="http://www.w3.org/2000/svg";t.a=function(e,t,n){var i=void 0===n?{}:n,o=i.size,s=i.color,a=i.spin,l=i.pulse,c=document.createElement("figure");c.title=t,c.className="fa fa-"+e.iconName,o&&c.classList.add("fa-"+o),a?c.classList.add("fa-spin"):l&&c.classList.add("fa-pulse");var p=document.createElementNS(r,"svg");p.setAttribute("viewBox","0 0 "+e.icon[0]+" "+e.icon[1]),s&&p.setAttribute("fill",s);var u=document.createElementNS(r,"path"),d="string"==typeof e.icon[4]?e.icon[4]:e.icon[4][0];return u.setAttribute("d",d),p.appendChild(u),c.appendChild(p),c}},function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"d",(function(){return s})); /*! * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) */ -var r={prefix:"fas",iconName:"list-alt",icon:[512,512,[],"f022","M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"]},i={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},o={prefix:"fas",iconName:"plus-circle",icon:[512,512,[],"f055","M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"]},s={prefix:"fas",iconName:"trash-alt",icon:[448,512,[],"f2ed","M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"]}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"b",(function(){return eventsHistoryPropsDecoder}));var _lib__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(0),_Item__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(1),__extends=(extendStatics=function(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}extendStatics(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),extendStatics,__assign=function(){return(__assign=Object.assign||function(e){for(var t,n=1,r=arguments.length;n=i;)s++,e/=i;return e=i?Math.round(2*e)/2:Math.round(2*e),isNaN(e)&&(e=0),e+" "+["","K","M","G","T","P","E","Z","Y"][s]+n},BasicChart.prototype.pad=function(e,t,n){var r=e+"";return t<=r.length?r:this.pad(r+n,t,n)},BasicChart}(_Item__WEBPACK_IMPORTED_MODULE_1__.a);__webpack_exports__.b=BasicChart},function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARpJREFUeNqUU8ENwjAMTCsGyAiwAIIN2hdfmACYgLIACBYAJgA26JcXbABigo7QEbhDFxSFEIlIp7Sxz/Y5jjGJtb30B0TKJ4uQCmwLYByYauC8Gj1r/zAPyEdsV6AFhnDOCH4DDXCkD2C/KhCZWUuQHr8kMQiDwWfyqQAGEmchmedA5f5lI7HA+cyXsAY2kcxT2YwXhFIO7jyXHpZ2CktWmb2Imj3QpaRcZBc51FxJWhiYTWa1tmPSyyZsretBo2zW/LeKdwCV3kQGJzWhlNWCe3O3cGZXf1TRBmSrGziEg3TXZ6kmxTKTvFPj337+KJfa7xqs2Bu5SvvcJckiGSo9JqOrMspoNStLv8Is0ajCdRrrxmAxaS8BBgA1e3UUTVCKKgAAAABJRU5ErkJggg=="},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";n.r(t);n(11);var r,i=n(0),o=n(1),s=(r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),a=function(){return(a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){var v=b.item(0);if(null!=v){v.setAttribute("width",""+(i+s)),v.setAttribute("height",""+(o+s));var g=v.getElementsByTagNameNS(P,"line");if(g.length>0){var y=g.item(0);null!=y&&(y.setAttribute("x1",""+d),y.setAttribute("y1",""+h),y.setAttribute("x2",""+m),y.setAttribute("y2",""+f),y.setAttribute("stroke",u||"black"),y.setAttribute("stroke-width",""+s))}}}if(this.moveMode){var _=document.createElement("div"),E=document.createElement("div");if(this.isMoving){var O=e.getElementsByClassName("visual-console-item-line-circle-start");if(O.length>0)(k=O.item(0))&&(_=k);var w=e.getElementsByClassName("visual-console-item-line-circle-end");if(w.length>0)(k=w.item(0))&&(E=k)}if(_.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-start"),_.style.width=2*this.circleRadius+"px",_.style.height=2*this.circleRadius+"px",_.style.borderRadius="50%",_.style.backgroundColor=""+u,_.style.position="absolute",_.style.left=d-this.circleRadius+"px",_.style.top=h-this.circleRadius+"px",_.style.cursor="move",E.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-end"),E.style.width=2*this.circleRadius+"px",E.style.height=2*this.circleRadius+"px",E.style.borderRadius="50%",E.style.backgroundColor=""+u,E.style.position="absolute",E.style.left=m-this.circleRadius+"px",E.style.top=f-this.circleRadius+"px",E.style.cursor="move",null!==e.parentElement){for(var M=e.parentElement.getElementsByClassName("visual-console-item-line-circle");M.length>0;){(k=M.item(0))&&k.remove()}e.parentElement.appendChild(_),e.parentElement.appendChild(E)}this.initStartPositionMovementListener(_,this.elementRef.parentElement),this.initEndPositionMovementListener(E,this.elementRef.parentElement)}else if(this.moveMode)this.stopStartPositionMovementListener();else if(this.stopStartPositionMovementListener(),null!==e.parentElement)for(M=e.parentElement.getElementsByClassName("visual-console-item-line-circle");M.length>0;){var k;(k=M.item(0))&&k.remove()}},t.extractBoxSizeAndPosition=function(e,t){return{width:Math.abs(e.x-t.x),height:Math.abs(e.y-t.y),x:Math.min(e.x,t.x),y:Math.min(e.y,t.y)}},t.prototype.move=function(t,n){e.prototype.moveElement.call(this,t,n);var r=this.props.startPosition.x-this.props.endPosition.x<=0,i=this.props.startPosition.y-this.props.endPosition.y<=0,o={x:r?t:this.props.width+t,y:i?n:this.props.height+n},s={x:r?this.props.width+t:t,y:i?this.props.height+n:n};this.props=A(A({},this.props),{startPosition:o,endPosition:s})},t.prototype.remove=function(){this.stopStartPositionMovementListener(),e.prototype.remove.call(this)},t.prototype.onLineMovementFinished=function(e){var t=this.lineMovedEventManager.on(e);return this.lineMovedEventDisposables.push(t),t},t}(o.a),T=I,S=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),L=function(){return(L=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){if(null!=(r=y.item(0))){for(var _=r.getElementsByTagNameNS("http://www.w3.org/2000/svg","line"),E=r.getElementsByTagNameNS("http://www.w3.org/2000/svg","g");E.length>0;)E[0].remove();_.length>0&&(n=_.item(0))}if(null!=r&&null!=n){var O=p.x-o+a/2+l/2,w=p.y-s+a/2+c/2,M=u.x-o+a/2+l/2,k=u.y-s+a/2+c/2,C=p.x-o+a/2+l/2,x=p.y-s+a/2+c/2,A=u.x-o+a/2+l/2,j=u.y-s+a/2+c/2,P=180*Math.atan2(k-w,M-O)/Math.PI;if(v<=0){_=m.split("
    ");v=0,_.forEach((function(e){e.length>v&&(v=10*e.length)})),g<=0&&(g=25*_.length)}if(f<=0){_=h.split("
    ");f=0,_.forEach((function(e){e.length>f&&(f=10*e.length)})),b<=0&&(b=25*_.length)}if(CA&&(C-=25+v,A+=25),xj&&(x-=25+g,j+=25),void 0===d&&(d="#000"),null!==t.parentElement){for(var I=t.parentElement.getElementsByClassName("vc-item-nl-label");I.length>0;){var T=I.item(0);T&&T.remove()}for(var S=t.parentElement.getElementsByClassName("vc-item-nl-arrow");S.length>0;){var L=S.item(0);L&&L.remove()}}var N=2*a,R=O+(M-O)/2-N,D=w+(k-w)/2-N,B=document.createElement("div");B.classList.add("vc-item-nl-arrow"),B.style.position="absolute",B.style.border=N+"px solid transparent",B.style.borderBottom=N+"px solid "+d,B.style.left=R+"px",B.style.top=D+"px",B.style.transform="rotate("+(90+P)+"deg)";var z=document.createElement("div");if(z.classList.add("vc-item-nl-arrow"),z.style.position="absolute",z.style.border=N+"px solid transparent",z.style.borderBottom=N+"px solid "+d,z.style.left=R+"px",z.style.top=D+"px",z.style.transform="rotate("+(270+P)+"deg)",null!==t.parentElement&&(t.parentElement.appendChild(B),t.parentElement.appendChild(z)),""!=m){var H=document.createElement("div");try{H.innerHTML=m,H.style.position="absolute",H.style.left=C+"px",H.style.top=x+"px",H.style.width=v+"px",H.style.border="2px solid "+d,H.classList.add("vc-item-nl-label","label-start")}catch(e){console.error(e)}null!==t.parentElement&&t.parentElement.appendChild(H)}if(""!=h){var W=document.createElement("div");try{W.innerHTML=h,W.style.position="absolute",W.style.left=A+"px",W.style.top=j+"px",W.style.width=f+"px",W.style.border="2px solid "+d,W.classList.add("vc-item-nl-label","label-end")}catch(e){console.error(e)}null!==t.parentElement&&t.parentElement.appendChild(W)}}}},t}(T),D=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),B=function(){return(B=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){var v=document.createElementNS(e,"text");v.setAttribute("text-anchor","middle"),v.setAttribute("font-size","8"),v.setAttribute("transform","translate(30 50) rotate(90)"),v.setAttribute("fill",r),v.textContent=b,m.append(v)}var g=document.createElementNS(e,"g");g.setAttribute("class","marks");var y=document.createElementNS(e,"g");y.setAttribute("class","mark"),y.setAttribute("transform","translate(50 50)");var _=document.createElementNS(e,"line");_.setAttribute("x1","36"),_.setAttribute("y1","0"),_.setAttribute("x2","46"),_.setAttribute("y2","0"),_.setAttribute("stroke",r),_.setAttribute("stroke-width","5");var E=document.createElementNS(e,"line");E.setAttribute("x1","36"),E.setAttribute("y1","0"),E.setAttribute("x2","46"),E.setAttribute("y2","0"),E.setAttribute("stroke",t),E.setAttribute("stroke-width","1"),y.append(_,E),g.append(y);for(var O=1;O<60;O++){var w=document.createElementNS(e,"line");w.setAttribute("y1","0"),w.setAttribute("y2","0"),w.setAttribute("stroke",r),w.setAttribute("transform","translate(50 50) rotate("+6*O+")"),O%5==0?(w.setAttribute("x1","38"),w.setAttribute("x2","46"),w.setAttribute("stroke-width",O%15==0?"2":"1")):(w.setAttribute("x1","42"),w.setAttribute("x2","46"),w.setAttribute("stroke-width","0.5")),g.append(w)}var M=document.createElementNS(e,"g");M.setAttribute("class","hour-hand"),M.setAttribute("transform","translate(50 50)");var k=document.createElementNS(e,"line");k.setAttribute("class","hour-hand-a"),k.setAttribute("x1","0"),k.setAttribute("y1","0"),k.setAttribute("x2","30"),k.setAttribute("y2","0"),k.setAttribute("stroke",s),k.setAttribute("stroke-width","4"),k.setAttribute("stroke-linecap","round");var C=document.createElementNS(e,"line");C.setAttribute("class","hour-hand-b"),C.setAttribute("x1","0"),C.setAttribute("y1","0"),C.setAttribute("x2","29.9"),C.setAttribute("y2","0"),C.setAttribute("stroke",o),C.setAttribute("stroke-width","3.1"),C.setAttribute("stroke-linecap","round"),M.append(k,C);var x=document.createElementNS(e,"g");x.setAttribute("class","minute-hand"),x.setAttribute("transform","translate(50 50)");var A=document.createElementNS(e,"line");A.setAttribute("class","minute-hand-a"),A.setAttribute("x1","0"),A.setAttribute("y1","0"),A.setAttribute("x2","40"),A.setAttribute("y2","0"),A.setAttribute("stroke",s),A.setAttribute("stroke-width","2"),A.setAttribute("stroke-linecap","round");var j=document.createElementNS(e,"line");j.setAttribute("class","minute-hand-b"),j.setAttribute("x1","0"),j.setAttribute("y1","0"),j.setAttribute("x2","39.9"),j.setAttribute("y2","0"),j.setAttribute("stroke",o),j.setAttribute("stroke-width","1.5"),j.setAttribute("stroke-linecap","round");var P=document.createElementNS(e,"circle");P.setAttribute("r","3"),P.setAttribute("fill",o),x.append(A,j,P);var I=document.createElementNS(e,"g");I.setAttribute("class","second-hand"),I.setAttribute("transform","translate(50 50)");var T=document.createElementNS(e,"line");T.setAttribute("x1","0"),T.setAttribute("y1","0"),T.setAttribute("x2","46"),T.setAttribute("y2","0"),T.setAttribute("stroke",a),T.setAttribute("stroke-width","1"),T.setAttribute("stroke-linecap","round");var S=document.createElementNS(e,"circle");S.setAttribute("r","2"),S.setAttribute("fill",a),I.append(T,S);var L=document.createElementNS(e,"circle");L.setAttribute("cx","50"),L.setAttribute("cy","50"),L.setAttribute("r","0.3"),L.setAttribute("fill",o);var N=this.getOriginDate(),R=N.getSeconds(),D=N.getMinutes(),B=6*R,z=6*D+R/60*6,H=30*N.getHours()+D/60*30;if(M.setAttribute("transform","translate(50 50) rotate("+H+")"),x.setAttribute("transform","translate(50 50) rotate("+z+")"),I.setAttribute("transform","translate(50 50) rotate("+B+")"),h.append(m,g,M,x,I,L),h.setAttribute("transform","rotate(-90)"),d.innerHTML="\n \n ",d.append(h),"datetime"===this.props.clockFormat){var W=document.createElement("span");W.className="date",W.textContent=Object(i.f)(N,"default"),W.style.fontSize=u+"px",this.props.color&&(W.style.color=this.props.color),d.append(W)}return d},t.prototype.createDigitalClock=function(){var e=document.createElement("div");e.className="digital-clock";var t=this.getElementSize(),n=t.width,r=t.height,o=n;r0){var m=document.createElement("span");m.className="timezone",m.textContent=h,m.style.fontSize=c+"px",this.props.color&&(m.style.color=this.props.color),e.append(m)}return e},t.prototype.getOriginDate=function(e){void 0===e&&(e=null);var t=e||new Date,n=1e3*this.props.clockTimezoneOffset,r=60*t.getTimezoneOffset()*1e3,i=t.getTime()+n+r;return new Date(i)},t.prototype.getHumanTimezone=function(e){void 0===e&&(e=this.props.clockTimezone);var t=e.split("/")[1];return(void 0===t?"":t).replace("_"," ")},t.prototype.getElementSize=function(e,t){switch(void 0===e&&(e=this.props.width),void 0===t&&(t=this.props.height),this.props.clockType){case"analogic":var n=100;e>0&&t>0?n=Math.min(e,t):e>0?n=e:t>0&&(n=t);var r=0;return"datetime"===this.props.clockFormat&&(r=t/8),{width:n,height:n+r};case"digital":return e>0&&t>0?t=e/20?t=e/2:t>0?e=2*t:(e=100,t=50),{width:e,height:t};default:throw new Error("invalid clock type.")}},t.TICK_INTERVAL=1e3,t}(o.a),q=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Y=function(){return(Y=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){e.style.borderStyle="solid";var t=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,t);e.style.borderWidth=n+"px",this.props.borderColor&&(e.style.borderColor=this.props.borderColor)}return e},t.prototype.updateDomElement=function(e){if(this.props.fillTransparent?e.style.backgroundColor="transparent":this.props.fillColor&&(e.style.backgroundColor=this.props.fillColor),this.props.borderWidth>0){e.style.borderStyle="solid";var t=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,t);e.style.borderWidth=n+"px",this.props.borderColor&&(e.style.borderColor=this.props.borderColor)}},t}(o.a),Z=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Q=function(){return(Q=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&(n=Object(i.q)([{macro:/\(?_VALUE_\)?/i,value:n}],r)),e.innerHTML=n}return e},t.prototype.createLabelDomElement=function(){var e=document.createElement("div");return e.className="visual-console-item-label",e},t}(o.a),se=n(6),ae=Math.PI,le=2*ae,ce=le-1e-6;function pe(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function ue(){return new pe}pe.prototype=ue.prototype={constructor:pe,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,n,r){this._+="Q"+ +e+","+ +t+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(e,t,n,r,i,o){this._+="C"+ +e+","+ +t+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(e,t,n,r,i){e=+e,t=+t,n=+n,r=+r,i=+i;var o=this._x1,s=this._y1,a=n-e,l=r-t,c=o-e,p=s-t,u=c*c+p*p;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(u>1e-6)if(Math.abs(p*a-l*c)>1e-6&&i){var d=n-o,h=r-s,m=a*a+l*l,f=d*d+h*h,b=Math.sqrt(m),v=Math.sqrt(u),g=i*Math.tan((ae-Math.acos((m+u-f)/(2*b*v)))/2),y=g/v,_=g/b;Math.abs(y-1)>1e-6&&(this._+="L"+(e+y*c)+","+(t+y*p)),this._+="A"+i+","+i+",0,0,"+ +(p*d>c*h)+","+(this._x1=e+_*a)+","+(this._y1=t+_*l)}else this._+="L"+(this._x1=e)+","+(this._y1=t);else;},arc:function(e,t,n,r,i,o){e=+e,t=+t,o=!!o;var s=(n=+n)*Math.cos(r),a=n*Math.sin(r),l=e+s,c=t+a,p=1^o,u=o?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+l+","+c:(Math.abs(this._x1-l)>1e-6||Math.abs(this._y1-c)>1e-6)&&(this._+="L"+l+","+c),n&&(u<0&&(u=u%le+le),u>ce?this._+="A"+n+","+n+",0,1,"+p+","+(e-s)+","+(t-a)+"A"+n+","+n+",0,1,"+p+","+(this._x1=l)+","+(this._y1=c):u>1e-6&&(this._+="A"+n+","+n+",0,"+ +(u>=ae)+","+p+","+(this._x1=e+n*Math.cos(i))+","+(this._y1=t+n*Math.sin(i))))},rect:function(e,t,n,r){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var de=ue,he=function(e){return function(){return e}},me=Math.abs,fe=Math.atan2,be=Math.cos,ve=Math.max,ge=Math.min,ye=Math.sin,_e=Math.sqrt,Ee=Math.PI,Oe=Ee/2,we=2*Ee;function Me(e){return e>1?0:e<-1?Ee:Math.acos(e)}function ke(e){return e>=1?Oe:e<=-1?-Oe:Math.asin(e)}function Ce(e){return e.innerRadius}function xe(e){return e.outerRadius}function Ae(e){return e.startAngle}function je(e){return e.endAngle}function Pe(e){return e&&e.padAngle}function Ie(e,t,n,r,i,o,s,a){var l=n-e,c=r-t,p=s-i,u=a-o,d=u*l-p*c;if(!(d*d<1e-12))return[e+(d=(p*(t-o)-u*(e-i))/d)*l,t+d*c]}function Te(e,t,n,r,i,o,s){var a=e-n,l=t-r,c=(s?o:-o)/_e(a*a+l*l),p=c*l,u=-c*a,d=e+p,h=t+u,m=n+p,f=r+u,b=(d+m)/2,v=(h+f)/2,g=m-d,y=f-h,_=g*g+y*y,E=i-o,O=d*f-m*h,w=(y<0?-1:1)*_e(ve(0,E*E*_-O*O)),M=(O*y-g*w)/_,k=(-O*g-y*w)/_,C=(O*y+g*w)/_,x=(-O*g+y*w)/_,A=M-b,j=k-v,P=C-b,I=x-v;return A*A+j*j>P*P+I*I&&(M=C,k=x),{cx:M,cy:k,x01:-p,y01:-u,x11:M*(i/E-1),y11:k*(i/E-1)}}var Se=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Le=function(){return(Le=Object.assign||function(e){for(var t,n=1,r=arguments.length;nd;if(a||(a=l=de()),u1e-12)if(m>we-1e-12)a.moveTo(u*be(d),u*ye(d)),a.arc(0,0,u,d,h,!f),p>1e-12&&(a.moveTo(p*be(h),p*ye(h)),a.arc(0,0,p,h,d,f));else{var b,v,g=d,y=h,_=d,E=h,O=m,w=m,M=s.apply(this,arguments)/2,k=M>1e-12&&(r?+r.apply(this,arguments):_e(p*p+u*u)),C=ge(me(u-p)/2,+n.apply(this,arguments)),x=C,A=C;if(k>1e-12){var j=ke(k/p*ye(M)),P=ke(k/u*ye(M));(O-=2*j)>1e-12?(_+=j*=f?1:-1,E-=j):(O=0,_=E=(d+h)/2),(w-=2*P)>1e-12?(g+=P*=f?1:-1,y-=P):(w=0,g=y=(d+h)/2)}var I=u*be(g),T=u*ye(g),S=p*be(E),L=p*ye(E);if(C>1e-12){var N,R=u*be(y),D=u*ye(y),B=p*be(_),z=p*ye(_);if(m1e-12?A>1e-12?(b=Te(B,z,I,T,u,A,f),v=Te(R,D,S,L,u,A,f),a.moveTo(b.cx+b.x01,b.cy+b.y01),A1e-12&&O>1e-12?x>1e-12?(b=Te(S,L,R,D,p,-x,f),v=Te(I,T,B,z,p,-x,f),a.lineTo(b.cx+b.x01,b.cy+b.y01),x0){var d=document.createElementNS(Be,"tspan");d.setAttribute("x","0"),d.setAttribute("dy","1em"),d.textContent=""+e,d.style.fontSize="8pt";var h=document.createElementNS(Be,"tspan");h.setAttribute("x","0"),h.setAttribute("dy","1em"),h.textContent=""+this.props.unit,h.style.fontSize="8pt",u.append(d,h),u.setAttribute("transform","translate(50 33)")}else u.textContent=""+e,u.style.fontSize="8pt",u.setAttribute("transform","translate(50 50)");else u.textContent=n+"%",u.setAttribute("transform","translate(50 50)");i.append(u)}return!0!==this.props.agentDisabled&&!0!==this.props.moduleDisabled||i.setAttribute("opacity","0.2"),null!==i&&r.append(i),r},t.prototype.updateDomElement=function(e){!1===this.meta.isBeingResized&&this.resizeElement(this.props.width,this.props.height),e.innerHTML=this.createDomElement().innerHTML},t.prototype.resizeElement=function(t,n){"progress-bar"===this.props.percentileType?e.prototype.resizeElement.call(this,t,35):e.prototype.resizeElement.call(this,t,t)},t.prototype.resize=function(t){this.resizeElement(t,t);var n=this.props.maxValue||0;"progress-bar"===this.props.percentileType&&(n=35),e.prototype.setProps.call(this,Le(Le({},this.props),{width:t,height:n}))},t.prototype.getProgress=function(){var e=this.props.minValue||0,t=this.props.maxValue||100,n=null==this.props.value?0:this.props.value;return n<=e?0:n>=t?100:Math.trunc((n-e)/(t-e)*100)},t}(o.a),He=n(7),We=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Ge=function(){return(Ge=Object.assign||function(e){for(var t,n=1,r=arguments.length;n3&&n<=6?t=" K":n>6&&n<=9?t=" M":n>9&&n<=12?t=" G":n>12&&n<=15&&(t=" T"),t},t.prototype.getCoords=function(e,t){if(""===this.props.minMaxValue)e=e;else{var n=JSON.parse(this.props.minMaxValue);if(n.min===e)e=0;else if(n.max===e||100===e)e=100;else{var r=n.max-n.min;e=100-100*(n.max-e)/r}}return e=180-1.8*e,t+Math.cos(e*Math.PI/180)*t+","+(t-Math.sin(e*Math.PI/180)*t)},t.prototype.truncateTitle=function(e){if(null!=e&&e.length>22){var t=e.length/2,n=t-9;return e.substr(0,t-n)+"..."+e.substr(t+n)}return e},t}(o.a),rt=n(9),it=function(){return(it=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0?e.selected=!0:e.selected=!1,r.selectionChangedEventManager.emit(e)},this.handleContainerClick=function(){r.unSelectItems()},this.containerRef=e,this._props=function(e){var t=e.id,n=e.name,r=e.groupId,o=e.backgroundURL,s=e.backgroundColor,a=e.isFavorite,l=e.relationLineWidth;if(null==t||isNaN(parseInt(t)))throw new TypeError("invalid Id.");if("string"!=typeof n||0===n.length)throw new TypeError("invalid name.");if(null==r||isNaN(parseInt(r)))throw new TypeError("invalid group Id.");return it({id:parseInt(t),name:n,groupId:parseInt(r),backgroundURL:Object(i.k)(o,null),backgroundColor:Object(i.k)(s,null),isFavorite:Object(i.l)(a),relationLineWidth:Object(i.n)(l,0)},Object(i.r)(e))}(t),this.render(),(n=n.sort((function(e,t){return null==e.id||null==t.id?0:e.id>t.id?1:-1}))).forEach((function(e){return r.addElement(e,r)})),this.buildRelations(),this.elements.forEach((function(e){e instanceof T&&r.refreshLink(e)})),this.containerRef.addEventListener("click",this.handleContainerClick)}return e.prototype.coordinatesInItem=function(e,t,n){return 13!=n.type&&21!=n.type&&(e>n.x&&en.y&&t0?(null==this.lineLinks[n]&&(this.lineLinks[n]={}),this.lineLinks[n][t]={start:n,end:r}):this.lines[t].start>0&&(this.lineLinks[this.lines[t].start][t].start=0,this.lines[t].start=0),r>0?(null==this.lineLinks[r]&&(this.lineLinks[r]={}),this.lineLinks[r][t]={start:n,end:r}):this.lines[t].end>0&&(this.lineLinks[this.lines[t].end][t].end=0,this.lines[t].end=0),this.lines[t]={start:n,end:r},this.lineLinks)this.lineLinks[i][t]&&0==this.lineLinks[i][t].start&&0==this.lineLinks[i][t].end&&(delete this.lineLinks[i][t],0===Object.keys(this.lineLinks[i]).length&&delete this.lineLinks[i])}catch(e){console.error(e)}},e.prototype.updateLinesConnected=function(e,t,n){var r=this;null!=this.lineLinks[e.id]&&(Object.keys(this.lineLinks[e.id]).forEach((function(o){var s=parseInt(o);if(-1!==r.elementIds.indexOf(s)){var a=r.elementsById[s];if(a.props){var l=a.props.startPosition.x,c=a.props.startPosition.y,p=a.props.endPosition.x,u=a.props.endPosition.y;if(e.id==r.lineLinks[e.id][s].start&&(l=t.x+e.width/2,c=t.y+e.height/2),e.id==r.lineLinks[e.id][s].end&&(p=t.x+e.width/2,u=t.y+e.height/2),r.updateElement(it(it({},a.props),{startX:l,startY:c,endX:p,endY:u})),n)Object(i.c)(500,(function(e){r.lineMovedEventManager.emit({item:e.line,startPosition:{x:e.startX,y:e.startY},endPosition:{x:e.endX,y:e.endY}})}))({line:a,startX:l,startY:c,endX:p,endY:u})}}})),this.buildRelations(e.id,t.x+e.width/2,t.y+e.height/2))},Object.defineProperty(e.prototype,"elements",{get:function(){var e=this;return this.elementIds.map((function(t){return e.elementsById[t]})).filter((function(e){return null!=e}))},enumerable:!1,configurable:!0}),e.prototype.addElement=function(e,t){void 0===t&&(t=this);try{var n=function(e){var t=Object(i.n)(e.type,null);if(null==t)throw new TypeError("missing item type.");var n=Object(i.h)(e);switch(t){case 0:return new p(c(e),n);case 1:return new qe.a(Object(qe.b)(e),n);case 2:case 6:case 7:case 8:return new oe(ie(e),n);case 3:case 9:case 15:case 16:return new ze(De(e),n);case 4:return new ee($(e),n);case 5:return new m(h(e),n);case 10:return new Ze(Je(e),n);case 11:return new H(z(e),n);case 12:return new J(X(e),n);case 13:return new T(j(e),n);case 14:return new se.a(Object(se.b)(e),n);case 17:return new He.a(Object(He.b)(e),n);case 18:return new Ke(Ve(e),n);case 19:return new K(V(e),n);case 20:return new k(E(e),n);case 21:return new R(N(e),n);case 22:return new nt(et(e),n);case 23:return new rt.b(Object(rt.a)(e),n);default:throw new TypeError("item not found")}}(e);return t.elementsById[n.props.id]=n,t.elementIds.push(n.props.id),n.onRemove(t.handleElementRemove),n.onSelectionChanged(t.handleElementSelectionChanged),n.onClick(t.handleElementClick),n.onDblClick(t.handleElementDblClick),n instanceof T?(n.onLineMovementFinished(t.handleLineElementMovementFinished),this.refreshLink(n)):(n.onMoved(t.handleElementMovement),n.onMovementFinished(t.handleElementMovementFinished),n.onResized(t.handleElementResizement),n.onResizeFinished(t.handleElementResizementFinished)),t.containerRef.append(n.elementRef),n}catch(e){console.error("Error creating a new element:",e.message)}},e.prototype.updateElements=function(e){var t=this,n=e.map((function(e){return e.id||null})).filter((function(e){return null!=e}));this.elementIds.filter((function(e){return n.indexOf(e)<0})).forEach((function(e){null!=t.elementsById[e]&&(t.elementsById[e].remove(),delete t.elementsById[e])})),this.elementIds=n,e.forEach((function(e){if(e.id)if(null==t.elementsById[e.id])t.addElement(e);else try{t.elementsById[e.id].props=ot(e)}catch(e){console.error("Error updating an element:",e.message)}})),this.buildRelations()},e.prototype.updateElement=function(e){try{this.elementsById[e.id].props=it({},ot(e))}catch(e){console.error("Error updating element:",e.message)}this.buildRelations()},Object.defineProperty(e.prototype,"props",{get:function(){return it({},this._props)},set:function(e){var t=this.props;this._props=e,this.render(t)},enumerable:!1,configurable:!0}),e.prototype.render=function(e){void 0===e&&(e=null),e?(e.backgroundURL!==this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url("+this.props.backgroundURL+")":""),null!=this.props.backgroundColor&&e.backgroundColor!==this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.sizeChanged(e,this.props)&&this.resizeElement(this.props.width,this.props.height)):(this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url("+this.props.backgroundURL+")":""),this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.resizeElement(this.props.width,this.props.height))},e.prototype.sizeChanged=function(e,t){return e.width!==t.width||e.height!==t.height},e.prototype.resizeElement=function(e,t){this.containerRef.style.width=e+"px",this.containerRef.style.height=t+"px"},e.prototype.resize=function(e,t){this.props=it(it({},this.props),{width:e,height:t})},e.prototype.remove=function(){this.disposables.forEach((function(e){return e.dispose()})),this.elements.forEach((function(e){return e.remove()})),this.elementsById={},this.elementIds=[],this.clearRelations(),this.containerRef.removeEventListener("click",this.handleContainerClick),this.containerRef.innerHTML=""},e.prototype.buildRelations=function(e,t,n){var r=this;this.clearRelations(),this.elements.forEach((function(i){if(null!==i.props.parentId){var o=r.elementsById[i.props.parentId],s=r.elementsById[i.props.id];o&&s&&(null!=e?i.props.parentId==e?r.addRelationLine(o,s,t,n):i.props.id==e?r.addRelationLine(o,s,void 0,void 0,t,n):r.addRelationLine(o,s):r.addRelationLine(o,s))}}))},e.prototype.clearRelations=function(e){if(null!=e)for(var t in this.relations){var n=t.split("|"),r=Number.parseInt(n[0]),i=Number.parseInt(n[1]);e!==r&&e!==i||(this.relations[t].remove(),delete this.relations[t])}else for(var t in this.relations)this.relations[t].remove(),delete this.relations[t]},e.prototype.getRelationLine=function(e,t){var n=e+"|"+t;return this.relations[n]||null},e.prototype.getItemRelations=function(e){var t=[];for(var n in this.relations){var r=n.split("|"),i=Number.parseInt(r[0]),o=Number.parseInt(r[1]);e!==i&&e!==o||t.push({parentId:i,childId:o,line:this.relations[n]})}return t},e.prototype.getVisualCenter=function(e,t){var n=e.x+t.elementRef.clientWidth/2,r=e.y+t.elementRef.clientHeight/2;if(void 0!==t.props.label||""!==t.props.label||null!==t.props.label)switch(t.props.labelPosition){case"up":r=e.y+(t.elementRef.clientHeight+t.labelElementRef.clientHeight)/2;break;case"down":r=e.y+(t.elementRef.clientHeight-t.labelElementRef.clientHeight)/2;break;case"right":n=e.x+(t.elementRef.clientWidth-t.labelElementRef.clientWidth)/2;break;case"left":n=e.x+(t.elementRef.clientWidth+t.labelElementRef.clientWidth)/2}return{x:n,y:r}},e.prototype.addRelationLine=function(e,t,n,r,o,s){var a=e.props.id+"|"+t.props.id;null!=this.relations[a]&&this.relations[a].remove();var l=this.getVisualCenter(e.props,e),c=l.x,p=l.y,u=this.getVisualCenter(t.props,t),d=u.x,h=u.y;null!=n&&(c=n),null!=r&&(p=r),null!=o&&(d=o),null!=s&&(h=s);var m=new T(j({id:0,type:13,startX:c,startY:p,endX:d,endY:h,width:0,height:0,lineWidth:this.props.relationLineWidth,color:Object(i.k)(t.props.colorStatus,"#CCC")}),Object(i.h)({receivedAt:new Date}));return this.relations[a]=m,m.elementRef.style.zIndex="0",this.containerRef.append(m.elementRef),m},e.prototype.onItemClick=function(e){var t=this.clickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemDblClick=function(e){var t=this.dblClickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemMoved=function(e){var t=this.movedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onLineMoved=function(e){var t=this.lineMovedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemResized=function(e){var t=this.resizedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemSelectionChanged=function(e){var t=this.selectionChangedEventManager.on(e);return this.disposables.push(t),t},e.prototype.enableEditMode=function(){this.elements.forEach((function(e){e.meta=it(it({},e.meta),{editMode:!0})})),this.containerRef.classList.add("is-editing")},e.prototype.disableEditMode=function(){this.elements.forEach((function(e){e.meta=it(it({},e.meta),{editMode:!1})})),this.containerRef.classList.remove("is-editing")},e.prototype.selectItem=function(e,t){var n=this;void 0===t&&(t=!1),t?this.elementIds.forEach((function(t){var r=n.elementsById[t].meta;t!==e&&r.isSelected?n.elementsById[t].unSelectItem():t!==e||r.isSelected||n.elementsById[t].selectItem()})):this.elementsById[e]&&this.elementsById[e].selectItem()},e.prototype.unSelectItem=function(e){this.elementsById[e]&&(this.elementsById[e].meta.isSelected&&this.elementsById[e].unSelectItem())},e.prototype.unSelectItems=function(){var e=this;this.elementIds.forEach((function(t){e.elementsById[t]&&e.elementsById[t].unSelectItem()}))},e.itemDescriptiveName=function(e){var t;switch(e.props.type){case 0:t=Object(i.t)("Static graph")+" - "+e.props.imageSrc;break;case 1:t=Object(i.t)("Module graph");break;case 19:t=Object(i.t)("Clock");break;case 18:t=Object(i.t)("Bars graph");break;case 14:t=Object(i.t)("Event history graph");break;case 3:t=Object(i.t)("Percentile bar");break;case 15:t=Object(i.t)("Circular progress bar");break;case 16:t=Object(i.t)("Circular progress bar (interior)");break;case 2:t=Object(i.t)("Simple Value");break;case 4:t=Object(i.t)("Label");break;case 11:t=Object(i.t)("Group");break;case 20:t=Object(i.t)("Color cloud");break;case 5:t=Object(i.t)("Icon")+" - "+e.props.imageSrc;break;case 22:t=Object(i.t)("Odometer");break;case 23:t=Object(i.t)("BasicChart");break;default:t=Object(i.t)("Item")}var n=e.props;return null!=n.agentAlias&&null!=n.moduleName?t+=" ("+Object(i.e)(n.agentAlias,18)+" - "+Object(i.e)(n.moduleName,25)+")":null!=n.agentAlias&&(t+=" ("+Object(i.e)(n.agentAlias,25)+")"),t},e.items=((tt={})[0]=p,tt[1]=qe.a,tt[2]=oe,tt[6]=oe,tt[7]=oe,tt[8]=oe,tt[3]=ze,tt[9]=ze,tt[15]=ze,tt[16]=ze,tt[4]=ee,tt[5]=m,tt[10]=Ze,tt[11]=H,tt[12]=J,tt[13]=T,tt[14]=se.a,tt[17]=He.a,tt[18]=Ke,tt[19]=K,tt[20]=k,tt[21]=R,tt[22]=nt,tt[23]=rt.b,tt),e}(),at=function(){function e(e){this.cancellable={cancel:function(){}},this._status="waiting",this.statusChangeEventManager=new C.a,this.disposables=[],this.taskInitiator=e}return Object.defineProperty(e.prototype,"status",{get:function(){return this._status},set:function(e){this._status=e,this.statusChangeEventManager.emit(e)},enumerable:!1,configurable:!0}),e.prototype.init=function(){var e=this;this.cancellable=this.taskInitiator((function(){e.status="finished"})),this.status="started"},e.prototype.cancel=function(){this.cancellable.cancel(),this.status="cancelled"},e.prototype.onStatusChange=function(e){var t=this.statusChangeEventManager.on(e);return this.disposables.push(t),t},e}();var lt=function(){function e(){this.tasks={}}return e.prototype.add=function(e,t,n){void 0===n&&(n=0),this.tasks[e]&&"started"===this.tasks[e].status&&this.tasks[e].cancel();var r=n>0?function(e,t){return new at((function(){var n=null;return e.onStatusChange((function(r){"finished"===r&&(n=window.setTimeout((function(){e.init()}),t))})),e.init(),{cancel:function(){n&&clearTimeout(n),e.cancel()}}}))}(new at(t),n):new at(t);return this.tasks[e]=r,this.tasks[e]},e.prototype.init=function(e){!this.tasks[e]||"waiting"!==this.tasks[e].status&&"cancelled"!==this.tasks[e].status&&"finished"!==this.tasks[e].status||this.tasks[e].init()},e.prototype.cancel=function(e){this.tasks[e]&&"started"===this.tasks[e].status&&this.tasks[e].cancel()},e}();window.VisualConsole=st,window.VisualConsole.Form=f,window.AsyncTaskManager=lt}]); +var r={prefix:"fas",iconName:"list-alt",icon:[512,512,[],"f022","M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z"]},i={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},o={prefix:"fas",iconName:"plus-circle",icon:[512,512,[],"f055","M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"]},s={prefix:"fas",iconName:"trash-alt",icon:[448,512,[],"f2ed","M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"]}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"b",(function(){return eventsHistoryPropsDecoder}));var _lib__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(0),_Item__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(1),__extends=(extendStatics=function(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}extendStatics(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),extendStatics,__assign=function(){return(__assign=Object.assign||function(e){for(var t,n=1,r=arguments.length;n=i;)s++,e/=i;return e=i?Math.round(2*e)/2:Math.round(2*e),isNaN(e)&&(e=0),e+" "+["","K","M","G","T","P","E","Z","Y"][s]+n},BasicChart.prototype.pad=function(e,t,n){var r=e+"";return t<=r.length?r:this.pad(r+n,t,n)},BasicChart}(_Item__WEBPACK_IMPORTED_MODULE_1__.a);__webpack_exports__.b=BasicChart},function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARpJREFUeNqUU8ENwjAMTCsGyAiwAIIN2hdfmACYgLIACBYAJgA26JcXbABigo7QEbhDFxSFEIlIp7Sxz/Y5jjGJtb30B0TKJ4uQCmwLYByYauC8Gj1r/zAPyEdsV6AFhnDOCH4DDXCkD2C/KhCZWUuQHr8kMQiDwWfyqQAGEmchmedA5f5lI7HA+cyXsAY2kcxT2YwXhFIO7jyXHpZ2CktWmb2Imj3QpaRcZBc51FxJWhiYTWa1tmPSyyZsretBo2zW/LeKdwCV3kQGJzWhlNWCe3O3cGZXf1TRBmSrGziEg3TXZ6kmxTKTvFPj337+KJfa7xqs2Bu5SvvcJckiGSo9JqOrMspoNStLv8Is0ajCdRrrxmAxaS8BBgA1e3UUTVCKKgAAAABJRU5ErkJggg=="},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";n.r(t);n(11);var r,i=n(0),o=n(1),s=(r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),a=function(){return(a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){var v=b.item(0);if(null!=v){v.setAttribute("width",""+(i+s)),v.setAttribute("height",""+(o+s));var g=v.getElementsByTagNameNS(P,"line");if(g.length>0){var y=g.item(0);null!=y&&(y.setAttribute("x1",""+d),y.setAttribute("y1",""+h),y.setAttribute("x2",""+m),y.setAttribute("y2",""+f),y.setAttribute("stroke",u||"black"),y.setAttribute("stroke-width",""+s))}}}if(this.moveMode){var _=document.createElement("div"),E=document.createElement("div");if(this.isMoving){var O=e.getElementsByClassName("visual-console-item-line-circle-start");if(O.length>0)(k=O.item(0))&&(_=k);var w=e.getElementsByClassName("visual-console-item-line-circle-end");if(w.length>0)(k=w.item(0))&&(E=k)}if(_.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-start"),_.style.width=2*this.circleRadius+"px",_.style.height=2*this.circleRadius+"px",_.style.borderRadius="50%",_.style.backgroundColor=""+u,_.style.position="absolute",_.style.left=d-this.circleRadius+"px",_.style.top=h-this.circleRadius+"px",_.style.cursor="move",E.classList.add("visual-console-item-line-circle","visual-console-item-line-circle-end"),E.style.width=2*this.circleRadius+"px",E.style.height=2*this.circleRadius+"px",E.style.borderRadius="50%",E.style.backgroundColor=""+u,E.style.position="absolute",E.style.left=m-this.circleRadius+"px",E.style.top=f-this.circleRadius+"px",E.style.cursor="move",null!==e.parentElement){for(var M=e.parentElement.getElementsByClassName("visual-console-item-line-circle");M.length>0;){(k=M.item(0))&&k.remove()}e.parentElement.appendChild(_),e.parentElement.appendChild(E)}this.initStartPositionMovementListener(_,this.elementRef.parentElement),this.initEndPositionMovementListener(E,this.elementRef.parentElement)}else if(this.moveMode)this.stopStartPositionMovementListener();else if(this.stopStartPositionMovementListener(),null!==e.parentElement)for(M=e.parentElement.getElementsByClassName("visual-console-item-line-circle");M.length>0;){var k;(k=M.item(0))&&k.remove()}},t.extractBoxSizeAndPosition=function(e,t){return{width:Math.abs(e.x-t.x),height:Math.abs(e.y-t.y),x:Math.min(e.x,t.x),y:Math.min(e.y,t.y)}},t.prototype.move=function(t,n){e.prototype.moveElement.call(this,t,n);var r=this.props.startPosition.x-this.props.endPosition.x<=0,i=this.props.startPosition.y-this.props.endPosition.y<=0,o={x:r?t:this.props.width+t,y:i?n:this.props.height+n},s={x:r?this.props.width+t:t,y:i?this.props.height+n:n};this.props=A(A({},this.props),{startPosition:o,endPosition:s})},t.prototype.remove=function(){this.stopStartPositionMovementListener(),e.prototype.remove.call(this)},t.prototype.onLineMovementFinished=function(e){var t=this.lineMovedEventManager.on(e);return this.lineMovedEventDisposables.push(t),t},t}(o.a),T=I,L=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),S=function(){return(S=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){if(null!=(r=y.item(0))){for(var _=r.getElementsByTagNameNS("http://www.w3.org/2000/svg","line"),E=r.getElementsByTagNameNS("http://www.w3.org/2000/svg","g");E.length>0;)E[0].remove();_.length>0&&(n=_.item(0))}if(null!=r&&null!=n){var O=p.x-o+a/2+l/2,w=p.y-s+a/2+c/2,M=u.x-o+a/2+l/2,k=u.y-s+a/2+c/2,C=p.x-o+a/2+l/2,x=p.y-s+a/2+c/2,A=u.x-o+a/2+l/2,j=u.y-s+a/2+c/2,P=180*Math.atan2(k-w,M-O)/Math.PI;if(v<=0){_=m.split("
    ");v=0,_.forEach((function(e){e.length>v&&(v=10*e.length)})),g<=0&&(g=25*_.length)}if(f<=0){_=h.split("
    ");f=0,_.forEach((function(e){e.length>f&&(f=10*e.length)})),b<=0&&(b=25*_.length)}if(CA&&(C-=25+v,A+=25),xj&&(x-=25+g,j+=25),void 0===d&&(d="#000"),null!==t.parentElement){for(var I=t.parentElement.getElementsByClassName("vc-item-nl-label");I.length>0;){var T=I.item(0);T&&T.remove()}for(var L=t.parentElement.getElementsByClassName("vc-item-nl-arrow");L.length>0;){var S=L.item(0);S&&S.remove()}}var R=2*a,N=O+(M-O)/2-R,D=w+(k-w)/2-R,B=document.createElement("div");B.classList.add("vc-item-nl-arrow"),B.style.position="absolute",B.style.border=R+"px solid transparent",B.style.borderBottom=R+"px solid "+d,B.style.left=N+"px",B.style.top=D+"px",B.style.transform="rotate("+(90+P)+"deg)";var z=document.createElement("div");if(z.classList.add("vc-item-nl-arrow"),z.style.position="absolute",z.style.border=R+"px solid transparent",z.style.borderBottom=R+"px solid "+d,z.style.left=N+"px",z.style.top=D+"px",z.style.transform="rotate("+(270+P)+"deg)",null!==t.parentElement&&(t.parentElement.appendChild(B),t.parentElement.appendChild(z)),""!=m){var H=document.createElement("div");try{H.innerHTML=m,H.style.position="absolute",H.style.left=C+"px",H.style.top=x+"px",H.style.width=v+"px",H.style.border="2px solid "+d,H.classList.add("vc-item-nl-label","label-start")}catch(e){console.error(e)}null!==t.parentElement&&t.parentElement.appendChild(H)}if(""!=h){var W=document.createElement("div");try{W.innerHTML=h,W.style.position="absolute",W.style.left=A+"px",W.style.top=j+"px",W.style.width=f+"px",W.style.border="2px solid "+d,W.classList.add("vc-item-nl-label","label-end")}catch(e){console.error(e)}null!==t.parentElement&&t.parentElement.appendChild(W)}}}},t}(T),D=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),B=function(){return(B=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){var v=document.createElementNS(e,"text");v.setAttribute("text-anchor","middle"),v.setAttribute("font-size","8"),v.setAttribute("transform","translate(30 50) rotate(90)"),v.setAttribute("fill",r),v.textContent=b,m.append(v)}var g=document.createElementNS(e,"g");g.setAttribute("class","marks");var y=document.createElementNS(e,"g");y.setAttribute("class","mark"),y.setAttribute("transform","translate(50 50)");var _=document.createElementNS(e,"line");_.setAttribute("x1","36"),_.setAttribute("y1","0"),_.setAttribute("x2","46"),_.setAttribute("y2","0"),_.setAttribute("stroke",r),_.setAttribute("stroke-width","5");var E=document.createElementNS(e,"line");E.setAttribute("x1","36"),E.setAttribute("y1","0"),E.setAttribute("x2","46"),E.setAttribute("y2","0"),E.setAttribute("stroke",t),E.setAttribute("stroke-width","1"),y.append(_,E),g.append(y);for(var O=1;O<60;O++){var w=document.createElementNS(e,"line");w.setAttribute("y1","0"),w.setAttribute("y2","0"),w.setAttribute("stroke",r),w.setAttribute("transform","translate(50 50) rotate("+6*O+")"),O%5==0?(w.setAttribute("x1","38"),w.setAttribute("x2","46"),w.setAttribute("stroke-width",O%15==0?"2":"1")):(w.setAttribute("x1","42"),w.setAttribute("x2","46"),w.setAttribute("stroke-width","0.5")),g.append(w)}var M=document.createElementNS(e,"g");M.setAttribute("class","hour-hand"),M.setAttribute("transform","translate(50 50)");var k=document.createElementNS(e,"line");k.setAttribute("class","hour-hand-a"),k.setAttribute("x1","0"),k.setAttribute("y1","0"),k.setAttribute("x2","30"),k.setAttribute("y2","0"),k.setAttribute("stroke",s),k.setAttribute("stroke-width","4"),k.setAttribute("stroke-linecap","round");var C=document.createElementNS(e,"line");C.setAttribute("class","hour-hand-b"),C.setAttribute("x1","0"),C.setAttribute("y1","0"),C.setAttribute("x2","29.9"),C.setAttribute("y2","0"),C.setAttribute("stroke",o),C.setAttribute("stroke-width","3.1"),C.setAttribute("stroke-linecap","round"),M.append(k,C);var x=document.createElementNS(e,"g");x.setAttribute("class","minute-hand"),x.setAttribute("transform","translate(50 50)");var A=document.createElementNS(e,"line");A.setAttribute("class","minute-hand-a"),A.setAttribute("x1","0"),A.setAttribute("y1","0"),A.setAttribute("x2","40"),A.setAttribute("y2","0"),A.setAttribute("stroke",s),A.setAttribute("stroke-width","2"),A.setAttribute("stroke-linecap","round");var j=document.createElementNS(e,"line");j.setAttribute("class","minute-hand-b"),j.setAttribute("x1","0"),j.setAttribute("y1","0"),j.setAttribute("x2","39.9"),j.setAttribute("y2","0"),j.setAttribute("stroke",o),j.setAttribute("stroke-width","1.5"),j.setAttribute("stroke-linecap","round");var P=document.createElementNS(e,"circle");P.setAttribute("r","3"),P.setAttribute("fill",o),x.append(A,j,P);var I=document.createElementNS(e,"g");I.setAttribute("class","second-hand"),I.setAttribute("transform","translate(50 50)");var T=document.createElementNS(e,"line");T.setAttribute("x1","0"),T.setAttribute("y1","0"),T.setAttribute("x2","46"),T.setAttribute("y2","0"),T.setAttribute("stroke",a),T.setAttribute("stroke-width","1"),T.setAttribute("stroke-linecap","round");var L=document.createElementNS(e,"circle");L.setAttribute("r","2"),L.setAttribute("fill",a),I.append(T,L);var S=document.createElementNS(e,"circle");S.setAttribute("cx","50"),S.setAttribute("cy","50"),S.setAttribute("r","0.3"),S.setAttribute("fill",o);var R=this.getOriginDate(),N=R.getSeconds(),D=R.getMinutes(),B=6*N,z=6*D+N/60*6,H=30*R.getHours()+D/60*30;if(M.setAttribute("transform","translate(50 50) rotate("+H+")"),x.setAttribute("transform","translate(50 50) rotate("+z+")"),I.setAttribute("transform","translate(50 50) rotate("+B+")"),h.append(m,g,M,x,I,S),h.setAttribute("transform","rotate(-90)"),d.innerHTML="\n \n ",d.append(h),"datetime"===this.props.clockFormat){var W=document.createElement("span");W.className="date",W.textContent=Object(i.f)(R,"default"),W.style.fontSize=u+"px",this.props.color&&(W.style.color=this.props.color),d.append(W)}return d},t.prototype.createDigitalClock=function(){var e=document.createElement("div");e.className="digital-clock";var t=this.getElementSize(),n=t.width,r=t.height,o=n;r0){var m=document.createElement("span");m.className="timezone",m.textContent=h,m.style.fontSize=c+"px",this.props.color&&(m.style.color=this.props.color),e.append(m)}return e},t.prototype.getOriginDate=function(e){void 0===e&&(e=null);var t=e||new Date,n=1e3*this.props.clockTimezoneOffset,r=60*t.getTimezoneOffset()*1e3,i=t.getTime()+n+r;return new Date(i)},t.prototype.getHumanTimezone=function(e){void 0===e&&(e=this.props.clockTimezone);var t=e.split("/")[1];return(void 0===t?"":t).replace("_"," ")},t.prototype.getElementSize=function(e,t){switch(void 0===e&&(e=this.props.width),void 0===t&&(t=this.props.height),this.props.clockType){case"analogic":var n=100;e>0&&t>0?n=Math.min(e,t):e>0?n=e:t>0&&(n=t);var r=0;return"datetime"===this.props.clockFormat&&(r=t/8),{width:n,height:n+r};case"digital":return e>0&&t>0?t=e/20?t=e/2:t>0?e=2*t:(e=100,t=50),{width:e,height:t};default:throw new Error("invalid clock type.")}},t.TICK_INTERVAL=1e3,t}(o.a),q=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Y=function(){return(Y=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0){e.style.borderStyle="solid";var t=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,t);e.style.borderWidth=n+"px",this.props.borderColor&&(e.style.borderColor=this.props.borderColor)}return e},t.prototype.updateDomElement=function(e){if(this.props.fillTransparent?e.style.backgroundColor="transparent":this.props.fillColor&&(e.style.backgroundColor=this.props.fillColor),this.props.borderWidth>0){e.style.borderStyle="solid";var t=Math.min(this.props.width,this.props.height)/2,n=Math.min(this.props.borderWidth,t);e.style.borderWidth=n+"px",this.props.borderColor&&(e.style.borderColor=this.props.borderColor)}},t}(o.a),Z=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Q=function(){return(Q=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&(n=Object(i.q)([{macro:/\(?_VALUE_\)?/i,value:n}],r)),e.innerHTML=n}return e},t.prototype.createLabelDomElement=function(){var e=document.createElement("div");return e.className="visual-console-item-label",e},t}(o.a),se=n(6),ae=Math.PI,le=2*ae,ce=le-1e-6;function pe(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function ue(){return new pe}pe.prototype=ue.prototype={constructor:pe,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,n,r){this._+="Q"+ +e+","+ +t+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(e,t,n,r,i,o){this._+="C"+ +e+","+ +t+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+o)},arcTo:function(e,t,n,r,i){e=+e,t=+t,n=+n,r=+r,i=+i;var o=this._x1,s=this._y1,a=n-e,l=r-t,c=o-e,p=s-t,u=c*c+p*p;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(u>1e-6)if(Math.abs(p*a-l*c)>1e-6&&i){var d=n-o,h=r-s,m=a*a+l*l,f=d*d+h*h,b=Math.sqrt(m),v=Math.sqrt(u),g=i*Math.tan((ae-Math.acos((m+u-f)/(2*b*v)))/2),y=g/v,_=g/b;Math.abs(y-1)>1e-6&&(this._+="L"+(e+y*c)+","+(t+y*p)),this._+="A"+i+","+i+",0,0,"+ +(p*d>c*h)+","+(this._x1=e+_*a)+","+(this._y1=t+_*l)}else this._+="L"+(this._x1=e)+","+(this._y1=t);else;},arc:function(e,t,n,r,i,o){e=+e,t=+t,o=!!o;var s=(n=+n)*Math.cos(r),a=n*Math.sin(r),l=e+s,c=t+a,p=1^o,u=o?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+l+","+c:(Math.abs(this._x1-l)>1e-6||Math.abs(this._y1-c)>1e-6)&&(this._+="L"+l+","+c),n&&(u<0&&(u=u%le+le),u>ce?this._+="A"+n+","+n+",0,1,"+p+","+(e-s)+","+(t-a)+"A"+n+","+n+",0,1,"+p+","+(this._x1=l)+","+(this._y1=c):u>1e-6&&(this._+="A"+n+","+n+",0,"+ +(u>=ae)+","+p+","+(this._x1=e+n*Math.cos(i))+","+(this._y1=t+n*Math.sin(i))))},rect:function(e,t,n,r){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var de=ue,he=function(e){return function(){return e}},me=Math.abs,fe=Math.atan2,be=Math.cos,ve=Math.max,ge=Math.min,ye=Math.sin,_e=Math.sqrt,Ee=Math.PI,Oe=Ee/2,we=2*Ee;function Me(e){return e>1?0:e<-1?Ee:Math.acos(e)}function ke(e){return e>=1?Oe:e<=-1?-Oe:Math.asin(e)}function Ce(e){return e.innerRadius}function xe(e){return e.outerRadius}function Ae(e){return e.startAngle}function je(e){return e.endAngle}function Pe(e){return e&&e.padAngle}function Ie(e,t,n,r,i,o,s,a){var l=n-e,c=r-t,p=s-i,u=a-o,d=u*l-p*c;if(!(d*d<1e-12))return[e+(d=(p*(t-o)-u*(e-i))/d)*l,t+d*c]}function Te(e,t,n,r,i,o,s){var a=e-n,l=t-r,c=(s?o:-o)/_e(a*a+l*l),p=c*l,u=-c*a,d=e+p,h=t+u,m=n+p,f=r+u,b=(d+m)/2,v=(h+f)/2,g=m-d,y=f-h,_=g*g+y*y,E=i-o,O=d*f-m*h,w=(y<0?-1:1)*_e(ve(0,E*E*_-O*O)),M=(O*y-g*w)/_,k=(-O*g-y*w)/_,C=(O*y+g*w)/_,x=(-O*g+y*w)/_,A=M-b,j=k-v,P=C-b,I=x-v;return A*A+j*j>P*P+I*I&&(M=C,k=x),{cx:M,cy:k,x01:-p,y01:-u,x11:M*(i/E-1),y11:k*(i/E-1)}}var Le=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Se=function(){return(Se=Object.assign||function(e){for(var t,n=1,r=arguments.length;nd;if(a||(a=l=de()),u1e-12)if(m>we-1e-12)a.moveTo(u*be(d),u*ye(d)),a.arc(0,0,u,d,h,!f),p>1e-12&&(a.moveTo(p*be(h),p*ye(h)),a.arc(0,0,p,h,d,f));else{var b,v,g=d,y=h,_=d,E=h,O=m,w=m,M=s.apply(this,arguments)/2,k=M>1e-12&&(r?+r.apply(this,arguments):_e(p*p+u*u)),C=ge(me(u-p)/2,+n.apply(this,arguments)),x=C,A=C;if(k>1e-12){var j=ke(k/p*ye(M)),P=ke(k/u*ye(M));(O-=2*j)>1e-12?(_+=j*=f?1:-1,E-=j):(O=0,_=E=(d+h)/2),(w-=2*P)>1e-12?(g+=P*=f?1:-1,y-=P):(w=0,g=y=(d+h)/2)}var I=u*be(g),T=u*ye(g),L=p*be(E),S=p*ye(E);if(C>1e-12){var R,N=u*be(y),D=u*ye(y),B=p*be(_),z=p*ye(_);if(m1e-12?A>1e-12?(b=Te(B,z,I,T,u,A,f),v=Te(N,D,L,S,u,A,f),a.moveTo(b.cx+b.x01,b.cy+b.y01),A1e-12&&O>1e-12?x>1e-12?(b=Te(L,S,N,D,p,-x,f),v=Te(I,T,B,z,p,-x,f),a.lineTo(b.cx+b.x01,b.cy+b.y01),x0){var d=document.createElementNS(Be,"tspan");d.setAttribute("x","0"),d.setAttribute("dy","1em"),d.textContent=""+e,d.style.fontSize="8pt";var h=document.createElementNS(Be,"tspan");h.setAttribute("x","0"),h.setAttribute("dy","1em"),h.textContent=""+this.props.unit,h.style.fontSize="8pt",u.append(d,h),u.setAttribute("transform","translate(50 33)")}else u.textContent=""+e,u.style.fontSize="8pt",u.setAttribute("transform","translate(50 50)");else u.textContent=n+"%",u.setAttribute("transform","translate(50 50)");i.append(u)}return!0!==this.props.agentDisabled&&!0!==this.props.moduleDisabled||i.setAttribute("opacity","0.2"),null!==i&&r.append(i),r},t.prototype.updateDomElement=function(e){!1===this.meta.isBeingResized&&this.resizeElement(this.props.width,this.props.height),e.innerHTML=this.createDomElement().innerHTML},t.prototype.resizeElement=function(t,n){"progress-bar"===this.props.percentileType?e.prototype.resizeElement.call(this,t,35):e.prototype.resizeElement.call(this,t,t)},t.prototype.resize=function(t){this.resizeElement(t,t);var n=this.props.maxValue||0;"progress-bar"===this.props.percentileType&&(n=35),e.prototype.setProps.call(this,Se(Se({},this.props),{width:t,height:n}))},t.prototype.getProgress=function(){var e=this.props.minValue||0,t=this.props.maxValue||100,n=null==this.props.value?0:this.props.value;return n<=e?0:n>=t?100:Math.trunc((n-e)/(t-e)*100)},t}(o.a),He=n(7),We=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Ge=function(){return(Ge=Object.assign||function(e){for(var t,n=1,r=arguments.length;n3&&n<=6?t=" K":n>6&&n<=9?t=" M":n>9&&n<=12?t=" G":n>12&&n<=15&&(t=" T"),t},t.prototype.getCoords=function(e,t){if(""===this.props.minMaxValue)e=e;else{var n=JSON.parse(this.props.minMaxValue);if(n.min===e)e=0;else if(n.max===e||100===e)e=100;else{var r=n.max-n.min;e=100-100*(n.max-e)/r}}return e=180-1.8*e,t+Math.cos(e*Math.PI/180)*t+","+(t-Math.sin(e*Math.PI/180)*t)},t.prototype.truncateTitle=function(e){if(null!=e&&e.length>22){var t=e.length/2,n=t-9;return e.substr(0,t-n)+"..."+e.substr(t+n)}return e},t}(o.a),rt=n(9),it=function(){return(it=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0?e.selected=!0:e.selected=!1,r.selectionChangedEventManager.emit(e)},this.handleContainerClick=function(){r.unSelectItems()},this.containerRef=e,this._props=function(e){var t=e.id,n=e.name,r=e.groupId,o=e.backgroundURL,s=e.backgroundColor,a=e.isFavorite,l=e.relationLineWidth,c=e.maintenanceMode;if(null==t||isNaN(parseInt(t)))throw new TypeError("invalid Id.");if("string"!=typeof n||0===n.length)throw new TypeError("invalid name.");if(null==r||isNaN(parseInt(r)))throw new TypeError("invalid group Id.");return it({id:parseInt(t),name:n,groupId:parseInt(r),backgroundURL:Object(i.k)(o,null),backgroundColor:Object(i.k)(s,null),isFavorite:Object(i.l)(a),relationLineWidth:Object(i.n)(l,0),maintenanceMode:c},Object(i.r)(e))}(t),this.render(),(n=n.sort((function(e,t){return null==e.id||null==t.id?0:e.id>t.id?1:-1}))).forEach((function(e){return r.addElement(e,r)})),this.buildRelations(),this.elements.forEach((function(e){e instanceof T&&r.refreshLink(e)})),this.containerRef.addEventListener("click",this.handleContainerClick)}return e.prototype.coordinatesInItem=function(e,t,n){return 13!=n.type&&21!=n.type&&(e>n.x&&en.y&&t0?(null==this.lineLinks[n]&&(this.lineLinks[n]={}),this.lineLinks[n][t]={start:n,end:r}):this.lines[t].start>0&&(this.lineLinks[this.lines[t].start][t].start=0,this.lines[t].start=0),r>0?(null==this.lineLinks[r]&&(this.lineLinks[r]={}),this.lineLinks[r][t]={start:n,end:r}):this.lines[t].end>0&&(this.lineLinks[this.lines[t].end][t].end=0,this.lines[t].end=0),this.lines[t]={start:n,end:r},this.lineLinks)this.lineLinks[i][t]&&0==this.lineLinks[i][t].start&&0==this.lineLinks[i][t].end&&(delete this.lineLinks[i][t],0===Object.keys(this.lineLinks[i]).length&&delete this.lineLinks[i])}catch(e){console.error(e)}},e.prototype.updateLinesConnected=function(e,t,n){var r=this;null!=this.lineLinks[e.id]&&(Object.keys(this.lineLinks[e.id]).forEach((function(o){var s=parseInt(o);if(-1!==r.elementIds.indexOf(s)){var a=r.elementsById[s];if(a.props){var l=a.props.startPosition.x,c=a.props.startPosition.y,p=a.props.endPosition.x,u=a.props.endPosition.y;if(e.id==r.lineLinks[e.id][s].start&&(l=t.x+e.width/2,c=t.y+e.height/2),e.id==r.lineLinks[e.id][s].end&&(p=t.x+e.width/2,u=t.y+e.height/2),r.updateElement(it(it({},a.props),{startX:l,startY:c,endX:p,endY:u})),n)Object(i.c)(500,(function(e){r.lineMovedEventManager.emit({item:e.line,startPosition:{x:e.startX,y:e.startY},endPosition:{x:e.endX,y:e.endY}})}))({line:a,startX:l,startY:c,endX:p,endY:u})}}})),this.buildRelations(e.id,t.x+e.width/2,t.y+e.height/2))},Object.defineProperty(e.prototype,"elements",{get:function(){var e=this;return this.elementIds.map((function(t){return e.elementsById[t]})).filter((function(e){return null!=e}))},enumerable:!1,configurable:!0}),e.prototype.addElement=function(e,t){void 0===t&&(t=this);try{var n=function(e){var t=Object(i.n)(e.type,null);if(null==t)throw new TypeError("missing item type.");var n=Object(i.h)(e);switch(t){case 0:return new p(c(e),n);case 1:return new qe.a(Object(qe.b)(e),n);case 2:case 6:case 7:case 8:return new oe(ie(e),n);case 3:case 9:case 15:case 16:return new ze(De(e),n);case 4:return new ee($(e),n);case 5:return new m(h(e),n);case 10:return new Ze(Je(e),n);case 11:return new H(z(e),n);case 12:return new J(X(e),n);case 13:return new T(j(e),n);case 14:return new se.a(Object(se.b)(e),n);case 17:return new He.a(Object(He.b)(e),n);case 18:return new Ke(Ve(e),n);case 19:return new K(V(e),n);case 20:return new k(E(e),n);case 21:return new N(R(e),n);case 22:return new nt(et(e),n);case 23:return new rt.b(Object(rt.a)(e),n);default:throw new TypeError("item not found")}}(e);return t.elementsById[n.props.id]=n,t.elementIds.push(n.props.id),n.onRemove(t.handleElementRemove),n.onSelectionChanged(t.handleElementSelectionChanged),n.onClick(t.handleElementClick),n.onDblClick(t.handleElementDblClick),n instanceof T?(n.onLineMovementFinished(t.handleLineElementMovementFinished),this.refreshLink(n)):(n.onMoved(t.handleElementMovement),n.onMovementFinished(t.handleElementMovementFinished),n.onResized(t.handleElementResizement),n.onResizeFinished(t.handleElementResizementFinished)),t.containerRef.append(n.elementRef),n}catch(e){console.error("Error creating a new element:",e.message)}},e.prototype.updateElements=function(e){var t=this,n=e.map((function(e){return e.id||null})).filter((function(e){return null!=e}));this.elementIds.filter((function(e){return n.indexOf(e)<0})).forEach((function(e){null!=t.elementsById[e]&&(t.elementsById[e].remove(),delete t.elementsById[e])})),this.elementIds=n,e.forEach((function(e){if(e.id)if(null==t.elementsById[e.id])t.addElement(e);else try{t.elementsById[e.id].props=ot(e)}catch(e){console.error("Error updating an element:",e.message)}})),this.buildRelations()},e.prototype.updateElement=function(e){try{this.elementsById[e.id].props=it({},ot(e))}catch(e){console.error("Error updating element:",e.message)}this.buildRelations()},Object.defineProperty(e.prototype,"props",{get:function(){return it({},this._props)},set:function(e){var t=this.props;this._props=e,this.render(t)},enumerable:!1,configurable:!0}),e.prototype.render=function(e){void 0===e&&(e=null),e?(e.backgroundURL!==this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url("+this.props.backgroundURL+")":""),null!=this.props.backgroundColor&&e.backgroundColor!==this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.sizeChanged(e,this.props)&&this.resizeElement(this.props.width,this.props.height)):(this.props.backgroundURL&&(this.containerRef.style.backgroundImage=null!==this.props.backgroundURL?"url("+this.props.backgroundURL+")":""),this.props.backgroundColor&&(this.containerRef.style.backgroundColor=this.props.backgroundColor),this.resizeElement(this.props.width,this.props.height))},e.prototype.sizeChanged=function(e,t){return e.width!==t.width||e.height!==t.height},e.prototype.resizeElement=function(e,t){this.containerRef.style.width=e+"px",this.containerRef.style.height=t+"px"},e.prototype.resize=function(e,t){this.props=it(it({},this.props),{width:e,height:t})},e.prototype.remove=function(){this.disposables.forEach((function(e){return e.dispose()})),this.elements.forEach((function(e){return e.remove()})),this.elementsById={},this.elementIds=[],this.clearRelations(),this.containerRef.removeEventListener("click",this.handleContainerClick),this.containerRef.innerHTML=""},e.prototype.buildRelations=function(e,t,n){var r=this;this.clearRelations(),this.elements.forEach((function(i){if(null!==i.props.parentId){var o=r.elementsById[i.props.parentId],s=r.elementsById[i.props.id];o&&s&&(null!=e?i.props.parentId==e?r.addRelationLine(o,s,t,n):i.props.id==e?r.addRelationLine(o,s,void 0,void 0,t,n):r.addRelationLine(o,s):r.addRelationLine(o,s))}}))},e.prototype.clearRelations=function(e){if(null!=e)for(var t in this.relations){var n=t.split("|"),r=Number.parseInt(n[0]),i=Number.parseInt(n[1]);e!==r&&e!==i||(this.relations[t].remove(),delete this.relations[t])}else for(var t in this.relations)this.relations[t].remove(),delete this.relations[t]},e.prototype.getRelationLine=function(e,t){var n=e+"|"+t;return this.relations[n]||null},e.prototype.getItemRelations=function(e){var t=[];for(var n in this.relations){var r=n.split("|"),i=Number.parseInt(r[0]),o=Number.parseInt(r[1]);e!==i&&e!==o||t.push({parentId:i,childId:o,line:this.relations[n]})}return t},e.prototype.getVisualCenter=function(e,t){var n=e.x+t.elementRef.clientWidth/2,r=e.y+t.elementRef.clientHeight/2;if(void 0!==t.props.label||""!==t.props.label||null!==t.props.label)switch(t.props.labelPosition){case"up":r=e.y+(t.elementRef.clientHeight+t.labelElementRef.clientHeight)/2;break;case"down":r=e.y+(t.elementRef.clientHeight-t.labelElementRef.clientHeight)/2;break;case"right":n=e.x+(t.elementRef.clientWidth-t.labelElementRef.clientWidth)/2;break;case"left":n=e.x+(t.elementRef.clientWidth+t.labelElementRef.clientWidth)/2}return{x:n,y:r}},e.prototype.addRelationLine=function(e,t,n,r,o,s){var a=e.props.id+"|"+t.props.id;null!=this.relations[a]&&this.relations[a].remove();var l=this.getVisualCenter(e.props,e),c=l.x,p=l.y,u=this.getVisualCenter(t.props,t),d=u.x,h=u.y;null!=n&&(c=n),null!=r&&(p=r),null!=o&&(d=o),null!=s&&(h=s);var m=new T(j({id:0,type:13,startX:c,startY:p,endX:d,endY:h,width:0,height:0,lineWidth:this.props.relationLineWidth,color:Object(i.k)(t.props.colorStatus,"#CCC")}),Object(i.h)({receivedAt:new Date}));return this.relations[a]=m,m.elementRef.style.zIndex="0",this.containerRef.append(m.elementRef),m},e.prototype.onItemClick=function(e){var t=this.clickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemDblClick=function(e){var t=this.dblClickEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemMoved=function(e){var t=this.movedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onLineMoved=function(e){var t=this.lineMovedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemResized=function(e){var t=this.resizedEventManager.on(e);return this.disposables.push(t),t},e.prototype.onItemSelectionChanged=function(e){var t=this.selectionChangedEventManager.on(e);return this.disposables.push(t),t},e.prototype.enableEditMode=function(){this.elements.forEach((function(e){e.meta=it(it({},e.meta),{editMode:!0})})),this.containerRef.classList.add("is-editing")},e.prototype.disableEditMode=function(){this.elements.forEach((function(e){e.meta=it(it({},e.meta),{editMode:!1})})),this.containerRef.classList.remove("is-editing")},e.prototype.enableMaintenanceMode=function(){this.elements.forEach((function(e){e.meta=it(it({},e.meta),{maintenanceMode:!0})})),this.containerRef.classList.add("is-maintenance"),this.containerRef.classList.remove("is-editing")},e.prototype.disableMaintenanceMode=function(){this.elements.forEach((function(e){e.meta=it(it({},e.meta),{maintenanceMode:!1})})),this.containerRef.classList.remove("is-maintenance"),this.containerRef.classList.add("is-editing")},e.prototype.selectItem=function(e,t){var n=this;void 0===t&&(t=!1),t?this.elementIds.forEach((function(t){var r=n.elementsById[t].meta;t!==e&&r.isSelected?n.elementsById[t].unSelectItem():t!==e||r.isSelected||n.elementsById[t].selectItem()})):this.elementsById[e]&&this.elementsById[e].selectItem()},e.prototype.unSelectItem=function(e){this.elementsById[e]&&(this.elementsById[e].meta.isSelected&&this.elementsById[e].unSelectItem())},e.prototype.unSelectItems=function(){var e=this;this.elementIds.forEach((function(t){e.elementsById[t]&&e.elementsById[t].unSelectItem()}))},e.itemDescriptiveName=function(e){var t;switch(e.props.type){case 0:t=Object(i.t)("Static graph")+" - "+e.props.imageSrc;break;case 1:t=Object(i.t)("Module graph");break;case 19:t=Object(i.t)("Clock");break;case 18:t=Object(i.t)("Bars graph");break;case 14:t=Object(i.t)("Event history graph");break;case 3:t=Object(i.t)("Percentile bar");break;case 15:t=Object(i.t)("Circular progress bar");break;case 16:t=Object(i.t)("Circular progress bar (interior)");break;case 2:t=Object(i.t)("Simple Value");break;case 4:t=Object(i.t)("Label");break;case 11:t=Object(i.t)("Group");break;case 20:t=Object(i.t)("Color cloud");break;case 5:t=Object(i.t)("Icon")+" - "+e.props.imageSrc;break;case 22:t=Object(i.t)("Odometer");break;case 23:t=Object(i.t)("BasicChart");break;default:t=Object(i.t)("Item")}var n=e.props;return null!=n.agentAlias&&null!=n.moduleName?t+=" ("+Object(i.e)(n.agentAlias,18)+" - "+Object(i.e)(n.moduleName,25)+")":null!=n.agentAlias&&(t+=" ("+Object(i.e)(n.agentAlias,25)+")"),t},e.items=((tt={})[0]=p,tt[1]=qe.a,tt[2]=oe,tt[6]=oe,tt[7]=oe,tt[8]=oe,tt[3]=ze,tt[9]=ze,tt[15]=ze,tt[16]=ze,tt[4]=ee,tt[5]=m,tt[10]=Ze,tt[11]=H,tt[12]=J,tt[13]=T,tt[14]=se.a,tt[17]=He.a,tt[18]=Ke,tt[19]=K,tt[20]=k,tt[21]=N,tt[22]=nt,tt[23]=rt.b,tt),e}(),at=function(){function e(e){this.cancellable={cancel:function(){}},this._status="waiting",this.statusChangeEventManager=new C.a,this.disposables=[],this.taskInitiator=e}return Object.defineProperty(e.prototype,"status",{get:function(){return this._status},set:function(e){this._status=e,this.statusChangeEventManager.emit(e)},enumerable:!1,configurable:!0}),e.prototype.init=function(){var e=this;this.cancellable=this.taskInitiator((function(){e.status="finished"})),this.status="started"},e.prototype.cancel=function(){this.cancellable.cancel(),this.status="cancelled"},e.prototype.onStatusChange=function(e){var t=this.statusChangeEventManager.on(e);return this.disposables.push(t),t},e}();var lt=function(){function e(){this.tasks={}}return e.prototype.add=function(e,t,n){void 0===n&&(n=0),this.tasks[e]&&"started"===this.tasks[e].status&&this.tasks[e].cancel();var r=n>0?function(e,t){return new at((function(){var n=null;return e.onStatusChange((function(r){"finished"===r&&(n=window.setTimeout((function(){e.init()}),t))})),e.init(),{cancel:function(){n&&clearTimeout(n),e.cancel()}}}))}(new at(t),n):new at(t);return this.tasks[e]=r,this.tasks[e]},e.prototype.init=function(e){!this.tasks[e]||"waiting"!==this.tasks[e].status&&"cancelled"!==this.tasks[e].status&&"finished"!==this.tasks[e].status||this.tasks[e].init()},e.prototype.cancel=function(e){this.tasks[e]&&"started"===this.tasks[e].status&&this.tasks[e].cancel()},e}();window.VisualConsole=st,window.VisualConsole.Form=f,window.AsyncTaskManager=lt}]); //# sourceMappingURL=vc.main.min.js.map \ No newline at end of file diff --git a/pandora_console/include/visual-console-client/vc.main.min.js.map b/pandora_console/include/visual-console-client/vc.main.min.js.map index 1ea54291bf..16f8b901e8 100644 --- a/pandora_console/include/visual-console-client/vc.main.min.js.map +++ b/pandora_console/include/visual-console-client/vc.main.min.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/lib/index.ts","webpack:///./src/Item.ts","webpack:///./src/lib/TypedEvent.ts","webpack:///./src/Form.ts","webpack:///./src/lib/FontAwesomeIcon.ts","webpack:///./node_modules/@fortawesome/free-solid-svg-icons/index.es.js","webpack:///./src/items/EventsHistory.ts","webpack:///./src/items/DonutGraph.ts","webpack:///./src/items/ModuleGraph.ts","webpack:///./src/items/BasicChart.ts","webpack:///./src/lib/help-tip.png","webpack:///./src/items/StaticGraph.ts","webpack:///./src/items/Icon.ts","webpack:///./src/items/ColorCloud.ts","webpack:///./src/items/Line.ts","webpack:///./src/items/NetworkLink.ts","webpack:///./src/items/Group.ts","webpack:///./src/items/Clock/index.ts","webpack:///./src/items/Box.ts","webpack:///./src/items/Label.ts","webpack:///./src/items/SimpleValue.ts","webpack:///./node_modules/d3-path/src/path.js","webpack:///./node_modules/d3-shape/src/constant.js","webpack:///./node_modules/d3-shape/src/math.js","webpack:///./node_modules/d3-shape/src/arc.js","webpack:///./src/items/Percentile.ts","webpack:///./src/items/BarsGraph.ts","webpack:///./src/items/Service.ts","webpack:///./src/items/Odometer.ts","webpack:///./src/VisualConsole.ts","webpack:///./src/lib/AsyncTaskManager.ts","webpack:///./src/index.ts"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","parseIntOr","defaultValue","length","isNaN","parseInt","parseFloatOr","parseFloat","stringIsEmpty","notEmptyStringOr","parseBoolean","leftPad","pad","diffLength","substr","Math","abs","substring","repeatTimes","floor","restLength","newPad","positionPropsDecoder","data","x","y","sizePropsDecoder","width","height","TypeError","modulePropsDecoder","moduleName","moduleDescription","moduleDisabled","agentProps","agentId","agentName","agentAlias","agentDescription","agentAddress","agentDisabled","metaconsoleId","agentPropsDecoder","linkedVCPropsDecoder","linkedLayoutStatusProps","linkedLayoutStatusType","weight","linkedLayoutStatusTypeWeight","warningThreshold","linkedLayoutStatusTypeWarningThreshold","criticalThreshold","linkedLayoutStatusTypeCriticalThreshold","linkedLayoutId","linkedLayoutNodeId","itemMetaDecoder","receivedAt","Date","Number","getTime","error","Error","editMode","isFromCache","isFetching","isUpdating","isBeingMoved","isBeingResized","isSelected","lineMode","prefixedCssRules","ruleName","ruleValue","rule","decodeBase64","input","decodeURIComponent","escape","window","atob","humanDate","date","locale","Intl","DateTimeFormat","day","month","year","format","getDate","getMonth","getFullYear","humanTime","getHours","getMinutes","getSeconds","replaceMacros","macros","text","reduce","acc","macro","replace","throttle","delay","fn","last","now","args","debounce","timerRef","clearTimeout","setTimeout","getOffset","el","parent","offsetLeft","offsetTop","scrollLeft","scrollTop","offsetParent","top","left","addMovementListener","element","onMoved","altContainer","container","parentElement","isDraggable","draggable","lastX","lastY","lastMouseX","lastMouseY","mouseElementOffsetX","mouseElementOffsetY","containerBounds","getBoundingClientRect","containerOffset","containerTop","containerBottom","containerLeft","containerRight","elementBounds","borderWidth","getComputedStyle","borderFix","debouncedMovement","throttledMovement","handleMove","e","mouseX","pageX","mouseY","pageY","mouseDeltaX","mouseDeltaY","maxX","maxY","outOfBoundsLeft","outOfBoundsRight","outOfBoundsTop","outOfBoundsBottom","handleEnd","document","removeEventListener","body","style","userSelect","handleStart","button","stopPropagation","setAttribute","elementOffset","offsetX","offsetY","addEventListener","addResizementListener","onResized","resizeDraggable","createElement","className","appendChild","lastWidth","lastHeight","elementTop","elementLeft","debouncedResizement","throttledResizement","handleResize","remove","ellipsize","str","max","ellipse","trim","parseLabelPosition","labelPosition","itemBasePropsDecoder","id","type","label","isLinkEnabled","link","isOnTop","parentId","aclGroupId","cacheExpiration","colorStatus","cellId","props","metadata","deferInit","elementRef","labelElementRef","childElementRef","clickEventManager","dblClickEventManager","movedEventManager","movementFinishedEventManager","resizedEventManager","resizeFinishedEventManager","removeEventManager","selectionChangedEventManager","disposables","debouncedMovementSave","_metadata","prevPosition","newPosition","positionChanged","move","emit","item","removeMovement","debouncedResizementSave","prevSize","newSize","sizeChanged","resize","removeResizement","this","itemProps","init","initMovementListener","meta","moveElement","stopMovementListener","initResizementListener","labelWidth","labelHeight","resizeElement","stopResizementListener","createContainerDomElement","createLabelDomElement","createDomElement","changeLabelPosition","box","href","classList","add","unSelectItem","selectItem","nativeEvent","preventDefault","divParent","divSpinner","path","composedPath","containerId","index","undefined","includes","containerVC","getElementById","getLabelWithMacrosReplaced","table","row","emptyRow1","emptyRow2","cell","innerHTML","textAlign","updateDomElement","newProps","setProps","prevProps","shouldBeUpdated","render","newMetadata","setMeta","prevMetadata","selected","prevMeta","oldLabelHtml","newLabelHtml","attrs","attributes","nodeName","cloneIsNeeded","getAttributeNode","setAttributeNode","cloneNode","parentNode","replaceChild","div","querySelector","removeChild","forEach","disposable","dispose","ignored","position","flexDirection","tables","getElementsByTagName","onClick","listener","on","push","onDblClick","onMovementFinished","onResizeFinished","onRemove","onSelectionChanged","getFormContainer","VisualConsoleItem","title","titleItem","listeners","listenersOncer","off","once","callbackIndex","indexOf","splice","event","pipe","te","initialData","_name","currentData","dataRequestedEventManager","RangeError","_element","content","createContent","Array","reset","updateData","requestData","identifier","params","done","onDataRequested","inputGroups","enabledInputGroups","inputGroupsByName","enabledInputGroupNames","submitEventManager","itemDataRequestedEventManager","handleItemDataRequested","prevVal","inputGroup","filter","getInputGroup","inputGroupName","addInputGroup","slice","removeInputGroup","getFormElement","form","formContent","onSubmit","onInputGroupDataRequested","svgNS","iconDefinition","size","color","spin","pulse","iconName","icon","createElementNS","pathData","faListAlt","prefix","faPencilAlt","faPlusCircle","faTrashAlt","eventsHistoryPropsDecoder","html","encodedHtml","maxTime","legendColor","opacity","scripts","src","eval","flotText","getElementsByClassName","aux","donutGraphPropsDecoder","legendBackgroundColor","parseBackgroundType","backgroundType","parseGraphType","graphType","moduleGraphPropsDecoder","period","customGraphId","legendP","margin","overviewGraphs","basicChartPropsDecoder","status","moduleNameColor","header","textContent","number_format","moduleValue","insertBefore","firstChild","number","force_integer","unit","short_data","divisor","round","aux_decimals","pos","padding","parseShowLastValueTooltip","showLastValueTooltip","staticGraphPropsDecoder","imageSrc","statusImageSrc","lastValue","imgSrc","backgroundImage","backgroundRepeat","backgroundSize","backgroundPosition","Item","iconPropsDecoder","image","colorCloudPropsDecoder","defaultColor","colorRanges","generalDiv","colorLabel","ColorInput","required","target","rangesLabel","createLabel","rangesControlsContainer","createdRangesContainer","buildRanges","ranges","colorRange","rangeContainer","range","handleRangeUpdatePartial","newRanges","handleDelete","initialRangeContainer","onCreate","initialState","state","rangesContainer","rangesContainerFromValue","rangesLabelFromValue","rangesInputFromValue","createInputNumber","fromValue","rangesDivContainerToValue","rangesLabelToValue","rangesInputToValue","toValue","rangesDivContainerColor","rangesLabelColor","rangesInputColor","createInputColor","createBtn","onUpdate","onDelete","deleteBtn","append","createSvgElement","gradientId","svg","defs","radialGradient","stop0","stop100","circle","ColorCloud","formContainer","linePropsDecoder","startPosition","startX","startY","endPosition","endX","endY","lineWidth","borderColor","viewportOffsetX","viewportOffsetY","labelEnd","labelEndWidth","linkedEnd","linkedStart","labelEndHeight","labelStart","labelStartWidth","labelStartHeight","extractBoxSizeAndPosition","Line","circleRadius","moveMode","isMoving","lineMovedEventManager","TypedEvent","lineMovedEventDisposables","debouncedStartPositionMovementSave","removeStartPositionMovement","debouncedEndPositionMovementSave","removeEndPositionMovement","initStartPositionMovementListener","stopStartPositionMovementListener","initEndPositionMovementListener","stopEndPositionMovementListener","x1","y1","x2","y2","line","cursor","svgs","lines","getElementsByTagNameNS","startCircle","endCircle","circlesStart","circlesEnd","borderRadius","backgroundColor","circles","min","startIsLeft","startIsTop","start","end","onLineMovementFinished","networkLinkPropsDecoder","groups","lineX1","lineY1","lineX2","lineY2","g","atan2","PI","split","labels","arrows","arrow","arrowSize","arrowPosX","arrowPosY","arrowStart","border","borderBottom","transform","arrowEnd","htmlLabelStart","console","htmlLabelEnd","groupPropsDecoder","groupId","showStatistics","extractHtml","parseClockType","clockType","parseClockFormat","clockFormat","clockPropsDecoder","clockTimezone","clockTimezoneOffset","showClockTimezone","intervalRef","startTick","createClock","Clock","TICK_INTERVAL","stopTick","clearInterval","handler","interval","setInterval","getElementSize","newWidth","newHeight","createAnalogicClock","createDigitalClock","colors","dateFontSize","baseTimeFontSize","clockFace","clockFaceBackground","city","getHumanTimezone","timezoneComplication","marksGroup","mainMarkGroup","mark1a","mark1b","mark","hourHand","hourHandA","hourHandB","minuteHand","minuteHandA","minuteHandB","minuteHandPin","secondHand","secondHandBar","secondHandPin","pin","getOriginDate","seconds","minutes","secAngle","minuteAngle","hourAngle","join","dateElem","fontSize","modified","tzFontSizeMultiplier","timeFontSize","tzFontSize","timeElem","tzElem","initialDate","targetTZOffset","localTZOffset","getTimezoneOffset","utimestamp","timezone","diameter","extraHeigth","boxPropsDecoder","fillColor","fillTransparent","boxSizing","borderStyle","maxBorderWidth","labelPropsDecoder","parseValueType","valueType","simpleValuePropsDecoder","processValue","parseProcessValue","img","pi","tau","tauEpsilon","Path","_x0","_y0","_x1","_y1","_","constructor","moveTo","closePath","lineTo","quadraticCurveTo","bezierCurveTo","arcTo","x0","y0","x21","y21","x01","y01","l01_2","x20","y20","l21_2","l20_2","l21","sqrt","l01","tan","acos","t01","t21","arc","a0","a1","ccw","dx","cos","dy","sin","cw","da","rect","w","h","toString","halfPi","asin","arcInnerRadius","innerRadius","arcOuterRadius","outerRadius","arcStartAngle","startAngle","arcEndAngle","endAngle","arcPadAngle","padAngle","intersect","x3","y3","x10","y10","x32","y32","cornerTangents","r1","rc","lo","ox","oy","x11","y11","x00","y00","d2","D","cx0","cy0","cx1","cy1","dx0","dy0","dx1","dy1","cx","cy","extractPercentileType","extractValueType","percentilePropsDecoder","percentileType","minValue","maxValue","labelColor","formatValue","background","progress","getProgress","NumberFormat","backgroundRect","progressRect","backgroundCircle","progressCircle","arcProps","cornerRadius","constant","padRadius","context","buffer","r0","apply","arguments","t0","t1","a01","a11","a00","a10","da0","da1","ap","rp","rc0","rc1","p0","p1","oc","ax","ay","bx","by","kc","lc","centroid","a","trunc","parseBarsGraphProps","parseTypeGraph","typeGraph","barsGraphPropsDecoder","gridColor","servicePropsDecoder","encodedTitle","serviceId","odometerPropsDecoder","titleColor","titleModule","thresholds","minMaxValue","odometerType","lineWarning","lineWarning2","lineCritical","lineCritical2","JSON","parse","min_warning","max_warning","getCoords","min_critical","max_critical","percent","toFixed","getSubfix","maximumSignificantDigits","maximumFractionDigits","numb","match","rotate","getRotate","anchoB","odometerContainer","odometerA","odometerB","odometerC","gaugeE","SVG_NS","svgWarning","setAttributeNS","pathWarning","svgCritical","pathCritical","h1","innerText","lineHeight","h2","truncateTitle","script","onload","display","minMax","limit","subfix","radio","halfLength","diff","decodeProps","items","elementsById","elementIds","relations","lineLinks","handleElementClick","handleElementDblClick","handleElementMovement","itemId","getItemRelations","relation","getVisualCenter","childId","updateLinesConnected","handleElementMovementFinished","handleLineElementMovementFinished","refreshLink","handleElementResizement","handleElementResizementFinished","handleElementRemove","clearRelations","handleElementSelectionChanged","elements","handleContainerClick","unSelectItems","containerRef","_props","backgroundURL","isFavorite","relationLineWidth","visualConsolePropsDecoder","sort","b","addElement","buildRelations","coordinatesInItem","itemAtStart","itemAtEnd","keys","to","save","lineId","updateElement","options","debouncedLinePositionSave","map","itemInstance","ModuleGraph","EventsHistory","DonutGraph","BasicChart","itemInstanceFrom","message","updateElements","itemIds","child","addRelationLine","ids","getRelationLine","itemRelations","clientWidth","clientHeight","parentX","parentY","childX","childY","zIndex","onItemClick","onItemDblClick","onItemMoved","onLineMoved","onItemResized","onItemSelectionChanged","enableEditMode","disableEditMode","unique","currentItemId","itemDescriptiveName","linkedAgentAndModuleProps","taskInitiator","cancellable","cancel","_status","statusChangeEventManager","onStatusChange","tasks","asyncTask","task","ref","asyncPeriodic","VisualConsole","Form","AsyncTaskManager"],"mappings":"aACE,IAAIA,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUC,QAGnC,IAAIC,EAASJ,EAAiBE,GAAY,CACzCG,EAAGH,EACHI,GAAG,EACHH,QAAS,IAUV,OANAI,EAAQL,GAAUM,KAAKJ,EAAOD,QAASC,EAAQA,EAAOD,QAASF,GAG/DG,EAAOE,GAAI,EAGJF,EAAOD,QAKfF,EAAoBQ,EAAIF,EAGxBN,EAAoBS,EAAIV,EAGxBC,EAAoBU,EAAI,SAASR,EAASS,EAAMC,GAC3CZ,EAAoBa,EAAEX,EAASS,IAClCG,OAAOC,eAAeb,EAASS,EAAM,CAAEK,YAAY,EAAMC,IAAKL,KAKhEZ,EAAoBkB,EAAI,SAAShB,GACX,oBAAXiB,QAA0BA,OAAOC,aAC1CN,OAAOC,eAAeb,EAASiB,OAAOC,YAAa,CAAEC,MAAO,WAE7DP,OAAOC,eAAeb,EAAS,aAAc,CAAEmB,OAAO,KAQvDrB,EAAoBsB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQrB,EAAoBqB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,iBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKX,OAAOY,OAAO,MAGvB,GAFA1B,EAAoBkB,EAAEO,GACtBX,OAAOC,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOrB,EAAoBU,EAAEe,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRzB,EAAoB6B,EAAI,SAAS1B,GAChC,IAAIS,EAAST,GAAUA,EAAOqB,WAC7B,WAAwB,OAAOrB,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAH,EAAoBU,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRZ,EAAoBa,EAAI,SAASiB,EAAQC,GAAY,OAAOjB,OAAOkB,UAAUC,eAAe1B,KAAKuB,EAAQC,IAGzG/B,EAAoBkC,EAAI,GAIjBlC,EAAoBA,EAAoBmC,EAAI,I,g7BC3D9C,SAASC,EAAcf,EAAgBgB,GAC5C,MAAqB,iBAAVhB,EAA2BA,EACjB,iBAAVA,GAAsBA,EAAMiB,OAAS,IAAMC,MAAMC,SAASnB,IAC5DmB,SAASnB,GACNgB,EASP,SAASI,EAAgBpB,EAAgBgB,GAC9C,MAAqB,iBAAVhB,EAA2BA,EAEnB,iBAAVA,GACPA,EAAMiB,OAAS,IACdC,MAAMG,WAAWrB,IAEXqB,WAAWrB,GACRgB,EAQP,SAASM,EAActB,GAC5B,OAAgB,MAATA,GAAkC,IAAjBA,EAAMiB,OASzB,SAASM,EACdvB,EACAgB,GAEA,MAAwB,iBAAVhB,GAAsBA,EAAMiB,OAAS,EAAIjB,EAAQgB,EAQ1D,SAASQ,EAAaxB,GAC3B,MAAqB,kBAAVA,EAA4BA,EACb,iBAAVA,EAA2BA,EAAQ,EACzB,iBAAVA,IAAqC,MAAVA,GAA2B,SAAVA,GA8BvD,SAASyB,EACdzB,EACAiB,EACAS,QAAA,IAAAA,MAAA,KAEqB,iBAAV1B,IAAoBA,EAAQ,GAAGA,GACvB,iBAAR0B,IAAkBA,EAAM,GAAGA,GAEtC,IAAMC,EAAaV,EAASjB,EAAMiB,OAClC,GAAmB,IAAfU,EAAkB,OAAO3B,EAC7B,GAAI2B,EAAa,EAAG,OAAO3B,EAAM4B,OAAOC,KAAKC,IAAIH,IAEjD,GAAIA,IAAeD,EAAIT,OAAQ,MAAO,GAAGS,EAAM1B,EAC/C,GAAI2B,EAAaD,EAAIT,OAAQ,MAAO,GAAGS,EAAIK,UAAU,EAAGJ,GAAc3B,EAMtE,IAJA,IAAMgC,EAAcH,KAAKI,MAAMN,EAAaD,EAAIT,QAC1CiB,EAAaP,EAAaD,EAAIT,OAASe,EAEzCG,EAAS,GACJpD,EAAI,EAAGA,EAAIiD,EAAajD,IAAKoD,GAAUT,EAEhD,OAAmB,IAAfQ,EAAyB,GAAGC,EAASnC,EAClC,GAAGmC,EAAST,EAAIK,UAAU,EAAGG,GAAclC,EAU7C,SAASoC,EAAqBC,GACnC,MAAO,CACLC,EAAGvB,EAAWsB,EAAKC,EAAG,GACtBC,EAAGxB,EAAWsB,EAAKE,EAAG,IAUnB,SAASC,EAAiBH,GAC/B,GACgB,MAAdA,EAAKI,OACLvB,MAAMC,SAASkB,EAAKI,SACL,MAAfJ,EAAKK,QACLxB,MAAMC,SAASkB,EAAKK,SAEpB,MAAM,IAAIC,UAAU,iBAGtB,MAAO,CACLF,MAAOtB,SAASkB,EAAKI,OACrBC,OAAQvB,SAASkB,EAAKK,SAgCnB,SAASE,EAAmBP,GACjC,OAAO,EAAP,CACEzD,SAAUmC,EAAWsB,EAAKzD,SAAU,MACpCiE,WAAYtB,EAAiBc,EAAKQ,WAAY,MAC9CC,kBAAmBvB,EAAiBc,EAAKS,kBAAmB,MAC5DC,eAAgBvB,EAAaa,EAAKU,iBA5B/B,SAA2BV,GAChC,IAAMW,EAA6B,CACjCC,QAASlC,EAAWsB,EAAKY,QAAS,MAClCC,UAAW3B,EAAiBc,EAAKa,UAAW,MAC5CC,WAAY5B,EAAiBc,EAAKc,WAAY,MAC9CC,iBAAkB7B,EAAiBc,EAAKe,iBAAkB,MAC1DC,aAAc9B,EAAiBc,EAAKgB,aAAc,MAClDC,cAAe9B,EAAaa,EAAKiB,gBAGnC,OAA6B,MAAtBjB,EAAKkB,cACR,EAAD,CACGA,cAAelB,EAAKkB,eACjBP,GAELA,EAcCQ,CAAkBnB,IAUlB,SAASoB,EACdpB,GAEA,IAAIqB,EAA0D,CAC5DC,uBAAwB,WAE1B,OAAQtB,EAAKsB,wBACX,IAAK,SACH,IAAMC,EAAS7C,EAAWsB,EAAKwB,6BAA8B,MAC7D,GAAc,MAAVD,EACF,MAAM,IAAIjB,UAAU,0CAElBN,EAAKwB,+BACPH,EAA0B,CACxBC,uBAAwB,SACxBE,6BAA8BD,IAElC,MAEF,IAAK,UACH,IAAME,EAAmB/C,EACvBsB,EAAK0B,uCACL,MAEIC,EAAoBjD,EACxBsB,EAAK4B,wCACL,MAEF,GAAwB,MAApBH,GAAiD,MAArBE,EAC9B,MAAM,IAAIrB,UAAU,0CAGtBe,EAA0B,CACxBC,uBAAwB,UACxBI,uCAAwCD,EACxCG,wCAAyCD,GAM/C,OAAO,EAAP,CACEE,eAAgBnD,EAAWsB,EAAK6B,eAAgB,MAChDC,mBAAoBpD,EAAWsB,EAAK8B,mBAAoB,OACrDT,GASA,SAASU,EAAgB/B,GAC9B,IAnL6BrC,EAAgBgB,EAmLvCqD,GAnLuBrE,EAmLEqC,EAAKgC,WAnLSrD,EAmLG,KAlL5ChB,aAAiBsE,KAAatE,EACR,iBAAVA,EAA2B,IAAIsE,KAAa,IAARtE,GAEjC,iBAAVA,GACNuE,OAAOrD,MAAM,IAAIoD,KAAKtE,GAAOwE,WAGpBxD,EADH,IAAIsD,KAAKtE,IA6KlB,GAAmB,OAAfqE,EAAqB,MAAM,IAAI1B,UAAU,0BAE7C,IAAI8B,EAAQ,KAIZ,OAHIpC,EAAKoC,iBAAiBC,MAAOD,EAAQpC,EAAKoC,MACf,iBAAfpC,EAAKoC,QAAoBA,EAAQ,IAAIC,MAAMrC,EAAKoC,QAEzD,CACLJ,WAAU,EACVI,MAAK,EACLE,SAAUnD,EAAaa,EAAKsC,UAC5BC,YAAapD,EAAaa,EAAKuC,aAC/BC,YAAY,EACZC,YAAY,EACZC,cAAc,EACdC,gBAAgB,EAChBC,YAAY,EACZC,UAAU,GAUP,SAASC,EACdC,EACAC,GAEA,IAAMC,EAAUF,EAAQ,KAAKC,EAAS,IACtC,MAAO,CACL,WAAWC,EACX,QAAQA,EACR,OAAOA,EACP,MAAMA,EACN,GAAGA,GASA,SAASC,EAAaC,GAC3B,OAAOC,mBAAmBC,OAAOC,OAAOC,KAAKJ,KAUxC,SAASK,EAAUC,EAAYC,GACpC,QADoC,IAAAA,MAAA,MAChCA,GAAUC,MAAQA,KAAKC,eAAgB,CAOzC,OAAOD,KAAKC,eAAeF,EALiB,CAC1CG,IAAK,UACLC,MAAO,UACPC,KAAM,YAEoCC,OAAOP,GASnD,OANYrE,EAAQqE,EAAKQ,UAAW,EAAG,GAM1B,IAJC7E,EAAQqE,EAAKS,WAAa,EAAG,EAAG,GAIxB,IAHT9E,EAAQqE,EAAKU,cAAe,EAAG,GAazC,SAASC,EAAUX,GAKxB,OAJcrE,EAAQqE,EAAKY,WAAY,EAAG,GAI3B,IAHCjF,EAAQqE,EAAKa,aAAc,EAAG,GAGpB,IAFVlF,EAAQqE,EAAKc,aAAc,EAAG,GAczC,SAASC,EAAcC,EAAiBC,GAC7C,OAAOD,EAAOE,QACZ,SAACC,EAAK,G,IAAEC,EAAK,QAAElH,EAAK,QAAO,OAAAiH,EAAIE,QAAQD,EAAOlH,KAC9C+G,GAUG,SAASK,EAAeC,EAAeC,GAC5C,IAAIC,EAAO,EACX,OAAO,W,IAAC,sDACN,IAAMC,EAAMlD,KAAKkD,MACjB,KAAIA,EAAMD,EAAOF,GAEjB,OADAE,EAAOC,EACAF,EAAE,aAAIG,IAUV,SAASC,EAAYL,EAAeC,GACzC,IAAIK,EAA0B,KAC9B,OAAO,W,IAAC,sDACW,OAAbA,GAAmBhC,OAAOiC,aAAaD,GAC3CA,EAAWhC,OAAOkC,YAAW,WAC3BP,EAAE,aAAIG,GACNE,EAAW,OACVN,IAQP,SAASS,EAAUC,EAAwBC,GAGzC,IAFA,IAAI1F,EAAI,EACJC,EAAI,EAENwF,IACCxD,OAAOrD,MAAM6G,EAAGE,cAChB1D,OAAOrD,MAAM6G,EAAGG,YACjBH,IAAOC,GAEP1F,GAAKyF,EAAGE,WAAaF,EAAGI,WACxB5F,GAAKwF,EAAGG,UAAYH,EAAGK,UACvBL,EAAKA,EAAGM,aAEV,MAAO,CAAEC,IAAK/F,EAAGgG,KAAMjG,GAYlB,SAASkG,EACdC,EACAC,EACAC,GAEA,IAAMC,EAAYD,GAAiBF,EAAQI,cAGrCC,EAAcL,EAAQM,UAExBC,EAAuB,EACvBC,EAAuB,EACvBC,EAA4B,EAC5BC,EAA4B,EAC5BC,EAAqC,EACrCC,EAAqC,EAErCC,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB5G,OACjDiH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB7G,MACjDoH,EAAgBpB,EAAQc,wBACxBO,EAAcnE,OAAOoE,iBAAiBtB,GAASqB,aAAe,IAC9DE,EAA2C,EAA/BzF,OAAOpD,SAAS2I,GAG1BG,EAAoBvC,EAAS,GAAIgB,GAEjCwB,EAAoB9C,EAAS,GAAIsB,GAEjCyB,EAAa,SAACC,GAElB,IAAI9H,EAAI,EACJC,EAAI,EAEF8H,EAASD,EAAEE,MACXC,EAASH,EAAEI,MACXC,EAAcJ,EAASnB,EACvBwB,EAAcH,EAASpB,EAGvBwB,EAAOrB,EAAgB7G,MAAQoH,EAAcpH,MAAQuH,EAErDY,EAAOtB,EAAgB5G,OAASmH,EAAcnH,OAASsH,EAEvDa,EACJR,EAASV,GACE,IAAVX,GACCyB,EAAc,GACdJ,EAASV,EAAgBP,EACvB0B,EACJT,EAAST,GACTa,EAAczB,EAAQa,EAAcpH,MAAQuH,EAC1CV,EAAgB7G,OACjBuG,IAAU2B,GACTF,EAAc,GACdJ,EAASV,EAAgBgB,EAAOvB,EAC9B2B,EACJR,EAASd,GACE,IAAVR,GACCyB,EAAc,GACdH,EAASd,EAAeJ,EACtB2B,EACJT,EAASb,GACTgB,EAAczB,EAAQY,EAAcnH,OAASsH,EAC3CV,EAAgB5G,QACjBuG,IAAU2B,GACTF,EAAc,GACdH,EAASd,EAAemB,EAAOvB,GAEd/G,EAAjBuI,EA9BS,EA+BJC,EAAsBH,EACtBF,EAAczB,GAMf,IAAG1G,EAtCE,IAkCOC,EAAhBwI,EAhCS,EAiCJC,EAAuBJ,EACvBF,EAAczB,GAGf,IAAG1G,EArCE,GAwCb2G,EAAamB,EACblB,EAAaoB,EAETjI,IAAM0G,GAASzG,IAAM0G,IAGzBiB,EAAkB5H,EAAGC,GACrB0H,EAAkB3H,EAAGC,GAGrByG,EAAQ1G,EACR2G,EAAQ1G,IAEJ0I,EAAY,WAEhBjC,EAAQ,EACRC,EAAQ,EACRC,EAAa,EACbC,EAAa,EAEb+B,SAASC,oBAAoB,YAAahB,GAE1Ce,SAASC,oBAAoB,UAAWF,GAExCxC,EAAQM,UAAYD,EAEpBoC,SAASE,KAAKC,MAAMC,WAAa,QAE7BC,EAAc,SAACnB,GAEnB,GAAiB,IAAbA,EAAEoB,OAAN,CAEApB,EAAEqB,kBAGFhD,EAAQM,WAAY,EAGpBN,EAAQiD,aAAa,cAAe,iBACpCjD,EAAQiD,aAAa,YAAa,SAIlC,IAAMC,EAAgB7D,EAAUW,EAASG,GACzCI,EAAQ2C,EAAcpD,KACtBU,EAAQ0C,EAAcrD,IAGtBY,EAAakB,EAAEE,MACfnB,EAAaiB,EAAEI,MAEfpB,EAAsBgB,EAAEwB,QACxBvC,EAAsBe,EAAEyB,QAGxBvC,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB5G,OACjDiH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB7G,MACjDoH,EAAgBpB,EAAQc,wBACxBO,EAAcnE,OAAOoE,iBAAiBtB,GAASqB,aAAe,IAC9DE,EAA2C,EAA/BzF,OAAOpD,SAAS2I,GAG5BoB,SAASY,iBAAiB,YAAa3B,GAEvCe,SAASY,iBAAiB,UAAWb,GAErCC,SAASE,KAAKC,MAAMC,WAAa,SAOnC,OAHA7C,EAAQqD,iBAAiB,YAAaP,GAG/B,WACL9C,EAAQ0C,oBAAoB,YAAaI,GACzCN,KAYG,SAASc,EACdtD,EACAuD,GAEA,IAGMC,EAAkBf,SAASgB,cAAc,OAC/CD,EAAgBE,UAAY,mBAC5B1D,EAAQ2D,YAAYH,GAGpB,IAAMrD,EAAYH,EAAQI,cAEpBC,EAAcL,EAAQM,UAExBsD,EAA2B,EAC3BC,EAA6B,EAC7BpD,EAA4B,EAC5BC,EAA4B,EAC5BC,EAAqC,EAGrCE,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB5G,OACjDiH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB7G,MACjDkJ,EAAgB7D,EAAUW,GAC1B8D,EAAaZ,EAAcrD,IAC3BkE,EAAcb,EAAcpD,KAC5BuB,EAAcnE,OAAOoE,iBAAiBtB,GAASqB,aAAe,IAC9DE,EAAYzF,OAAOpD,SAAS2I,GAG1B2C,EAAsB/E,EAAS,GAAIsE,GAEnCU,EAAsBtF,EAAS,GAAI4E,GAEnCW,EAAe,SAACvC,GAEpB,IAAI3H,EAAQ4J,GAAajC,EAAEE,MAAQpB,GAC/BxG,EAAS4J,GAAclC,EAAEI,MAAQrB,GAEjC1G,IAAU4J,GAAa3J,IAAW4J,GAGpC7J,EAAQ4J,GACRjC,EAAEE,MAAQkC,GAAeH,EAAYjD,KAInC3G,EAjDW,GAmDbA,EAnDa,GAoDJA,EAAQ+J,EAAcxC,EAAY,GAAKJ,IAEhDnH,EAAQmH,EAAiB4C,GAEvB9J,EAvDY,GAyDdA,EAzDc,GA0DLA,EAAS6J,EAAavC,EAAY,GAAKN,IAEhDhH,EAASgH,EAAkB6C,GAI7BG,EAAoBjK,EAAOC,GAC3B+J,EAAoBhK,EAAOC,GAG3B2J,EAAY5J,EACZ6J,EAAa5J,EAEbwG,EAAakB,EAAEE,MACfnB,EAAaiB,EAAEI,QAEXS,EAAY,WAEhBoB,EAAY,EACZC,EAAa,EACbpD,EAAa,EACbC,EAAa,EACbC,EAAsB,EACA,EAEtB8B,SAASC,oBAAoB,YAAawB,GAE1CzB,SAASC,oBAAoB,UAAWF,GAExCxC,EAAQM,UAAYD,EAEpBoC,SAASE,KAAKC,MAAMC,WAAa,QA2CnC,OAHAW,EAAgBH,iBAAiB,aAtCb,SAAC1B,GACnBA,EAAEqB,kBAGFhD,EAAQM,WAAY,EAId,MAAoBN,EAAQc,wBAA1B9G,EAAK,QAAEC,EAAM,SACrB2J,EAAY5J,EACZ6J,EAAa5J,EAEbwG,EAAakB,EAAEE,MACfnB,EAAaiB,EAAEI,MAEfpB,EAAsBgB,EAAEwB,QACFxB,EAAEyB,QAGxBvC,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB5G,OACjDiH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB7G,MACjDkJ,EAAgB7D,EAAUW,GAC1B8D,EAAaZ,EAAcrD,IAC3BkE,EAAcb,EAAcpD,KAG5B2C,SAASY,iBAAiB,YAAaa,GAEvCzB,SAASY,iBAAiB,UAAWb,GAErCC,SAASE,KAAKC,MAAMC,WAAa,UAO5B,WACLW,EAAgBW,SAChB3B,KAKG,SAAShL,EAAE8G,GAChB,OAAOA,EAoNF,SAAS8F,EACdC,EACAC,EACAC,GAEA,YAHA,IAAAD,MAAA,UACA,IAAAC,MAAA,KAEOF,EAAIG,OAAOhM,OAAS8L,EAAMD,EAAIlL,OAAO,EAAGmL,GAAKE,OAASD,EAAUF,I,uSCx2BnEI,EAAqB,SACzBC,GAEA,OAAQA,GACN,IAAK,KACL,IAAK,QACL,IAAK,OACL,IAAK,OACH,OAAOA,EACT,QACE,MAAO,SAaN,SAASC,EAAqB/K,GACnC,GAAe,MAAXA,EAAKgL,IAAcnM,MAAMC,SAASkB,EAAKgL,KACzC,MAAM,IAAI1K,UAAU,eAEtB,GAAiB,MAAbN,EAAKiL,MAAgBpM,MAAMC,SAASkB,EAAKiL,OAC3C,MAAM,IAAI3K,UAAU,iBAGtB,OAAO,EAAP,GACE0K,GAAIlM,SAASkB,EAAKgL,IAClBC,KAAMnM,SAASkB,EAAKiL,MACpBC,MAAO,YAAiBlL,EAAKkL,MAAO,MACpCJ,cAAeD,EAAmB7K,EAAK8K,eACvCK,cAAe,YAAanL,EAAKmL,eACjCC,KAAM,YAAiBpL,EAAKoL,KAAM,MAClCC,QAAS,YAAarL,EAAKqL,SAC3BC,SAAU,YAAWtL,EAAKsL,SAAU,MACpCC,WAAY,YAAWvL,EAAKuL,WAAY,MACxCC,gBAAiB,YAAWxL,EAAKwL,gBAAiB,MAClDC,YAAa,YAAiBzL,EAAKyL,YAAa,QAChDC,OAAQ,YAAW1L,EAAK0L,OAAQ,OAC7B,YAAiB1L,IACjB,YAAqBA,IA2F5B,iBAwOE,WACE2L,EACAC,EACAC,GAHF,gBAGE,IAAAA,OAAA,GArOK,KAAAC,WAA0BjD,SAASgB,cAAc,OACjD,KAAAkC,gBAA+BlD,SAASgB,cAAc,OAEnD,KAAAmC,gBAA+BnD,SAASgB,cAAc,OAE/C,KAAAoC,kBAAoB,IAAI,IAExB,KAAAC,qBAAuB,IAAI,IAE3B,KAAAC,kBAAoB,IAAI,IAExB,KAAAC,6BAA+B,IAAI,IAInC,KAAAC,oBAAsB,IAAI,IAE1B,KAAAC,2BAA6B,IAAI,IAIjC,KAAAC,mBAAqB,IAAI,IAEzB,KAAAC,6BAA+B,IAAI,IAInC,KAAAC,YAA4B,GAIrC,KAAAC,sBAAwB,YAC9B,KACA,SAACzM,EAAkBC,GAGjB,EAAKyM,UAAUjK,cAAe,EAE9B,IAAMkK,EAAe,CACnB3M,EAAG,EAAK0L,MAAM1L,EACdC,EAAG,EAAKyL,MAAMzL,GAEV2M,EAAc,CAClB5M,EAAGA,EACHC,EAAGA,GAGA,EAAK4M,gBAAgBF,EAAcC,KAGxC,EAAKE,KAAK9M,EAAGC,GAEb,EAAKkM,6BAA6BY,KAAK,CACrCC,KAAM,EACNL,aAAcA,EACdC,YAAaA,QAMX,KAAAK,eAAkC,KA2DlC,KAAAC,wBAA0B,YAChC,KACA,SAAC/M,EAAsBC,GAGrB,EAAKsM,UAAUhK,gBAAiB,EAEhC,IAAMyK,EAAW,CACfhN,MAAO,EAAKuL,MAAMvL,MAClBC,OAAQ,EAAKsL,MAAMtL,QAEfgN,EAAU,CAAEjN,MAAK,EAAEC,OAAM,GAE1B,EAAKiN,YAAYF,EAAUC,KAGhC,EAAKE,OAAOnN,EAAOC,GAGnB,EAAKiM,2BAA2BU,KAAK,CACnCC,KAAM,EACNG,SAAUA,EACVC,QAASA,QAMP,KAAAG,iBAAoC,KAmF1CC,KAAKC,UAAY/B,EACjB8B,KAAKd,UAAYf,EAEZC,GAAW4B,KAAKE,OAoxBzB,OA37BU,YAAAC,qBAAR,SAA6BxH,GAA7B,WAGuB,IAAnBqH,KAAK9B,MAAMV,MACQ,IAAnBwC,KAAK9B,MAAMV,OAKbwC,KAAKP,eAAiB,YACpB9G,GACA,SAACnG,EAAkBC,GACjB,IAAM0M,EAAe,CACnB3M,EAAG,EAAK0L,MAAM1L,EACdC,EAAG,EAAKyL,MAAMzL,GAEV2M,EAAc,CAAE5M,EAAC,EAAEC,EAAC,GAE1B,EAAK2N,KAAO,EAAH,KACJ,EAAKA,MAAI,CACZjL,YAAY,IAGT,EAAKkK,gBAAgBF,EAAcC,KAIxC,EAAKF,UAAUjK,cAAe,EAE9B,EAAKoL,YAAY7N,EAAGC,GAEpB,EAAKiM,kBAAkBa,KAAK,CAC1BC,KAAM,EACNL,aAAcA,EACdC,YAAaA,IAGf,EAAKH,sBAAsBzM,EAAGC,SAO5B,YAAA6N,qBAAR,WACMN,KAAKP,iBACPO,KAAKP,iBACLO,KAAKP,eAAiB,OAwChB,YAAAc,uBAAV,SAAiC5H,GAAjC,WAEuB,IAAnBqH,KAAK9B,MAAMV,MACQ,IAAnBwC,KAAK9B,MAAMV,OAIbwC,KAAKD,iBAAmB,YACtBpH,GACA,SAAChG,EAAsBC,GAQrB,GALA,EAAKsM,UAAUhK,gBAAiB,EAK5B,EAAKgJ,MAAMT,OAAS,EAAKS,MAAMT,MAAMtM,OAAS,EAAG,CAC7C,MAGF,EAAKmN,gBAAgB7E,wBAFhB+G,EAAU,QACTC,EAAW,SAGrB,OAAQ,EAAKvC,MAAMb,eACjB,IAAK,KACL,IAAK,OACHzK,GAAU6N,EACV,MACF,IAAK,OACL,IAAK,QACH9N,GAAS6N,GAKf,IAAMb,EAAW,CACfhN,MAAO,EAAKuL,MAAMvL,MAClBC,OAAQ,EAAKsL,MAAMtL,QAEfgN,EAAU,CAAEjN,MAAK,EAAEC,OAAM,GAE1B,EAAKiN,YAAYF,EAAUC,KAGhC,EAAKc,cAAc/N,EAAOC,GAE1B,EAAKgM,oBAAoBW,KAAK,CAC5BC,KAAM,EACNG,SAAQ,EACRC,QAAO,IAGT,EAAKF,wBAAwB/M,EAAOC,SAOlC,YAAA+N,uBAAR,WACMX,KAAKD,mBACPC,KAAKD,mBACLC,KAAKD,iBAAmB,OAwBlB,YAAAG,KAAV,WAOEF,KAAK3B,WAAa2B,KAAKY,4BACvBZ,KAAK1B,gBAAkB0B,KAAKa,wBAO5Bb,KAAKzB,gBAAkByB,KAAKc,mBAG5Bd,KAAK3B,WAAW/B,YAAY0D,KAAKzB,iBACjCyB,KAAK3B,WAAW/B,YAAY0D,KAAK1B,iBAGjC0B,KAAKU,cAAcV,KAAKC,UAAUtN,MAAOqN,KAAKC,UAAUrN,QAExDoN,KAAKe,oBAAoBf,KAAKC,UAAU5C,gBAOlC,YAAAuD,0BAAR,eACMI,EADN,OA4FE,OA1FIhB,KAAK9B,MAAMR,eACbsD,EAAM5F,SAASgB,cAAc,KAEzB4D,KAAK9B,MAAMP,KACbqD,EAAIC,KAAOjB,KAAK9B,MAAMP,KAEtBqD,EAAI3E,UAAY,uBAGlB2E,EAAM5F,SAASgB,cAAc,QACzBC,UAAY,qBAGlB2E,EAAIE,UAAUC,IAAI,uBACdnB,KAAK9B,MAAMN,SACboD,EAAIE,UAAUC,IAAI,aAEpBH,EAAIzF,MAAM9C,KAAUuH,KAAK9B,MAAM1L,EAAC,KAChCwO,EAAIzF,MAAM/C,IAASwH,KAAK9B,MAAMzL,EAAC,KAG/BuO,EAAIhF,iBAAiB,YAAY,SAAA1B,GAC1B,EAAK8F,KAAKnL,cAAiB,EAAKmL,KAAKlL,iBACxC,EAAKkM,eACL,EAAKC,aAEL,EAAK5C,qBAAqBc,KAAK,CAC7BC,KAAM,EACN8B,YAAahH,QAInB0G,EAAIhF,iBAAiB,SAAS,SAAA1B,GAC5B,GAAI,EAAK8F,KAAKvL,SACZyF,EAAEiH,iBACFjH,EAAEqB,uBAGF,GAAI,EAAKsE,UAAUvC,eAAwC,MAAvB,EAAKuC,UAAUtC,KAAc,CAC/D,IAAM6D,EAAYpG,SAASgB,cAAc,OACzCoF,EAAUnF,UAAY,6BACtB,IAAMoF,EAAarG,SAASgB,cAAc,OAC1CqF,EAAWpF,UAAY,yBACvBmF,EAAUlF,YAAYmF,GAGtB,IAFA,IAAIC,EAAOpH,EAAEqH,eACTC,EAAc,2BACTC,EAAQ,EAAGA,EAAQH,EAAKvQ,OAAQ0Q,IAAS,CAChD,IAAMlJ,EAAU+I,EAAKG,GACrB,GACgBC,MAAdnJ,EAAQ4E,IACM,MAAd5E,EAAQ4E,IACM,IAAd5E,EAAQ4E,KAEiC,IAArC5E,EAAQ4E,GAAGwE,SAASH,GAAuB,CAC7CA,EAAcjJ,EAAQ4E,GACtB,OAKN,IAAMyE,EAAc5G,SAAS6G,eAAeL,GACzB,MAAfI,IACFA,EAAYd,UAAUC,IAAI,eAC1Ba,EAAY1F,YAAYkF,IAKzB,EAAKpB,KAAKnL,cAAiB,EAAKmL,KAAKlL,gBACxC,EAAKsJ,kBAAkBe,KAAK,CAC1BC,KAAM,EACN8B,YAAahH,OAMf0F,KAAKI,KAAKvL,UACZmM,EAAIE,UAAUC,IAAI,cAEhBnB,KAAKI,KAAKrL,YACZiM,EAAIE,UAAUC,IAAI,eAEhBnB,KAAKI,KAAKpL,YACZgM,EAAIE,UAAUC,IAAI,eAEhBnB,KAAKI,KAAKjL,YACZ6L,EAAIE,UAAUC,IAAI,eAGbH,GAOC,YAAAH,sBAAV,WACE,IAAMlI,EAAUyC,SAASgB,cAAc,OACvCzD,EAAQ0D,UAAY,4BAEpB,IAAMoB,EAAQuC,KAAKkC,6BACnB,GAAIzE,EAAMtM,OAAS,EAAG,CAEpB,IAAMgR,EAAQ/G,SAASgB,cAAc,SAC/BgG,EAAMhH,SAASgB,cAAc,MAC7BiG,EAAYjH,SAASgB,cAAc,MACnCkG,EAAYlH,SAASgB,cAAc,MACnCmG,EAAOnH,SAASgB,cAAc,MAUpC,OARAmG,EAAKC,UAAY/E,EACjB2E,EAAI9F,YAAYiG,GAChBJ,EAAM7F,YAAY+F,GAClBF,EAAM7F,YAAY8F,GAClBD,EAAM7F,YAAYgG,GAClBH,EAAM5G,MAAMkH,UAAY,SAGhBzC,KAAK9B,MAAMb,eACjB,IAAK,KACL,IAAK,OACC2C,KAAK9B,MAAMvL,MAAQ,IACrBwP,EAAM5G,MAAM5I,MAAWqN,KAAK9B,MAAMvL,MAAK,KACvCwP,EAAM5G,MAAM3I,OAAS,IAEvB,MACF,IAAK,OACL,IAAK,QACCoN,KAAK9B,MAAMtL,OAAS,IACtBuP,EAAM5G,MAAM5I,MAAQ,GACpBwP,EAAM5G,MAAM3I,OAAYoN,KAAK9B,MAAMtL,OAAM,MAM/C+F,EAAQ2D,YAAY6F,GAGtB,OAAOxJ,GAMC,YAAAuJ,2BAAV,WAEE,IAAMhE,EAAQ8B,KAAK9B,MAEnB,OAAO,YACL,CACE,CACE9G,MAAO,SACPlH,MAAO,YAAU,IAAIsE,OAEvB,CACE4C,MAAO,SACPlH,MAAO,YAAU,IAAIsE,OAEvB,CACE4C,MAAO,UACPlH,MAA2B,MAApBgO,EAAM7K,WAAqB6K,EAAM7K,WAAa,IAEvD,CACE+D,MAAO,qBACPlH,MAAiC,MAA1BgO,EAAM5K,iBAA2B4K,EAAM5K,iBAAmB,IAEnE,CACE8D,MAAO,YACPlH,MAA6B,MAAtBgO,EAAM3K,aAAuB2K,EAAM3K,aAAe,IAE3D,CACE6D,MAAO,WACPlH,MAA2B,MAApBgO,EAAMnL,WAAqBmL,EAAMnL,WAAa,IAEvD,CACEqE,MAAO,sBACPlH,MAAkC,MAA3BgO,EAAMlL,kBAA4BkL,EAAMlL,kBAAoB,KAGvEgN,KAAK9B,MAAMT,OAAS,KAQd,YAAAiF,iBAAV,SAA2B/J,GACzBA,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,WAO9C,sBAAW,oBAAK,C,IAAhB,WACE,OAAO,EAAP,GAAYxC,KAAKC,Y,IASnB,SAAiB0C,GACf3C,KAAK4C,SAASD,I,gCAQN,YAAAC,SAAV,SAAmBD,GACjB,IAAME,EAAY7C,KAAK9B,MAEvB8B,KAAKC,UAAY0C,EAKb3C,KAAK8C,gBAAgBD,EAAWF,IAClC3C,KAAK+C,OAAOF,EAAW7C,KAAKd,YAOhC,sBAAW,mBAAI,C,IAAf,WACE,OAAO,EAAP,GAAYc,KAAKd,Y,IASnB,SAAgB8D,GACdhD,KAAKiD,QAAQD,I,gCAQR,YAAAC,QAAP,SAAeD,GACb,IAAME,EAAelD,KAAKd,UAE1Bc,KAAKd,UAAY,EAAH,KACTgE,GACAF,QAI+B,IAA3BA,EAAY7N,YACnB+N,EAAa/N,aAAe6N,EAAY7N,YAExC6K,KAAKjB,6BAA6BQ,KAAK,CACrC4D,SAAUH,EAAY7N,aAQ1B6K,KAAK+C,OAAO/C,KAAKC,UAAWiD,IAepB,YAAAJ,gBAAV,SAA0BD,EAAkBF,GAC1C,OAAOE,IAAcF,GAOhB,YAAAI,OAAP,SACEF,EACAO,QADA,IAAAP,MAAA,WACA,IAAAO,MAAA,MAEApD,KAAK0C,iBAAiB1C,KAAKzB,iBAGtBsE,IAAa7C,KAAKX,gBAAgBwD,EAAW7C,KAAK9B,QACrD8B,KAAKK,YAAYL,KAAK9B,MAAM1L,EAAGwN,KAAK9B,MAAMzL,GAGvCoQ,IAAa7C,KAAKH,YAAYgD,EAAW7C,KAAK9B,QACjD8B,KAAKU,cAAcV,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,QAGlD,IAAMyQ,EAAerD,KAAK1B,gBAAgBkE,UACpCc,EAAetD,KAAKa,wBAAwB2B,UAiBlD,GAhBIa,IAAiBC,IACnBtD,KAAK1B,gBAAgBkE,UAAYc,GAG9BT,GAAaA,EAAUxF,gBAAkB2C,KAAK9B,MAAMb,eACvD2C,KAAKe,oBAAoBf,KAAK9B,MAAMb,eAGjCwF,GAAaA,EAAUjF,UAAYoC,KAAK9B,MAAMN,UAC7CoC,KAAK9B,MAAMN,QACboC,KAAK3B,WAAW6C,UAAUC,IAAI,aAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,cAIjC+F,GAAaA,EAAUnF,gBAAkBsC,KAAK9B,MAAMR,cAAe,CACrE,IAAM5E,EAAYkH,KAAKY,4BAEvB9H,EAAU0J,UAAYxC,KAAK3B,WAAWmE,UAGtC,IADA,IAAMe,EAAQvD,KAAK3B,WAAWmF,WACrBvU,EAAI,EAAGA,EAAIsU,EAAMpS,OAAQlC,IAChC,GAA0B,OAAtBsU,EAAMtU,GAAGwU,SAAmB,CAC9B,IAAIC,EAAgB1D,KAAK3B,WAAWsF,iBAClCJ,EAAMtU,GAAGwU,UAEW,OAAlBC,GACF5K,EAAU8K,iBAAsBF,EAAcG,aAKjB,OAA/B7D,KAAK3B,WAAWyF,YAClB9D,KAAK3B,WAAWyF,WAAWC,aAAajL,EAAWkH,KAAK3B,YAI1D2B,KAAK3B,WAAavF,EA8BpB,GA1BE+J,GACA7C,KAAK9B,MAAMR,eACXmF,EAAUlF,OAASqC,KAAK9B,MAAMP,MAEN,OAApBqC,KAAK9B,MAAMP,MACbqC,KAAK3B,WAAWzC,aAAa,OAAQoE,KAAK9B,MAAMP,MAK/CyF,GAAYA,EAASvO,WAAamL,KAAKI,KAAKvL,WAC3CmL,KAAKI,KAAKvL,SACZmL,KAAK3B,WAAW6C,UAAUC,IAAI,cAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,eAIhCsG,GAAYA,EAASrO,aAAeiL,KAAKI,KAAKrL,aAC7CiL,KAAKI,KAAKrL,WACZiL,KAAK3B,WAAW6C,UAAUC,IAAI,eAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,iBAIhCsG,GAAYA,EAASpO,aAAegL,KAAKI,KAAKpL,WACjD,GAAIgL,KAAKI,KAAKpL,WAAY,CACxBgL,KAAK3B,WAAW6C,UAAUC,IAAI,eAE9B,IAAMK,EAAYpG,SAASgB,cAAc,OACzCoF,EAAUnF,UAAY,6BACtB,IAAMoF,EAAarG,SAASgB,cAAc,OAC1CqF,EAAWpF,UAAY,yBACvBmF,EAAUlF,YAAYmF,GACtBzB,KAAK3B,WAAW/B,YAAYkF,OACvB,CACLxB,KAAK3B,WAAW6C,UAAUpE,OAAO,eAEjC,IAAMkH,EAAMhE,KAAK3B,WAAW4F,cAC1B,+BAEF,GAAY,OAARD,EAAc,CAChB,IAAM,EAASA,EAAIjL,cACJ,OAAX,GACF,EAAOmL,YAAYF,IAKtBZ,GAAYA,EAASjO,aAAe6K,KAAKI,KAAKjL,aAC7C6K,KAAKI,KAAKjL,WACZ6K,KAAK3B,WAAW6C,UAAUC,IAAI,eAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,iBAQhC,YAAAA,OAAP,WAEEkD,KAAKlB,mBAAmBS,KAAK,CAAEC,KAAMQ,OAErCA,KAAKhB,YAAYmF,SAAQ,SAAAC,GACvB,IACEA,EAAWC,UACX,MAAOC,QAGXtE,KAAK3B,WAAWvB,UAUR,YAAAuC,gBAAV,SACEF,EACAC,GAEA,OAAOD,EAAa3M,IAAM4M,EAAY5M,GAAK2M,EAAa1M,IAAM2M,EAAY3M,GAOlE,YAAAsO,oBAAV,SAA8BwD,GAC5B,OAAQA,GACN,IAAK,KACHvE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,iBACtC,MACF,IAAK,OACHxE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,cACtC,MACF,IAAK,QACHxE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,MACtC,MACF,IAAK,OACL,QACExE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,SAK1C,IAAMC,EAASzE,KAAK1B,gBAAgBoG,qBAAqB,SACnDvC,EAAQsC,EAAOtT,OAAS,EAAIsT,EAAOjF,KAAK,GAAK,KAEnD,GAAI2C,EACF,OAAQnC,KAAK9B,MAAMb,eACjB,IAAK,KACL,IAAK,OACC2C,KAAK9B,MAAMvL,MAAQ,IACrBwP,EAAM5G,MAAM5I,MAAWqN,KAAK9B,MAAMvL,MAAK,KACvCwP,EAAM5G,MAAM3I,OAAS,IAEvB,MACF,IAAK,OACL,IAAK,QACCoN,KAAK9B,MAAMtL,OAAS,IACtBuP,EAAM5G,MAAM5I,MAAQ,GACpBwP,EAAM5G,MAAM3I,OAAYoN,KAAK9B,MAAMtL,OAAM,QAYzC,YAAAyN,YAAV,SAAsB7N,EAAWC,GAC/BuN,KAAK3B,WAAW9C,MAAM9C,KAAUjG,EAAC,KACjCwN,KAAK3B,WAAW9C,MAAM/C,IAAS/F,EAAC,MAQ3B,YAAA6M,KAAP,SAAY9M,EAAWC,GACrBuN,KAAKK,YAAY7N,EAAGC,GACpBuN,KAAKC,UAAY,EAAH,KACTD,KAAK9B,OAAK,CACb1L,EAAC,EACDC,EAAC,KAWK,YAAAoN,YAAV,SAAsBF,EAAgBC,GACpC,OACED,EAAShN,QAAUiN,EAAQjN,OAASgN,EAAS/M,SAAWgN,EAAQhN,QAS1D,YAAA8N,cAAV,SAAwB/N,EAAeC,GAUrC,GAPqB,IAAnBoN,KAAK9B,MAAMV,MACQ,IAAnBwC,KAAK9B,MAAMV,OAEXwC,KAAKzB,gBAAgBhD,MAAM5I,MAAQA,EAAQ,EAAOA,EAAK,KAAO,GAC9DqN,KAAKzB,gBAAgBhD,MAAM3I,OAASA,EAAS,EAAOA,EAAM,KAAO,IAG/DoN,KAAK9B,MAAMT,OAASuC,KAAK9B,MAAMT,MAAMtM,OAAS,EAAG,CAEnD,IAAMsT,EAASzE,KAAK1B,gBAAgBoG,qBAAqB,SACnDvC,EAAQsC,EAAOtT,OAAS,EAAIsT,EAAOjF,KAAK,GAAK,KAEnD,GAAI2C,EACF,OAAQnC,KAAK9B,MAAMb,eACjB,IAAK,KACL,IAAK,OACH8E,EAAM5G,MAAM5I,MAAQA,EAAQ,EAAOA,EAAK,KAAO,GAC/C,MACF,IAAK,OACL,IAAK,QACHwP,EAAM5G,MAAM3I,OAASA,EAAS,EAAOA,EAAM,KAAO,MAYrD,YAAAkN,OAAP,SAAcnN,EAAeC,GAC3BoN,KAAKU,cAAc/N,EAAOC,GAC1BoN,KAAKC,UAAY,EAAH,KACTD,KAAK9B,OAAK,CACbvL,MAAK,EACLC,OAAM,KAQH,YAAA+R,QAAP,SAAeC,GAMb,IAAMR,EAAapE,KAAKxB,kBAAkBqG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAW,WAAP,SAAkBH,GAMhB,IAAMR,EAAapE,KAAKvB,qBAAqBoG,GAAGD,GAGhD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAxL,QAAP,SAAegM,GAMb,IAAMR,EAAapE,KAAKtB,kBAAkBmG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAY,mBAAP,SAA0BJ,GAMxB,IAAMR,EAAapE,KAAKrB,6BAA6BkG,GAAGD,GAGxD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAlI,UAAP,SAAiB0I,GAMf,IAAMR,EAAapE,KAAKpB,oBAAoBiG,GAAGD,GAG/C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAa,iBAAP,SAAwBL,GAMtB,IAAMR,EAAapE,KAAKnB,2BAA2BgG,GAAGD,GAGtD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAc,SAAP,SAAgBN,GAMd,IAAMR,EAAapE,KAAKlB,mBAAmB+F,GAAGD,GAG9C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAe,mBAAP,SACEP,GAOA,IAAMR,EAAapE,KAAKjB,6BAA6B8F,GAAGD,GAGxD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAQF,YAAA/C,WAAP,WACErB,KAAKI,KAAO,EAAH,KACJJ,KAAKI,MAAI,CACZjL,YAAY,IAGd6K,KAAKG,qBAAqBH,KAAK3B,YAET,KAApB2B,KAAK9B,MAAMV,MACS,KAApBwC,KAAK9B,MAAMV,MAEXwC,KAAKO,uBAAuBP,KAAK3B,aAQ9B,YAAA+C,aAAP,WACEpB,KAAKI,KAAO,EAAH,KACJJ,KAAKI,MAAI,CACZjL,YAAY,IAGd6K,KAAKM,uBACmB,KAApBN,KAAK9B,MAAMV,MACbwC,KAAKW,0BAKF,YAAAyE,iBAAP,WACE,OAAOC,EAAkBD,iBAAiBpF,KAAK9B,QAInC,EAAAkH,iBAAd,SAA+BlH,GAC7B,IAAMoH,EAAgBpH,EAAMV,KAvlCzB,SAAmBD,GACxB,IAAI+H,EAAQ,GACZ,OAAQ/H,GACN,KAAK,EACH+H,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,mBACV,MACF,KAAK,EACHA,EAAQ,YAAE,SACV,MACF,KAAK,EACHA,EAAQ,YAAE,QACV,MACF,KAAK,EAGL,KAAK,EAGL,KAAK,EACHA,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,mBACV,MACF,KAAK,GACHA,EAAQ,YAAE,WACV,MACF,KAAK,GACHA,EAAQ,YAAE,SACV,MACF,KAAK,GACHA,EAAQ,YAAE,OACV,MACF,KAAK,GACHA,EAAQ,YAAE,QACV,MACF,KAAK,GACHA,EAAQ,YAAE,uBACV,MACF,KAAK,GAGL,KAAK,GACHA,EAAQ,YAAE,mBACV,MACF,KAAK,GACHA,EAAQ,YAAE,wBACV,MACF,KAAK,GACHA,EAAQ,YAAE,cACV,MACF,KAAK,GACHA,EAAQ,YAAE,SACV,MACF,KAAK,GACHA,EAAQ,YAAE,eACV,MACF,KAAK,GACHA,EAAQ,YAAE,gBACV,MACF,KAAK,GACHA,EAAQ,YAAE,YACV,MACF,KAAK,GACHA,EAAQ,YAAE,eACV,MACF,QACEA,EAAQ,YAAE,QAId,OAAOA,EAugC8BC,CAAUrH,EAAMV,MAAQ,YAAE,QAC7D,OAAO,IAAI,gBAAc8H,EAAO,GAAI,KAExC,EApgCA,GAsgCe,O,6BC1uCf,4BACU,KAAAE,UAA2B,GAC3B,KAAAC,eAAgC,GAEjC,KAAAZ,GAAK,SAACD,GAEX,OADA,EAAKY,UAAUV,KAAKF,GACb,CACLP,QAAS,WAAM,SAAKqB,IAAId,MAIrB,KAAAe,KAAO,SAACf,GACb,EAAKa,eAAeX,KAAKF,IAGpB,KAAAc,IAAM,SAACd,GACZ,IAAMgB,EAAgB,EAAKJ,UAAUK,QAAQjB,GACzCgB,GAAiB,GAAG,EAAKJ,UAAUM,OAAOF,EAAe,IAGxD,KAAArG,KAAO,SAACwG,GAEb,EAAKP,UAAUrB,SAAQ,SAAAS,GAAY,OAAAA,EAASmB,MAG5C,EAAKN,eAAetB,SAAQ,SAAAS,GAAY,OAAAA,EAASmB,MACjD,EAAKN,eAAiB,IAGjB,KAAAO,KAAO,SAACC,GAAkC,SAAKpB,IAAG,SAAAvK,GAAK,OAAA2L,EAAG1G,KAAKjF,Q,shBC3BxE,aAUE,WAAmB9K,EAAc0W,GATzB,KAAAC,MAAgB,GAGd,KAAAC,YAA6B,GAEtB,KAAAC,0BAA4B,IAAI,IAK/CrG,KAAKxQ,KAAOA,EACZwQ,KAAKkG,YAAcA,EAgEvB,OA7DE,sBAAW,mBAAI,C,IAKf,WACE,OAAOlG,KAAKmG,O,IANd,SAAgB3W,GACd,GAAoB,IAAhBA,EAAK2B,OAAc,MAAM,IAAImV,WAAW,cAC5CtG,KAAKmG,MAAQ3W,G,gCAOf,sBAAW,mBAAI,C,IAAf,WACE,OAAO,EAAP,GAAYwQ,KAAKoG,c,gCAGnB,sBAAW,sBAAO,C,IAAlB,WACE,GAAqB,MAAjBpG,KAAKuG,SAAkB,CACzB,IAAM5N,EAAUyC,SAASgB,cAAc,OACvCzD,EAAQ0D,UAAY,2BAA2B2D,KAAKxQ,KAEpD,IAAMgX,EAAUxG,KAAKyG,gBAEjBD,aAAmBE,MACrBF,EAAQrC,QAAQxL,EAAQ2D,aAExB3D,EAAQ2D,YAAYkK,GAGtBxG,KAAKuG,SAAW5N,EAGlB,OAAOqH,KAAKuG,U,gCAGP,YAAAI,MAAP,WACE3G,KAAKoG,YAAc,IAGX,YAAAQ,WAAV,SAAqBrU,GACnByN,KAAKoG,YAAc,EAAH,KACXpG,KAAKoG,aACL7T,IAKG,YAAAsU,YAAV,SACEC,EACAC,EACAC,GAEAhH,KAAKqG,0BAA0B9G,KAAK,CAAEuH,WAAU,EAAEC,OAAM,EAAEC,KAAI,KAGzD,YAAAC,gBAAP,SACErC,GAEA,OAAO5E,KAAKqG,0BAA0BxB,GAAGD,IAM7C,EA5EA,GAoFA,aAYE,WACEU,EACA4B,EACAC,GAHF,gBAEE,IAAAD,MAAA,SACA,IAAAC,MAAA,IAbM,KAAAC,kBAAoD,GACpD,KAAAC,uBAAmC,GAE1B,KAAAC,mBAAqB,IAAI,IAEzB,KAAAC,8BAAgC,IAAI,IAG7C,KAAAC,wBAA0BxH,KAAKuH,8BAA8BhI,KAOnES,KAAKsF,MAAQA,EAET4B,EAAY/V,OAAS,IACvB6O,KAAKoH,kBAAoBF,EAAYhQ,QAAO,SAACuQ,EAASC,GAIpD,OAFAA,EAAWT,gBAAgB,EAAKO,yBAChCC,EAAQC,EAAWlY,MAAQkY,EACpBD,IACNzH,KAAKoH,oBAGND,EAAmBhW,OAAS,IAC9B6O,KAAKqH,uBAAyB,EACzBrH,KAAKqH,uBACLF,EAAmBQ,QACpB,SAAAnY,GAAQ,OAAgC,MAAhC,EAAK4X,kBAAkB5X,QA8HzC,OAxHS,YAAAoY,cAAP,SAAqBC,GACnB,OAAO7H,KAAKoH,kBAAkBS,IAAmB,MAG5C,YAAAC,cAAP,SACEJ,EACA7F,GAuCA,YAvCA,IAAAA,MAAA,MAGA6F,EAAWT,gBAAgBjH,KAAKwH,yBAChCxH,KAAKoH,kBAAkBM,EAAWlY,MAAQkY,EAG1C1H,KAAKqH,uBAAyBrH,KAAKqH,uBAAuBM,QACxD,SAAAnY,GAAQ,OAAAA,IAASkY,EAAWlY,QAGhB,OAAVqS,EACEA,GAAS,EACX7B,KAAKqH,uBAAyB,EAAH,CACzBK,EAAWlY,MACRwQ,KAAKqH,wBAEDxF,GAAS7B,KAAKqH,uBAAuBlW,OAC9C6O,KAAKqH,uBAAyB,EACzBrH,KAAKqH,uBAAsB,CAC9BK,EAAWlY,OAGbwQ,KAAKqH,uBAAyB,EAEzBrH,KAAKqH,uBAAuBU,MAAM,EAAGlG,GAAM,CAE9C6F,EAAWlY,MAERwQ,KAAKqH,uBAAuBU,MAAMlG,IAIzC7B,KAAKqH,uBAAyB,EACzBrH,KAAKqH,uBAAsB,CAC9BK,EAAWlY,OAIRwQ,MAGF,YAAAgI,iBAAP,SAAwBH,GAOtB,cANO7H,KAAKoH,kBAAkBS,GAE9B7H,KAAKqH,uBAAyBrH,KAAKqH,uBAAuBM,QACxD,SAAAnY,GAAQ,OAAAA,IAASqY,KAGZ7H,MAGF,YAAAiI,eAAP,SACEzK,GADF,gBACE,IAAAA,MAAA,UAEA,IAAM0K,EAAO9M,SAASgB,cAAc,QACpC8L,EAAK3K,GAAK,8BACV2K,EAAK7L,UAAY,8BACjB6L,EAAKlM,iBAAiB,UAAU,SAAA1B,GAC9BA,EAAEiH,iBACF,EAAK+F,mBAAmB/H,KAAK,CAC3B+B,YAAahH,EACb/H,KAAM,EAAK8U,uBAAuBnQ,QAAO,SAAC3E,EAAM/C,GAO9C,OANI,EAAK4X,kBAAkB5X,KACzB+C,EAAO,EAAH,KACCA,GACA,EAAK6U,kBAAkB5X,GAAM+C,OAG7BA,IACN,SAIP,IAAM4V,EAAc/M,SAASgB,cAAc,OAW3C,OAVA+L,EAAY9L,UAAY,eAExB2D,KAAKqH,uBAAuBlD,SAAQ,SAAA3U,GAC9B,EAAK4X,kBAAkB5X,IACzB2Y,EAAY7L,YAAY,EAAK8K,kBAAkB5X,GAAMmJ,YAIzDuP,EAAK5L,YAAY6L,GAEVD,GAGF,YAAAvB,MAAP,sBACE3G,KAAKqH,uBAAuBlD,SAAQ,SAAA3U,GAC9B,EAAK4X,kBAAkB5X,IACzB,EAAK4X,kBAAkB5X,GAAMmX,YAc5B,YAAAyB,SAAP,SAAgBxD,GACd,OAAO5E,KAAKsH,mBAAmBzC,GAAGD,IAG7B,YAAAyD,0BAAP,SACEzD,GAEA,OAAO5E,KAAKuH,8BAA8B1C,GAAGD,IAEjD,EA9JA,I,6BC9FA,UAEM0D,EAAQ,6BA6CC,IApCS,SACtBC,EACAjD,EACA,G,IAAA,aAA2C,GAAE,EAA3CkD,EAAI,OAAEC,EAAK,QAAEC,EAAI,OAAEC,EAAK,QAEpB7P,EAAYsC,SAASgB,cAAc,UACzCtD,EAAUwM,MAAQA,EAClBxM,EAAUuD,UAAY,SAASkM,EAAeK,SAE1CJ,GAAM1P,EAAUoI,UAAUC,IAAI,MAAMqH,GAEpCE,EAAM5P,EAAUoI,UAAUC,IAAI,WACzBwH,GAAO7P,EAAUoI,UAAUC,IAAI,YAExC,IAAM0H,EAAOzN,SAAS0N,gBAAgBR,EAAO,OAE7CO,EAAKjN,aACH,UACA,OAAO2M,EAAeM,KAAK,GAAE,IAAIN,EAAeM,KAAK,IAEnDJ,GAAOI,EAAKjN,aAAa,OAAQ6M,GAGrC,IAAM/G,EAAOtG,SAAS0N,gBAAgBR,EAAO,QACvCS,EAC8B,iBAA3BR,EAAeM,KAAK,GACvBN,EAAeM,KAAK,GACpBN,EAAeM,KAAK,GAAG,GAM7B,OALAnH,EAAK9F,aAAa,IAAKmN,GAEvBF,EAAKvM,YAAYoF,GACjB5I,EAAUwD,YAAYuM,GAEf/P,I,6BC7CT;;;;;AAIA,IA+mFIkQ,EAAY,CACdC,OAAQ,MACRL,SAAU,WACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,qsBA2f3BK,EAAc,CAChBD,OAAQ,MACRL,SAAU,aACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,sdAoI3BM,EAAe,CACjBF,OAAQ,MACRL,SAAU,cACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,uRAurC3BO,EAAa,CACfH,OAAQ,MACRL,SAAU,YACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,6W,s2BC15IxB,SAASQ,0BACd9W,GAEA,GAAI,4CAAcA,EAAK+W,OAAS,4CAAc/W,EAAKgX,aACjD,MAAM,IAAI1W,UAAU,yBAGtB,OAAO,SAAP,qBACK,6CAAqBN,IAAK,CAC7BiL,KAAM,GACNgM,QAAS,4CAAWjX,EAAKiX,QAAS,MAClCC,YAAalX,EAAKkX,YAClBH,KAAO,4CAAc/W,EAAK+W,MAEtB,4CAAa/W,EAAKgX,aADlBhX,EAAK+W,OAEN,4CAAmB/W,IAI1B,4D,yDAmDA,OAnD2C,gCAC/B,wBAAAuO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OACvCzD,QAAQ0D,UAAY,iBACpB1D,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,MAGA,IAA7BtJ,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMC,QAAUhR,QAAQ+L,qBAAqB,U,iBACpCzV,GACuB,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB4G,YAAW,WACT,IACE8R,KAAKF,QAAQ1a,GAAGuT,UAAUrF,QAC1B,MAAOmH,OACR,IANErV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,I,QAA3BA,GAUT,IAAI6a,SAAWnR,QAAQoR,uBACrB,cAIF,OAFAD,SAAS,GAAGvO,MAAMkN,MAAQzI,KAAK9B,MAAMuL,YAE9B9Q,SAGC,wBAAA+J,iBAAV,SAA2B/J,SACzBA,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAG/B,IAAMU,IAAM5O,SAASgB,cAAc,OACnC4N,IAAIxH,UAAYxC,KAAK9B,MAAMoL,KAE3B,IADA,IAAMK,QAAUK,IAAItF,qBAAqB,UAChCzV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,IACJ,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB0Y,KAAKF,QAAQ1a,GAAGuT,UAAUrF,QAI9B,IAAI2M,SAAWnR,QAAQoR,uBACrB,cAEFD,SAAS,GAAGvO,MAAMkN,MAAQzI,KAAK9B,MAAMuL,aAEzC,cAnDA,CAA2C,sC,w4BCfpC,SAASQ,uBACd1X,GAEA,GAAI,4CAAcA,EAAK+W,OAAS,4CAAc/W,EAAKgX,aACjD,MAAM,IAAI1W,UAAU,yBAGtB,OAAO,SAAP,8BACK,6CAAqBN,IAAK,CAC7BiL,KAAM,GACN8L,KAAO,4CAAc/W,EAAK+W,MAEtB,4CAAa/W,EAAKgX,aADlBhX,EAAK+W,KAETY,sBAAuB,4CAAc3X,EAAK2X,uBACtC,UACA3X,EAAK2X,wBACN,4CAAmB3X,IACnB,4CAAqBA,IAI5B,sD,yDAqCA,OArCwC,6BAC5B,qBAAAuO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OACvCzD,QAAQ0D,UAAY,cACpB1D,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,MAGA,IAA7BtJ,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMC,QAAUhR,QAAQ+L,qBAAqB,U,iBACpCzV,GACP8I,YAAW,WACqB,IAA1B4R,QAAQ1a,GAAG2a,IAAIzY,QAAc0Y,KAAKF,QAAQ1a,GAAGuT,UAAUrF,UAC1D,IAHIlO,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,I,QAA3BA,GAMT,OAAO0J,SAGC,qBAAA+J,iBAAV,SAA2B/J,SACzBA,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAG/B,IAAMU,IAAM5O,SAASgB,cAAc,OACnC4N,IAAIxH,UAAYxC,KAAK9B,MAAMoL,KAE3B,IADA,IAAMK,QAAUK,IAAItF,qBAAqB,UAChCzV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,IACJ,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB0Y,KAAKF,QAAQ1a,GAAGuT,UAAUrF,SAIlC,WArCA,CAAwC,sC,s4BCvBlCgN,oBAAsB,SAC1BC,GAEA,OAAQA,GACN,IAAK,QACL,IAAK,QACL,IAAK,cACH,OAAOA,EACT,QACE,MAAO,gBAQPC,eAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,OACL,IAAK,OACH,OAAOA,EACT,QACE,MAAO,SAaN,SAASC,wBACdhY,GAEA,GAAI,4CAAcA,EAAK+W,OAAS,4CAAc/W,EAAKgX,aACjD,MAAM,IAAI1W,UAAU,yBAGtB,OAAO,SAAP,8BACK,6CAAqBN,IAAK,CAC7BiL,KAAM,EACN8L,KAAO,4CAAc/W,EAAK+W,MAEtB,4CAAa/W,EAAKgX,aADlBhX,EAAK+W,KAETc,eAAgBD,oBAAoB5X,EAAK6X,gBACzCI,OAAQ,4CAAWjY,EAAKiY,OAAQ,MAChCF,UAAWD,eAAe9X,EAAK+X,WAC/BG,cAAe,4CAAWlY,EAAKkY,cAAe,QAC3C,4CAAmBlY,IACnB,4CAAqBA,IAI5B,wD,yDA+DA,OA/DyC,8BAC7B,sBAAAuO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OAEvCzD,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQ0D,UAAY,gBAEW,IAA7B2D,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMgB,QAAU/R,QAAQ+L,qBAAqB,KACpCzV,EAAI,EAAGA,EAAIyb,QAAQvZ,OAAQlC,IAClCyb,QAAQzb,GAAGsM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C9a,EAAI,EAAGA,EAAI2b,eAAezZ,OAAQlC,IACzC2b,eAAe3b,GAAG6N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,U,iBACpCzV,GACuB,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB4G,YAAW,WACT,IACE8R,KAAKF,QAAQ1a,GAAGuT,UAAUrF,QAC1B,MAAOmH,OACR,IANErV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,I,QAA3BA,GAUT,OAAO0J,SAGC,sBAAA+J,iBAAV,SAA2B/J,SACzBA,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAI/B,IADA,IAAMoB,QAAU/R,QAAQ+L,qBAAqB,KACpCzV,EAAI,EAAGA,EAAIyb,QAAQvZ,OAAQlC,IAClCyb,QAAQzb,GAAGsM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C9a,EAAI,EAAGA,EAAI2b,eAAezZ,OAAQlC,IACzC2b,eAAe3b,GAAG6N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,UACpCzV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,IACJ,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB0Y,KAAKF,QAAQ1a,GAAGuT,UAAUrF,SAIlC,YA/DA,CAAyC,sC,s4BCrDlC,SAAS0N,uBACdtY,GAEA,GAAI,4CAAcA,EAAK+W,OAAS,4CAAc/W,EAAKgX,aACjD,MAAM,IAAI1W,UAAU,yBAGtB,OAAO,SAAP,8BACK,6CAAqBN,IAAK,CAC7BiL,KAAM,GACN8L,KAAO,4CAAc/W,EAAK+W,MAEtB,4CAAa/W,EAAKgX,aADlBhX,EAAK+W,KAETkB,OAAQ,4CAAWjY,EAAKiY,OAAQ,MAChCta,MAAOqB,WAAWgB,EAAKrC,OACvB4a,OAAQ,4CAAcvY,EAAKuY,QAAU,UAAYvY,EAAKuY,OACtDC,gBAAiB,4CAAcxY,EAAKwY,iBAChC,UACAxY,EAAKwY,kBACN,4CAAmBxY,IACnB,4CAAqBA,IAI5B,sD,yDAmKA,OAnKwC,6BAC5B,qBAAAuO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OAEjC4O,OAAS5P,SAASgB,cAAc,OACtC4O,OAAO3O,UAAY,qBAEnB,IAAMtJ,WAAaqI,SAASgB,cAAc,MAC1CrJ,WAAWsJ,UAAY,0BACvBtJ,WAAWkY,YAAcjL,KAAK9B,MAAMnL,WACpCA,WAAWwI,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM6M,gBACvCC,OAAO1O,YAAYvJ,YAEnB,IAAI7C,MAAQ,GACa,OAArB8P,KAAK9B,MAAMhO,QACbA,MAAQ8P,KAAKkL,cAAclL,KAAK9B,MAAMhO,OAAO,EAAO,GAAI,EAAG,MAG7D,IAAMib,YAAc/P,SAASgB,cAAc,MAC3C+O,YAAY9O,UAAY,2BACxB8O,YAAYF,YAAc,GAAG/a,MAC7Bib,YAAY5P,MAAMkN,MAAQzI,KAAK9B,MAAM4M,OACrCE,OAAO1O,YAAY6O,aAEnBxS,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQ0D,UAAY,eAEW,IAA7B2D,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMgB,QAAU/R,QAAQ+L,qBAAqB,KACpCzV,EAAI,EAAGA,EAAIyb,QAAQvZ,OAAQlC,IAClCyb,QAAQzb,GAAGsM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C9a,EAAI,EAAGA,EAAI2b,eAAezZ,OAAQlC,IACzC2b,eAAe3b,GAAG6N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,U,iBACpCzV,GACuB,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB4G,YAAW,WACT,IACE8R,KAAKF,QAAQ1a,GAAGuT,UAAUrF,QAC1B,MAAOmH,OACR,IANErV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,I,QAA3BA,GAaT,OAHA0J,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQyS,aAAaJ,OAAQrS,QAAQ0S,YAE9B1S,SAGC,qBAAA+J,iBAAV,SAA2B/J,SACzB,IAAMqS,OAAS5P,SAASgB,cAAc,OACtC4O,OAAO3O,UAAY,qBAEnB,IAAMtJ,WAAaqI,SAASgB,cAAc,MAC1CrJ,WAAWsJ,UAAY,0BACvBtJ,WAAWkY,YAAcjL,KAAK9B,MAAMnL,WACpCA,WAAWwI,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM6M,gBACvCC,OAAO1O,YAAYvJ,YAEnB,IAAI7C,MAAQ,GACa,OAArB8P,KAAK9B,MAAMhO,QACbA,MAAQ8P,KAAKkL,cAAclL,KAAK9B,MAAMhO,OAAO,EAAO,GAAI,EAAG,MAG7D,IAAMib,YAAc/P,SAASgB,cAAc,MAC3C+O,YAAY9O,UAAY,2BACxB8O,YAAYF,YAAc,GAAG/a,MAC7Bib,YAAY5P,MAAMkN,MAAQzI,KAAK9B,MAAM4M,OACrCE,OAAO1O,YAAY6O,aAEnBxS,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQyS,aAAaJ,OAAQrS,QAAQ0S,YAIrC,IADA,IAAMX,QAAU/R,QAAQ+L,qBAAqB,KACpCzV,EAAI,EAAGA,EAAIyb,QAAQvZ,OAAQlC,IAClCyb,QAAQzb,GAAGsM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C9a,EAAI,EAAGA,EAAI2b,eAAezZ,OAAQlC,IACzC2b,eAAe3b,GAAG6N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,UACpCzV,EAAI,EAAGA,EAAI0a,QAAQxY,OAAQlC,IACJ,IAA1B0a,QAAQ1a,GAAG2a,IAAIzY,QACjB0Y,KAAKF,QAAQ1a,GAAGuT,UAAUrF,SAKtB,qBAAA+N,cAAV,SACEI,EACAC,EACAC,EACAC,EACAC,GAEAA,OAA6B,IAAZA,EAA0BA,EAAU,IAQrD,GAJKD,IACHA,EAAa,IAGXF,GACF,GAAIxZ,KAAK4Z,MAAML,IAAWA,EACxB,MAAO,OAEJ,CACLG,IACA,IAAMG,EAAe5L,KAAKpO,IAAI,IAAK6Z,EAAY,GAC/CH,EACEvZ,KAAK4Z,MAAML,EAAS7W,OAAOpD,SAASua,IACpCnX,OAAOpD,SAASua,GAMpB,IAHA,IACIC,EAAM,EAEH9Z,KAAKC,IAAIsZ,IAAWI,GAEzBG,IACAP,GAAkBI,EAapB,OATEJ,EADEI,EACO3Z,KAAK4Z,MA7BD,EA6BOL,GA7BP,EA+BJvZ,KAAK4Z,MA/BD,EA+BOL,GAGlBla,MAAMka,KACRA,EAAS,GAGJA,EAAS,IAnBH,CAAC,GAAI,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,KAmBxBO,GAAOL,GAG5B,qBAAA5Z,IAAV,SAAc8D,EAAevE,EAAgB2a,GAC3C,IAAI9O,EAAMtH,EAAQ,GAClB,OAAOvE,GAAU6L,EAAI7L,OACjB6L,EACAgD,KAAKpO,IAAIoL,EAAM8O,EAAS3a,EAAQ2a,IAExC,WAnKA,CAAwC,sC,gDC1DxC9c,EAAOD,QAAU,khB,yoBC2BXgd,EAA4B,SAChCC,GAEA,OAAQA,GACN,IAAK,UACL,IAAK,UACL,IAAK,WACH,OAAOA,EACT,QACE,MAAO,YAaN,SAASC,EACd1Z,GAEA,GAA6B,iBAAlBA,EAAK2Z,UAAkD,IAAzB3Z,EAAK2Z,SAAS/a,OACrD,MAAM,IAAI0B,UAAU,sBAGtB,OAAO,EAAP,SACK,YAAqBN,IAAK,CAC7BiL,KAAM,EACN0O,SAAU3Z,EAAK2Z,SACfF,qBAAsBD,EAA0BxZ,EAAKyZ,sBACrDG,eAAgB,YAAiB5Z,EAAK4Z,eAAgB,MACtDC,UAAW,YAAiB7Z,EAAK6Z,UAAW,QACzC,YAAmB7Z,IACnB,YAAqBA,IAI5B,I,EAAA,yB,+CAwCA,OAxCyC,OAC7B,YAAAuO,iBAAV,WACE,IAAMuL,EAASrM,KAAK9B,MAAMiO,gBAAkBnM,KAAK9B,MAAMgO,SACjDvT,EAAUyC,SAASgB,cAAc,OA0BvC,OAzBAzD,EAAQ0D,UAAY,eACpB1D,EAAQiD,aAAa,cAAe,iBACpCjD,EAAQiD,aAAa,YAAa,SAClCjD,EAAQ4C,MAAM+Q,gBAAkB,OAAOD,EAAM,IAC7C1T,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,UAGJ,IAA7BzM,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,EAAQ4C,MAAMmO,QAAU,OAKC,OAAzB1J,KAAK9B,MAAMkO,WACyB,aAApCpM,KAAK9B,MAAM8N,uBAEXrT,EAAQ0D,UAAY,kCACpB1D,EAAQiD,aAAa,iCAAkC,KACvDjD,EAAQiD,aAAa,aAAcoE,KAAK9B,MAAMkO,YAGzCzT,GAOC,YAAA+J,iBAAV,SAA2B/J,GACzB,IAAM0T,EAASrM,KAAK9B,MAAMiO,gBAAkBnM,KAAK9B,MAAMgO,SACvDvT,EAAQ4C,MAAM+Q,gBAAkB,OAAOD,EAAM,KAEjD,EAxCA,CAAyCK,EAAA,G,0hBChDlC,SAASC,EAAiBpa,GAC/B,GAA6B,iBAAlBA,EAAK2Z,UAAkD,IAAzB3Z,EAAK2Z,SAAS/a,OACrD,MAAM,IAAI0B,UAAU,sBAGtB,GAA0B,iBAAfN,EAAKqa,OAA4C,IAAtBra,EAAKqa,MAAMzb,OAC/C,MAAM,IAAI0B,UAAU,kBAGtB,OAAO,SACF,YAAqBN,IAAK,CAC7BiL,KAAM,EACNoP,MAAOra,EAAKqa,MACZV,SAAU3Z,EAAK2Z,WACZ,YAAqB3Z,IAI5B,I,EAAA,yB,+CAmBA,OAnBkC,OACtB,YAAAuO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAOvC,OANAzD,EAAQ0D,UAAY,QAAU2D,KAAK9B,MAAM0O,MACzCjU,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMgO,SAAQ,IAC1DvT,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SAE5B9T,GAOC,YAAA+J,iBAAV,SAA2B/J,GACzBA,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMgO,SAAQ,KAE9D,EAnBA,CAAkCQ,EAAA,G,uuBCF3B,SAASG,EACdta,GAGA,GAA0B,iBAAfA,EAAKkW,OAA4C,IAAtBlW,EAAKkW,MAAMtX,OAC/C,MAAM,IAAI0B,UAAU,kBAGtB,OAAO,WACF,YAAqBN,IAAK,CAC7BiL,KAAM,GACNiL,MAAOlW,EAAKkW,MACZqE,aAAcva,EAAKua,aACnBC,YAAaxa,EAAKwa,cACf,YAAmBxa,IACnB,YAAqBA,IAS5B,+B,+CA4BA,OA5B8B,OAClB,YAAAkU,cAAV,sBACQuG,EAAa5R,SAASgB,cAAc,OAC1C4Q,EAAW3Q,UAAY,kBAEvB,IAAM4Q,EAAa7R,SAASgB,cAAc,SAC1C6Q,EAAWhC,YAAc,YAAE,iBAE3B+B,EAAW1Q,YAAY2Q,GAEvB,IAAMC,EAAa9R,SAASgB,cAAc,SAgB1C,OAfA8Q,EAAW1P,KAAO,QAClB0P,EAAWC,UAAW,EAEtBD,EAAWhd,MAAQ,IAAG8P,KAAKoG,YAAY0G,cACrC9M,KAAKkG,YAAY4G,cACjB,WAEFI,EAAWlR,iBAAiB,UAAU,SAAA1B,GACpC,EAAKsM,WAAW,CACdkG,aAAexS,EAAE8S,OAA4Bld,WAIjD8c,EAAW1Q,YAAY4Q,GAEhBF,GAEX,EA5BA,CAA8B,cAiC9B,2B,+CAiQA,OAjQ+B,OACnB,YAAAvG,cAAV,sBACQuG,EAAa5R,SAASgB,cAAc,OAC1C4Q,EAAW3Q,UAAY,yCAEvB,IAAMgR,EAAcrN,KAAKsN,YAAY,UAErCN,EAAW1Q,YAAY+Q,GAEvB,IAAME,EAA0BnS,SAASgB,cAAc,OACjDoR,EAAyBpS,SAASgB,cAAc,OAEtD4Q,EAAW1Q,YAAYkR,GACvBR,EAAW1Q,YAAYiR,GAEvB,IAGIE,EAHEV,EACJ/M,KAAKoG,YAAY2G,aAAe/M,KAAKkG,YAAY6G,aAAe,GAyDlE,OAnBAU,EAAc,SAAAC,GACZF,EAAuBhL,UAAY,GACnCkL,EAAOvJ,SAAQ,SAACwJ,EAAY9L,GAC1B,OAAA2L,EAAuBlR,YACrB,EAAKsR,eACHD,EAvCyB,SAAC9L,GAAkB,gBAClDgM,GAEA,IAAMd,EACJ,EAAK3G,YAAY2G,aAAe,EAAK7G,YAAY6G,aAAe,GAClE,EAAKnG,WAAW,CACdmG,YAAa,EACRA,EAAYhF,MAAM,EAAGlG,GAAM,CAC9BgM,GACGd,EAAYhF,MAAMlG,EAAQ,OA+B3BiM,CAAyBjM,GA1BZ,SAACA,GAAkB,kBACtC,IAAMkL,EACJ,EAAK3G,YAAY2G,aAAe,EAAK7G,YAAY6G,aAAe,GAC5DgB,EAAY,EACbhB,EAAYhF,MAAM,EAAGlG,GACrBkL,EAAYhF,MAAMlG,EAAQ,IAG/B,EAAK+E,WAAW,CAAEmG,YAAagB,IAC/BN,EAAYM,IAkBNC,CAAanM,UAMTkL,GAEZQ,EAAwBjR,YACtB0D,KAAKiO,uBAxBc,SAACJ,GACpB,IAAMd,EACJ,EAAK3G,YAAY2G,aAAe,EAAK7G,YAAY6G,aAAe,GAC5DgB,EAAY,EAAIhB,EAAa,CAAAc,IACnC,EAAKjH,WAAW,CAAEmG,YAAagB,IAC/BN,EAAYM,OAsBPf,GAGD,YAAAiB,sBAAR,SAA8BC,GAE5B,IAAMC,EAAe,CAAE1F,MAAO,WAE1B2F,EAAK,KAA6BD,GAmBhCE,EAAkBjT,SAASgB,cAAc,OAGzCkS,EAA2BlT,SAASgB,cAAc,OAClDmS,EAAuBvO,KAAKsN,YAAY,cACxCkB,EAAuBxO,KAAKyO,kBAAkB,MAtB5B,SAACve,GACvBke,EAAMM,UAAYxe,KAsBpBoe,EAAyBhS,YAAYiS,GACrCD,EAAyBhS,YAAYkS,GACrCH,EAAgB/R,YAAYgS,GAG5B,IAAMK,EAA4BvT,SAASgB,cAAc,OACnDwS,EAAqB5O,KAAKsN,YAAY,YACtCuB,EAAqB7O,KAAKyO,kBAAkB,MA3B5B,SAACve,GACrBke,EAAMU,QAAU5e,KA2BlBoe,EAAyBhS,YAAYsS,GACrCN,EAAyBhS,YAAYuS,GACrCR,EAAgB/R,YAAYqS,GAG5B,IAAMI,EAA0B3T,SAASgB,cAAc,OACjD4S,EAAmBhP,KAAKsN,YAAY,SACpC2B,EAAmBjP,KAAKkP,iBAC5Bf,EAAa1F,OAjCK,SAACvY,GACnBke,EAAM3F,MAAQvY,KAmChBoe,EAAyBhS,YAAY0S,GACrCV,EAAyBhS,YAAY2S,GACrCZ,EAAgB/R,YAAYyS,GAG5B,IAAMI,EAAY/T,SAASgB,cAAc,KACzC+S,EAAU7S,YACR,YAAgB,IAAc,YAAE,sBAAuB,CACrDkM,KAAM,QACNC,MAAO,aAgBX,OAJA0G,EAAUnT,iBAAiB,SARN,WA3CL,IAAC6R,OACQ,KADRA,EA4CHO,GA3CC3F,YACY,IAAlBoF,EAAMiB,cACc,IAApBjB,EAAMa,WAyCOR,EAASE,GAC7BA,EAAQD,EACRK,EAAqBte,MAAQ,IAAGke,EAAMM,WAAa,IACnDG,EAAmB3e,MAAQ,IAAGke,EAAMU,SAAW,IAC/CG,EAAiB/e,MAAQ,GAAGke,EAAM3F,SAKpC4F,EAAgB/R,YAAY6S,GAErBd,GAGD,YAAAT,eAAR,SACED,EACAyB,EACAC,GAGA,IAAMjB,EAAQ,KAAKT,GAebU,EAAkBjT,SAASgB,cAAc,OAGzCkS,EAA2BlT,SAASgB,cAAc,OAClDmS,EAAuBvO,KAAKsN,YAAY,cACxCkB,EAAuBxO,KAAKyO,kBAChCd,EAAWe,WAnBW,SAACxe,GACvBke,EAAMM,UAAYxe,EAClBkf,EAAS,KAAKhB,OAoBhBE,EAAyBhS,YAAYiS,GACrCD,EAAyBhS,YAAYkS,GACrCH,EAAgB/R,YAAYgS,GAG5B,IAAMK,EAA4BvT,SAASgB,cAAc,OACnDwS,EAAqB5O,KAAKsN,YAAY,YACtCuB,EAAqB7O,KAAKyO,kBAC9Bd,EAAWmB,SA1BS,SAAC5e,GACrBke,EAAMU,QAAU5e,EAChBkf,EAAS,KAAKhB,OA2BhBE,EAAyBhS,YAAYsS,GACrCN,EAAyBhS,YAAYuS,GACrCR,EAAgB/R,YAAYqS,GAG5B,IAAMI,EAA0B3T,SAASgB,cAAc,OACjD4S,EAAmBhP,KAAKsN,YAAY,SACpC2B,EAAmBjP,KAAKkP,iBAC5BvB,EAAWlF,OAjCO,SAACvY,GACnBke,EAAM3F,MAAQvY,EACdkf,EAAS,KAAKhB,OAkChBE,EAAyBhS,YAAY0S,GACrCV,EAAyBhS,YAAY2S,GACrCZ,EAAgB/R,YAAYyS,GAG5B,IAAMO,EAAYlU,SAASgB,cAAc,KAWzC,OAVAkT,EAAUhT,YACR,YAAgB,IAAY,YAAE,sBAAuB,CACnDkM,KAAM,QACNC,MAAO,aAGX6G,EAAUtT,iBAAiB,QAASqT,GAEpChB,EAAgB/R,YAAYgT,GAErBjB,GAGD,YAAAf,YAAR,SAAoBrW,GAClB,IAAMwG,EAAQrC,SAASgB,cAAc,SAErC,OADAqB,EAAMwN,YAAc,YAAEhU,GACfwG,GAGD,YAAAgR,kBAAR,SACEve,EACAkf,GAEA,IAAM1Z,EAAQ0F,SAASgB,cAAc,SAQrC,OAPA1G,EAAM8H,KAAO,SACC,OAAVtN,IAAgBwF,EAAMxF,MAAQ,GAAGA,GACrCwF,EAAMsG,iBAAiB,UAAU,SAAA1B,GAC/B,IAAMpK,EAAQmB,SAAUiJ,EAAE8S,OAA4Bld,OACjDkB,MAAMlB,IAAQkf,EAASlf,MAGvBwF,GAGD,YAAAwZ,iBAAR,SACEhf,EACAkf,GAEA,IAAM1Z,EAAQ0F,SAASgB,cAAc,SAOrC,OANA1G,EAAM8H,KAAO,QACC,OAAVtN,IAAgBwF,EAAMxF,MAAQA,GAClCwF,EAAMsG,iBAAiB,UAAU,SAAA1B,GAC/B,OAAA8U,EAAU9U,EAAE8S,OAA4Bld,UAGnCwF,GAEX,EAjQA,CAA+B,cAmQzB,EAAQ,6B,EAEd,yB,+CAwFA,OAxFwC,OAC5B,YAAAoL,iBAAV,WACE,IAAMhI,EAA4BsC,SAASgB,cAAc,OAMzD,OALAtD,EAAUuD,UAAY,cAGtBvD,EAAUyW,OAAOvP,KAAKwP,oBAEf1W,GAGC,YAAA4H,cAAV,SAAwB/N,GACtB,YAAM+N,cAAa,UAAC/N,EAAOA,IAGtB,YAAA6c,iBAAP,WACE,IAAMC,EAAa,QAAQzP,KAAK9B,MAAMX,GAEhCmS,EAAMtU,SAAS0N,gBAAgB,EAAO,OAE5C4G,EAAI9T,aAAa,UAAW,eAG5B,IAAM+T,EAAOvU,SAAS0N,gBAAgB,EAAO,QAEvC8G,EAAiBxU,SAAS0N,gBAAgB,EAAO,kBACvD8G,EAAehU,aAAa,KAAM6T,GAClCG,EAAehU,aAAa,KAAM,OAClCgU,EAAehU,aAAa,KAAM,OAClCgU,EAAehU,aAAa,IAAK,OACjCgU,EAAehU,aAAa,KAAM,OAClCgU,EAAehU,aAAa,KAAM,OAElC,IAAMiU,EAAQzU,SAAS0N,gBAAgB,EAAO,QAC9C+G,EAAMjU,aAAa,SAAU,MAC7BiU,EAAMjU,aACJ,QACA,cAAcoE,KAAK9B,MAAMuK,MAAK,qBAEhC,IAAMqH,EAAU1U,SAAS0N,gBAAgB,EAAO,QAChDgH,EAAQlU,aAAa,SAAU,QAC/BkU,EAAQlU,aACN,QACA,cAAcoE,KAAK9B,MAAMuK,MAAK,mBAGhC,IAAMsH,EAAS3U,SAAS0N,gBAAgB,EAAO,UAkB/C,OAjBAiH,EAAOnU,aAAa,OAAQ,QAAQ6T,EAAU,KAC9CM,EAAOnU,aAAa,KAAM,OAC1BmU,EAAOnU,aAAa,KAAM,OAC1BmU,EAAOnU,aAAa,IAAK,OAGzBgU,EAAeL,OAAOM,EAAOC,GAC7BH,EAAKJ,OAAOK,GACZF,EAAIH,OAAOI,EAAMI,IAGc,IAA7B/P,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,gBAEXyc,EAAI9T,aAAa,UAAW,OAGvB8T,GASF,YAAAtK,iBAAP,WACE,OAAO4K,EAAW5K,iBAAiBpF,KAAK9B,QAG5B,EAAAkH,iBAAd,SACElH,GAEA,IAAM+R,EAAgB,EAAM7K,iBAAgB,UAAClH,GAM7C,OALA+R,EAAcjI,iBAAiB,SAE/BiI,EAAcnI,cAAc,IAAI,EAAgB,cAAe5J,GAAQ,GACvE+R,EAAcnI,cAAc,IAAI,EAAiB,eAAgB5J,GAAQ,GAElE+R,GAEX,EAxFA,CAAwCvD,EAAA,G,iiBCvTjC,SAASwD,EAAiB3d,GAC/B,IAAM2L,EAAK,OACN,YAAqB,OAAK3L,GAAI,CAAEI,MAAO,EAAGC,OAAQ,MAAI,CACzD4K,KAAM,GACNC,MAAO,KACPC,eAAe,EACfG,SAAU,KACVC,WAAY,KAEZtL,EAAG,EACHC,EAAG,EACHE,MAAO,EACPC,OAAQ,EAERud,cAAe,CACb3d,EAAG,YAAWD,EAAK6d,OAAQ,GAC3B3d,EAAG,YAAWF,EAAK8d,OAAQ,IAE7BC,YAAa,CACX9d,EAAG,YAAWD,EAAKge,KAAM,GACzB9d,EAAG,YAAWF,EAAKie,KAAM,IAE3BC,UAAW,YAAWle,EAAKke,WAAale,EAAKyH,YAAa,GAC1DyO,MAAO,YAAiBlW,EAAKme,aAAene,EAAKkW,MAAO,MACxDkI,gBAAiB,EACjBC,gBAAiB,EACjBC,SAAU,YAAiBte,EAAKse,SAAU,IAC1CC,cAAe,YAAWve,EAAKue,cAAe,GAC9CC,UAAWxe,EAAKwe,UAChBC,YAAaze,EAAKye,YAClBC,eAAgB,YAAW1e,EAAK0e,eAAgB,GAChDC,WAAY,YAAiB3e,EAAK2e,WAAY,IAC9CC,gBAAiB,YAAW5e,EAAK4e,gBAAiB,GAClDC,iBAAkB,YAAW7e,EAAK6e,iBAAkB,KAWtD,OAAO,OACFlT,GAGA,EAAKmT,0BAA0BnT,EAAMiS,cAAejS,EAAMoS,cAIjE,IAAM,EAAQ,6BAQd,cAiIE,WAAmBpS,EAAkBkC,GAArC,MAKE,mBAEOlC,GACAoT,EAAKD,0BACNnT,EAAMiS,cACNjS,EAAMoS,cACP,KAGElQ,IAEL,IACD,K,OAjJO,EAAAmR,aAAe,EAEf,EAAAC,UAAoB,EAEpB,EAAAC,UAAoB,EAGd,EAAAC,sBAAwB,IAAIC,EAAA,EAEzB,EAAAC,0BAA0C,GAInD,EAAAC,mCAAqC,YAC7C,KACA,SAACrf,EAAkBC,GACjB,EAAKgf,UAAW,EAChB,IAAMtB,EAAgB,CAAE3d,EAAC,EAAEC,EAAC,GAE5B,EAAKif,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN2Q,cAAa,EACbG,YAAa,EAAKpS,MAAMoS,iBAMpB,EAAAwB,4BAA+C,KA2C/C,EAAAC,iCAAmC,YAC3C,KACA,SAACvf,EAAkBC,GACjB,EAAKgf,UAAW,EAChB,IAAMnB,EAAc,CAAE9d,EAAC,EAAEC,EAAC,GAE1B,EAAKif,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN8Q,YAAW,EACXH,cAAe,EAAKjS,MAAMiS,mBAMtB,EAAA6B,0BAA6C,KA6DrD,EAAKR,SAAWpR,EAAKvL,SACrB,EAAKqL,OAEL,YAAMQ,cAAa,OACjB3O,KAAKkL,IAAIiB,EAAMvL,MAAOuL,EAAMyS,iBAC5B5e,KAAKkL,IAAIiB,EAAMtL,OAAQsL,EAAM0S,kB,EA6SnC,OAtckC,OAmCtB,YAAAqB,kCAAV,SACEtZ,EACAG,GAFF,WAIEkH,KAAK8R,4BAA8B,YACjCnZ,GACA,SAACnG,EAAkBC,GAKjB,IAAM0d,EAAgB,CAAE3d,EAHxBA,GAAK,EAAK+e,aAAe,EAAKrT,MAAMyS,gBAAkB,EAG3Ble,EAF3BA,GAAK,EAAK8e,aAAe,EAAKrT,MAAM0S,gBAAkB,GAItD,EAAKa,UAAW,EAChB,EAAKvT,MAAQ,OACR,EAAKA,OAAK,CACbiS,cAAa,IAIf,EAAK0B,mCAAmCrf,EAAGC,KAE7CqG,IAMI,YAAAoZ,kCAAR,WACMlS,KAAK8R,8BACP9R,KAAK8R,8BACL9R,KAAK8R,4BAA8B,OA2B7B,YAAAK,gCAAV,SACExZ,EACAG,GAFF,WAIEkH,KAAKgS,0BAA4B,YAC/BrZ,GACA,SAACnG,EAAkBC,GAEjBD,GAAK,EAAK+e,aAAe,EAAKrT,MAAMyS,gBAAkB,EACtDle,GAAK,EAAK8e,aAAe,EAAKrT,MAAM0S,gBAAkB,EAEtD,EAAKa,UAAW,EAChB,EAAKvT,MAAQ,OACR,EAAKA,OAAK,CACboS,YAAa,CAAE9d,EAAC,EAAEC,EAAC,KAIrB,EAAKsf,iCAAiCvf,EAAGC,KAE3CqG,IAMI,YAAAsZ,gCAAR,WACMpS,KAAKgS,4BACPhS,KAAKgS,4BACLhS,KAAKgS,0BAA4B,OAyC9B,YAAApP,SAAP,SAAgBD,GACd,YAAMC,SAAQ,YAAC,KACVD,GACA2O,EAAKD,0BACN1O,EAASwN,cACTxN,EAAS2N,gBAWR,YAAArN,QAAP,SAAeD,GACbhD,KAAKwR,SAAWxO,EAAYnO,SAC5B,YAAMoO,QAAO,YAAC,KACTD,GAAW,CACd5N,UAAU,MASJ,YAAA0L,iBAAV,WACE,IAAMnI,EAA0ByC,SAASgB,cAAc,OACvDzD,EAAQ0D,UAAY,OAEhB,MAWA2D,KAAK9B,MAVP1L,EAAC,IACDC,EAAC,IACDE,EAAK,QACLC,EAAM,SACN6d,EAAS,YACTE,EAAe,kBACfC,EAAe,kBACfT,EAAa,gBACbG,EAAW,cACX7H,EAAK,QAGP9V,GAAgBge,EAChB/d,GAAkBge,EAElB,IAAMyB,EAAKlC,EAAc3d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC7D2B,EAAKnC,EAAc1d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAC7D2B,EAAKjC,EAAY9d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC3D6B,EAAKlC,EAAY7d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAG3DlB,EAAMtU,SAAS0N,gBAAgB,EAAO,OAE5C4G,EAAI9T,aAAa,QAAS,IAAGjJ,EAAQ8d,IACrCf,EAAI9T,aAAa,SAAU,IAAGhJ,EAAS6d,IAEvC,IAAMgC,EAAOrX,SAAS0N,gBAAgB,EAAO,QAW7C,OAVA2J,EAAK7W,aAAa,KAAM,GAAGyW,GAC3BI,EAAK7W,aAAa,KAAM,GAAG0W,GAC3BG,EAAK7W,aAAa,KAAM,GAAG2W,GAC3BE,EAAK7W,aAAa,KAAM,GAAG4W,GAC3BC,EAAK7W,aAAa,SAAU6M,GAAS,SACrCgK,EAAK7W,aAAa,eAAgB,GAAG6U,GAErCf,EAAIH,OAAOkD,GACX9Z,EAAQ4W,OAAOG,GAER/W,GAGC,YAAA+J,iBAAV,SAA2B/J,GACI,MAAzBA,EAAQI,gBACVJ,EAAQI,cAAcwC,MAAMmX,OAAS,WAGnC,MAWA1S,KAAK9B,MAVP1L,EAAC,IACDC,EAAC,IACDE,EAAK,QACLC,EAAM,SACN6d,EAAS,YACTE,EAAe,kBACfC,EAAe,kBACfT,EAAa,gBACbG,EAAW,cACX7H,EAAK,QAGP9V,GAAgBge,EAChB/d,GAAkBge,EAElB,IAAMyB,EAAKlC,EAAc3d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC7D2B,EAAKnC,EAAc1d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAC7D2B,EAAKjC,EAAY9d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC3D6B,EAAKlC,EAAY7d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAE3D+B,EAAOha,EAAQ+L,qBAAqB,OAE1C,GAAIiO,EAAKxhB,OAAS,EAAG,CACnB,IAAMue,EAAMiD,EAAKnT,KAAK,GAEtB,GAAW,MAAPkQ,EAAa,CAEfA,EAAI9T,aAAa,QAAS,IAAGjJ,EAAQ8d,IACrCf,EAAI9T,aAAa,SAAU,IAAGhJ,EAAS6d,IAEvC,IAAMmC,EAAQlD,EAAImD,uBAAuB,EAAO,QAEhD,GAAID,EAAMzhB,OAAS,EAAG,CACpB,IAAMshB,EAAOG,EAAMpT,KAAK,GAEZ,MAARiT,IACFA,EAAK7W,aAAa,KAAM,GAAGyW,GAC3BI,EAAK7W,aAAa,KAAM,GAAG0W,GAC3BG,EAAK7W,aAAa,KAAM,GAAG2W,GAC3BE,EAAK7W,aAAa,KAAM,GAAG4W,GAC3BC,EAAK7W,aAAa,SAAU6M,GAAS,SACrCgK,EAAK7W,aAAa,eAAgB,GAAG6U,MAM7C,GAAIzQ,KAAKwR,SAAU,CACjB,IAAIsB,EAA2B1X,SAASgB,cAAc,OAClD2W,EAAyB3X,SAASgB,cAAc,OAEpD,GAAI4D,KAAKyR,SAAU,CACjB,IAAMuB,EAAera,EAAQoR,uBAC3B,yCAEF,GAAIiJ,EAAa7hB,OAAS,GAClB4e,EAASiD,EAAaxT,KAAK,MACrBsT,EAAc/C,GAE5B,IAAMkD,EAAata,EAAQoR,uBACzB,uCAEF,GAAIkJ,EAAW9hB,OAAS,GAChB4e,EAASkD,EAAWzT,KAAK,MACnBuT,EAAYhD,GA8B5B,GA1BA+C,EAAY5R,UAAUC,IACpB,kCACA,yCAEF2R,EAAYvX,MAAM5I,MAA+B,EAApBqN,KAAKuR,aAAgB,KAClDuB,EAAYvX,MAAM3I,OAAgC,EAApBoN,KAAKuR,aAAgB,KACnDuB,EAAYvX,MAAM2X,aAAe,MACjCJ,EAAYvX,MAAM4X,gBAAkB,GAAG1K,EACvCqK,EAAYvX,MAAMgJ,SAAW,WAC7BuO,EAAYvX,MAAM9C,KAAU4Z,EAAKrS,KAAKuR,aAAY,KAClDuB,EAAYvX,MAAM/C,IAAS8Z,EAAKtS,KAAKuR,aAAY,KACjDuB,EAAYvX,MAAMmX,OAAS,OAE3BK,EAAU7R,UAAUC,IAClB,kCACA,uCAEF4R,EAAUxX,MAAM5I,MAA+B,EAApBqN,KAAKuR,aAAgB,KAChDwB,EAAUxX,MAAM3I,OAAgC,EAApBoN,KAAKuR,aAAgB,KACjDwB,EAAUxX,MAAM2X,aAAe,MAC/BH,EAAUxX,MAAM4X,gBAAkB,GAAG1K,EACrCsK,EAAUxX,MAAMgJ,SAAW,WAC3BwO,EAAUxX,MAAM9C,KAAU8Z,EAAKvS,KAAKuR,aAAY,KAChDwB,EAAUxX,MAAM/C,IAASga,EAAKxS,KAAKuR,aAAY,KAC/CwB,EAAUxX,MAAMmX,OAAS,OAEK,OAA1B/Z,EAAQI,cAAwB,CAIlC,IAHA,IAAMqa,EAAUza,EAAQI,cAAcgR,uBACpC,mCAEKqJ,EAAQjiB,OAAS,GAAG,EACnB4e,EAASqD,EAAQ5T,KAAK,KAChBuQ,EAAOjT,SAGrBnE,EAAQI,cAAcuD,YAAYwW,GAClCna,EAAQI,cAAcuD,YAAYyW,GAIpC/S,KAAKiS,kCACHa,EACA9S,KAAK3B,WAAWtF,eAElBiH,KAAKmS,gCACHY,EACA/S,KAAK3B,WAAWtF,oBAEb,GAAKiH,KAAKwR,SAcfxR,KAAKkS,yCAXL,GAFAlS,KAAKkS,oCAEyB,OAA1BvZ,EAAQI,cAKV,IAJMqa,EAAUza,EAAQI,cAAcgR,uBACpC,mCAGKqJ,EAAQjiB,OAAS,GAAG,CACzB,IAAM4e,KAASqD,EAAQ5T,KAAK,KAChBuQ,EAAOjT,WAab,EAAAuU,0BAAd,SACElB,EACAG,GAEA,MAAO,CACL3d,MAAOZ,KAAKC,IAAIme,EAAc3d,EAAI8d,EAAY9d,GAC9CI,OAAQb,KAAKC,IAAIme,EAAc1d,EAAI6d,EAAY7d,GAC/CD,EAAGT,KAAKshB,IAAIlD,EAAc3d,EAAG8d,EAAY9d,GACzCC,EAAGV,KAAKshB,IAAIlD,EAAc1d,EAAG6d,EAAY7d,KAUtC,YAAA6M,KAAP,SAAY9M,EAAWC,GACrB,YAAM4N,YAAW,UAAC7N,EAAGC,GACrB,IAAM6gB,EACJtT,KAAK9B,MAAMiS,cAAc3d,EAAIwN,KAAK9B,MAAMoS,YAAY9d,GAAK,EACrD+gB,EACJvT,KAAK9B,MAAMiS,cAAc1d,EAAIuN,KAAK9B,MAAMoS,YAAY7d,GAAK,EAErD+gB,EAAQ,CACZhhB,EAAG8gB,EAAc9gB,EAAIwN,KAAK9B,MAAMvL,MAAQH,EACxCC,EAAG8gB,EAAa9gB,EAAIuN,KAAK9B,MAAMtL,OAASH,GAGpCghB,EAAM,CACVjhB,EAAG8gB,EAActT,KAAK9B,MAAMvL,MAAQH,EAAIA,EACxCC,EAAG8gB,EAAavT,KAAK9B,MAAMtL,OAASH,EAAIA,GAG1CuN,KAAK9B,MAAQ,OACR8B,KAAK9B,OAAK,CACbiS,cAAeqD,EACflD,YAAamD,KAQV,YAAA3W,OAAP,WAEEkD,KAAKkS,oCAEL,YAAMpV,OAAM,YASP,YAAA4W,uBAAP,SACE9O,GAOA,IAAMR,EAAapE,KAAK0R,sBAAsB7M,GAAGD,GAGjD,OAFA5E,KAAK4R,0BAA0B9M,KAAKV,GAE7BA,GAEX,EAtcA,CAAkCsI,EAAA,G,8hBChF3B,SAASiH,EACdphB,GAEA,OAAO,OACF2d,EAAiB3d,IAAK,CACzBiL,KAAM,GACNmT,gBAAiB,EACjBC,gBAAiB,EACjBC,SAAU,YAAiBte,EAAKse,SAAU,IAC1CC,cAAe,YAAWve,EAAKue,cAAe,GAC9CG,eAAgB,YAAW1e,EAAK0e,eAAgB,GAChDC,WAAY,YAAiB3e,EAAK2e,WAAY,IAC9CC,gBAAiB,YAAW5e,EAAK4e,gBAAiB,GAClDC,iBAAkB,YAAW7e,EAAK6e,iBAAkB,KAIxD,I,EAAA,YAIE,WAAmBlT,EAAyBkC,GAA5C,MAKE,iBAEOlC,GAAK,KAGLkC,KAEN,K,OAQO,EAAAyR,mCAAqC,YAC7C,IACA,SAACrf,EAAkBC,GACjB,EAAKgf,UAAW,EAEhB,IAAMtB,EAAgB,CAAE3d,EAAC,EAAEC,EAAC,GAG5B,EAAKsQ,SAGL,EAAK2O,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN2Q,cAAa,EACbG,YAAa,EAAKpS,MAAMoS,iBAKpB,EAAAyB,iCAAmC,YAC3C,IACA,SAACvf,EAAkBC,GACjB,EAAKgf,UAAW,EAChB,IAAMnB,EAAc,CAAE9d,EAAC,EAAEC,EAAC,GAG1B,EAAKsQ,SAGL,EAAK2O,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN8Q,YAAW,EACXH,cAAe,EAAKjS,MAAMiS,mBAtC9B,EAAKpN,S,EA+PT,OAjRyC,OA6D7B,YAAAL,iBAAV,SAA2B/J,GACzB,YAAM+J,iBAAgB,UAAC/J,GAEnB,IAkBA8Z,EACA/C,EAnBA,EAeA1P,KAAK9B,MAdP1L,EAAC,IACDC,EAAC,IACDge,EAAS,YACTE,EAAe,kBACfC,EAAe,kBACfT,EAAa,gBACbG,EAAW,cACX7H,EAAK,QACLoI,EAAQ,WACRK,EAAU,aACVJ,EAAa,gBACbG,EAAc,iBACdE,EAAe,kBACfC,EAAgB,mBAGZuB,EAAOha,EAAQ+L,qBAAqB,OAI1C,GAAIiO,EAAKxhB,OAAS,EAAlB,CAGE,GAAW,OAFXue,EAAMiD,EAAKnT,KAAK,IAEC,CAIf,IAFA,IAAMoT,EAAQlD,EAAImD,uBA7HZ,6BA6H0C,QAC5Ce,EAASlE,EAAImD,uBA9HX,6BA8HyC,KACxCe,EAAOziB,OAAS,GACrByiB,EAAO,GAAG9W,SAGR8V,EAAMzhB,OAAS,IACjBshB,EAAOG,EAAMpT,KAAK,IAQxB,GAAW,MAAPkQ,GAAuB,MAAR+C,EAAnB,CAMA,IAGMoB,EAAS1D,EAAc3d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EACjEmD,EAAS3D,EAAc1d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EACjEmD,EAASzD,EAAY9d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC/DqD,EAAS1D,EAAY7d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAEjEyB,EAAKlC,EAAc3d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC7D2B,EAAKnC,EAAc1d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAC7D2B,EAAKjC,EAAY9d,EAAIA,EAAIie,EAAY,EAAIE,EAAkB,EAC3D6B,EAAKlC,EAAY7d,EAAIA,EAAIge,EAAY,EAAIG,EAAkB,EAI3DqD,EAAW,IADLliB,KAAKmiB,MAAMF,EAASF,EAAQC,EAASF,GACzB9hB,KAAKoiB,GAI3B,GAAIhD,GAAmB,EAAG,CACpByB,EAAQ1B,EAAWkD,MAAM,QAC7BjD,EAAkB,EAClByB,EAAMzO,SAAQ,SAAAjV,GACRA,EAAEiC,OAASggB,IACbA,EAxBW,GAwBOjiB,EAAEiC,WAGpBigB,GAAoB,IACtBA,EAVe,GAUIwB,EAAMzhB,QAI7B,GAAI2f,GAAiB,EAAG,CAClB8B,EAAQ/B,EAASuD,MAAM,QAC3BtD,EAAgB,EAChB8B,EAAMzO,SAAQ,SAAAjV,GACRA,EAAEiC,OAAS2f,IACbA,EArCW,GAqCK5hB,EAAEiC,WAGlB8f,GAAkB,IACpBA,EAvBe,GAuBE2B,EAAMzhB,QAiC3B,GA7BIkhB,EAAKE,IAEPF,GA9CiB,GA+CjBE,GA/CiB,GA+CEzB,GAGjBuB,EAAKE,IAEPF,GApDiB,GAoDElB,EACnBoB,GArDiB,IAwDfD,EAAKE,IAEPF,GA1DiB,GA2DjBE,GA3DiB,GA2DEvB,GAGjBqB,EAAKE,IAEPF,GAhEiB,GAgEElB,EACnBoB,GAjEiB,SAoEC,IAAT/J,IACTA,EAAQ,QAIoB,OAA1B9P,EAAQI,cAAwB,CAIlC,IAHA,IAAMsb,EAAS1b,EAAQI,cAAcgR,uBACnC,oBAEKsK,EAAOljB,OAAS,GAAG,CACxB,IAAMsM,EAAQ4W,EAAO7U,KAAK,GACtB/B,GAAOA,EAAMX,SAMnB,IAHA,IAAMwX,EAAS3b,EAAQI,cAAcgR,uBACnC,oBAEKuK,EAAOnjB,OAAS,GAAG,CACxB,IAAMojB,EAAQD,EAAO9U,KAAK,GACtB+U,GAAOA,EAAMzX,UAIrB,IAAI0X,EAAwB,EAAZ/D,EAEZgE,EAAYZ,GAAUE,EAASF,GAAU,EAAIW,EAC7CE,EAAYZ,GAAUE,EAASF,GAAU,EAAIU,EAE7CG,EAA0BvZ,SAASgB,cAAc,OACrDuY,EAAWzT,UAAUC,IAAI,oBACzBwT,EAAWpZ,MAAMgJ,SAAW,WAC5BoQ,EAAWpZ,MAAMqZ,OAAYJ,EAAS,uBACtCG,EAAWpZ,MAAMsZ,aAAkBL,EAAS,YAAY/L,EACxDkM,EAAWpZ,MAAM9C,KAAUgc,EAAS,KACpCE,EAAWpZ,MAAM/C,IAASkc,EAAS,KACnCC,EAAWpZ,MAAMuZ,UAAY,WAAU,GAAKb,GAAC,OAE7C,IAAIc,EAAwB3Z,SAASgB,cAAc,OAcnD,GAbA2Y,EAAS7T,UAAUC,IAAI,oBACvB4T,EAASxZ,MAAMgJ,SAAW,WAC1BwQ,EAASxZ,MAAMqZ,OAAYJ,EAAS,uBACpCO,EAASxZ,MAAMsZ,aAAkBL,EAAS,YAAY/L,EACtDsM,EAASxZ,MAAM9C,KAAUgc,EAAS,KAClCM,EAASxZ,MAAM/C,IAASkc,EAAS,KACjCK,EAASxZ,MAAMuZ,UAAY,WAAU,IAAMb,GAAC,OAEd,OAA1Btb,EAAQI,gBACVJ,EAAQI,cAAcuD,YAAYqY,GAClChc,EAAQI,cAAcuD,YAAYyY,IAGlB,IAAd7D,EAAkB,CACpB,IAAI8D,EAA8B5Z,SAASgB,cAAc,OAEzD,IACE4Y,EAAexS,UAAY0O,EAC3B8D,EAAezZ,MAAMgJ,SAAW,WAChCyQ,EAAezZ,MAAM9C,KAAU4Z,EAAE,KACjC2C,EAAezZ,MAAM/C,IAAS8Z,EAAE,KAChC0C,EAAezZ,MAAM5I,MAAWwe,EAAe,KAC/C6D,EAAezZ,MAAMqZ,OAAS,aAAanM,EAE3CuM,EAAe9T,UAAUC,IAAI,mBAAoB,eACjD,MAAOxM,GACPsgB,QAAQtgB,MAAMA,GAGc,OAA1BgE,EAAQI,eACVJ,EAAQI,cAAcuD,YAAY0Y,GAItC,GAAgB,IAAZnE,EAAgB,CAClB,IAAIqE,EAA4B9Z,SAASgB,cAAc,OAEvD,IACE8Y,EAAa1S,UAAYqO,EACzBqE,EAAa3Z,MAAMgJ,SAAW,WAC9B2Q,EAAa3Z,MAAM9C,KAAU8Z,EAAE,KAC/B2C,EAAa3Z,MAAM/C,IAASga,EAAE,KAC9B0C,EAAa3Z,MAAM5I,MAAWme,EAAa,KAC3CoE,EAAa3Z,MAAMqZ,OAAS,aAAanM,EAEzCyM,EAAahU,UAAUC,IAAI,mBAAoB,aAC/C,MAAOxM,GACPsgB,QAAQtgB,MAAMA,GAGc,OAA1BgE,EAAQI,eACVJ,EAAQI,cAAcuD,YAAY4Y,OAI1C,EAjRA,CAAyC,G,0hBCHlC,SAASC,EAAkB5iB,GAChC,IAC4B,iBAAlBA,EAAK2Z,UAAkD,IAAzB3Z,EAAK2Z,SAAS/a,SAC/B,OAArBoB,EAAKgX,YAEL,MAAM,IAAI1W,UAAU,sBAEtB,GAAuC,OAAnC,YAAWN,EAAK6iB,QAAS,MAC3B,MAAM,IAAIviB,UAAU,qBAGtB,IAAMwiB,EAAiB,YAAa9iB,EAAK8iB,gBACnC/L,EAAO+L,EA3Bf,SAAqB9iB,GACnB,OAAK,YAAcA,EAAK+W,MACnB,YAAc/W,EAAKgX,aACjB,KADsC,YAAahX,EAAKgX,aADzBhX,EAAK+W,KA0BbgM,CAAY/iB,GAAQ,KAElD,OAAO,SACF,YAAqBA,IAAK,CAC7BiL,KAAM,GACN4X,QAAS/jB,SAASkB,EAAK6iB,SACvBlJ,SAAU,YAAiB3Z,EAAK2Z,SAAU,MAC1CC,eAAgB,YAAiB5Z,EAAK4Z,eAAgB,MACtDkJ,eAAc,EACd/L,KAAI,IACD,YAAqB/W,IAG5B,I,EAAA,yB,+CAsCA,OAtCmC,OACvB,YAAAuO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAevC,OAdAzD,EAAQ0D,UAAY,QAEf2D,KAAK9B,MAAMmX,gBAAgD,OAA9BrV,KAAK9B,MAAMiO,eAMlCnM,KAAK9B,MAAMmX,gBAAqC,MAAnBrV,KAAK9B,MAAMoL,OAEjD3Q,EAAQ4C,MAAM+Q,gBAAkB,OAChC3T,EAAQ6J,UAAYxC,KAAK9B,MAAMoL,OAP/B3Q,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMiO,eAAc,IAChExT,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,UAO9B9T,GAOC,YAAA+J,iBAAV,SAA2B/J,GACpBqH,KAAK9B,MAAMmX,gBAAgD,OAA9BrV,KAAK9B,MAAMiO,eAOlCnM,KAAK9B,MAAMmX,gBAAqC,MAAnBrV,KAAK9B,MAAMoL,OAEjD3Q,EAAQ4C,MAAM+Q,gBAAkB,OAChC3T,EAAQ6J,UAAYxC,KAAK9B,MAAMoL,OAR/B3Q,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMiO,eAAc,IAChExT,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SACnC9T,EAAQ6J,UAAY,KAO1B,EAtCA,CAAmCkK,EAAA,G,kiBC3B7B6I,EAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,WACL,IAAK,UACH,OAAOA,EACT,QACE,MAAO,aAQPC,EAAmB,SAACC,GACxB,OAAQA,GACN,IAAK,WACL,IAAK,OACH,OAAOA,EACT,QACE,MAAO,aAaN,SAASC,EAAkBpjB,GAChC,GACgC,iBAAvBA,EAAKqjB,eACkB,IAA9BrjB,EAAKqjB,cAAczkB,OAEnB,MAAM,IAAI0B,UAAU,qBAGtB,OAAO,SACF,YAAqBN,IAAK,CAC7BiL,KAAM,GACNgY,UAAWD,EAAehjB,EAAKijB,WAC/BE,YAAaD,EAAiBljB,EAAKmjB,aACnCE,cAAerjB,EAAKqjB,cACpBC,oBAAqB,YAAWtjB,EAAKsjB,oBAAqB,GAC1DC,kBAAmB,YAAavjB,EAAKujB,mBACrCrN,MAAO,YAAiBlW,EAAKkW,MAAO,QACjC,YAAqBlW,IAI5B,IAAqB,EAArB,YAIE,WAAmB2L,EAAmBkC,GAAtC,MAEE,YAAMlC,EAAOkC,IAAK,K,OAJZ,EAAA2V,YAA6B,KAoBnC,EAAKC,WACH,WAEE,EAAKzX,gBAAgBiE,UAAY,EAAKyT,cAAczT,YAM7B,aAAzB,EAAKtE,MAAMsX,UAA2B,IAAQU,EAAMC,e,EAuhB1D,OAtjBmC,OAsCzB,YAAAC,SAAR,WAC2B,OAArBpW,KAAK+V,cACPlgB,OAAOwgB,cAAcrW,KAAK+V,aAC1B/V,KAAK+V,YAAc,OAUf,YAAAC,UAAR,SACEM,EACAC,QAAA,IAAAA,MAAmBL,EAAMC,eAEzBnW,KAAKoW,WACLpW,KAAK+V,YAAclgB,OAAO2gB,YAAYF,EAASC,IAQvC,YAAAzV,iBAAV,WACE,OAAOd,KAAKiW,eAOJ,YAAAvT,iBAAV,SAA2B/J,GAEnB,MAAyCqH,KAAKyW,eAClDzW,KAAK9B,MAAMvL,MACXqN,KAAK9B,MAAMtL,QAFE8jB,EAAQ,QAAUC,EAAS,SAKb,YAAzB3W,KAAK9B,MAAMsX,YACoB,IAA7BxV,KAAKI,KAAKlL,gBACZ,YAAMwL,cAAa,UAACV,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,QAEnD+F,EAAQuI,UAAU7J,QAAQ,iBAAkB,oBAEX,IAA7B2I,KAAKI,KAAKlL,gBACZ,YAAMwL,cAAa,UAACgW,EAAUC,GAEhChe,EAAQuI,UAAU7J,QAAQ,gBAAiB,mBAE7CsB,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,WAOvC,YAAA1F,OAAP,WAEEkD,KAAKoW,WAEL,YAAMtZ,OAAM,YASJ,YAAA4D,cAAV,SAAwB/N,EAAeC,GAE/B,MAAyCoN,KAAKyW,eAClD9jB,EACAC,GAFa8jB,EAAQ,QAAUC,EAAS,SAMb,YAAzB3W,KAAK9B,MAAMsX,UACb,YAAM9U,cAAa,UAAC/N,EAAOC,GAI3B,YAAM8N,cAAa,UAACgW,EAAUC,IAU1B,YAAAV,YAAR,WACE,OAAQjW,KAAK9B,MAAMsX,WACjB,IAAK,WACH,OAAOxV,KAAK4W,sBACd,IAAK,UACH,OAAO5W,KAAK6W,qBACd,QACE,MAAM,IAAIjiB,MAAM,yBAQd,YAAAgiB,oBAAR,WACE,IAAMtO,EAAQ,6BACRwO,EACO,UADPA,EAEa,UAFbA,EAGE,UAHFA,EAIM,UAJNA,EAKO,UALPA,EAMQ,UAGR,EAAoB9W,KAAKyW,iBAAvB9jB,EAAK,QAAEC,EAAM,SAKfmkB,EACHC,GAA4CrkB,EAAS,IAElDqR,EAAM5I,SAASgB,cAAc,OACnC4H,EAAI3H,UAAY,iBAChB2H,EAAIzI,MAAM5I,MAAWA,EAAK,KAC1BqR,EAAIzI,MAAM3I,OAAYA,EAAM,KAG5B,IAAM8c,EAAMtU,SAAS0N,gBAAgBR,EAAO,OAE5CoH,EAAI9T,aAAa,UAAW,eAG5B,IAAMqb,EAAY7b,SAAS0N,gBAAgBR,EAAO,KAClD2O,EAAUrb,aAAa,QAAS,aAChC,IAAMsb,EAAsB9b,SAAS0N,gBAAgBR,EAAO,UAC5D4O,EAAoBtb,aAAa,KAAM,MACvCsb,EAAoBtb,aAAa,KAAM,MACvCsb,EAAoBtb,aAAa,IAAK,MACtCsb,EAAoBtb,aAAa,OAAQkb,GACzCI,EAAoBtb,aAAa,SAAUkb,GAC3CI,EAAoBtb,aAAa,eAAgB,KACjDsb,EAAoBtb,aAAa,iBAAkB,SAEnDqb,EAAU1H,OAAO2H,GAGjB,IAAMC,EAAOnX,KAAKoX,mBAClB,GAAID,EAAKhmB,OAAS,EAAG,CACnB,IAAMkmB,EAAuBjc,SAAS0N,gBAAgBR,EAAO,QAC7D+O,EAAqBzb,aAAa,cAAe,UACjDyb,EAAqBzb,aAAa,YAAa,KAC/Cyb,EAAqBzb,aACnB,YACA,+BAEFyb,EAAqBzb,aAAa,OAAQkb,GAC1CO,EAAqBpM,YAAckM,EACnCF,EAAU1H,OAAO8H,GAInB,IAAMC,EAAalc,SAAS0N,gBAAgBR,EAAO,KACnDgP,EAAW1b,aAAa,QAAS,SAEjC,IAAM2b,EAAgBnc,SAAS0N,gBAAgBR,EAAO,KACtDiP,EAAc3b,aAAa,QAAS,QACpC2b,EAAc3b,aAAa,YAAa,oBACxC,IAAM4b,EAASpc,SAAS0N,gBAAgBR,EAAO,QAC/CkP,EAAO5b,aAAa,KAAM,MAC1B4b,EAAO5b,aAAa,KAAM,KAC1B4b,EAAO5b,aAAa,KAAM,MAC1B4b,EAAO5b,aAAa,KAAM,KAC1B4b,EAAO5b,aAAa,SAAUkb,GAC9BU,EAAO5b,aAAa,eAAgB,KACpC,IAAM6b,EAASrc,SAAS0N,gBAAgBR,EAAO,QAC/CmP,EAAO7b,aAAa,KAAM,MAC1B6b,EAAO7b,aAAa,KAAM,KAC1B6b,EAAO7b,aAAa,KAAM,MAC1B6b,EAAO7b,aAAa,KAAM,KAC1B6b,EAAO7b,aAAa,SAAUkb,GAC9BW,EAAO7b,aAAa,eAAgB,KAEpC2b,EAAchI,OAAOiI,EAAQC,GAE7BH,EAAW/H,OAAOgI,GAElB,IAAK,IAAItoB,EAAI,EAAGA,EAAI,GAAIA,IAAK,CAC3B,IAAMyoB,EAAOtc,SAAS0N,gBAAgBR,EAAO,QAC7CoP,EAAK9b,aAAa,KAAM,KACxB8b,EAAK9b,aAAa,KAAM,KACxB8b,EAAK9b,aAAa,SAAUkb,GAC5BY,EAAK9b,aAAa,YAAa,2BAA+B,EAAJ3M,EAAK,KAE3DA,EAAI,GAAM,GACZyoB,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,eAAgB3M,EAAI,IAAO,EAAI,IAAM,OAEvDyoB,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,eAAgB,QAIpC0b,EAAW/H,OAAOmI,GAMpB,IAAMC,EAAWvc,SAAS0N,gBAAgBR,EAAO,KACjDqP,EAAS/b,aAAa,QAAS,aAC/B+b,EAAS/b,aAAa,YAAa,oBAEnC,IAAMgc,EAAYxc,SAAS0N,gBAAgBR,EAAO,QAClDsP,EAAUhc,aAAa,QAAS,eAChCgc,EAAUhc,aAAa,KAAM,KAC7Bgc,EAAUhc,aAAa,KAAM,KAC7Bgc,EAAUhc,aAAa,KAAM,MAC7Bgc,EAAUhc,aAAa,KAAM,KAC7Bgc,EAAUhc,aAAa,SAAUkb,GACjCc,EAAUhc,aAAa,eAAgB,KACvCgc,EAAUhc,aAAa,iBAAkB,SAEzC,IAAMic,EAAYzc,SAAS0N,gBAAgBR,EAAO,QAClDuP,EAAUjc,aAAa,QAAS,eAChCic,EAAUjc,aAAa,KAAM,KAC7Bic,EAAUjc,aAAa,KAAM,KAC7Bic,EAAUjc,aAAa,KAAM,QAC7Bic,EAAUjc,aAAa,KAAM,KAC7Bic,EAAUjc,aAAa,SAAUkb,GACjCe,EAAUjc,aAAa,eAAgB,OACvCic,EAAUjc,aAAa,iBAAkB,SAEzC+b,EAASpI,OAAOqI,EAAWC,GAG3B,IAAMC,EAAa1c,SAAS0N,gBAAgBR,EAAO,KACnDwP,EAAWlc,aAAa,QAAS,eACjCkc,EAAWlc,aAAa,YAAa,oBAErC,IAAMmc,EAAc3c,SAAS0N,gBAAgBR,EAAO,QACpDyP,EAAYnc,aAAa,QAAS,iBAClCmc,EAAYnc,aAAa,KAAM,KAC/Bmc,EAAYnc,aAAa,KAAM,KAC/Bmc,EAAYnc,aAAa,KAAM,MAC/Bmc,EAAYnc,aAAa,KAAM,KAC/Bmc,EAAYnc,aAAa,SAAUkb,GACnCiB,EAAYnc,aAAa,eAAgB,KACzCmc,EAAYnc,aAAa,iBAAkB,SAE3C,IAAMoc,EAAc5c,SAAS0N,gBAAgBR,EAAO,QACpD0P,EAAYpc,aAAa,QAAS,iBAClCoc,EAAYpc,aAAa,KAAM,KAC/Boc,EAAYpc,aAAa,KAAM,KAC/Boc,EAAYpc,aAAa,KAAM,QAC/Boc,EAAYpc,aAAa,KAAM,KAC/Boc,EAAYpc,aAAa,SAAUkb,GACnCkB,EAAYpc,aAAa,eAAgB,OACzCoc,EAAYpc,aAAa,iBAAkB,SAC3C,IAAMqc,EAAgB7c,SAAS0N,gBAAgBR,EAAO,UACtD2P,EAAcrc,aAAa,IAAK,KAChCqc,EAAcrc,aAAa,OAAQkb,GAEnCgB,EAAWvI,OAAOwI,EAAaC,EAAaC,GAG5C,IAAMC,EAAa9c,SAAS0N,gBAAgBR,EAAO,KACnD4P,EAAWtc,aAAa,QAAS,eACjCsc,EAAWtc,aAAa,YAAa,oBACrC,IAAMuc,EAAgB/c,SAAS0N,gBAAgBR,EAAO,QACtD6P,EAAcvc,aAAa,KAAM,KACjCuc,EAAcvc,aAAa,KAAM,KACjCuc,EAAcvc,aAAa,KAAM,MACjCuc,EAAcvc,aAAa,KAAM,KACjCuc,EAAcvc,aAAa,SAAUkb,GACrCqB,EAAcvc,aAAa,eAAgB,KAC3Cuc,EAAcvc,aAAa,iBAAkB,SAC7C,IAAMwc,EAAgBhd,SAAS0N,gBAAgBR,EAAO,UACtD8P,EAAcxc,aAAa,IAAK,KAChCwc,EAAcxc,aAAa,OAAQkb,GAEnCoB,EAAW3I,OAAO4I,EAAeC,GAGjC,IAAMC,EAAMjd,SAAS0N,gBAAgBR,EAAO,UAC5C+P,EAAIzc,aAAa,KAAM,MACvByc,EAAIzc,aAAa,KAAM,MACvByc,EAAIzc,aAAa,IAAK,OACtByc,EAAIzc,aAAa,OAAQkb,GAGzB,IAAM9gB,EAAOgK,KAAKsY,gBACZC,EAAUviB,EAAKc,aACf0hB,EAAUxiB,EAAKa,aAEf4hB,EAAW,EAAaF,EACxBG,EAAc,EAAaF,EAAwBD,EAAU,GAAxB,EACrCI,EAAY,GAHJ3iB,EAAKY,WAGkC4hB,EAAU,GAAxB,GA0EvC,GAxEAb,EAAS/b,aAAa,YAAa,2BAA2B+c,EAAS,KACvEb,EAAWlc,aACT,YACA,2BAA2B8c,EAAW,KAExCR,EAAWtc,aACT,YACA,2BAA2B6c,EAAQ,KAIrC/I,EAAIH,OAAO0H,EAAWK,EAAYK,EAAUG,EAAYI,EAAYG,GAEpE3I,EAAI9T,aAAa,YAAa,eAS9BoI,EAAIxB,UAAY,oFAIN,YACA,YACA,gCAAgCmW,EAAS,QACzCC,KAAK,MAAK,8CAGV,YACA,YACA,iCAAgCD,EAAY,KAAG,QAC/CC,KAAK,MAAK,+FAKV,YACA,YACA,gCAAgCF,EAAW,QAC3CE,KAAK,MAAK,8CAGV,YACA,YACA,iCAAgCF,EAAc,KAAG,QACjDE,KAAK,MAAK,+FAKV,YACA,YACA,gCAAgCH,EAAQ,QACxCG,KAAK,MAAK,8CAGV,YACA,YACA,iCAAgCH,EAAW,KAAG,QAC9CG,KAAK,MAAK,iDAMpB5U,EAAIuL,OAAOG,GAGoB,aAA3B1P,KAAK9B,MAAMwX,YAA4B,CACzC,IAAMmD,EAA4Bzd,SAASgB,cAAc,QACzDyc,EAASxc,UAAY,OACrBwc,EAAS5N,YAAc,YAAUjV,EAAM,WACvC6iB,EAAStd,MAAMud,SAAc/B,EAAY,KACrC/W,KAAK9B,MAAMuK,QAAOoQ,EAAStd,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACxDzE,EAAIuL,OAAOsJ,GAGb,OAAO7U,GAOD,YAAA6S,mBAAR,WACE,IAAMle,EAA0ByC,SAASgB,cAAc,OACvDzD,EAAQ0D,UAAY,gBAEd,MAAoB2D,KAAKyW,iBAAvB9jB,EAAK,QAAEC,EAAM,SACjBmmB,EAAWpmB,EACXC,EAASD,IACXomB,EAAWnmB,GAIb,IAEMomB,EAAuB,EAAIhZ,KAAK9B,MAAM0X,cAAczkB,OACpD8nB,EAHmB,GAGgBF,EAAY,IAC/ChC,EACHC,KAA4C+B,EAAY,IACrDG,EAAannB,KAAKshB,IANC,GAOH2F,EAAuBD,EAAY,IACtDpmB,EAAQ,IAAO,IAIZqD,EAAOgK,KAAKsY,gBAGlB,GAA+B,aAA3BtY,KAAK9B,MAAMwX,YAA4B,CACzC,IAAMmD,EAA4Bzd,SAASgB,cAAc,QACzDyc,EAASxc,UAAY,OACrBwc,EAAS5N,YAAc,YAAUjV,EAAM,WACvC6iB,EAAStd,MAAMud,SAAc/B,EAAY,KACrC/W,KAAK9B,MAAMuK,QAAOoQ,EAAStd,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACxD9P,EAAQ4W,OAAOsJ,GAIjB,IAAMM,EAA4B/d,SAASgB,cAAc,QACzD+c,EAAS9c,UAAY,OACrB8c,EAASlO,YAAc,YAAUjV,GACjCmjB,EAAS5d,MAAMud,SAAcG,EAAY,KACrCjZ,KAAK9B,MAAMuK,QAAO0Q,EAAS5d,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACxD9P,EAAQ4W,OAAO4J,GAGf,IAAMhC,EAAOnX,KAAKoX,mBAClB,GAAID,EAAKhmB,OAAS,EAAG,CACnB,IAAMioB,EAA0Bhe,SAASgB,cAAc,QACvDgd,EAAO/c,UAAY,WACnB+c,EAAOnO,YAAckM,EACrBiC,EAAO7d,MAAMud,SAAcI,EAAU,KACjClZ,KAAK9B,MAAMuK,QAAO2Q,EAAO7d,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACtD9P,EAAQ4W,OAAO6J,GAGjB,OAAOzgB,GAOD,YAAA2f,cAAR,SAAsBe,QAAA,IAAAA,MAAA,MACpB,IAAM9pB,EAAI8pB,GAA4B,IAAI7kB,KACpC8kB,EAAkD,IAAjCtZ,KAAK9B,MAAM2X,oBAC5B0D,EAAwC,GAAxBhqB,EAAEiqB,oBAA2B,IAC7CC,EAAalqB,EAAEmF,UAAY4kB,EAAiBC,EAElD,OAAO,IAAI/kB,KAAKilB,IAOX,YAAArC,iBAAP,SAAwBsC,QAAA,IAAAA,MAAmB1Z,KAAK9B,MAAM0X,eAC9C,IAAG,EAAa8D,EAAStF,MAAM,KAA5B,GACT,YADa,IAAG,KAAE,GACN/c,QAAQ,IAAK,MAOnB,YAAAof,eAAR,SACE9jB,EACAC,GAEA,YAHA,IAAAD,MAAgBqN,KAAK9B,MAAMvL,YAC3B,IAAAC,MAAiBoN,KAAK9B,MAAMtL,QAEpBoN,KAAK9B,MAAMsX,WACjB,IAAK,WACH,IAAImE,EAAW,IAEXhnB,EAAQ,GAAKC,EAAS,EACxB+mB,EAAW5nB,KAAKshB,IAAI1gB,EAAOC,GAClBD,EAAQ,EACjBgnB,EAAWhnB,EACFC,EAAS,IAClB+mB,EAAW/mB,GAGb,IAAIgnB,EAAc,EAKlB,MAJ+B,aAA3B5Z,KAAK9B,MAAMwX,cACbkE,EAAchnB,EAAS,GAGlB,CACLD,MAAOgnB,EACP/mB,OAAQ+mB,EAAWC,GAGvB,IAAK,UAcH,OAbIjnB,EAAQ,GAAKC,EAAS,EAExBA,EAASD,EAAQ,EAAIC,EAASD,EAAQ,EAAIC,EACjCD,EAAQ,EACjBC,EAASD,EAAQ,EACRC,EAAS,EAElBD,EAAiB,EAATC,GAERD,EAAQ,IACRC,EAAS,IAGJ,CACLD,MAAK,EACLC,OAAM,GAGV,QACE,MAAM,IAAIgC,MAAM,yBAljBC,EAAAuhB,cAAgB,IAqjBzC,EAtjBA,CAAmCzJ,EAAA,G,0hBC9D5B,SAASmN,EAAgBtnB,GAC9B,OAAO,OACF,YAAqBA,IAAK,CAC7BiL,KAAM,GACNC,MAAO,KACPC,eAAe,EACfG,SAAU,KACVC,WAAY,KAEZ9D,YAAa,YAAWzH,EAAKyH,YAAa,GAC1C0W,YAAa,YAAiBne,EAAKme,YAAa,MAChDoJ,UAAW,YAAiBvnB,EAAKunB,UAAW,MAC5CC,gBAAiBxnB,EAAKwnB,kBAI1B,I,EAAA,yB,+CAyDA,OAzDiC,OACrB,YAAAjZ,iBAAV,WACE,IAAME,EAAsB5F,SAASgB,cAAc,OAcnD,GAbA4E,EAAI3E,UAAY,MAEhB2E,EAAIzF,MAAMye,UAAY,aAElBha,KAAK9B,MAAM6b,gBACb/Y,EAAIzF,MAAM4X,gBAAkB,cAExBnT,KAAK9B,MAAM4b,YACb9Y,EAAIzF,MAAM4X,gBAAkBnT,KAAK9B,MAAM4b,WAKvC9Z,KAAK9B,MAAMlE,YAAc,EAAG,CAC9BgH,EAAIzF,MAAM0e,YAAc,QAExB,IAAMC,EAAiBnoB,KAAKshB,IAAIrT,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,QAAU,EACjEoH,EAAcjI,KAAKshB,IAAIrT,KAAK9B,MAAMlE,YAAakgB,GACrDlZ,EAAIzF,MAAMvB,YAAiBA,EAAW,KAElCgG,KAAK9B,MAAMwS,cACb1P,EAAIzF,MAAMmV,YAAc1Q,KAAK9B,MAAMwS,aAIvC,OAAO1P,GAOC,YAAA0B,iBAAV,SAA2B/J,GAUzB,GATIqH,KAAK9B,MAAM6b,gBACbphB,EAAQ4C,MAAM4X,gBAAkB,cAE5BnT,KAAK9B,MAAM4b,YACbnhB,EAAQ4C,MAAM4X,gBAAkBnT,KAAK9B,MAAM4b,WAK3C9Z,KAAK9B,MAAMlE,YAAc,EAAG,CAC9BrB,EAAQ4C,MAAM0e,YAAc,QAE5B,IAAMC,EAAiBnoB,KAAKshB,IAAIrT,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,QAAU,EACjEoH,EAAcjI,KAAKshB,IAAIrT,KAAK9B,MAAMlE,YAAakgB,GACrDvhB,EAAQ4C,MAAMvB,YAAiBA,EAAW,KAEtCgG,KAAK9B,MAAMwS,cACb/X,EAAQ4C,MAAMmV,YAAc1Q,KAAK9B,MAAMwS,eAI/C,EAzDA,CAAiChE,EAAA,G,0hBCzB1B,SAASyN,EAAkB5nB,GAChC,OAAO,SACF,YAAqBA,IAAK,CAC7BiL,KAAM,IACH,YAAqBjL,IAI5B,I,GAAA,yB,+CAoBA,OApBmC,OACvB,YAAAuO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAIvC,OAHAzD,EAAQ0D,UAAY,QACpB1D,EAAQ6J,UAAYxC,KAAKkC,6BAElBvJ,GAQF,YAAAkI,sBAAP,WACE,IAAMlI,EAAUyC,SAASgB,cAAc,OAGvC,OAFAzD,EAAQ0D,UAAY,4BAEb1D,GAEX,EApBA,CAAmC+T,EAAA,G,6hBCQ7B0N,GAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,SACL,IAAK,QACH,OAAOA,EACT,QACE,MAAO,WA+BN,SAASC,GACd/nB,GAEA,GAA0B,iBAAfA,EAAKrC,OAA4C,IAAtBqC,EAAKrC,MAAMiB,OAC/C,MAAM,IAAI0B,UAAU,iBAGtB,IAAM0nB,EA9BkB,SACxBA,GAEA,OAAQA,GACN,IAAK,OACL,IAAK,MACL,IAAK,MACL,IAAK,MACH,OAAOA,EACT,QACE,MAAO,QAoBUC,CAAkBjoB,EAAKgoB,cAE5C,OAAO,kBACF,YAAqBhoB,IAAK,CAC7BiL,KAAM,EACN6c,UAAWD,GAAe7nB,EAAK8nB,WAC/BnqB,MAAOqC,EAAKrC,QACS,SAAjBqqB,EACA,CAAEA,aAAY,GACd,CAAEA,aAAY,EAAE/P,OAAQ,YAAWjY,EAAKiY,OAAQ,KACjD,YAAmBjY,IACnB,YAAqBA,IAI5B,I,GAAA,yB,+CAwCA,OAxCyC,QAC7B,YAAAuO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAUvC,GATAzD,EAAQ0D,UAAY,gBAGW,IAA7B2D,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,EAAQ4C,MAAMmO,QAAU,OAGG,UAAzB1J,KAAK9B,MAAMmc,UAAuB,CACpC,IAAMI,EAAMrf,SAASgB,cAAc,OACnCqe,EAAI7Q,IAAM5J,KAAK9B,MAAMhO,MACrByI,EAAQ4W,OAAOkL,OACV,CAEL,IAAIxjB,EAAO+I,KAAK9B,MAAMhO,MAClBuN,EAAQuC,KAAKkC,6BACbzE,EAAMtM,OAAS,IACjB8F,EAAO,YAAc,CAAC,CAAEG,MAAO,iBAAkBlH,MAAO+G,IAASwG,IAGnE9E,EAAQ6J,UAAYvL,EAGtB,OAAO0B,GAOK,YAAAkI,sBAAV,WACF,IAAMlI,EAAUyC,SAASgB,cAAc,OAGvC,OAFAzD,EAAQ0D,UAAY,4BAEb1D,GAEX,EAxCA,CAAyC+T,EAAA,G,QC7FrCgO,GAAK3oB,KAAKoiB,GACVwG,GAAM,EAAID,GAEVE,GAAaD,GADH,KAGd,SAASE,KACP7a,KAAK8a,IAAM9a,KAAK+a,IAChB/a,KAAKgb,IAAMhb,KAAKib,IAAM,KACtBjb,KAAKkb,EAAI,GAGX,SAASxZ,KACP,OAAO,IAAImZ,GAGbA,GAAKhqB,UAAY6Q,GAAK7Q,UAAY,CAChCsqB,YAAaN,GACbO,OAAQ,SAAS5oB,EAAGC,GAClBuN,KAAKkb,GAAK,KAAOlb,KAAK8a,IAAM9a,KAAKgb,KAAOxoB,GAAK,KAAOwN,KAAK+a,IAAM/a,KAAKib,KAAOxoB,IAE7E4oB,UAAW,WACQ,OAAbrb,KAAKgb,MACPhb,KAAKgb,IAAMhb,KAAK8a,IAAK9a,KAAKib,IAAMjb,KAAK+a,IACrC/a,KAAKkb,GAAK,MAGdI,OAAQ,SAAS9oB,EAAGC,GAClBuN,KAAKkb,GAAK,KAAOlb,KAAKgb,KAAOxoB,GAAK,KAAOwN,KAAKib,KAAOxoB,IAEvD8oB,iBAAkB,SAASlJ,EAAIC,EAAI9f,EAAGC,GACpCuN,KAAKkb,GAAK,MAAQ7I,EAAM,MAAQC,EAAM,KAAOtS,KAAKgb,KAAOxoB,GAAK,KAAOwN,KAAKib,KAAOxoB,IAEnF+oB,cAAe,SAASnJ,EAAIC,EAAIC,EAAIC,EAAIhgB,EAAGC,GACzCuN,KAAKkb,GAAK,MAAQ7I,EAAM,MAAQC,EAAM,MAAQC,EAAM,MAAQC,EAAM,KAAOxS,KAAKgb,KAAOxoB,GAAK,KAAOwN,KAAKib,KAAOxoB,IAE/GgpB,MAAO,SAASpJ,EAAIC,EAAIC,EAAIC,EAAIziB,GAC9BsiB,GAAMA,EAAIC,GAAMA,EAAIC,GAAMA,EAAIC,GAAMA,EAAIziB,GAAKA,EAC7C,IAAI2rB,EAAK1b,KAAKgb,IACVW,EAAK3b,KAAKib,IACVW,EAAMrJ,EAAKF,EACXwJ,EAAMrJ,EAAKF,EACXwJ,EAAMJ,EAAKrJ,EACX0J,EAAMJ,EAAKrJ,EACX0J,EAAQF,EAAMA,EAAMC,EAAMA,EAG9B,GAAIhsB,EAAI,EAAG,MAAM,IAAI6E,MAAM,oBAAsB7E,GAGjD,GAAiB,OAAbiQ,KAAKgb,IACPhb,KAAKkb,GAAK,KAAOlb,KAAKgb,IAAM3I,GAAM,KAAOrS,KAAKib,IAAM3I,QAIjD,GAAM0J,EApDD,KAyDL,GAAMjqB,KAAKC,IAAI+pB,EAAMH,EAAMC,EAAMC,GAzD5B,MAyDgD/rB,EAKrD,CACH,IAAIksB,EAAM1J,EAAKmJ,EACXQ,EAAM1J,EAAKmJ,EACXQ,EAAQP,EAAMA,EAAMC,EAAMA,EAC1BO,EAAQH,EAAMA,EAAMC,EAAMA,EAC1BG,EAAMtqB,KAAKuqB,KAAKH,GAChBI,EAAMxqB,KAAKuqB,KAAKN,GAChB9sB,EAAIa,EAAIgC,KAAKyqB,KAAK9B,GAAK3oB,KAAK0qB,MAAMN,EAAQH,EAAQI,IAAU,EAAIC,EAAME,KAAS,GAC/EG,EAAMxtB,EAAIqtB,EACVI,EAAMztB,EAAImtB,EAGVtqB,KAAKC,IAAI0qB,EAAM,GA1EX,OA2EN1c,KAAKkb,GAAK,KAAO7I,EAAKqK,EAAMZ,GAAO,KAAOxJ,EAAKoK,EAAMX,IAGvD/b,KAAKkb,GAAK,IAAMnrB,EAAI,IAAMA,EAAI,WAAagsB,EAAME,EAAMH,EAAMI,GAAQ,KAAOlc,KAAKgb,IAAM3I,EAAKsK,EAAMf,GAAO,KAAO5b,KAAKib,IAAM3I,EAAKqK,EAAMd,QApBtI7b,KAAKkb,GAAK,KAAOlb,KAAKgb,IAAM3I,GAAM,KAAOrS,KAAKib,IAAM3I,UAuBxDsK,IAAK,SAASpqB,EAAGC,EAAG1C,EAAG8sB,EAAIC,EAAIC,GAC7BvqB,GAAKA,EAAGC,GAAKA,EAAWsqB,IAAQA,EAChC,IAAIC,GADYjtB,GAAKA,GACRgC,KAAKkrB,IAAIJ,GAClBK,EAAKntB,EAAIgC,KAAKorB,IAAIN,GAClBnB,EAAKlpB,EAAIwqB,EACTrB,EAAKlpB,EAAIyqB,EACTE,EAAK,EAAIL,EACTM,EAAKN,EAAMF,EAAKC,EAAKA,EAAKD,EAG9B,GAAI9sB,EAAI,EAAG,MAAM,IAAI6E,MAAM,oBAAsB7E,GAGhC,OAAbiQ,KAAKgb,IACPhb,KAAKkb,GAAK,IAAMQ,EAAK,IAAMC,GAIpB5pB,KAAKC,IAAIgO,KAAKgb,IAAMU,GAnGnB,MAmGoC3pB,KAAKC,IAAIgO,KAAKib,IAAMU,GAnGxD,QAoGR3b,KAAKkb,GAAK,IAAMQ,EAAK,IAAMC,GAIxB5rB,IAGDstB,EAAK,IAAGA,EAAKA,EAAK1C,GAAMA,IAGxB0C,EAAKzC,GACP5a,KAAKkb,GAAK,IAAMnrB,EAAI,IAAMA,EAAI,QAAUqtB,EAAK,KAAO5qB,EAAIwqB,GAAM,KAAOvqB,EAAIyqB,GAAM,IAAMntB,EAAI,IAAMA,EAAI,QAAUqtB,EAAK,KAAOpd,KAAKgb,IAAMU,GAAM,KAAO1b,KAAKib,IAAMU,GAIrJ0B,EAnHC,OAoHRrd,KAAKkb,GAAK,IAAMnrB,EAAI,IAAMA,EAAI,SAAWstB,GAAM3C,IAAO,IAAM0C,EAAK,KAAOpd,KAAKgb,IAAMxoB,EAAIzC,EAAIgC,KAAKkrB,IAAIH,IAAO,KAAO9c,KAAKib,IAAMxoB,EAAI1C,EAAIgC,KAAKorB,IAAIL,OAGlJQ,KAAM,SAAS9qB,EAAGC,EAAG8qB,EAAGC,GACtBxd,KAAKkb,GAAK,KAAOlb,KAAK8a,IAAM9a,KAAKgb,KAAOxoB,GAAK,KAAOwN,KAAK+a,IAAM/a,KAAKib,KAAOxoB,GAAK,MAAQ8qB,EAAK,MAAQC,EAAK,KAAQD,EAAK,KAEzHE,SAAU,WACR,OAAOzd,KAAKkb,IAID,UCjIA,eACb,OAAO,WACL,OAAO1oB,ICFAR,GAAMD,KAAKC,IACXkiB,GAAQniB,KAAKmiB,MACb+I,GAAMlrB,KAAKkrB,IACXhgB,GAAMlL,KAAKkL,IACXoW,GAAMthB,KAAKshB,IACX8J,GAAMprB,KAAKorB,IACXb,GAAOvqB,KAAKuqB,KAGZ,GAAKvqB,KAAKoiB,GACVuJ,GAAS,GAAK,EACd,GAAM,EAAI,GAEd,SAASjB,GAAKjqB,GACnB,OAAOA,EAAI,EAAI,EAAIA,GAAK,EAAI,GAAKT,KAAK0qB,KAAKjqB,GAGtC,SAASmrB,GAAKnrB,GACnB,OAAOA,GAAK,EAAIkrB,GAASlrB,IAAM,GAAKkrB,GAAS3rB,KAAK4rB,KAAKnrB,GCdzD,SAASorB,GAAeruB,GACtB,OAAOA,EAAEsuB,YAGX,SAASC,GAAevuB,GACtB,OAAOA,EAAEwuB,YAGX,SAASC,GAAczuB,GACrB,OAAOA,EAAE0uB,WAGX,SAASC,GAAY3uB,GACnB,OAAOA,EAAE4uB,SAGX,SAASC,GAAY7uB,GACnB,OAAOA,GAAKA,EAAE8uB,SAGhB,SAASC,GAAU5C,EAAIC,EAAItJ,EAAIC,EAAIC,EAAIC,EAAI+L,EAAIC,GAC7C,IAAIC,EAAMpM,EAAKqJ,EAAIgD,EAAMpM,EAAKqJ,EAC1BgD,EAAMJ,EAAKhM,EAAIqM,EAAMJ,EAAKhM,EAC1BriB,EAAIyuB,EAAMH,EAAME,EAAMD,EAC1B,KAAIvuB,EAAIA,EDpBW,OCsBnB,MAAO,CAACurB,GADRvrB,GAAKwuB,GAAOhD,EAAKnJ,GAAMoM,GAAOlD,EAAKnJ,IAAOpiB,GACzBsuB,EAAK9C,EAAKxrB,EAAIuuB,GAKjC,SAASG,GAAenD,EAAIC,EAAItJ,EAAIC,EAAIwM,EAAIC,EAAI3B,GAC9C,IAAItB,EAAMJ,EAAKrJ,EACX0J,EAAMJ,EAAKrJ,EACX0M,GAAM5B,EAAK2B,GAAMA,GAAMzC,GAAKR,EAAMA,EAAMC,EAAMA,GAC9CkD,EAAKD,EAAKjD,EACVmD,GAAMF,EAAKlD,EACXqD,EAAMzD,EAAKuD,EACXG,EAAMzD,EAAKuD,EACXT,EAAMpM,EAAK4M,EACXP,EAAMpM,EAAK4M,EACXG,GAAOF,EAAMV,GAAO,EACpBa,GAAOF,EAAMV,GAAO,EACpB1B,EAAKyB,EAAMU,EACXjC,EAAKwB,EAAMU,EACXG,EAAKvC,EAAKA,EAAKE,EAAKA,EACpBntB,EAAI+uB,EAAKC,EACTS,EAAIL,EAAMT,EAAMD,EAAMW,EACtB7vB,GAAK2tB,EAAK,GAAK,EAAI,GAAKZ,GAAKrf,GAAI,EAAGlN,EAAIA,EAAIwvB,EAAKC,EAAIA,IACrDC,GAAOD,EAAItC,EAAKF,EAAKztB,GAAKgwB,EAC1BG,IAAQF,EAAIxC,EAAKE,EAAK3tB,GAAKgwB,EAC3BI,GAAOH,EAAItC,EAAKF,EAAKztB,GAAKgwB,EAC1BK,IAAQJ,EAAIxC,EAAKE,EAAK3tB,GAAKgwB,EAC3BM,EAAMJ,EAAMJ,EACZS,EAAMJ,EAAMJ,EACZS,EAAMJ,EAAMN,EACZW,EAAMJ,EAAMN,EAMhB,OAFIO,EAAMA,EAAMC,EAAMA,EAAMC,EAAMA,EAAMC,EAAMA,IAAKP,EAAME,EAAKD,EAAME,GAE7D,CACLK,GAAIR,EACJS,GAAIR,EACJ5D,KAAMmD,EACNlD,KAAMmD,EACNC,IAAKM,GAAOX,EAAK/uB,EAAI,GACrBqvB,IAAKM,GAAOZ,EAAK/uB,EAAI,IAIV,I,6hBCtCf,SAASowB,GACP3iB,GAEA,OAAQA,GACN,IAAK,eACL,IAAK,SACL,IAAK,wBACL,IAAK,4BACH,OAAOA,EACT,QACA,KAAK,EACH,MAAO,eACT,KAAK,EACH,MAAO,SACT,KAAK,GACH,MAAO,wBACT,KAAK,GACH,MAAO,6BAQb,SAAS4iB,GAAiB/F,GACxB,OAAQA,GACN,IAAK,UACL,IAAK,QACH,OAAOA,EACT,QACE,MAAO,WAaN,SAASgG,GACd9tB,GAEA,OAAO,eACF,YAAqBA,IAAK,CAC7BiL,KAAM,EACN8iB,eAAgBH,GAAsB5tB,EAAK+tB,gBAAkB/tB,EAAKiL,MAClE6c,UAAW+F,GAAiB7tB,EAAK8nB,WACjCkG,SAAU,YAAWhuB,EAAKguB,SAAU,MACpCC,SAAU,YAAWjuB,EAAKiuB,SAAU,MACpC/X,MAAO,YAAiBlW,EAAKkW,MAAO,MACpCgY,WAAY,YAAiBluB,EAAKkuB,WAAY,MAC9CvwB,MAAO,YAAaqC,EAAKrC,MAAO,MAChCsb,KAAM,YAAiBjZ,EAAKiZ,KAAM,QAC/B,YAAmBjZ,IACnB,YAAqBA,IAI5B,IAAM,GAAQ,6B,GAEd,yB,+CA6NA,OA7NwC,QAC5B,YAAAuO,iBAAV,WACE,IAUI4f,EAVE5J,EAAS,CACb6J,WAAY,UACZC,SAAU5gB,KAAK9B,MAAMuK,OAAS,UAC9BxR,KAAM+I,KAAK9B,MAAMuiB,YAAc,WAG3BG,EAAW5gB,KAAK6gB,cAEhBloB,EAAUyC,SAASgB,cAAc,OAGf,MAApB4D,KAAK9B,MAAMhO,QAEXwwB,EADExqB,KACYA,KAAK4qB,aAAa,SAASvqB,OAAOyJ,KAAK9B,MAAMhO,OAE7C8P,KAAK9B,MAAMhO,OAK7B,IAAMwf,EAAMtU,SAAS0N,gBAAgB,GAAO,OAE5C,OAAQ9I,KAAK9B,MAAMoiB,gBACjB,IAAK,eAED,IAAMS,EAAiB3lB,SAAS0N,gBAAgB,GAAO,QACvDiY,EAAenlB,aAAa,OAAQkb,EAAO6J,YAC3CI,EAAenlB,aAAa,eAAgB,OAC5CmlB,EAAenlB,aAAa,QAAS,QACrCmlB,EAAenlB,aAAa,SAAU,QACtCmlB,EAAenlB,aAAa,KAAM,KAClCmlB,EAAenlB,aAAa,KAAM,KAClC,IAAMolB,EAAe5lB,SAAS0N,gBAAgB,GAAO,QACrDkY,EAAaplB,aAAa,OAAQkb,EAAO8J,UACzCI,EAAaplB,aAAa,eAAgB,KAC1ColB,EAAaplB,aAAa,QAAYglB,EAAQ,KAC9CI,EAAaplB,aAAa,SAAU,QACpColB,EAAaplB,aAAa,KAAM,KAChColB,EAAaplB,aAAa,KAAM,MAC1B3E,EAAOmE,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,cAAe,UACjC3E,EAAK2E,aAAa,qBAAsB,UACxC3E,EAAK2E,aAAa,YAAa,MAC/B3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aACH,YACA,aAAaoE,KAAK9B,MAAMvL,MAAQ,EAAC,WAEnCsE,EAAK2E,aAAa,OAAQkb,EAAO7f,MAEJ,UAAzB+I,KAAK9B,MAAMmc,WACbpjB,EAAKsE,MAAMud,SAAW,MAEtB7hB,EAAKgU,YAAcjL,KAAK9B,MAAMsN,KACvBkV,EAAW,IAAI1gB,KAAK9B,MAAMsN,KAC7B,GAAGkV,GAEPzpB,EAAKgU,YAAiB2V,EAAQ,IAGhClR,EAAI9T,aAAa,QAAS,QAC1B8T,EAAI9T,aAAa,SAAU,QAC3B8T,EAAIH,OAAOwR,EAAgBC,EAAc/pB,GAE3C,MACF,IAAK,SACL,IAAK,wBACL,IAAK,4BAKD,GAFAyY,EAAI9T,aAAa,UAAW,eAEM,WAA9BoE,KAAK9B,MAAMoiB,eAA6B,EAEpCW,EAAmB7lB,SAAS0N,gBAAgB,GAAO,WACxClN,aAAa,YAAa,oBAC3CqlB,EAAiBrlB,aAAa,OAAQkb,EAAO6J,YAC7CM,EAAiBrlB,aAAa,eAAgB,OAC9CqlB,EAAiBrlB,aAAa,IAAK,OAC7BslB,EAAiB9lB,SAAS0N,gBAAgB,GAAO,WACxClN,aAAa,YAAa,oBACzCslB,EAAetlB,aAAa,OAAQkb,EAAO8J,UAC3CM,EAAetlB,aAAa,eAAgB,KAC5CslB,EAAetlB,aAAa,IAAK,GAAGglB,EAAW,GAE/ClR,EAAIH,OAAO0R,EAAkBC,OACxB,CAEL,IASMD,EAKAC,EAdAC,EAAW,CACftD,YACgC,0BAA9B7d,KAAK9B,MAAMoiB,eAA6C,GAAK,EAC/DvC,YAAa,GACbE,WAAY,EACZE,SAAoB,EAAVpsB,KAAKoiB,IAEXyI,ED7HH,WACb,IAAIiB,EAAcD,GACdG,EAAcD,GACdsD,EAAeC,GAAS,GACxBC,EAAY,KACZrD,EAAaD,GACbG,EAAWD,GACXG,EAAWD,GACXmD,EAAU,KAEd,SAAS3E,IACP,IAAI4E,EACAzxB,EACA0xB,GAAM5D,EAAY6D,MAAM1hB,KAAM2hB,WAC9B7C,GAAMf,EAAY2D,MAAM1hB,KAAM2hB,WAC9B9E,EAAKoB,EAAWyD,MAAM1hB,KAAM2hB,WAAajE,GACzCZ,EAAKqB,EAASuD,MAAM1hB,KAAM2hB,WAAajE,GACvCL,EAAKrrB,GAAI8qB,EAAKD,GACdO,EAAKN,EAAKD,EAQd,GANK0E,IAASA,EAAUC,EAAS,MAG7B1C,EAAK2C,IAAI1xB,EAAI+uB,EAAIA,EAAK2C,EAAIA,EAAK1xB,GAG7B+uB,ED9FW,MCiGZ,GAAIzB,EAAK,GDjGG,MCkGfkE,EAAQnG,OAAO0D,EAAK7B,GAAIJ,GAAKiC,EAAK3B,GAAIN,IACtC0E,EAAQ3E,IAAI,EAAG,EAAGkC,EAAIjC,EAAIC,GAAKM,GAC3BqE,EDpGW,QCqGbF,EAAQnG,OAAOqG,EAAKxE,GAAIH,GAAK2E,EAAKtE,GAAIL,IACtCyE,EAAQ3E,IAAI,EAAG,EAAG6E,EAAI3E,EAAID,EAAIO,QAK7B,CACH,IAWIwE,EACAC,EAZAC,EAAMjF,EACNkF,EAAMjF,EACNkF,EAAMnF,EACNoF,EAAMnF,EACNoF,EAAM7E,EACN8E,EAAM9E,EACN+E,EAAK/D,EAASqD,MAAM1hB,KAAM2hB,WAAa,EACvCU,EAAMD,EDnHK,QCmHad,GAAaA,EAAUI,MAAM1hB,KAAM2hB,WAAarF,GAAKmF,EAAKA,EAAK3C,EAAKA,IAC5FC,EAAK1L,GAAIrhB,GAAI8sB,EAAK2C,GAAM,GAAIL,EAAaM,MAAM1hB,KAAM2hB,YACrDW,EAAMvD,EACNwD,EAAMxD,EAKV,GAAIsD,ED3HW,MC2HG,CAChB,IAAIG,EAAK7E,GAAK0E,EAAKZ,EAAKtE,GAAIiF,IACxBK,EAAK9E,GAAK0E,EAAKvD,EAAK3B,GAAIiF,KACvBF,GAAY,EAALM,GD9HC,OC8HuCR,GAArBQ,GAAOpF,EAAK,GAAK,EAAe6E,GAAOO,IACjEN,EAAM,EAAGF,EAAMC,GAAOpF,EAAKC,GAAM,IACjCqF,GAAY,EAALM,GDhIC,OCgIuCX,GAArBW,GAAOrF,EAAK,GAAK,EAAe2E,GAAOU,IACjEN,EAAM,EAAGL,EAAMC,GAAOlF,EAAKC,GAAM,GAGxC,IAAIhB,EAAMgD,EAAK7B,GAAI6E,GACf/F,EAAM+C,EAAK3B,GAAI2E,GACfrD,EAAMgD,EAAKxE,GAAIgF,GACfvD,EAAM+C,EAAKtE,GAAI8E,GAGnB,GAAIlD,ED1IW,MC0IG,CAChB,IAII2D,EAJAvD,EAAML,EAAK7B,GAAI8E,GACf3C,EAAMN,EAAK3B,GAAI4E,GACf1C,EAAMoC,EAAKxE,GAAI+E,GACf1C,EAAMmC,EAAKtE,GAAI6E,GAInB,GAAI3E,EAAK,KAAOqF,EAAKpE,GAAUxC,EAAKC,EAAKsD,EAAKC,EAAKH,EAAKC,EAAKX,EAAKC,IAAO,CACvE,IAAIiE,EAAK7G,EAAM4G,EAAG,GACdE,EAAK7G,EAAM2G,EAAG,GACdG,EAAK1D,EAAMuD,EAAG,GACdI,EAAK1D,EAAMsD,EAAG,GACdK,EAAK,EAAI5F,GAAIV,IAAMkG,EAAKE,EAAKD,EAAKE,IAAOxG,GAAKqG,EAAKA,EAAKC,EAAKA,GAAMtG,GAAKuG,EAAKA,EAAKC,EAAKA,KAAQ,GAC/FE,EAAK1G,GAAKoG,EAAG,GAAKA,EAAG,GAAKA,EAAG,GAAKA,EAAG,IACzCJ,EAAMjP,GAAI0L,GAAK0C,EAAKuB,IAAOD,EAAK,IAChCR,EAAMlP,GAAI0L,GAAKD,EAAKkE,IAAOD,EAAK,KAK9BZ,ED/JS,MCkKNI,EDlKM,OCmKbX,EAAK/C,GAAeQ,EAAKC,EAAKxD,EAAKC,EAAK+C,EAAIyD,EAAKnF,GACjDyE,EAAKhD,GAAeM,EAAKC,EAAKX,EAAKC,EAAKI,EAAIyD,EAAKnF,GAEjDmE,EAAQnG,OAAOwG,EAAG3B,GAAK2B,EAAG9F,IAAK8F,EAAG1B,GAAK0B,EAAG7F,KAGtCwG,EAAMxD,EAAIwC,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIqC,EAAKrO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,IAI1FmE,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIqC,EAAKrO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM0N,EAAGxC,IAAKwC,EAAGzC,MAAO/B,GAC9EmE,EAAQ3E,IAAI,EAAG,EAAGkC,EAAI5K,GAAM0N,EAAG1B,GAAK0B,EAAGxC,IAAKwC,EAAG3B,GAAK2B,EAAGzC,KAAMjL,GAAM2N,EAAG3B,GAAK2B,EAAGzC,IAAKyC,EAAG5B,GAAK4B,EAAG1C,MAAO/B,GACrGmE,EAAQ3E,IAAIiF,EAAG5B,GAAI4B,EAAG3B,GAAIqC,EAAKrO,GAAM2N,EAAGzC,IAAKyC,EAAG1C,KAAMjL,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,MAK7EmE,EAAQnG,OAAOU,EAAKC,GAAMwF,EAAQ3E,IAAI,EAAG,EAAGkC,EAAIgD,EAAKC,GAAM3E,IArB1CmE,EAAQnG,OAAOU,EAAKC,GAyBpC0F,EDxLS,OCwLUS,EDxLV,MC2LNI,ED3LM,OC4LbV,EAAK/C,GAAeJ,EAAKC,EAAKS,EAAKC,EAAKqC,GAAKa,EAAKlF,GAClDyE,EAAKhD,GAAe/C,EAAKC,EAAKsD,EAAKC,EAAKmC,GAAKa,EAAKlF,GAElDmE,EAAQjG,OAAOsG,EAAG3B,GAAK2B,EAAG9F,IAAK8F,EAAG1B,GAAK0B,EAAG7F,KAGtCuG,EAAMvD,EAAIwC,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIoC,EAAKpO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,IAI1FmE,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIoC,EAAKpO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM0N,EAAGxC,IAAKwC,EAAGzC,MAAO/B,GAC9EmE,EAAQ3E,IAAI,EAAG,EAAG6E,EAAIvN,GAAM0N,EAAG1B,GAAK0B,EAAGxC,IAAKwC,EAAG3B,GAAK2B,EAAGzC,KAAMjL,GAAM2N,EAAG3B,GAAK2B,EAAGzC,IAAKyC,EAAG5B,GAAK4B,EAAG1C,KAAM/B,GACpGmE,EAAQ3E,IAAIiF,EAAG5B,GAAI4B,EAAG3B,GAAIoC,EAAKpO,GAAM2N,EAAGzC,IAAKyC,EAAG1C,KAAMjL,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,KAK7EmE,EAAQ3E,IAAI,EAAG,EAAG6E,EAAIQ,EAAKD,EAAK5E,GArBImE,EAAQjG,OAAOmD,EAAKC,QA1F1C6C,EAAQnG,OAAO,EAAG,GAoHvC,GAFAmG,EAAQlG,YAEJmG,EAAQ,OAAOD,EAAU,KAAMC,EAAS,IAAM,KAyCpD,OAtCA5E,EAAIqG,SAAW,WACb,IAAIlzB,IAAM8tB,EAAY6D,MAAM1hB,KAAM2hB,aAAc5D,EAAY2D,MAAM1hB,KAAM2hB,YAAc,EAClFuB,IAAMjF,EAAWyD,MAAM1hB,KAAM2hB,aAAcxD,EAASuD,MAAM1hB,KAAM2hB,YAAc,EAAI,GAAK,EAC3F,MAAO,CAAC1E,GAAIiG,GAAKnzB,EAAGotB,GAAI+F,GAAKnzB,IAG/B6sB,EAAIiB,YAAc,SAAS3C,GACzB,OAAOyG,UAAUxwB,QAAU0sB,EAA2B,mBAAN3C,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOiB,GAG9FjB,EAAImB,YAAc,SAAS7C,GACzB,OAAOyG,UAAUxwB,QAAU4sB,EAA2B,mBAAN7C,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOmB,GAG9FnB,EAAIwE,aAAe,SAASlG,GAC1B,OAAOyG,UAAUxwB,QAAUiwB,EAA4B,mBAANlG,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOwE,GAG/FxE,EAAI0E,UAAY,SAASpG,GACvB,OAAOyG,UAAUxwB,QAAUmwB,EAAiB,MAALpG,EAAY,KAAoB,mBAANA,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAO0E,GAG/G1E,EAAIqB,WAAa,SAAS/C,GACxB,OAAOyG,UAAUxwB,QAAU8sB,EAA0B,mBAAN/C,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOqB,GAG7FrB,EAAIuB,SAAW,SAASjD,GACtB,OAAOyG,UAAUxwB,QAAUgtB,EAAwB,mBAANjD,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOuB,GAG3FvB,EAAIyB,SAAW,SAASnD,GACtB,OAAOyG,UAAUxwB,QAAUktB,EAAwB,mBAANnD,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOyB,GAG3FzB,EAAI2E,QAAU,SAASrG,GACrB,OAAOyG,UAAUxwB,QAAWowB,EAAe,MAALrG,EAAY,KAAOA,EAAI0B,GAAO2E,GAG/D3E,EC1De,IAENqE,EAAmB7lB,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,YAAa,oBAC3CqlB,EAAiBrlB,aAAa,OAAQkb,EAAO6J,YAC7CM,EAAiBrlB,aAAa,eAAgB,OAC9CqlB,EAAiBrlB,aAAa,IAAK,GAAGghB,EAAIuE,KACpCD,EAAiB9lB,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,YAAa,oBACzCslB,EAAetlB,aAAa,OAAQkb,EAAO8J,UAC3CM,EAAetlB,aAAa,eAAgB,KAC5CslB,EAAetlB,aACb,IACA,GAAGghB,EAAI,SACFuE,GAAQ,CACXhD,SAAUgD,EAAShD,UAAYyC,EAAW,SAI9ClR,EAAIH,OAAO0R,EAAkBC,GAI/B,IAAMjqB,EAQN,IARMA,EAAOmE,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,cAAe,UACjC3E,EAAK2E,aAAa,qBAAsB,UACxC3E,EAAK2E,aAAa,YAAa,MAC/B3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aAAa,OAAQkb,EAAO7f,MAEJ,UAAzB+I,KAAK9B,MAAMmc,WAA6C,MAApBra,KAAK9B,MAAMhO,MAEjD,GAAI8P,KAAK9B,MAAMsN,MAAQxL,KAAK9B,MAAMsN,KAAKra,OAAS,EAAG,CACjD,IAAMjB,EAAQkL,SAAS0N,gBAAgB,GAAO,SAC9C5Y,EAAM0L,aAAa,IAAK,KACxB1L,EAAM0L,aAAa,KAAM,OACzB1L,EAAM+a,YAAc,GAAGyV,EACvBxwB,EAAMqL,MAAMud,SAAW,MACvB,IAAMtN,EAAOpQ,SAAS0N,gBAAgB,GAAO,SAC7C0C,EAAK5P,aAAa,IAAK,KACvB4P,EAAK5P,aAAa,KAAM,OACxB4P,EAAKP,YAAc,GAAGjL,KAAK9B,MAAMsN,KACjCA,EAAKjQ,MAAMud,SAAW,MACtB7hB,EAAKsY,OAAOrf,EAAOsb,GACnBvU,EAAK2E,aAAa,YAAa,yBAE/B3E,EAAKgU,YAAc,GAAGyV,EACtBzpB,EAAKsE,MAAMud,SAAW,MACtB7hB,EAAK2E,aAAa,YAAa,yBAIjC3E,EAAKgU,YAAiB2V,EAAQ,IAC9B3pB,EAAK2E,aAAa,YAAa,oBAGjC8T,EAAIH,OAAOtY,GAcjB,OAR+B,IAA7B+I,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,gBAEXyc,EAAI9T,aAAa,UAAW,OAGlB,OAAR8T,GAAc/W,EAAQ4W,OAAOG,GAE1B/W,GAOC,YAAA+J,iBAAV,SAA2B/J,IACQ,IAA7BqH,KAAKI,KAAKlL,gBACZ8K,KAAKU,cAAcV,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,QAElD+F,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,WAOpC,YAAA9B,cAAV,SAAwB/N,EAAeC,GACH,iBAA9BoN,KAAK9B,MAAMoiB,eACb,YAAM5f,cAAa,UAAC/N,EAAO,IAE3B,YAAM+N,cAAa,UAAC/N,EAAOA,IAQxB,YAAAmN,OAAP,SAAcnN,GACZqN,KAAKU,cAAc/N,EAAOA,GAC1B,IAAIC,EAASoN,KAAK9B,MAAMsiB,UAAY,EACF,iBAA9BxgB,KAAK9B,MAAMoiB,iBACb1tB,EAAS,IAEX,YAAMgQ,SAAQ,aAAC,MACV5C,KAAK9B,OAAK,CACbvL,MAAK,EACLC,OAAM,MAIF,YAAAiuB,YAAR,WACE,IAAMN,EAAWvgB,KAAK9B,MAAMqiB,UAAY,EAClCC,EAAWxgB,KAAK9B,MAAMsiB,UAAY,IAClCtwB,EAA4B,MAApB8P,KAAK9B,MAAMhO,MAAgB,EAAI8P,KAAK9B,MAAMhO,MAExD,OAAIA,GAASqwB,EAAiB,EACrBrwB,GAASswB,EAAiB,IACvBzuB,KAAKoxB,OAAQjzB,EAAQqwB,IAAaC,EAAWD,GAAa,MAE1E,EA7NA,CAAwC7T,EAAA,G,qiBCtFlC0W,GAAsB,SAC1BjQ,GAEA,OAAQA,GACN,IAAK,QACL,IAAK,QACL,IAAK,cACH,OAAOA,EACT,QACE,MAAO,gBAQPkQ,GAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,aACL,IAAK,WACH,OAAOA,EACT,QACE,MAAO,aAaN,SAASC,GAAsBhxB,GACpC,GAAI,YAAcA,EAAK+W,OAAS,YAAc/W,EAAKgX,aACjD,MAAM,IAAI1W,UAAU,yBAGtB,OAAO,YACF,YAAqBN,IAAK,CAC7BiL,KAAM,GACN8L,KAAO,YAAc/W,EAAK+W,MAEtB,YAAa/W,EAAKgX,aADlBhX,EAAK+W,KAET6J,gBAAiBiQ,GAAoB7wB,EAAK4gB,iBAC1CmQ,UAAWD,GAAe9wB,EAAK+wB,WAC/BE,UAAW,YAAcjxB,EAAKixB,WAAa,UAAYjxB,EAAKixB,YACzD,YAAmBjxB,IAI1B,I,GAAA,yB,+CA8BA,OA9BuC,QAC3B,YAAAuO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAavC,OAZAzD,EAAQ0D,UAAY,aACpB1D,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMoL,KAAI,IACtD3Q,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAoBxM,KAAK9B,MAAMvL,MAAK,MAAMqN,KAAK9B,MAAMtL,OAAM,MAG1C,IAA7BoN,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,EAAQ4C,MAAMmO,QAAU,OAGnB/Q,GAGC,YAAA+J,iBAAV,SAA2B/J,GACzBA,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMoL,KAAI,IACtD3Q,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAoBxM,KAAK9B,MAAMvL,MAAK,MAAMqN,KAAK9B,MAAMtL,OAAM,MAG1C,IAA7BoN,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,EAAQ4C,MAAMmO,QAAU,QAG9B,EA9BA,CAAuCgD,EAAA,G,qiBCtChC,SAAS+W,GAAoBlxB,GAClC,GAAsB,OAAlBA,EAAK2Z,UACP,GACiC,iBAAxB3Z,EAAK4Z,gBACqB,IAAjC5Z,EAAK2Z,SAASC,eAEd,MAAM,IAAItZ,UAAU,kCAGtB,GAAI,YAAcN,EAAKmxB,cACrB,MAAM,IAAI7wB,UAAU,kCAIxB,GAAyC,OAArC,YAAWN,EAAKoxB,UAAW,MAC7B,MAAM,IAAI9wB,UAAU,uBAGtB,OAAO,SACF,YAAqBN,IAAK,CAC7BiL,KAAM,GACNmmB,UAAWpxB,EAAKoxB,UAChBzX,SAAU,YAAiB3Z,EAAK2Z,SAAU,MAC1CC,eAAgB,YAAiB5Z,EAAK4Z,eAAgB,MACtDuX,aAAc,YAAiBnxB,EAAKmxB,aAAc,QAItD,I,GAAA,yB,+CA8CA,OA9CqC,QAC5B,YAAA5iB,iBAAP,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAmBvC,OAlBAzD,EAAQ0D,UAAY,UAEc,OAA9B2D,KAAK9B,MAAMiO,gBACbxT,EAAQ4C,MAAMolB,WAAa,OAAO3gB,KAAK9B,MAAMiO,eAAc,cAC3DxT,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SACH,OAA5BzM,KAAK9B,MAAMwlB,eACb/qB,EAAQ0D,UAAY,6BACpB1D,EAAQiD,aAAa,iCAAkC,KACvDjD,EAAQiD,aACN,aACA,YAAaoE,KAAK9B,MAAMwlB,iBAGS,OAA5B1jB,KAAK9B,MAAMwlB,eACpB/qB,EAAQ6J,UAAY,YAAaxC,KAAK9B,MAAMwlB,eAGvC/qB,GAOC,YAAA+J,iBAAV,SAA2B/J,GACS,OAA9BqH,KAAK9B,MAAMiO,gBACbxT,EAAQ4C,MAAMolB,WAAa,OAAO3gB,KAAK9B,MAAMiO,eAAc,cAC3DxT,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SACH,OAA5BzM,KAAK9B,MAAMwlB,eACb/qB,EAAQ0D,UAAY,6BACpB1D,EAAQiD,aAAa,iCAAkC,KACvDjD,EAAQiD,aACN,aACA,YAAaoE,KAAK9B,MAAMwlB,gBAG5B/qB,EAAQ6J,UAAY,IACiB,OAA5BxC,KAAK9B,MAAMwlB,eACpB/qB,EAAQ6J,UAAY,YAAaxC,KAAK9B,MAAMwlB,gBAGlD,EA9CA,CAAqChX,EAAA,G,6hBClC9B,SAASkX,GAAqBrxB,GACnC,OAAO,YACF,YAAqBA,IAAK,CAC7BiL,KAAM,GACNtN,MAAO,YAAWqC,EAAKrC,MAAO,GAC9B4a,OAAQ,YAAcvY,EAAKuY,QAAU,UAAYvY,EAAKuY,OACtD+Y,WAAY,YAActxB,EAAKsxB,YAAc,UAAYtxB,EAAKsxB,WAC9Dve,MAAO,YAAc/S,EAAK+S,OAAS,GAAK/S,EAAK+S,MAC7Cwe,YAAa,YAAcvxB,EAAKuxB,aAAe,GAAKvxB,EAAKuxB,YACzDC,WAAY,YAAcxxB,EAAKwxB,YAAc,GAAKxxB,EAAKwxB,WACvDC,YAAa,YAAczxB,EAAKyxB,aAAe,GAAKzxB,EAAKyxB,YACzDC,aAAc,YAAc1xB,EAAK0xB,cAC7B,UACA1xB,EAAK0xB,eACN,YAAmB1xB,IAI1B,I,MAAA,yB,+CA2TA,OA3TsC,QAC1B,YAAAuO,iBAAV,WACE,IAAIojB,EAAc,GACdC,EAAe,GACfC,EAAe,GACfC,EAAgB,GAEpB,GAA8B,KAA1BrkB,KAAK9B,MAAM6lB,WAAmB,CAChC,IAAMA,EAAaO,KAAKC,MAAMvkB,KAAK9B,MAAM6lB,YAEtB,OAAfA,IAC4B,GAA1BA,EAAWS,aAA8C,GAA1BT,EAAWU,cAC5CP,EAAclkB,KAAK0kB,UACjBX,EAAWS,YACXxkB,KAAK9B,MAAMvL,MAAQ,GAGnBwxB,EAD4B,GAA1BJ,EAAWU,YACEzkB,KAAK0kB,UAAU,IAAK1kB,KAAK9B,MAAMvL,MAAQ,GAEvCqN,KAAK0kB,UAClBX,EAAWU,YACXzkB,KAAK9B,MAAMvL,MAAQ,IAKM,GAA3BoxB,EAAWY,cAAgD,GAA3BZ,EAAWa,eAC7CR,EAAepkB,KAAK0kB,UAClBX,EAAWY,aACX3kB,KAAK9B,MAAMvL,MAAQ,GAGnB0xB,EAD6B,GAA3BN,EAAWa,aACG5kB,KAAK0kB,UAAU,IAAK1kB,KAAK9B,MAAMvL,MAAQ,GAEvCqN,KAAK0kB,UACnBX,EAAWa,aACX5kB,KAAK9B,MAAMvL,MAAQ,KAO7B,IACI2Y,EADAuZ,EAAU,GAIZpwB,OAAOuL,KAAK9B,MAAMhO,SAAW8P,KAAK9B,MAAMhO,OACxC8P,KAAK9B,MAAMhO,MAAQ,GAAM,EAEzBob,EAAStL,KAAK9B,MAAMhO,MAAM40B,QAAQ,IAGhCD,EAD6B,KAA3B7kB,KAAK9B,MAAM8lB,YACH,KAEAhkB,KAAK+kB,UAAU/kB,KAAK9B,MAAMhO,OAEtCob,EAAS,IAAIpV,KAAK4qB,aAAa,KAAM,CACnCkE,yBAA0B,EAC1BC,sBAAuB,IACtB1uB,OAAOyJ,KAAK9B,MAAMhO,QAGvB,IAAIg1B,EAAO5Z,EAAO6Z,MAAM,WACX,OAATD,IACF5Z,EAAS4Z,EAAK,IAGhB,IAAME,EAASplB,KAAKqlB,UAAUrlB,KAAK9B,MAAMhO,OAErCijB,EAAkB/X,SAAS6G,eAC7B,4BAGsB,OAApBkR,IACFA,EAAkB/X,SAAS6G,eACzB,4BAA4BjC,KAAK9B,MAAMD,SAIE,IAAzCkV,EAAgB5X,MAAM4X,kBACxBA,EAAgB5X,MAAM4X,gBAAkB,QAG1C,IAAMmS,EAA4B,GAAnBtlB,KAAK9B,MAAMvL,MAEpBgG,EAAUyC,SAASgB,cAAc,OACvCzD,EAAQ0D,UAAY,YAGW,IAA7B2D,KAAK9B,MAAM1K,gBACmB,IAA9BwM,KAAK9B,MAAMjL,iBAEX0F,EAAQ4C,MAAMmO,QAAU,OAI1B,IAAM6b,EAAoBnqB,SAASgB,cAAc,OACjDmpB,EAAkBlpB,UAAY,qBAG9B,IAAMmpB,EAAYpqB,SAASgB,cAAc,OACzCopB,EAAUnpB,UAAY,aACtBmpB,EAAUjqB,MAAM4X,gBAAkB,GAAGA,EAAgB5X,MAAM4X,gBAG3D,IAAMsS,EAAYrqB,SAASgB,cAAc,OACzCqpB,EAAUppB,UAAY,aACtBopB,EAAUloB,GAAK,aAAayC,KAAK9B,MAAMX,GACvCkoB,EAAUlqB,MAAM4X,gBAAkB,GAAGnT,KAAK9B,MAAM4M,OAGhD,IAAM4a,EAAYtqB,SAASgB,cAAc,OACzCspB,EAAUrpB,UAAY,aAGtB,IAAMspB,EAASvqB,SAASgB,cAAc,OACtCupB,EAAOtpB,UAAY,aAEnB,IAAMupB,EAAS,6BAEf,GAAmB,IAAf1B,EAAmB,CACrB,IAAM2B,EAAazqB,SAAS0N,gBAAgB8c,EAAQ,OACpDC,EAAWC,eAAe,KAAM,QAAS,QACzCD,EAAWC,eAAe,KAAM,SAAU,QAC1CD,EAAWC,eAAe,KAAM,QAAS,+BACzC,IAAMC,EAAc3qB,SAAS0N,gBAAgB8c,EAAQ,QACrDG,EAAYD,eAAe,KAAM,KAAM,cAAc9lB,KAAK9B,MAAMX,IAChEwoB,EAAYD,eACV,KACA,IACA,IAAI9lB,KAAK9B,MAAMvL,MAAQ,EAAC,IAAIqN,KAAK9B,MAAMvL,MAAQ,EAAC,IAAIuxB,EAAW,IAAIlkB,KAChE9B,MAAMvL,MAAQ,EAAC,IAAIqN,KAAK9B,MAAMvL,MAAQ,EAAC,UAAUwxB,EAAY,KAElE4B,EAAYD,eAAe,KAAM,QAAS,eAC1CD,EAAWvpB,YAAYypB,GACvBR,EAAkBjpB,YAAYupB,GAIhC,GAAoB,IAAhBzB,EAAoB,CACtB,IAAM4B,EAAc5qB,SAAS0N,gBAAgB8c,EAAQ,OACrDI,EAAYF,eAAe,KAAM,QAAS,QAC1CE,EAAYF,eAAe,KAAM,SAAU,QAC3CE,EAAYF,eAAe,KAAM,QAAS,+BAC1C,IAAMG,EAAe7qB,SAAS0N,gBAAgB8c,EAAQ,QACtDK,EAAaH,eAAe,KAAM,KAAM,eAAe9lB,KAAK9B,MAAMX,IAClE0oB,EAAaH,eACX,KACA,IACA,IAAI9lB,KAAK9B,MAAMvL,MAAQ,EAAC,IAAIqN,KAAK9B,MAAMvL,MAAQ,EAAC,IAAIyxB,EAAY,IAAIpkB,KACjE9B,MAAMvL,MAAQ,EAAC,IAAIqN,KAAK9B,MAAMvL,MAAQ,EAAC,UAAU0xB,EAAa,KAEnE4B,EAAaH,eAAe,KAAM,OAAQ,WAC1CE,EAAY1pB,YAAY2pB,GACxBV,EAAkBjpB,YAAY0pB,GAIhC,IAAME,EAAK9qB,SAASgB,cAAc,MAClC8pB,EAAGC,UAAY7a,EAASuZ,EACxBqB,EAAG3qB,MAAMud,SAAuB,IAATwM,EAAa,KACpCY,EAAG3qB,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM4M,OAC/Bob,EAAG3qB,MAAM6qB,WAAa,IAEtB,IAAMC,EAAKjrB,SAASgB,cAAc,MACV,IAApB4D,KAAK9B,MAAMoH,MACb+gB,EAAGpb,YAAcjL,KAAKsmB,cAActmB,KAAK9B,MAAMnL,YAE/CszB,EAAGpb,YAAcjL,KAAKsmB,cAActmB,KAAK9B,MAAMoH,OAEjD+gB,EAAG/gB,MAAQtF,KAAK9B,MAAM4lB,YACtBuC,EAAGzqB,aAAa,QAASoE,KAAK9B,MAAM4lB,aAEpCuC,EAAG9qB,MAAMud,SAAuB,IAATwM,EAAa,KACpCe,EAAG9qB,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM2lB,WAC/BwC,EAAG9qB,MAAM6qB,WAAa,IAEtB,IAAIG,EAASnrB,SAASgB,cAAc,UAqBpC,OApBAmqB,EAAO/oB,KAAO,kBACd+oB,EAAOC,OAAS,WACdf,EAAUlqB,MAAMuZ,UAAY,UAAUsQ,EAAM,cAGN,IAA7BplB,KAAK9B,MAAMzK,cACpB8yB,EAAO3c,IAAM,+CAEb2c,EAAO3c,IAAM,yCAGf4b,EAAUlpB,YAAY4pB,GACtBV,EAAUlpB,YAAY+pB,GACtBd,EAAkBjpB,YAAYmpB,GAC9BF,EAAkBjpB,YAAYopB,GAC9BH,EAAkBjpB,YAAYqpB,GAC9BJ,EAAkBjpB,YAAYkpB,GAC9BD,EAAkBjpB,YAAYiqB,GAC9B5tB,EAAQ2D,YAAYipB,GAEb5sB,GAGC,YAAA+J,iBAAV,SAA2B/J,GAA3B,WACEA,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,UAE5C,IAAI4iB,EAASplB,KAAKqlB,UAAUrlB,KAAK9B,MAAMhO,OAEjC21B,EAAazqB,SAAS6G,eAAe,cAAcjC,KAAK9B,MAAMX,IAClD,MAAdsoB,IACFA,EAAWtqB,MAAMkrB,QAAU,QAG7B,IAAMT,EAAc5qB,SAAS6G,eAAe,eAAejC,KAAK9B,MAAMX,IACnD,MAAfyoB,IACFA,EAAYzqB,MAAMkrB,QAAU,QAG9B1uB,YAAW,WACS,MAAd8tB,IACFA,EAAWtqB,MAAMkrB,QAAU,SAGV,MAAfT,IACFA,EAAYzqB,MAAMkrB,QAAU,SAG9B,IAAIhB,EAAYrqB,SAAS6G,eAAe,aAAa,EAAK/D,MAAMX,IAC5DkoB,IACFA,EAAUlqB,MAAMuZ,UAAY,UAAUsQ,EAAM,WAE7C,MAGK,YAAA1kB,cAAV,SAAwB/N,GACtB,YAAM+N,cAAa,UAAC/N,EAAOA,EAAQ,IAO9B,YAAAmN,OAAP,SAAcnN,GACZqN,KAAKU,cAAcV,KAAK9B,MAAMvL,QAGxB,YAAA0yB,UAAR,SAAkBn1B,GAChB,IAAIk1B,EAAS,EACb,GAA+B,KAA3BplB,KAAK9B,MAAM8lB,YACboB,EAASl1B,EAAQ,EAAI,QAChB,CACL,IAAMw2B,EAASpC,KAAKC,MAAMvkB,KAAK9B,MAAM8lB,aACrC,GAAI0C,EAAY,MAAMx2B,EACpBk1B,EAAS,OACJ,GAAIsB,EAAY,MAAMx2B,EAC3Bk1B,EAAS,OACJ,CACL,IAAMuB,EAAQD,EAAY,IAAIA,EAAY,IAE1CtB,GAAU,IAAkB,KADXsB,EAAY,IAAIx2B,GACEy2B,GAAS,IAAM,GAItD,OAAOvB,GAGD,YAAAL,UAAR,SAAkB70B,GAChB,IAAI02B,EAAS,GACPz1B,GAAUjB,EAAQ,IAAIiB,OAW5B,OAVIA,EAAS,GAAKA,GAAU,EAC1By1B,EAAS,KACAz1B,EAAS,GAAKA,GAAU,EACjCy1B,EAAS,KACAz1B,EAAS,GAAKA,GAAU,GACjCy1B,EAAS,KACAz1B,EAAS,IAAMA,GAAU,KAClCy1B,EAAS,MAGJA,GAGD,YAAAlC,UAAR,SAAkBG,EAAiBgC,GACjC,GAA+B,KAA3B7mB,KAAK9B,MAAM8lB,YACba,EAAUA,MACL,CACL,IAAM6B,EAASpC,KAAKC,MAAMvkB,KAAK9B,MAAM8lB,aACrC,GAAI0C,EAAY,MAAM7B,EACpBA,EAAU,OACL,GAAI6B,EAAY,MAAM7B,GAAuB,MAAZA,EACtCA,EAAU,QACL,CACL,IAAM8B,EAAQD,EAAY,IAAIA,EAAY,IAE1C7B,EAAU,IAAkB,KADb6B,EAAY,IAAI7B,GACI8B,GAOvC,OAHA9B,EAAU,IAAgB,IAAVA,EACNgC,EAAQ90B,KAAKkrB,IAAK4H,EAAU9yB,KAAKoiB,GAAM,KAAO0S,EAE7C,KADDA,EAAQ90B,KAAKorB,IAAK0H,EAAU9yB,KAAKoiB,GAAM,KAAO0S,IAIlD,YAAAP,cAAR,SAAsBhhB,GACpB,GAAa,MAATA,GAAiBA,EAAMnU,OAAS,GAAI,CACtC,IAAM21B,EAAaxhB,EAAMnU,OAAS,EAC5B41B,EAAOD,EAAa,EAI1B,OAHqBxhB,EAAMxT,OAAO,EAAGg1B,EAAaC,GAG5B,MAFFzhB,EAAMxT,OAAOg1B,EAAaC,GAI9C,OAAOzhB,GAGb,EA3TA,CAAsCoH,EAAA,G,yNCuDtC,SAASsa,GAAYz0B,GACnB,IAAMiL,EAAO,YAAWjL,EAAKiL,KAAM,MACnC,GAAY,MAARA,EAAc,MAAM,IAAI3K,UAAU,sBAEtC,OAAQ2K,GACN,KAAK,EACH,OAAOyO,EAAwB1Z,GACjC,KAAK,EACH,OAAO,aAAwBA,GACjC,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACH,OAAO+nB,GAAwB/nB,GACjC,KAAK,EACL,KAAK,EACL,KAAK,GACL,KAAK,GACH,OAAO8tB,GAAuB9tB,GAChC,KAAK,EACH,OAAO4nB,EAAkB5nB,GAC3B,KAAK,EACH,OAAOoa,EAAiBpa,GAC1B,KAAK,GACH,OAAOkxB,GAAoBlxB,GAC7B,KAAK,GACH,OAAO4iB,EAAkB5iB,GAC3B,KAAK,GACH,OAAOsnB,EAAgBtnB,GACzB,KAAK,GACH,OAAO2d,EAAiB3d,GAC1B,KAAK,GACH,OAAO,aAA0BA,GACnC,KAAK,GACH,OAAO,aAAuBA,GAChC,KAAK,GACH,OAAOgxB,GAAsBhxB,GAC/B,KAAK,GACH,OAAOojB,EAAkBpjB,GAC3B,KAAK,GACH,OAAOsa,EAAuBta,GAChC,KAAK,GACH,OAAOohB,EAAwBphB,GACjC,KAAK,GACH,OAAOqxB,GAAqBrxB,GAC9B,KAAK,GACH,OAAO,aAAuBA,GAChC,QACE,MAAM,IAAIM,UAAU,sBA4D1B,IAAqB,GAArB,WA8aE,WACEiG,EACAoF,EACA+oB,GAHF,WAxaQ,KAAAC,aAEJ,GAEI,KAAAC,WAAgC,GAEhC,KAAAC,UAEJ,GAGI,KAAAC,UAEJ,GAEI,KAAAzU,MAEJ,GAGa,KAAApU,kBAAoB,IAAImT,EAAA,EAExB,KAAAlT,qBAAuB,IAAIkT,EAAA,EAE3B,KAAAjT,kBAAoB,IAAIiT,EAAA,EAExB,KAAAD,sBAAwB,IAAIC,EAAA,EAE5B,KAAA/S,oBAAsB,IAAI+S,EAAA,EAE1B,KAAA5S,6BAA+B,IAAI4S,EAAA,EAInC,KAAA3S,YAA4B,GAMrC,KAAAsoB,mBAAkD,SAAAhtB,GACxD,EAAKkE,kBAAkBe,KAAKjF,IAQtB,KAAAitB,sBAAqD,SAAAjtB,GAC3D,EAAKmE,qBAAqBc,KAAKjF,IAQzB,KAAAktB,sBAAqD,SAAAltB,GAE3D,IAAMmtB,EAASntB,EAAEkF,KAAKtB,MAAMX,GACV,EAAKmqB,iBAAiBD,GAE9BtjB,SAAQ,SAAAwjB,GACZA,EAAS9pB,WAAa4pB,EAExBE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBiS,cAAe,EAAKyX,gBAAgBttB,EAAE8E,YAAa9E,EAAEkF,QAE9CmoB,EAASE,UAAYJ,IAE9BE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBoS,YAAa,EAAKsX,gBAAgBttB,EAAE8E,YAAa9E,EAAEkF,YAMzD,EAAKsoB,qBAAqBxtB,EAAEkF,KAAKtB,MAAO5D,EAAE8E,aAAa,IASjD,KAAA2oB,8BAA6D,SAAAztB,GACnE,EAAKoE,kBAAkBa,KAAKjF,GAE5B,EAAKwtB,qBAAqBxtB,EAAEkF,KAAKtB,MAAO5D,EAAE8E,aAAa,IAiCjD,KAAA4oB,kCAEI,SAAA1tB,GAEV,EAAK2tB,YAAY3tB,EAAEkF,MAGnB,EAAKkS,sBAAsBnS,KAAKjF,IAS1B,KAAA4tB,wBAAyD,SAAA5tB,GAE/D,IAAMkF,EAAOlF,EAAEkF,KACTtB,EAAQsB,EAAKtB,MACbupB,EAASvpB,EAAMX,GACf6pB,EAAY,EAAKM,iBAAiBD,GAElCljB,EAAW,CACf/R,EAAG0L,EAAM1L,EACTC,EAAGyL,EAAMzL,GAGL2N,EAAO,EAAK8mB,aAAaO,GAAQrnB,KAEvC,EAAK8mB,aAAaO,GAAQrnB,KAAO,SAC5BA,GAAI,CACPpL,YAAY,IAGdoyB,EAAUjjB,SAAQ,SAAAwjB,GACZA,EAAS9pB,WAAa4pB,EAExBE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBiS,cAAe,EAAKyX,gBAAgBrjB,EAAU/E,KAEvCmoB,EAASE,UAAYJ,IAE9BE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBoS,YAAa,EAAKsX,gBAAgBrjB,EAAU/E,UAY5C,KAAA2oB,gCAEI,SAAA7tB,GACV,EAAKsE,oBAAoBW,KAAKjF,IAQxB,KAAA8tB,oBAAoD,SAAA9tB,GAE1D,EAAK6sB,WAAa,EAAKA,WAAWxf,QAAO,SAAApK,GAAM,OAAAA,IAAOjD,EAAEkF,KAAKtB,MAAMX,aAC5D,EAAK2pB,aAAa5sB,EAAEkF,KAAKtB,MAAMX,IACtC,EAAK8qB,eAAe/tB,EAAEkF,KAAKtB,MAAMX,KAO3B,KAAA+qB,8BAEI,SAAAhuB,GACN,EAAKiuB,SAAS5gB,QAAO,SAAAnI,GAAQ,OAAwB,GAAxBA,EAAKY,KAAKjL,cAAoBhE,OAAS,EACtEmJ,EAAE6I,UAAW,EAEb7I,EAAE6I,UAAW,EAEf,EAAKpE,6BAA6BQ,KAAKjF,IAIjC,KAAAkuB,qBAAgD,WACtD,EAAKC,iBAmNLzoB,KAAK0oB,aAAe5vB,EACpBkH,KAAK2oB,OAxdF,SACLp2B,GAIE,IAAAgL,EAOEhL,EAAI,GANN/C,EAME+C,EAAI,KALN6iB,EAKE7iB,EAAI,QAJNq2B,EAIEr2B,EAAI,cAHN4gB,EAGE5gB,EAAI,gBAFNs2B,EAEEt2B,EAAI,WADNu2B,EACEv2B,EAAI,kBAER,GAAU,MAANgL,GAAcnM,MAAMC,SAASkM,IAC/B,MAAM,IAAI1K,UAAU,eAEtB,GAAoB,iBAATrD,GAAqC,IAAhBA,EAAK2B,OACnC,MAAM,IAAI0B,UAAU,iBAEtB,GAAe,MAAXuiB,GAAmBhkB,MAAMC,SAAS+jB,IACpC,MAAM,IAAIviB,UAAU,qBAGtB,OAAO,IACL0K,GAAIlM,SAASkM,GACb/N,KAAI,EACJ4lB,QAAS/jB,SAAS+jB,GAClBwT,cAAe,YAAiBA,EAAe,MAC/CzV,gBAAiB,YAAiBA,EAAiB,MACnD0V,WAAY,YAAaA,GACzBC,kBAAmB,YAAWA,EAAmB,IAC9C,YAAiBv2B,IAwbNw2B,CAA0B7qB,GAGxC8B,KAAK+C,UAGLkkB,EAAQA,EAAM+B,MAAK,SAAS9F,EAAG+F,GAC7B,OAAY,MAAR/F,EAAE3lB,IAAsB,MAAR0rB,EAAE1rB,GAAmB,EAChC2lB,EAAE3lB,GAAK0rB,EAAE1rB,GAAW,GAChB,MAIT4G,SAAQ,SAAA3E,GAAQ,SAAK0pB,WAAW1pB,EAAM,MAG5CQ,KAAKmpB,iBAGLnpB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GAChBA,aAAgB,GAClB,EAAKyoB,YAAYzoB,MAIrBQ,KAAK0oB,aAAa1sB,iBAAiB,QAASgE,KAAKwoB,sBAisBrD,OAliCU,YAAAY,kBAAR,SAA0B52B,EAAWC,EAAWyL,GAC9C,OACgB,IAAdA,EAAMV,MACQ,IAAdU,EAAMV,OAMNhL,EAAI0L,EAAM1L,GACVA,EAAI0L,EAAM1L,EAAI0L,EAAMvL,OACpBF,EAAIyL,EAAMzL,GACVA,EAAIyL,EAAMzL,EAAIyL,EAAMtL,SAgHd,YAAAq1B,YAAV,SAAsB/4B,GACpB,IAAIujB,EAAevjB,EAAEgP,MAAMX,GACvB8rB,EAAc,EACdC,EAAY,EAEhB,IACE,IAAK,IAAIr6B,KAAK+Q,KAAKknB,aAEflnB,KAAKopB,kBACHl6B,EAAEgP,MAAMiS,cAAc3d,EACtBtD,EAAEgP,MAAMiS,cAAc1d,EACtBuN,KAAKknB,aAAaj4B,GAAGiP,SAIvBmrB,EAAch4B,SAASpC,IAIvB+Q,KAAKopB,kBACHl6B,EAAEgP,MAAMoS,YAAY9d,EACpBtD,EAAEgP,MAAMoS,YAAY7d,EACpBuN,KAAKknB,aAAaj4B,GAAGiP,SAIvBorB,EAAYj4B,SAASpC,IAyEzB,IAAK,IAAIA,KArEa,MAAlB+Q,KAAKqnB,YACPrnB,KAAKqnB,UAAY,IAGD,MAAdrnB,KAAK4S,QACP5S,KAAK4S,MAAQ,IAGXyW,GAAe5W,IACjB4W,EAAc,GAGZC,GAAa7W,IACf6W,EAAY,GAIU,MAApBtpB,KAAK4S,MAAMH,KACbzS,KAAK4S,MAAMH,GAAQ,CACjBe,MAAO6V,EACP5V,IAAK6V,IAKLD,EAAc,GAEmB,MAA/BrpB,KAAKqnB,UAAUgC,KACjBrpB,KAAKqnB,UAAUgC,GAAe,IAIhCrpB,KAAKqnB,UAAUgC,GAAa5W,GAAQ,CAClCe,MAAO6V,EACP5V,IAAK6V,IAMHtpB,KAAK4S,MAAMH,GAAa,MAAI,IAC9BzS,KAAKqnB,UAAUrnB,KAAK4S,MAAMH,GAAa,OAAGA,GAAa,MAAI,EAC3DzS,KAAK4S,MAAMH,GAAa,MAAI,GAI5B6W,EAAY,GACmB,MAA7BtpB,KAAKqnB,UAAUiC,KACjBtpB,KAAKqnB,UAAUiC,GAAa,IAG9BtpB,KAAKqnB,UAAUiC,GAAW7W,GAAQ,CAChCe,MAAO6V,EACP5V,IAAK6V,IAIHtpB,KAAK4S,MAAMH,GAAW,IAAI,IAC5BzS,KAAKqnB,UAAUrnB,KAAK4S,MAAMH,GAAW,KAAGA,GAAW,IAAI,EACvDzS,KAAK4S,MAAMH,GAAW,IAAI,GAI9BzS,KAAK4S,MAAMH,GAAQ,CACjBe,MAAO6V,EACP5V,IAAK6V,GAIOtpB,KAAKqnB,UACbrnB,KAAKqnB,UAAUp4B,GAAGwjB,IAEe,GAAjCzS,KAAKqnB,UAAUp4B,GAAGwjB,GAAMe,OACO,GAA/BxT,KAAKqnB,UAAUp4B,GAAGwjB,GAAMgB,aAGjBzT,KAAKqnB,UAAUp4B,GAAGwjB,GAEqB,IAA1C9iB,OAAO45B,KAAKvpB,KAAKqnB,UAAUp4B,IAAIkC,eAC1B6O,KAAKqnB,UAAUp4B,IAK9B,MAAO0F,GACPsgB,QAAQtgB,MAAMA,KAYR,YAAAmzB,qBAAV,SAA+BtoB,EAAiBgqB,EAAcC,GAA9D,WACiC,MAA3BzpB,KAAKqnB,UAAU7nB,EAAKjC,MAIxB5N,OAAO45B,KAAKvpB,KAAKqnB,UAAU7nB,EAAKjC,KAAK4G,SAAQ,SAAAlV,GAC3C,IAAIy6B,EAASr4B,SAASpC,GAEtB,IAAe,IADD,EAAKk4B,WAAWthB,QAAQ6jB,GACtC,CAGA,IAAIjX,EAAO,EAAKyU,aAAawC,GAC7B,GAAIjX,EAAKvU,MAAO,CACd,IAAIkS,EAASqC,EAAKvU,MAAMiS,cAAc3d,EAClC6d,EAASoC,EAAKvU,MAAMiS,cAAc1d,EAClC8d,EAAOkC,EAAKvU,MAAMoS,YAAY9d,EAC9Bge,EAAOiC,EAAKvU,MAAMoS,YAAY7d,EAqBlC,GAnBI+M,EAAKjC,IAAM,EAAK8pB,UAAU7nB,EAAKjC,IAAImsB,GAAe,QACpDtZ,EAASoZ,EAAGh3B,EAAIgN,EAAK7M,MAAQ,EAC7B0d,EAASmZ,EAAG/2B,EAAI+M,EAAK5M,OAAS,GAG5B4M,EAAKjC,IAAM,EAAK8pB,UAAU7nB,EAAKjC,IAAImsB,GAAa,MAClDnZ,EAAOiZ,EAAGh3B,EAAIgN,EAAK7M,MAAQ,EAC3B6d,EAAOgZ,EAAG/2B,EAAI+M,EAAK5M,OAAS,GAI9B,EAAK+2B,cAAc,SACdlX,EAAKvU,OAAK,CACbkS,OAAQA,EACRC,OAAQA,EACRE,KAAMA,EACNC,KAAMA,KAGJiZ,EAC8B,YAC9B,KACA,SAACG,GACC,EAAKlY,sBAAsBnS,KAAK,CAC9BC,KAAMoqB,EAAQnX,KACdtC,cAAe,CACb3d,EAAGo3B,EAAQxZ,OACX3d,EAAGm3B,EAAQvZ,QAEbC,YAAa,CACX9d,EAAGo3B,EAAQrZ,KACX9d,EAAGm3B,EAAQpZ,UAOnBqZ,CAA0B,CACxBpX,KAAMA,EACNrC,OAAQA,EACRC,OAAQA,EACRE,KAAMA,EACNC,KAAMA,SAOdxQ,KAAKmpB,eAAe3pB,EAAKjC,GAAIisB,EAAGh3B,EAAIgN,EAAK7M,MAAQ,EAAG62B,EAAG/2B,EAAI+M,EAAK5M,OAAS,KAyC3E,sBAAW,uBAAQ,C,IAAnB,sBAEE,OAAOoN,KAAKmnB,WACT2C,KAAI,SAAAvsB,GAAM,SAAK2pB,aAAa3pB,MAC5BoK,QAAO,SAAAuT,GAAK,OAAK,MAALA,M,gCAOV,YAAAgO,WAAP,SAAkB1pB,EAAiB+hB,QAAA,IAAAA,MAAA,MACjC,IACE,IAAMwI,EAroBZ,SAA0Bx3B,GACxB,IAAMiL,EAAO,YAAWjL,EAAKiL,KAAM,MACnC,GAAY,MAARA,EAAc,MAAM,IAAI3K,UAAU,sBAEtC,IAAMuN,EAAO,YAAgB7N,GAE7B,OAAQiL,GACN,KAAK,EACH,OAAO,IAAI,EAAYyO,EAAwB1Z,GAAO6N,GACxD,KAAK,EACH,OAAO,IAAI4pB,GAAA,EAAY,aAAwBz3B,GAAO6N,GACxD,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACH,OAAO,IAAI,GAAYka,GAAwB/nB,GAAO6N,GACxD,KAAK,EACL,KAAK,EACL,KAAK,GACL,KAAK,GACH,OAAO,IAAI,GAAWigB,GAAuB9tB,GAAO6N,GACtD,KAAK,EACH,OAAO,IAAI,GAAM+Z,EAAkB5nB,GAAO6N,GAC5C,KAAK,EACH,OAAO,IAAI,EAAKuM,EAAiBpa,GAAO6N,GAC1C,KAAK,GACH,OAAO,IAAI,GAAQqjB,GAAoBlxB,GAAO6N,GAChD,KAAK,GACH,OAAO,IAAI,EAAM+U,EAAkB5iB,GAAO6N,GAC5C,KAAK,GACH,OAAO,IAAI,EAAIyZ,EAAgBtnB,GAAO6N,GACxC,KAAK,GACH,OAAO,IAAI,EAAK8P,EAAiB3d,GAAO6N,GAC1C,KAAK,GACH,OAAO,IAAI6pB,GAAA,EAAc,aAA0B13B,GAAO6N,GAC5D,KAAK,GACH,OAAO,IAAI8pB,GAAA,EAAW,aAAuB33B,GAAO6N,GACtD,KAAK,GACH,OAAO,IAAI,GAAUmjB,GAAsBhxB,GAAO6N,GACpD,KAAK,GACH,OAAO,IAAI,EAAMuV,EAAkBpjB,GAAO6N,GAC5C,KAAK,GACH,OAAO,IAAI,EAAWyM,EAAuBta,GAAO6N,GACtD,KAAK,GACH,OAAO,IAAI,EAAYuT,EAAwBphB,GAAO6N,GACxD,KAAK,GACH,OAAO,IAAI,GAASwjB,GAAqBrxB,GAAO6N,GAClD,KAAK,GACH,OAAO,IAAI+pB,GAAA,EAAW,aAAuB53B,GAAO6N,GACtD,QACE,MAAM,IAAIvN,UAAU,mBAmlBCu3B,CAAiB5qB,GAyBtC,OAvBA+hB,EAAQ2F,aAAa6C,EAAa7rB,MAAMX,IAAMwsB,EAC9CxI,EAAQ4F,WAAWriB,KAAKilB,EAAa7rB,MAAMX,IAE3CwsB,EAAa7kB,SAASqc,EAAQ6G,qBAC9B2B,EAAa5kB,mBAAmBoc,EAAQ+G,+BACxCyB,EAAaplB,QAAQ4c,EAAQ+F,oBAC7ByC,EAAahlB,WAAWwc,EAAQgG,uBAG5BwC,aAAwB,GAC1BA,EAAarW,uBACX6N,EAAQyG,mCAEVhoB,KAAKioB,YAAY8B,KAEjBA,EAAanxB,QAAQ2oB,EAAQiG,uBAC7BuC,EAAa/kB,mBAAmBuc,EAAQwG,+BACxCgC,EAAa7tB,UAAUqlB,EAAQ2G,yBAC/B6B,EAAa9kB,iBAAiBsc,EAAQ4G,kCAIxC5G,EAAQmH,aAAanZ,OAAOwa,EAAa1rB,YAClC0rB,EACP,MAAOp1B,GACPsgB,QAAQtgB,MAAM,gCAAiCA,EAAM01B,WASlD,YAAAC,eAAP,SAAsBrD,GAAtB,WAEQsD,EAAUtD,EACb6C,KAAI,SAAAtqB,GAAQ,OAAAA,EAAKjC,IAAM,QACvBoK,QAAO,SAAApK,GAAM,OAAM,MAANA,KAEGyC,KAAKmnB,WAAWxf,QAAO,SAAApK,GAAM,OAAAgtB,EAAQ1kB,QAAQtI,GAAM,KAE3D4G,SAAQ,SAAA5G,GACY,MAAzB,EAAK2pB,aAAa3pB,KACpB,EAAK2pB,aAAa3pB,GAAIT,gBACf,EAAKoqB,aAAa3pB,OAI7ByC,KAAKmnB,WAAaoD,EAGlBtD,EAAM9iB,SAAQ,SAAA3E,GACZ,GAAIA,EAAKjC,GACP,GAAkC,MAA9B,EAAK2pB,aAAa1nB,EAAKjC,IAEzB,EAAK2rB,WAAW1pB,QAGhB,IACE,EAAK0nB,aAAa1nB,EAAKjC,IAAIW,MAAQ8oB,GAAYxnB,GAC/C,MAAO7K,GACPsgB,QAAQtgB,MAAM,6BAA8BA,EAAM01B,aAO1DrqB,KAAKmpB,kBAOA,YAAAQ,cAAP,SAAqBnqB,GAEnB,IACEQ,KAAKknB,aAAa1nB,EAAKjC,IAAIW,MAAQ,MAC9B8oB,GAAYxnB,IAEjB,MAAO7K,GACPsgB,QAAQtgB,MAAM,0BAA2BA,EAAM01B,SAIjDrqB,KAAKmpB,kBAOP,sBAAW,oBAAK,C,IAAhB,WACE,OAAO,MAAKnpB,KAAK2oB,S,IASnB,SAAiBhmB,GACf,IAAME,EAAY7C,KAAK9B,MAEvB8B,KAAK2oB,OAAShmB,EAKd3C,KAAK+C,OAAOF,I,gCAOP,YAAAE,OAAP,SAAcF,QAAA,IAAAA,MAAA,MACRA,GACEA,EAAU+lB,gBAAkB5oB,KAAK9B,MAAM0qB,gBACzC5oB,KAAK0oB,aAAantB,MAAM+Q,gBACO,OAA7BtM,KAAK9B,MAAM0qB,cACP,OAAO5oB,KAAK9B,MAAM0qB,cAAa,IAC/B,IAE0B,MAA9B5oB,KAAK9B,MAAMiV,iBACTtQ,EAAUsQ,kBAAoBnT,KAAK9B,MAAMiV,kBAC3CnT,KAAK0oB,aAAantB,MAAM4X,gBAAkBnT,KAAK9B,MAAMiV,iBAErDnT,KAAKH,YAAYgD,EAAW7C,KAAK9B,QACnC8B,KAAKU,cAAcV,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,UAG9CoN,KAAK9B,MAAM0qB,gBACb5oB,KAAK0oB,aAAantB,MAAM+Q,gBACO,OAA7BtM,KAAK9B,MAAM0qB,cACP,OAAO5oB,KAAK9B,MAAM0qB,cAAa,IAC/B,IAEJ5oB,KAAK9B,MAAMiV,kBACbnT,KAAK0oB,aAAantB,MAAM4X,gBAAkBnT,KAAK9B,MAAMiV,iBACvDnT,KAAKU,cAAcV,KAAK9B,MAAMvL,MAAOqN,KAAK9B,MAAMtL,UAW7C,YAAAiN,YAAP,SAAmBF,EAAgBC,GACjC,OACED,EAAShN,QAAUiN,EAAQjN,OAASgN,EAAS/M,SAAWgN,EAAQhN,QAS7D,YAAA8N,cAAP,SAAqB/N,EAAeC,GAClCoN,KAAK0oB,aAAantB,MAAM5I,MAAWA,EAAK,KACxCqN,KAAK0oB,aAAantB,MAAM3I,OAAYA,EAAM,MAQrC,YAAAkN,OAAP,SAAcnN,EAAeC,GAC3BoN,KAAK9B,MAAQ,SACR8B,KAAK9B,OAAK,CACbvL,MAAK,EACLC,OAAM,KAOH,YAAAkK,OAAP,WACEkD,KAAKhB,YAAYmF,SAAQ,SAAA5U,GAAK,OAAAA,EAAE8U,aAChCrE,KAAKuoB,SAASpkB,SAAQ,SAAA7J,GAAK,OAAAA,EAAEwC,YAC7BkD,KAAKknB,aAAe,GACpBlnB,KAAKmnB,WAAa,GAElBnnB,KAAKqoB,iBAELroB,KAAK0oB,aAAartB,oBAAoB,QAAS2E,KAAKwoB,sBAEpDxoB,KAAK0oB,aAAalmB,UAAY,IASzB,YAAA2mB,eAAP,SAAsB1B,EAAiBj1B,EAAYC,GAAnD,WAEEuN,KAAKqoB,iBAELroB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpB,GAA4B,OAAxBA,EAAKtB,MAAML,SAAmB,CAChC,IAAM,EAAS,EAAKqpB,aAAa1nB,EAAKtB,MAAML,UACtC2sB,EAAQ,EAAKtD,aAAa1nB,EAAKtB,MAAMX,IAEvC,GAAUitB,IACE1oB,MAAV2lB,EACEjoB,EAAKtB,MAAML,UAAY4pB,EAEzB,EAAKgD,gBAAgB,EAAQD,EAAOh4B,EAAGC,GAC9B+M,EAAKtB,MAAMX,IAAMkqB,EAE1B,EAAKgD,gBAAgB,EAAQD,OAAO1oB,OAAWA,EAAWtP,EAAGC,GAE7D,EAAKg4B,gBAAgB,EAAQD,GAI/B,EAAKC,gBAAgB,EAAQD,SAW/B,YAAAnC,eAAR,SAAuBZ,GACrB,GAAc,MAAVA,EACF,IAAK,IAAIj3B,KAAOwP,KAAKonB,UAAW,CAC9B,IAAMsD,EAAMl6B,EAAI4jB,MAAM,KAChBvW,EAAWpJ,OAAOpD,SAASq5B,EAAI,IAC/B7C,EAAUpzB,OAAOpD,SAASq5B,EAAI,IAEhCjD,IAAW5pB,GAAY4pB,IAAWI,IACpC7nB,KAAKonB,UAAU52B,GAAKsM,gBACbkD,KAAKonB,UAAU52B,SAI1B,IAAK,IAAIA,KAAOwP,KAAKonB,UACnBpnB,KAAKonB,UAAU52B,GAAKsM,gBACbkD,KAAKonB,UAAU52B,IAWpB,YAAAm6B,gBAAR,SAAwB9sB,EAAkBgqB,GACxC,IAAM/gB,EAAgBjJ,EAAQ,IAAIgqB,EAClC,OAAO7nB,KAAKonB,UAAUtgB,IAAe,MAI/B,YAAA4gB,iBAAR,SACED,GAMA,IAAMmD,EAAgB,GAEtB,IAAK,IAAIp6B,KAAOwP,KAAKonB,UAAW,CAC9B,IAAMsD,EAAMl6B,EAAI4jB,MAAM,KAChBvW,EAAWpJ,OAAOpD,SAASq5B,EAAI,IAC/B7C,EAAUpzB,OAAOpD,SAASq5B,EAAI,IAEhCjD,IAAW5pB,GAAY4pB,IAAWI,GACpC+C,EAAc9lB,KAAK,CACjBjH,SAAQ,EACRgqB,QAAO,EACPpV,KAAMzS,KAAKonB,UAAU52B,KAK3B,OAAOo6B,GASD,YAAAhD,gBAAR,SACErjB,EACA5L,GAEA,IAAInG,EAAI+R,EAAS/R,EAAImG,EAAQ0F,WAAWwsB,YAAc,EAClDp4B,EAAI8R,EAAS9R,EAAIkG,EAAQ0F,WAAWysB,aAAe,EACvD,QACiC,IAAxBnyB,EAAQuF,MAAMT,OACG,KAAxB9E,EAAQuF,MAAMT,OACU,OAAxB9E,EAAQuF,MAAMT,MAEd,OAAQ9E,EAAQuF,MAAMb,eACpB,IAAK,KACH5K,EACE8R,EAAS9R,GACRkG,EAAQ0F,WAAWysB,aAClBnyB,EAAQ2F,gBAAgBwsB,cACxB,EACJ,MACF,IAAK,OACHr4B,EACE8R,EAAS9R,GACRkG,EAAQ0F,WAAWysB,aAClBnyB,EAAQ2F,gBAAgBwsB,cACxB,EACJ,MACF,IAAK,QACHt4B,EACE+R,EAAS/R,GACRmG,EAAQ0F,WAAWwsB,YAClBlyB,EAAQ2F,gBAAgBusB,aACxB,EACJ,MACF,IAAK,OACHr4B,EACE+R,EAAS/R,GACRmG,EAAQ0F,WAAWwsB,YAClBlyB,EAAQ2F,gBAAgBusB,aACxB,EAIV,MAAO,CAAEr4B,EAAC,EAAEC,EAAC,IASP,YAAAg4B,gBAAR,SACEvyB,EACAsyB,EACAO,EACAC,EACAC,EACAC,GAEA,IAAMpkB,EAAgB5O,EAAOgG,MAAMX,GAAE,IAAIitB,EAAMtsB,MAAMX,GACnB,MAA9ByC,KAAKonB,UAAUtgB,IACjB9G,KAAKonB,UAAUtgB,GAAYhK,SAIzB,MAA2BkD,KAAK4nB,gBAAgB1vB,EAAOgG,MAAOhG,GAAzDkY,EAAM,IAAKC,EAAM,IACtB,EAAuBrQ,KAAK4nB,gBAAgB4C,EAAMtsB,MAAOssB,GAApDja,EAAI,IAAKC,EAAI,IAGP,MAAXua,IACF3a,EAAS2a,GAGI,MAAXC,IACF3a,EAAS2a,GAGG,MAAVC,IACF1a,EAAO0a,GAGK,MAAVC,IACF1a,EAAO0a,GAIT,IAAMzY,EAAO,IAAI,EACfvC,EAAiB,CACf3S,GAAI,EACJC,KAAM,GACN4S,OAAM,EACNC,OAAM,EACNE,KAAI,EACJC,KAAI,EACJ7d,MAAO,EACPC,OAAQ,EACR6d,UAAWzQ,KAAK9B,MAAM4qB,kBACtBrgB,MAAO,YAAiB+hB,EAAMtsB,MAAMF,YAAa,UAEnD,YAAgB,CACdzJ,WAAY,IAAIC,QAUpB,OANAwL,KAAKonB,UAAUtgB,GAAc2L,EAG7BA,EAAKpU,WAAW9C,MAAM4vB,OAAS,IAC/BnrB,KAAK0oB,aAAanZ,OAAOkD,EAAKpU,YAEvBoU,GAOF,YAAA2Y,YAAP,SAAmBxmB,GAMjB,IAAMR,EAAapE,KAAKxB,kBAAkBqG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAinB,eAAP,SAAsBzmB,GAMpB,IAAMR,EAAapE,KAAKvB,qBAAqBoG,GAAGD,GAGhD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAknB,YAAP,SAAmB1mB,GAMjB,IAAMR,EAAapE,KAAKtB,kBAAkBmG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAmnB,YAAP,SAAmB3mB,GAMjB,IAAMR,EAAapE,KAAK0R,sBAAsB7M,GAAGD,GAGjD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAonB,cAAP,SAAqB5mB,GAMnB,IAAMR,EAAapE,KAAKpB,oBAAoBiG,GAAGD,GAG/C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAqnB,uBAAP,SACE7mB,GAOA,IAAMR,EAAapE,KAAKjB,6BAA6B8F,GAAGD,GAGxD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAMF,YAAAsnB,eAAP,WACE1rB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpBA,EAAKY,KAAO,SAAKZ,EAAKY,MAAI,CAAEvL,UAAU,OAExCmL,KAAK0oB,aAAaxnB,UAAUC,IAAI,eAM3B,YAAAwqB,gBAAP,WACE3rB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpBA,EAAKY,KAAO,SAAKZ,EAAKY,MAAI,CAAEvL,UAAU,OAExCmL,KAAK0oB,aAAaxnB,UAAUpE,OAAO,eAQ9B,YAAAuE,WAAP,SAAkBomB,EAAgBmE,GAAlC,gBAAkC,IAAAA,OAAA,GAC5BA,EACF5rB,KAAKmnB,WAAWhjB,SAAQ,SAAA0nB,GACtB,IAAMzrB,EAAO,EAAK8mB,aAAa2E,GAAezrB,KAE1CyrB,IAAkBpE,GAAUrnB,EAAKjL,WACnC,EAAK+xB,aAAa2E,GAAezqB,eACxByqB,IAAkBpE,GAAWrnB,EAAKjL,YAC3C,EAAK+xB,aAAa2E,GAAexqB,gBAG5BrB,KAAKknB,aAAaO,IAC3BznB,KAAKknB,aAAaO,GAAQpmB,cAQvB,YAAAD,aAAP,SAAoBqmB,GACdznB,KAAKknB,aAAaO,KACPznB,KAAKknB,aAAaO,GAAQrnB,KAE9BjL,YACP6K,KAAKknB,aAAaO,GAAQrmB,iBAQzB,YAAAqnB,cAAP,sBACEzoB,KAAKmnB,WAAWhjB,SAAQ,SAAAsjB,GAClB,EAAKP,aAAaO,IACpB,EAAKP,aAAaO,GAAQrmB,mBAyClB,EAAA0qB,oBAAd,SAAkCtsB,GAChC,IAAIvI,EACJ,OAAQuI,EAAKtB,MAAMV,MACjB,KAAK,EACHvG,EAAU,YAAE,gBAAe,MAAOuI,EAAqBtB,MAAMgO,SAC7D,MACF,KAAK,EACHjV,EAAO,YAAE,gBACT,MACF,KAAK,GACHA,EAAO,YAAE,SACT,MACF,KAAK,GACHA,EAAO,YAAE,cACT,MACF,KAAK,GACHA,EAAO,YAAE,uBACT,MACF,KAAK,EACHA,EAAO,YAAE,kBACT,MACF,KAAK,GACHA,EAAO,YAAE,yBACT,MACF,KAAK,GACHA,EAAO,YAAE,oCACT,MACF,KAAK,EACHA,EAAO,YAAE,gBACT,MACF,KAAK,EACHA,EAAO,YAAE,SACT,MACF,KAAK,GACHA,EAAO,YAAE,SACT,MACF,KAAK,GACHA,EAAO,YAAE,eACT,MACF,KAAK,EACHA,EAAU,YAAE,QAAO,MAAOuI,EAActB,MAAMgO,SAC9C,MACF,KAAK,GACHjV,EAAO,YAAE,YACT,MACF,KAAK,GACHA,EAAO,YAAE,cACT,MACF,QACEA,EAAO,YAAE,QAIb,IAAM80B,EAA4BvsB,EAAKtB,MAavC,OAX0C,MAAxC6tB,EAA0B14B,YACc,MAAxC04B,EAA0Bh5B,WAE1BkE,GAAQ,KAAK,YACX80B,EAA0B14B,WAC1B,IACD,MAAM,YAAU04B,EAA0Bh5B,WAAY,IAAG,IACT,MAAxCg5B,EAA0B14B,aACnC4D,GAAQ,KAAK,YAAU80B,EAA0B14B,WAAY,IAAG,KAG3D4D,GArGK,EAAAgwB,QAAK,OACjB,GAAyB,EACzB,MAAyB+C,GAAA,EACzB,MAAyB,GACzB,MAA6B,GAC7B,MAA6B,GAC7B,MAA6B,GAC7B,MAA2B,GAC3B,MAA8B,GAC9B,OAAkC,GAClC,OAA2C,GAC3C,MAAkB,GAClB,MAAiB,EACjB,OAAoB,GACpB,OAAuB,EACvB,OAAqB,EACrB,OAAsB,EACtB,OAA2BC,GAAA,EAC3B,OAAwBC,GAAA,EACxB,OAAuB,GACvB,OAAkB,EAClB,OAAwB,EACxB,OAAyB,EACzB,OAAqB,GACrB,OAAwBC,GAAA,E,IA+E5B,EA9oCA,GCnMA,cAUE,WAAmB6B,GARX,KAAAC,YAA2B,CAAEC,OAAQ,cACrC,KAAAC,QAA2B,UAGlB,KAAAC,yBAA2B,IAAIza,EAAA,EAE/B,KAAA3S,YAA4B,GAG3CgB,KAAKgsB,cAAgBA,EAqDzB,OA9CE,sBAAW,qBAAM,C,IASjB,WACE,OAAOhsB,KAAKmsB,S,IAVd,SAAkBrhB,GAChB9K,KAAKmsB,QAAUrhB,EACf9K,KAAKosB,yBAAyB7sB,KAAKuL,I,gCAc9B,YAAA5K,KAAP,sBACEF,KAAKisB,YAAcjsB,KAAKgsB,eAAc,WACpC,EAAKlhB,OAAS,cAEhB9K,KAAK8K,OAAS,WAMT,YAAAohB,OAAP,WACElsB,KAAKisB,YAAYC,SACjBlsB,KAAK8K,OAAS,aAOT,YAAAuhB,eAAP,SAAsBznB,GAMpB,IAAMR,EAAapE,KAAKosB,yBAAyBvnB,GAAGD,GAGpD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAEX,EAhEA,GAsGA,I,GAAA,wBACU,KAAAkoB,MAA6C,GAuDvD,OA7CS,YAAAnrB,IAAP,SACE2F,EACAklB,EACAxhB,QAAA,IAAAA,MAAA,GAEIxK,KAAKssB,MAAMxlB,IAAiD,YAAlC9G,KAAKssB,MAAMxlB,GAAYgE,QACnD9K,KAAKssB,MAAMxlB,GAAYolB,SAGzB,IAAMK,EACJ/hB,EAAS,EA/Cf,SAAuBgiB,EAAiBhiB,GACtC,OAAO,IAAI,IAAU,WACnB,IAAIiiB,EAAqB,KAYzB,OAVAD,EAAKH,gBAAe,SAAAvhB,GACH,aAAXA,IACF2hB,EAAM52B,OAAOkC,YAAW,WACtBy0B,EAAKtsB,SACJsK,OAIPgiB,EAAKtsB,OAEE,CACLgsB,OAAQ,WACFO,GAAK30B,aAAa20B,GACtBD,EAAKN,cA+BHQ,CAAc,IAAI,GAAUV,GAAgBxhB,GAC5C,IAAI,GAAUwhB,GAIpB,OAFAhsB,KAAKssB,MAAMxlB,GAAcylB,EAElBvsB,KAAKssB,MAAMxlB,IAQb,YAAA5G,KAAP,SAAY4G,IAER9G,KAAKssB,MAAMxlB,IACwB,YAAlC9G,KAAKssB,MAAMxlB,GAAYgE,QACY,cAAlC9K,KAAKssB,MAAMxlB,GAAYgE,QACW,aAAlC9K,KAAKssB,MAAMxlB,GAAYgE,QAEzB9K,KAAKssB,MAAMxlB,GAAY5G,QASpB,YAAAgsB,OAAP,SAAcplB,GACR9G,KAAKssB,MAAMxlB,IAAiD,YAAlC9G,KAAKssB,MAAMxlB,GAAYgE,QACnD9K,KAAKssB,MAAMxlB,GAAYolB,UAG7B,EAxDA,GCrGCr2B,OAAe82B,cAAgB,GAI/B92B,OAAe82B,cAAcC,KAAOA,EAIpC/2B,OAAeg3B,iBAAmB","file":"vc.main.min.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 15);\n","import {\n AnyObject,\n Position,\n Size,\n WithAgentProps,\n WithModuleProps,\n LinkedVisualConsoleProps,\n LinkedVisualConsolePropsStatus,\n UnknownObject,\n ItemMeta\n} from \"./types\";\n\nimport helpTipIcon from \"./help-tip.png\";\nimport fontAwesomeIcon from \"./FontAwesomeIcon\";\nimport { faPencilAlt, faListAlt } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./autocomplete.css\";\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseIntOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (typeof value === \"string\" && value.length > 0 && !isNaN(parseInt(value)))\n return parseInt(value);\n else return defaultValue;\n}\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseFloatOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (\n typeof value === \"string\" &&\n value.length > 0 &&\n !isNaN(parseFloat(value))\n )\n return parseFloat(value);\n else return defaultValue;\n}\n\n/**\n * Check if a string exists and it's not empty.\n * @param value Value to check.\n * @return The check result.\n */\nexport function stringIsEmpty(value?: string | null): boolean {\n return value == null || value.length === 0;\n}\n\n/**\n * Return a not empty string or a default value from a raw value.\n * @param value Raw value from which we will try to extract a non empty string.\n * @param defaultValue Default value to use if we cannot extract a non empty string.\n * @return A non empty string or the default value.\n */\nexport function notEmptyStringOr(\n value: unknown,\n defaultValue: T\n): string | T {\n return typeof value === \"string\" && value.length > 0 ? value : defaultValue;\n}\n\n/**\n * Return a boolean from a raw value.\n * @param value Raw value from which we will try to extract the boolean.\n * @return A valid boolean value. false by default.\n */\nexport function parseBoolean(value: unknown): boolean {\n if (typeof value === \"boolean\") return value;\n else if (typeof value === \"number\") return value > 0;\n else if (typeof value === \"string\") return value === \"1\" || value === \"true\";\n else return false;\n}\n\n/**\n * Return a valid date or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid date.\n * @param defaultValue Default value to use if we cannot extract a valid date.\n * @return A valid date or the default value.\n */\nexport function parseDateOr(value: unknown, defaultValue: T): Date | T {\n if (value instanceof Date) return value;\n else if (typeof value === \"number\") return new Date(value * 1000);\n else if (\n typeof value === \"string\" &&\n !Number.isNaN(new Date(value).getTime())\n )\n return new Date(value);\n else return defaultValue;\n}\n\n/**\n * Pad the current string with another string (multiple times, if needed)\n * until the resulting string reaches the given length.\n * The padding is applied from the start (left) of the current string.\n * @param value Text that needs to be padded.\n * @param length Length of the returned text.\n * @param pad Text to add.\n * @return Padded text.\n */\nexport function leftPad(\n value: string | number,\n length: number,\n pad: string | number = \" \"\n): string {\n if (typeof value === \"number\") value = `${value}`;\n if (typeof pad === \"number\") pad = `${pad}`;\n\n const diffLength = length - value.length;\n if (diffLength === 0) return value;\n if (diffLength < 0) return value.substr(Math.abs(diffLength));\n\n if (diffLength === pad.length) return `${pad}${value}`;\n if (diffLength < pad.length) return `${pad.substring(0, diffLength)}${value}`;\n\n const repeatTimes = Math.floor(diffLength / pad.length);\n const restLength = diffLength - pad.length * repeatTimes;\n\n let newPad = \"\";\n for (let i = 0; i < repeatTimes; i++) newPad += pad;\n\n if (restLength === 0) return `${newPad}${value}`;\n return `${newPad}${pad.substring(0, restLength)}${value}`;\n}\n\n/* Decoders */\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the position.\n */\nexport function positionPropsDecoder(data: AnyObject): Position {\n return {\n x: parseIntOr(data.x, 0),\n y: parseIntOr(data.y, 0)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the size.\n * @throws Will throw a TypeError if the width and height are not valid numbers.\n */\nexport function sizePropsDecoder(data: AnyObject): Size | never {\n if (\n data.width == null ||\n isNaN(parseInt(data.width)) ||\n data.height == null ||\n isNaN(parseInt(data.height))\n ) {\n throw new TypeError(\"invalid size.\");\n }\n\n return {\n width: parseInt(data.width),\n height: parseInt(data.height)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the agent properties.\n */\nexport function agentPropsDecoder(data: AnyObject): WithAgentProps {\n const agentProps: WithAgentProps = {\n agentId: parseIntOr(data.agentId, null),\n agentName: notEmptyStringOr(data.agentName, null),\n agentAlias: notEmptyStringOr(data.agentAlias, null),\n agentDescription: notEmptyStringOr(data.agentDescription, null),\n agentAddress: notEmptyStringOr(data.agentAddress, null),\n agentDisabled: parseBoolean(data.agentDisabled)\n };\n\n return data.metaconsoleId != null\n ? {\n metaconsoleId: data.metaconsoleId,\n ...agentProps // Object spread: http://es6-features.org/#SpreadOperator\n }\n : agentProps;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the module and agent properties.\n */\nexport function modulePropsDecoder(data: AnyObject): WithModuleProps {\n return {\n moduleId: parseIntOr(data.moduleId, null),\n moduleName: notEmptyStringOr(data.moduleName, null),\n moduleDescription: notEmptyStringOr(data.moduleDescription, null),\n moduleDisabled: parseBoolean(data.moduleDisabled),\n ...agentPropsDecoder(data) // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the linked visual console properties.\n * @throws Will throw a TypeError if the status calculation properties are invalid.\n */\nexport function linkedVCPropsDecoder(\n data: AnyObject\n): LinkedVisualConsoleProps | never {\n let linkedLayoutStatusProps: LinkedVisualConsolePropsStatus = {\n linkedLayoutStatusType: \"default\"\n };\n switch (data.linkedLayoutStatusType) {\n case \"weight\": {\n const weight = parseIntOr(data.linkedLayoutStatusTypeWeight, null);\n if (weight == null)\n throw new TypeError(\"invalid status calculation properties.\");\n\n if (data.linkedLayoutStatusTypeWeight)\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"weight\",\n linkedLayoutStatusTypeWeight: weight\n };\n break;\n }\n case \"service\": {\n const warningThreshold = parseIntOr(\n data.linkedLayoutStatusTypeWarningThreshold,\n null\n );\n const criticalThreshold = parseIntOr(\n data.linkedLayoutStatusTypeCriticalThreshold,\n null\n );\n if (warningThreshold == null || criticalThreshold == null) {\n throw new TypeError(\"invalid status calculation properties.\");\n }\n\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"service\",\n linkedLayoutStatusTypeWarningThreshold: warningThreshold,\n linkedLayoutStatusTypeCriticalThreshold: criticalThreshold\n };\n break;\n }\n }\n\n return {\n linkedLayoutId: parseIntOr(data.linkedLayoutId, null),\n linkedLayoutNodeId: parseIntOr(data.linkedLayoutNodeId, null),\n ...linkedLayoutStatusProps // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the item's meta properties.\n */\nexport function itemMetaDecoder(data: UnknownObject): ItemMeta | never {\n const receivedAt = parseDateOr(data.receivedAt, null);\n if (receivedAt === null) throw new TypeError(\"invalid meta structure\");\n\n let error = null;\n if (data.error instanceof Error) error = data.error;\n else if (typeof data.error === \"string\") error = new Error(data.error);\n\n return {\n receivedAt,\n error,\n editMode: parseBoolean(data.editMode),\n isFromCache: parseBoolean(data.isFromCache),\n isFetching: false,\n isUpdating: false,\n isBeingMoved: false,\n isBeingResized: false,\n isSelected: false,\n lineMode: false\n };\n}\n\n/**\n * To get a CSS rule with the most used prefixes.\n * @param ruleName Name of the CSS rule.\n * @param ruleValue Value of the CSS rule.\n * @return An array of rules with the prefixes applied.\n */\nexport function prefixedCssRules(\n ruleName: string,\n ruleValue: string\n): string[] {\n const rule = `${ruleName}: ${ruleValue};`;\n return [\n `-webkit-${rule}`,\n `-moz-${rule}`,\n `-ms-${rule}`,\n `-o-${rule}`,\n `${rule}`\n ];\n}\n\n/**\n * Decode a base64 string.\n * @param input Data encoded using base64.\n * @return Decoded data.\n */\nexport function decodeBase64(input: string): string {\n return decodeURIComponent(escape(window.atob(input)));\n}\n\n/**\n * Generate a date representation with the format 'd/m/Y'.\n * @param initialDate Date to be used instead of a generated one.\n * @param locale Locale to use if localization is required and available.\n * @example 24/02/2020.\n * @return Date representation.\n */\nexport function humanDate(date: Date, locale: string | null = null): string {\n if (locale && Intl && Intl.DateTimeFormat) {\n // Format using the user locale.\n const options: Intl.DateTimeFormatOptions = {\n day: \"2-digit\",\n month: \"2-digit\",\n year: \"numeric\"\n };\n return Intl.DateTimeFormat(locale, options).format(date);\n } else {\n // Use getDate, getDay returns the week day.\n const day = leftPad(date.getDate(), 2, 0);\n // The getMonth function returns the month starting by 0.\n const month = leftPad(date.getMonth() + 1, 2, 0);\n const year = leftPad(date.getFullYear(), 4, 0);\n\n // Format: 'd/m/Y'.\n return `${day}/${month}/${year}`;\n }\n}\n\n/**\n * Generate a time representation with the format 'hh:mm:ss'.\n * @param initialDate Date to be used instead of a generated one.\n * @example 01:34:09.\n * @return Time representation.\n */\nexport function humanTime(date: Date): string {\n const hours = leftPad(date.getHours(), 2, 0);\n const minutes = leftPad(date.getMinutes(), 2, 0);\n const seconds = leftPad(date.getSeconds(), 2, 0);\n\n return `${hours}:${minutes}:${seconds}`;\n}\n\ninterface Macro {\n macro: string | RegExp;\n value: string;\n}\n/**\n * Replace the macros of a text.\n * @param macros List of macros and their replacements.\n * @param text Text in which we need to replace the macros.\n */\nexport function replaceMacros(macros: Macro[], text: string): string {\n return macros.reduce(\n (acc, { macro, value }) => acc.replace(macro, value),\n text\n );\n}\n\n/**\n * Create a function which will limit the rate of execution of\n * the selected function to one time for the selected interval.\n * @param delay Interval.\n * @param fn Function to be executed at a limited rate.\n */\nexport function throttle(delay: number, fn: (...args: T[]) => R) {\n let last = 0;\n return (...args: T[]) => {\n const now = Date.now();\n if (now - last < delay) return;\n last = now;\n return fn(...args);\n };\n}\n\n/**\n * Create a function which will call the selected function only\n * after the interval time has passed after its last execution.\n * @param delay Interval.\n * @param fn Function to be executed after the last call.\n */\nexport function debounce(delay: number, fn: (...args: T[]) => void) {\n let timerRef: number | null = null;\n return (...args: T[]) => {\n if (timerRef !== null) window.clearTimeout(timerRef);\n timerRef = window.setTimeout(() => {\n fn(...args);\n timerRef = null;\n }, delay);\n };\n}\n\n/**\n * Retrieve the offset of an element relative to the page.\n * @param el Node used to calculate the offset.\n */\nfunction getOffset(el: HTMLElement | null, parent?: HTMLElement) {\n let x = 0;\n let y = 0;\n while (\n el &&\n !Number.isNaN(el.offsetLeft) &&\n !Number.isNaN(el.offsetTop) &&\n el !== parent\n ) {\n x += el.offsetLeft - el.scrollLeft;\n y += el.offsetTop - el.scrollTop;\n el = el.offsetParent as HTMLElement | null;\n }\n return { top: y, left: x };\n}\n\n/**\n * Add the grab & move functionality to a certain element inside it's container.\n *\n * @param element Element to move.\n * @param onMoved Function to execute when the element moves.\n * @param altContainer Alternative element to contain the moved element.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addMovementListener(\n element: HTMLElement,\n onMoved: (x: Position[\"x\"], y: Position[\"y\"]) => void,\n altContainer?: HTMLElement\n): Function {\n const container = altContainer || (element.parentElement as HTMLElement);\n\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastX: Position[\"x\"] = 0;\n let lastY: Position[\"y\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementBounds = element.getBoundingClientRect();\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth) * 2;\n\n // Will run onMoved 32ms after its last execution.\n const debouncedMovement = debounce(32, onMoved);\n // Will run onMoved one time max every 16ms.\n const throttledMovement = throttle(16, onMoved);\n\n const handleMove = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let x = 0;\n let y = 0;\n\n const mouseX = e.pageX;\n const mouseY = e.pageY;\n const mouseDeltaX = mouseX - lastMouseX;\n const mouseDeltaY = mouseY - lastMouseY;\n\n const minX = 0;\n const maxX = containerBounds.width - elementBounds.width + borderFix;\n const minY = 0;\n const maxY = containerBounds.height - elementBounds.height + borderFix;\n\n const outOfBoundsLeft =\n mouseX < containerLeft ||\n (lastX === 0 &&\n mouseDeltaX > 0 &&\n mouseX < containerLeft + mouseElementOffsetX);\n const outOfBoundsRight =\n mouseX > containerRight ||\n mouseDeltaX + lastX + elementBounds.width - borderFix >\n containerBounds.width ||\n (lastX === maxX &&\n mouseDeltaX < 0 &&\n mouseX > containerLeft + maxX + mouseElementOffsetX);\n const outOfBoundsTop =\n mouseY < containerTop ||\n (lastY === 0 &&\n mouseDeltaY > 0 &&\n mouseY < containerTop + mouseElementOffsetY);\n const outOfBoundsBottom =\n mouseY > containerBottom ||\n mouseDeltaY + lastY + elementBounds.height - borderFix >\n containerBounds.height ||\n (lastY === maxY &&\n mouseDeltaY < 0 &&\n mouseY > containerTop + maxY + mouseElementOffsetY);\n\n if (outOfBoundsLeft) x = minX;\n else if (outOfBoundsRight) x = maxX;\n else x = mouseDeltaX + lastX;\n\n if (outOfBoundsTop) y = minY;\n else if (outOfBoundsBottom) y = maxY;\n else y = mouseDeltaY + lastY;\n\n if (x < 0) x = minX;\n if (y < 0) y = minY;\n\n // Store the last mouse coordinates.\n lastMouseX = mouseX;\n lastMouseY = mouseY;\n\n if (x === lastX && y === lastY) return;\n\n // Run the movement events.\n throttledMovement(x, y);\n debouncedMovement(x, y);\n\n // Store the coordinates of the element.\n lastX = x;\n lastY = y;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastX = 0;\n lastY = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleMove);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n // Avoid starting the movement on right click.\n if (e.button === 2) return;\n\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Fix for Firefox browser.\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const elementOffset = getOffset(element, container);\n lastX = elementOffset.left;\n lastY = elementOffset.top;\n\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementBounds = element.getBoundingClientRect();\n borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n borderFix = Number.parseInt(borderWidth) * 2;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleMove);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n element.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n element.removeEventListener(\"mousedown\", handleStart);\n handleEnd();\n };\n}\n\n/**\n * Add the grab & resize functionality to a certain element.\n *\n * @param element Element to move.\n * @param onResized Function to execute when the element is resized.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addResizementListener(\n element: HTMLElement,\n onResized: (x: Position[\"x\"], y: Position[\"y\"]) => void\n): Function {\n const minWidth = 15;\n const minHeight = 15;\n\n const resizeDraggable = document.createElement(\"div\");\n resizeDraggable.className = \"resize-draggable\";\n element.appendChild(resizeDraggable);\n\n // Container of the resizable element.\n const container = element.parentElement as HTMLElement;\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastWidth: Size[\"width\"] = 0;\n let lastHeight: Size[\"height\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Init the bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementOffset = getOffset(element);\n let elementTop = elementOffset.top;\n let elementLeft = elementOffset.left;\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth);\n\n // Will run onResized 32ms after its last execution.\n const debouncedResizement = debounce(32, onResized);\n // Will run onResized one time max every 16ms.\n const throttledResizement = throttle(16, onResized);\n\n const handleResize = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let width = lastWidth + (e.pageX - lastMouseX);\n let height = lastHeight + (e.pageY - lastMouseY);\n\n if (width === lastWidth && height === lastHeight) return;\n\n if (\n width < lastWidth &&\n e.pageX > elementLeft + (lastWidth - mouseElementOffsetX)\n )\n return;\n\n if (width < minWidth) {\n // Minimum value.\n width = minWidth;\n } else if (width + elementLeft - borderFix / 2 >= containerRight) {\n // Limit the size to the container.\n width = containerRight - elementLeft;\n }\n if (height < minHeight) {\n // Minimum value.\n height = minHeight;\n } else if (height + elementTop - borderFix / 2 >= containerBottom) {\n // Limit the size to the container.\n height = containerBottom - elementTop;\n }\n\n // Run the movement events.\n throttledResizement(width, height);\n debouncedResizement(width, height);\n\n // Store the coordinates of the element.\n lastWidth = width;\n lastHeight = height;\n // Store the last mouse coordinates.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastWidth = 0;\n lastHeight = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n mouseElementOffsetX = 0;\n mouseElementOffsetY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleResize);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const { width, height } = element.getBoundingClientRect();\n lastWidth = width;\n lastHeight = height;\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementOffset = getOffset(element);\n elementTop = elementOffset.top;\n elementLeft = elementOffset.left;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleResize);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n resizeDraggable.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n resizeDraggable.remove();\n handleEnd();\n };\n}\n\n// TODO: Document and code\nexport function t(text: string): string {\n return text;\n}\n\nexport function helpTip(text: string): HTMLElement {\n const container = document.createElement(\"a\");\n container.className = \"tip\";\n const icon = document.createElement(\"img\");\n icon.src = helpTipIcon;\n icon.className = \"forced_title\";\n icon.setAttribute(\"alt\", text);\n icon.setAttribute(\"data-title\", text);\n icon.setAttribute(\"data-use_title_for_force_title\", \"1\");\n\n container.appendChild(icon);\n\n return container;\n}\n\ninterface PeriodSelectorOption {\n value: number;\n text: string;\n}\nexport function periodSelector(\n selectedValue: PeriodSelectorOption[\"value\"] | null,\n emptyOption: PeriodSelectorOption | null,\n options: PeriodSelectorOption[],\n onChange: (value: PeriodSelectorOption[\"value\"]) => void\n): HTMLElement {\n if (selectedValue === null) selectedValue = 0;\n const initialValue = emptyOption ? emptyOption.value : 0;\n let currentValue: number =\n selectedValue != null ? selectedValue : initialValue;\n // Main container.\n const container = document.createElement(\"div\");\n // Container for the period selector.\n const periodsContainer = document.createElement(\"div\");\n const selectPeriods = document.createElement(\"select\");\n const useManualPeriodsBtn = document.createElement(\"a\");\n // Container for the custom period input.\n const manualPeriodsContainer = document.createElement(\"div\");\n const inputTimeValue = document.createElement(\"input\");\n const unitsSelect = document.createElement(\"select\");\n const usePeriodsBtn = document.createElement(\"a\");\n // Units to multiply the custom period input.\n const unitOptions: { value: string; text: string }[] = [\n { value: \"1\", text: t(\"Seconds\").toLowerCase() },\n { value: \"60\", text: t(\"Minutes\").toLowerCase() },\n { value: \"3600\", text: t(\"Hours\").toLowerCase() },\n { value: \"86400\", text: t(\"Days\").toLowerCase() },\n { value: \"604800\", text: t(\"Weeks\").toLowerCase() },\n { value: `${86400 * 30}`, text: t(\"Months\").toLowerCase() },\n { value: `${86400 * 30 * 12}`, text: t(\"Years\").toLowerCase() }\n ];\n\n // Will be executed every time the value changes.\n const handleChange = (value: number) => {\n currentValue = value;\n onChange(currentValue);\n };\n // Will return the first period option smaller than the value.\n const findPeriodsOption = (value: number) =>\n options\n .sort((a, b) => (a.value < b.value ? 1 : -1))\n .find(optionVal => value >= optionVal.value);\n // Will return the first multiple of the value using the custom input multipliers.\n const findManualPeriodsOptionValue = (value: number) =>\n unitOptions\n .map(unitOption => Number.parseInt(unitOption.value))\n .sort((a, b) => (a < b ? 1 : -1))\n .find(optionVal => value % optionVal === 0);\n // Will find and set a valid option for the period selector.\n const setPeriodsValue = (value: number) => {\n let option = findPeriodsOption(value);\n selectPeriods.value = `${option ? option.value : initialValue}`;\n };\n // Will transform the value to show the perfect fit for the custom input period.\n const setManualPeriodsValue = (value: number) => {\n const optionVal = findManualPeriodsOptionValue(value);\n if (optionVal) {\n inputTimeValue.value = `${value / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${value}`;\n unitsSelect.value = \"1\";\n }\n };\n\n // Will modify the value to show the perfect fit for this element and show its container.\n const showPeriods = () => {\n let option = findPeriodsOption(currentValue);\n const newValue = option ? option.value : initialValue;\n selectPeriods.value = `${newValue}`;\n\n if (newValue !== currentValue) handleChange(newValue);\n\n container.replaceChild(periodsContainer, manualPeriodsContainer);\n };\n // Will modify the value to show the perfect fit for this element and show its container.\n const showManualPeriods = () => {\n const optionVal = findManualPeriodsOptionValue(currentValue);\n\n if (optionVal) {\n inputTimeValue.value = `${currentValue / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${currentValue}`;\n unitsSelect.value = \"1\";\n }\n\n container.replaceChild(manualPeriodsContainer, periodsContainer);\n };\n\n // Append the elements\n\n periodsContainer.appendChild(selectPeriods);\n periodsContainer.appendChild(useManualPeriodsBtn);\n\n manualPeriodsContainer.appendChild(inputTimeValue);\n manualPeriodsContainer.appendChild(unitsSelect);\n manualPeriodsContainer.appendChild(usePeriodsBtn);\n\n if (\n options.find(option => option.value === selectedValue) ||\n (emptyOption && emptyOption.value === selectedValue)\n ) {\n // Start with the custom periods select.\n container.appendChild(periodsContainer);\n } else {\n // Start with the manual time input\n container.appendChild(manualPeriodsContainer);\n }\n\n // Set and fill the elements.\n\n // Periods selector.\n\n selectPeriods.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, initialValue)\n )\n );\n if (emptyOption) {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${emptyOption.value}`;\n optionElem.text = emptyOption.text;\n selectPeriods.appendChild(optionElem);\n }\n options.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n selectPeriods.appendChild(optionElem);\n });\n\n setPeriodsValue(selectedValue);\n\n useManualPeriodsBtn.appendChild(\n fontAwesomeIcon(faPencilAlt, t(\"Show manual period input\"), {\n size: \"small\"\n })\n );\n useManualPeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showManualPeriods();\n });\n\n // Manual periods input.\n\n inputTimeValue.type = \"number\";\n inputTimeValue.min = \"0\";\n inputTimeValue.required = true;\n inputTimeValue.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, 0) *\n parseIntOr(unitsSelect.value, 1)\n )\n );\n // Select for time units.\n unitsSelect.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr(inputTimeValue.value, 0) *\n parseIntOr((e.target as HTMLSelectElement).value, 1)\n )\n );\n unitOptions.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n unitsSelect.appendChild(optionElem);\n });\n\n setManualPeriodsValue(selectedValue);\n\n usePeriodsBtn.appendChild(\n fontAwesomeIcon(faListAlt, t(\"Show periods selector\"), { size: \"small\" })\n );\n usePeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showPeriods();\n });\n\n return container;\n}\n\n/**\n * Cuts the text if their length is greater than the selected max length\n * and applies the selected ellipse to the result text.\n * @param str Text to cut\n * @param max Maximum length after cutting the text\n * @param ellipse String to be added to the cutted text\n * @returns Full text or text cutted with the ellipse\n */\nexport function ellipsize(\n str: string,\n max: number = 140,\n ellipse: string = \"…\"\n): string {\n return str.trim().length > max ? str.substr(0, max).trim() + ellipse : str;\n}\n\n// TODO: Document\nexport function autocompleteInput(\n initialValue: string | null,\n onDataRequested: (value: string, done: (data: T[]) => void) => void,\n renderListElement: (data: T) => HTMLElement,\n onSelected: (data: T) => string\n): HTMLElement {\n const container = document.createElement(\"div\");\n container.classList.add(\"autocomplete\");\n\n const input = document.createElement(\"input\");\n input.type = \"text\";\n input.required = true;\n if (initialValue !== null) input.value = initialValue;\n\n const list = document.createElement(\"div\");\n list.classList.add(\"autocomplete-items\");\n\n const cleanList = () => {\n list.innerHTML = \"\";\n };\n\n input.addEventListener(\"keyup\", e => {\n const value = (e.target as HTMLInputElement).value;\n if (value) {\n onDataRequested(value, data => {\n cleanList();\n if (data instanceof Array) {\n data.forEach(item => {\n const listElement = renderListElement(item);\n listElement.addEventListener(\"click\", () => {\n input.value = onSelected(item);\n cleanList();\n });\n list.appendChild(listElement);\n });\n }\n });\n } else {\n cleanList();\n }\n });\n\n container.appendChild(input);\n container.appendChild(list);\n\n return container;\n}\n","import {\n Position,\n Size,\n AnyObject,\n WithModuleProps,\n ItemMeta,\n LinkedVisualConsoleProps,\n WithAgentProps\n} from \"./lib/types\";\nimport {\n sizePropsDecoder,\n positionPropsDecoder,\n parseIntOr,\n parseBoolean,\n notEmptyStringOr,\n replaceMacros,\n humanDate,\n humanTime,\n addMovementListener,\n debounce,\n addResizementListener,\n t\n} from \"./lib\";\nimport TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { FormContainer, InputGroup } from \"./Form\";\n\n// Enum: https://www.typescriptlang.org/docs/handbook/enums.html.\nexport const enum ItemType {\n STATIC_GRAPH = 0,\n MODULE_GRAPH = 1,\n SIMPLE_VALUE = 2,\n PERCENTILE_BAR = 3,\n LABEL = 4,\n ICON = 5,\n SIMPLE_VALUE_MAX = 6,\n SIMPLE_VALUE_MIN = 7,\n SIMPLE_VALUE_AVG = 8,\n PERCENTILE_BUBBLE = 9,\n SERVICE = 10,\n GROUP_ITEM = 11,\n BOX_ITEM = 12,\n LINE_ITEM = 13,\n AUTO_SLA_GRAPH = 14,\n CIRCULAR_PROGRESS_BAR = 15,\n CIRCULAR_INTERIOR_PROGRESS_BAR = 16,\n DONUT_GRAPH = 17,\n BARS_GRAPH = 18,\n CLOCK = 19,\n COLOR_CLOUD = 20,\n NETWORK_LINK = 21,\n ODOMETER = 22,\n BASIC_CHART = 23\n}\n\n// Base item properties. This interface should be extended by the item implementations.\nexport interface ItemProps extends Position, Size {\n readonly id: number;\n readonly type: ItemType;\n label: string | null;\n labelPosition: \"up\" | \"right\" | \"down\" | \"left\";\n isLinkEnabled: boolean;\n link: string | null;\n isOnTop: boolean;\n parentId: number | null;\n aclGroupId: number | null;\n cacheExpiration: number | null;\n colorStatus: string;\n cellId: number | null;\n}\n\nexport interface ItemClickEvent {\n item: VisualConsoleItem;\n nativeEvent: Event;\n}\n\n// FIXME: Fix type compatibility.\nexport interface ItemRemoveEvent {\n // data: Props;\n item: VisualConsoleItem;\n}\n\nexport interface ItemMovedEvent {\n item: VisualConsoleItem;\n prevPosition: Position;\n newPosition: Position;\n}\n\nexport interface ItemResizedEvent {\n item: VisualConsoleItem;\n prevSize: Size;\n newSize: Size;\n}\n\nexport interface ItemSelectionChangedEvent {\n selected: boolean;\n}\n\n/**\n * Extract a valid enum value from a raw label position value.\n * @param labelPosition Raw value.\n */\nconst parseLabelPosition = (\n labelPosition: unknown\n): ItemProps[\"labelPosition\"] => {\n switch (labelPosition) {\n case \"up\":\n case \"right\":\n case \"down\":\n case \"left\":\n return labelPosition;\n default:\n return \"down\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function itemBasePropsDecoder(data: AnyObject): ItemProps | never {\n if (data.id == null || isNaN(parseInt(data.id))) {\n throw new TypeError(\"invalid id.\");\n }\n if (data.type == null || isNaN(parseInt(data.type))) {\n throw new TypeError(\"invalid type.\");\n }\n\n return {\n id: parseInt(data.id),\n type: parseInt(data.type),\n label: notEmptyStringOr(data.label, null),\n labelPosition: parseLabelPosition(data.labelPosition),\n isLinkEnabled: parseBoolean(data.isLinkEnabled),\n link: notEmptyStringOr(data.link, null),\n isOnTop: parseBoolean(data.isOnTop),\n parentId: parseIntOr(data.parentId, null),\n aclGroupId: parseIntOr(data.aclGroupId, null),\n cacheExpiration: parseIntOr(data.cacheExpiration, null),\n colorStatus: notEmptyStringOr(data.colorStatus, \"#CCC\"),\n cellId: parseIntOr(data.cellId, null),\n ...sizePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...positionPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n//TODO: Document\nexport function titleItem(id: number): string {\n let title = \"\";\n switch (id) {\n case ItemType.STATIC_GRAPH:\n title = t(\"Static image\");\n break;\n case ItemType.MODULE_GRAPH:\n title = t(\"Module graph\");\n break;\n case ItemType.SIMPLE_VALUE:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.LABEL:\n title = t(\"Label\");\n break;\n case ItemType.ICON:\n title = t(\"Icon\");\n break;\n case ItemType.SIMPLE_VALUE_MAX:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_MIN:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_AVG:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BUBBLE:\n title = t(\"Percentile item\");\n break;\n case ItemType.SERVICE:\n title = t(\"Service\");\n break;\n case ItemType.GROUP_ITEM:\n title = t(\"Group\");\n break;\n case ItemType.BOX_ITEM:\n title = t(\"Box\");\n break;\n case ItemType.LINE_ITEM:\n title = t(\"Line\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n title = t(\"Event history graph\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.DONUT_GRAPH:\n title = t(\"Serialized pie graph\");\n break;\n case ItemType.BARS_GRAPH:\n title = t(\"Bars graph\");\n break;\n case ItemType.CLOCK:\n title = t(\"Clock\");\n break;\n case ItemType.COLOR_CLOUD:\n title = t(\"Color cloud\");\n break;\n case ItemType.NETWORK_LINK:\n title = t(\"Network link\");\n break;\n case ItemType.ODOMETER:\n title = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n title = t(\"Basic chart\");\n break;\n default:\n title = t(\"Item\");\n break;\n }\n\n return title;\n}\n\n/**\n * Base class of the visual console items. Should be extended to use its capabilities.\n */\nabstract class VisualConsoleItem {\n // Properties of the item.\n private itemProps: Props;\n // Metadata of the item.\n private _metadata: ItemMeta;\n // Reference to the DOM element which will contain the item.\n public elementRef: HTMLElement = document.createElement(\"div\");\n public labelElementRef: HTMLElement = document.createElement(\"div\");\n // Reference to the DOM element which will contain the view of the item which extends this class.\n protected childElementRef: HTMLElement = document.createElement(\"div\");\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for moved events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for stopped movement events.\n private readonly movementFinishedEventManager = new TypedEvent<\n ItemMovedEvent\n >();\n // Event manager for resized events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for resize finished events.\n private readonly resizeFinishedEventManager = new TypedEvent<\n ItemResizedEvent\n >();\n // Event manager for remove events.\n private readonly removeEventManager = new TypedEvent();\n // Event manager for selection change events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = false;\n\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = {\n x: x,\n y: y\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Save the new position to the props.\n this.move(x, y);\n // Emit the movement event.\n this.movementFinishedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n private removeMovement: Function | null = null;\n\n /**\n * Start the movement funtionality.\n * @param element Element to move inside its container.\n */\n private initMovementListener(element: HTMLElement): void {\n // Avoid line movement as 'block' force using circles.\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n\n this.removeMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = { x, y };\n\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = true;\n // Move the DOM element.\n this.moveElement(x, y);\n // Emit the movement event.\n this.movedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n // Run the save function.\n this.debouncedMovementSave(x, y);\n }\n );\n }\n /**\n * Stop the movement fun\n */\n private stopMovementListener(): void {\n if (this.removeMovement) {\n this.removeMovement();\n this.removeMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedResizementSave = debounce(\n 500, // ms.\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = false;\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Save the new position to the props.\n this.resize(width, height);\n\n // Emit the resize finished event.\n this.resizeFinishedEventManager.emit({\n item: this,\n prevSize: prevSize,\n newSize: newSize\n });\n }\n );\n // This property will store the function\n // to clean the resizement listener.\n private removeResizement: Function | null = null;\n\n /**\n * Start the resizement funtionality.\n * @param element Element to move inside its container.\n */\n protected initResizementListener(element: HTMLElement): void {\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n this.removeResizement = addResizementListener(\n element,\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = true;\n\n // The label it's outside the item's size, so we need\n // to get rid of its size to get the real size of the\n // item's content.\n if (this.props.label && this.props.label.length > 0) {\n const {\n width: labelWidth,\n height: labelHeight\n } = this.labelElementRef.getBoundingClientRect();\n\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n height -= labelHeight;\n break;\n case \"left\":\n case \"right\":\n width -= labelWidth;\n break;\n }\n }\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Move the DOM element.\n this.resizeElement(width, height);\n // Emit the resizement event.\n this.resizedEventManager.emit({\n item: this,\n prevSize,\n newSize\n });\n // Run the save function.\n this.debouncedResizementSave(width, height);\n }\n );\n }\n /**\n * Stop the resizement functionality.\n */\n private stopResizementListener(): void {\n if (this.removeResizement) {\n this.removeResizement();\n this.removeResizement = null;\n }\n }\n\n /**\n * To create a new element which will be inside the item box.\n * @return Item.\n */\n protected abstract createDomElement(): HTMLElement;\n\n public constructor(\n props: Props,\n metadata: ItemMeta,\n deferInit: boolean = false\n ) {\n this.itemProps = props;\n this._metadata = metadata;\n\n if (!deferInit) this.init();\n }\n\n /**\n * To create and append the DOM elements.\n */\n protected init(): void {\n /*\n * Get a HTMLElement which represents the container box\n * of the Visual Console item. This element will manage\n * all the common things like click events, show a border\n * when hovered, etc.\n */\n this.elementRef = this.createContainerDomElement();\n this.labelElementRef = this.createLabelDomElement();\n\n /*\n * Get a HTMLElement which represents the custom view\n * of the Visual Console item. This element will be\n * different depending on the item implementation.\n */\n this.childElementRef = this.createDomElement();\n\n // Insert the elements into the container.\n this.elementRef.appendChild(this.childElementRef);\n this.elementRef.appendChild(this.labelElementRef);\n\n // Resize element.\n this.resizeElement(this.itemProps.width, this.itemProps.height);\n // Set label position.\n this.changeLabelPosition(this.itemProps.labelPosition);\n }\n\n /**\n * To create a new box for the visual console item.\n * @return Item box.\n */\n private createContainerDomElement(): HTMLElement {\n let box;\n if (this.props.isLinkEnabled) {\n box = document.createElement(\"a\") as HTMLAnchorElement;\n\n if (this.props.link) {\n box.href = this.props.link;\n } else {\n box.className = \"textDecorationNone\";\n }\n } else {\n box = document.createElement(\"div\") as HTMLDivElement;\n box.className = \"textDecorationNone\";\n }\n\n box.classList.add(\"visual-console-item\");\n if (this.props.isOnTop) {\n box.classList.add(\"is-on-top\");\n }\n box.style.left = `${this.props.x}px`;\n box.style.top = `${this.props.y}px`;\n\n // Init the click listeners.\n box.addEventListener(\"dblclick\", e => {\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.unSelectItem();\n this.selectItem();\n\n this.dblClickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n box.addEventListener(\"click\", e => {\n if (this.meta.editMode) {\n e.preventDefault();\n e.stopPropagation();\n } else {\n // Add loading click item.\n if (this.itemProps.isLinkEnabled && this.itemProps.link != null) {\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n let path = e.composedPath();\n let containerId = \"visual-console-container\";\n for (let index = 0; index < path.length; index++) {\n const element = path[index] as HTMLInputElement;\n if (\n element.id != undefined &&\n element.id != null &&\n element.id != \"\"\n ) {\n if (element.id.includes(containerId) === true) {\n containerId = element.id;\n break;\n }\n }\n }\n\n const containerVC = document.getElementById(containerId);\n if (containerVC != null) {\n containerVC.classList.add(\"is-updating\");\n containerVC.appendChild(divParent);\n }\n }\n }\n\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.clickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n\n // Metadata state.\n if (this.meta.editMode) {\n box.classList.add(\"is-editing\");\n }\n if (this.meta.isFetching) {\n box.classList.add(\"is-fetching\");\n }\n if (this.meta.isUpdating) {\n box.classList.add(\"is-updating\");\n }\n if (this.meta.isSelected) {\n box.classList.add(\"is-selected\");\n }\n\n return box;\n }\n\n /**\n * To create a new label for the visual console item.\n * @return Item label.\n */\n protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Add the label if it exists.\n const label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n // Ugly table we need to use to replicate the legacy style.\n const table = document.createElement(\"table\");\n const row = document.createElement(\"tr\");\n const emptyRow1 = document.createElement(\"tr\");\n const emptyRow2 = document.createElement(\"tr\");\n const cell = document.createElement(\"td\");\n\n cell.innerHTML = label;\n row.appendChild(cell);\n table.appendChild(emptyRow1);\n table.appendChild(row);\n table.appendChild(emptyRow2);\n table.style.textAlign = \"center\";\n\n // Change the table size depending on its position.\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n\n // element.innerHTML = this.props.label;\n element.appendChild(table);\n }\n\n return element;\n }\n\n /**\n * Return the label stored into the props with some macros replaced.\n */\n protected getLabelWithMacrosReplaced(): string {\n // We assert that the props may have some needed properties.\n const props = this.props as Partial;\n\n return replaceMacros(\n [\n {\n macro: \"_date_\",\n value: humanDate(new Date())\n },\n {\n macro: \"_time_\",\n value: humanTime(new Date())\n },\n {\n macro: \"_agent_\",\n value: props.agentAlias != null ? props.agentAlias : \"\"\n },\n {\n macro: \"_agentdescription_\",\n value: props.agentDescription != null ? props.agentDescription : \"\"\n },\n {\n macro: \"_address_\",\n value: props.agentAddress != null ? props.agentAddress : \"\"\n },\n {\n macro: \"_module_\",\n value: props.moduleName != null ? props.moduleName : \"\"\n },\n {\n macro: \"_moduledescription_\",\n value: props.moduleDescription != null ? props.moduleDescription : \"\"\n }\n ],\n this.props.label || \"\"\n );\n }\n\n /**\n * To update the content element.\n * @return Item.\n */\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): Props {\n return { ...this.itemProps }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: Props) {\n this.setProps(newProps);\n }\n\n /**\n * Clasic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n protected setProps(newProps: Props) {\n const prevProps = this.props;\n // Update the internal props.\n this.itemProps = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n if (this.shouldBeUpdated(prevProps, newProps))\n this.render(prevProps, this._metadata);\n }\n\n /**\n * Public accessor of the `meta` property.\n * @return Properties.\n */\n public get meta(): ItemMeta {\n return { ...this._metadata }; // Return a copy.\n }\n\n /**\n * Public setter of the `meta` property.\n * If the new meta are different enough than the\n * stored meta, a render would be fired.\n * @param newProps\n */\n public set meta(newMetadata: ItemMeta) {\n this.setMeta(newMetadata);\n }\n\n /**\n * Classic version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n public setMeta(newMetadata: Partial): void {\n const prevMetadata = this._metadata;\n // Update the internal meta.\n this._metadata = {\n ...prevMetadata,\n ...newMetadata\n };\n\n if (\n typeof newMetadata.isSelected !== \"undefined\" &&\n prevMetadata.isSelected !== newMetadata.isSelected\n ) {\n this.selectionChangedEventManager.emit({\n selected: newMetadata.isSelected\n });\n }\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n // if (this.shouldBeUpdated(prevMetadata, newMetadata))\n this.render(this.itemProps, prevMetadata);\n }\n\n /**\n * To compare the previous and the new props and returns a boolean value\n * in case the difference is meaningfull enough to perform DOM changes.\n *\n * Here, the only comparision is done by reference.\n *\n * Override this function to perform a different comparision depending on the item needs.\n *\n * @param prevProps\n * @param newProps\n * @return Whether the difference is meaningful enough to perform DOM changes or not.\n */\n protected shouldBeUpdated(prevProps: Props, newProps: Props): boolean {\n return prevProps !== newProps;\n }\n\n /**\n * To recreate or update the HTMLElement which represents the item into the DOM.\n * @param prevProps If exists it will be used to only perform DOM updates instead of a full replace.\n */\n public render(\n prevProps: Props | null = null,\n prevMeta: ItemMeta | null = null\n ): void {\n this.updateDomElement(this.childElementRef);\n\n // Move box.\n if (!prevProps || this.positionChanged(prevProps, this.props)) {\n this.moveElement(this.props.x, this.props.y);\n }\n // Resize box.\n if (!prevProps || this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n }\n // Change label.\n const oldLabelHtml = this.labelElementRef.innerHTML;\n const newLabelHtml = this.createLabelDomElement().innerHTML;\n if (oldLabelHtml !== newLabelHtml) {\n this.labelElementRef.innerHTML = newLabelHtml;\n }\n // Change label position.\n if (!prevProps || prevProps.labelPosition !== this.props.labelPosition) {\n this.changeLabelPosition(this.props.labelPosition);\n }\n //Change z-index class is-on-top\n if (!prevProps || prevProps.isOnTop !== this.props.isOnTop) {\n if (this.props.isOnTop) {\n this.elementRef.classList.add(\"is-on-top\");\n } else {\n this.elementRef.classList.remove(\"is-on-top\");\n }\n }\n // Change link.\n if (prevProps && prevProps.isLinkEnabled !== this.props.isLinkEnabled) {\n const container = this.createContainerDomElement();\n // Add the children of the old element.\n container.innerHTML = this.elementRef.innerHTML;\n // Copy the attributes.\n const attrs = this.elementRef.attributes;\n for (let i = 0; i < attrs.length; i++) {\n if (attrs[i].nodeName !== \"id\") {\n let cloneIsNeeded = this.elementRef.getAttributeNode(\n attrs[i].nodeName\n );\n if (cloneIsNeeded !== null) {\n container.setAttributeNode(cloneIsNeeded.cloneNode());\n }\n }\n }\n // Replace the reference.\n if (this.elementRef.parentNode !== null) {\n this.elementRef.parentNode.replaceChild(container, this.elementRef);\n }\n\n // Changed the reference to the main element. It's ugly, but needed.\n this.elementRef = container;\n }\n\n if (\n prevProps &&\n this.props.isLinkEnabled &&\n prevProps.link !== this.props.link\n ) {\n if (this.props.link !== null) {\n this.elementRef.setAttribute(\"href\", this.props.link);\n }\n }\n\n // Change metadata related things.\n if (!prevMeta || prevMeta.editMode !== this.meta.editMode) {\n if (this.meta.editMode) {\n this.elementRef.classList.add(\"is-editing\");\n } else {\n this.elementRef.classList.remove(\"is-editing\");\n }\n }\n\n if (!prevMeta || prevMeta.isFetching !== this.meta.isFetching) {\n if (this.meta.isFetching) {\n this.elementRef.classList.add(\"is-fetching\");\n } else {\n this.elementRef.classList.remove(\"is-fetching\");\n }\n }\n\n if (!prevMeta || prevMeta.isUpdating !== this.meta.isUpdating) {\n if (this.meta.isUpdating) {\n this.elementRef.classList.add(\"is-updating\");\n\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n this.elementRef.appendChild(divParent);\n } else {\n this.elementRef.classList.remove(\"is-updating\");\n\n const div = this.elementRef.querySelector(\n \".div-visual-console-spinner\"\n );\n if (div !== null) {\n const parent = div.parentElement;\n if (parent !== null) {\n parent.removeChild(div);\n }\n }\n }\n }\n if (!prevMeta || prevMeta.isSelected !== this.meta.isSelected) {\n if (this.meta.isSelected) {\n this.elementRef.classList.add(\"is-selected\");\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n }\n }\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n // Call the remove event.\n this.removeEventManager.emit({ item: this });\n // Event listeners.\n this.disposables.forEach(disposable => {\n try {\n disposable.dispose();\n } catch (ignored) {} // eslint-disable-line no-empty\n });\n // VisualConsoleItem DOM element.\n this.elementRef.remove();\n }\n\n /**\n * Compare the previous and the new position and return\n * a boolean value in case the position changed.\n * @param prevPosition\n * @param newPosition\n * @return Whether the position changed or not.\n */\n protected positionChanged(\n prevPosition: Position,\n newPosition: Position\n ): boolean {\n return prevPosition.x !== newPosition.x || prevPosition.y !== newPosition.y;\n }\n\n /**\n * Move the label around the item content.\n * @param position Label position.\n */\n protected changeLabelPosition(position: Props[\"labelPosition\"]): void {\n switch (position) {\n case \"up\":\n this.elementRef.style.flexDirection = \"column-reverse\";\n break;\n case \"left\":\n this.elementRef.style.flexDirection = \"row-reverse\";\n break;\n case \"right\":\n this.elementRef.style.flexDirection = \"row\";\n break;\n case \"down\":\n default:\n this.elementRef.style.flexDirection = \"column\";\n break;\n }\n\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n // Change the table size depending on its position.\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n }\n }\n\n /**\n * Move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n protected moveElement(x: number, y: number): void {\n this.elementRef.style.left = `${x}px`;\n this.elementRef.style.top = `${y}px`;\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n public move(x: number, y: number): void {\n this.moveElement(x, y);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n x,\n y\n };\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n protected sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // The most valuable size is the content size.\n if (\n this.props.type != ItemType.LINE_ITEM &&\n this.props.type != ItemType.NETWORK_LINK\n ) {\n this.childElementRef.style.width = width > 0 ? `${width}px` : \"\";\n this.childElementRef.style.height = height > 0 ? `${height}px` : \"\";\n }\n\n if (this.props.label && this.props.label.length > 0) {\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n table.style.width = width > 0 ? `${width}px` : \"\";\n break;\n case \"left\":\n case \"right\":\n table.style.height = height > 0 ? `${height}px` : \"\";\n break;\n }\n }\n }\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.resizeElement(width, height);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement stopped of visual console elements.\n * @param listener Function which is going to be executed when a linked console's movement is finished.\n */\n public onMovementFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movementFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement finish of visual console elements.\n * @param listener Function which is going to be executed when a linked console is finished resizing.\n */\n public onResizeFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizeFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the removal of the item.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onRemove(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.removeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to item selection.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n this.initMovementListener(this.elementRef);\n if (\n this.props.type !== ItemType.LINE_ITEM &&\n this.props.type !== ItemType.NETWORK_LINK\n ) {\n this.initResizementListener(this.elementRef);\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: false\n };\n\n this.stopMovementListener();\n if (this.props.type !== ItemType.LINE_ITEM) {\n this.stopResizementListener();\n }\n }\n\n // TODO: Document\n public getFormContainer(): FormContainer {\n return VisualConsoleItem.getFormContainer(this.props);\n }\n\n // TODO: Document\n public static getFormContainer(props: Partial): FormContainer {\n const title: string = props.type ? titleItem(props.type) : t(\"Item\");\n return new FormContainer(title, [], []);\n }\n}\n\nexport default VisualConsoleItem;\n","export interface Listener {\n (event: T): void;\n}\n\nexport interface Disposable {\n dispose: () => void;\n}\n\n/** passes through events as they happen. You will not get events from before you start listening */\nexport default class TypedEvent {\n private listeners: Listener[] = [];\n private listenersOncer: Listener[] = [];\n\n public on = (listener: Listener): Disposable => {\n this.listeners.push(listener);\n return {\n dispose: () => this.off(listener)\n };\n };\n\n public once = (listener: Listener): void => {\n this.listenersOncer.push(listener);\n };\n\n public off = (listener: Listener): void => {\n const callbackIndex = this.listeners.indexOf(listener);\n if (callbackIndex > -1) this.listeners.splice(callbackIndex, 1);\n };\n\n public emit = (event: T): void => {\n /** Update any general listeners */\n this.listeners.forEach(listener => listener(event));\n\n /** Clear the `once` queue */\n this.listenersOncer.forEach(listener => listener(event));\n this.listenersOncer = [];\n };\n\n public pipe = (te: TypedEvent): Disposable => this.on(e => te.emit(e));\n}\n","import TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { AnyObject, UnknownObject } from \"./lib/types\";\nimport { t } from \"./lib\";\n\ninterface InputGroupDataRequestedEvent {\n identifier: string;\n params: UnknownObject;\n done: (error: Error | null, data?: unknown) => void;\n}\n\n// TODO: Document\nexport abstract class InputGroup {\n private _name: string = \"\";\n private _element?: HTMLElement;\n public readonly initialData: Data;\n protected currentData: Partial = {};\n // Event manager for data requests.\n private readonly dataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n\n public constructor(name: string, initialData: Data) {\n this.name = name;\n this.initialData = initialData;\n }\n\n public set name(name: string) {\n if (name.length === 0) throw new RangeError(\"empty name\");\n this._name = name;\n }\n\n public get name(): string {\n return this._name;\n }\n\n public get data(): Partial {\n return { ...this.currentData };\n }\n\n public get element(): HTMLElement {\n if (this._element == null) {\n const element = document.createElement(\"div\");\n element.className = `input-group input-group-${this.name}`;\n\n const content = this.createContent();\n\n if (content instanceof Array) {\n content.forEach(element.appendChild);\n } else {\n element.appendChild(content);\n }\n\n this._element = element;\n }\n\n return this._element;\n }\n\n public reset(): void {\n this.currentData = {};\n }\n\n protected updateData(data: Partial): void {\n this.currentData = {\n ...this.currentData,\n ...data\n };\n // TODO: Update item.\n }\n\n protected requestData(\n identifier: string,\n params: UnknownObject,\n done: (error: Error | null, data?: unknown) => void\n ): void {\n this.dataRequestedEventManager.emit({ identifier, params, done });\n }\n\n public onDataRequested(\n listener: Listener\n ): Disposable {\n return this.dataRequestedEventManager.on(listener);\n }\n\n protected abstract createContent(): HTMLElement | HTMLElement[];\n\n // public abstract get isValid(): boolean;\n}\n\nexport interface SubmitFormEvent {\n nativeEvent: Event;\n data: AnyObject;\n}\n\n// TODO: Document\nexport class FormContainer {\n public readonly title: string;\n private inputGroupsByName: { [name: string]: InputGroup } = {};\n private enabledInputGroupNames: string[] = [];\n // Event manager for submit events.\n private readonly submitEventManager = new TypedEvent();\n // Event manager for item data requests.\n private readonly itemDataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n private handleItemDataRequested = this.itemDataRequestedEventManager.emit;\n\n public constructor(\n title: string,\n inputGroups: InputGroup[] = [],\n enabledInputGroups: string[] = []\n ) {\n this.title = title;\n\n if (inputGroups.length > 0) {\n this.inputGroupsByName = inputGroups.reduce((prevVal, inputGroup) => {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n prevVal[inputGroup.name] = inputGroup;\n return prevVal;\n }, this.inputGroupsByName);\n }\n\n if (enabledInputGroups.length > 0) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n ...enabledInputGroups.filter(\n name => this.inputGroupsByName[name] != null\n )\n ];\n }\n }\n\n public getInputGroup(inputGroupName: string): InputGroup | null {\n return this.inputGroupsByName[inputGroupName] || null;\n }\n\n public addInputGroup(\n inputGroup: InputGroup,\n index: number | null = null\n ): FormContainer {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n this.inputGroupsByName[inputGroup.name] = inputGroup;\n\n // Remove the current stored name if exist.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroup.name\n );\n\n if (index !== null) {\n if (index <= 0) {\n this.enabledInputGroupNames = [\n inputGroup.name,\n ...this.enabledInputGroupNames\n ];\n } else if (index >= this.enabledInputGroupNames.length) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n } else {\n this.enabledInputGroupNames = [\n // part of the array before the specified index\n ...this.enabledInputGroupNames.slice(0, index),\n // inserted item\n inputGroup.name,\n // part of the array after the specified index\n ...this.enabledInputGroupNames.slice(index)\n ];\n }\n } else {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n }\n\n return this;\n }\n\n public removeInputGroup(inputGroupName: string): FormContainer {\n delete this.inputGroupsByName[inputGroupName];\n // Remove the current stored name.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroupName\n );\n\n return this;\n }\n\n public getFormElement(\n type: \"creation\" | \"update\" = \"update\"\n ): HTMLFormElement {\n const form = document.createElement(\"form\");\n form.id = \"visual-console-item-edition\";\n form.className = \"visual-console-item-edition\";\n form.addEventListener(\"submit\", e => {\n e.preventDefault();\n this.submitEventManager.emit({\n nativeEvent: e,\n data: this.enabledInputGroupNames.reduce((data, name) => {\n if (this.inputGroupsByName[name]) {\n data = {\n ...data,\n ...this.inputGroupsByName[name].data\n };\n }\n return data;\n }, {})\n });\n });\n\n const formContent = document.createElement(\"div\");\n formContent.className = \"input-groups\";\n\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n formContent.appendChild(this.inputGroupsByName[name].element);\n }\n });\n\n form.appendChild(formContent);\n\n return form;\n }\n\n public reset(): void {\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n this.inputGroupsByName[name].reset();\n }\n });\n }\n\n // public get isValid(): boolean {\n // for (let i = 0; i < this.enabledInputGroupNames.length; i++) {\n // const inputGroup = this.inputGroupsByName[this.enabledInputGroupNames[i]];\n // if (inputGroup && !inputGroup.isValid) return false;\n // }\n\n // return true;\n // }\n\n public onSubmit(listener: Listener): Disposable {\n return this.submitEventManager.on(listener);\n }\n\n public onInputGroupDataRequested(\n listener: Listener\n ): Disposable {\n return this.itemDataRequestedEventManager.on(listener);\n }\n}\n","import { IconDefinition } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./FontAwesomeIcon.styles.css\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\ninterface ExtraProps {\n size?: \"small\" | \"medium\" | \"large\";\n color?: string;\n spin?: boolean;\n pulse?: boolean;\n}\n\nconst fontAwesomeIcon = (\n iconDefinition: IconDefinition,\n title: string,\n { size, color, spin, pulse }: ExtraProps = {}\n): HTMLElement => {\n const container = document.createElement(\"figure\");\n container.title = title;\n container.className = `fa fa-${iconDefinition.iconName}`;\n\n if (size) container.classList.add(`fa-${size}`);\n\n if (spin) container.classList.add(\"fa-spin\");\n else if (pulse) container.classList.add(\"fa-pulse\");\n\n const icon = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n icon.setAttribute(\n \"viewBox\",\n `0 0 ${iconDefinition.icon[0]} ${iconDefinition.icon[1]}`\n );\n if (color) icon.setAttribute(\"fill\", color);\n\n // Path\n const path = document.createElementNS(svgNS, \"path\");\n const pathData =\n typeof iconDefinition.icon[4] === \"string\"\n ? iconDefinition.icon[4]\n : iconDefinition.icon[4][0];\n path.setAttribute(\"d\", pathData);\n\n icon.appendChild(path);\n container.appendChild(icon);\n\n return container;\n};\n\nexport default fontAwesomeIcon;\n","/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\nvar prefix = \"fas\";\nvar faAd = {\n prefix: 'fas',\n iconName: 'ad',\n icon: [512, 512, [], \"f641\", \"M157.52 272h36.96L176 218.78 157.52 272zM352 256c-13.23 0-24 10.77-24 24s10.77 24 24 24 24-10.77 24-24-10.77-24-24-24zM464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM250.58 352h-16.94c-6.81 0-12.88-4.32-15.12-10.75L211.15 320h-70.29l-7.38 21.25A16 16 0 0 1 118.36 352h-16.94c-11.01 0-18.73-10.85-15.12-21.25L140 176.12A23.995 23.995 0 0 1 162.67 160h26.66A23.99 23.99 0 0 1 212 176.13l53.69 154.62c3.61 10.4-4.11 21.25-15.11 21.25zM424 336c0 8.84-7.16 16-16 16h-16c-4.85 0-9.04-2.27-11.98-5.68-8.62 3.66-18.09 5.68-28.02 5.68-39.7 0-72-32.3-72-72s32.3-72 72-72c8.46 0 16.46 1.73 24 4.42V176c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v160z\"]\n};\nvar faAddressBook = {\n prefix: 'fas',\n iconName: 'address-book',\n icon: [448, 512, [], \"f2b9\", \"M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faAddressCard = {\n prefix: 'fas',\n iconName: 'address-card',\n icon: [576, 512, [], \"f2bb\", \"M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faAdjust = {\n prefix: 'fas',\n iconName: 'adjust',\n icon: [512, 512, [], \"f042\", \"M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z\"]\n};\nvar faAirFreshener = {\n prefix: 'fas',\n iconName: 'air-freshener',\n icon: [512, 512, [], \"f5d0\", \"M224 160H96C43 160 0 203 0 256V480C0 497.625 14.375 512 32 512H288C305.625 512 320 497.625 320 480V256C320 203 277 160 224 160ZM160 416C115.875 416 80 380.125 80 336S115.875 256 160 256S240 291.875 240 336S204.125 416 160 416ZM224 32C224 14.375 209.625 0 192 0H128C110.375 0 96 14.375 96 32V128H224V32ZM381.781 51.578C383 50.969 384 49.359 384 48C384 46.625 383 45.031 381.781 44.422L352 32L339.562 2.219C338.969 1 337.375 0 336 0S333.031 1 332.406 2.219L320 32L290.219 44.422C289 45.031 288 46.625 288 48C288 49.359 289 50.969 290.219 51.578L320 64L332.406 93.781C333.031 95 334.625 96 336 96S338.969 95 339.562 93.781L352 64L381.781 51.578ZM448 64L460.406 93.781C461.031 95 462.625 96 464 96S466.969 95 467.562 93.781L480 64L509.781 51.578C511 50.969 512 49.359 512 48C512 46.625 511 45.031 509.781 44.422L480 32L467.562 2.219C466.969 1 465.375 0 464 0S461.031 1 460.406 2.219L448 32L418.219 44.422C417 45.031 416 46.625 416 48C416 49.359 417 50.969 418.219 51.578L448 64ZM480 224L467.562 194.219C466.969 193 465.375 192 464 192S461.031 193 460.406 194.219L448 224L418.219 236.422C417 237.031 416 238.625 416 240C416 241.359 417 242.969 418.219 243.578L448 256L460.406 285.781C461.031 287 462.625 288 464 288S466.969 287 467.562 285.781L480 256L509.781 243.578C511 242.969 512 241.359 512 240C512 238.625 511 237.031 509.781 236.422L480 224ZM445.781 147.578C447 146.969 448 145.359 448 144C448 142.625 447 141.031 445.781 140.422L416 128L403.562 98.219C402.969 97 401.375 96 400 96S397.031 97 396.406 98.219L384 128L354.219 140.422C353 141.031 352 142.625 352 144C352 145.359 353 146.969 354.219 147.578L384 160L396.406 189.781C397.031 191 398.625 192 400 192S402.969 191 403.562 189.781L416 160L445.781 147.578Z\"]\n};\nvar faAlignCenter = {\n prefix: 'fas',\n iconName: 'align-center',\n icon: [448, 512, [], \"f037\", \"M432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM108.1 96h231.81A12.09 12.09 0 0 0 352 83.9V44.09A12.09 12.09 0 0 0 339.91 32H108.1A12.09 12.09 0 0 0 96 44.09V83.9A12.1 12.1 0 0 0 108.1 96zm231.81 256A12.09 12.09 0 0 0 352 339.9v-39.81A12.09 12.09 0 0 0 339.91 288H108.1A12.09 12.09 0 0 0 96 300.09v39.81a12.1 12.1 0 0 0 12.1 12.1z\"]\n};\nvar faAlignJustify = {\n prefix: 'fas',\n iconName: 'align-justify',\n icon: [448, 512, [], \"f039\", \"M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faAlignLeft = {\n prefix: 'fas',\n iconName: 'align-left',\n icon: [448, 512, [], \"f036\", \"M12.83 352h262.34A12.82 12.82 0 0 0 288 339.17v-38.34A12.82 12.82 0 0 0 275.17 288H12.83A12.82 12.82 0 0 0 0 300.83v38.34A12.82 12.82 0 0 0 12.83 352zm0-256h262.34A12.82 12.82 0 0 0 288 83.17V44.83A12.82 12.82 0 0 0 275.17 32H12.83A12.82 12.82 0 0 0 0 44.83v38.34A12.82 12.82 0 0 0 12.83 96zM432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faAlignRight = {\n prefix: 'fas',\n iconName: 'align-right',\n icon: [448, 512, [], \"f038\", \"M16 224h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm416 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-384H172.83A12.82 12.82 0 0 0 160 44.83v38.34A12.82 12.82 0 0 0 172.83 96h262.34A12.82 12.82 0 0 0 448 83.17V44.83A12.82 12.82 0 0 0 435.17 32zm0 256H172.83A12.82 12.82 0 0 0 160 300.83v38.34A12.82 12.82 0 0 0 172.83 352h262.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288z\"]\n};\nvar faAllergies = {\n prefix: 'fas',\n iconName: 'allergies',\n icon: [448, 512, [], \"f461\", \"M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faAmbulance = {\n prefix: 'fas',\n iconName: 'ambulance',\n icon: [640, 512, [], \"f0f9\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faAmericanSignLanguageInterpreting = {\n prefix: 'fas',\n iconName: 'american-sign-language-interpreting',\n icon: [640, 512, [], \"f2a3\", \"M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z\"]\n};\nvar faAnchor = {\n prefix: 'fas',\n iconName: 'anchor',\n icon: [576, 512, [], \"f13d\", \"M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z\"]\n};\nvar faAngleDoubleDown = {\n prefix: 'fas',\n iconName: 'angle-double-down',\n icon: [320, 512, [], \"f103\", \"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z\"]\n};\nvar faAngleDoubleLeft = {\n prefix: 'fas',\n iconName: 'angle-double-left',\n icon: [448, 512, [], \"f100\", \"M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z\"]\n};\nvar faAngleDoubleRight = {\n prefix: 'fas',\n iconName: 'angle-double-right',\n icon: [448, 512, [], \"f101\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"]\n};\nvar faAngleDoubleUp = {\n prefix: 'fas',\n iconName: 'angle-double-up',\n icon: [320, 512, [], \"f102\", \"M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z\"]\n};\nvar faAngleDown = {\n prefix: 'fas',\n iconName: 'angle-down',\n icon: [320, 512, [], \"f107\", \"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\"]\n};\nvar faAngleLeft = {\n prefix: 'fas',\n iconName: 'angle-left',\n icon: [256, 512, [], \"f104\", \"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"]\n};\nvar faAngleRight = {\n prefix: 'fas',\n iconName: 'angle-right',\n icon: [256, 512, [], \"f105\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"]\n};\nvar faAngleUp = {\n prefix: 'fas',\n iconName: 'angle-up',\n icon: [320, 512, [], \"f106\", \"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"]\n};\nvar faAngry = {\n prefix: 'fas',\n iconName: 'angry',\n icon: [496, 512, [], \"f556\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z\"]\n};\nvar faAnkh = {\n prefix: 'fas',\n iconName: 'ankh',\n icon: [320, 512, [], \"f644\", \"M296 256h-44.62C272.46 222.01 288 181.65 288 144 288 55.63 230.69 0 160 0S32 55.63 32 144c0 37.65 15.54 78.01 36.62 112H24c-13.25 0-24 10.74-24 24v32c0 13.25 10.75 24 24 24h96v152c0 13.25 10.75 24 24 24h32c13.25 0 24-10.75 24-24V336h96c13.25 0 24-10.75 24-24v-32c0-13.26-10.75-24-24-24zM160 80c29.61 0 48 24.52 48 64 0 34.66-27.14 78.14-48 100.87-20.86-22.72-48-66.21-48-100.87 0-39.48 18.39-64 48-64z\"]\n};\nvar faAppleAlt = {\n prefix: 'fas',\n iconName: 'apple-alt',\n icon: [448, 512, [], \"f5d1\", \"M350.85 129c25.97 4.67 47.27 18.67 63.92 42 14.65 20.67 24.64 46.67 29.96 78 4.67 28.67 4.32 57.33-1 86-7.99 47.33-23.97 87-47.94 119-28.64 38.67-64.59 58-107.87 58-10.66 0-22.3-3.33-34.96-10-8.66-5.33-18.31-8-28.97-8s-20.3 2.67-28.97 8c-12.66 6.67-24.3 10-34.96 10-43.28 0-79.23-19.33-107.87-58-23.97-32-39.95-71.67-47.94-119-5.32-28.67-5.67-57.33-1-86 5.32-31.33 15.31-57.33 29.96-78 16.65-23.33 37.95-37.33 63.92-42 15.98-2.67 37.95-.33 65.92 7 23.97 6.67 44.28 14.67 60.93 24 16.65-9.33 36.96-17.33 60.93-24 27.98-7.33 49.96-9.67 65.94-7zm-54.94-41c-9.32 8.67-21.65 15-36.96 19-10.66 3.33-22.3 5-34.96 5l-14.98-1c-1.33-9.33-1.33-20 0-32 2.67-24 10.32-42.33 22.97-55 9.32-8.67 21.65-15 36.96-19 10.66-3.33 22.3-5 34.96-5l14.98 1 1 15c0 12.67-1.67 24.33-4.99 35-3.99 15.33-10.31 27.67-18.98 37z\"]\n};\nvar faArchive = {\n prefix: 'fas',\n iconName: 'archive',\n icon: [512, 512, [], \"f187\", \"M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z\"]\n};\nvar faArchway = {\n prefix: 'fas',\n iconName: 'archway',\n icon: [576, 512, [], \"f557\", \"M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faArrowAltCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-down',\n icon: [512, 512, [], \"f358\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z\"]\n};\nvar faArrowAltCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-left',\n icon: [512, 512, [], \"f359\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z\"]\n};\nvar faArrowAltCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-right',\n icon: [512, 512, [], \"f35a\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\"]\n};\nvar faArrowAltCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-up',\n icon: [512, 512, [], \"f35b\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z\"]\n};\nvar faArrowCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-circle-down',\n icon: [512, 512, [], \"f0ab\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z\"]\n};\nvar faArrowCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-circle-left',\n icon: [512, 512, [], \"f0a8\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z\"]\n};\nvar faArrowCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-circle-right',\n icon: [512, 512, [], \"f0a9\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z\"]\n};\nvar faArrowCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-circle-up',\n icon: [512, 512, [], \"f0aa\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z\"]\n};\nvar faArrowDown = {\n prefix: 'fas',\n iconName: 'arrow-down',\n icon: [448, 512, [], \"f063\", \"M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z\"]\n};\nvar faArrowLeft = {\n prefix: 'fas',\n iconName: 'arrow-left',\n icon: [448, 512, [], \"f060\", \"M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z\"]\n};\nvar faArrowRight = {\n prefix: 'fas',\n iconName: 'arrow-right',\n icon: [448, 512, [], \"f061\", \"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"]\n};\nvar faArrowUp = {\n prefix: 'fas',\n iconName: 'arrow-up',\n icon: [448, 512, [], \"f062\", \"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"]\n};\nvar faArrowsAlt = {\n prefix: 'fas',\n iconName: 'arrows-alt',\n icon: [512, 512, [], \"f0b2\", \"M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z\"]\n};\nvar faArrowsAltH = {\n prefix: 'fas',\n iconName: 'arrows-alt-h',\n icon: [512, 512, [], \"f337\", \"M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z\"]\n};\nvar faArrowsAltV = {\n prefix: 'fas',\n iconName: 'arrows-alt-v',\n icon: [256, 512, [], \"f338\", \"M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z\"]\n};\nvar faAssistiveListeningSystems = {\n prefix: 'fas',\n iconName: 'assistive-listening-systems',\n icon: [512, 512, [], \"f2a2\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"]\n};\nvar faAsterisk = {\n prefix: 'fas',\n iconName: 'asterisk',\n icon: [512, 512, [], \"f069\", \"M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z\"]\n};\nvar faAt = {\n prefix: 'fas',\n iconName: 'at',\n icon: [512, 512, [], \"f1fa\", \"M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z\"]\n};\nvar faAtlas = {\n prefix: 'fas',\n iconName: 'atlas',\n icon: [448, 512, [], \"f558\", \"M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z\"]\n};\nvar faAtom = {\n prefix: 'fas',\n iconName: 'atom',\n icon: [448, 512, [], \"f5d2\", \"M223.99908,224a32,32,0,1,0,32.00782,32A32.06431,32.06431,0,0,0,223.99908,224Zm214.172-96c-10.877-19.5-40.50979-50.75-116.27544-41.875C300.39168,34.875,267.63386,0,223.99908,0s-76.39066,34.875-97.89653,86.125C50.3369,77.375,20.706,108.5,9.82907,128-6.54984,157.375-5.17484,201.125,34.958,256-5.17484,310.875-6.54984,354.625,9.82907,384c29.13087,52.375,101.64652,43.625,116.27348,41.875C147.60842,477.125,180.36429,512,223.99908,512s76.3926-34.875,97.89652-86.125c14.62891,1.75,87.14456,10.5,116.27544-41.875C454.55,354.625,453.175,310.875,413.04017,256,453.175,201.125,454.55,157.375,438.171,128ZM63.33886,352c-4-7.25-.125-24.75,15.00391-48.25,6.87695,6.5,14.12891,12.875,21.88087,19.125,1.625,13.75,4,27.125,6.75,40.125C82.34472,363.875,67.09081,358.625,63.33886,352Zm36.88478-162.875c-7.752,6.25-15.00392,12.625-21.88087,19.125-15.12891-23.5-19.00392-41-15.00391-48.25,3.377-6.125,16.37891-11.5,37.88478-11.5,1.75,0,3.875.375,5.75.375C104.09864,162.25,101.84864,175.625,100.22364,189.125ZM223.99908,64c9.50195,0,22.25586,13.5,33.88282,37.25-11.252,3.75-22.50391,8-33.88282,12.875-11.377-4.875-22.62892-9.125-33.88283-12.875C201.74516,77.5,214.49712,64,223.99908,64Zm0,384c-9.502,0-22.25392-13.5-33.88283-37.25,11.25391-3.75,22.50587-8,33.88283-12.875C235.378,402.75,246.62994,407,257.8819,410.75,246.25494,434.5,233.501,448,223.99908,448Zm0-112a80,80,0,1,1,80-80A80.00023,80.00023,0,0,1,223.99908,336ZM384.6593,352c-3.625,6.625-19.00392,11.875-43.63479,11,2.752-13,5.127-26.375,6.752-40.125,7.75195-6.25,15.00391-12.625,21.87891-19.125C384.7843,327.25,388.6593,344.75,384.6593,352ZM369.65538,208.25c-6.875-6.5-14.127-12.875-21.87891-19.125-1.625-13.5-3.875-26.875-6.752-40.25,1.875,0,4.002-.375,5.752-.375,21.50391,0,34.50782,5.375,37.88283,11.5C388.6593,167.25,384.7843,184.75,369.65538,208.25Z\"]\n};\nvar faAudioDescription = {\n prefix: 'fas',\n iconName: 'audio-description',\n icon: [512, 512, [], \"f29e\", \"M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z\"]\n};\nvar faAward = {\n prefix: 'fas',\n iconName: 'award',\n icon: [384, 512, [], \"f559\", \"M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z\"]\n};\nvar faBaby = {\n prefix: 'fas',\n iconName: 'baby',\n icon: [384, 512, [], \"f77c\", \"M192 160c44.2 0 80-35.8 80-80S236.2 0 192 0s-80 35.8-80 80 35.8 80 80 80zm-53.4 248.8l25.6-32-61.5-51.2L56.8 383c-11.4 14.2-11.7 34.4-.8 49l48 64c7.9 10.5 19.9 16 32 16 8.3 0 16.8-2.6 24-8 17.7-13.2 21.2-38.3 8-56l-29.4-39.2zm142.7-83.2l-61.5 51.2 25.6 32L216 448c-13.2 17.7-9.7 42.8 8 56 7.2 5.4 15.6 8 24 8 12.2 0 24.2-5.5 32-16l48-64c10.9-14.6 10.6-34.8-.8-49l-45.9-57.4zM376.7 145c-12.7-18.1-37.6-22.4-55.7-9.8l-40.6 28.5c-52.7 37-124.2 37-176.8 0L63 135.3C44.9 122.6 20 127 7.3 145-5.4 163.1-1 188 17 200.7l40.6 28.5c17 11.9 35.4 20.9 54.4 27.9V288h160v-30.8c19-7 37.4-16 54.4-27.9l40.6-28.5c18.1-12.8 22.4-37.7 9.7-55.8z\"]\n};\nvar faBabyCarriage = {\n prefix: 'fas',\n iconName: 'baby-carriage',\n icon: [512, 512, [], \"f77d\", \"M144.8 17c-11.3-17.8-37.2-22.8-54-9.4C35.3 51.9 0 118 0 192h256L144.8 17zM496 96h-48c-35.3 0-64 28.7-64 64v64H0c0 50.6 23 96.4 60.3 130.7C25.7 363.6 0 394.7 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-8.9-1.8-17.2-4.4-25.2 21.6 5.9 44.6 9.2 68.4 9.2s46.9-3.3 68.4-9.2c-2.7 8-4.4 16.3-4.4 25.2 0 44.2 35.8 80 80 80s80-35.8 80-80c0-37.3-25.7-68.4-60.3-77.3C425 320.4 448 274.6 448 224v-64h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM80 464c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm320-32c0 17.6-14.4 32-32 32s-32-14.4-32-32 14.4-32 32-32 32 14.4 32 32z\"]\n};\nvar faBackspace = {\n prefix: 'fas',\n iconName: 'backspace',\n icon: [640, 512, [], \"f55a\", \"M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z\"]\n};\nvar faBackward = {\n prefix: 'fas',\n iconName: 'backward',\n icon: [512, 512, [], \"f04a\", \"M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z\"]\n};\nvar faBacon = {\n prefix: 'fas',\n iconName: 'bacon',\n icon: [576, 512, [], \"f7e5\", \"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\"]\n};\nvar faBacteria = {\n prefix: 'fas',\n iconName: 'bacteria',\n icon: [640, 512, [], \"e059\", \"M272.35,226.4A17.71,17.71,0,0,0,281.46,203l-4-9.08a121.29,121.29,0,0,1,12.36-3.08A83.34,83.34,0,0,0,323.57,177l10,9a17.76,17.76,0,1,0,23.92-26.27l-9.72-8.76a83.12,83.12,0,0,0,11.65-48.18l11.85-3.51a17.73,17.73,0,1,0-10.15-34l-11.34,3.36a84,84,0,0,0-36.38-35.57l2.84-10.85a17.8,17.8,0,0,0-34.47-8.93l-2.82,10.78a83.25,83.25,0,0,0-16.74,1.1C250.83,27,240,30.22,229.1,33.39l-3.38-9.46a17.8,17.8,0,0,0-33.56,11.89l3.49,9.8a286.74,286.74,0,0,0-43.94,23.57l-6.32-8.43a17.9,17.9,0,0,0-24.94-3.6A17.69,17.69,0,0,0,116.84,82l6.45,8.61a286.59,286.59,0,0,0-34.95,35.33l-8.82-6.42a17.84,17.84,0,0,0-24.89,3.86,17.66,17.66,0,0,0,3.88,24.77l8.88,6.47a286.6,286.6,0,0,0-23,43.91l-10.48-3.59a17.73,17.73,0,1,0-11.59,33.52L32.67,232c-2.79,10-5.79,19.84-7.52,30.22a83.16,83.16,0,0,0-.82,19l-11.58,3.43a17.73,17.73,0,1,0,10.13,34l11.27-3.33a83.51,83.51,0,0,0,36.39,35.43l-2.88,11.06a17.81,17.81,0,0,0,34.48,8.92l2.87-11c1,0,2.07.26,3.1.26a83.39,83.39,0,0,0,45.65-13.88l8.59,8.8a17.77,17.77,0,0,0,25.56-24.7l-9.14-9.37a83.41,83.41,0,0,0,12.08-31.05,119.08,119.08,0,0,1,3.87-15.53l9,4.22a17.74,17.74,0,1,0,15.15-32.09l-8.8-4.11c.67-1,1.2-2.08,1.9-3.05a119.89,119.89,0,0,1,7.87-9.41,121.73,121.73,0,0,1,11.65-11.4,119.49,119.49,0,0,1,9.94-7.82c1.12-.77,2.32-1.42,3.47-2.15l3.92,8.85a17.86,17.86,0,0,0,16.32,10.58A18.14,18.14,0,0,0,272.35,226.4ZM128,256a32,32,0,1,1,32-32A32,32,0,0,1,128,256Zm80-96a16,16,0,1,1,16-16A16,16,0,0,1,208,160Zm431.26,45.3a17.79,17.79,0,0,0-17.06-12.69,17.55,17.55,0,0,0-5.08.74l-11.27,3.33a83.61,83.61,0,0,0-36.39-35.43l2.88-11.06a17.81,17.81,0,0,0-34.48-8.91l-2.87,11c-1,0-2.07-.26-3.1-.26a83.32,83.32,0,0,0-45.65,13.89l-8.59-8.81a17.77,17.77,0,0,0-25.56,24.7l9.14,9.37a83.28,83.28,0,0,0-12.08,31.06,119.34,119.34,0,0,1-3.87,15.52l-9-4.22a17.74,17.74,0,1,0-15.15,32.09l8.8,4.11c-.67,1-1.2,2.08-1.89,3.05a117.71,117.71,0,0,1-7.94,9.47,119,119,0,0,1-11.57,11.33,121.59,121.59,0,0,1-10,7.83c-1.12.77-2.32,1.42-3.47,2.15l-3.92-8.85a17.86,17.86,0,0,0-16.32-10.58,18.14,18.14,0,0,0-7.18,1.5A17.71,17.71,0,0,0,358.54,309l4,9.08a118.71,118.71,0,0,1-12.36,3.08,83.34,83.34,0,0,0-33.77,13.9l-10-9a17.77,17.77,0,1,0-23.92,26.28l9.72,8.75a83.12,83.12,0,0,0-11.65,48.18l-11.86,3.51a17.73,17.73,0,1,0,10.16,34l11.34-3.36A84,84,0,0,0,326.61,479l-2.84,10.85a17.8,17.8,0,0,0,34.47,8.93L361.06,488a83.3,83.3,0,0,0,16.74-1.1c11.37-1.89,22.24-5.07,33.1-8.24l3.38,9.46a17.8,17.8,0,0,0,33.56-11.89l-3.49-9.79a287.66,287.66,0,0,0,43.94-23.58l6.32,8.43a17.88,17.88,0,0,0,24.93,3.6A17.67,17.67,0,0,0,523.16,430l-6.45-8.61a287.37,287.37,0,0,0,34.95-35.34l8.82,6.42a17.76,17.76,0,1,0,21-28.63l-8.88-6.46a287.17,287.17,0,0,0,23-43.92l10.48,3.59a17.73,17.73,0,1,0,11.59-33.52L607.33,280c2.79-10,5.79-19.84,7.52-30.21a83.27,83.27,0,0,0,.82-19.05l11.58-3.43A17.7,17.7,0,0,0,639.26,205.3ZM416,416a32,32,0,1,1,32-32A32,32,0,0,1,416,416Z\"]\n};\nvar faBacterium = {\n prefix: 'fas',\n iconName: 'bacterium',\n icon: [512, 512, [], \"e05a\", \"M511,102.93A23.76,23.76,0,0,0,481.47,87l-15.12,4.48a111.85,111.85,0,0,0-48.5-47.42l3.79-14.47a23.74,23.74,0,0,0-46-11.91l-3.76,14.37a111.94,111.94,0,0,0-22.33,1.47,386.74,386.74,0,0,0-44.33,10.41l-4.3-12a23.74,23.74,0,0,0-44.75,15.85l4.3,12.05a383.4,383.4,0,0,0-58.69,31.83l-8-10.63a23.85,23.85,0,0,0-33.24-4.8,23.57,23.57,0,0,0-4.83,33.09l8,10.63a386.14,386.14,0,0,0-46.7,47.44l-11-8a23.68,23.68,0,1,0-28,38.17l11.09,8.06a383.45,383.45,0,0,0-30.92,58.75l-12.93-4.43a23.65,23.65,0,1,0-15.47,44.69l13,4.48a385.81,385.81,0,0,0-9.3,40.53A111.58,111.58,0,0,0,32.44,375L17,379.56a23.64,23.64,0,0,0,13.51,45.31l15-4.44a111.49,111.49,0,0,0,48.53,47.24l-3.85,14.75a23.66,23.66,0,0,0,17,28.83,24.7,24.7,0,0,0,6,.75,23.73,23.73,0,0,0,23-17.7L140,479.67c1.37.05,2.77.35,4.13.35A111.22,111.22,0,0,0,205,461.5l11.45,11.74a23.7,23.7,0,0,0,34.08-32.93l-12.19-12.5a111,111,0,0,0,16.11-41.4,158.69,158.69,0,0,1,5.16-20.71l12,5.64a23.66,23.66,0,1,0,20.19-42.79l-11.72-5.49c.89-1.32,1.59-2.77,2.52-4.06a157.86,157.86,0,0,1,10.46-12.49,159.5,159.5,0,0,1,15.59-15.28,162.18,162.18,0,0,1,13.23-10.4c1.5-1,3.1-1.89,4.63-2.87l5.23,11.8a23.74,23.74,0,0,0,43.48-19.08l-5.36-12.11a158.87,158.87,0,0,1,16.49-4.1,111,111,0,0,0,45-18.54l13.33,12a23.69,23.69,0,1,0,31.88-35l-12.94-11.67A110.83,110.83,0,0,0,479.21,137L495,132.32A23.61,23.61,0,0,0,511,102.93ZM160,368a48,48,0,1,1,48-48A48,48,0,0,1,160,368Zm80-136a24,24,0,1,1,24-24A24,24,0,0,1,240,232Z\"]\n};\nvar faBahai = {\n prefix: 'fas',\n iconName: 'bahai',\n icon: [512, 512, [], \"f666\", \"M496.25 202.52l-110-15.44 41.82-104.34c6.67-16.64-11.6-32.18-26.59-22.63L307.44 120 273.35 12.82C270.64 4.27 263.32 0 256 0c-7.32 0-14.64 4.27-17.35 12.82l-34.09 107.19-94.04-59.89c-14.99-9.55-33.25 5.99-26.59 22.63l41.82 104.34-110 15.43c-17.54 2.46-21.68 26.27-6.03 34.67l98.16 52.66-74.48 83.54c-10.92 12.25-1.72 30.93 13.29 30.93 1.31 0 2.67-.14 4.07-.45l108.57-23.65-4.11 112.55c-.43 11.65 8.87 19.22 18.41 19.22 5.15 0 10.39-2.21 14.2-7.18l68.18-88.9 68.18 88.9c3.81 4.97 9.04 7.18 14.2 7.18 9.54 0 18.84-7.57 18.41-19.22l-4.11-112.55 108.57 23.65c17.36 3.76 29.21-17.2 17.35-30.49l-74.48-83.54 98.16-52.66c15.64-8.39 11.5-32.2-6.04-34.66zM338.51 311.68l-51.89-11.3 1.97 53.79L256 311.68l-32.59 42.49 1.96-53.79-51.89 11.3 35.6-39.93-46.92-25.17 52.57-7.38-19.99-49.87 44.95 28.62L256 166.72l16.29 51.23 44.95-28.62-19.99 49.87 52.57 7.38-46.92 25.17 35.61 39.93z\"]\n};\nvar faBalanceScale = {\n prefix: 'fas',\n iconName: 'balance-scale',\n icon: [640, 512, [], \"f24e\", \"M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faBalanceScaleLeft = {\n prefix: 'fas',\n iconName: 'balance-scale-left',\n icon: [640, 512, [], \"f515\", \"M528 448H352V153.25c20.42-8.94 36.1-26.22 43.38-47.47l132-44.26c8.38-2.81 12.89-11.88 10.08-20.26l-10.17-30.34C524.48 2.54 515.41-1.97 507.03.84L389.11 40.37C375.3 16.36 349.69 0 320 0c-44.18 0-80 35.82-80 80 0 3.43.59 6.71 1.01 10.03l-128.39 43.05c-8.38 2.81-12.89 11.88-10.08 20.26l10.17 30.34c2.81 8.38 11.88 12.89 20.26 10.08l142.05-47.63c4.07 2.77 8.43 5.12 12.99 7.12V496c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16v-32c-.01-8.84-7.17-16-16.01-16zm111.98-144c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 288l72-144 72 144H440zm-269.07-37.51c-17.65-35.29-68.19-35.36-85.87 0C-2.06 424.75.02 416.33.02 432H0c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-16.18 1.34-8.73-85.05-181.51zM56 416l72-144 72 144H56z\"]\n};\nvar faBalanceScaleRight = {\n prefix: 'fas',\n iconName: 'balance-scale-right',\n icon: [640, 512, [], \"f516\", \"M96 464v32c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16V153.25c4.56-2 8.92-4.35 12.99-7.12l142.05 47.63c8.38 2.81 17.45-1.71 20.26-10.08l10.17-30.34c2.81-8.38-1.71-17.45-10.08-20.26l-128.4-43.05c.42-3.32 1.01-6.6 1.01-10.03 0-44.18-35.82-80-80-80-29.69 0-55.3 16.36-69.11 40.37L132.96.83c-8.38-2.81-17.45 1.71-20.26 10.08l-10.17 30.34c-2.81 8.38 1.71 17.45 10.08 20.26l132 44.26c7.28 21.25 22.96 38.54 43.38 47.47V448H112c-8.84 0-16 7.16-16 16zM0 304c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0C-1.32 295.27.02 287.82.02 304H0zm56-16l72-144 72 144H56zm328.02 144H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0-86.38 172.78-85.04 165.33-85.04 181.51zM440 416l72-144 72 144H440z\"]\n};\nvar faBan = {\n prefix: 'fas',\n iconName: 'ban',\n icon: [512, 512, [], \"f05e\", \"M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z\"]\n};\nvar faBandAid = {\n prefix: 'fas',\n iconName: 'band-aid',\n icon: [640, 512, [], \"f462\", \"M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z\"]\n};\nvar faBarcode = {\n prefix: 'fas',\n iconName: 'barcode',\n icon: [512, 512, [], \"f02a\", \"M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z\"]\n};\nvar faBars = {\n prefix: 'fas',\n iconName: 'bars',\n icon: [448, 512, [], \"f0c9\", \"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"]\n};\nvar faBaseballBall = {\n prefix: 'fas',\n iconName: 'baseball-ball',\n icon: [496, 512, [], \"f433\", \"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\"]\n};\nvar faBasketballBall = {\n prefix: 'fas',\n iconName: 'basketball-ball',\n icon: [496, 512, [], \"f434\", \"M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z\"]\n};\nvar faBath = {\n prefix: 'fas',\n iconName: 'bath',\n icon: [512, 512, [], \"f2cd\", \"M32,384a95.4,95.4,0,0,0,32,71.09V496a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V480H384v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V455.09A95.4,95.4,0,0,0,480,384V336H32ZM496,256H80V69.25a21.26,21.26,0,0,1,36.28-15l19.27,19.26c-13.13,29.88-7.61,59.11,8.62,79.73l-.17.17A16,16,0,0,0,144,176l11.31,11.31a16,16,0,0,0,22.63,0L283.31,81.94a16,16,0,0,0,0-22.63L272,48a16,16,0,0,0-22.62,0l-.17.17c-20.62-16.23-49.83-21.75-79.73-8.62L150.22,20.28A69.25,69.25,0,0,0,32,69.25V256H16A16,16,0,0,0,0,272v16a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V272A16,16,0,0,0,496,256Z\"]\n};\nvar faBatteryEmpty = {\n prefix: 'fas',\n iconName: 'battery-empty',\n icon: [640, 512, [], \"f244\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z\"]\n};\nvar faBatteryFull = {\n prefix: 'fas',\n iconName: 'battery-full',\n icon: [640, 512, [], \"f240\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z\"]\n};\nvar faBatteryHalf = {\n prefix: 'fas',\n iconName: 'battery-half',\n icon: [640, 512, [], \"f242\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z\"]\n};\nvar faBatteryQuarter = {\n prefix: 'fas',\n iconName: 'battery-quarter',\n icon: [640, 512, [], \"f243\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z\"]\n};\nvar faBatteryThreeQuarters = {\n prefix: 'fas',\n iconName: 'battery-three-quarters',\n icon: [640, 512, [], \"f241\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z\"]\n};\nvar faBed = {\n prefix: 'fas',\n iconName: 'bed',\n icon: [640, 512, [], \"f236\", \"M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z\"]\n};\nvar faBeer = {\n prefix: 'fas',\n iconName: 'beer',\n icon: [448, 512, [], \"f0fc\", \"M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z\"]\n};\nvar faBell = {\n prefix: 'fas',\n iconName: 'bell',\n icon: [448, 512, [], \"f0f3\", \"M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z\"]\n};\nvar faBellSlash = {\n prefix: 'fas',\n iconName: 'bell-slash',\n icon: [640, 512, [], \"f1f6\", \"M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z\"]\n};\nvar faBezierCurve = {\n prefix: 'fas',\n iconName: 'bezier-curve',\n icon: [640, 512, [], \"f55b\", \"M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faBible = {\n prefix: 'fas',\n iconName: 'bible',\n icon: [448, 512, [], \"f647\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM144 144c0-8.84 7.16-16 16-16h48V80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v48h48c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-48v112c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V192h-48c-8.84 0-16-7.16-16-16v-32zm236.8 304H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faBicycle = {\n prefix: 'fas',\n iconName: 'bicycle',\n icon: [640, 512, [], \"f206\", \"M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z\"]\n};\nvar faBiking = {\n prefix: 'fas',\n iconName: 'biking',\n icon: [640, 512, [], \"f84a\", \"M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z\"]\n};\nvar faBinoculars = {\n prefix: 'fas',\n iconName: 'binoculars',\n icon: [512, 512, [], \"f1e5\", \"M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z\"]\n};\nvar faBiohazard = {\n prefix: 'fas',\n iconName: 'biohazard',\n icon: [576, 512, [], \"f780\", \"M287.9 112c18.6 0 36.2 3.8 52.8 9.6 13.3-10.3 23.6-24.3 29.5-40.7-25.2-10.9-53-17-82.2-17-29.1 0-56.9 6-82.1 16.9 5.9 16.4 16.2 30.4 29.5 40.7 16.5-5.7 34-9.5 52.5-9.5zM163.6 438.7c12-11.8 20.4-26.4 24.5-42.4-32.9-26.4-54.8-65.3-58.9-109.6-8.5-2.8-17.2-4.6-26.4-4.6-7.6 0-15.2 1-22.5 3.1 4.1 62.8 35.8 118 83.3 153.5zm224.2-42.6c4.1 16 12.5 30.7 24.5 42.5 47.4-35.5 79.1-90.7 83-153.5-7.2-2-14.7-3-22.2-3-9.2 0-18 1.9-26.6 4.7-4.1 44.2-26 82.9-58.7 109.3zm113.5-205c-17.6-10.4-36.3-16.6-55.3-19.9 6-17.7 10-36.4 10-56.2 0-41-14.5-80.8-41-112.2-2.5-3-6.6-3.7-10-1.8-3.3 1.9-4.8 6-3.6 9.7 4.5 13.8 6.6 26.3 6.6 38.5 0 67.8-53.8 122.9-120 122.9S168 117 168 49.2c0-12.1 2.2-24.7 6.6-38.5 1.2-3.7-.3-7.8-3.6-9.7-3.4-1.9-7.5-1.2-10 1.8C134.6 34.2 120 74 120 115c0 19.8 3.9 38.5 10 56.2-18.9 3.3-37.7 9.5-55.3 19.9-34.6 20.5-61 53.3-74.3 92.4-1.3 3.7.2 7.7 3.5 9.8 3.3 2 7.5 1.3 10-1.6 9.4-10.8 19-19.1 29.2-25.1 57.3-33.9 130.8-13.7 163.9 45 33.1 58.7 13.4 134-43.9 167.9-10.2 6.1-22 10.4-35.8 13.4-3.7.8-6.4 4.2-6.4 8.1.1 4 2.7 7.3 6.5 8 39.7 7.8 80.6.8 115.2-19.7 18-10.6 32.9-24.5 45.3-40.1 12.4 15.6 27.3 29.5 45.3 40.1 34.6 20.5 75.5 27.5 115.2 19.7 3.8-.7 6.4-4 6.5-8 0-3.9-2.6-7.3-6.4-8.1-13.9-2.9-25.6-7.3-35.8-13.4-57.3-33.9-77-109.2-43.9-167.9s106.6-78.9 163.9-45c10.2 6.1 19.8 14.3 29.2 25.1 2.5 2.9 6.7 3.6 10 1.6s4.8-6.1 3.5-9.8c-13.1-39.1-39.5-72-74.1-92.4zm-213.4 129c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faBirthdayCake = {\n prefix: 'fas',\n iconName: 'birthday-cake',\n icon: [448, 512, [], \"f1fd\", \"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\"]\n};\nvar faBlender = {\n prefix: 'fas',\n iconName: 'blender',\n icon: [512, 512, [], \"f517\", \"M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z\"]\n};\nvar faBlenderPhone = {\n prefix: 'fas',\n iconName: 'blender-phone',\n icon: [576, 512, [], \"f6b6\", \"M392 64h166.54L576 0H192v352h288l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H392c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM158.8 335.01l-25.78-63.26c-2.78-6.81-9.8-10.99-17.24-10.26l-45.03 4.42c-17.28-46.94-17.65-99.78 0-147.72l45.03 4.42c7.43.73 14.46-3.46 17.24-10.26l25.78-63.26c3.02-7.39.2-15.85-6.68-20.07l-39.28-24.1C98.51-3.87 80.09-.5 68.95 11.97c-92.57 103.6-92 259.55 2.1 362.49 9.87 10.8 29.12 12.48 41.65 4.8l39.41-24.18c6.89-4.22 9.7-12.67 6.69-20.07zM480 384H192c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-144 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBlind = {\n prefix: 'fas',\n iconName: 'blind',\n icon: [384, 512, [], \"f29d\", \"M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z\"]\n};\nvar faBlog = {\n prefix: 'fas',\n iconName: 'blog',\n icon: [512, 512, [], \"f781\", \"M172.2 226.8c-14.6-2.9-28.2 8.9-28.2 23.8V301c0 10.2 7.1 18.4 16.7 22 18.2 6.8 31.3 24.4 31.3 45 0 26.5-21.5 48-48 48s-48-21.5-48-48V120c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.7-24 24v248c0 89.5 82.1 160.2 175 140.7 54.4-11.4 98.3-55.4 109.7-109.7 17.4-82.9-37-157.2-112.5-172.2zM209 0c-9.2-.5-17 6.8-17 16v31.6c0 8.5 6.6 15.5 15 15.9 129.4 7 233.4 112 240.9 241.5.5 8.4 7.5 15 15.9 15h32.1c9.2 0 16.5-7.8 16-17C503.4 139.8 372.2 8.6 209 0zm.3 96c-9.3-.7-17.3 6.7-17.3 16.1v32.1c0 8.4 6.5 15.3 14.8 15.9 76.8 6.3 138 68.2 144.9 145.2.8 8.3 7.6 14.7 15.9 14.7h32.2c9.3 0 16.8-8 16.1-17.3-8.4-110.1-96.5-198.2-206.6-206.7z\"]\n};\nvar faBold = {\n prefix: 'fas',\n iconName: 'bold',\n icon: [384, 512, [], \"f032\", \"M333.49 238a122 122 0 0 0 27-65.21C367.87 96.49 308 32 233.42 32H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h31.87v288H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h209.32c70.8 0 134.14-51.75 141-122.4 4.74-48.45-16.39-92.06-50.83-119.6zM145.66 112h87.76a48 48 0 0 1 0 96h-87.76zm87.76 288h-87.76V288h87.76a56 56 0 0 1 0 112z\"]\n};\nvar faBolt = {\n prefix: 'fas',\n iconName: 'bolt',\n icon: [320, 512, [], \"f0e7\", \"M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z\"]\n};\nvar faBomb = {\n prefix: 'fas',\n iconName: 'bomb',\n icon: [512, 512, [], \"f1e2\", \"M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z\"]\n};\nvar faBone = {\n prefix: 'fas',\n iconName: 'bone',\n icon: [640, 512, [], \"f5d7\", \"M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z\"]\n};\nvar faBong = {\n prefix: 'fas',\n iconName: 'bong',\n icon: [448, 512, [], \"f55c\", \"M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z\"]\n};\nvar faBook = {\n prefix: 'fas',\n iconName: 'book',\n icon: [448, 512, [], \"f02d\", \"M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z\"]\n};\nvar faBookDead = {\n prefix: 'fas',\n iconName: 'book-dead',\n icon: [448, 512, [], \"f6b7\", \"M272 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm176 222.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM240 56c44.2 0 80 28.7 80 64 0 20.9-12.7 39.2-32 50.9V184c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16v-13.1c-19.3-11.7-32-30-32-50.9 0-35.3 35.8-64 80-64zM124.8 223.3l6.3-14.7c1.7-4.1 6.4-5.9 10.5-4.2l98.3 42.1 98.4-42.1c4.1-1.7 8.8.1 10.5 4.2l6.3 14.7c1.7 4.1-.1 8.8-4.2 10.5L280.6 264l70.3 30.1c4.1 1.7 5.9 6.4 4.2 10.5l-6.3 14.7c-1.7 4.1-6.4 5.9-10.5 4.2L240 281.4l-98.3 42.2c-4.1 1.7-8.8-.1-10.5-4.2l-6.3-14.7c-1.7-4.1.1-8.8 4.2-10.5l70.4-30.1-70.5-30.3c-4.1-1.7-5.9-6.4-4.2-10.5zm256 224.7H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8zM208 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16z\"]\n};\nvar faBookMedical = {\n prefix: 'fas',\n iconName: 'book-medical',\n icon: [448, 512, [], \"f7e6\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16q0-9.6-9.6-19.2c-3.2-16-3.2-60.8 0-73.6q9.6-4.8 9.6-19.2zM144 168a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8zm236.8 280H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8z\"]\n};\nvar faBookOpen = {\n prefix: 'fas',\n iconName: 'book-open',\n icon: [576, 512, [], \"f518\", \"M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z\"]\n};\nvar faBookReader = {\n prefix: 'fas',\n iconName: 'book-reader',\n icon: [512, 512, [], \"f5da\", \"M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z\"]\n};\nvar faBookmark = {\n prefix: 'fas',\n iconName: 'bookmark',\n icon: [384, 512, [], \"f02e\", \"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"]\n};\nvar faBorderAll = {\n prefix: 'fas',\n iconName: 'border-all',\n icon: [448, 512, [], \"f84c\", \"M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z\"]\n};\nvar faBorderNone = {\n prefix: 'fas',\n iconName: 'border-none',\n icon: [448, 512, [], \"f850\", \"M240 224h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-288 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM240 320h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-384h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM48 224H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBorderStyle = {\n prefix: 'fas',\n iconName: 'border-style',\n icon: [448, 512, [], \"f853\", \"M240 416h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm192 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H32A32 32 0 0 0 0 64v400a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V96h368a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBowlingBall = {\n prefix: 'fas',\n iconName: 'bowling-ball',\n icon: [496, 512, [], \"f436\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faBox = {\n prefix: 'fas',\n iconName: 'box',\n icon: [512, 512, [], \"f466\", \"M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z\"]\n};\nvar faBoxOpen = {\n prefix: 'fas',\n iconName: 'box-open',\n icon: [640, 512, [], \"f49e\", \"M425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9zm212.6-112.2L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9z\"]\n};\nvar faBoxTissue = {\n prefix: 'fas',\n iconName: 'box-tissue',\n icon: [512, 512, [], \"e05b\", \"M383.88,287.82l64-192H338.47a70.2,70.2,0,0,1-66.59-48,70.21,70.21,0,0,0-66.6-48H63.88l64,288Zm-384,192a32,32,0,0,0,32,32h448a32,32,0,0,0,32-32v-64H-.12Zm480-256H438.94l-21.33,64h14.27a16,16,0,0,1,0,32h-352a16,16,0,1,1,0-32H95.09l-14.22-64h-49a32,32,0,0,0-32,32v128h512v-128A32,32,0,0,0,479.88,223.82Z\"]\n};\nvar faBoxes = {\n prefix: 'fas',\n iconName: 'boxes',\n icon: [576, 512, [], \"f468\", \"M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z\"]\n};\nvar faBraille = {\n prefix: 'fas',\n iconName: 'braille',\n icon: [640, 512, [], \"f2a1\", \"M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faBrain = {\n prefix: 'fas',\n iconName: 'brain',\n icon: [576, 512, [], \"f5dc\", \"M208 0c-29.9 0-54.7 20.5-61.8 48.2-.8 0-1.4-.2-2.2-.2-35.3 0-64 28.7-64 64 0 4.8.6 9.5 1.7 14C52.5 138 32 166.6 32 200c0 12.6 3.2 24.3 8.3 34.9C16.3 248.7 0 274.3 0 304c0 33.3 20.4 61.9 49.4 73.9-.9 4.6-1.4 9.3-1.4 14.1 0 39.8 32.2 72 72 72 4.1 0 8.1-.5 12-1.2 9.6 28.5 36.2 49.2 68 49.2 39.8 0 72-32.2 72-72V64c0-35.3-28.7-64-64-64zm368 304c0-29.7-16.3-55.3-40.3-69.1 5.2-10.6 8.3-22.3 8.3-34.9 0-33.4-20.5-62-49.7-74 1-4.5 1.7-9.2 1.7-14 0-35.3-28.7-64-64-64-.8 0-1.5.2-2.2.2C422.7 20.5 397.9 0 368 0c-35.3 0-64 28.6-64 64v376c0 39.8 32.2 72 72 72 31.8 0 58.4-20.7 68-49.2 3.9.7 7.9 1.2 12 1.2 39.8 0 72-32.2 72-72 0-4.8-.5-9.5-1.4-14.1 29-12 49.4-40.6 49.4-73.9z\"]\n};\nvar faBreadSlice = {\n prefix: 'fas',\n iconName: 'bread-slice',\n icon: [576, 512, [], \"f7ec\", \"M288 0C108 0 0 93.4 0 169.14 0 199.44 24.24 224 64 224v256c0 17.67 16.12 32 36 32h376c19.88 0 36-14.33 36-32V224c39.76 0 64-24.56 64-54.86C576 93.4 468 0 288 0z\"]\n};\nvar faBriefcase = {\n prefix: 'fas',\n iconName: 'briefcase',\n icon: [512, 512, [], \"f0b1\", \"M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z\"]\n};\nvar faBriefcaseMedical = {\n prefix: 'fas',\n iconName: 'briefcase-medical',\n icon: [512, 512, [], \"f469\", \"M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z\"]\n};\nvar faBroadcastTower = {\n prefix: 'fas',\n iconName: 'broadcast-tower',\n icon: [640, 512, [], \"f519\", \"M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z\"]\n};\nvar faBroom = {\n prefix: 'fas',\n iconName: 'broom',\n icon: [640, 512, [], \"f51a\", \"M256.47 216.77l86.73 109.18s-16.6 102.36-76.57 150.12C206.66 523.85 0 510.19 0 510.19s3.8-23.14 11-55.43l94.62-112.17c3.97-4.7-.87-11.62-6.65-9.5l-60.4 22.09c14.44-41.66 32.72-80.04 54.6-97.47 59.97-47.76 163.3-40.94 163.3-40.94zM636.53 31.03l-19.86-25c-5.49-6.9-15.52-8.05-22.41-2.56l-232.48 177.8-34.14-42.97c-5.09-6.41-15.14-5.21-18.59 2.21l-25.33 54.55 86.73 109.18 58.8-12.45c8-1.69 11.42-11.2 6.34-17.6l-34.09-42.92 232.48-177.8c6.89-5.48 8.04-15.53 2.55-22.44z\"]\n};\nvar faBrush = {\n prefix: 'fas',\n iconName: 'brush',\n icon: [384, 512, [], \"f55d\", \"M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z\"]\n};\nvar faBug = {\n prefix: 'fas',\n iconName: 'bug',\n icon: [512, 512, [], \"f188\", \"M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z\"]\n};\nvar faBuilding = {\n prefix: 'fas',\n iconName: 'building',\n icon: [448, 512, [], \"f1ad\", \"M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z\"]\n};\nvar faBullhorn = {\n prefix: 'fas',\n iconName: 'bullhorn',\n icon: [576, 512, [], \"f0a1\", \"M576 240c0-23.63-12.95-44.04-32-55.12V32.01C544 23.26 537.02 0 512 0c-7.12 0-14.19 2.38-19.98 7.02l-85.03 68.03C364.28 109.19 310.66 128 256 128H64c-35.35 0-64 28.65-64 64v96c0 35.35 28.65 64 64 64h33.7c-1.39 10.48-2.18 21.14-2.18 32 0 39.77 9.26 77.35 25.56 110.94 5.19 10.69 16.52 17.06 28.4 17.06h74.28c26.05 0 41.69-29.84 25.9-50.56-16.4-21.52-26.15-48.36-26.15-77.44 0-11.11 1.62-21.79 4.41-32H256c54.66 0 108.28 18.81 150.98 52.95l85.03 68.03a32.023 32.023 0 0 0 19.98 7.02c24.92 0 32-22.78 32-32V295.13C563.05 284.04 576 263.63 576 240zm-96 141.42l-33.05-26.44C392.95 311.78 325.12 288 256 288v-96c69.12 0 136.95-23.78 190.95-66.98L480 98.58v282.84z\"]\n};\nvar faBullseye = {\n prefix: 'fas',\n iconName: 'bullseye',\n icon: [496, 512, [], \"f140\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 432c-101.69 0-184-82.29-184-184 0-101.69 82.29-184 184-184 101.69 0 184 82.29 184 184 0 101.69-82.29 184-184 184zm0-312c-70.69 0-128 57.31-128 128s57.31 128 128 128 128-57.31 128-128-57.31-128-128-128zm0 192c-35.29 0-64-28.71-64-64s28.71-64 64-64 64 28.71 64 64-28.71 64-64 64z\"]\n};\nvar faBurn = {\n prefix: 'fas',\n iconName: 'burn',\n icon: [384, 512, [], \"f46a\", \"M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z\"]\n};\nvar faBus = {\n prefix: 'fas',\n iconName: 'bus',\n icon: [512, 512, [], \"f207\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusAlt = {\n prefix: 'fas',\n iconName: 'bus-alt',\n icon: [512, 512, [], \"f55e\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusinessTime = {\n prefix: 'fas',\n iconName: 'business-time',\n icon: [640, 512, [], \"f64a\", \"M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z\"]\n};\nvar faCalculator = {\n prefix: 'fas',\n iconName: 'calculator',\n icon: [448, 512, [], \"f1ec\", \"M400 0H48C22.4 0 0 22.4 0 48v416c0 25.6 22.4 48 48 48h352c25.6 0 48-22.4 48-48V48c0-25.6-22.4-48-48-48zM128 435.2c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8V268.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v166.4zm0-256c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8V76.8C64 70.4 70.4 64 76.8 64h294.4c6.4 0 12.8 6.4 12.8 12.8v102.4z\"]\n};\nvar faCalendar = {\n prefix: 'fas',\n iconName: 'calendar',\n icon: [448, 512, [], \"f133\", \"M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z\"]\n};\nvar faCalendarAlt = {\n prefix: 'fas',\n iconName: 'calendar-alt',\n icon: [448, 512, [], \"f073\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarCheck = {\n prefix: 'fas',\n iconName: 'calendar-check',\n icon: [448, 512, [], \"f274\", \"M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z\"]\n};\nvar faCalendarDay = {\n prefix: 'fas',\n iconName: 'calendar-day',\n icon: [448, 512, [], \"f783\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarMinus = {\n prefix: 'fas',\n iconName: 'calendar-minus',\n icon: [448, 512, [], \"f272\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z\"]\n};\nvar faCalendarPlus = {\n prefix: 'fas',\n iconName: 'calendar-plus',\n icon: [448, 512, [], \"f271\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z\"]\n};\nvar faCalendarTimes = {\n prefix: 'fas',\n iconName: 'calendar-times',\n icon: [448, 512, [], \"f273\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z\"]\n};\nvar faCalendarWeek = {\n prefix: 'fas',\n iconName: 'calendar-week',\n icon: [448, 512, [], \"f784\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h288c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-64zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCamera = {\n prefix: 'fas',\n iconName: 'camera',\n icon: [512, 512, [], \"f030\", \"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"]\n};\nvar faCameraRetro = {\n prefix: 'fas',\n iconName: 'camera-retro',\n icon: [512, 512, [], \"f083\", \"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z\"]\n};\nvar faCampground = {\n prefix: 'fas',\n iconName: 'campground',\n icon: [640, 512, [], \"f6bb\", \"M624 448h-24.68L359.54 117.75l53.41-73.55c5.19-7.15 3.61-17.16-3.54-22.35l-25.9-18.79c-7.15-5.19-17.15-3.61-22.35 3.55L320 63.3 278.83 6.6c-5.19-7.15-15.2-8.74-22.35-3.55l-25.88 18.8c-7.15 5.19-8.74 15.2-3.54 22.35l53.41 73.55L40.68 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM320 288l116.36 160H203.64L320 288z\"]\n};\nvar faCandyCane = {\n prefix: 'fas',\n iconName: 'candy-cane',\n icon: [512, 512, [], \"f786\", \"M497.5 92C469.6 33.1 411.8 0 352.4 0c-27.9 0-56.2 7.3-81.8 22.6L243.1 39c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5l27.5-16.4c5.1-3.1 10.8-4.5 16.4-4.5 10.9 0 21.5 5.6 27.5 15.6 9.1 15.1 4.1 34.8-11 43.9L15.6 397.6c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5L428.6 301c71.7-42.9 104.6-133.5 68.9-209zm-177.7 13l-2.5 1.5L296.8 45c9.7-4.7 19.8-8.1 30.3-10.2l20.6 61.8c-9.8.8-19.4 3.3-27.9 8.4zM145.9 431.8l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm107.5-63.9l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zM364.3 302l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm20.4-197.3l46-46c8.4 6.5 16 14.1 22.6 22.6L407.6 127c-5.7-9.3-13.7-16.9-22.9-22.3zm82.1 107.8l-59.5-19.8c3.2-5.3 5.8-10.9 7.4-17.1 1.1-4.5 1.7-9.1 1.8-13.6l60.4 20.1c-2.1 10.4-5.5 20.6-10.1 30.4z\"]\n};\nvar faCannabis = {\n prefix: 'fas',\n iconName: 'cannabis',\n icon: [512, 512, [], \"f55f\", \"M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z\"]\n};\nvar faCapsules = {\n prefix: 'fas',\n iconName: 'capsules',\n icon: [576, 512, [], \"f46b\", \"M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z\"]\n};\nvar faCar = {\n prefix: 'fas',\n iconName: 'car',\n icon: [512, 512, [], \"f1b9\", \"M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarAlt = {\n prefix: 'fas',\n iconName: 'car-alt',\n icon: [480, 512, [], \"f5de\", \"M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarBattery = {\n prefix: 'fas',\n iconName: 'car-battery',\n icon: [512, 512, [], \"f5df\", \"M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faCarCrash = {\n prefix: 'fas',\n iconName: 'car-crash',\n icon: [640, 512, [], \"f5e1\", \"M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z\"]\n};\nvar faCarSide = {\n prefix: 'fas',\n iconName: 'car-side',\n icon: [640, 512, [], \"f5e4\", \"M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faCaravan = {\n prefix: 'fas',\n iconName: 'caravan',\n icon: [640, 512, [], \"f8ff\", \"M416,208a16,16,0,1,0,16,16A16,16,0,0,0,416,208ZM624,320H576V160A160,160,0,0,0,416,0H64A64,64,0,0,0,0,64V320a64,64,0,0,0,64,64H96a96,96,0,0,0,192,0H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM192,432a48,48,0,1,1,48-48A48.05,48.05,0,0,1,192,432Zm64-240a32,32,0,0,1-32,32H96a32,32,0,0,1-32-32V128A32,32,0,0,1,96,96H224a32,32,0,0,1,32,32ZM448,320H320V128a32,32,0,0,1,32-32h64a32,32,0,0,1,32,32Z\"]\n};\nvar faCaretDown = {\n prefix: 'fas',\n iconName: 'caret-down',\n icon: [320, 512, [], \"f0d7\", \"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"]\n};\nvar faCaretLeft = {\n prefix: 'fas',\n iconName: 'caret-left',\n icon: [192, 512, [], \"f0d9\", \"M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z\"]\n};\nvar faCaretRight = {\n prefix: 'fas',\n iconName: 'caret-right',\n icon: [192, 512, [], \"f0da\", \"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"]\n};\nvar faCaretSquareDown = {\n prefix: 'fas',\n iconName: 'caret-square-down',\n icon: [448, 512, [], \"f150\", \"M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z\"]\n};\nvar faCaretSquareLeft = {\n prefix: 'fas',\n iconName: 'caret-square-left',\n icon: [448, 512, [], \"f191\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z\"]\n};\nvar faCaretSquareRight = {\n prefix: 'fas',\n iconName: 'caret-square-right',\n icon: [448, 512, [], \"f152\", \"M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z\"]\n};\nvar faCaretSquareUp = {\n prefix: 'fas',\n iconName: 'caret-square-up',\n icon: [448, 512, [], \"f151\", \"M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z\"]\n};\nvar faCaretUp = {\n prefix: 'fas',\n iconName: 'caret-up',\n icon: [320, 512, [], \"f0d8\", \"M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z\"]\n};\nvar faCarrot = {\n prefix: 'fas',\n iconName: 'carrot',\n icon: [512, 512, [], \"f787\", \"M298.2 156.6c-52.7-25.7-114.5-10.5-150.2 32.8l55.2 55.2c6.3 6.3 6.3 16.4 0 22.6-3.1 3.1-7.2 4.7-11.3 4.7s-8.2-1.6-11.3-4.7L130.4 217 2.3 479.7c-2.9 6-3.1 13.3 0 19.7 5.4 11.1 18.9 15.7 30 10.3l133.6-65.2-49.2-49.2c-6.3-6.2-6.3-16.4 0-22.6 6.3-6.2 16.4-6.2 22.6 0l57 57 102-49.8c24-11.7 44.5-31.3 57.1-57.1 30.1-61.7 4.5-136.1-57.2-166.2zm92.1-34.9C409.8 81 399.7 32.9 360 0c-50.3 41.7-52.5 107.5-7.9 151.9l8 8c44.4 44.6 110.3 42.4 151.9-7.9-32.9-39.7-81-49.8-121.7-30.3z\"]\n};\nvar faCartArrowDown = {\n prefix: 'fas',\n iconName: 'cart-arrow-down',\n icon: [576, 512, [], \"f218\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"]\n};\nvar faCartPlus = {\n prefix: 'fas',\n iconName: 'cart-plus',\n icon: [576, 512, [], \"f217\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z\"]\n};\nvar faCashRegister = {\n prefix: 'fas',\n iconName: 'cash-register',\n icon: [512, 512, [], \"f788\", \"M511.1 378.8l-26.7-160c-2.6-15.4-15.9-26.7-31.6-26.7H208v-64h96c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96v64H59.1c-15.6 0-29 11.3-31.6 26.7L.8 378.7c-.6 3.5-.9 7-.9 10.5V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-90.7c.1-3.5-.2-7-.8-10.5zM280 248c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16zm-32 64h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16zm-32-80c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16zM80 80V48h192v32H80zm40 200h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16zm16 64v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm216 112c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16zm24-112c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16zm48-80c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16z\"]\n};\nvar faCat = {\n prefix: 'fas',\n iconName: 'cat',\n icon: [512, 512, [], \"f6be\", \"M290.59 192c-20.18 0-106.82 1.98-162.59 85.95V192c0-52.94-43.06-96-96-96-17.67 0-32 14.33-32 32s14.33 32 32 32c17.64 0 32 14.36 32 32v256c0 35.3 28.7 64 64 64h176c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-32l128-96v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V289.86c-10.29 2.67-20.89 4.54-32 4.54-61.81 0-113.52-44.05-125.41-102.4zM448 96h-64l-64-64v134.4c0 53.02 42.98 96 96 96s96-42.98 96-96V32l-64 64zm-72 80c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm80 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faCertificate = {\n prefix: 'fas',\n iconName: 'certificate',\n icon: [512, 512, [], \"f0a3\", \"M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z\"]\n};\nvar faChair = {\n prefix: 'fas',\n iconName: 'chair',\n icon: [448, 512, [], \"f6c0\", \"M112 128c0-29.5 16.2-55 40-68.9V256h48V48h48v208h48V59.1c23.8 13.9 40 39.4 40 68.9v128h48V128C384 57.3 326.7 0 256 0h-64C121.3 0 64 57.3 64 128v128h48zm334.3 213.9l-10.7-32c-4.4-13.1-16.6-21.9-30.4-21.9H42.7c-13.8 0-26 8.8-30.4 21.9l-10.7 32C-5.2 362.6 10.2 384 32 384v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384h256v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384c21.8 0 37.2-21.4 30.3-42.1z\"]\n};\nvar faChalkboard = {\n prefix: 'fas',\n iconName: 'chalkboard',\n icon: [640, 512, [], \"f51b\", \"M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChalkboardTeacher = {\n prefix: 'fas',\n iconName: 'chalkboard-teacher',\n icon: [640, 512, [], \"f51c\", \"M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z\"]\n};\nvar faChargingStation = {\n prefix: 'fas',\n iconName: 'charging-station',\n icon: [576, 512, [], \"f5e7\", \"M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z\"]\n};\nvar faChartArea = {\n prefix: 'fas',\n iconName: 'chart-area',\n icon: [512, 512, [], \"f1fe\", \"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z\"]\n};\nvar faChartBar = {\n prefix: 'fas',\n iconName: 'chart-bar',\n icon: [512, 512, [], \"f080\", \"M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChartLine = {\n prefix: 'fas',\n iconName: 'chart-line',\n icon: [512, 512, [], \"f201\", \"M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z\"]\n};\nvar faChartPie = {\n prefix: 'fas',\n iconName: 'chart-pie',\n icon: [544, 512, [], \"f200\", \"M527.79 288H290.5l158.03 158.03c6.04 6.04 15.98 6.53 22.19.68 38.7-36.46 65.32-85.61 73.13-140.86 1.34-9.46-6.51-17.85-16.06-17.85zm-15.83-64.8C503.72 103.74 408.26 8.28 288.8.04 279.68-.59 272 7.1 272 16.24V240h223.77c9.14 0 16.82-7.68 16.19-16.8zM224 288V50.71c0-9.55-8.39-17.4-17.84-16.06C86.99 51.49-4.1 155.6.14 280.37 4.5 408.51 114.83 513.59 243.03 511.98c50.4-.63 96.97-16.87 135.26-44.03 7.9-5.6 8.42-17.23 1.57-24.08L224 288z\"]\n};\nvar faCheck = {\n prefix: 'fas',\n iconName: 'check',\n icon: [512, 512, [], \"f00c\", \"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"]\n};\nvar faCheckCircle = {\n prefix: 'fas',\n iconName: 'check-circle',\n icon: [512, 512, [], \"f058\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"]\n};\nvar faCheckDouble = {\n prefix: 'fas',\n iconName: 'check-double',\n icon: [512, 512, [], \"f560\", \"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"]\n};\nvar faCheckSquare = {\n prefix: 'fas',\n iconName: 'check-square',\n icon: [448, 512, [], \"f14a\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\"]\n};\nvar faCheese = {\n prefix: 'fas',\n iconName: 'cheese',\n icon: [512, 512, [], \"f7ef\", \"M0 288v160a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V288zM299.83 32a32 32 0 0 0-21.13 7L0 256h512c0-119.89-94-217.8-212.17-224z\"]\n};\nvar faChess = {\n prefix: 'fas',\n iconName: 'chess',\n icon: [512, 512, [], \"f439\", \"M74 208H64a16 16 0 0 0-16 16v16a16 16 0 0 0 16 16h15.94A535.78 535.78 0 0 1 64 384h128a535.78 535.78 0 0 1-15.94-128H192a16 16 0 0 0 16-16v-16a16 16 0 0 0-16-16h-10l33.89-90.38a16 16 0 0 0-15-21.62H144V64h24a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8h-24V8a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v24H88a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h24v32H55.09a16 16 0 0 0-15 21.62zm173.16 251.58L224 448v-16a16 16 0 0 0-16-16H48a16 16 0 0 0-16 16v16L8.85 459.58A16 16 0 0 0 0 473.89V496a16 16 0 0 0 16 16h224a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31zm92.77-157.78l-3.29 82.2h126.72l-3.29-82.21 24.6-20.79A32 32 0 0 0 496 256.54V198a6 6 0 0 0-6-6h-26.38a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H373.1a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H310a6 6 0 0 0-6 6v58.6a32 32 0 0 0 11.36 24.4zM384 304a16 16 0 0 1 32 0v32h-32zm119.16 155.58L480 448v-16a16 16 0 0 0-16-16H336a16 16 0 0 0-16 16v16l-23.15 11.58a16 16 0 0 0-8.85 14.31V496a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31z\"]\n};\nvar faChessBishop = {\n prefix: 'fas',\n iconName: 'chess-bishop',\n icon: [320, 512, [], \"f43a\", \"M8 287.88c0 51.64 22.14 73.83 56 84.6V416h192v-43.52c33.86-10.77 56-33 56-84.6 0-30.61-10.73-67.1-26.69-102.56L185 285.65a8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 0-11.31L270.27 155.1c-20.8-37.91-46.47-72.1-70.87-92.59C213.4 59.09 224 47.05 224 32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32c0 15 10.6 27.09 24.6 30.51C67.81 106.8 8 214.5 8 287.88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessBoard = {\n prefix: 'fas',\n iconName: 'chess-board',\n icon: [512, 512, [], \"f43c\", \"M255.9.2h-64v64h64zM0 64.17v64h64v-64zM128 .2H64v64h64zm64 255.9v64h64v-64zM0 192.12v64h64v-64zM383.85.2h-64v64h64zm128 0h-64v64h64zM128 256.1H64v64h64zM511.8 448v-64h-64v64zm0-128v-64h-64v64zM383.85 512h64v-64h-64zm128-319.88v-64h-64v64zM128 512h64v-64h-64zM0 512h64v-64H0zm255.9 0h64v-64h-64zM0 320.07v64h64v-64zm319.88-191.92v-64h-64v64zm-64 128h64v-64h-64zm-64 128v64h64v-64zm128-64h64v-64h-64zm0-127.95h64v-64h-64zm0 191.93v64h64v-64zM64 384.05v64h64v-64zm128-255.9v-64h-64v64zm191.92 255.9h64v-64h-64zm-128-191.93v-64h-64v64zm128-127.95v64h64v-64zm-128 255.9v64h64v-64zm-64-127.95H128v64h64zm191.92 64h64v-64h-64zM128 128.15H64v64h64zm0 191.92v64h64v-64z\"]\n};\nvar faChessKing = {\n prefix: 'fas',\n iconName: 'chess-king',\n icon: [448, 512, [], \"f43f\", \"M400 448H48a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm16-288H256v-48h40a8 8 0 0 0 8-8V56a8 8 0 0 0-8-8h-40V8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v40h-40a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h40v48H32a32 32 0 0 0-30.52 41.54L74.56 416h298.88l73.08-214.46A32 32 0 0 0 416 160z\"]\n};\nvar faChessKnight = {\n prefix: 'fas',\n iconName: 'chess-knight',\n icon: [384, 512, [], \"f441\", \"M19 272.47l40.63 18.06a32 32 0 0 0 24.88.47l12.78-5.12a32 32 0 0 0 18.76-20.5l9.22-30.65a24 24 0 0 1 12.55-15.65L159.94 208v50.33a48 48 0 0 1-26.53 42.94l-57.22 28.65A80 80 0 0 0 32 401.48V416h319.86V224c0-106-85.92-192-191.92-192H12A12 12 0 0 0 0 44a16.9 16.9 0 0 0 1.79 7.58L16 80l-9 9a24 24 0 0 0-7 17v137.21a32 32 0 0 0 19 29.26zM52 128a20 20 0 1 1-20 20 20 20 0 0 1 20-20zm316 320H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessPawn = {\n prefix: 'fas',\n iconName: 'chess-pawn',\n icon: [320, 512, [], \"f443\", \"M105.1 224H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h16v5.49c0 44-4.14 86.6-24 122.51h176c-19.89-35.91-24-78.51-24-122.51V288h16a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-25.1c29.39-18.38 49.1-50.78 49.1-88a104 104 0 0 0-208 0c0 37.22 19.71 69.62 49.1 88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessQueen = {\n prefix: 'fas',\n iconName: 'chess-queen',\n icon: [512, 512, [], \"f445\", \"M256 112a56 56 0 1 0-56-56 56 56 0 0 0 56 56zm176 336H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm72.87-263.84l-28.51-15.92c-7.44-5-16.91-2.46-22.29 4.68a47.59 47.59 0 0 1-47.23 18.23C383.7 186.86 368 164.93 368 141.4a13.4 13.4 0 0 0-13.4-13.4h-38.77c-6 0-11.61 4-12.86 9.91a48 48 0 0 1-93.94 0c-1.25-5.92-6.82-9.91-12.86-9.91H157.4a13.4 13.4 0 0 0-13.4 13.4c0 25.69-19 48.75-44.67 50.49a47.5 47.5 0 0 1-41.54-19.15c-5.28-7.09-14.73-9.45-22.09-4.54l-28.57 16a16 16 0 0 0-5.44 20.47L104.24 416h303.52l102.55-211.37a16 16 0 0 0-5.44-20.47z\"]\n};\nvar faChessRook = {\n prefix: 'fas',\n iconName: 'chess-rook',\n icon: [384, 512, [], \"f447\", \"M368 32h-56a16 16 0 0 0-16 16v48h-48V48a16 16 0 0 0-16-16h-80a16 16 0 0 0-16 16v48H88.1V48a16 16 0 0 0-16-16H16A16 16 0 0 0 0 48v176l64 32c0 48.33-1.54 95-13.21 160h282.42C321.54 351 320 303.72 320 256l64-32V48a16 16 0 0 0-16-16zM224 320h-64v-64a32 32 0 0 1 64 0zm144 128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChevronCircleDown = {\n prefix: 'fas',\n iconName: 'chevron-circle-down',\n icon: [512, 512, [], \"f13a\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z\"]\n};\nvar faChevronCircleLeft = {\n prefix: 'fas',\n iconName: 'chevron-circle-left',\n icon: [512, 512, [], \"f137\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\"]\n};\nvar faChevronCircleRight = {\n prefix: 'fas',\n iconName: 'chevron-circle-right',\n icon: [512, 512, [], \"f138\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"]\n};\nvar faChevronCircleUp = {\n prefix: 'fas',\n iconName: 'chevron-circle-up',\n icon: [512, 512, [], \"f139\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z\"]\n};\nvar faChevronDown = {\n prefix: 'fas',\n iconName: 'chevron-down',\n icon: [448, 512, [], \"f078\", \"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"]\n};\nvar faChevronLeft = {\n prefix: 'fas',\n iconName: 'chevron-left',\n icon: [320, 512, [], \"f053\", \"M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z\"]\n};\nvar faChevronRight = {\n prefix: 'fas',\n iconName: 'chevron-right',\n icon: [320, 512, [], \"f054\", \"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"]\n};\nvar faChevronUp = {\n prefix: 'fas',\n iconName: 'chevron-up',\n icon: [448, 512, [], \"f077\", \"M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z\"]\n};\nvar faChild = {\n prefix: 'fas',\n iconName: 'child',\n icon: [384, 512, [], \"f1ae\", \"M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z\"]\n};\nvar faChurch = {\n prefix: 'fas',\n iconName: 'church',\n icon: [640, 512, [], \"f51d\", \"M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z\"]\n};\nvar faCircle = {\n prefix: 'fas',\n iconName: 'circle',\n icon: [512, 512, [], \"f111\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"]\n};\nvar faCircleNotch = {\n prefix: 'fas',\n iconName: 'circle-notch',\n icon: [512, 512, [], \"f1ce\", \"M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z\"]\n};\nvar faCity = {\n prefix: 'fas',\n iconName: 'city',\n icon: [640, 512, [], \"f64f\", \"M616 192H480V24c0-13.26-10.74-24-24-24H312c-13.26 0-24 10.74-24 24v72h-64V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v80h-64V16c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v80H24c-13.26 0-24 10.74-24 24v360c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V216c0-13.26-10.75-24-24-24zM128 404c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm128 192c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12V76c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 288c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40z\"]\n};\nvar faClinicMedical = {\n prefix: 'fas',\n iconName: 'clinic-medical',\n icon: [576, 512, [], \"f7f2\", \"M288 115L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2zm96 261a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8zm186.69-139.72l-255.94-226a39.85 39.85 0 0 0-53.45 0l-256 226a16 16 0 0 0-1.21 22.6L25.5 282.7a16 16 0 0 0 22.6 1.21L277.42 81.63a16 16 0 0 1 21.17 0L527.91 283.9a16 16 0 0 0 22.6-1.21l21.4-23.82a16 16 0 0 0-1.22-22.59z\"]\n};\nvar faClipboard = {\n prefix: 'fas',\n iconName: 'clipboard',\n icon: [384, 512, [], \"f328\", \"M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z\"]\n};\nvar faClipboardCheck = {\n prefix: 'fas',\n iconName: 'clipboard-check',\n icon: [384, 512, [], \"f46c\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z\"]\n};\nvar faClipboardList = {\n prefix: 'fas',\n iconName: 'clipboard-list',\n icon: [384, 512, [], \"f46d\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faClock = {\n prefix: 'fas',\n iconName: 'clock',\n icon: [512, 512, [], \"f017\", \"M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z\"]\n};\nvar faClone = {\n prefix: 'fas',\n iconName: 'clone',\n icon: [512, 512, [], \"f24d\", \"M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z\"]\n};\nvar faClosedCaptioning = {\n prefix: 'fas',\n iconName: 'closed-captioning',\n icon: [512, 512, [], \"f20a\", \"M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z\"]\n};\nvar faCloud = {\n prefix: 'fas',\n iconName: 'cloud',\n icon: [640, 512, [], \"f0c2\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z\"]\n};\nvar faCloudDownloadAlt = {\n prefix: 'fas',\n iconName: 'cloud-download-alt',\n icon: [640, 512, [], \"f381\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z\"]\n};\nvar faCloudMeatball = {\n prefix: 'fas',\n iconName: 'cloud-meatball',\n icon: [512, 512, [], \"f73b\", \"M48 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm416 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-119 11.1c4.6-14.5 1.6-30.8-9.8-42.3-11.5-11.5-27.8-14.4-42.3-9.9-7-13.5-20.7-23-36.9-23s-29.9 9.5-36.9 23c-14.5-4.6-30.8-1.6-42.3 9.9-11.5 11.5-14.4 27.8-9.9 42.3-13.5 7-23 20.7-23 36.9s9.5 29.9 23 36.9c-4.6 14.5-1.6 30.8 9.9 42.3 8.2 8.2 18.9 12.3 29.7 12.3 4.3 0 8.5-1.1 12.6-2.5 7 13.5 20.7 23 36.9 23s29.9-9.5 36.9-23c4.1 1.3 8.3 2.5 12.6 2.5 10.8 0 21.5-4.1 29.7-12.3 11.5-11.5 14.4-27.8 9.8-42.3 13.5-7 23-20.7 23-36.9s-9.5-29.9-23-36.9zM512 224c0-53-43-96-96-96-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h43.4c3.6-8 8.4-15.4 14.8-21.8 13.5-13.5 31.5-21.1 50.8-21.3 13.5-13.2 31.7-20.9 51-20.9s37.5 7.7 51 20.9c19.3.2 37.3 7.8 50.8 21.3 6.4 6.4 11.3 13.8 14.8 21.8H416c53 0 96-43 96-96z\"]\n};\nvar faCloudMoon = {\n prefix: 'fas',\n iconName: 'cloud-moon',\n icon: [576, 512, [], \"f6c3\", \"M342.8 352.7c5.7-9.6 9.2-20.7 9.2-32.7 0-35.3-28.7-64-64-64-17.2 0-32.8 6.9-44.3 17.9-16.3-29.6-47.5-49.9-83.7-49.9-53 0-96 43-96 96 0 2 .5 3.8.6 5.7C27.1 338.8 0 374.1 0 416c0 53 43 96 96 96h240c44.2 0 80-35.8 80-80 0-41.9-32.3-75.8-73.2-79.3zm222.5-54.3c-93.1 17.7-178.5-53.7-178.5-147.7 0-54.2 29-104 76.1-130.8 7.3-4.1 5.4-15.1-2.8-16.7C448.4 1.1 436.7 0 425 0 319.1 0 233.1 85.9 233.1 192c0 8.5.7 16.8 1.8 25 5.9 4.3 11.6 8.9 16.7 14.2 11.4-4.7 23.7-7.2 36.4-7.2 52.9 0 96 43.1 96 96 0 3.6-.2 7.2-.6 10.7 23.6 10.8 42.4 29.5 53.5 52.6 54.4-3.4 103.7-29.3 137.1-70.4 5.3-6.5-.5-16.1-8.7-14.5z\"]\n};\nvar faCloudMoonRain = {\n prefix: 'fas',\n iconName: 'cloud-moon-rain',\n icon: [576, 512, [], \"f73c\", \"M350.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C27.6 232.9 0 265.2 0 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm217.4-1.7c-70.4 13.3-135-40.3-135-110.8 0-40.6 21.9-78 57.5-98.1 5.5-3.1 4.1-11.4-2.1-12.5C479.6.8 470.7 0 461.8 0c-77.9 0-141.1 61.2-144.4 137.9 26.7 11.9 48.2 33.8 58.9 61.7 37.1 14.3 64 47.4 70.2 86.8 5.1.5 10 1.5 15.2 1.5 44.7 0 85.6-20.2 112.6-53.3 4.2-4.8-.2-12-6.4-10.8zM364.5 418.1c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudRain = {\n prefix: 'fas',\n iconName: 'cloud-rain',\n icon: [512, 512, [], \"f73d\", \"M416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96zM88 374.2c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0z\"]\n};\nvar faCloudShowersHeavy = {\n prefix: 'fas',\n iconName: 'cloud-showers-heavy',\n icon: [512, 512, [], \"f740\", \"M183.9 370.1c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-192 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm384 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zM416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.2 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96z\"]\n};\nvar faCloudSun = {\n prefix: 'fas',\n iconName: 'cloud-sun',\n icon: [640, 512, [], \"f6c4\", \"M575.2 325.7c.2-1.9.8-3.7.8-5.6 0-35.3-28.7-64-64-64-12.6 0-24.2 3.8-34.1 10-17.6-38.8-56.5-66-101.9-66-61.8 0-112 50.1-112 112 0 3 .7 5.8.9 8.7-49.6 3.7-88.9 44.7-88.9 95.3 0 53 43 96 96 96h272c53 0 96-43 96-96 0-42.1-27.2-77.4-64.8-90.4zm-430.4-22.6c-43.7-43.7-43.7-114.7 0-158.3 43.7-43.7 114.7-43.7 158.4 0 9.7 9.7 16.9 20.9 22.3 32.7 9.8-3.7 20.1-6 30.7-7.5L386 81.1c4-11.9-7.3-23.1-19.2-19.2L279 91.2 237.5 8.4C232-2.8 216-2.8 210.4 8.4L169 91.2 81.1 61.9C69.3 58 58 69.3 61.9 81.1l29.3 87.8-82.8 41.5c-11.2 5.6-11.2 21.5 0 27.1l82.8 41.4-29.3 87.8c-4 11.9 7.3 23.1 19.2 19.2l76.1-25.3c6.1-12.4 14-23.7 23.6-33.5-13.1-5.4-25.4-13.4-36-24zm-4.8-79.2c0 40.8 29.3 74.8 67.9 82.3 8-4.7 16.3-8.8 25.2-11.7 5.4-44.3 31-82.5 67.4-105C287.3 160.4 258 140 224 140c-46.3 0-84 37.6-84 83.9z\"]\n};\nvar faCloudSunRain = {\n prefix: 'fas',\n iconName: 'cloud-sun-rain',\n icon: [576, 512, [], \"f743\", \"M510.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C187.6 233 160 265.2 160 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm-386.4 34.4c-37.4-37.4-37.4-98.3 0-135.8 34.6-34.6 89.1-36.8 126.7-7.4 20-12.9 43.6-20.7 69.2-20.7.7 0 1.3.2 2 .2l8.9-26.7c3.4-10.2-6.3-19.8-16.5-16.4l-75.3 25.1-35.5-71c-4.8-9.6-18.5-9.6-23.3 0l-35.5 71-75.3-25.1c-10.2-3.4-19.8 6.3-16.4 16.5l25.1 75.3-71 35.5c-9.6 4.8-9.6 18.5 0 23.3l71 35.5-25.1 75.3c-3.4 10.2 6.3 19.8 16.5 16.5l59.2-19.7c-.2-2.4-.7-4.7-.7-7.2 0-12.5 2.3-24.5 6.2-35.9-3.6-2.7-7.1-5.2-10.2-8.3zm69.8-58c4.3-24.5 15.8-46.4 31.9-64-9.8-6.2-21.4-9.9-33.8-9.9-35.3 0-64 28.7-64 64 0 18.7 8.2 35.4 21.1 47.1 11.3-15.9 26.6-28.9 44.8-37.2zm330.6 216.2c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudUploadAlt = {\n prefix: 'fas',\n iconName: 'cloud-upload-alt',\n icon: [640, 512, [], \"f382\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z\"]\n};\nvar faCocktail = {\n prefix: 'fas',\n iconName: 'cocktail',\n icon: [576, 512, [], \"f561\", \"M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z\"]\n};\nvar faCode = {\n prefix: 'fas',\n iconName: 'code',\n icon: [640, 512, [], \"f121\", \"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z\"]\n};\nvar faCodeBranch = {\n prefix: 'fas',\n iconName: 'code-branch',\n icon: [384, 512, [], \"f126\", \"M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z\"]\n};\nvar faCoffee = {\n prefix: 'fas',\n iconName: 'coffee',\n icon: [640, 512, [], \"f0f4\", \"M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z\"]\n};\nvar faCog = {\n prefix: 'fas',\n iconName: 'cog',\n icon: [512, 512, [], \"f013\", \"M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faCogs = {\n prefix: 'fas',\n iconName: 'cogs',\n icon: [640, 512, [], \"f085\", \"M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z\"]\n};\nvar faCoins = {\n prefix: 'fas',\n iconName: 'coins',\n icon: [512, 512, [], \"f51e\", \"M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z\"]\n};\nvar faColumns = {\n prefix: 'fas',\n iconName: 'columns',\n icon: [512, 512, [], \"f0db\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z\"]\n};\nvar faComment = {\n prefix: 'fas',\n iconName: 'comment',\n icon: [512, 512, [], \"f075\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z\"]\n};\nvar faCommentAlt = {\n prefix: 'fas',\n iconName: 'comment-alt',\n icon: [512, 512, [], \"f27a\", \"M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z\"]\n};\nvar faCommentDollar = {\n prefix: 'fas',\n iconName: 'comment-dollar',\n icon: [512, 512, [], \"f651\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95.01 57.02 130.74C44.46 421.05 2.7 465.97 2.2 466.5A7.995 7.995 0 0 0 8 480c66.26 0 115.99-31.75 140.6-51.38C181.29 440.93 217.59 448 256 448c141.38 0 256-93.12 256-208S397.38 32 256 32zm24 302.44V352c0 8.84-7.16 16-16 16h-16c-8.84 0-16-7.16-16-16v-17.73c-11.42-1.35-22.28-5.19-31.78-11.46-6.22-4.11-6.82-13.11-1.55-18.38l17.52-17.52c3.74-3.74 9.31-4.24 14.11-2.03 3.18 1.46 6.66 2.22 10.26 2.22h32.78c4.66 0 8.44-3.78 8.44-8.42 0-3.75-2.52-7.08-6.12-8.11l-50.07-14.3c-22.25-6.35-40.01-24.71-42.91-47.67-4.05-32.07 19.03-59.43 49.32-63.05V128c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v17.73c11.42 1.35 22.28 5.19 31.78 11.46 6.22 4.11 6.82 13.11 1.55 18.38l-17.52 17.52c-3.74 3.74-9.31 4.24-14.11 2.03a24.516 24.516 0 0 0-10.26-2.22h-32.78c-4.66 0-8.44 3.78-8.44 8.42 0 3.75 2.52 7.08 6.12 8.11l50.07 14.3c22.25 6.36 40.01 24.71 42.91 47.67 4.05 32.06-19.03 59.42-49.32 63.04z\"]\n};\nvar faCommentDots = {\n prefix: 'fas',\n iconName: 'comment-dots',\n icon: [512, 512, [], \"f4ad\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faCommentMedical = {\n prefix: 'fas',\n iconName: 'comment-medical',\n icon: [512, 512, [], \"f7f5\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95 57 130.74C44.46 421.05 2.7 466 2.2 466.5A8 8 0 0 0 8 480c66.26 0 116-31.75 140.6-51.38A304.66 304.66 0 0 0 256 448c141.39 0 256-93.12 256-208S397.39 32 256 32zm96 232a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8z\"]\n};\nvar faCommentSlash = {\n prefix: 'fas',\n iconName: 'comment-slash',\n icon: [640, 512, [], \"f4b3\", \"M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faComments = {\n prefix: 'fas',\n iconName: 'comments',\n icon: [576, 512, [], \"f086\", \"M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z\"]\n};\nvar faCommentsDollar = {\n prefix: 'fas',\n iconName: 'comments-dollar',\n icon: [576, 512, [], \"f653\", \"M416 192c0-88.37-93.12-160-208-160S0 103.63 0 192c0 34.27 14.13 65.95 37.97 91.98C24.61 314.22 2.52 338.16 2.2 338.5A7.995 7.995 0 0 0 8 352c36.58 0 66.93-12.25 88.73-24.98C128.93 342.76 167.02 352 208 352c114.88 0 208-71.63 208-160zm-224 96v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V96c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07V288c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm346.01 123.99C561.87 385.96 576 354.27 576 320c0-66.94-53.49-124.2-129.33-148.07.86 6.6 1.33 13.29 1.33 20.07 0 105.87-107.66 192-240 192-10.78 0-21.32-.77-31.73-1.88C207.8 439.63 281.77 480 368 480c40.98 0 79.07-9.24 111.27-24.98C501.07 467.75 531.42 480 568 480c3.2 0 6.09-1.91 7.34-4.84 1.27-2.94.66-6.34-1.55-8.67-.31-.33-22.42-24.24-35.78-54.5z\"]\n};\nvar faCompactDisc = {\n prefix: 'fas',\n iconName: 'compact-disc',\n icon: [496, 512, [], \"f51f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z\"]\n};\nvar faCompass = {\n prefix: 'fas',\n iconName: 'compass',\n icon: [496, 512, [], \"f14e\", \"M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z\"]\n};\nvar faCompress = {\n prefix: 'fas',\n iconName: 'compress',\n icon: [448, 512, [], \"f066\", \"M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faCompressAlt = {\n prefix: 'fas',\n iconName: 'compress-alt',\n icon: [448, 512, [], \"f422\", \"M4.686 427.314L104 328l-32.922-31.029C55.958 281.851 66.666 256 88.048 256h112C213.303 256 224 266.745 224 280v112c0 21.382-25.803 32.09-40.922 16.971L152 376l-99.314 99.314c-6.248 6.248-16.379 6.248-22.627 0L4.686 449.941c-6.248-6.248-6.248-16.379 0-22.627zM443.314 84.686L344 184l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C234.697 256 224 245.255 224 232V120c0-21.382 25.803-32.09 40.922-16.971L296 136l99.314-99.314c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.248 6.248 6.248 16.379 0 22.627z\"]\n};\nvar faCompressArrowsAlt = {\n prefix: 'fas',\n iconName: 'compress-arrows-alt',\n icon: [512, 512, [], \"f78c\", \"M200 288H88c-21.4 0-32.1 25.8-17 41l32.9 31-99.2 99.3c-6.2 6.2-6.2 16.4 0 22.6l25.4 25.4c6.2 6.2 16.4 6.2 22.6 0L152 408l31.1 33c15.1 15.1 40.9 4.4 40.9-17V312c0-13.3-10.7-24-24-24zm112-64h112c21.4 0 32.1-25.9 17-41l-33-31 99.3-99.3c6.2-6.2 6.2-16.4 0-22.6L481.9 4.7c-6.2-6.2-16.4-6.2-22.6 0L360 104l-31.1-33C313.8 55.9 288 66.6 288 88v112c0 13.3 10.7 24 24 24zm96 136l33-31.1c15.1-15.1 4.4-40.9-17-40.9H312c-13.3 0-24 10.7-24 24v112c0 21.4 25.9 32.1 41 17l31-32.9 99.3 99.3c6.2 6.2 16.4 6.2 22.6 0l25.4-25.4c6.2-6.2 6.2-16.4 0-22.6L408 360zM183 71.1L152 104 52.7 4.7c-6.2-6.2-16.4-6.2-22.6 0L4.7 30.1c-6.2 6.2-6.2 16.4 0 22.6L104 152l-33 31.1C55.9 198.2 66.6 224 88 224h112c13.3 0 24-10.7 24-24V88c0-21.3-25.9-32-41-16.9z\"]\n};\nvar faConciergeBell = {\n prefix: 'fas',\n iconName: 'concierge-bell',\n icon: [512, 512, [], \"f562\", \"M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faCookie = {\n prefix: 'fas',\n iconName: 'cookie',\n icon: [512, 512, [], \"f563\", \"M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCookieBite = {\n prefix: 'fas',\n iconName: 'cookie-bite',\n icon: [512, 512, [], \"f564\", \"M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCopy = {\n prefix: 'fas',\n iconName: 'copy',\n icon: [448, 512, [], \"f0c5\", \"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z\"]\n};\nvar faCopyright = {\n prefix: 'fas',\n iconName: 'copyright',\n icon: [512, 512, [], \"f1f9\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z\"]\n};\nvar faCouch = {\n prefix: 'fas',\n iconName: 'couch',\n icon: [640, 512, [], \"f4b8\", \"M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z\"]\n};\nvar faCreditCard = {\n prefix: 'fas',\n iconName: 'credit-card',\n icon: [576, 512, [], \"f09d\", \"M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z\"]\n};\nvar faCrop = {\n prefix: 'fas',\n iconName: 'crop',\n icon: [512, 512, [], \"f125\", \"M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faCropAlt = {\n prefix: 'fas',\n iconName: 'crop-alt',\n icon: [512, 512, [], \"f565\", \"M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z\"]\n};\nvar faCross = {\n prefix: 'fas',\n iconName: 'cross',\n icon: [384, 512, [], \"f654\", \"M352 128h-96V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h96v224c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V256h96c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faCrosshairs = {\n prefix: 'fas',\n iconName: 'crosshairs',\n icon: [512, 512, [], \"f05b\", \"M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z\"]\n};\nvar faCrow = {\n prefix: 'fas',\n iconName: 'crow',\n icon: [640, 512, [], \"f520\", \"M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faCrown = {\n prefix: 'fas',\n iconName: 'crown',\n icon: [640, 512, [], \"f521\", \"M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z\"]\n};\nvar faCrutch = {\n prefix: 'fas',\n iconName: 'crutch',\n icon: [512, 512, [], \"f7f7\", \"M507.31 185.71l-181-181a16 16 0 0 0-22.62 0L281 27.31a16 16 0 0 0 0 22.63l181 181a16 16 0 0 0 22.63 0l22.62-22.63a16 16 0 0 0 .06-22.6zm-179.54 66.41l-67.89-67.89 55.1-55.1-45.25-45.25-109.67 109.67a96.08 96.08 0 0 0-25.67 46.29L106.65 360.1l-102 102a16 16 0 0 0 0 22.63l22.62 22.62a16 16 0 0 0 22.63 0l102-102 120.25-27.75a95.88 95.88 0 0 0 46.29-25.65l109.68-109.68L382.87 197zm-54.57 54.57a32 32 0 0 1-15.45 8.54l-79.3 18.32 18.3-79.3a32.22 32.22 0 0 1 8.56-15.45l9.31-9.31 67.89 67.89z\"]\n};\nvar faCube = {\n prefix: 'fas',\n iconName: 'cube',\n icon: [512, 512, [], \"f1b2\", \"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"]\n};\nvar faCubes = {\n prefix: 'fas',\n iconName: 'cubes',\n icon: [512, 512, [], \"f1b3\", \"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"]\n};\nvar faCut = {\n prefix: 'fas',\n iconName: 'cut',\n icon: [448, 512, [], \"f0c4\", \"M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faDatabase = {\n prefix: 'fas',\n iconName: 'database',\n icon: [448, 512, [], \"f1c0\", \"M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z\"]\n};\nvar faDeaf = {\n prefix: 'fas',\n iconName: 'deaf',\n icon: [512, 512, [], \"f2a4\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z\"]\n};\nvar faDemocrat = {\n prefix: 'fas',\n iconName: 'democrat',\n icon: [640, 512, [], \"f747\", \"M637.3 256.9l-19.6-29.4c-28.2-42.3-75.3-67.5-126.1-67.5H256l-81.2-81.2c20.1-20.1 22.6-51.1 7.5-73.9-3.4-5.2-10.8-5.9-15.2-1.5l-41.8 41.8L82.4 2.4c-3.6-3.6-9.6-3-12.4 1.2-12.3 18.6-10.3 44 6.1 60.4 3.3 3.3 7.3 5.3 11.3 7.5-2.2 1.7-4.7 3.1-6.4 5.4L6.4 176.2c-7.3 9.7-8.4 22.7-3 33.5l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7h31c8.5 0 16.6-3.4 22.6-9.4L138 212l54 108h352v-77.8c16.2 12.2 18.3 17.6 40.1 50.3 4.9 7.4 14.8 9.3 22.2 4.4l26.6-17.7c7.3-5 9.3-14.9 4.4-22.3zm-341.1-13.6l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L256 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L368 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L480 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zM192 496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80h160v80c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V352H192v144z\"]\n};\nvar faDesktop = {\n prefix: 'fas',\n iconName: 'desktop',\n icon: [576, 512, [], \"f108\", \"M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z\"]\n};\nvar faDharmachakra = {\n prefix: 'fas',\n iconName: 'dharmachakra',\n icon: [512, 512, [], \"f655\", \"M495 225.06l-17.22 1.08c-5.27-39.49-20.79-75.64-43.86-105.84l12.95-11.43c6.92-6.11 7.25-16.79.73-23.31L426.44 64.4c-6.53-6.53-17.21-6.19-23.31.73L391.7 78.07c-30.2-23.06-66.35-38.58-105.83-43.86L286.94 17c.58-9.21-6.74-17-15.97-17h-29.94c-9.23 0-16.54 7.79-15.97 17l1.08 17.22c-39.49 5.27-75.64 20.79-105.83 43.86l-11.43-12.95c-6.11-6.92-16.79-7.25-23.31-.73L64.4 85.56c-6.53 6.53-6.19 17.21.73 23.31l12.95 11.43c-23.06 30.2-38.58 66.35-43.86 105.84L17 225.06c-9.21-.58-17 6.74-17 15.97v29.94c0 9.23 7.79 16.54 17 15.97l17.22-1.08c5.27 39.49 20.79 75.64 43.86 105.83l-12.95 11.43c-6.92 6.11-7.25 16.79-.73 23.31l21.17 21.17c6.53 6.53 17.21 6.19 23.31-.73l11.43-12.95c30.2 23.06 66.35 38.58 105.84 43.86L225.06 495c-.58 9.21 6.74 17 15.97 17h29.94c9.23 0 16.54-7.79 15.97-17l-1.08-17.22c39.49-5.27 75.64-20.79 105.84-43.86l11.43 12.95c6.11 6.92 16.79 7.25 23.31.73l21.17-21.17c6.53-6.53 6.19-17.21-.73-23.31l-12.95-11.43c23.06-30.2 38.58-66.35 43.86-105.83l17.22 1.08c9.21.58 17-6.74 17-15.97v-29.94c-.01-9.23-7.8-16.54-17.01-15.97zM281.84 98.61c24.81 4.07 47.63 13.66 67.23 27.78l-42.62 48.29c-8.73-5.44-18.32-9.54-28.62-11.95l4.01-64.12zm-51.68 0l4.01 64.12c-10.29 2.41-19.89 6.52-28.62 11.95l-42.62-48.29c19.6-14.12 42.42-23.71 67.23-27.78zm-103.77 64.33l48.3 42.61c-5.44 8.73-9.54 18.33-11.96 28.62l-64.12-4.01c4.07-24.81 13.66-47.62 27.78-67.22zm-27.78 118.9l64.12-4.01c2.41 10.29 6.52 19.89 11.95 28.62l-48.29 42.62c-14.12-19.6-23.71-42.42-27.78-67.23zm131.55 131.55c-24.81-4.07-47.63-13.66-67.23-27.78l42.61-48.3c8.73 5.44 18.33 9.54 28.62 11.96l-4 64.12zM256 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm25.84 125.39l-4.01-64.12c10.29-2.41 19.89-6.52 28.62-11.96l42.61 48.3c-19.6 14.12-42.41 23.71-67.22 27.78zm103.77-64.33l-48.29-42.62c5.44-8.73 9.54-18.32 11.95-28.62l64.12 4.01c-4.07 24.82-13.66 47.64-27.78 67.23zm-36.34-114.89c-2.41-10.29-6.52-19.89-11.96-28.62l48.3-42.61c14.12 19.6 23.71 42.42 27.78 67.23l-64.12 4z\"]\n};\nvar faDiagnoses = {\n prefix: 'fas',\n iconName: 'diagnoses',\n icon: [640, 512, [], \"f470\", \"M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDice = {\n prefix: 'fas',\n iconName: 'dice',\n icon: [640, 512, [], \"f522\", \"M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faDiceD20 = {\n prefix: 'fas',\n iconName: 'dice-d20',\n icon: [480, 512, [], \"f6cf\", \"M106.75 215.06L1.2 370.95c-3.08 5 .1 11.5 5.93 12.14l208.26 22.07-108.64-190.1zM7.41 315.43L82.7 193.08 6.06 147.1c-2.67-1.6-6.06.32-6.06 3.43v162.81c0 4.03 5.29 5.53 7.41 2.09zM18.25 423.6l194.4 87.66c5.3 2.45 11.35-1.43 11.35-7.26v-65.67l-203.55-22.3c-4.45-.5-6.23 5.59-2.2 7.57zm81.22-257.78L179.4 22.88c4.34-7.06-3.59-15.25-10.78-11.14L17.81 110.35c-2.47 1.62-2.39 5.26.13 6.78l81.53 48.69zM240 176h109.21L253.63 7.62C250.5 2.54 245.25 0 240 0s-10.5 2.54-13.63 7.62L130.79 176H240zm233.94-28.9l-76.64 45.99 75.29 122.35c2.11 3.44 7.41 1.94 7.41-2.1V150.53c0-3.11-3.39-5.03-6.06-3.43zm-93.41 18.72l81.53-48.7c2.53-1.52 2.6-5.16.13-6.78l-150.81-98.6c-7.19-4.11-15.12 4.08-10.78 11.14l79.93 142.94zm79.02 250.21L256 438.32v65.67c0 5.84 6.05 9.71 11.35 7.26l194.4-87.66c4.03-1.97 2.25-8.06-2.2-7.56zm-86.3-200.97l-108.63 190.1 208.26-22.07c5.83-.65 9.01-7.14 5.93-12.14L373.25 215.06zM240 208H139.57L240 383.75 340.43 208H240z\"]\n};\nvar faDiceD6 = {\n prefix: 'fas',\n iconName: 'dice-d6',\n icon: [448, 512, [], \"f6d1\", \"M422.19 109.95L256.21 9.07c-19.91-12.1-44.52-12.1-64.43 0L25.81 109.95c-5.32 3.23-5.29 11.27.06 14.46L224 242.55l198.14-118.14c5.35-3.19 5.38-11.22.05-14.46zm13.84 44.63L240 271.46v223.82c0 12.88 13.39 20.91 24.05 14.43l152.16-92.48c19.68-11.96 31.79-33.94 31.79-57.7v-197.7c0-6.41-6.64-10.43-11.97-7.25zM0 161.83v197.7c0 23.77 12.11 45.74 31.79 57.7l152.16 92.47c10.67 6.48 24.05-1.54 24.05-14.43V271.46L11.97 154.58C6.64 151.4 0 155.42 0 161.83z\"]\n};\nvar faDiceFive = {\n prefix: 'fas',\n iconName: 'dice-five',\n icon: [448, 512, [], \"f523\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceFour = {\n prefix: 'fas',\n iconName: 'dice-four',\n icon: [448, 512, [], \"f524\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceOne = {\n prefix: 'fas',\n iconName: 'dice-one',\n icon: [448, 512, [], \"f525\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceSix = {\n prefix: 'fas',\n iconName: 'dice-six',\n icon: [448, 512, [], \"f526\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceThree = {\n prefix: 'fas',\n iconName: 'dice-three',\n icon: [448, 512, [], \"f527\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceTwo = {\n prefix: 'fas',\n iconName: 'dice-two',\n icon: [448, 512, [], \"f528\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDigitalTachograph = {\n prefix: 'fas',\n iconName: 'digital-tachograph',\n icon: [640, 512, [], \"f566\", \"M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z\"]\n};\nvar faDirections = {\n prefix: 'fas',\n iconName: 'directions',\n icon: [512, 512, [], \"f5eb\", \"M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z\"]\n};\nvar faDisease = {\n prefix: 'fas',\n iconName: 'disease',\n icon: [512, 512, [], \"f7fa\", \"M472.29 195.9l-67.06-23c-19.28-6.6-33.54-20.92-38.14-38.31l-16-60.45c-11.58-43.77-76.57-57.13-110-22.62L195 99.24c-13.26 13.71-33.54 20.93-54.2 19.31l-71.9-5.62c-52-4.07-86.93 44.89-59 82.84l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24l-28.43 57C4 396.67 47.46 440.29 98.11 429.23l70-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101 7.57 104.45-37.22l4.7-61.86c1.35-17.8 12.8-33.87 30.63-43l62-31.74c44.84-22.96 39.55-80.17-8.99-96.79zM160 256a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm128 96a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm16-128a16 16 0 1 1 16-16 16 16 0 0 1-16 16z\"]\n};\nvar faDivide = {\n prefix: 'fas',\n iconName: 'divide',\n icon: [448, 512, [], \"f529\", \"M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faDizzy = {\n prefix: 'fas',\n iconName: 'dizzy',\n icon: [496, 512, [], \"f567\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z\"]\n};\nvar faDna = {\n prefix: 'fas',\n iconName: 'dna',\n icon: [448, 512, [], \"f471\", \"M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z\"]\n};\nvar faDog = {\n prefix: 'fas',\n iconName: 'dog',\n icon: [576, 512, [], \"f6d3\", \"M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z\"]\n};\nvar faDollarSign = {\n prefix: 'fas',\n iconName: 'dollar-sign',\n icon: [288, 512, [], \"f155\", \"M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z\"]\n};\nvar faDolly = {\n prefix: 'fas',\n iconName: 'dolly',\n icon: [576, 512, [], \"f472\", \"M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faDollyFlatbed = {\n prefix: 'fas',\n iconName: 'dolly-flatbed',\n icon: [640, 512, [], \"f474\", \"M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDonate = {\n prefix: 'fas',\n iconName: 'donate',\n icon: [512, 512, [], \"f4b9\", \"M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z\"]\n};\nvar faDoorClosed = {\n prefix: 'fas',\n iconName: 'door-closed',\n icon: [640, 512, [], \"f52a\", \"M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z\"]\n};\nvar faDoorOpen = {\n prefix: 'fas',\n iconName: 'door-open',\n icon: [640, 512, [], \"f52b\", \"M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z\"]\n};\nvar faDotCircle = {\n prefix: 'fas',\n iconName: 'dot-circle',\n icon: [512, 512, [], \"f192\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"]\n};\nvar faDove = {\n prefix: 'fas',\n iconName: 'dove',\n icon: [512, 512, [], \"f4ba\", \"M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faDownload = {\n prefix: 'fas',\n iconName: 'download',\n icon: [512, 512, [], \"f019\", \"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faDraftingCompass = {\n prefix: 'fas',\n iconName: 'drafting-compass',\n icon: [512, 512, [], \"f568\", \"M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z\"]\n};\nvar faDragon = {\n prefix: 'fas',\n iconName: 'dragon',\n icon: [640, 512, [], \"f6d5\", \"M18.32 255.78L192 223.96l-91.28 68.69c-10.08 10.08-2.94 27.31 11.31 27.31h222.7c-9.44-26.4-14.73-54.47-14.73-83.38v-42.27l-119.73-87.6c-23.82-15.88-55.29-14.01-77.06 4.59L5.81 227.64c-12.38 10.33-3.45 30.42 12.51 28.14zm556.87 34.1l-100.66-50.31A47.992 47.992 0 0 1 448 196.65v-36.69h64l28.09 22.63c6 6 14.14 9.37 22.63 9.37h30.97a32 32 0 0 0 28.62-17.69l14.31-28.62a32.005 32.005 0 0 0-3.02-33.51l-74.53-99.38C553.02 4.7 543.54 0 533.47 0H296.02c-7.13 0-10.7 8.57-5.66 13.61L352 63.96 292.42 88.8c-5.9 2.95-5.9 11.36 0 14.31L352 127.96v108.62c0 72.08 36.03 139.39 96 179.38-195.59 6.81-344.56 41.01-434.1 60.91C5.78 478.67 0 485.88 0 494.2 0 504 7.95 512 17.76 512h499.08c63.29.01 119.61-47.56 122.99-110.76 2.52-47.28-22.73-90.4-64.64-111.36zM489.18 66.25l45.65 11.41c-2.75 10.91-12.47 18.89-24.13 18.26-12.96-.71-25.85-12.53-21.52-29.67z\"]\n};\nvar faDrawPolygon = {\n prefix: 'fas',\n iconName: 'draw-polygon',\n icon: [448, 512, [], \"f5ee\", \"M384 352c-.35 0-.67.1-1.02.1l-39.2-65.32c5.07-9.17 8.22-19.56 8.22-30.78s-3.14-21.61-8.22-30.78l39.2-65.32c.35.01.67.1 1.02.1 35.35 0 64-28.65 64-64s-28.65-64-64-64c-23.63 0-44.04 12.95-55.12 32H119.12C108.04 44.95 87.63 32 64 32 28.65 32 0 60.65 0 96c0 23.63 12.95 44.04 32 55.12v209.75C12.95 371.96 0 392.37 0 416c0 35.35 28.65 64 64 64 23.63 0 44.04-12.95 55.12-32h209.75c11.09 19.05 31.49 32 55.12 32 35.35 0 64-28.65 64-64 .01-35.35-28.64-64-63.99-64zm-288 8.88V151.12A63.825 63.825 0 0 0 119.12 128h208.36l-38.46 64.1c-.35-.01-.67-.1-1.02-.1-35.35 0-64 28.65-64 64s28.65 64 64 64c.35 0 .67-.1 1.02-.1l38.46 64.1H119.12A63.748 63.748 0 0 0 96 360.88zM272 256c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zM400 96c0 8.82-7.18 16-16 16s-16-7.18-16-16 7.18-16 16-16 16 7.18 16 16zM64 80c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 416c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zm336 16c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z\"]\n};\nvar faDrum = {\n prefix: 'fas',\n iconName: 'drum',\n icon: [512, 512, [], \"f569\", \"M431.34 122.05l73.53-47.42a16 16 0 0 0 4.44-22.19l-8.87-13.31a16 16 0 0 0-22.19-4.44l-110.06 71C318.43 96.91 271.22 96 256 96 219.55 96 0 100.55 0 208.15v160.23c0 30.27 27.5 57.68 72 77.86v-101.9a24 24 0 1 1 48 0v118.93c33.05 9.11 71.07 15.06 112 16.73V376.39a24 24 0 1 1 48 0V480c40.93-1.67 78.95-7.62 112-16.73V344.34a24 24 0 1 1 48 0v101.9c44.5-20.18 72-47.59 72-77.86V208.15c0-43.32-35.76-69.76-80.66-86.1zM256 272.24c-114.88 0-208-28.69-208-64.09s93.12-64.08 208-64.08c17.15 0 33.73.71 49.68 1.91l-72.81 47a16 16 0 0 0-4.43 22.19l8.87 13.31a16 16 0 0 0 22.19 4.44l118.64-76.52C430.09 168 464 186.84 464 208.15c0 35.4-93.13 64.09-208 64.09z\"]\n};\nvar faDrumSteelpan = {\n prefix: 'fas',\n iconName: 'drum-steelpan',\n icon: [576, 512, [], \"f56a\", \"M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z\"]\n};\nvar faDrumstickBite = {\n prefix: 'fas',\n iconName: 'drumstick-bite',\n icon: [512, 512, [], \"f6d7\", \"M462.8 49.57a169.44 169.44 0 0 0-239.5 0C187.82 85 160.13 128 160.13 192v85.83l-40.62 40.59c-9.7 9.69-24 11.07-36.78 6a60.33 60.33 0 0 0-65 98.72C33 438.39 54.24 442.7 73.85 438.21c-4.5 19.6-.18 40.83 15.1 56.1a60.35 60.35 0 0 0 98.8-65c-5.09-12.73-3.72-27 6-36.75L234.36 352h85.89a187.87 187.87 0 0 0 61.89-10c-39.64-43.89-39.83-110.23 1.05-151.07 34.38-34.36 86.76-39.46 128.74-16.8 1.3-44.96-14.81-90.28-49.13-124.56z\"]\n};\nvar faDumbbell = {\n prefix: 'fas',\n iconName: 'dumbbell',\n icon: [640, 512, [], \"f44b\", \"M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z\"]\n};\nvar faDumpster = {\n prefix: 'fas',\n iconName: 'dumpster',\n icon: [576, 512, [], \"f793\", \"M560 160c10.4 0 18-9.8 15.5-19.9l-24-96C549.7 37 543.3 32 536 32h-98.9l25.6 128H560zM272 32H171.5l-25.6 128H272V32zm132.5 0H304v128h126.1L404.5 32zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm544 64h-20l4-32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h320v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16l20-160h28c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDumpsterFire = {\n prefix: 'fas',\n iconName: 'dumpster-fire',\n icon: [640, 512, [], \"f794\", \"M418.7 104.1l.2-.2-14.4-72H304v128h60.8c16.2-19.3 34.2-38.2 53.9-55.8zM272 32H171.5l-25.6 128H272V32zm189.3 72.1c18.2 16.3 35.5 33.7 51.1 51.5 5.7-5.6 11.4-11.1 17.3-16.3l21.3-19 21.3 19c1.1.9 2.1 2.1 3.1 3.1-.1-.8.2-1.5 0-2.3l-24-96C549.7 37 543.3 32 536 32h-98.9l12.3 61.5 11.9 10.6zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm324.6 32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208.8c-30.2-33.7-48.8-77.9-48.8-126.4 0-35.9 19.9-82.9 52.6-129.6zm210.5-28.8c-14.9 13.3-28.3 27.2-40.2 41.2-19.5-25.8-43.6-52-71-76.4-70.2 62.7-120 144.3-120 193.6 0 87.5 71.6 158.4 160 158.4s160-70.9 160-158.4c.1-36.6-37-112.2-88.8-158.4zm-18.6 229.4c-14.7 10.7-32.9 17-52.5 17-49 0-88.9-33.5-88.9-88 0-27.1 16.5-51 49.4-91.9 4.7 5.6 67.1 88.1 67.1 88.1l39.8-47c2.8 4.8 5.4 9.5 7.7 14 18.6 36.7 10.8 83.6-22.6 107.8z\"]\n};\nvar faDungeon = {\n prefix: 'fas',\n iconName: 'dungeon',\n icon: [512, 512, [], \"f6d9\", \"M128.73 195.32l-82.81-51.76c-8.04-5.02-18.99-2.17-22.93 6.45A254.19 254.19 0 0 0 .54 239.28C-.05 248.37 7.59 256 16.69 256h97.13c7.96 0 14.08-6.25 15.01-14.16 1.09-9.33 3.24-18.33 6.24-26.94 2.56-7.34.25-15.46-6.34-19.58zM319.03 8C298.86 2.82 277.77 0 256 0s-42.86 2.82-63.03 8c-9.17 2.35-13.91 12.6-10.39 21.39l37.47 104.03A16.003 16.003 0 0 0 235.1 144h41.8c6.75 0 12.77-4.23 15.05-10.58l37.47-104.03c3.52-8.79-1.22-19.03-10.39-21.39zM112 288H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm77.31-283.67l-36.32-90.8c-3.53-8.83-14.13-12.99-22.42-8.31a257.308 257.308 0 0 0-71.61 59.89c-6.06 7.32-3.85 18.48 4.22 23.52l82.93 51.83c6.51 4.07 14.66 2.62 20.11-2.79 5.18-5.15 10.79-9.85 16.79-14.05 6.28-4.41 9.15-12.17 6.3-19.29zM398.18 256h97.13c9.1 0 16.74-7.63 16.15-16.72a254.135 254.135 0 0 0-22.45-89.27c-3.94-8.62-14.89-11.47-22.93-6.45l-82.81 51.76c-6.59 4.12-8.9 12.24-6.34 19.58 3.01 8.61 5.15 17.62 6.24 26.94.93 7.91 7.05 14.16 15.01 14.16zm54.85-162.89a257.308 257.308 0 0 0-71.61-59.89c-8.28-4.68-18.88-.52-22.42 8.31l-36.32 90.8c-2.85 7.12.02 14.88 6.3 19.28 6 4.2 11.61 8.9 16.79 14.05 5.44 5.41 13.6 6.86 20.11 2.79l82.93-51.83c8.07-5.03 10.29-16.19 4.22-23.51zM496 288h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zM240 177.62V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V177.62c-5.23-.89-10.52-1.62-16-1.62s-10.77.73-16 1.62zm-64 41.51V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V189.36c-12.78 7.45-23.84 17.47-32 29.77zm128-29.77V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V219.13c-8.16-12.3-19.22-22.32-32-29.77z\"]\n};\nvar faEdit = {\n prefix: 'fas',\n iconName: 'edit',\n icon: [576, 512, [], \"f044\", \"M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z\"]\n};\nvar faEgg = {\n prefix: 'fas',\n iconName: 'egg',\n icon: [384, 512, [], \"f7fb\", \"M192 0C86 0 0 214 0 320s86 192 192 192 192-86 192-192S298 0 192 0z\"]\n};\nvar faEject = {\n prefix: 'fas',\n iconName: 'eject',\n icon: [448, 512, [], \"f052\", \"M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z\"]\n};\nvar faEllipsisH = {\n prefix: 'fas',\n iconName: 'ellipsis-h',\n icon: [512, 512, [], \"f141\", \"M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z\"]\n};\nvar faEllipsisV = {\n prefix: 'fas',\n iconName: 'ellipsis-v',\n icon: [192, 512, [], \"f142\", \"M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z\"]\n};\nvar faEnvelope = {\n prefix: 'fas',\n iconName: 'envelope',\n icon: [512, 512, [], \"f0e0\", \"M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z\"]\n};\nvar faEnvelopeOpen = {\n prefix: 'fas',\n iconName: 'envelope-open',\n icon: [512, 512, [], \"f2b6\", \"M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z\"]\n};\nvar faEnvelopeOpenText = {\n prefix: 'fas',\n iconName: 'envelope-open-text',\n icon: [512, 512, [], \"f658\", \"M176 216h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16zm-16 80c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16zm96 121.13c-16.42 0-32.84-5.06-46.86-15.19L0 250.86V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V250.86L302.86 401.94c-14.02 10.12-30.44 15.19-46.86 15.19zm237.61-254.18c-8.85-6.94-17.24-13.47-29.61-22.81V96c0-26.51-21.49-48-48-48h-77.55c-3.04-2.2-5.87-4.26-9.04-6.56C312.6 29.17 279.2-.35 256 0c-23.2-.35-56.59 29.17-73.41 41.44-3.17 2.3-6 4.36-9.04 6.56H96c-26.51 0-48 21.49-48 48v44.14c-12.37 9.33-20.76 15.87-29.61 22.81A47.995 47.995 0 0 0 0 200.72v10.65l96 69.35V96h320v184.72l96-69.35v-10.65c0-14.74-6.78-28.67-18.39-37.77z\"]\n};\nvar faEnvelopeSquare = {\n prefix: 'fas',\n iconName: 'envelope-square',\n icon: [448, 512, [], \"f199\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z\"]\n};\nvar faEquals = {\n prefix: 'fas',\n iconName: 'equals',\n icon: [448, 512, [], \"f52c\", \"M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faEraser = {\n prefix: 'fas',\n iconName: 'eraser',\n icon: [512, 512, [], \"f12d\", \"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z\"]\n};\nvar faEthernet = {\n prefix: 'fas',\n iconName: 'ethernet',\n icon: [512, 512, [], \"f796\", \"M496 192h-48v-48c0-8.8-7.2-16-16-16h-48V80c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16v48H80c-8.8 0-16 7.2-16 16v48H16c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16h80V320h32v128h64V320h32v128h64V320h32v128h64V320h32v128h80c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16z\"]\n};\nvar faEuroSign = {\n prefix: 'fas',\n iconName: 'euro-sign',\n icon: [320, 512, [], \"f153\", \"M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z\"]\n};\nvar faExchangeAlt = {\n prefix: 'fas',\n iconName: 'exchange-alt',\n icon: [512, 512, [], \"f362\", \"M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z\"]\n};\nvar faExclamation = {\n prefix: 'fas',\n iconName: 'exclamation',\n icon: [192, 512, [], \"f12a\", \"M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z\"]\n};\nvar faExclamationCircle = {\n prefix: 'fas',\n iconName: 'exclamation-circle',\n icon: [512, 512, [], \"f06a\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExclamationTriangle = {\n prefix: 'fas',\n iconName: 'exclamation-triangle',\n icon: [576, 512, [], \"f071\", \"M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExpand = {\n prefix: 'fas',\n iconName: 'expand',\n icon: [448, 512, [], \"f065\", \"M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z\"]\n};\nvar faExpandAlt = {\n prefix: 'fas',\n iconName: 'expand-alt',\n icon: [448, 512, [], \"f424\", \"M212.686 315.314L120 408l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C10.697 480 0 469.255 0 456V344c0-21.382 25.803-32.09 40.922-16.971L72 360l92.686-92.686c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.249 6.248 6.249 16.378 0 22.627zm22.628-118.628L328 104l-32.922-31.029C279.958 57.851 290.666 32 312.048 32h112C437.303 32 448 42.745 448 56v112c0 21.382-25.803 32.09-40.922 16.971L376 152l-92.686 92.686c-6.248 6.248-16.379 6.248-22.627 0l-25.373-25.373c-6.249-6.248-6.249-16.378 0-22.627z\"]\n};\nvar faExpandArrowsAlt = {\n prefix: 'fas',\n iconName: 'expand-arrows-alt',\n icon: [448, 512, [], \"f31e\", \"M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z\"]\n};\nvar faExternalLinkAlt = {\n prefix: 'fas',\n iconName: 'external-link-alt',\n icon: [512, 512, [], \"f35d\", \"M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z\"]\n};\nvar faExternalLinkSquareAlt = {\n prefix: 'fas',\n iconName: 'external-link-square-alt',\n icon: [448, 512, [], \"f360\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z\"]\n};\nvar faEye = {\n prefix: 'fas',\n iconName: 'eye',\n icon: [576, 512, [], \"f06e\", \"M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z\"]\n};\nvar faEyeDropper = {\n prefix: 'fas',\n iconName: 'eye-dropper',\n icon: [512, 512, [], \"f1fb\", \"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\"]\n};\nvar faEyeSlash = {\n prefix: 'fas',\n iconName: 'eye-slash',\n icon: [640, 512, [], \"f070\", \"M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z\"]\n};\nvar faFan = {\n prefix: 'fas',\n iconName: 'fan',\n icon: [512, 512, [], \"f863\", \"M352.57 128c-28.09 0-54.09 4.52-77.06 12.86l12.41-123.11C289 7.31 279.81-1.18 269.33.13 189.63 10.13 128 77.64 128 159.43c0 28.09 4.52 54.09 12.86 77.06L17.75 224.08C7.31 223-1.18 232.19.13 242.67c10 79.7 77.51 141.33 159.3 141.33 28.09 0 54.09-4.52 77.06-12.86l-12.41 123.11c-1.05 10.43 8.11 18.93 18.59 17.62 79.7-10 141.33-77.51 141.33-159.3 0-28.09-4.52-54.09-12.86-77.06l123.11 12.41c10.44 1.05 18.93-8.11 17.62-18.59-10-79.7-77.51-141.33-159.3-141.33zM256 288a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faFastBackward = {\n prefix: 'fas',\n iconName: 'fast-backward',\n icon: [512, 512, [], \"f049\", \"M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z\"]\n};\nvar faFastForward = {\n prefix: 'fas',\n iconName: 'fast-forward',\n icon: [512, 512, [], \"f050\", \"M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z\"]\n};\nvar faFaucet = {\n prefix: 'fas',\n iconName: 'faucet',\n icon: [512, 512, [], \"e005\", \"M352,256H313.39c-15.71-13.44-35.46-23.07-57.39-28V180.44l-32-3.38-32,3.38V228c-21.93,5-41.68,14.6-57.39,28H16A16,16,0,0,0,0,272v96a16,16,0,0,0,16,16h92.79C129.38,421.73,173,448,224,448s94.62-26.27,115.21-64H352a32,32,0,0,1,32,32,32,32,0,0,0,32,32h64a32,32,0,0,0,32-32A160,160,0,0,0,352,256ZM81.59,159.91l142.41-15,142.41,15c9.42,1,17.59-6.81,17.59-16.8V112.89c0-10-8.17-17.8-17.59-16.81L256,107.74V80a16,16,0,0,0-16-16H208a16,16,0,0,0-16,16v27.74L81.59,96.08C72.17,95.09,64,102.9,64,112.89v30.22C64,153.1,72.17,160.91,81.59,159.91Z\"]\n};\nvar faFax = {\n prefix: 'fas',\n iconName: 'fax',\n icon: [512, 512, [], \"f1ac\", \"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"]\n};\nvar faFeather = {\n prefix: 'fas',\n iconName: 'feather',\n icon: [512, 512, [], \"f52d\", \"M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z\"]\n};\nvar faFeatherAlt = {\n prefix: 'fas',\n iconName: 'feather-alt',\n icon: [512, 512, [], \"f56b\", \"M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z\"]\n};\nvar faFemale = {\n prefix: 'fas',\n iconName: 'female',\n icon: [256, 512, [], \"f182\", \"M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z\"]\n};\nvar faFighterJet = {\n prefix: 'fas',\n iconName: 'fighter-jet',\n icon: [640, 512, [], \"f0fb\", \"M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z\"]\n};\nvar faFile = {\n prefix: 'fas',\n iconName: 'file',\n icon: [384, 512, [], \"f15b\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileAlt = {\n prefix: 'fas',\n iconName: 'file-alt',\n icon: [384, 512, [], \"f15c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileArchive = {\n prefix: 'fas',\n iconName: 'file-archive',\n icon: [384, 512, [], \"f1c6\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zM128.4 336c-17.9 0-32.4 12.1-32.4 27 0 15 14.6 27 32.5 27s32.4-12.1 32.4-27-14.6-27-32.5-27zM224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6z\"]\n};\nvar faFileAudio = {\n prefix: 'fas',\n iconName: 'file-audio',\n icon: [384, 512, [], \"f1c7\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileCode = {\n prefix: 'fas',\n iconName: 'file-code',\n icon: [384, 512, [], \"f1c9\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z\"]\n};\nvar faFileContract = {\n prefix: 'fas',\n iconName: 'file-contract',\n icon: [384, 512, [], \"f56c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileCsv = {\n prefix: 'fas',\n iconName: 'file-csv',\n icon: [384, 512, [], \"f6dd\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileDownload = {\n prefix: 'fas',\n iconName: 'file-download',\n icon: [384, 512, [], \"f56d\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileExcel = {\n prefix: 'fas',\n iconName: 'file-excel',\n icon: [384, 512, [], \"f1c3\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileExport = {\n prefix: 'fas',\n iconName: 'file-export',\n icon: [576, 512, [], \"f56e\", \"M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z\"]\n};\nvar faFileImage = {\n prefix: 'fas',\n iconName: 'file-image',\n icon: [384, 512, [], \"f1c5\", \"M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z\"]\n};\nvar faFileImport = {\n prefix: 'fas',\n iconName: 'file-import',\n icon: [512, 512, [], \"f56f\", \"M16 288c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h112v-64zm489-183L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H152c-13.3 0-24 10.7-24 24v264h128v-65.2c0-14.3 17.3-21.4 27.4-11.3L379 308c6.6 6.7 6.6 17.4 0 24l-95.7 96.4c-10.1 10.1-27.4 3-27.4-11.3V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24z\"]\n};\nvar faFileInvoice = {\n prefix: 'fas',\n iconName: 'file-invoice',\n icon: [384, 512, [], \"f570\", \"M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z\"]\n};\nvar faFileInvoiceDollar = {\n prefix: 'fas',\n iconName: 'file-invoice-dollar',\n icon: [384, 512, [], \"f571\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z\"]\n};\nvar faFileMedical = {\n prefix: 'fas',\n iconName: 'file-medical',\n icon: [384, 512, [], \"f477\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z\"]\n};\nvar faFileMedicalAlt = {\n prefix: 'fas',\n iconName: 'file-medical-alt',\n icon: [448, 512, [], \"f478\", \"M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFilePdf = {\n prefix: 'fas',\n iconName: 'file-pdf',\n icon: [384, 512, [], \"f1c1\", \"M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z\"]\n};\nvar faFilePowerpoint = {\n prefix: 'fas',\n iconName: 'file-powerpoint',\n icon: [384, 512, [], \"f1c4\", \"M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z\"]\n};\nvar faFilePrescription = {\n prefix: 'fas',\n iconName: 'file-prescription',\n icon: [384, 512, [], \"f572\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileSignature = {\n prefix: 'fas',\n iconName: 'file-signature',\n icon: [576, 512, [], \"f573\", \"M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z\"]\n};\nvar faFileUpload = {\n prefix: 'fas',\n iconName: 'file-upload',\n icon: [384, 512, [], \"f574\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileVideo = {\n prefix: 'fas',\n iconName: 'file-video',\n icon: [384, 512, [], \"f1c8\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z\"]\n};\nvar faFileWord = {\n prefix: 'fas',\n iconName: 'file-word',\n icon: [384, 512, [], \"f1c2\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFill = {\n prefix: 'fas',\n iconName: 'fill',\n icon: [512, 512, [], \"f575\", \"M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z\"]\n};\nvar faFillDrip = {\n prefix: 'fas',\n iconName: 'fill-drip',\n icon: [576, 512, [], \"f576\", \"M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z\"]\n};\nvar faFilm = {\n prefix: 'fas',\n iconName: 'film',\n icon: [512, 512, [], \"f008\", \"M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faFilter = {\n prefix: 'fas',\n iconName: 'filter',\n icon: [512, 512, [], \"f0b0\", \"M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z\"]\n};\nvar faFingerprint = {\n prefix: 'fas',\n iconName: 'fingerprint',\n icon: [512, 512, [], \"f577\", \"M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z\"]\n};\nvar faFire = {\n prefix: 'fas',\n iconName: 'fire',\n icon: [384, 512, [], \"f06d\", \"M216 23.86c0-23.8-30.65-32.77-44.15-13.04C48 191.85 224 200 224 288c0 35.63-29.11 64.46-64.85 63.99-35.17-.45-63.15-29.77-63.15-64.94v-85.51c0-21.7-26.47-32.23-41.43-16.5C27.8 213.16 0 261.33 0 320c0 105.87 86.13 192 192 192s192-86.13 192-192c0-170.29-168-193-168-296.14z\"]\n};\nvar faFireAlt = {\n prefix: 'fas',\n iconName: 'fire-alt',\n icon: [448, 512, [], \"f7e4\", \"M323.56 51.2c-20.8 19.3-39.58 39.59-56.22 59.97C240.08 73.62 206.28 35.53 168 0 69.74 91.17 0 209.96 0 281.6 0 408.85 100.29 512 224 512s224-103.15 224-230.4c0-53.27-51.98-163.14-124.44-230.4zm-19.47 340.65C282.43 407.01 255.72 416 226.86 416 154.71 416 96 368.26 96 290.75c0-38.61 24.31-72.63 72.79-130.75 6.93 7.98 98.83 125.34 98.83 125.34l58.63-66.88c4.14 6.85 7.91 13.55 11.27 19.97 27.35 52.19 15.81 118.97-33.43 153.42z\"]\n};\nvar faFireExtinguisher = {\n prefix: 'fas',\n iconName: 'fire-extinguisher',\n icon: [448, 512, [], \"f134\", \"M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z\"]\n};\nvar faFirstAid = {\n prefix: 'fas',\n iconName: 'first-aid',\n icon: [576, 512, [], \"f479\", \"M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faFish = {\n prefix: 'fas',\n iconName: 'fish',\n icon: [576, 512, [], \"f578\", \"M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFistRaised = {\n prefix: 'fas',\n iconName: 'fist-raised',\n icon: [384, 512, [], \"f6de\", \"M255.98 160V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v146.93c5.02-1.78 10.34-2.93 15.97-2.93h48.03zm128 95.99c-.01-35.34-28.66-63.99-63.99-63.99H207.85c-8.78 0-15.9 7.07-15.9 15.85v.56c0 26.27 21.3 47.59 47.57 47.59h35.26c9.68 0 13.2 3.58 13.2 8v16.2c0 4.29-3.59 7.78-7.88 8-44.52 2.28-64.16 24.71-96.05 72.55l-6.31 9.47a7.994 7.994 0 0 1-11.09 2.22l-13.31-8.88a7.994 7.994 0 0 1-2.22-11.09l6.31-9.47c15.73-23.6 30.2-43.26 47.31-58.08-17.27-5.51-31.4-18.12-38.87-34.45-6.59 3.41-13.96 5.52-21.87 5.52h-32c-12.34 0-23.49-4.81-32-12.48C71.48 251.19 60.33 256 48 256H16c-5.64 0-10.97-1.15-16-2.95v77.93c0 33.95 13.48 66.5 37.49 90.51L63.99 448v64h255.98v-63.96l35.91-35.92A96.035 96.035 0 0 0 384 344.21l-.02-88.22zm-32.01-90.09V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v112h32c11.28 0 21.94 2.31 32 5.9zM16 224h32c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v128c0 8.84 7.16 16 16 16zm95.99 0h32c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16z\"]\n};\nvar faFlag = {\n prefix: 'fas',\n iconName: 'flag',\n icon: [512, 512, [], \"f024\", \"M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z\"]\n};\nvar faFlagCheckered = {\n prefix: 'fas',\n iconName: 'flag-checkered',\n icon: [512, 512, [], \"f11e\", \"M243.2 189.9V258c26.1 5.9 49.3 15.6 73.6 22.3v-68.2c-26-5.8-49.4-15.5-73.6-22.2zm223.3-123c-34.3 15.9-76.5 31.9-117 31.9C296 98.8 251.7 64 184.3 64c-25 0-47.3 4.4-68 12 2.8-7.3 4.1-15.2 3.6-23.6C118.1 24 94.8 1.2 66.3 0 34.3-1.3 8 24.3 8 56c0 19 9.5 35.8 24 45.9V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-94.4c28.3-12.1 63.6-22.1 114.4-22.1 53.6 0 97.8 34.8 165.2 34.8 48.2 0 86.7-16.3 122.5-40.9 8.7-6 13.8-15.8 13.8-26.4V95.9c.1-23.3-24.2-38.8-45.4-29zM169.6 325.5c-25.8 2.7-50 8.2-73.6 16.6v-70.5c26.2-9.3 47.5-15 73.6-17.4zM464 191c-23.6 9.8-46.3 19.5-73.6 23.9V286c24.8-3.4 51.4-11.8 73.6-26v70.5c-25.1 16.1-48.5 24.7-73.6 27.1V286c-27 3.7-47.9 1.5-73.6-5.6v67.4c-23.9-7.4-47.3-16.7-73.6-21.3V258c-19.7-4.4-40.8-6.8-73.6-3.8v-70c-22.4 3.1-44.6 10.2-73.6 20.9v-70.5c33.2-12.2 50.1-19.8 73.6-22v71.6c27-3.7 48.4-1.3 73.6 5.7v-67.4c23.7 7.4 47.2 16.7 73.6 21.3v68.4c23.7 5.3 47.6 6.9 73.6 2.7V143c27-4.8 52.3-13.6 73.6-22.5z\"]\n};\nvar faFlagUsa = {\n prefix: 'fas',\n iconName: 'flag-usa',\n icon: [512, 512, [], \"f74d\", \"M32 0C14.3 0 0 14.3 0 32v464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32C64 14.3 49.7 0 32 0zm267.9 303.6c-57.2-15.1-111.7-28.8-203.9 11.1V384c185.7-92.2 221.7 53.3 397.5-23.1 11.4-5 18.5-16.5 18.5-28.8v-36c-43.6 17.3-80.2 24.1-112.1 24.1-37.4-.1-68.9-8.4-100-16.6zm0-96c-57.2-15.1-111.7-28.8-203.9 11.1v61.5c94.8-37.6 154.6-22.7 212.1-7.6 57.2 15.1 111.7 28.8 203.9-11.1V200c-43.6 17.3-80.2 24.1-112.1 24.1-37.4 0-68.9-8.3-100-16.5zm9.5-125.9c51.8 15.6 97.4 29 202.6-20.1V30.8c0-25.1-26.8-38.1-49.4-26.6C291.3 91.5 305.4-62.2 96 32.4v151.9c94.8-37.5 154.6-22.7 212.1-7.6 57.2 15 111.7 28.7 203.9-11.1V96.7c-53.6 23.5-93.3 31.4-126.1 31.4s-59-7.8-85.7-15.9c-4-1.2-8.1-2.4-12.1-3.5V75.5c7.2 2 14.3 4.1 21.3 6.2zM160 128.1c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16-7.2 16-16 16zm0-55.8c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm64 47.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm0-55.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16z\"]\n};\nvar faFlask = {\n prefix: 'fas',\n iconName: 'flask',\n icon: [448, 512, [], \"f0c3\", \"M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z\"]\n};\nvar faFlushed = {\n prefix: 'fas',\n iconName: 'flushed',\n icon: [496, 512, [], \"f579\", \"M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z\"]\n};\nvar faFolder = {\n prefix: 'fas',\n iconName: 'folder',\n icon: [512, 512, [], \"f07b\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z\"]\n};\nvar faFolderMinus = {\n prefix: 'fas',\n iconName: 'folder-minus',\n icon: [512, 512, [], \"f65d\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-96 168c0 8.84-7.16 16-16 16H160c-8.84 0-16-7.16-16-16v-16c0-8.84 7.16-16 16-16h192c8.84 0 16 7.16 16 16v16z\"]\n};\nvar faFolderOpen = {\n prefix: 'fas',\n iconName: 'folder-open',\n icon: [576, 512, [], \"f07c\", \"M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z\"]\n};\nvar faFolderPlus = {\n prefix: 'fas',\n iconName: 'folder-plus',\n icon: [512, 512, [], \"f65e\", \"M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z\"]\n};\nvar faFont = {\n prefix: 'fas',\n iconName: 'font',\n icon: [448, 512, [], \"f031\", \"M432 416h-23.41L277.88 53.69A32 32 0 0 0 247.58 32h-47.16a32 32 0 0 0-30.3 21.69L39.41 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-19.58l23.3-64h152.56l23.3 64H304a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM176.85 272L224 142.51 271.15 272z\"]\n};\nvar faFontAwesomeLogoFull = {\n prefix: 'fas',\n iconName: 'font-awesome-logo-full',\n icon: [3992, 512, [\"Font Awesome\"], \"f4e6\", \"M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z\"]\n};\nvar faFootballBall = {\n prefix: 'fas',\n iconName: 'football-ball',\n icon: [496, 512, [], \"f44e\", \"M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z\"]\n};\nvar faForward = {\n prefix: 'fas',\n iconName: 'forward',\n icon: [512, 512, [], \"f04e\", \"M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z\"]\n};\nvar faFrog = {\n prefix: 'fas',\n iconName: 'frog',\n icon: [576, 512, [], \"f52e\", \"M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFrown = {\n prefix: 'fas',\n iconName: 'frown',\n icon: [496, 512, [], \"f119\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z\"]\n};\nvar faFrownOpen = {\n prefix: 'fas',\n iconName: 'frown-open',\n icon: [496, 512, [], \"f57a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faFunnelDollar = {\n prefix: 'fas',\n iconName: 'funnel-dollar',\n icon: [640, 512, [], \"f662\", \"M433.46 165.94l101.2-111.87C554.61 34.12 540.48 0 512.26 0H31.74C3.52 0-10.61 34.12 9.34 54.07L192 256v155.92c0 12.59 5.93 24.44 16 32l79.99 60c20.86 15.64 48.47 6.97 59.22-13.57C310.8 455.38 288 406.35 288 352c0-89.79 62.05-165.17 145.46-186.06zM480 192c-88.37 0-160 71.63-160 160s71.63 160 160 160 160-71.63 160-160-71.63-160-160-160zm16 239.88V448c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V256c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.04 44.44-42.67 45.07z\"]\n};\nvar faFutbol = {\n prefix: 'fas',\n iconName: 'futbol',\n icon: [512, 512, [], \"f1e3\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z\"]\n};\nvar faGamepad = {\n prefix: 'fas',\n iconName: 'gamepad',\n icon: [640, 512, [], \"f11b\", \"M480.07 96H160a160 160 0 1 0 114.24 272h91.52A160 160 0 1 0 480.07 96zM248 268a12 12 0 0 1-12 12h-52v52a12 12 0 0 1-12 12h-24a12 12 0 0 1-12-12v-52H84a12 12 0 0 1-12-12v-24a12 12 0 0 1 12-12h52v-52a12 12 0 0 1 12-12h24a12 12 0 0 1 12 12v52h52a12 12 0 0 1 12 12zm216 76a40 40 0 1 1 40-40 40 40 0 0 1-40 40zm64-96a40 40 0 1 1 40-40 40 40 0 0 1-40 40z\"]\n};\nvar faGasPump = {\n prefix: 'fas',\n iconName: 'gas-pump',\n icon: [512, 512, [], \"f52f\", \"M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z\"]\n};\nvar faGavel = {\n prefix: 'fas',\n iconName: 'gavel',\n icon: [512, 512, [], \"f0e3\", \"M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z\"]\n};\nvar faGem = {\n prefix: 'fas',\n iconName: 'gem',\n icon: [576, 512, [], \"f3a5\", \"M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z\"]\n};\nvar faGenderless = {\n prefix: 'fas',\n iconName: 'genderless',\n icon: [288, 512, [], \"f22d\", \"M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z\"]\n};\nvar faGhost = {\n prefix: 'fas',\n iconName: 'ghost',\n icon: [384, 512, [], \"f6e2\", \"M186.1.09C81.01 3.24 0 94.92 0 200.05v263.92c0 14.26 17.23 21.39 27.31 11.31l24.92-18.53c6.66-4.95 16-3.99 21.51 2.21l42.95 48.35c6.25 6.25 16.38 6.25 22.63 0l40.72-45.85c6.37-7.17 17.56-7.17 23.92 0l40.72 45.85c6.25 6.25 16.38 6.25 22.63 0l42.95-48.35c5.51-6.2 14.85-7.17 21.51-2.21l24.92 18.53c10.08 10.08 27.31 2.94 27.31-11.31V192C384 84 294.83-3.17 186.1.09zM128 224c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128 0c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faGift = {\n prefix: 'fas',\n iconName: 'gift',\n icon: [512, 512, [], \"f06b\", \"M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm256 32h160c17.7 0 32-14.3 32-32V320H288v160zm192-320h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40z\"]\n};\nvar faGifts = {\n prefix: 'fas',\n iconName: 'gifts',\n icon: [640, 512, [], \"f79c\", \"M240.6 194.1c1.9-30.8 17.3-61.2 44-79.8C279.4 103.5 268.7 96 256 96h-29.4l30.7-22c7.2-5.1 8.9-15.1 3.7-22.3l-9.3-13c-5.1-7.2-15.1-8.9-22.3-3.7l-32 22.9 11.5-30.6c3.1-8.3-1.1-17.5-9.4-20.6l-15-5.6c-8.3-3.1-17.5 1.1-20.6 9.4l-19.9 53-19.9-53.1C121 2.1 111.8-2.1 103.5 1l-15 5.6C80.2 9.7 76 19 79.2 27.2l11.5 30.6L58.6 35c-7.2-5.1-17.2-3.5-22.3 3.7l-9.3 13c-5.1 7.2-3.5 17.2 3.7 22.3l30.7 22H32c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h168.9c-5.5-9.5-8.9-20.3-8.9-32V256c0-29.9 20.8-55 48.6-61.9zM224 480c0 17.7 14.3 32 32 32h160V384H224v96zm224 32h160c17.7 0 32-14.3 32-32v-96H448v128zm160-288h-20.4c2.6-7.6 4.4-15.5 4.4-23.8 0-35.5-27-72.2-72.1-72.2-48.1 0-75.9 47.7-87.9 75.3-12.1-27.6-39.9-75.3-87.9-75.3-45.1 0-72.1 36.7-72.1 72.2 0 8.3 1.7 16.2 4.4 23.8H256c-17.7 0-32 14.3-32 32v96h192V224h15.3l.7-.2.7.2H448v128h192v-96c0-17.7-14.3-32-32-32zm-272 0c-2.7-1.4-5.1-3-7.2-4.8-7.3-6.4-8.8-13.8-8.8-19 0-9.7 6.4-24.2 24.1-24.2 18.7 0 35.6 27.4 44.5 48H336zm199.2-4.8c-2.1 1.8-4.5 3.4-7.2 4.8h-52.6c8.8-20.3 25.8-48 44.5-48 17.7 0 24.1 14.5 24.1 24.2 0 5.2-1.5 12.6-8.8 19z\"]\n};\nvar faGlassCheers = {\n prefix: 'fas',\n iconName: 'glass-cheers',\n icon: [640, 512, [], \"f79f\", \"M639.4 433.6c-8.4-20.4-31.8-30.1-52.2-21.6l-22.1 9.2-38.7-101.9c47.9-35 64.8-100.3 34.5-152.8L474.3 16c-8-13.9-25.1-19.7-40-13.6L320 49.8 205.7 2.4c-14.9-6.2-32-.3-40 13.6L79.1 166.5C48.9 219 65.7 284.3 113.6 319.2L74.9 421.1l-22.1-9.2c-20.4-8.5-43.7 1.2-52.2 21.6-1.7 4.1.2 8.8 4.3 10.5l162.3 67.4c4.1 1.7 8.7-.2 10.4-4.3 8.4-20.4-1.2-43.8-21.6-52.3l-22.1-9.2L173.3 342c4.4.5 8.8 1.3 13.1 1.3 51.7 0 99.4-33.1 113.4-85.3l20.2-75.4 20.2 75.4c14 52.2 61.7 85.3 113.4 85.3 4.3 0 8.7-.8 13.1-1.3L506 445.6l-22.1 9.2c-20.4 8.5-30.1 31.9-21.6 52.3 1.7 4.1 6.4 6 10.4 4.3L635.1 444c4-1.7 6-6.3 4.3-10.4zM275.9 162.1l-112.1-46.5 36.5-63.4 94.5 39.2-18.9 70.7zm88.2 0l-18.9-70.7 94.5-39.2 36.5 63.4-112.1 46.5z\"]\n};\nvar faGlassMartini = {\n prefix: 'fas',\n iconName: 'glass-martini',\n icon: [512, 512, [], \"f000\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z\"]\n};\nvar faGlassMartiniAlt = {\n prefix: 'fas',\n iconName: 'glass-martini-alt',\n icon: [512, 512, [], \"f57b\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z\"]\n};\nvar faGlassWhiskey = {\n prefix: 'fas',\n iconName: 'glass-whiskey',\n icon: [512, 512, [], \"f7a0\", \"M480 32H32C12.5 32-2.4 49.2.3 68.5l56 356.5c4.5 31.5 31.5 54.9 63.4 54.9h273c31.8 0 58.9-23.4 63.4-54.9l55.6-356.5C514.4 49.2 499.5 32 480 32zm-37.4 64l-30 192h-313L69.4 96h373.2z\"]\n};\nvar faGlasses = {\n prefix: 'fas',\n iconName: 'glasses',\n icon: [576, 512, [], \"f530\", \"M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z\"]\n};\nvar faGlobe = {\n prefix: 'fas',\n iconName: 'globe',\n icon: [496, 512, [], \"f0ac\", \"M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z\"]\n};\nvar faGlobeAfrica = {\n prefix: 'fas',\n iconName: 'globe-africa',\n icon: [496, 512, [], \"f57c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z\"]\n};\nvar faGlobeAmericas = {\n prefix: 'fas',\n iconName: 'globe-americas',\n icon: [496, 512, [], \"f57d\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z\"]\n};\nvar faGlobeAsia = {\n prefix: 'fas',\n iconName: 'globe-asia',\n icon: [496, 512, [], \"f57e\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z\"]\n};\nvar faGlobeEurope = {\n prefix: 'fas',\n iconName: 'globe-europe',\n icon: [496, 512, [], \"f7a2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm200 248c0 22.5-3.9 44.2-10.8 64.4h-20.3c-4.3 0-8.4-1.7-11.4-4.8l-32-32.6c-4.5-4.6-4.5-12.1.1-16.7l12.5-12.5v-8.7c0-3-1.2-5.9-3.3-8l-9.4-9.4c-2.1-2.1-5-3.3-8-3.3h-16c-6.2 0-11.3-5.1-11.3-11.3 0-3 1.2-5.9 3.3-8l9.4-9.4c2.1-2.1 5-3.3 8-3.3h32c6.2 0 11.3-5.1 11.3-11.3v-9.4c0-6.2-5.1-11.3-11.3-11.3h-36.7c-8.8 0-16 7.2-16 16v4.5c0 6.9-4.4 13-10.9 15.2l-31.6 10.5c-3.3 1.1-5.5 4.1-5.5 7.6v2.2c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8s-3.6-8-8-8H247c-3 0-5.8 1.7-7.2 4.4l-9.4 18.7c-2.7 5.4-8.2 8.8-14.3 8.8H194c-8.8 0-16-7.2-16-16V199c0-4.2 1.7-8.3 4.7-11.3l20.1-20.1c4.6-4.6 7.2-10.9 7.2-17.5 0-3.4 2.2-6.5 5.5-7.6l40-13.3c1.7-.6 3.2-1.5 4.4-2.7l26.8-26.8c2.1-2.1 3.3-5 3.3-8 0-6.2-5.1-11.3-11.3-11.3H258l-16 16v8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-20c0-2.5 1.2-4.9 3.2-6.4l28.9-21.7c1.9-.1 3.8-.3 5.7-.3C358.3 56 448 145.7 448 256zM130.1 149.1c0-3 1.2-5.9 3.3-8l25.4-25.4c2.1-2.1 5-3.3 8-3.3 6.2 0 11.3 5.1 11.3 11.3v16c0 3-1.2 5.9-3.3 8l-9.4 9.4c-2.1 2.1-5 3.3-8 3.3h-16c-6.2 0-11.3-5.1-11.3-11.3zm128 306.4v-7.1c0-8.8-7.2-16-16-16h-20.2c-10.8 0-26.7-5.3-35.4-11.8l-22.2-16.7c-11.5-8.6-18.2-22.1-18.2-36.4v-23.9c0-16 8.4-30.8 22.1-39l42.9-25.7c7.1-4.2 15.2-6.5 23.4-6.5h31.2c10.9 0 21.4 3.9 29.6 10.9l43.2 37.1h18.3c8.5 0 16.6 3.4 22.6 9.4l17.3 17.3c3.4 3.4 8.1 5.3 12.9 5.3H423c-32.4 58.9-93.8 99.5-164.9 103.1z\"]\n};\nvar faGolfBall = {\n prefix: 'fas',\n iconName: 'golf-ball',\n icon: [416, 512, [], \"f450\", \"M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z\"]\n};\nvar faGopuram = {\n prefix: 'fas',\n iconName: 'gopuram',\n icon: [512, 512, [], \"f664\", \"M496 352h-16V240c0-8.8-7.2-16-16-16h-16v-80c0-8.8-7.2-16-16-16h-16V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16S96 7.2 96 16v112H80c-8.8 0-16 7.2-16 16v80H48c-8.8 0-16 7.2-16 16v112H16c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16h80V352h32V224h32v-96h32v96h-32v128h-32v160h80v-80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v80h80V352h-32V224h-32v-96h32v96h32v128h32v160h80c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zM232 176c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v48h-48zm56 176h-64v-64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z\"]\n};\nvar faGraduationCap = {\n prefix: 'fas',\n iconName: 'graduation-cap',\n icon: [640, 512, [], \"f19d\", \"M622.34 153.2L343.4 67.5c-15.2-4.67-31.6-4.67-46.79 0L17.66 153.2c-23.54 7.23-23.54 38.36 0 45.59l48.63 14.94c-10.67 13.19-17.23 29.28-17.88 46.9C38.78 266.15 32 276.11 32 288c0 10.78 5.68 19.85 13.86 25.65L20.33 428.53C18.11 438.52 25.71 448 35.94 448h56.11c10.24 0 17.84-9.48 15.62-19.47L82.14 313.65C90.32 307.85 96 298.78 96 288c0-11.57-6.47-21.25-15.66-26.87.76-15.02 8.44-28.3 20.69-36.72L296.6 284.5c9.06 2.78 26.44 6.25 46.79 0l278.95-85.7c23.55-7.24 23.55-38.36 0-45.6zM352.79 315.09c-28.53 8.76-52.84 3.92-65.59 0l-145.02-44.55L128 384c0 35.35 85.96 64 192 64s192-28.65 192-64l-14.18-113.47-145.03 44.56z\"]\n};\nvar faGreaterThan = {\n prefix: 'fas',\n iconName: 'greater-than',\n icon: [384, 512, [], \"f531\", \"M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z\"]\n};\nvar faGreaterThanEqual = {\n prefix: 'fas',\n iconName: 'greater-than-equal',\n icon: [448, 512, [], \"f532\", \"M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faGrimace = {\n prefix: 'fas',\n iconName: 'grimace',\n icon: [496, 512, [], \"f57f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z\"]\n};\nvar faGrin = {\n prefix: 'fas',\n iconName: 'grin',\n icon: [496, 512, [], \"f580\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinAlt = {\n prefix: 'fas',\n iconName: 'grin-alt',\n icon: [496, 512, [], \"f581\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeam = {\n prefix: 'fas',\n iconName: 'grin-beam',\n icon: [496, 512, [], \"f582\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeamSweat = {\n prefix: 'fas',\n iconName: 'grin-beam-sweat',\n icon: [504, 512, [], \"f583\", \"M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinHearts = {\n prefix: 'fas',\n iconName: 'grin-hearts',\n icon: [496, 512, [], \"f584\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z\"]\n};\nvar faGrinSquint = {\n prefix: 'fas',\n iconName: 'grin-squint',\n icon: [496, 512, [], \"f585\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinSquintTears = {\n prefix: 'fas',\n iconName: 'grin-squint-tears',\n icon: [512, 512, [], \"f586\", \"M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z\"]\n};\nvar faGrinStars = {\n prefix: 'fas',\n iconName: 'grin-stars',\n icon: [496, 512, [], \"f587\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z\"]\n};\nvar faGrinTears = {\n prefix: 'fas',\n iconName: 'grin-tears',\n icon: [640, 512, [], \"f588\", \"M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinTongue = {\n prefix: 'fas',\n iconName: 'grin-tongue',\n icon: [496, 512, [], \"f589\", \"M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinTongueSquint = {\n prefix: 'fas',\n iconName: 'grin-tongue-squint',\n icon: [496, 512, [], \"f58a\", \"M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z\"]\n};\nvar faGrinTongueWink = {\n prefix: 'fas',\n iconName: 'grin-tongue-wink',\n icon: [496, 512, [], \"f58b\", \"M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinWink = {\n prefix: 'fas',\n iconName: 'grin-wink',\n icon: [496, 512, [], \"f58c\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z\"]\n};\nvar faGripHorizontal = {\n prefix: 'fas',\n iconName: 'grip-horizontal',\n icon: [448, 512, [], \"f58d\", \"M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGripLines = {\n prefix: 'fas',\n iconName: 'grip-lines',\n icon: [512, 512, [], \"f7a4\", \"M496 288H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-128H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faGripLinesVertical = {\n prefix: 'fas',\n iconName: 'grip-lines-vertical',\n icon: [256, 512, [], \"f7a5\", \"M96 496V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm128 0V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16z\"]\n};\nvar faGripVertical = {\n prefix: 'fas',\n iconName: 'grip-vertical',\n icon: [320, 512, [], \"f58e\", \"M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGuitar = {\n prefix: 'fas',\n iconName: 'guitar',\n icon: [512, 512, [], \"f7a6\", \"M502.63 39L473 9.37a32 32 0 0 0-45.26 0L381.46 55.7a35.14 35.14 0 0 0-8.53 13.79L360.77 106l-76.26 76.26c-12.16-8.76-25.5-15.74-40.1-19.14-33.45-7.78-67-.88-89.88 22a82.45 82.45 0 0 0-20.24 33.47c-6 18.56-23.21 32.69-42.15 34.46-23.7 2.27-45.73 11.45-62.61 28.44C-16.11 327-7.9 409 47.58 464.45S185 528 230.56 482.52c17-16.88 26.16-38.9 28.45-62.71 1.76-18.85 15.89-36.13 34.43-42.14a82.6 82.6 0 0 0 33.48-20.25c22.87-22.88 29.74-56.36 22-89.75-3.39-14.64-10.37-28-19.16-40.2L406 151.23l36.48-12.16a35.14 35.14 0 0 0 13.79-8.53l46.33-46.32a32 32 0 0 0 .03-45.22zM208 352a48 48 0 1 1 48-48 48 48 0 0 1-48 48z\"]\n};\nvar faHSquare = {\n prefix: 'fas',\n iconName: 'h-square',\n icon: [448, 512, [], \"f0fd\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z\"]\n};\nvar faHamburger = {\n prefix: 'fas',\n iconName: 'hamburger',\n icon: [512, 512, [], \"f805\", \"M464 256H48a48 48 0 0 0 0 96h416a48 48 0 0 0 0-96zm16 128H32a16 16 0 0 0-16 16v16a64 64 0 0 0 64 64h352a64 64 0 0 0 64-64v-16a16 16 0 0 0-16-16zM58.64 224h394.72c34.57 0 54.62-43.9 34.82-75.88C448 83.2 359.55 32.1 256 32c-103.54.1-192 51.2-232.18 116.11C4 180.09 24.07 224 58.64 224zM384 112a16 16 0 1 1-16 16 16 16 0 0 1 16-16zM256 80a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm-128 32a16 16 0 1 1-16 16 16 16 0 0 1 16-16z\"]\n};\nvar faHammer = {\n prefix: 'fas',\n iconName: 'hammer',\n icon: [576, 512, [], \"f6e3\", \"M571.31 193.94l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31-28.9-28.9c5.63-21.31.36-44.9-16.35-61.61l-45.25-45.25c-62.48-62.48-163.79-62.48-226.28 0l90.51 45.25v18.75c0 16.97 6.74 33.25 18.75 45.25l49.14 49.14c16.71 16.71 40.3 21.98 61.61 16.35l28.9 28.9-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l90.51-90.51c6.23-6.24 6.23-16.37-.02-22.62zm-286.72-15.2c-3.7-3.7-6.84-7.79-9.85-11.95L19.64 404.96c-25.57 23.88-26.26 64.19-1.53 88.93s65.05 24.05 88.93-1.53l238.13-255.07c-3.96-2.91-7.9-5.87-11.44-9.41l-49.14-49.14z\"]\n};\nvar faHamsa = {\n prefix: 'fas',\n iconName: 'hamsa',\n icon: [512, 512, [], \"f665\", \"M509.34 307.25C504.28 295.56 492.75 288 480 288h-64V80c0-22-18-40-40-40s-40 18-40 40v134c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V40c0-22-18-40-40-40s-40 18-40 40v174c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V80c0-22-18-40-40-40S96 58 96 80v208H32c-12.75 0-24.28 7.56-29.34 19.25a31.966 31.966 0 0 0 5.94 34.58l102.69 110.03C146.97 490.08 199.69 512 256 512s109.03-21.92 144.72-60.14L503.4 341.83a31.966 31.966 0 0 0 5.94-34.58zM256 416c-53.02 0-96-64-96-64s42.98-64 96-64 96 64 96 64-42.98 64-96 64zm0-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faHandHolding = {\n prefix: 'fas',\n iconName: 'hand-holding',\n icon: [576, 512, [], \"f4bd\", \"M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingHeart = {\n prefix: 'fas',\n iconName: 'hand-holding-heart',\n icon: [576, 512, [], \"f4be\", \"M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingMedical = {\n prefix: 'fas',\n iconName: 'hand-holding-medical',\n icon: [576, 512, [], \"e05c\", \"M159.88,175.82h64v64a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16v-64h64a16,16,0,0,0,16-16v-64a16,16,0,0,0-16-16h-64v-64a16,16,0,0,0-16-16h-64a16,16,0,0,0-16,16v64h-64a16,16,0,0,0-16,16v64A16,16,0,0,0,159.88,175.82ZM568.07,336.13a39.91,39.91,0,0,0-55.93-8.47L392.47,415.84H271.86a16,16,0,0,1,0-32H350.1c16,0,30.75-10.87,33.37-26.61a32.06,32.06,0,0,0-31.62-37.38h-160a117.7,117.7,0,0,0-74.12,26.25l-46.5,37.74H15.87a16.11,16.11,0,0,0-16,16v96a16.11,16.11,0,0,0,16,16h347a104.8,104.8,0,0,0,61.7-20.27L559.6,392A40,40,0,0,0,568.07,336.13Z\"]\n};\nvar faHandHoldingUsd = {\n prefix: 'fas',\n iconName: 'hand-holding-usd',\n icon: [576, 512, [], \"f4c0\", \"M271.06,144.3l54.27,14.3a8.59,8.59,0,0,1,6.63,8.1c0,4.6-4.09,8.4-9.12,8.4h-35.6a30,30,0,0,1-11.19-2.2c-5.24-2.2-11.28-1.7-15.3,2l-19,17.5a11.68,11.68,0,0,0-2.25,2.66,11.42,11.42,0,0,0,3.88,15.74,83.77,83.77,0,0,0,34.51,11.5V240c0,8.8,7.83,16,17.37,16h17.37c9.55,0,17.38-7.2,17.38-16V222.4c32.93-3.6,57.84-31,53.5-63-3.15-23-22.46-41.3-46.56-47.7L282.68,97.4a8.59,8.59,0,0,1-6.63-8.1c0-4.6,4.09-8.4,9.12-8.4h35.6A30,30,0,0,1,332,83.1c5.23,2.2,11.28,1.7,15.3-2l19-17.5A11.31,11.31,0,0,0,368.47,61a11.43,11.43,0,0,0-3.84-15.78,83.82,83.82,0,0,0-34.52-11.5V16c0-8.8-7.82-16-17.37-16H295.37C285.82,0,278,7.2,278,16V33.6c-32.89,3.6-57.85,31-53.51,63C227.63,119.6,247,137.9,271.06,144.3ZM565.27,328.1c-11.8-10.7-30.2-10-42.6,0L430.27,402a63.64,63.64,0,0,1-40,14H272a16,16,0,0,1,0-32h78.29c15.9,0,30.71-10.9,33.25-26.6a31.2,31.2,0,0,0,.46-5.46A32,32,0,0,0,352,320H192a117.66,117.66,0,0,0-74.1,26.29L71.4,384H16A16,16,0,0,0,0,400v96a16,16,0,0,0,16,16H372.77a64,64,0,0,0,40-14L564,377a32,32,0,0,0,1.28-48.9Z\"]\n};\nvar faHandHoldingWater = {\n prefix: 'fas',\n iconName: 'hand-holding-water',\n icon: [576, 512, [], \"f4c1\", \"M288 256c53 0 96-42.1 96-94 0-40-57.1-120.7-83.2-155.6-6.4-8.5-19.2-8.5-25.6 0C249.1 41.3 192 122 192 162c0 51.9 43 94 96 94zm277.3 72.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandLizard = {\n prefix: 'fas',\n iconName: 'hand-lizard',\n icon: [576, 512, [], \"f258\", \"M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z\"]\n};\nvar faHandMiddleFinger = {\n prefix: 'fas',\n iconName: 'hand-middle-finger',\n icon: [512, 512, [], \"f806\", \"M479.93 317.12a37.33 37.33 0 0 0-28.28-36.19L416 272v-49.59c0-11.44-9.69-21.29-23.15-23.54l-38.4-6.4C336.63 189.5 320 200.86 320 216v32a8 8 0 0 1-16 0V50c0-26.28-20.25-49.2-46.52-50A48 48 0 0 0 208 48v200a8 8 0 0 1-16 0v-32c0-15.15-16.63-26.51-34.45-23.54l-30.68 5.12c-18 3-30.87 16.12-30.87 31.38V376a8 8 0 0 1-16 0v-76l-27.36 15A37.34 37.34 0 0 0 32 348.4v73.47a37.31 37.31 0 0 0 10.93 26.39l30.93 30.93A112 112 0 0 0 153.05 512h215A112 112 0 0 0 480 400z\"]\n};\nvar faHandPaper = {\n prefix: 'fas',\n iconName: 'hand-paper',\n icon: [448, 512, [], \"f256\", \"M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z\"]\n};\nvar faHandPeace = {\n prefix: 'fas',\n iconName: 'hand-peace',\n icon: [448, 512, [], \"f25b\", \"M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z\"]\n};\nvar faHandPointDown = {\n prefix: 'fas',\n iconName: 'hand-point-down',\n icon: [384, 512, [], \"f0a7\", \"M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointLeft = {\n prefix: 'fas',\n iconName: 'hand-point-left',\n icon: [512, 512, [], \"f0a5\", \"M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z\"]\n};\nvar faHandPointRight = {\n prefix: 'fas',\n iconName: 'hand-point-right',\n icon: [512, 512, [], \"f0a4\", \"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointUp = {\n prefix: 'fas',\n iconName: 'hand-point-up',\n icon: [384, 512, [], \"f0a6\", \"M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z\"]\n};\nvar faHandPointer = {\n prefix: 'fas',\n iconName: 'hand-pointer',\n icon: [448, 512, [], \"f25a\", \"M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z\"]\n};\nvar faHandRock = {\n prefix: 'fas',\n iconName: 'hand-rock',\n icon: [512, 512, [], \"f255\", \"M464.8 80c-26.9-.4-48.8 21.2-48.8 48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v32h-8V80.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v136l-8-7.1v-48.1c0-26.3-20.9-48.3-47.2-48.8C21.9 127.6 0 149.2 0 176v66.4c0 27.4 11.7 53.5 32.2 71.8l111.7 99.3c10.2 9.1 16.1 22.2 16.1 35.9v6.7c0 13.3 10.7 24 24 24h240c13.3 0 24-10.7 24-24v-2.9c0-12.8 2.6-25.5 7.5-37.3l49-116.3c5-11.8 7.5-24.5 7.5-37.3V128.8c0-26.3-20.9-48.4-47.2-48.8z\"]\n};\nvar faHandScissors = {\n prefix: 'fas',\n iconName: 'hand-scissors',\n icon: [512, 512, [], \"f257\", \"M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z\"]\n};\nvar faHandSparkles = {\n prefix: 'fas',\n iconName: 'hand-sparkles',\n icon: [640, 512, [], \"e05d\", \"M106.66,170.64l.09,0,49.55-20.65a7.32,7.32,0,0,0,3.68-6h0a7.29,7.29,0,0,0-3.68-6l-49.57-20.67-.07,0L86,67.68a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L3.7,138A7.29,7.29,0,0,0,0,144H0a7.32,7.32,0,0,0,3.68,6L53.27,170.6l.07,0L74,220.26a6.65,6.65,0,0,0,11.92,0l20.69-49.62ZM471.38,467.41l-1-.42-1-.5a38.67,38.67,0,0,1,0-69.14l1-.49,1-.43,37.49-15.63,15.63-37.48.41-1,.47-.95c3.85-7.74,10.58-13.63,18.35-17.34,0-1.33.25-2.69.27-4V144a32,32,0,0,0-64,0v72a8,8,0,0,1-8,8H456a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H360a8,8,0,0,1-8-8V32a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H264a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0v241l-23.59-32.49a40,40,0,0,0-64.71,47.09L229.3,492.21A48.07,48.07,0,0,0,268.09,512H465.7c19.24,0,35.65-11.73,43.24-28.79l-.07-.17ZM349.79,339.52,320,351.93l-12.42,29.78a4,4,0,0,1-7.15,0L288,351.93l-29.79-12.41a4,4,0,0,1,0-7.16L288,319.94l12.42-29.78a4,4,0,0,1,7.15,0L320,319.94l29.79,12.42a4,4,0,0,1,0,7.16ZM640,431.91a7.28,7.28,0,0,0-3.68-6l-49.57-20.67-.07,0L566,355.63a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L483.7,426a7.28,7.28,0,0,0-3.68,6h0a7.29,7.29,0,0,0,3.68,5.95l49.57,20.67.07,0L554,508.21a6.65,6.65,0,0,0,11.92,0l20.69-49.62h0l.09,0,49.55-20.66a7.29,7.29,0,0,0,3.68-5.95h0Z\"]\n};\nvar faHandSpock = {\n prefix: 'fas',\n iconName: 'hand-spock',\n icon: [512, 512, [], \"f259\", \"M510.9005,145.27027,442.604,432.09391A103.99507,103.99507,0,0,1,341.43745,512H214.074a135.96968,135.96968,0,0,1-93.18489-36.95291L12.59072,373.12723a39.992,39.992,0,0,1,54.8122-58.24988l60.59342,57.02528v0a283.24849,283.24849,0,0,0-11.6703-80.46734L73.63726,147.36011a40.00575,40.00575,0,1,1,76.71833-22.7187l37.15458,125.39477a8.33113,8.33113,0,0,0,16.05656-4.4414L153.26183,49.95406A39.99638,39.99638,0,1,1,230.73015,30.0166l56.09491,218.15825a10.42047,10.42047,0,0,0,20.30018-.501L344.80766,63.96966a40.052,40.052,0,0,1,51.30245-30.0893c19.86073,6.2998,30.86262,27.67378,26.67564,48.08487l-33.83869,164.966a7.55172,7.55172,0,0,0,14.74406,3.2666l29.3973-123.45874a39.99414,39.99414,0,1,1,77.81208,18.53121Z\"]\n};\nvar faHands = {\n prefix: 'fas',\n iconName: 'hands',\n icon: [640, 512, [], \"f4c2\", \"M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z\"]\n};\nvar faHandsHelping = {\n prefix: 'fas',\n iconName: 'hands-helping',\n icon: [640, 512, [], \"f4c4\", \"M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z\"]\n};\nvar faHandsWash = {\n prefix: 'fas',\n iconName: 'hands-wash',\n icon: [576, 512, [], \"e05e\", \"M496,224a48,48,0,1,0-48-48A48,48,0,0,0,496,224ZM311.47,178.45A56.77,56.77,0,0,1,328,176a56,56,0,0,1,19,3.49l15.35-48.61A24,24,0,0,0,342,99.74c-11.53-1.35-22.21,6.44-25.71,17.51l-20.9,66.17ZM93.65,386.33c.8-.19,1.54-.54,2.35-.71V359.93a156,156,0,0,1,107.06-148l73.7-22.76L310.92,81.05a24,24,0,0,0-20.33-31.11c-11.53-1.34-22.22,6.45-25.72,17.52L231.42,173.88a8,8,0,0,1-15.26-4.83L259.53,31.26A24,24,0,0,0,239.2.15C227.67-1.19,217,6.6,213.49,17.66L165.56,169.37a8,8,0,1,1-15.26-4.82l38.56-122a24,24,0,0,0-20.33-31.11C157,10,146.32,17.83,142.82,28.9l-60,189.85L80.76,168.7A24,24,0,0,0,56.9,144.55c-13.23-.05-24.72,10.54-24.9,23.86V281.14A123.69,123.69,0,0,0,93.65,386.33ZM519.1,336H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,279.84,498.71,272,487.1,272H288l47.09-17.06a24,24,0,0,0-14.18-45.88L213.19,242.31A123.88,123.88,0,0,0,128,360v25.65a79.78,79.78,0,0,1,58,108.63A118.9,118.9,0,0,0,248,512H456a24,24,0,0,0,23.54-28.76C477.35,471.84,466.71,464,455.1,464H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,407.84,498.71,400,487.1,400H360a8,8,0,0,1,0-16H520a24,24,0,0,0,23.54-28.76C541.35,343.84,530.71,336,519.1,336ZM416,64a32,32,0,1,0-32-32A32,32,0,0,0,416,64ZM112,416a48,48,0,1,0,48,48A48,48,0,0,0,112,416Z\"]\n};\nvar faHandshake = {\n prefix: 'fas',\n iconName: 'handshake',\n icon: [640, 512, [], \"f2b5\", \"M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z\"]\n};\nvar faHandshakeAltSlash = {\n prefix: 'fas',\n iconName: 'handshake-alt-slash',\n icon: [640, 512, [], \"e05f\", \"M358.59,195.6,504.2,313.8a63.4,63.4,0,0,1,22.21,37.91H624a16.05,16.05,0,0,0,16-16V143.91A16,16,0,0,0,624,128H512L457.41,73.41A32,32,0,0,0,434.8,64H348.91a32,32,0,0,0-21.61,8.41l-88.12,80.68-25.69-19.85L289.09,64H205.3a32,32,0,0,0-22.6,9.41l-20.34,20.3L45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.54,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45L303.4,202.72l32.69-29.92,27-24.7a16,16,0,0,1,21.61,23.61ZM16,128A16.05,16.05,0,0,0,0,144V335.91a16,16,0,0,0,16,16H146.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L23.56,128Z\"]\n};\nvar faHandshakeSlash = {\n prefix: 'fas',\n iconName: 'handshake-slash',\n icon: [640, 512, [], \"e060\", \"M0,128.21V384H64a32,32,0,0,0,32-32V184L23.83,128.21ZM48,320.1a16,16,0,1,1-16,16A16,16,0,0,1,48,320.1Zm80,31.81h18.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L128,208.72Zm416-223.7V352.1a32,32,0,0,0,32,32h64V128.21ZM592,352.1a16,16,0,1,1,16-16A16,16,0,0,1,592,352.1ZM303.33,202.67l59.58-54.57a16,16,0,0,1,21.59,23.61L358.41,195.6,504,313.8a73.08,73.08,0,0,1,7.91,7.7V128L457.3,73.41A31.76,31.76,0,0,0,434.7,64H348.8a31.93,31.93,0,0,0-21.6,8.41l-88.07,80.64-25.64-19.81L289.09,64H205.3a32,32,0,0,0-22.6,9.41L162.36,93.72,45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.65-25.27a16,16,0,0,0-2.82-22.45Z\"]\n};\nvar faHanukiah = {\n prefix: 'fas',\n iconName: 'hanukiah',\n icon: [640, 512, [], \"f6e6\", \"M232 160c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm-64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm224 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm88 8c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v120h32V168zm-440-8c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm520 0h-32c-8.84 0-16 7.16-16 16v112c0 17.67-14.33 32-32 32H352V128c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v192H96c-17.67 0-32-14.33-32-32V176c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v112c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V176c0-8.84-7.16-16-16-16zm-16-32c13.25 0 24-11.94 24-26.67S608 48 608 48s-24 38.61-24 53.33S594.75 128 608 128zm-576 0c13.25 0 24-11.94 24-26.67S32 48 32 48 8 86.61 8 101.33 18.75 128 32 128zm288-48c13.25 0 24-11.94 24-26.67S320 0 320 0s-24 38.61-24 53.33S306.75 80 320 80zm-208 48c13.25 0 24-11.94 24-26.67S112 48 112 48s-24 38.61-24 53.33S98.75 128 112 128zm64 0c13.25 0 24-11.94 24-26.67S176 48 176 48s-24 38.61-24 53.33S162.75 128 176 128zm64 0c13.25 0 24-11.94 24-26.67S240 48 240 48s-24 38.61-24 53.33S226.75 128 240 128zm160 0c13.25 0 24-11.94 24-26.67S400 48 400 48s-24 38.61-24 53.33S386.75 128 400 128zm64 0c13.25 0 24-11.94 24-26.67S464 48 464 48s-24 38.61-24 53.33S450.75 128 464 128zm64 0c13.25 0 24-11.94 24-26.67S528 48 528 48s-24 38.61-24 53.33S514.75 128 528 128z\"]\n};\nvar faHardHat = {\n prefix: 'fas',\n iconName: 'hard-hat',\n icon: [512, 512, [], \"f807\", \"M480 288c0-80.25-49.28-148.92-119.19-177.62L320 192V80a16 16 0 0 0-16-16h-96a16 16 0 0 0-16 16v112l-40.81-81.62C81.28 139.08 32 207.75 32 288v64h448zm16 96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faHashtag = {\n prefix: 'fas',\n iconName: 'hashtag',\n icon: [448, 512, [], \"f292\", \"M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z\"]\n};\nvar faHatCowboy = {\n prefix: 'fas',\n iconName: 'hat-cowboy',\n icon: [640, 512, [], \"f8c0\", \"M490 296.9C480.51 239.51 450.51 64 392.3 64c-14 0-26.49 5.93-37 14a58.21 58.21 0 0 1-70.58 0c-10.51-8-23-14-37-14-58.2 0-88.2 175.47-97.71 232.88C188.81 309.47 243.73 320 320 320s131.23-10.51 170-23.1zm142.9-37.18a16 16 0 0 0-19.75 1.5c-1 .9-101.27 90.78-293.16 90.78-190.82 0-292.22-89.94-293.24-90.84A16 16 0 0 0 1 278.53C1.73 280.55 78.32 480 320 480s318.27-199.45 319-201.47a16 16 0 0 0-6.09-18.81z\"]\n};\nvar faHatCowboySide = {\n prefix: 'fas',\n iconName: 'hat-cowboy-side',\n icon: [640, 512, [], \"f8c1\", \"M260.8 291.06c-28.63-22.94-62-35.06-96.4-35.06C87 256 21.47 318.72 1.43 412.06c-3.55 16.6-.43 33.83 8.57 47.3C18.75 472.47 31.83 480 45.88 480H592c-103.21 0-155-37.07-233.19-104.46zm234.65-18.29L468.4 116.2A64 64 0 0 0 392 64.41L200.85 105a64 64 0 0 0-50.35 55.79L143.61 226c6.9-.83 13.7-2 20.79-2 41.79 0 82 14.55 117.29 42.82l98 84.48C450.76 412.54 494.9 448 592 448a48 48 0 0 0 48-48c0-25.39-29.6-119.33-144.55-127.23z\"]\n};\nvar faHatWizard = {\n prefix: 'fas',\n iconName: 'hat-wizard',\n icon: [512, 512, [], \"f6e8\", \"M496 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-304-64l-64-32 64-32 32-64 32 64 64 32-64 32-16 32h208l-86.41-201.63a63.955 63.955 0 0 1-1.89-45.45L416 0 228.42 107.19a127.989 127.989 0 0 0-53.46 59.15L64 416h144l-16-32zm64-224l16-32 16 32 32 16-32 16-16 32-16-32-32-16 32-16z\"]\n};\nvar faHdd = {\n prefix: 'fas',\n iconName: 'hdd',\n icon: [576, 512, [], \"f0a0\", \"M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faHeadSideCough = {\n prefix: 'fas',\n iconName: 'head-side-cough',\n icon: [640, 512, [], \"e061\", \"M616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304ZM552,416a24,24,0,1,0,24,24A24,24,0,0,0,552,416Zm-64-56a24,24,0,1,0,24,24A24,24,0,0,0,488,360ZM616,464a24,24,0,1,0,24,24A24,24,0,0,0,616,464Zm0-104a24,24,0,1,0,24,24A24,24,0,0,0,616,360Zm-64-40a24,24,0,1,0,24,24A24,24,0,0,0,552,320Zm-74.78-45c-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192C86,0,0,86,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320a32,32,0,0,1,0-64h96V320h32A32,32,0,0,0,477.22,275ZM288,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,288,224Z\"]\n};\nvar faHeadSideCoughSlash = {\n prefix: 'fas',\n iconName: 'head-side-cough-slash',\n icon: [640, 512, [], \"e062\", \"M454.11,319.21c19.56-3.81,31.62-25,23.11-44.21-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192A190.64,190.64,0,0,0,84.18,33.3L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM313.39,210.45,263.61,172c5.88-7.14,14.43-12,24.36-12a32.06,32.06,0,0,1,32,32C320,199,317.24,205.17,313.39,210.45ZM616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304Zm-64,64a24,24,0,1,0-24-24A24,24,0,0,0,552,368ZM288,384a32,32,0,0,1,32-32h19.54L20.73,105.59A190.86,190.86,0,0,0,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320A32,32,0,0,1,288,384Zm328-24a24,24,0,1,0,24,24A24,24,0,0,0,616,360Z\"]\n};\nvar faHeadSideMask = {\n prefix: 'fas',\n iconName: 'head-side-mask',\n icon: [512, 512, [], \"e063\", \"M.15,184.42C-2.17,244.21,23,298.06,64,334.88V512H224V316.51L3.67,156.25A182.28,182.28,0,0,0,.15,184.42ZM509.22,275c-21-47.12-48.5-151.75-73.12-186.75A208.11,208.11,0,0,0,266.11,0H200C117,0,42.48,50.57,13.25,123.65L239.21,288H511.76A31.35,31.35,0,0,0,509.22,275ZM320,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,320,224Zm16,144H496l16-48H256V512H401.88a64,64,0,0,0,60.71-43.76L464,464H336a16,16,0,0,1,0-32H474.67l10.67-32H336a16,16,0,0,1,0-32Z\"]\n};\nvar faHeadSideVirus = {\n prefix: 'fas',\n iconName: 'head-side-virus',\n icon: [512, 512, [], \"e064\", \"M272,240a16,16,0,1,0,16,16A16,16,0,0,0,272,240Zm-64-64a16,16,0,1,0,16,16A16,16,0,0,0,208,176Zm301.2,99c-20.93-47.12-48.43-151.73-73.07-186.75A207.9,207.9,0,0,0,266.09,0H192C86,0,0,86,0,192A191.23,191.23,0,0,0,64,334.81V512H320V448h64a64,64,0,0,0,64-64V320H480A32,32,0,0,0,509.2,275ZM368,240H355.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C290.47,297.09,256,311.37,256,339.88V352a16,16,0,0,1-32,0V339.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H112a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V96a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C313.09,173.53,327.37,208,355.88,208H368a16,16,0,0,1,0,32Z\"]\n};\nvar faHeading = {\n prefix: 'fas',\n iconName: 'heading',\n icon: [512, 512, [], \"f1dc\", \"M448 96v320h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H320a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V288H160v128h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V96H32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16h-32v128h192V96h-32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16z\"]\n};\nvar faHeadphones = {\n prefix: 'fas',\n iconName: 'headphones',\n icon: [512, 512, [], \"f025\", \"M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z\"]\n};\nvar faHeadphonesAlt = {\n prefix: 'fas',\n iconName: 'headphones-alt',\n icon: [512, 512, [], \"f58f\", \"M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z\"]\n};\nvar faHeadset = {\n prefix: 'fas',\n iconName: 'headset',\n icon: [512, 512, [], \"f590\", \"M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z\"]\n};\nvar faHeart = {\n prefix: 'fas',\n iconName: 'heart',\n icon: [512, 512, [], \"f004\", \"M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z\"]\n};\nvar faHeartBroken = {\n prefix: 'fas',\n iconName: 'heart-broken',\n icon: [512, 512, [], \"f7a9\", \"M473.7 73.8l-2.4-2.5c-46-47-118-51.7-169.6-14.8L336 159.9l-96 64 48 128-144-144 96-64-28.6-86.5C159.7 19.6 87 24 40.7 71.4l-2.4 2.4C-10.4 123.6-12.5 202.9 31 256l212.1 218.6c7.1 7.3 18.6 7.3 25.7 0L481 255.9c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHeartbeat = {\n prefix: 'fas',\n iconName: 'heartbeat',\n icon: [512, 512, [], \"f21e\", \"M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHelicopter = {\n prefix: 'fas',\n iconName: 'helicopter',\n icon: [640, 512, [], \"f533\", \"M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z\"]\n};\nvar faHighlighter = {\n prefix: 'fas',\n iconName: 'highlighter',\n icon: [544, 512, [], \"f591\", \"M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z\"]\n};\nvar faHiking = {\n prefix: 'fas',\n iconName: 'hiking',\n icon: [384, 512, [], \"f6ec\", \"M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z\"]\n};\nvar faHippo = {\n prefix: 'fas',\n iconName: 'hippo',\n icon: [640, 512, [], \"f6ed\", \"M581.12 96.2c-27.67-.15-52.5 17.58-76.6 26.62C489.98 88.27 455.83 64 416 64c-11.28 0-21.95 2.3-32 5.88V56c0-13.26-10.75-24-24-24h-16c-13.25 0-24 10.74-24 24v48.98C286.01 79.58 241.24 64 192 64 85.96 64 0 135.64 0 224v240c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16v-70.79C128.35 407.57 166.72 416 208 416s79.65-8.43 112-22.79V464c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V288h128v32c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-32c17.67 0 32-14.33 32-32v-92.02c0-34.09-24.79-67.59-58.88-67.78zM448 176c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHistory = {\n prefix: 'fas',\n iconName: 'history',\n icon: [512, 512, [], \"f1da\", \"M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z\"]\n};\nvar faHockeyPuck = {\n prefix: 'fas',\n iconName: 'hockey-puck',\n icon: [512, 512, [], \"f453\", \"M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z\"]\n};\nvar faHollyBerry = {\n prefix: 'fas',\n iconName: 'holly-berry',\n icon: [448, 512, [], \"f7aa\", \"M144 192c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm112-48c0 26.5 21.5 48 48 48s48-21.5 48-48-21.5-48-48-48-48 21.5-48 48zm-32-48c26.5 0 48-21.5 48-48S250.5 0 224 0s-48 21.5-48 48 21.5 48 48 48zm-16.2 139.1c.1-12.4-13.1-20.1-23.8-13.7-34.3 20.3-71.4 32.7-108.7 36.2-9.7.9-15.6 11.3-11.6 20.2 6.2 13.9 11.1 28.6 14.7 43.8 3.6 15.2-5.3 30.6-20.2 35.1-14.9 4.5-30.1 7.6-45.3 9.1-9.7 1-15.7 11.3-11.7 20.2 15 32.8 22.9 69.5 23 107.7.1 14.4 15.2 23.1 27.6 16 33.2-19 68.9-30.5 104.8-33.9 9.7-.9 15.6-11.3 11.6-20.2-6.2-13.9-11.1-28.6-14.7-43.8-3.6-15.2 5.3-30.6 20.2-35.1 14.9-4.5 30.1-7.6 45.3-9.1 9.7-1 15.7-11.3 11.7-20.2-15.5-34.2-23.3-72.5-22.9-112.3zM435 365.6c-15.2-1.6-30.3-4.7-45.3-9.1-14.9-4.5-23.8-19.9-20.2-35.1 3.6-15.2 8.5-29.8 14.7-43.8 4-8.9-1.9-19.3-11.6-20.2-37.3-3.5-74.4-15.9-108.7-36.2-10.7-6.3-23.9 1.4-23.8 13.7 0 1.6-.2 3.2-.2 4.9.2 33.3 7 65.7 19.9 94 5.7 12.4 5.2 26.6-.6 38.9 4.9 1.2 9.9 2.2 14.8 3.7 14.9 4.5 23.8 19.9 20.2 35.1-3.6 15.2-8.5 29.8-14.7 43.8-4 8.9 1.9 19.3 11.6 20.2 35.9 3.4 71.6 14.9 104.8 33.9 12.5 7.1 27.6-1.6 27.6-16 .2-38.2 8-75 23-107.7 4.3-8.7-1.8-19.1-11.5-20.1z\"]\n};\nvar faHome = {\n prefix: 'fas',\n iconName: 'home',\n icon: [576, 512, [], \"f015\", \"M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z\"]\n};\nvar faHorse = {\n prefix: 'fas',\n iconName: 'horse',\n icon: [576, 512, [], \"f6f0\", \"M575.92 76.6c-.01-8.13-3.02-15.87-8.58-21.8-3.78-4.03-8.58-9.12-13.69-14.5 11.06-6.84 19.5-17.49 22.18-30.66C576.85 4.68 572.96 0 567.9 0H447.92c-70.69 0-128 57.31-128 128H160c-28.84 0-54.4 12.98-72 33.11V160c-48.53 0-88 39.47-88 88v56c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-56c0-13.22 6.87-24.39 16.78-31.68-.21 2.58-.78 5.05-.78 7.68 0 27.64 11.84 52.36 30.54 69.88l-25.72 68.6a63.945 63.945 0 0 0-2.16 37.99l24.85 99.41A15.982 15.982 0 0 0 107.02 512h65.96c10.41 0 18.05-9.78 15.52-19.88l-26.31-105.26 23.84-63.59L320 345.6V496c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V318.22c19.74-20.19 32-47.75 32-78.22 0-.22-.07-.42-.08-.64V136.89l16 7.11 18.9 37.7c7.45 14.87 25.05 21.55 40.49 15.37l32.55-13.02a31.997 31.997 0 0 0 20.12-29.74l-.06-77.71zm-64 19.4c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHorseHead = {\n prefix: 'fas',\n iconName: 'horse-head',\n icon: [512, 512, [], \"f7ab\", \"M509.8 332.5l-69.9-164.3c-14.9-41.2-50.4-71-93-79.2 18-10.6 46.3-35.9 34.2-82.3-1.3-5-7.1-7.9-12-6.1L166.9 76.3C35.9 123.4 0 238.9 0 398.8V480c0 17.7 14.3 32 32 32h236.2c23.8 0 39.3-25 28.6-46.3L256 384v-.7c-45.6-3.5-84.6-30.7-104.3-69.6-1.6-3.1-.9-6.9 1.6-9.3l12.1-12.1c3.9-3.9 10.6-2.7 12.9 2.4 14.8 33.7 48.2 57.4 87.4 57.4 17.2 0 33-5.1 46.8-13.2l46 63.9c6 8.4 15.7 13.3 26 13.3h50.3c8.5 0 16.6-3.4 22.6-9.4l45.3-39.8c8.9-9.1 11.7-22.6 7.1-34.4zM328 224c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z\"]\n};\nvar faHospital = {\n prefix: 'fas',\n iconName: 'hospital',\n icon: [448, 512, [], \"f0f8\", \"M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z\"]\n};\nvar faHospitalAlt = {\n prefix: 'fas',\n iconName: 'hospital-alt',\n icon: [576, 512, [], \"f47d\", \"M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faHospitalSymbol = {\n prefix: 'fas',\n iconName: 'hospital-symbol',\n icon: [512, 512, [], \"f47e\", \"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z\"]\n};\nvar faHospitalUser = {\n prefix: 'fas',\n iconName: 'hospital-user',\n icon: [640, 512, [], \"f80d\", \"M480 320a96 96 0 1 0-96-96 96 96 0 0 0 96 96zm48 32a22.88 22.88 0 0 0-7.06 1.09 124.76 124.76 0 0 1-81.89 0A22.82 22.82 0 0 0 432 352a112 112 0 0 0-112 112.62c.14 26.26 21.73 47.38 48 47.38h224c26.27 0 47.86-21.12 48-47.38A112 112 0 0 0 528 352zm-198.09 10.45A145.19 145.19 0 0 1 352 344.62V128a32 32 0 0 0-32-32h-32V32a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v64H32a32 32 0 0 0-32 32v368a16 16 0 0 0 16 16h288.31A78.62 78.62 0 0 1 288 464.79a143.06 143.06 0 0 1 41.91-102.34zM144 404a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm48-122a6 6 0 0 1-6 6h-20a6 6 0 0 1-6-6v-26h-26a6 6 0 0 1-6-6v-20a6 6 0 0 1 6-6h26V70a6 6 0 0 1 6-6h20a6 6 0 0 1 6 6v26h26a6 6 0 0 1 6 6v20a6 6 0 0 1-6 6h-26zm80 250a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12z\"]\n};\nvar faHotTub = {\n prefix: 'fas',\n iconName: 'hot-tub',\n icon: [512, 512, [], \"f593\", \"M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z\"]\n};\nvar faHotdog = {\n prefix: 'fas',\n iconName: 'hotdog',\n icon: [512, 512, [], \"f80f\", \"M488.56 23.44a80 80 0 0 0-113.12 0l-352 352a80 80 0 1 0 113.12 113.12l352-352a80 80 0 0 0 0-113.12zm-49.93 95.19c-19.6 19.59-37.52 22.67-51.93 25.14C373.76 146 364.4 147.6 352 160s-14 21.76-16.23 34.71c-2.48 14.4-5.55 32.33-25.15 51.92s-37.52 22.67-51.92 25.15C245.75 274 236.4 275.6 224 288s-14 21.75-16.23 34.7c-2.47 14.4-5.54 32.33-25.14 51.92s-37.53 22.68-51.93 25.15C117.76 402 108.4 403.6 96 416a16 16 0 0 1-22.63-22.63c19.6-19.59 37.52-22.67 51.92-25.14 13-2.22 22.3-3.82 34.71-16.23s14-21.75 16.22-34.7c2.48-14.4 5.55-32.33 25.15-51.92s37.52-22.67 51.92-25.14c13-2.22 22.3-3.83 34.7-16.23s14-21.76 16.24-34.71c2.47-14.4 5.54-32.33 25.14-51.92s37.52-22.68 51.92-25.15C394.24 110 403.59 108.41 416 96a16 16 0 0 1 22.63 22.63zM31.44 322.18L322.18 31.44l-11.54-11.55c-25-25-63.85-26.66-86.79-3.72L16.17 223.85c-22.94 22.94-21.27 61.79 3.72 86.78zm449.12-132.36L189.82 480.56l11.54 11.55c25 25 63.85 26.66 86.79 3.72l207.68-207.68c22.94-22.94 21.27-61.79-3.72-86.79z\"]\n};\nvar faHotel = {\n prefix: 'fas',\n iconName: 'hotel',\n icon: [576, 512, [], \"f594\", \"M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faHourglass = {\n prefix: 'fas',\n iconName: 'hourglass',\n icon: [384, 512, [], \"f254\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z\"]\n};\nvar faHourglassEnd = {\n prefix: 'fas',\n iconName: 'hourglass-end',\n icon: [384, 512, [], \"f253\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z\"]\n};\nvar faHourglassHalf = {\n prefix: 'fas',\n iconName: 'hourglass-half',\n icon: [384, 512, [], \"f252\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z\"]\n};\nvar faHourglassStart = {\n prefix: 'fas',\n iconName: 'hourglass-start',\n icon: [384, 512, [], \"f251\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z\"]\n};\nvar faHouseDamage = {\n prefix: 'fas',\n iconName: 'house-damage',\n icon: [576, 512, [], \"f6f1\", \"M288 114.96L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496c0 8.84 7.16 16 16 16h149.23L192 439.19l104.11-64-60.16-119.22L384 392.75l-104.11 64L319.81 512H496c8.84 0 16-7.16 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2L288 114.96zm282.69 121.32L512 184.45V48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v51.69L314.75 10.31C307.12 3.45 297.56.01 288 0s-19.1 3.41-26.7 10.27L5.31 236.28c-6.57 5.91-7.12 16.02-1.21 22.6l21.4 23.82c5.9 6.57 16.02 7.12 22.6 1.21L277.42 81.63c6.05-5.33 15.12-5.33 21.17 0L527.91 283.9c6.57 5.9 16.69 5.36 22.6-1.21l21.4-23.82c5.9-6.57 5.36-16.69-1.22-22.59z\"]\n};\nvar faHouseUser = {\n prefix: 'fas',\n iconName: 'house-user',\n icon: [576, 512, [], \"e065\", \"M570.69,236.27,512,184.44V48a16,16,0,0,0-16-16H432a16,16,0,0,0-16,16V99.67L314.78,10.3C308.5,4.61,296.53,0,288,0s-20.46,4.61-26.74,10.3l-256,226A18.27,18.27,0,0,0,0,248.2a18.64,18.64,0,0,0,4.09,10.71L25.5,282.7a21.14,21.14,0,0,0,12,5.3,21.67,21.67,0,0,0,10.69-4.11l15.9-14V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V269.88l15.91,14A21.94,21.94,0,0,0,538.63,288a20.89,20.89,0,0,0,11.87-5.31l21.41-23.81A21.64,21.64,0,0,0,576,248.19,21,21,0,0,0,570.69,236.27ZM288,176a64,64,0,1,1-64,64A64,64,0,0,1,288,176ZM400,448H176a16,16,0,0,1-16-16,96,96,0,0,1,96-96h64a96,96,0,0,1,96,96A16,16,0,0,1,400,448Z\"]\n};\nvar faHryvnia = {\n prefix: 'fas',\n iconName: 'hryvnia',\n icon: [384, 512, [], \"f6f2\", \"M368 240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-41.86c13.41-28.63 13.74-63.33-4.13-94.05C303.34 49.84 267.1 32 229.96 32h-78.82c-24.32 0-47.86 8.53-66.54 24.09L72.83 65.9c-10.18 8.49-11.56 23.62-3.07 33.8l20.49 24.59c8.49 10.19 23.62 11.56 33.81 3.07l11.73-9.78c4.32-3.6 9.77-5.57 15.39-5.57h83.62c11.69 0 21.2 9.52 21.2 21.2 0 5.91-2.48 11.58-6.81 15.58L219.7 176H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h134.37l-34.67 32H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h41.86c-13.41 28.63-13.74 63.33 4.13 94.05C80.66 462.15 116.9 480 154.04 480h78.82c24.32 0 47.86-8.53 66.54-24.09l11.77-9.81c10.18-8.49 11.56-23.62 3.07-33.8l-20.49-24.59c-8.49-10.19-23.62-11.56-33.81-3.07l-11.75 9.8a23.992 23.992 0 0 1-15.36 5.56H149.2c-11.69 0-21.2-9.52-21.2-21.2 0-5.91 2.48-11.58 6.81-15.58L164.3 336H368c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H233.63l34.67-32H368z\"]\n};\nvar faICursor = {\n prefix: 'fas',\n iconName: 'i-cursor',\n icon: [256, 512, [], \"f246\", \"M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z\"]\n};\nvar faIceCream = {\n prefix: 'fas',\n iconName: 'ice-cream',\n icon: [448, 512, [], \"f810\", \"M368 160h-.94a144 144 0 1 0-286.12 0H80a48 48 0 0 0 0 96h288a48 48 0 0 0 0-96zM195.38 493.69a31.52 31.52 0 0 0 57.24 0L352 288H96z\"]\n};\nvar faIcicles = {\n prefix: 'fas',\n iconName: 'icicles',\n icon: [512, 512, [], \"f7ad\", \"M511.4 37.9C515.1 18.2 500 0 480 0H32C10.6 0-4.8 20.7 1.4 41.2l87.1 273.4c2.5 7.2 12.7 7.2 15.1 0L140 190.5l44.2 187.3c1.9 8.3 13.7 8.3 15.6 0l46.5-196.9 34.1 133.4c2.3 7.6 13 7.6 15.3 0l45.8-172.5 66.7 363.8c1.7 8.6 14 8.6 15.7 0l87.5-467.7z\"]\n};\nvar faIcons = {\n prefix: 'fas',\n iconName: 'icons',\n icon: [512, 512, [], \"f86d\", \"M116.65 219.35a15.68 15.68 0 0 0 22.65 0l96.75-99.83c28.15-29 26.5-77.1-4.91-103.88C203.75-7.7 163-3.5 137.86 22.44L128 32.58l-9.85-10.14C93.05-3.5 52.25-7.7 24.86 15.64c-31.41 26.78-33 74.85-5 103.88zm143.92 100.49h-48l-7.08-14.24a27.39 27.39 0 0 0-25.66-17.78h-71.71a27.39 27.39 0 0 0-25.66 17.78l-7 14.24h-48A27.45 27.45 0 0 0 0 347.3v137.25A27.44 27.44 0 0 0 27.43 512h233.14A27.45 27.45 0 0 0 288 484.55V347.3a27.45 27.45 0 0 0-27.43-27.46zM144 468a52 52 0 1 1 52-52 52 52 0 0 1-52 52zm355.4-115.9h-60.58l22.36-50.75c2.1-6.65-3.93-13.21-12.18-13.21h-75.59c-6.3 0-11.66 3.9-12.5 9.1l-16.8 106.93c-1 6.3 4.88 11.89 12.5 11.89h62.31l-24.2 83c-1.89 6.65 4.2 12.9 12.23 12.9a13.26 13.26 0 0 0 10.92-5.25l92.4-138.91c4.88-6.91-1.16-15.7-10.87-15.7zM478.08.33L329.51 23.17C314.87 25.42 304 38.92 304 54.83V161.6a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V99.66l112-17.22v47.18a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V32c0-19.48-16-34.42-33.92-31.67z\"]\n};\nvar faIdBadge = {\n prefix: 'fas',\n iconName: 'id-badge',\n icon: [384, 512, [], \"f2c1\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faIdCard = {\n prefix: 'fas',\n iconName: 'id-card',\n icon: [576, 512, [], \"f2c2\", \"M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z\"]\n};\nvar faIdCardAlt = {\n prefix: 'fas',\n iconName: 'id-card-alt',\n icon: [576, 512, [], \"f47f\", \"M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z\"]\n};\nvar faIgloo = {\n prefix: 'fas',\n iconName: 'igloo',\n icon: [576, 512, [], \"f7ae\", \"M320 33.9c-10.5-1.2-21.2-1.9-32-1.9-99.8 0-187.8 50.8-239.4 128H320V33.9zM96 192H30.3C11.1 230.6 0 274 0 320h96V192zM352 39.4V160h175.4C487.2 99.9 424.8 55.9 352 39.4zM480 320h96c0-46-11.1-89.4-30.3-128H480v128zm-64 64v96h128c17.7 0 32-14.3 32-32v-96H411.5c2.6 10.3 4.5 20.9 4.5 32zm32-192H128v128h49.8c22.2-38.1 63-64 110.2-64s88 25.9 110.2 64H448V192zM0 448c0 17.7 14.3 32 32 32h128v-96c0-11.1 1.9-21.7 4.5-32H0v96zm288-160c-53 0-96 43-96 96v96h192v-96c0-53-43-96-96-96z\"]\n};\nvar faImage = {\n prefix: 'fas',\n iconName: 'image',\n icon: [512, 512, [], \"f03e\", \"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z\"]\n};\nvar faImages = {\n prefix: 'fas',\n iconName: 'images',\n icon: [576, 512, [], \"f302\", \"M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z\"]\n};\nvar faInbox = {\n prefix: 'fas',\n iconName: 'inbox',\n icon: [576, 512, [], \"f01c\", \"M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z\"]\n};\nvar faIndent = {\n prefix: 'fas',\n iconName: 'indent',\n icon: [448, 512, [], \"f03c\", \"M27.31 363.3l96-96a16 16 0 0 0 0-22.62l-96-96C17.27 138.66 0 145.78 0 160v192c0 14.31 17.33 21.3 27.31 11.3zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faIndustry = {\n prefix: 'fas',\n iconName: 'industry',\n icon: [512, 512, [], \"f275\", \"M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z\"]\n};\nvar faInfinity = {\n prefix: 'fas',\n iconName: 'infinity',\n icon: [640, 512, [], \"f534\", \"M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z\"]\n};\nvar faInfo = {\n prefix: 'fas',\n iconName: 'info',\n icon: [192, 512, [], \"f129\", \"M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z\"]\n};\nvar faInfoCircle = {\n prefix: 'fas',\n iconName: 'info-circle',\n icon: [512, 512, [], \"f05a\", \"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z\"]\n};\nvar faItalic = {\n prefix: 'fas',\n iconName: 'italic',\n icon: [320, 512, [], \"f033\", \"M320 48v32a16 16 0 0 1-16 16h-62.76l-80 320H208a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h62.76l80-320H112a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16z\"]\n};\nvar faJedi = {\n prefix: 'fas',\n iconName: 'jedi',\n icon: [576, 512, [], \"f669\", \"M535.95308,352c-42.64069,94.17188-137.64086,160-247.9848,160q-6.39844,0-12.84377-.29688C171.15558,506.9375,81.26481,442.23438,40.01474,352H79.93668L21.3272,293.40625a264.82522,264.82522,0,0,1-5.10938-39.42187,273.6653,273.6653,0,0,1,.5-29.98438H63.93665L22.546,182.625A269.79782,269.79782,0,0,1,130.51489,20.54688a16.06393,16.06393,0,0,1,9.28127-3,16.36332,16.36332,0,0,1,13.5,7.25,16.02739,16.02739,0,0,1,1.625,15.09374,138.387,138.387,0,0,0-9.84376,51.26563c0,45.10937,21.04691,86.57813,57.71884,113.73437a16.29989,16.29989,0,0,1,1.20313,25.39063c-26.54692,23.98437-41.17194,56.5-41.17194,91.57813,0,60.03124,42.95319,110.28124,99.89079,121.92187l2.5-65.26563L238.062,397a8.33911,8.33911,0,0,1-10-.75,8.025,8.025,0,0,1-1.39063-9.9375l20.125-33.76562-42.06257-8.73438a7.9898,7.9898,0,0,1,0-15.65625l42.06257-8.71875-20.10941-33.73438a7.99122,7.99122,0,0,1,11.35939-10.71874L268.437,295.64062,279.95265,7.67188a7.97138,7.97138,0,0,1,8-7.67188h.04687a8.02064,8.02064,0,0,1,7.95314,7.70312L307.48394,295.625l30.39068-20.67188a8.08327,8.08327,0,0,1,10,.8125,7.99866,7.99866,0,0,1,1.39062,9.90626L329.12461,319.4375l42.07819,8.73438a7.99373,7.99373,0,0,1,0,15.65624l-42.07819,8.71876,20.1094,33.73437a7.97791,7.97791,0,0,1-1.32812,9.92187A8.25739,8.25739,0,0,1,337.87462,397L310.7027,378.53125l2.5,65.34375c48.48446-9.40625,87.57828-48.15625,97.31267-96.5A123.52652,123.52652,0,0,0,371.9528,230.29688a16.30634,16.30634,0,0,1,1.20313-25.42188c36.65631-27.17188,57.6876-68.60938,57.6876-113.73438a138.01689,138.01689,0,0,0-9.85939-51.3125,15.98132,15.98132,0,0,1,1.60937-15.09374,16.36914,16.36914,0,0,1,13.5-7.23438,16.02453,16.02453,0,0,1,9.25,2.98438A271.26947,271.26947,0,0,1,553.25,182.76562L511.99992,224h46.9532C559.3125,229.76562,560,235.45312,560,241.26562a270.092,270.092,0,0,1-5.125,51.85938L495.98427,352Z\"]\n};\nvar faJoint = {\n prefix: 'fas',\n iconName: 'joint',\n icon: [640, 512, [], \"f595\", \"M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z\"]\n};\nvar faJournalWhills = {\n prefix: 'fas',\n iconName: 'journal-whills',\n icon: [448, 512, [], \"f66a\", \"M438.40625,377.59375c-3.20313,12.8125-3.20313,57.60937,0,73.60937Q447.9922,460.78907,448,470.40625v16c0,16-12.79688,25.59375-25.59375,25.59375H96c-54.40625,0-96-41.59375-96-96V96C0,41.59375,41.59375,0,96,0H422.40625C438.40625,0,448,9.59375,448,25.59375v332.8125Q448,372.79688,438.40625,377.59375ZM380.79688,384H96c-16,0-32,12.79688-32,32s12.79688,32,32,32H380.79688ZM128.01562,176.01562c0,.51563.14063.98438.14063,1.5l37.10937,32.46876A7.99954,7.99954,0,0,1,160,224h-.01562a9.17678,9.17678,0,0,1-5.25-1.98438L131.14062,201.375C142.6875,250.95312,186.90625,288,240,288s97.3125-37.04688,108.875-86.625l-23.59375,20.64062a8.02516,8.02516,0,0,1-5.26563,1.96876H320a9.14641,9.14641,0,0,1-6.01562-2.71876A9.26508,9.26508,0,0,1,312,216a9.097,9.097,0,0,1,2.73438-6.01562l37.10937-32.46876c.01563-.53124.15625-1,.15625-1.51562,0-11.04688-2.09375-21.51562-5.06251-31.59375l-21.26562,21.25a8.00467,8.00467,0,0,1-11.32812-11.3125l26.42187-26.40625a111.81517,111.81517,0,0,0-46.35937-49.26562,63.02336,63.02336,0,0,1-14.0625,82.64062A55.83846,55.83846,0,0,1,251.625,254.73438l-1.42188-34.28126,12.67188,8.625a3.967,3.967,0,0,0,2.25.6875,3.98059,3.98059,0,0,0,3.43749-6.03124l-8.53124-14.3125,17.90625-3.71876a4.00647,4.00647,0,0,0,0-7.84374l-17.90625-3.71876,8.53124-14.3125a3.98059,3.98059,0,0,0-3.43749-6.03124,4.726,4.726,0,0,0-2.25.67187L248.6875,184.125,244,71.82812a4.00386,4.00386,0,0,0-8,0l-4.625,110.8125-12-8.15624a4.003,4.003,0,0,0-5.68751,5.35937l8.53126,14.3125L204.3125,197.875a3.99686,3.99686,0,0,0,0,7.82812l17.90625,3.73438-8.53126,14.29688a4.72469,4.72469,0,0,0-.56249,2.04687,4.59547,4.59547,0,0,0,1.25,2.90625,4.01059,4.01059,0,0,0,2.75,1.09375,4.09016,4.09016,0,0,0,2.25-.6875l10.35937-7.04687L228.375,254.76562a55.86414,55.86414,0,0,1-28.71875-93.45312,63.01119,63.01119,0,0,1-14.04688-82.65625,111.93158,111.93158,0,0,0-46.375,49.26563l26.42187,26.42187a7.99917,7.99917,0,0,1-11.3125,11.3125l-21.26563-21.26563C130.09375,154.48438,128,164.95312,128.01562,176.01562Z\"]\n};\nvar faKaaba = {\n prefix: 'fas',\n iconName: 'kaaba',\n icon: [576, 512, [], \"f66b\", \"M554.12 83.51L318.36 4.93a95.962 95.962 0 0 0-60.71 0L21.88 83.51A32.006 32.006 0 0 0 0 113.87v49.01l265.02-79.51c15.03-4.5 30.92-4.5 45.98 0l265 79.51v-49.01c0-13.77-8.81-26-21.88-30.36zm-279.9 30.52L0 196.3v228.38c0 15 10.42 27.98 25.06 31.24l242.12 53.8a95.937 95.937 0 0 0 41.65 0l242.12-53.8c14.64-3.25 25.06-16.24 25.06-31.24V196.29l-274.2-82.26c-9.04-2.72-18.59-2.72-27.59 0zM128 230.11c0 3.61-2.41 6.77-5.89 7.72l-80 21.82C37.02 261.03 32 257.2 32 251.93v-16.58c0-3.61 2.41-6.77 5.89-7.72l80-21.82c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm144-39.28c0 3.61-2.41 6.77-5.89 7.72l-96 26.18c-5.09 1.39-10.11-2.44-10.11-7.72v-16.58c0-3.61 2.41-6.77 5.89-7.72l96-26.18c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm176 22.7c0-5.28 5.02-9.11 10.11-7.72l80 21.82c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-80-21.82a7.997 7.997 0 0 1-5.89-7.72v-16.58zm-144-39.27c0-5.28 5.02-9.11 10.11-7.72l96 26.18c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-96-26.18a7.997 7.997 0 0 1-5.89-7.72v-16.58z\"]\n};\nvar faKey = {\n prefix: 'fas',\n iconName: 'key',\n icon: [512, 512, [], \"f084\", \"M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z\"]\n};\nvar faKeyboard = {\n prefix: 'fas',\n iconName: 'keyboard',\n icon: [576, 512, [], \"f11c\", \"M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faKhanda = {\n prefix: 'fas',\n iconName: 'khanda',\n icon: [512, 512, [], \"f66d\", \"M415.81 66c-6.37-3.5-14.37-2.33-19.36 3.02a15.974 15.974 0 0 0-1.91 19.52c16.49 26.16 25.2 56.39 25.2 87.41-.19 53.25-26.77 102.69-71.27 132.41l-76.63 53.35v-20.1l44.05-36.09c3.92-4.2 5-10.09 2.81-15.28L310.85 273c33.84-19.26 56.94-55.25 56.94-96.99 0-40.79-22.02-76.13-54.59-95.71l5.22-11.44c2.34-5.53.93-11.83-3.57-16.04L255.86 0l-58.99 52.81c-4.5 4.21-5.9 10.51-3.57 16.04l5.22 11.44c-32.57 19.58-54.59 54.93-54.59 95.72 0 41.75 23.09 77.73 56.94 96.99l-7.85 17.24c-2.19 5.18-1.1 11.07 2.81 15.28l44.05 36.09v19.9l-76.59-53.33C119.02 278.62 92.44 229.19 92.26 176c0-31.08 8.71-61.31 25.2-87.47 3.87-6.16 2.4-13.77-2.59-19.08-5-5.34-13.68-6.2-20.02-2.7C16.32 109.6-22.3 205.3 13.36 295.99c7.07 17.99 17.89 34.38 30.46 49.06l55.97 65.36c4.87 5.69 13.04 7.24 19.65 3.72l79.35-42.23L228 392.23l-47.08 32.78c-1.67-.37-3.23-1.01-5.01-1.01-13.25 0-23.99 10.74-23.99 24 0 13.25 10.74 24 23.99 24 12.1 0 21.69-9.11 23.33-20.76l40.63-28.28v29.95c-9.39 5.57-15.99 15.38-15.99 27.1 0 17.67 14.32 32 31.98 32s31.98-14.33 31.98-32c0-11.71-6.61-21.52-15.99-27.1v-30.15l40.91 28.48C314.41 462.89 324 472 336.09 472c13.25 0 23.99-10.75 23.99-24 0-13.26-10.74-24-23.99-24-1.78 0-3.34.64-5.01 1.01L284 392.23l29.21-20.34 79.35 42.23c6.61 3.52 14.78 1.97 19.65-3.71l52.51-61.31c18.87-22.02 34-47.5 41.25-75.59 21.62-83.66-16.45-167.27-90.16-207.51zm-95.99 110c0 22.3-11.49 41.92-28.83 53.38l-5.65-12.41c-8.75-24.52-8.75-51.04 0-75.56l7.83-17.18c16.07 11.65 26.65 30.45 26.65 51.77zm-127.93 0c0-21.32 10.58-40.12 26.66-51.76l7.83 17.18c8.75 24.52 8.75 51.03 0 75.56l-5.65 12.41c-17.34-11.46-28.84-31.09-28.84-53.39z\"]\n};\nvar faKiss = {\n prefix: 'fas',\n iconName: 'kiss',\n icon: [496, 512, [], \"f596\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faKissBeam = {\n prefix: 'fas',\n iconName: 'kiss-beam',\n icon: [496, 512, [], \"f597\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z\"]\n};\nvar faKissWinkHeart = {\n prefix: 'fas',\n iconName: 'kiss-wink-heart',\n icon: [504, 512, [], \"f598\", \"M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z\"]\n};\nvar faKiwiBird = {\n prefix: 'fas',\n iconName: 'kiwi-bird',\n icon: [576, 512, [], \"f535\", \"M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z\"]\n};\nvar faLandmark = {\n prefix: 'fas',\n iconName: 'landmark',\n icon: [512, 512, [], \"f66f\", \"M501.62 92.11L267.24 2.04a31.958 31.958 0 0 0-22.47 0L10.38 92.11A16.001 16.001 0 0 0 0 107.09V144c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-36.91c0-6.67-4.14-12.64-10.38-14.98zM64 192v160H48c-8.84 0-16 7.16-16 16v48h448v-48c0-8.84-7.16-16-16-16h-16V192h-64v160h-96V192h-64v160h-96V192H64zm432 256H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faLanguage = {\n prefix: 'fas',\n iconName: 'language',\n icon: [640, 512, [], \"f1ab\", \"M152.1 236.2c-3.5-12.1-7.8-33.2-7.8-33.2h-.5s-4.3 21.1-7.8 33.2l-11.1 37.5H163zM616 96H336v320h280c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm-24 120c0 6.6-5.4 12-12 12h-11.4c-6.9 23.6-21.7 47.4-42.7 69.9 8.4 6.4 17.1 12.5 26.1 18 5.5 3.4 7.3 10.5 4.1 16.2l-7.9 13.9c-3.4 5.9-10.9 7.8-16.7 4.3-12.6-7.8-24.5-16.1-35.4-24.9-10.9 8.7-22.7 17.1-35.4 24.9-5.8 3.5-13.3 1.6-16.7-4.3l-7.9-13.9c-3.2-5.6-1.4-12.8 4.2-16.2 9.3-5.7 18-11.7 26.1-18-7.9-8.4-14.9-17-21-25.7-4-5.7-2.2-13.6 3.7-17.1l6.5-3.9 7.3-4.3c5.4-3.2 12.4-1.7 16 3.4 5 7 10.8 14 17.4 20.9 13.5-14.2 23.8-28.9 30-43.2H412c-6.6 0-12-5.4-12-12v-16c0-6.6 5.4-12 12-12h64v-16c0-6.6 5.4-12 12-12h16c6.6 0 12 5.4 12 12v16h64c6.6 0 12 5.4 12 12zM0 120v272c0 13.3 10.7 24 24 24h280V96H24c-13.3 0-24 10.7-24 24zm58.9 216.1L116.4 167c1.7-4.9 6.2-8.1 11.4-8.1h32.5c5.1 0 9.7 3.3 11.4 8.1l57.5 169.1c2.6 7.8-3.1 15.9-11.4 15.9h-22.9a12 12 0 0 1-11.5-8.6l-9.4-31.9h-60.2l-9.1 31.8c-1.5 5.1-6.2 8.7-11.5 8.7H70.3c-8.2 0-14-8.1-11.4-15.9z\"]\n};\nvar faLaptop = {\n prefix: 'fas',\n iconName: 'laptop',\n icon: [640, 512, [], \"f109\", \"M624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopCode = {\n prefix: 'fas',\n iconName: 'laptop-code',\n icon: [640, 512, [], \"f5fc\", \"M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopHouse = {\n prefix: 'fas',\n iconName: 'laptop-house',\n icon: [640, 512, [], \"e066\", \"M272,288H208a16,16,0,0,1-16-16V208a16,16,0,0,1,16-16h64a16,16,0,0,1,16,16v37.12C299.11,232.24,315,224,332.8,224H469.74l6.65-7.53A16.51,16.51,0,0,0,480,207a16.31,16.31,0,0,0-4.75-10.61L416,144V48a16,16,0,0,0-16-16H368a16,16,0,0,0-16,16V87.3L263.5,8.92C258,4,247.45,0,240.05,0s-17.93,4-23.47,8.92L4.78,196.42A16.15,16.15,0,0,0,0,207a16.4,16.4,0,0,0,3.55,9.39L22.34,237.7A16.22,16.22,0,0,0,33,242.48,16.51,16.51,0,0,0,42.34,239L64,219.88V384a32,32,0,0,0,32,32H272ZM629.33,448H592V288c0-17.67-12.89-32-28.8-32H332.8c-15.91,0-28.8,14.33-28.8,32V448H266.67A10.67,10.67,0,0,0,256,458.67v10.66A42.82,42.82,0,0,0,298.6,512H597.4A42.82,42.82,0,0,0,640,469.33V458.67A10.67,10.67,0,0,0,629.33,448ZM544,448H352V304H544Z\"]\n};\nvar faLaptopMedical = {\n prefix: 'fas',\n iconName: 'laptop-medical',\n icon: [640, 512, [], \"f812\", \"M232 224h56v56a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8h-56v-56a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8zM576 48a48.14 48.14 0 0 0-48-48H112a48.14 48.14 0 0 0-48 48v336h512zm-64 272H128V64h384zm112 96H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33-17.47-32.77-32H16a16 16 0 0 0-16 16v16a64.19 64.19 0 0 0 64 64h512a64.19 64.19 0 0 0 64-64v-16a16 16 0 0 0-16-16z\"]\n};\nvar faLaugh = {\n prefix: 'fas',\n iconName: 'laugh',\n icon: [496, 512, [], \"f599\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z\"]\n};\nvar faLaughBeam = {\n prefix: 'fas',\n iconName: 'laugh-beam',\n icon: [496, 512, [], \"f59a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughSquint = {\n prefix: 'fas',\n iconName: 'laugh-squint',\n icon: [496, 512, [], \"f59b\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughWink = {\n prefix: 'fas',\n iconName: 'laugh-wink',\n icon: [496, 512, [], \"f59c\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLayerGroup = {\n prefix: 'fas',\n iconName: 'layer-group',\n icon: [512, 512, [], \"f5fd\", \"M12.41 148.02l232.94 105.67c6.8 3.09 14.49 3.09 21.29 0l232.94-105.67c16.55-7.51 16.55-32.52 0-40.03L266.65 2.31a25.607 25.607 0 0 0-21.29 0L12.41 107.98c-16.55 7.51-16.55 32.53 0 40.04zm487.18 88.28l-58.09-26.33-161.64 73.27c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.51 209.97l-58.1 26.33c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 276.3c16.55-7.5 16.55-32.5 0-40zm0 127.8l-57.87-26.23-161.86 73.37c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.29 337.87 12.41 364.1c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 404.1c16.55-7.5 16.55-32.5 0-40z\"]\n};\nvar faLeaf = {\n prefix: 'fas',\n iconName: 'leaf',\n icon: [576, 512, [], \"f06c\", \"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\"]\n};\nvar faLemon = {\n prefix: 'fas',\n iconName: 'lemon',\n icon: [512, 512, [], \"f094\", \"M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z\"]\n};\nvar faLessThan = {\n prefix: 'fas',\n iconName: 'less-than',\n icon: [384, 512, [], \"f536\", \"M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z\"]\n};\nvar faLessThanEqual = {\n prefix: 'fas',\n iconName: 'less-than-equal',\n icon: [448, 512, [], \"f537\", \"M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faLevelDownAlt = {\n prefix: 'fas',\n iconName: 'level-down-alt',\n icon: [320, 512, [], \"f3be\", \"M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z\"]\n};\nvar faLevelUpAlt = {\n prefix: 'fas',\n iconName: 'level-up-alt',\n icon: [320, 512, [], \"f3bf\", \"M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z\"]\n};\nvar faLifeRing = {\n prefix: 'fas',\n iconName: 'life-ring',\n icon: [512, 512, [], \"f1cd\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z\"]\n};\nvar faLightbulb = {\n prefix: 'fas',\n iconName: 'lightbulb',\n icon: [352, 512, [], \"f0eb\", \"M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faLink = {\n prefix: 'fas',\n iconName: 'link',\n icon: [512, 512, [], \"f0c1\", \"M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z\"]\n};\nvar faLiraSign = {\n prefix: 'fas',\n iconName: 'lira-sign',\n icon: [384, 512, [], \"f195\", \"M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z\"]\n};\nvar faList = {\n prefix: 'fas',\n iconName: 'list',\n icon: [512, 512, [], \"f03a\", \"M80 368H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm0-320H16A16 16 0 0 0 0 64v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16zm0 160H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm416 176H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faListAlt = {\n prefix: 'fas',\n iconName: 'list-alt',\n icon: [512, 512, [], \"f022\", \"M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z\"]\n};\nvar faListOl = {\n prefix: 'fas',\n iconName: 'list-ol',\n icon: [512, 512, [], \"f0cb\", \"M61.77 401l17.5-20.15a19.92 19.92 0 0 0 5.07-14.19v-3.31C84.34 356 80.5 352 73 352H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h22.83a157.41 157.41 0 0 0-11 12.31l-5.61 7c-4 5.07-5.25 10.13-2.8 14.88l1.05 1.93c3 5.76 6.29 7.88 12.25 7.88h4.73c10.33 0 15.94 2.44 15.94 9.09 0 4.72-4.2 8.22-14.36 8.22a41.54 41.54 0 0 1-15.47-3.12c-6.49-3.88-11.74-3.5-15.6 3.12l-5.59 9.31c-3.72 6.13-3.19 11.72 2.63 15.94 7.71 4.69 20.38 9.44 37 9.44 34.16 0 48.5-22.75 48.5-44.12-.03-14.38-9.12-29.76-28.73-34.88zM496 224H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h64a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H64V40a8 8 0 0 0-8-8H32a8 8 0 0 0-7.14 4.42l-8 16A8 8 0 0 0 24 64h8v64H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8zm-3.91 160H80a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H41.32c3.29-10.29 48.34-18.68 48.34-56.44 0-29.06-25-39.56-44.47-39.56-21.36 0-33.8 10-40.46 18.75-4.37 5.59-3 10.84 2.8 15.37l8.58 6.88c5.61 4.56 11 2.47 16.12-2.44a13.44 13.44 0 0 1 9.46-3.84c3.33 0 9.28 1.56 9.28 8.75C51 248.19 0 257.31 0 304.59v4C0 316 5.08 320 12.09 320z\"]\n};\nvar faListUl = {\n prefix: 'fas',\n iconName: 'list-ul',\n icon: [512, 512, [], \"f0ca\", \"M48 48a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm448 16H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faLocationArrow = {\n prefix: 'fas',\n iconName: 'location-arrow',\n icon: [512, 512, [], \"f124\", \"M444.52 3.52L28.74 195.42c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 51.17 70.36 67.17 92.75 19.19l191.9-415.78c15.99-38.39-25.59-79.97-63.97-63.97z\"]\n};\nvar faLock = {\n prefix: 'fas',\n iconName: 'lock',\n icon: [448, 512, [], \"f023\", \"M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z\"]\n};\nvar faLockOpen = {\n prefix: 'fas',\n iconName: 'lock-open',\n icon: [576, 512, [], \"f3c1\", \"M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z\"]\n};\nvar faLongArrowAltDown = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-down',\n icon: [256, 512, [], \"f309\", \"M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z\"]\n};\nvar faLongArrowAltLeft = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-left',\n icon: [448, 512, [], \"f30a\", \"M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z\"]\n};\nvar faLongArrowAltRight = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-right',\n icon: [448, 512, [], \"f30b\", \"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"]\n};\nvar faLongArrowAltUp = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-up',\n icon: [256, 512, [], \"f30c\", \"M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z\"]\n};\nvar faLowVision = {\n prefix: 'fas',\n iconName: 'low-vision',\n icon: [576, 512, [], \"f2a8\", \"M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z\"]\n};\nvar faLuggageCart = {\n prefix: 'fas',\n iconName: 'luggage-cart',\n icon: [640, 512, [], \"f59d\", \"M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z\"]\n};\nvar faLungs = {\n prefix: 'fas',\n iconName: 'lungs',\n icon: [640, 512, [], \"f604\", \"M636.11 390.15C614.44 308.85 580.07 231 534.1 159.13 511.98 124.56 498.03 96 454.05 96 415.36 96 384 125.42 384 161.71v60.11l-32.88-21.92a15.996 15.996 0 0 1-7.12-13.31V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v170.59c0 5.35-2.67 10.34-7.12 13.31L256 221.82v-60.11C256 125.42 224.64 96 185.95 96c-43.98 0-57.93 28.56-80.05 63.13C59.93 231 25.56 308.85 3.89 390.15 1.3 399.84 0 409.79 0 419.78c0 61.23 62.48 105.44 125.24 88.62l59.5-15.95c42.18-11.3 71.26-47.47 71.26-88.62v-87.49l-85.84 57.23a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09L320 235.23l167.59 111.72a7.994 7.994 0 0 1 2.22 11.09l-8.88 13.31a7.994 7.994 0 0 1-11.09 2.22L384 316.34v87.49c0 41.15 29.08 77.31 71.26 88.62l59.5 15.95C577.52 525.22 640 481.01 640 419.78c0-9.99-1.3-19.94-3.89-29.63z\"]\n};\nvar faLungsVirus = {\n prefix: 'fas',\n iconName: 'lungs-virus',\n icon: [640, 512, [], \"e067\", \"M344,150.68V16A16,16,0,0,0,328,0H312a16,16,0,0,0-16,16V150.68a46.45,46.45,0,0,1,48,0ZM195.54,444.46a48.06,48.06,0,0,1,0-67.88l8.58-8.58H192a48,48,0,0,1,0-96h12.12l-8.58-8.57a48,48,0,0,1,60.46-74V161.75C256,125.38,224.62,96,186,96c-44,0-58,28.5-80.12,63.13a819.52,819.52,0,0,0-102,231A113.16,113.16,0,0,0,0,419.75C0,481,62.5,525.26,125.25,508.38l59.5-15.87a98.51,98.51,0,0,0,52.5-34.75,46.49,46.49,0,0,1-41.71-13.3Zm226.29-22.63a16,16,0,0,0,0-22.62l-8.58-8.58C393.09,370.47,407.37,336,435.88,336H448a16,16,0,0,0,0-32H435.88c-28.51,0-42.79-34.47-22.63-54.62l8.58-8.58a16,16,0,0,0-22.63-22.63l-8.57,8.58C370.47,246.91,336,232.63,336,204.12V192a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.58c20.16,20.15,5.88,54.62-22.63,54.62H192a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.58a16,16,0,1,0,22.63,22.62l8.57-8.57C269.53,393.1,304,407.38,304,435.88V448a16,16,0,0,0,32,0V435.88c0-28.5,34.47-42.78,54.63-22.62l8.57,8.57a16,16,0,0,0,22.63,0ZM288,304a16,16,0,1,1,16-16A16,16,0,0,1,288,304Zm64,64a16,16,0,1,1,16-16A16,16,0,0,1,352,368Zm284.12,22.13a819.52,819.52,0,0,0-102-231C512,124.5,498,96,454,96c-38.62,0-70,29.38-70,65.75v27.72a48,48,0,0,1,60.46,74L435.88,272H448a48,48,0,0,1,0,96H435.88l8.58,8.58a47.7,47.7,0,0,1-41.71,81.18,98.51,98.51,0,0,0,52.5,34.75l59.5,15.87C577.5,525.26,640,481,640,419.75A113.16,113.16,0,0,0,636.12,390.13Z\"]\n};\nvar faMagic = {\n prefix: 'fas',\n iconName: 'magic',\n icon: [512, 512, [], \"f0d0\", \"M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z\"]\n};\nvar faMagnet = {\n prefix: 'fas',\n iconName: 'magnet',\n icon: [512, 512, [], \"f076\", \"M164.07 148.1H12a12 12 0 0 1-12-12v-80a36 36 0 0 1 36-36h104a36 36 0 0 1 36 36v80a11.89 11.89 0 0 1-11.93 12zm347.93-12V56a36 36 0 0 0-36-36H372a36 36 0 0 0-36 36v80a12 12 0 0 0 12 12h152a11.89 11.89 0 0 0 12-11.9zm-164 44a12 12 0 0 0-12 12v52c0 128.1-160 127.9-160 0v-52a12 12 0 0 0-12-12H12.1a12 12 0 0 0-12 12.1c.1 21.4.6 40.3 0 53.3 0 150.6 136.17 246.6 256.75 246.6s255-96 255-246.7c-.6-12.8-.2-33 0-53.2a12 12 0 0 0-12-12.1z\"]\n};\nvar faMailBulk = {\n prefix: 'fas',\n iconName: 'mail-bulk',\n icon: [576, 512, [], \"f674\", \"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"]\n};\nvar faMale = {\n prefix: 'fas',\n iconName: 'male',\n icon: [192, 512, [], \"f183\", \"M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z\"]\n};\nvar faMap = {\n prefix: 'fas',\n iconName: 'map',\n icon: [576, 512, [], \"f279\", \"M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarked = {\n prefix: 'fas',\n iconName: 'map-marked',\n icon: [576, 512, [], \"f59f\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarkedAlt = {\n prefix: 'fas',\n iconName: 'map-marked-alt',\n icon: [576, 512, [], \"f5a0\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarker = {\n prefix: 'fas',\n iconName: 'map-marker',\n icon: [384, 512, [], \"f041\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z\"]\n};\nvar faMapMarkerAlt = {\n prefix: 'fas',\n iconName: 'map-marker-alt',\n icon: [384, 512, [], \"f3c5\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"]\n};\nvar faMapPin = {\n prefix: 'fas',\n iconName: 'map-pin',\n icon: [288, 512, [], \"f276\", \"M112 316.94v156.69l22.02 33.02c4.75 7.12 15.22 7.12 19.97 0L176 473.63V316.94c-10.39 1.92-21.06 3.06-32 3.06s-21.61-1.14-32-3.06zM144 0C64.47 0 0 64.47 0 144s64.47 144 144 144 144-64.47 144-144S223.53 0 144 0zm0 76c-37.5 0-68 30.5-68 68 0 6.62-5.38 12-12 12s-12-5.38-12-12c0-50.73 41.28-92 92-92 6.62 0 12 5.38 12 12s-5.38 12-12 12z\"]\n};\nvar faMapSigns = {\n prefix: 'fas',\n iconName: 'map-signs',\n icon: [512, 512, [], \"f277\", \"M507.31 84.69L464 41.37c-6-6-14.14-9.37-22.63-9.37H288V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v16H56c-13.25 0-24 10.75-24 24v80c0 13.25 10.75 24 24 24h385.37c8.49 0 16.62-3.37 22.63-9.37l43.31-43.31c6.25-6.26 6.25-16.38 0-22.63zM224 496c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V384h-64v112zm232-272H288v-32h-64v32H70.63c-8.49 0-16.62 3.37-22.63 9.37L4.69 276.69c-6.25 6.25-6.25 16.38 0 22.63L48 342.63c6 6 14.14 9.37 22.63 9.37H456c13.25 0 24-10.75 24-24v-80c0-13.25-10.75-24-24-24z\"]\n};\nvar faMarker = {\n prefix: 'fas',\n iconName: 'marker',\n icon: [512, 512, [], \"f5a1\", \"M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z\"]\n};\nvar faMars = {\n prefix: 'fas',\n iconName: 'mars',\n icon: [384, 512, [], \"f222\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsDouble = {\n prefix: 'fas',\n iconName: 'mars-double',\n icon: [512, 512, [], \"f227\", \"M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z\"]\n};\nvar faMarsStroke = {\n prefix: 'fas',\n iconName: 'mars-stroke',\n icon: [384, 512, [], \"f229\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsStrokeH = {\n prefix: 'fas',\n iconName: 'mars-stroke-h',\n icon: [480, 512, [], \"f22b\", \"M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMarsStrokeV = {\n prefix: 'fas',\n iconName: 'mars-stroke-v',\n icon: [288, 512, [], \"f22a\", \"M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMask = {\n prefix: 'fas',\n iconName: 'mask',\n icon: [640, 512, [], \"f6fa\", \"M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z\"]\n};\nvar faMedal = {\n prefix: 'fas',\n iconName: 'medal',\n icon: [512, 512, [], \"f5a2\", \"M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z\"]\n};\nvar faMedkit = {\n prefix: 'fas',\n iconName: 'medkit',\n icon: [512, 512, [], \"f0fa\", \"M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z\"]\n};\nvar faMeh = {\n prefix: 'fas',\n iconName: 'meh',\n icon: [496, 512, [], \"f11a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehBlank = {\n prefix: 'fas',\n iconName: 'meh-blank',\n icon: [496, 512, [], \"f5a4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehRollingEyes = {\n prefix: 'fas',\n iconName: 'meh-rolling-eyes',\n icon: [496, 512, [], \"f5a5\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z\"]\n};\nvar faMemory = {\n prefix: 'fas',\n iconName: 'memory',\n icon: [640, 512, [], \"f538\", \"M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z\"]\n};\nvar faMenorah = {\n prefix: 'fas',\n iconName: 'menorah',\n icon: [640, 512, [], \"f676\", \"M144 128h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm192 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm80-32c17.67 0 32-14.33 32-32S608 0 608 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S512 0 512 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S416 0 416 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S320 0 320 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S224 0 224 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S128 0 128 0 96 46.33 96 64s14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S32 0 32 0 0 46.33 0 64s14.33 32 32 32zm544 192c0 17.67-14.33 32-32 32H352V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v176H96c-17.67 0-32-14.33-32-32V144c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v144c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144z\"]\n};\nvar faMercury = {\n prefix: 'fas',\n iconName: 'mercury',\n icon: [288, 512, [], \"f223\", \"M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faMeteor = {\n prefix: 'fas',\n iconName: 'meteor',\n icon: [512, 512, [], \"f753\", \"M511.328,20.8027c-11.60759,38.70264-34.30724,111.70173-61.30311,187.70077,6.99893,2.09372,13.4042,4,18.60653,5.59368a16.06158,16.06158,0,0,1,9.49854,22.906c-22.106,42.29635-82.69047,152.795-142.47819,214.40356-.99984,1.09373-1.99969,2.5-2.99954,3.49995A194.83046,194.83046,0,1,1,57.085,179.41009c.99985-1,2.40588-2,3.49947-3,61.59994-59.90549,171.97367-120.40473,214.37343-142.4982a16.058,16.058,0,0,1,22.90274,9.49988c1.59351,5.09368,3.49947,11.5936,5.5929,18.59351C379.34818,35.00565,452.43074,12.30281,491.12794.70921A16.18325,16.18325,0,0,1,511.328,20.8027ZM319.951,320.00207A127.98041,127.98041,0,1,0,191.97061,448.00046,127.97573,127.97573,0,0,0,319.951,320.00207Zm-127.98041-31.9996a31.9951,31.9951,0,1,1-31.9951-31.9996A31.959,31.959,0,0,1,191.97061,288.00247Zm31.9951,79.999a15.99755,15.99755,0,1,1-15.99755-15.9998A16.04975,16.04975,0,0,1,223.96571,368.00147Z\"]\n};\nvar faMicrochip = {\n prefix: 'fas',\n iconName: 'microchip',\n icon: [512, 512, [], \"f2db\", \"M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z\"]\n};\nvar faMicrophone = {\n prefix: 'fas',\n iconName: 'microphone',\n icon: [352, 512, [], \"f130\", \"M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneAlt = {\n prefix: 'fas',\n iconName: 'microphone-alt',\n icon: [352, 512, [], \"f3c9\", \"M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z\"]\n};\nvar faMicrophoneAltSlash = {\n prefix: 'fas',\n iconName: 'microphone-alt-slash',\n icon: [640, 512, [], \"f539\", \"M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneSlash = {\n prefix: 'fas',\n iconName: 'microphone-slash',\n icon: [640, 512, [], \"f131\", \"M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicroscope = {\n prefix: 'fas',\n iconName: 'microscope',\n icon: [512, 512, [], \"f610\", \"M160 320h12v16c0 8.84 7.16 16 16 16h40c8.84 0 16-7.16 16-16v-16h12c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32V16c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v16c-17.67 0-32 14.33-32 32v224c0 17.67 14.33 32 32 32zm304 128h-1.29C493.24 413.99 512 369.2 512 320c0-105.88-86.12-192-192-192v64c70.58 0 128 57.42 128 128s-57.42 128-128 128H48c-26.51 0-48 21.49-48 48 0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48zm-360-32h208c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8H104c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8z\"]\n};\nvar faMinus = {\n prefix: 'fas',\n iconName: 'minus',\n icon: [448, 512, [], \"f068\", \"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faMinusCircle = {\n prefix: 'fas',\n iconName: 'minus-circle',\n icon: [512, 512, [], \"f056\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z\"]\n};\nvar faMinusSquare = {\n prefix: 'fas',\n iconName: 'minus-square',\n icon: [448, 512, [], \"f146\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z\"]\n};\nvar faMitten = {\n prefix: 'fas',\n iconName: 'mitten',\n icon: [448, 512, [], \"f7b5\", \"M368 416H48c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm57-209.1c-27.2-22.6-67.5-19-90.1 8.2l-20.9 25-29.6-128.4c-18-77.5-95.4-125.9-172.8-108C34.2 21.6-14.2 98.9 3.7 176.4L51.6 384h309l72.5-87c22.7-27.2 19-67.5-8.1-90.1z\"]\n};\nvar faMobile = {\n prefix: 'fas',\n iconName: 'mobile',\n icon: [320, 512, [], \"f10b\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMobileAlt = {\n prefix: 'fas',\n iconName: 'mobile-alt',\n icon: [320, 512, [], \"f3cd\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faMoneyBill = {\n prefix: 'fas',\n iconName: 'money-bill',\n icon: [640, 512, [], \"f0d6\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillAlt = {\n prefix: 'fas',\n iconName: 'money-bill-alt',\n icon: [640, 512, [], \"f3d1\", \"M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillWave = {\n prefix: 'fas',\n iconName: 'money-bill-wave',\n icon: [640, 512, [], \"f53a\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z\"]\n};\nvar faMoneyBillWaveAlt = {\n prefix: 'fas',\n iconName: 'money-bill-wave-alt',\n icon: [640, 512, [], \"f53b\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z\"]\n};\nvar faMoneyCheck = {\n prefix: 'fas',\n iconName: 'money-check',\n icon: [640, 512, [], \"f53c\", \"M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMoneyCheckAlt = {\n prefix: 'fas',\n iconName: 'money-check-alt',\n icon: [640, 512, [], \"f53d\", \"M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faMonument = {\n prefix: 'fas',\n iconName: 'monument',\n icon: [384, 512, [], \"f5a6\", \"M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faMoon = {\n prefix: 'fas',\n iconName: 'moon',\n icon: [512, 512, [], \"f186\", \"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z\"]\n};\nvar faMortarPestle = {\n prefix: 'fas',\n iconName: 'mortar-pestle',\n icon: [512, 512, [], \"f5a7\", \"M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faMosque = {\n prefix: 'fas',\n iconName: 'mosque',\n icon: [640, 512, [], \"f678\", \"M0 480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V160H0v320zm579.16-192c17.86-17.39 28.84-37.34 28.84-58.91 0-52.86-41.79-93.79-87.92-122.9-41.94-26.47-80.63-57.77-111.96-96.22L400 0l-8.12 9.97c-31.33 38.45-70.01 69.76-111.96 96.22C233.79 135.3 192 176.23 192 229.09c0 21.57 10.98 41.52 28.84 58.91h358.32zM608 320H192c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h32v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h64v-72c0-48 48-72 48-72s48 24 48 72v72h64v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h32c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM64 0S0 32 0 96v32h128V96c0-64-64-96-64-96z\"]\n};\nvar faMotorcycle = {\n prefix: 'fas',\n iconName: 'motorcycle',\n icon: [640, 512, [], \"f21c\", \"M512.9 192c-14.9-.1-29.1 2.3-42.4 6.9L437.6 144H520c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24h-45.3c-6.8 0-13.3 2.9-17.8 7.9l-37.5 41.7-22.8-38C392.2 68.4 384.4 64 376 64h-80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h66.4l19.2 32H227.9c-17.7-23.1-44.9-40-99.9-40H72.5C59 104 47.7 115 48 128.5c.2 13 10.9 23.5 24 23.5h56c24.5 0 38.7 10.9 47.8 24.8l-11.3 20.5c-13-3.9-26.9-5.7-41.3-5.2C55.9 194.5 1.6 249.6 0 317c-1.6 72.1 56.3 131 128 131 59.6 0 109.7-40.8 124-96h84.2c13.7 0 24.6-11.4 24-25.1-2.1-47.1 17.5-93.7 56.2-125l12.5 20.8c-27.6 23.7-45.1 58.9-44.8 98.2.5 69.6 57.2 126.5 126.8 127.1 71.6.7 129.8-57.5 129.2-129.1-.7-69.6-57.6-126.4-127.2-126.9zM128 400c-44.1 0-80-35.9-80-80s35.9-80 80-80c4.2 0 8.4.3 12.5 1L99 316.4c-8.8 16 2.8 35.6 21 35.6h81.3c-12.4 28.2-40.6 48-73.3 48zm463.9-75.6c-2.2 40.6-35 73.4-75.5 75.5-46.1 2.5-84.4-34.3-84.4-79.9 0-21.4 8.4-40.8 22.1-55.1l49.4 82.4c4.5 7.6 14.4 10 22 5.5l13.7-8.2c7.6-4.5 10-14.4 5.5-22l-48.6-80.9c5.2-1.1 10.5-1.6 15.9-1.6 45.6-.1 82.3 38.2 79.9 84.3z\"]\n};\nvar faMountain = {\n prefix: 'fas',\n iconName: 'mountain',\n icon: [640, 512, [], \"f6fc\", \"M634.92 462.7l-288-448C341.03 5.54 330.89 0 320 0s-21.03 5.54-26.92 14.7l-288 448a32.001 32.001 0 0 0-1.17 32.64A32.004 32.004 0 0 0 32 512h576c11.71 0 22.48-6.39 28.09-16.67a31.983 31.983 0 0 0-1.17-32.63zM320 91.18L405.39 224H320l-64 64-38.06-38.06L320 91.18z\"]\n};\nvar faMouse = {\n prefix: 'fas',\n iconName: 'mouse',\n icon: [384, 512, [], \"f8cc\", \"M0 352a160 160 0 0 0 160 160h64a160 160 0 0 0 160-160V224H0zM176 0h-16A160 160 0 0 0 0 160v32h176zm48 0h-16v192h176v-32A160 160 0 0 0 224 0z\"]\n};\nvar faMousePointer = {\n prefix: 'fas',\n iconName: 'mouse-pointer',\n icon: [320, 512, [], \"f245\", \"M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z\"]\n};\nvar faMugHot = {\n prefix: 'fas',\n iconName: 'mug-hot',\n icon: [512, 512, [], \"f7b6\", \"M127.1 146.5c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C111.8 5.9 105 0 96.8 0H80.4C70.6 0 63 8.5 64.1 18c3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zm112 0c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C223.8 5.9 217 0 208.8 0h-16.4c-9.8 0-17.5 8.5-16.3 18 3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zM400 192H32c-17.7 0-32 14.3-32 32v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.8 0 112-50.2 112-112s-50.2-112-112-112zm0 160h-16v-96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faMusic = {\n prefix: 'fas',\n iconName: 'music',\n icon: [512, 512, [], \"f001\", \"M470.38 1.51L150.41 96A32 32 0 0 0 128 126.51v261.41A139 139 0 0 0 96 384c-53 0-96 28.66-96 64s43 64 96 64 96-28.66 96-64V214.32l256-75v184.61a138.4 138.4 0 0 0-32-3.93c-53 0-96 28.66-96 64s43 64 96 64 96-28.65 96-64V32a32 32 0 0 0-41.62-30.49z\"]\n};\nvar faNetworkWired = {\n prefix: 'fas',\n iconName: 'network-wired',\n icon: [640, 512, [], \"f6ff\", \"M640 264v-16c0-8.84-7.16-16-16-16H344v-40h72c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H224c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h72v40H16c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h104v40H64c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h304v40h-56c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h104c8.84 0 16-7.16 16-16zM256 128V64h128v64H256zm-64 320H96v-64h96v64zm352 0h-96v-64h96v64z\"]\n};\nvar faNeuter = {\n prefix: 'fas',\n iconName: 'neuter',\n icon: [288, 512, [], \"f22c\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faNewspaper = {\n prefix: 'fas',\n iconName: 'newspaper',\n icon: [576, 512, [], \"f1ea\", \"M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z\"]\n};\nvar faNotEqual = {\n prefix: 'fas',\n iconName: 'not-equal',\n icon: [448, 512, [], \"f53e\", \"M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z\"]\n};\nvar faNotesMedical = {\n prefix: 'fas',\n iconName: 'notes-medical',\n icon: [384, 512, [], \"f481\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faObjectGroup = {\n prefix: 'fas',\n iconName: 'object-group',\n icon: [512, 512, [], \"f247\", \"M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z\"]\n};\nvar faObjectUngroup = {\n prefix: 'fas',\n iconName: 'object-ungroup',\n icon: [576, 512, [], \"f248\", \"M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z\"]\n};\nvar faOilCan = {\n prefix: 'fas',\n iconName: 'oil-can',\n icon: [640, 512, [], \"f613\", \"M629.8 160.31L416 224l-50.49-25.24a64.07 64.07 0 0 0-28.62-6.76H280v-48h56c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h56v48h-56L37.72 166.86a31.9 31.9 0 0 0-5.79-.53C14.67 166.33 0 180.36 0 198.34v94.95c0 15.46 11.06 28.72 26.28 31.48L96 337.46V384c0 17.67 14.33 32 32 32h274.63c8.55 0 16.75-3.42 22.76-9.51l212.26-214.75c1.5-1.5 2.34-3.54 2.34-5.66V168c.01-5.31-5.08-9.15-10.19-7.69zM96 288.67l-48-8.73v-62.43l48 8.73v62.43zm453.33 84.66c0 23.56 19.1 42.67 42.67 42.67s42.67-19.1 42.67-42.67S592 288 592 288s-42.67 61.77-42.67 85.33z\"]\n};\nvar faOm = {\n prefix: 'fas',\n iconName: 'om',\n icon: [512, 512, [], \"f679\", \"M360.6 60.94a10.43 10.43 0 0 0 14.76 0l21.57-21.56a10.43 10.43 0 0 0 0-14.76L375.35 3.06c-4.08-4.07-10.68-4.07-14.76 0l-21.57 21.56a10.43 10.43 0 0 0 0 14.76l21.58 21.56zM412.11 192c-26.69 0-51.77 10.39-70.64 29.25l-24.25 24.25c-6.78 6.77-15.78 10.5-25.38 10.5H245c10.54-22.1 14.17-48.11 7.73-75.23-10.1-42.55-46.36-76.11-89.52-83.19-36.15-5.93-70.9 5.04-96.01 28.78-7.36 6.96-6.97 18.85 1.12 24.93l26.15 19.63c5.72 4.3 13.66 4.32 19.2-.21 8.45-6.9 19.02-10.71 30.27-10.71 26.47 0 48.01 21.53 48.01 48s-21.54 48-48.01 48h-31.9c-11.96 0-19.74 12.58-14.39 23.28l16.09 32.17c2.53 5.06 7.6 8.1 13.17 8.55h33.03c35.3 0 64.01 28.7 64.01 64s-28.71 64-64.01 64c-96.02 0-122.35-54.02-145.15-92.03-4.53-7.55-14.77-3.58-14.79 5.22C-.09 416 41.13 512 159.94 512c70.59 0 128.02-57.42 128.02-128 0-23.42-6.78-45.1-17.81-64h21.69c26.69 0 51.77-10.39 70.64-29.25l24.25-24.25c6.78-6.77 15.78-10.5 25.38-10.5 19.78 0 35.88 16.09 35.88 35.88V392c0 13.23-18.77 24-32.01 24-39.4 0-66.67-24.24-81.82-42.89-4.77-5.87-14.2-2.54-14.2 5.02V416s0 64 96.02 64c48.54 0 96.02-39.47 96.02-88V291.88c0-55.08-44.8-99.88-99.89-99.88zm42.18-124.73c-85.55 65.12-169.05 2.75-172.58.05-6.02-4.62-14.44-4.38-20.14.55-5.74 4.92-7.27 13.17-3.66 19.8 1.61 2.95 40.37 72.34 118.8 72.34 79.92 0 98.78-31.36 101.75-37.66 1.02-2.12 1.53-4.47 1.53-6.83V80c0-13.22-15.14-20.69-25.7-12.73z\"]\n};\nvar faOtter = {\n prefix: 'fas',\n iconName: 'otter',\n icon: [640, 512, [], \"f700\", \"M608 32h-32l-13.25-13.25A63.97 63.97 0 0 0 517.49 0H497c-11.14 0-22.08 2.91-31.75 8.43L312 96h-56C149.96 96 64 181.96 64 288v1.61c0 32.75-16 62.14-39.56 84.89-18.19 17.58-28.1 43.68-23.19 71.8 6.76 38.8 42.9 65.7 82.28 65.7H192c17.67 0 32-14.33 32-32s-14.33-32-32-32H80c-8.83 0-16-7.17-16-16s7.17-16 16-16h224c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-64l149.49-80.5L448 416h80c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-28.22l-55.11-110.21L521.14 192H544c53.02 0 96-42.98 96-96V64c0-17.67-14.33-32-32-32zm-96 16c8.84 0 16 7.16 16 16s-7.16 16-16 16-16-7.16-16-16 7.16-16 16-16zm32 96h-34.96L407.2 198.84l-13.77-27.55L512 112h77.05c-6.62 18.58-24.22 32-45.05 32z\"]\n};\nvar faOutdent = {\n prefix: 'fas',\n iconName: 'outdent',\n icon: [448, 512, [], \"f03b\", \"M100.69 363.29c10 10 27.31 2.93 27.31-11.31V160c0-14.32-17.33-21.31-27.31-11.31l-96 96a16 16 0 0 0 0 22.62zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faPager = {\n prefix: 'fas',\n iconName: 'pager',\n icon: [512, 512, [], \"f815\", \"M448 64H64a64 64 0 0 0-64 64v256a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V128a64 64 0 0 0-64-64zM160 368H80a16 16 0 0 1-16-16v-16a16 16 0 0 1 16-16h80zm128-16a16 16 0 0 1-16 16h-80v-48h80a16 16 0 0 1 16 16zm160-128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32v-64a32 32 0 0 1 32-32h320a32 32 0 0 1 32 32z\"]\n};\nvar faPaintBrush = {\n prefix: 'fas',\n iconName: 'paint-brush',\n icon: [512, 512, [], \"f1fc\", \"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z\"]\n};\nvar faPaintRoller = {\n prefix: 'fas',\n iconName: 'paint-roller',\n icon: [512, 512, [], \"f5aa\", \"M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z\"]\n};\nvar faPalette = {\n prefix: 'fas',\n iconName: 'palette',\n icon: [512, 512, [], \"f53f\", \"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPallet = {\n prefix: 'fas',\n iconName: 'pallet',\n icon: [640, 512, [], \"f482\", \"M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z\"]\n};\nvar faPaperPlane = {\n prefix: 'fas',\n iconName: 'paper-plane',\n icon: [512, 512, [], \"f1d8\", \"M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z\"]\n};\nvar faPaperclip = {\n prefix: 'fas',\n iconName: 'paperclip',\n icon: [448, 512, [], \"f0c6\", \"M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z\"]\n};\nvar faParachuteBox = {\n prefix: 'fas',\n iconName: 'parachute-box',\n icon: [512, 512, [], \"f4cd\", \"M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z\"]\n};\nvar faParagraph = {\n prefix: 'fas',\n iconName: 'paragraph',\n icon: [448, 512, [], \"f1dd\", \"M448 48v32a16 16 0 0 1-16 16h-48v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V96h-32v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V352h-32a160 160 0 0 1 0-320h240a16 16 0 0 1 16 16z\"]\n};\nvar faParking = {\n prefix: 'fas',\n iconName: 'parking',\n icon: [448, 512, [], \"f540\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z\"]\n};\nvar faPassport = {\n prefix: 'fas',\n iconName: 'passport',\n icon: [448, 512, [], \"f5ab\", \"M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z\"]\n};\nvar faPastafarianism = {\n prefix: 'fas',\n iconName: 'pastafarianism',\n icon: [640, 512, [], \"f67b\", \"M624.54 347.67c-32.7-12.52-57.36 4.25-75.37 16.45-17.06 11.53-23.25 14.42-31.41 11.36-8.12-3.09-10.83-9.38-15.89-29.38-3.33-13.15-7.44-29.32-17.95-42.65 2.24-2.91 4.43-5.79 6.38-8.57C500.47 304.45 513.71 312 532 312c33.95 0 50.87-25.78 62.06-42.83 10.59-16.14 15-21.17 21.94-21.17 13.25 0 24-10.75 24-24s-10.75-24-24-24c-33.95 0-50.87 25.78-62.06 42.83-10.6 16.14-15 21.17-21.94 21.17-17.31 0-37.48-61.43-97.26-101.91l17.25-34.5C485.43 125.5 512 97.98 512 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 13.02 3.94 25.1 10.62 35.21l-18.15 36.3c-16.98-4.6-35.6-7.51-56.46-7.51s-39.49 2.91-56.46 7.51l-18.15-36.3C252.06 89.1 256 77.02 256 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 33.98 26.56 61.5 60.02 63.6l17.25 34.5C145.68 202.44 125.15 264 108 264c-6.94 0-11.34-5.03-21.94-21.17C74.88 225.78 57.96 200 24 200c-13.25 0-24 10.75-24 24s10.75 24 24 24c6.94 0 11.34 5.03 21.94 21.17C57.13 286.22 74.05 312 108 312c18.29 0 31.53-7.55 41.7-17.11 1.95 2.79 4.14 5.66 6.38 8.57-10.51 13.33-14.62 29.5-17.95 42.65-5.06 20-7.77 26.28-15.89 29.38-8.11 3.06-14.33.17-31.41-11.36-18.03-12.2-42.72-28.92-75.37-16.45-12.39 4.72-18.59 18.58-13.87 30.97 4.72 12.41 18.61 18.61 30.97 13.88 8.16-3.09 14.34-.19 31.39 11.36 13.55 9.16 30.83 20.86 52.42 20.84 7.17 0 14.83-1.28 22.97-4.39 32.66-12.44 39.98-41.33 45.33-62.44 2.21-8.72 3.99-14.49 5.95-18.87 16.62 13.61 36.95 25.88 61.64 34.17-9.96 37-32.18 90.8-60.26 90.8-13.25 0-24 10.75-24 24s10.75 24 24 24c66.74 0 97.05-88.63 107.42-129.14 6.69.6 13.42 1.14 20.58 1.14s13.89-.54 20.58-1.14C350.95 423.37 381.26 512 448 512c13.25 0 24-10.75 24-24s-10.75-24-24-24c-27.94 0-50.21-53.81-60.22-90.81 24.69-8.29 45-20.56 61.62-34.16 1.96 4.38 3.74 10.15 5.95 18.87 5.34 21.11 12.67 50 45.33 62.44 8.14 3.11 15.8 4.39 22.97 4.39 21.59 0 38.87-11.69 52.42-20.84 17.05-11.55 23.28-14.45 31.39-11.36 12.39 4.75 26.27-1.47 30.97-13.88 4.71-12.4-1.49-26.26-13.89-30.98zM448 48c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zm-256 0c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16z\"]\n};\nvar faPaste = {\n prefix: 'fas',\n iconName: 'paste',\n icon: [448, 512, [], \"f0ea\", \"M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z\"]\n};\nvar faPause = {\n prefix: 'fas',\n iconName: 'pause',\n icon: [448, 512, [], \"f04c\", \"M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z\"]\n};\nvar faPauseCircle = {\n prefix: 'fas',\n iconName: 'pause-circle',\n icon: [512, 512, [], \"f28b\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faPaw = {\n prefix: 'fas',\n iconName: 'paw',\n icon: [512, 512, [], \"f1b0\", \"M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z\"]\n};\nvar faPeace = {\n prefix: 'fas',\n iconName: 'peace',\n icon: [496, 512, [], \"f67c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm184 248c0 31.93-8.2 61.97-22.57 88.17L280 240.63V74.97c86.23 15.21 152 90.5 152 181.03zM216 437.03c-33.86-5.97-64.49-21.2-89.29-43.02L216 322.57v114.46zm64-114.46L369.29 394c-24.8 21.82-55.43 37.05-89.29 43.02V322.57zm-64-247.6v165.66L86.57 344.17C72.2 317.97 64 287.93 64 256c0-90.53 65.77-165.82 152-181.03z\"]\n};\nvar faPen = {\n prefix: 'fas',\n iconName: 'pen',\n icon: [512, 512, [], \"f304\", \"M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z\"]\n};\nvar faPenAlt = {\n prefix: 'fas',\n iconName: 'pen-alt',\n icon: [512, 512, [], \"f305\", \"M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z\"]\n};\nvar faPenFancy = {\n prefix: 'fas',\n iconName: 'pen-fancy',\n icon: [512, 512, [], \"f5ac\", \"M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z\"]\n};\nvar faPenNib = {\n prefix: 'fas',\n iconName: 'pen-nib',\n icon: [512, 512, [], \"f5ad\", \"M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z\"]\n};\nvar faPenSquare = {\n prefix: 'fas',\n iconName: 'pen-square',\n icon: [448, 512, [], \"f14b\", \"M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z\"]\n};\nvar faPencilAlt = {\n prefix: 'fas',\n iconName: 'pencil-alt',\n icon: [512, 512, [], \"f303\", \"M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z\"]\n};\nvar faPencilRuler = {\n prefix: 'fas',\n iconName: 'pencil-ruler',\n icon: [512, 512, [], \"f5ae\", \"M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z\"]\n};\nvar faPeopleArrows = {\n prefix: 'fas',\n iconName: 'people-arrows',\n icon: [576, 512, [], \"e068\", \"M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z\"]\n};\nvar faPeopleCarry = {\n prefix: 'fas',\n iconName: 'people-carry',\n icon: [640, 512, [], \"f4ce\", \"M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z\"]\n};\nvar faPepperHot = {\n prefix: 'fas',\n iconName: 'pepper-hot',\n icon: [512, 512, [], \"f816\", \"M330.67 263.12V173.4l-52.75-24.22C219.44 218.76 197.58 400 56 400a56 56 0 0 0 0 112c212.64 0 370.65-122.87 419.18-210.34l-37.05-38.54zm131.09-128.37C493.92 74.91 477.18 26.48 458.62 3a8 8 0 0 0-11.93-.59l-22.9 23a8.06 8.06 0 0 0-.89 10.23c6.86 10.36 17.05 35.1-1.4 72.32A142.85 142.85 0 0 0 364.34 96c-28 0-54 8.54-76.34 22.59l74.67 34.29v78.24h89.09L506.44 288c3.26-12.62 5.56-25.63 5.56-39.31a154 154 0 0 0-50.24-113.94z\"]\n};\nvar faPercent = {\n prefix: 'fas',\n iconName: 'percent',\n icon: [448, 512, [], \"f295\", \"M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z\"]\n};\nvar faPercentage = {\n prefix: 'fas',\n iconName: 'percentage',\n icon: [384, 512, [], \"f541\", \"M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z\"]\n};\nvar faPersonBooth = {\n prefix: 'fas',\n iconName: 'person-booth',\n icon: [576, 512, [], \"f756\", \"M192 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h-64v176zm32-272h-50.9l-45.2-45.3C115.8 166.6 99.7 160 82.7 160H64c-17.1 0-33.2 6.7-45.3 18.8C6.7 190.9 0 207 0 224.1L.2 320 0 480c0 17.7 14.3 32 31.9 32 17.6 0 32-14.3 32-32l.1-100.7c.9.5 1.6 1.3 2.5 1.7l29.1 43v56c0 17.7 14.3 32 32 32s32-14.3 32-32v-56.5c0-9.9-2.3-19.8-6.7-28.6l-41.2-61.3V253l20.9 20.9c9.1 9.1 21.1 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32zM64 128c26.5 0 48-21.5 48-48S90.5 32 64 32 16 53.5 16 80s21.5 48 48 48zm224-96l31.5 223.1-30.9 154.6c-4.3 21.6 13 38.3 31.4 38.3 15.2 0 28-9.1 32.3-30.4.9 16.9 14.6 30.4 31.7 30.4 17.7 0 32-14.3 32-32 0 17.7 14.3 32 32 32s32-14.3 32-32V0H288v32zm-96 0v160h64V0h-32c-17.7 0-32 14.3-32 32zM544 0h-32v496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32c0-17.7-14.3-32-32-32z\"]\n};\nvar faPhone = {\n prefix: 'fas',\n iconName: 'phone',\n icon: [512, 512, [], \"f095\", \"M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z\"]\n};\nvar faPhoneAlt = {\n prefix: 'fas',\n iconName: 'phone-alt',\n icon: [512, 512, [], \"f879\", \"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"]\n};\nvar faPhoneSlash = {\n prefix: 'fas',\n iconName: 'phone-slash',\n icon: [640, 512, [], \"f3dd\", \"M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faPhoneSquare = {\n prefix: 'fas',\n iconName: 'phone-square',\n icon: [448, 512, [], \"f098\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z\"]\n};\nvar faPhoneSquareAlt = {\n prefix: 'fas',\n iconName: 'phone-square-alt',\n icon: [448, 512, [], \"f87b\", \"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"]\n};\nvar faPhoneVolume = {\n prefix: 'fas',\n iconName: 'phone-volume',\n icon: [384, 512, [], \"f2a0\", \"M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z\"]\n};\nvar faPhotoVideo = {\n prefix: 'fas',\n iconName: 'photo-video',\n icon: [640, 512, [], \"f87c\", \"M608 0H160a32 32 0 0 0-32 32v96h160V64h192v320h128a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32zM232 103a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm352 208a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm-168 57H32a32 32 0 0 0-32 32v288a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM96 224a32 32 0 1 1-32 32 32 32 0 0 1 32-32zm288 224H64v-32l64-64 32 32 128-128 96 96z\"]\n};\nvar faPiggyBank = {\n prefix: 'fas',\n iconName: 'piggy-bank',\n icon: [576, 512, [], \"f4d3\", \"M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z\"]\n};\nvar faPills = {\n prefix: 'fas',\n iconName: 'pills',\n icon: [576, 512, [], \"f484\", \"M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z\"]\n};\nvar faPizzaSlice = {\n prefix: 'fas',\n iconName: 'pizza-slice',\n icon: [512, 512, [], \"f818\", \"M158.87.15c-16.16-1.52-31.2 8.42-35.33 24.12l-14.81 56.27c187.62 5.49 314.54 130.61 322.48 317l56.94-15.78c15.72-4.36 25.49-19.68 23.62-35.9C490.89 165.08 340.78 17.32 158.87.15zm-58.47 112L.55 491.64a16.21 16.21 0 0 0 20 19.75l379-105.1c-4.27-174.89-123.08-292.14-299.15-294.1zM128 416a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm48-152a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm104 104a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faPlaceOfWorship = {\n prefix: 'fas',\n iconName: 'place-of-worship',\n icon: [640, 512, [], \"f67f\", \"M620.61 366.55L512 320v192h112c8.84 0 16-7.16 16-16V395.96a32 32 0 0 0-19.39-29.41zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.55A32 32 0 0 0 0 395.96zm464.46-149.28L416 217.6V102.63c0-8.49-3.37-16.62-9.38-22.63L331.31 4.69c-6.25-6.25-16.38-6.25-22.62 0L233.38 80c-6 6-9.38 14.14-9.38 22.63V217.6l-48.46 29.08A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.66-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44z\"]\n};\nvar faPlane = {\n prefix: 'fas',\n iconName: 'plane',\n icon: [576, 512, [], \"f072\", \"M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z\"]\n};\nvar faPlaneArrival = {\n prefix: 'fas',\n iconName: 'plane-arrival',\n icon: [640, 512, [], \"f5af\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z\"]\n};\nvar faPlaneDeparture = {\n prefix: 'fas',\n iconName: 'plane-departure',\n icon: [640, 512, [], \"f5b0\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z\"]\n};\nvar faPlaneSlash = {\n prefix: 'fas',\n iconName: 'plane-slash',\n icon: [640, 512, [], \"e069\", \"M32.48,147.88,64,256,32.48,364.13A16,16,0,0,0,48,384H88a16,16,0,0,0,12.8-6.41L144,320H246.85l-49,171.59A16,16,0,0,0,213.2,512h65.5a16,16,0,0,0,13.89-8.06l66.6-116.54L34.35,136.34A15.47,15.47,0,0,0,32.48,147.88ZM633.82,458.09,455.14,320H512c35.34,0,96-28.66,96-64s-60.66-64-96-64H397.7L292.61,8.06C290.06,3.61,283.84,0,278.71,0H213.2a16,16,0,0,0-15.38,20.39l36.94,129.29L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09Z\"]\n};\nvar faPlay = {\n prefix: 'fas',\n iconName: 'play',\n icon: [448, 512, [], \"f04b\", \"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"]\n};\nvar faPlayCircle = {\n prefix: 'fas',\n iconName: 'play-circle',\n icon: [512, 512, [], \"f144\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z\"]\n};\nvar faPlug = {\n prefix: 'fas',\n iconName: 'plug',\n icon: [384, 512, [], \"f1e6\", \"M320,32a32,32,0,0,0-64,0v96h64Zm48,128H16A16,16,0,0,0,0,176v32a16,16,0,0,0,16,16H32v32A160.07,160.07,0,0,0,160,412.8V512h64V412.8A160.07,160.07,0,0,0,352,256V224h16a16,16,0,0,0,16-16V176A16,16,0,0,0,368,160ZM128,32a32,32,0,0,0-64,0v96h64Z\"]\n};\nvar faPlus = {\n prefix: 'fas',\n iconName: 'plus',\n icon: [448, 512, [], \"f067\", \"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPlusCircle = {\n prefix: 'fas',\n iconName: 'plus-circle',\n icon: [512, 512, [], \"f055\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPlusSquare = {\n prefix: 'fas',\n iconName: 'plus-square',\n icon: [448, 512, [], \"f0fe\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPodcast = {\n prefix: 'fas',\n iconName: 'podcast',\n icon: [448, 512, [], \"f2ce\", \"M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z\"]\n};\nvar faPoll = {\n prefix: 'fas',\n iconName: 'poll',\n icon: [448, 512, [], \"f681\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM160 368c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V240c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v128zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V144c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v224zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-64c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v64z\"]\n};\nvar faPollH = {\n prefix: 'fas',\n iconName: 'poll-h',\n icon: [448, 512, [], \"f682\", \"M448 432V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48zM112 192c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h128c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-64z\"]\n};\nvar faPoo = {\n prefix: 'fas',\n iconName: 'poo',\n icon: [512, 512, [], \"f2fe\", \"M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPooStorm = {\n prefix: 'fas',\n iconName: 'poo-storm',\n icon: [448, 512, [], \"f75a\", \"M308 336h-57.7l17.3-64.9c2-7.6-3.7-15.1-11.6-15.1h-68c-6 0-11.1 4.5-11.9 10.4l-16 120c-1 7.2 4.6 13.6 11.9 13.6h59.3l-23 97.2c-1.8 7.6 4 14.8 11.7 14.8 4.2 0 8.2-2.2 10.4-6l88-152c4.6-8-1.2-18-10.4-18zm66.4-111.3c5.9-9.6 9.6-20.6 9.6-32.7 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C218.3 14.6 224 30.6 224 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 12.1 3.7 23.1 9.6 32.7C32.6 228 0 262.2 0 304c0 44 36 80 80 80h48.3c.1-.6 0-1.2 0-1.8l16-120c3-21.8 21.7-38.2 43.7-38.2h68c13.8 0 26.5 6.3 34.9 17.2s11.2 24.8 7.6 38.1l-6.6 24.7h16c15.7 0 30.3 8.4 38.1 22 7.8 13.6 7.8 30.5 0 44l-8.1 14h30c44 0 80-36 80-80 .1-41.8-32.5-76-73.5-79.3z\"]\n};\nvar faPoop = {\n prefix: 'fas',\n iconName: 'poop',\n icon: [512, 512, [], \"f619\", \"M451.36 369.14C468.66 355.99 480 335.41 480 312c0-39.77-32.24-72-72-72h-14.07c13.42-11.73 22.07-28.78 22.07-48 0-35.35-28.65-64-64-64h-5.88c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96-5.17 0-10.15.74-15.11 1.52C250.31 14.64 256 30.62 256 48c0 44.18-35.82 80-80 80h-16c-35.35 0-64 28.65-64 64 0 19.22 8.65 36.27 22.07 48H104c-39.76 0-72 32.23-72 72 0 23.41 11.34 43.99 28.64 57.14C26.31 374.62 0 404.12 0 440c0 39.76 32.24 72 72 72h368c39.76 0 72-32.24 72-72 0-35.88-26.31-65.38-60.64-70.86z\"]\n};\nvar faPortrait = {\n prefix: 'fas',\n iconName: 'portrait',\n icon: [384, 512, [], \"f3e0\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faPoundSign = {\n prefix: 'fas',\n iconName: 'pound-sign',\n icon: [320, 512, [], \"f154\", \"M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z\"]\n};\nvar faPowerOff = {\n prefix: 'fas',\n iconName: 'power-off',\n icon: [512, 512, [], \"f011\", \"M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z\"]\n};\nvar faPray = {\n prefix: 'fas',\n iconName: 'pray',\n icon: [384, 512, [], \"f683\", \"M256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-30.63 169.75c14.06 16.72 39 19.09 55.97 5.22l88-72.02c17.09-13.98 19.59-39.19 5.62-56.28-13.97-17.11-39.19-19.59-56.31-5.62l-57.44 47-38.91-46.31c-15.44-18.39-39.22-27.92-64-25.33-24.19 2.48-45.25 16.27-56.37 36.92l-49.37 92.03c-23.4 43.64-8.69 96.37 34.19 123.75L131.56 432H40c-22.09 0-40 17.91-40 40s17.91 40 40 40h208c34.08 0 53.77-42.79 28.28-68.28L166.42 333.86l34.8-64.87 24.15 28.76z\"]\n};\nvar faPrayingHands = {\n prefix: 'fas',\n iconName: 'praying-hands',\n icon: [640, 512, [], \"f684\", \"M272 191.91c-17.6 0-32 14.4-32 32v80c0 8.84-7.16 16-16 16s-16-7.16-16-16v-76.55c0-17.39 4.72-34.47 13.69-49.39l77.75-129.59c9.09-15.16 4.19-34.81-10.97-43.91-14.45-8.67-32.72-4.3-42.3 9.21-.2.23-.62.21-.79.48l-117.26 175.9C117.56 205.9 112 224.31 112 243.29v80.23l-90.12 30.04A31.974 31.974 0 0 0 0 383.91v96c0 10.82 8.52 32 32 32 2.69 0 5.41-.34 8.06-1.03l179.19-46.62C269.16 449.99 304 403.8 304 351.91v-128c0-17.6-14.4-32-32-32zm346.12 161.73L528 323.6v-80.23c0-18.98-5.56-37.39-16.12-53.23L394.62 14.25c-.18-.27-.59-.24-.79-.48-9.58-13.51-27.85-17.88-42.3-9.21-15.16 9.09-20.06 28.75-10.97 43.91l77.75 129.59c8.97 14.92 13.69 32 13.69 49.39V304c0 8.84-7.16 16-16 16s-16-7.16-16-16v-80c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 51.89 34.84 98.08 84.75 112.34l179.19 46.62c2.66.69 5.38 1.03 8.06 1.03 23.48 0 32-21.18 32-32v-96c0-13.77-8.81-25.99-21.88-30.35z\"]\n};\nvar faPrescription = {\n prefix: 'fas',\n iconName: 'prescription',\n icon: [384, 512, [], \"f5b1\", \"M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z\"]\n};\nvar faPrescriptionBottle = {\n prefix: 'fas',\n iconName: 'prescription-bottle',\n icon: [384, 512, [], \"f485\", \"M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z\"]\n};\nvar faPrescriptionBottleAlt = {\n prefix: 'fas',\n iconName: 'prescription-bottle-alt',\n icon: [384, 512, [], \"f486\", \"M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z\"]\n};\nvar faPrint = {\n prefix: 'fas',\n iconName: 'print',\n icon: [512, 512, [], \"f02f\", \"M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faProcedures = {\n prefix: 'fas',\n iconName: 'procedures',\n icon: [640, 512, [], \"f487\", \"M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z\"]\n};\nvar faProjectDiagram = {\n prefix: 'fas',\n iconName: 'project-diagram',\n icon: [640, 512, [], \"f542\", \"M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPumpMedical = {\n prefix: 'fas',\n iconName: 'pump-medical',\n icon: [384, 512, [], \"e06a\", \"M235.51,159.82H84.24A64,64,0,0,0,20.51,218L.14,442a64,64,0,0,0,63.74,69.8h192A64,64,0,0,0,319.61,442L299.24,218A64,64,0,0,0,235.51,159.82Zm4.37,173.33a13.35,13.35,0,0,1-13.34,13.34h-40v40a13.33,13.33,0,0,1-13.33,13.33H146.54a13.33,13.33,0,0,1-13.33-13.33v-40h-40a13.34,13.34,0,0,1-13.33-13.34V306.49a13.33,13.33,0,0,1,13.33-13.34h40v-40a13.33,13.33,0,0,1,13.33-13.33h26.67a13.33,13.33,0,0,1,13.33,13.33v40h40a13.34,13.34,0,0,1,13.34,13.34ZM379.19,93.88,335.87,50.56a64,64,0,0,0-45.24-18.74H223.88a32,32,0,0,0-32-32h-64a32,32,0,0,0-32,32v96h128v-32h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.19,93.88Z\"]\n};\nvar faPumpSoap = {\n prefix: 'fas',\n iconName: 'pump-soap',\n icon: [384, 512, [], \"e06b\", \"M235.63,160H84.37a64,64,0,0,0-63.74,58.21L.27,442.21A64,64,0,0,0,64,512H256a64,64,0,0,0,63.74-69.79l-20.36-224A64,64,0,0,0,235.63,160ZM160,416c-33.12,0-60-26.33-60-58.75,0-25,35.7-75.47,52-97.27A10,10,0,0,1,168,260c16.33,21.8,52,72.27,52,97.27C220,389.67,193.12,416,160,416ZM379.31,94.06,336,50.74A64,64,0,0,0,290.75,32H224A32,32,0,0,0,192,0H128A32,32,0,0,0,96,32v96H224V96h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.31,94.06Z\"]\n};\nvar faPuzzlePiece = {\n prefix: 'fas',\n iconName: 'puzzle-piece',\n icon: [576, 512, [], \"f12e\", \"M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z\"]\n};\nvar faQrcode = {\n prefix: 'fas',\n iconName: 'qrcode',\n icon: [448, 512, [], \"f029\", \"M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z\"]\n};\nvar faQuestion = {\n prefix: 'fas',\n iconName: 'question',\n icon: [384, 512, [], \"f128\", \"M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z\"]\n};\nvar faQuestionCircle = {\n prefix: 'fas',\n iconName: 'question-circle',\n icon: [512, 512, [], \"f059\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z\"]\n};\nvar faQuidditch = {\n prefix: 'fas',\n iconName: 'quidditch',\n icon: [640, 512, [], \"f458\", \"M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z\"]\n};\nvar faQuoteLeft = {\n prefix: 'fas',\n iconName: 'quote-left',\n icon: [512, 512, [], \"f10d\", \"M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuoteRight = {\n prefix: 'fas',\n iconName: 'quote-right',\n icon: [512, 512, [], \"f10e\", \"M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuran = {\n prefix: 'fas',\n iconName: 'quran',\n icon: [448, 512, [], \"f687\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM301.08 145.82c.6-1.21 1.76-1.82 2.92-1.82s2.32.61 2.92 1.82l11.18 22.65 25 3.63c2.67.39 3.74 3.67 1.81 5.56l-18.09 17.63 4.27 24.89c.36 2.11-1.31 3.82-3.21 3.82-.5 0-1.02-.12-1.52-.38L304 211.87l-22.36 11.75c-.5.26-1.02.38-1.52.38-1.9 0-3.57-1.71-3.21-3.82l4.27-24.89-18.09-17.63c-1.94-1.89-.87-5.17 1.81-5.56l24.99-3.63 11.19-22.65zm-57.89-69.01c13.67 0 27.26 2.49 40.38 7.41a6.775 6.775 0 1 1-2.38 13.12c-.67 0-3.09-.21-4.13-.21-52.31 0-94.86 42.55-94.86 94.86 0 52.3 42.55 94.86 94.86 94.86 1.03 0 3.48-.21 4.13-.21 3.93 0 6.8 3.14 6.8 6.78 0 2.98-1.94 5.51-4.62 6.42-13.07 4.87-26.59 7.34-40.19 7.34C179.67 307.19 128 255.51 128 192c0-63.52 51.67-115.19 115.19-115.19zM380.8 448H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faRadiation = {\n prefix: 'fas',\n iconName: 'radiation',\n icon: [496, 512, [], \"f7b9\", \"M328.2 255.8h151.6c9.1 0 16.8-7.7 16.2-16.8-5.1-75.8-44.4-142.2-102.5-184.2-7.4-5.3-17.9-2.9-22.7 4.8L290.4 188c22.6 14.3 37.8 39.2 37.8 67.8zm-37.8 67.7c-12.3 7.7-26.8 12.4-42.4 12.4-15.6 0-30-4.7-42.4-12.4L125.2 452c-4.8 7.7-2.4 18.1 5.6 22.4C165.7 493.2 205.6 504 248 504s82.3-10.8 117.2-29.6c8-4.3 10.4-14.8 5.6-22.4l-80.4-128.5zM248 303.8c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm-231.8-48h151.6c0-28.6 15.2-53.5 37.8-67.7L125.2 59.7c-4.8-7.7-15.3-10.2-22.7-4.8C44.4 96.9 5.1 163.3 0 239.1c-.6 9 7.1 16.7 16.2 16.7z\"]\n};\nvar faRadiationAlt = {\n prefix: 'fas',\n iconName: 'radiation-alt',\n icon: [496, 512, [], \"f7ba\", \"M312 256h79.1c9.2 0 16.9-7.7 16-16.8-4.6-43.6-27-81.8-59.5-107.8-7.6-6.1-18.8-4.5-24 3.8L281.9 202c18 11.2 30.1 31.2 30.1 54zm-97.8 54.1L172.4 377c-4.9 7.8-2.4 18.4 5.8 22.5 21.1 10.4 44.7 16.5 69.8 16.5s48.7-6.1 69.9-16.5c8.2-4.1 10.6-14.7 5.8-22.5l-41.8-66.9c-9.8 6.2-21.4 9.9-33.8 9.9s-24.1-3.7-33.9-9.9zM104.9 256H184c0-22.8 12.1-42.8 30.2-54.1l-41.7-66.8c-5.2-8.3-16.4-9.9-24-3.8-32.6 26-54.9 64.2-59.5 107.8-1.1 9.2 6.7 16.9 15.9 16.9zM248 504c137 0 248-111 248-248S385 8 248 8 0 119 0 256s111 248 248 248zm0-432c101.5 0 184 82.5 184 184s-82.5 184-184 184S64 357.5 64 256 146.5 72 248 72zm0 216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faRainbow = {\n prefix: 'fas',\n iconName: 'rainbow',\n icon: [576, 512, [], \"f75b\", \"M268.3 32.7C115.4 42.9 0 176.9 0 330.2V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C64 186.8 180.9 80.3 317.5 97.9 430.4 112.4 512 214 512 327.8V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-165.3-140-298.6-307.7-287.3zm-5.6 96.9C166 142 96 229.1 96 326.7V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-74.8 64.5-134.8 140.8-127.4 66.5 6.5 115.2 66.2 115.2 133.1V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-114.2-100.2-205.4-217.3-190.4zm6.2 96.3c-45.6 8.9-76.9 51.5-76.9 97.9V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-17.6 14.3-32 32-32s32 14.4 32 32v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-59.2-53.8-106-115.1-94.1z\"]\n};\nvar faRandom = {\n prefix: 'fas',\n iconName: 'random',\n icon: [512, 512, [], \"f074\", \"M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z\"]\n};\nvar faReceipt = {\n prefix: 'fas',\n iconName: 'receipt',\n icon: [384, 512, [], \"f543\", \"M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faRecordVinyl = {\n prefix: 'fas',\n iconName: 'record-vinyl',\n icon: [512, 512, [], \"f8d9\", \"M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm0-272C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 376a128 128 0 1 1 128-128 128 128 0 0 1-128 128z\"]\n};\nvar faRecycle = {\n prefix: 'fas',\n iconName: 'recycle',\n icon: [512, 512, [], \"f1b8\", \"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z\"]\n};\nvar faRedo = {\n prefix: 'fas',\n iconName: 'redo',\n icon: [512, 512, [], \"f01e\", \"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z\"]\n};\nvar faRedoAlt = {\n prefix: 'fas',\n iconName: 'redo-alt',\n icon: [512, 512, [], \"f2f9\", \"M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z\"]\n};\nvar faRegistered = {\n prefix: 'fas',\n iconName: 'registered',\n icon: [512, 512, [], \"f25d\", \"M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z\"]\n};\nvar faRemoveFormat = {\n prefix: 'fas',\n iconName: 'remove-format',\n icon: [640, 512, [], \"f87d\", \"M336 416h-11.17l9.26-27.77L267 336.4 240.49 416H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm297.82 42.1L377 259.59 426.17 112H544v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16H176a16 16 0 0 0-16 16v43.9L45.46 3.38A16 16 0 0 0 23 6.19L3.37 31.46a16 16 0 0 0 2.81 22.45l588.36 454.72a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zM309.91 207.76L224 141.36V112h117.83z\"]\n};\nvar faReply = {\n prefix: 'fas',\n iconName: 'reply',\n icon: [512, 512, [], \"f3e5\", \"M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z\"]\n};\nvar faReplyAll = {\n prefix: 'fas',\n iconName: 'reply-all',\n icon: [576, 512, [], \"f122\", \"M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z\"]\n};\nvar faRepublican = {\n prefix: 'fas',\n iconName: 'republican',\n icon: [640, 512, [], \"f75e\", \"M544 192c0-88.4-71.6-160-160-160H160C71.6 32 0 103.6 0 192v64h544v-64zm-367.7-21.6l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L128 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L272 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L416 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zM624 320h-32c-8.8 0-16 7.2-16 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V288H0v176c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-80h192v80c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V352h32v43.3c0 41.8 30 80.1 71.6 84.3 47.8 4.9 88.4-32.7 88.4-79.6v-64c0-8.8-7.2-16-16-16z\"]\n};\nvar faRestroom = {\n prefix: 'fas',\n iconName: 'restroom',\n icon: [640, 512, [], \"f7bd\", \"M128 128c35.3 0 64-28.7 64-64S163.3 0 128 0 64 28.7 64 64s28.7 64 64 64zm384 0c35.3 0 64-28.7 64-64S547.3 0 512 0s-64 28.7-64 64 28.7 64 64 64zm127.3 226.5l-45.6-185.8c-3.3-13.5-15.5-23-29.8-24.2-15 9.7-32.8 15.5-52 15.5-19.2 0-37-5.8-52-15.5-14.3 1.2-26.5 10.7-29.8 24.2l-45.6 185.8C381 369.6 393 384 409.2 384H464v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V384h54.8c16.2 0 28.2-14.4 24.5-29.5zM336 0h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zM180.1 144.4c-15 9.8-32.9 15.6-52.1 15.6-19.2 0-37.1-5.8-52.1-15.6C51.3 146.5 32 166.9 32 192v136c0 13.3 10.7 24 24 24h8v136c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V352h8c13.3 0 24-10.7 24-24V192c0-25.1-19.3-45.5-43.9-47.6z\"]\n};\nvar faRetweet = {\n prefix: 'fas',\n iconName: 'retweet',\n icon: [640, 512, [], \"f079\", \"M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z\"]\n};\nvar faRibbon = {\n prefix: 'fas',\n iconName: 'ribbon',\n icon: [448, 512, [], \"f4d6\", \"M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z\"]\n};\nvar faRing = {\n prefix: 'fas',\n iconName: 'ring',\n icon: [512, 512, [], \"f70b\", \"M256 64C110.06 64 0 125.91 0 208v98.13C0 384.48 114.62 448 256 448s256-63.52 256-141.87V208c0-82.09-110.06-144-256-144zm0 64c106.04 0 192 35.82 192 80 0 9.26-3.97 18.12-10.91 26.39C392.15 208.21 328.23 192 256 192s-136.15 16.21-181.09 42.39C67.97 226.12 64 217.26 64 208c0-44.18 85.96-80 192-80zM120.43 264.64C155.04 249.93 201.64 240 256 240s100.96 9.93 135.57 24.64C356.84 279.07 308.93 288 256 288s-100.84-8.93-135.57-23.36z\"]\n};\nvar faRoad = {\n prefix: 'fas',\n iconName: 'road',\n icon: [576, 512, [], \"f018\", \"M573.19 402.67l-139.79-320C428.43 71.29 417.6 64 405.68 64h-97.59l2.45 23.16c.5 4.72-3.21 8.84-7.96 8.84h-29.16c-4.75 0-8.46-4.12-7.96-8.84L267.91 64h-97.59c-11.93 0-22.76 7.29-27.73 18.67L2.8 402.67C-6.45 423.86 8.31 448 30.54 448h196.84l10.31-97.68c.86-8.14 7.72-14.32 15.91-14.32h68.8c8.19 0 15.05 6.18 15.91 14.32L348.62 448h196.84c22.23 0 36.99-24.14 27.73-45.33zM260.4 135.16a8 8 0 0 1 7.96-7.16h39.29c4.09 0 7.53 3.09 7.96 7.16l4.6 43.58c.75 7.09-4.81 13.26-11.93 13.26h-40.54c-7.13 0-12.68-6.17-11.93-13.26l4.59-43.58zM315.64 304h-55.29c-9.5 0-16.91-8.23-15.91-17.68l5.07-48c.86-8.14 7.72-14.32 15.91-14.32h45.15c8.19 0 15.05 6.18 15.91 14.32l5.07 48c1 9.45-6.41 17.68-15.91 17.68z\"]\n};\nvar faRobot = {\n prefix: 'fas',\n iconName: 'robot',\n icon: [640, 512, [], \"f544\", \"M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z\"]\n};\nvar faRocket = {\n prefix: 'fas',\n iconName: 'rocket',\n icon: [512, 512, [], \"f135\", \"M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z\"]\n};\nvar faRoute = {\n prefix: 'fas',\n iconName: 'route',\n icon: [512, 512, [], \"f4d7\", \"M416 320h-96c-17.6 0-32-14.4-32-32s14.4-32 32-32h96s96-107 96-160-43-96-96-96-96 43-96 96c0 25.5 22.2 63.4 45.3 96H320c-52.9 0-96 43.1-96 96s43.1 96 96 96h96c17.6 0 32 14.4 32 32s-14.4 32-32 32H185.5c-16 24.8-33.8 47.7-47.3 64H416c52.9 0 96-43.1 96-96s-43.1-96-96-96zm0-256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM96 256c-53 0-96 43-96 96s96 160 96 160 96-107 96-160-43-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faRss = {\n prefix: 'fas',\n iconName: 'rss',\n icon: [448, 512, [], \"f09e\", \"M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z\"]\n};\nvar faRssSquare = {\n prefix: 'fas',\n iconName: 'rss-square',\n icon: [448, 512, [], \"f143\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z\"]\n};\nvar faRubleSign = {\n prefix: 'fas',\n iconName: 'ruble-sign',\n icon: [384, 512, [], \"f158\", \"M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z\"]\n};\nvar faRuler = {\n prefix: 'fas',\n iconName: 'ruler',\n icon: [640, 512, [], \"f545\", \"M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z\"]\n};\nvar faRulerCombined = {\n prefix: 'fas',\n iconName: 'ruler-combined',\n icon: [512, 512, [], \"f546\", \"M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerHorizontal = {\n prefix: 'fas',\n iconName: 'ruler-horizontal',\n icon: [576, 512, [], \"f547\", \"M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerVertical = {\n prefix: 'fas',\n iconName: 'ruler-vertical',\n icon: [256, 512, [], \"f548\", \"M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z\"]\n};\nvar faRunning = {\n prefix: 'fas',\n iconName: 'running',\n icon: [416, 512, [], \"f70c\", \"M272 96c26.51 0 48-21.49 48-48S298.51 0 272 0s-48 21.49-48 48 21.49 48 48 48zM113.69 317.47l-14.8 34.52H32c-17.67 0-32 14.33-32 32s14.33 32 32 32h77.45c19.25 0 36.58-11.44 44.11-29.09l8.79-20.52-10.67-6.3c-17.32-10.23-30.06-25.37-37.99-42.61zM384 223.99h-44.03l-26.06-53.25c-12.5-25.55-35.45-44.23-61.78-50.94l-71.08-21.14c-28.3-6.8-57.77-.55-80.84 17.14l-39.67 30.41c-14.03 10.75-16.69 30.83-5.92 44.86s30.84 16.66 44.86 5.92l39.69-30.41c7.67-5.89 17.44-8 25.27-6.14l14.7 4.37-37.46 87.39c-12.62 29.48-1.31 64.01 26.3 80.31l84.98 50.17-27.47 87.73c-5.28 16.86 4.11 34.81 20.97 40.09 3.19 1 6.41 1.48 9.58 1.48 13.61 0 26.23-8.77 30.52-22.45l31.64-101.06c5.91-20.77-2.89-43.08-21.64-54.39l-61.24-36.14 31.31-78.28 20.27 41.43c8 16.34 24.92 26.89 43.11 26.89H384c17.67 0 32-14.33 32-32s-14.33-31.99-32-31.99z\"]\n};\nvar faRupeeSign = {\n prefix: 'fas',\n iconName: 'rupee-sign',\n icon: [320, 512, [], \"f156\", \"M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z\"]\n};\nvar faSadCry = {\n prefix: 'fas',\n iconName: 'sad-cry',\n icon: [496, 512, [], \"f5b3\", \"M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z\"]\n};\nvar faSadTear = {\n prefix: 'fas',\n iconName: 'sad-tear',\n icon: [496, 512, [], \"f5b4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z\"]\n};\nvar faSatellite = {\n prefix: 'fas',\n iconName: 'satellite',\n icon: [512, 512, [], \"f7bf\", \"M502.60969,310.04206l-96.70393,96.71625a31.88151,31.88151,0,0,1-45.00765,0L280.572,326.34115l-9.89231,9.90759a190.56343,190.56343,0,0,1-5.40716,168.52287c-4.50077,8.50115-16.39342,9.59505-23.20707,2.79725L134.54715,400.05428l-17.7999,17.79929c.70324,2.60972,1.60965,5.00067,1.60965,7.79793a32.00544,32.00544,0,1,1-32.00544-32.00434c2.79735,0,5.18838.90637,7.7982,1.60959l17.7999-17.79929L4.43129,269.94287c-6.798-6.81342-5.70409-18.6119,2.79735-23.20627a190.58161,190.58161,0,0,1,168.52864-5.407l9.79854-9.79821-80.31053-80.41716a32.002,32.002,0,0,1,0-45.09987L201.96474,9.29814A31.62639,31.62639,0,0,1,224.46868,0a31.99951,31.99951,0,0,1,22.59759,9.29814l80.32615,80.30777,47.805-47.89713a33.6075,33.6075,0,0,1,47.50808,0l47.50807,47.50645a33.63308,33.63308,0,0,1,0,47.50644l-47.805,47.89713L502.71908,265.036A31.78938,31.78938,0,0,1,502.60969,310.04206ZM219.56159,197.433l73.82505-73.82252-68.918-68.9-73.80942,73.80689Zm237.74352,90.106-68.90233-68.9156-73.825,73.82252,68.918,68.9Z\"]\n};\nvar faSatelliteDish = {\n prefix: 'fas',\n iconName: 'satellite-dish',\n icon: [512, 512, [], \"f7c0\", \"M305.44954,462.59c7.39157,7.29792,6.18829,20.09661-3.00038,25.00356-77.713,41.80281-176.72559,29.9105-242.34331-35.7082C-5.49624,386.28227-17.404,287.362,24.41381,209.554c4.89125-9.095,17.68975-10.29834,25.00318-3.00043L166.22872,323.36708l27.39411-27.39452c-.68759-2.60974-1.594-5.00071-1.594-7.81361a32.00407,32.00407,0,1,1,32.00407,32.00455c-2.79723,0-5.20378-.89075-7.79786-1.594l-27.40974,27.41015ZM511.9758,303.06732a16.10336,16.10336,0,0,1-16.002,17.00242H463.86031a15.96956,15.96956,0,0,1-15.89265-15.00213C440.46671,175.5492,336.45348,70.53427,207.03078,63.53328a15.84486,15.84486,0,0,1-15.00191-15.90852V16.02652A16.09389,16.09389,0,0,1,209.031.02425C372.25491,8.61922,503.47472,139.841,511.9758,303.06732Zm-96.01221-.29692a16.21093,16.21093,0,0,1-16.11142,17.29934H367.645a16.06862,16.06862,0,0,1-15.89265-14.70522c-6.90712-77.01094-68.118-138.91037-144.92467-145.22376a15.94,15.94,0,0,1-14.79876-15.89289V112.13393a16.134,16.134,0,0,1,17.29908-16.096C319.45132,104.5391,407.55627,192.64538,415.96359,302.7704Z\"]\n};\nvar faSave = {\n prefix: 'fas',\n iconName: 'save',\n icon: [448, 512, [], \"f0c7\", \"M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z\"]\n};\nvar faSchool = {\n prefix: 'fas',\n iconName: 'school',\n icon: [640, 512, [], \"f549\", \"M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z\"]\n};\nvar faScrewdriver = {\n prefix: 'fas',\n iconName: 'screwdriver',\n icon: [512, 512, [], \"f54a\", \"M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z\"]\n};\nvar faScroll = {\n prefix: 'fas',\n iconName: 'scroll',\n icon: [640, 512, [], \"f70e\", \"M48 0C21.53 0 0 21.53 0 48v64c0 8.84 7.16 16 16 16h80V48C96 21.53 74.47 0 48 0zm208 412.57V352h288V96c0-52.94-43.06-96-96-96H111.59C121.74 13.41 128 29.92 128 48v368c0 38.87 34.65 69.65 74.75 63.12C234.22 474 256 444.46 256 412.57zM288 384v32c0 52.93-43.06 96-96 96h336c61.86 0 112-50.14 112-112 0-8.84-7.16-16-16-16H288z\"]\n};\nvar faSdCard = {\n prefix: 'fas',\n iconName: 'sd-card',\n icon: [384, 512, [], \"f7c2\", \"M320 0H128L0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 160h-48V64h48v96zm80 0h-48V64h48v96zm80 0h-48V64h48v96z\"]\n};\nvar faSearch = {\n prefix: 'fas',\n iconName: 'search',\n icon: [512, 512, [], \"f002\", \"M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z\"]\n};\nvar faSearchDollar = {\n prefix: 'fas',\n iconName: 'search-dollar',\n icon: [512, 512, [], \"f688\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm27.11-152.54l-45.01-13.5c-5.16-1.55-8.77-6.78-8.77-12.73 0-7.27 5.3-13.19 11.8-13.19h28.11c4.56 0 8.96 1.29 12.82 3.72 3.24 2.03 7.36 1.91 10.13-.73l11.75-11.21c3.53-3.37 3.33-9.21-.57-12.14-9.1-6.83-20.08-10.77-31.37-11.35V112c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v16.12c-23.63.63-42.68 20.55-42.68 45.07 0 19.97 12.99 37.81 31.58 43.39l45.01 13.5c5.16 1.55 8.77 6.78 8.77 12.73 0 7.27-5.3 13.19-11.8 13.19h-28.1c-4.56 0-8.96-1.29-12.82-3.72-3.24-2.03-7.36-1.91-10.13.73l-11.75 11.21c-3.53 3.37-3.33 9.21.57 12.14 9.1 6.83 20.08 10.77 31.37 11.35V304c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-16.12c23.63-.63 42.68-20.54 42.68-45.07 0-19.97-12.99-37.81-31.59-43.39z\"]\n};\nvar faSearchLocation = {\n prefix: 'fas',\n iconName: 'search-location',\n icon: [512, 512, [], \"f689\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm.02-239.96c-40.78 0-73.84 33.05-73.84 73.83 0 32.96 48.26 93.05 66.75 114.86a9.24 9.24 0 0 0 14.18 0c18.49-21.81 66.75-81.89 66.75-114.86 0-40.78-33.06-73.83-73.84-73.83zm0 96c-13.26 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faSearchMinus = {\n prefix: 'fas',\n iconName: 'search-minus',\n icon: [512, 512, [], \"f010\", \"M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSearchPlus = {\n prefix: 'fas',\n iconName: 'search-plus',\n icon: [512, 512, [], \"f00e\", \"M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSeedling = {\n prefix: 'fas',\n iconName: 'seedling',\n icon: [512, 512, [], \"f4d8\", \"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z\"]\n};\nvar faServer = {\n prefix: 'fas',\n iconName: 'server',\n icon: [512, 512, [], \"f233\", \"M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z\"]\n};\nvar faShapes = {\n prefix: 'fas',\n iconName: 'shapes',\n icon: [512, 512, [], \"f61f\", \"M128,256A128,128,0,1,0,256,384,128,128,0,0,0,128,256Zm379-54.86L400.07,18.29a37.26,37.26,0,0,0-64.14,0L229,201.14C214.76,225.52,232.58,256,261.09,256H474.91C503.42,256,521.24,225.52,507,201.14ZM480,288H320a32,32,0,0,0-32,32V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V320A32,32,0,0,0,480,288Z\"]\n};\nvar faShare = {\n prefix: 'fas',\n iconName: 'share',\n icon: [512, 512, [], \"f064\", \"M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z\"]\n};\nvar faShareAlt = {\n prefix: 'fas',\n iconName: 'share-alt',\n icon: [448, 512, [], \"f1e0\", \"M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z\"]\n};\nvar faShareAltSquare = {\n prefix: 'fas',\n iconName: 'share-alt-square',\n icon: [448, 512, [], \"f1e1\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z\"]\n};\nvar faShareSquare = {\n prefix: 'fas',\n iconName: 'share-square',\n icon: [576, 512, [], \"f14d\", \"M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z\"]\n};\nvar faShekelSign = {\n prefix: 'fas',\n iconName: 'shekel-sign',\n icon: [448, 512, [], \"f20b\", \"M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faShieldAlt = {\n prefix: 'fas',\n iconName: 'shield-alt',\n icon: [512, 512, [], \"f3ed\", \"M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3zM256.1 446.3l-.1-381 175.9 73.3c-3.3 151.4-82.1 261.1-175.8 307.7z\"]\n};\nvar faShieldVirus = {\n prefix: 'fas',\n iconName: 'shield-virus',\n icon: [512, 512, [], \"e06c\", \"M224,192a16,16,0,1,0,16,16A16,16,0,0,0,224,192ZM466.5,83.68l-192-80A57.4,57.4,0,0,0,256.05,0a57.4,57.4,0,0,0-18.46,3.67l-192,80A47.93,47.93,0,0,0,16,128C16,326.5,130.5,463.72,237.5,508.32a48.09,48.09,0,0,0,36.91,0C360.09,472.61,496,349.3,496,128A48,48,0,0,0,466.5,83.68ZM384,256H371.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C306.47,313.09,272,327.37,272,355.88V368a16,16,0,0,1-32,0V355.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H128a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V112a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C329.09,189.53,343.37,224,371.88,224H384a16,16,0,0,1,0,32Zm-96,0a16,16,0,1,0,16,16A16,16,0,0,0,288,256Z\"]\n};\nvar faShip = {\n prefix: 'fas',\n iconName: 'ship',\n icon: [640, 512, [], \"f21a\", \"M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z\"]\n};\nvar faShippingFast = {\n prefix: 'fas',\n iconName: 'shipping-fast',\n icon: [640, 512, [], \"f48b\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faShoePrints = {\n prefix: 'fas',\n iconName: 'shoe-prints',\n icon: [640, 512, [], \"f54b\", \"M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z\"]\n};\nvar faShoppingBag = {\n prefix: 'fas',\n iconName: 'shopping-bag',\n icon: [448, 512, [], \"f290\", \"M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z\"]\n};\nvar faShoppingBasket = {\n prefix: 'fas',\n iconName: 'shopping-basket',\n icon: [576, 512, [], \"f291\", \"M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z\"]\n};\nvar faShoppingCart = {\n prefix: 'fas',\n iconName: 'shopping-cart',\n icon: [576, 512, [], \"f07a\", \"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"]\n};\nvar faShower = {\n prefix: 'fas',\n iconName: 'shower',\n icon: [512, 512, [], \"f2cc\", \"M304,320a16,16,0,1,0,16,16A16,16,0,0,0,304,320Zm32-96a16,16,0,1,0,16,16A16,16,0,0,0,336,224Zm32,64a16,16,0,1,0-16-16A16,16,0,0,0,368,288Zm-32,32a16,16,0,1,0-16-16A16,16,0,0,0,336,320Zm-32-64a16,16,0,1,0,16,16A16,16,0,0,0,304,256Zm128-32a16,16,0,1,0-16-16A16,16,0,0,0,432,224Zm-48,16a16,16,0,1,0,16-16A16,16,0,0,0,384,240Zm-16-48a16,16,0,1,0,16,16A16,16,0,0,0,368,192Zm96,32a16,16,0,1,0,16,16A16,16,0,0,0,464,224Zm32-32a16,16,0,1,0,16,16A16,16,0,0,0,496,192Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,432,256Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,400,288Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,336,352Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,304,384Zm64-64a16,16,0,1,0,16,16A16,16,0,0,0,368,320Zm21.65-218.35-11.3-11.31a16,16,0,0,0-22.63,0L350.05,96A111.19,111.19,0,0,0,272,64c-19.24,0-37.08,5.3-52.9,13.85l-10-10A121.72,121.72,0,0,0,123.44,32C55.49,31.5,0,92.91,0,160.85V464a16,16,0,0,0,16,16H48a16,16,0,0,0,16-16V158.4c0-30.15,21-58.2,51-61.93a58.38,58.38,0,0,1,48.93,16.67l10,10C165.3,138.92,160,156.76,160,176a111.23,111.23,0,0,0,32,78.05l-5.66,5.67a16,16,0,0,0,0,22.62l11.3,11.31a16,16,0,0,0,22.63,0L389.65,124.28A16,16,0,0,0,389.65,101.65Z\"]\n};\nvar faShuttleVan = {\n prefix: 'fas',\n iconName: 'shuttle-van',\n icon: [640, 512, [], \"f5b6\", \"M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z\"]\n};\nvar faSign = {\n prefix: 'fas',\n iconName: 'sign',\n icon: [512, 512, [], \"f4d9\", \"M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z\"]\n};\nvar faSignInAlt = {\n prefix: 'fas',\n iconName: 'sign-in-alt',\n icon: [512, 512, [], \"f2f6\", \"M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z\"]\n};\nvar faSignLanguage = {\n prefix: 'fas',\n iconName: 'sign-language',\n icon: [448, 512, [], \"f2a7\", \"M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z\"]\n};\nvar faSignOutAlt = {\n prefix: 'fas',\n iconName: 'sign-out-alt',\n icon: [512, 512, [], \"f2f5\", \"M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z\"]\n};\nvar faSignal = {\n prefix: 'fas',\n iconName: 'signal',\n icon: [640, 512, [], \"f012\", \"M216 288h-48c-8.84 0-16 7.16-16 16v192c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V304c0-8.84-7.16-16-16-16zM88 384H40c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16zm256-192h-48c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm128-96h-48c-8.84 0-16 7.16-16 16v384c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112c0-8.84-7.16-16-16-16zM600 0h-48c-8.84 0-16 7.16-16 16v480c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faSignature = {\n prefix: 'fas',\n iconName: 'signature',\n icon: [640, 512, [], \"f5b7\", \"M623.2 192c-51.8 3.5-125.7 54.7-163.1 71.5-29.1 13.1-54.2 24.4-76.1 24.4-22.6 0-26-16.2-21.3-51.9 1.1-8 11.7-79.2-42.7-76.1-25.1 1.5-64.3 24.8-169.5 126L192 182.2c30.4-75.9-53.2-151.5-129.7-102.8L7.4 116.3C0 121-2.2 130.9 2.5 138.4l17.2 27c4.7 7.5 14.6 9.7 22.1 4.9l58-38.9c18.4-11.7 40.7 7.2 32.7 27.1L34.3 404.1C27.5 421 37 448 64 448c8.3 0 16.5-3.2 22.6-9.4 42.2-42.2 154.7-150.7 211.2-195.8-2.2 28.5-2.1 58.9 20.6 83.8 15.3 16.8 37.3 25.3 65.5 25.3 35.6 0 68-14.6 102.3-30 33-14.8 99-62.6 138.4-65.8 8.5-.7 15.2-7.3 15.2-15.8v-32.1c.2-9.1-7.5-16.8-16.6-16.2z\"]\n};\nvar faSimCard = {\n prefix: 'fas',\n iconName: 'sim-card',\n icon: [384, 512, [], \"f7c4\", \"M0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128L256 0H64C28.7 0 0 28.7 0 64zm224 192h-64v-64h64v64zm96 0h-64v-64h32c17.7 0 32 14.3 32 32v32zm-64 128h64v32c0 17.7-14.3 32-32 32h-32v-64zm-96 0h64v64h-64v-64zm-96 0h64v64H96c-17.7 0-32-14.3-32-32v-32zm0-96h256v64H64v-64zm0-64c0-17.7 14.3-32 32-32h32v64H64v-32z\"]\n};\nvar faSink = {\n prefix: 'fas',\n iconName: 'sink',\n icon: [512, 512, [], \"e06d\", \"M32,416a96,96,0,0,0,96,96H384a96,96,0,0,0,96-96V384H32ZM496,288H400V256h64a16,16,0,0,0,16-16V224a16,16,0,0,0-16-16H384a32,32,0,0,0-32,32v48H288V96a32,32,0,0,1,64,0v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V96A96.16,96.16,0,0,0,300.87,1.86C255.29,10.71,224,53.36,224,99.79V288H160V240a32,32,0,0,0-32-32H48a16,16,0,0,0-16,16v16a16,16,0,0,0,16,16h64v32H16A16,16,0,0,0,0,304v32a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V304A16,16,0,0,0,496,288Z\"]\n};\nvar faSitemap = {\n prefix: 'fas',\n iconName: 'sitemap',\n icon: [640, 512, [], \"f0e8\", \"M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faSkating = {\n prefix: 'fas',\n iconName: 'skating',\n icon: [448, 512, [], \"f7c5\", \"M400 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 448c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c26.5 0 48-21.5 48-48 0-8.8-7.2-16-16-16zm-282.2 8.6c-6.2 6.2-16.4 6.3-22.6 0l-67.9-67.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l67.9 67.9c9.4 9.4 21.7 14 34 14s24.6-4.7 33.9-14c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.3-22.7 0zm56.1-179.8l-93.7 93.7c-12.5 12.5-12.5 32.8 0 45.2 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4l91.9-91.9-30.2-30.2c-5-5-9.4-10.7-13.2-16.8zM128 160h105.5l-20.1 17.2c-13.5 11.5-21.6 28.4-22.3 46.1-.7 17.8 6.1 35.2 18.7 47.7l78.2 78.2V432c0 17.7 14.3 32 32 32s32-14.3 32-32v-89.4c0-12.6-5.1-25-14.1-33.9l-61-61c.5-.4 1.2-.6 1.7-1.1l82.3-82.3c11.5-11.5 14.9-28.6 8.7-43.6-6.2-15-20.7-24.7-37-24.7H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z\"]\n};\nvar faSkiing = {\n prefix: 'fas',\n iconName: 'skiing',\n icon: [512, 512, [], \"f7c9\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm73 356.1c-9.4-9.4-24.6-9.4-33.9 0-12.1 12.1-30.5 15.4-45.1 8.7l-135.8-70.2 49.2-73.8c12.7-19 10.2-44.5-6-60.6L293 215.7l-107-53.1c-2.9 19.9 3.4 40 17.7 54.4l75.1 75.2-45.9 68.8L35 258.7c-11.7-6-26.2-1.5-32.3 10.3-6.1 11.8-1.5 26.3 10.3 32.3l391.9 202.5c11.9 5.5 24.5 8.1 37.1 8.1 23.2 0 46-9 63-26 9.3-9.3 9.3-24.5 0-33.8zM120 91.6l-11.5 22.5c14.4 7.3 31.2 4.9 42.8-4.8l47.2 23.4c-.1.1-.1.2-.2.3l114.5 56.8 32.4-13 6.4 19.1c4 12.1 12.6 22 24 27.7l58.1 29c15.9 7.9 35 1.5 42.9-14.3 7.9-15.8 1.5-35-14.3-42.9l-52.1-26.1-17.1-51.2c-8.1-24.2-40.9-56.6-84.5-39.2l-81.2 32.5-62.5-31c.3-14.5-7.2-28.6-20.9-35.6l-11.1 21.7h-.2l-34.4-7c-1.8-.4-3.7.2-5 1.7-1.9 2.2-1.7 5.5.5 7.4l26.2 23z\"]\n};\nvar faSkiingNordic = {\n prefix: 'fas',\n iconName: 'skiing-nordic',\n icon: [576, 512, [], \"f7ca\", \"M336 96c26.5 0 48-21.5 48-48S362.5 0 336 0s-48 21.5-48 48 21.5 48 48 48zm216 320c-13.2 0-24 10.7-24 24 0 13.2-10.8 24-24 24h-69.5L460 285.6c11.7-4.7 20.1-16.2 20.1-29.6 0-17.7-14.3-32-32-32h-44L378 170.8c-12.5-25.5-35.5-44.2-61.8-50.9L245 98.7c-28.3-6.8-57.8-.5-80.8 17.1l-39.7 30.4c-14 10.7-16.7 30.8-5.9 44.9.7.9 1.7 1.3 2.4 2.1L66.9 464H24c-13.2 0-24 10.7-24 24s10.8 24 24 24h480c39.7 0 72-32.3 72-72 0-13.2-10.8-24-24-24zm-260.5 48h-96.9l43.1-91-22-13c-12.1-7.2-21.9-16.9-29.5-27.8L123.7 464H99.5l52.3-261.4c4.1-1 8.1-2.9 11.7-5.6l39.7-30.4c7.7-5.9 17.4-8 25.3-6.1l14.7 4.4-37.5 87.4c-12.6 29.5-1.3 64 26.3 80.3l85 50.2-25.5 81.2zm110.6 0h-43.6l23.6-75.5c5.9-20.8-2.9-43.1-21.6-54.4L299.3 298l31.3-78.3 20.3 41.4c8 16.3 24.9 26.9 43.1 26.9h33.3l-25.2 176z\"]\n};\nvar faSkull = {\n prefix: 'fas',\n iconName: 'skull',\n icon: [512, 512, [], \"f54c\", \"M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z\"]\n};\nvar faSkullCrossbones = {\n prefix: 'fas',\n iconName: 'skull-crossbones',\n icon: [448, 512, [], \"f714\", \"M439.15 453.06L297.17 384l141.99-69.06c7.9-3.95 11.11-13.56 7.15-21.46L432 264.85c-3.95-7.9-13.56-11.11-21.47-7.16L224 348.41 37.47 257.69c-7.9-3.95-17.51-.75-21.47 7.16L1.69 293.48c-3.95 7.9-.75 17.51 7.15 21.46L150.83 384 8.85 453.06c-7.9 3.95-11.11 13.56-7.15 21.47l14.31 28.63c3.95 7.9 13.56 11.11 21.47 7.15L224 419.59l186.53 90.72c7.9 3.95 17.51.75 21.47-7.15l14.31-28.63c3.95-7.91.74-17.52-7.16-21.47zM150 237.28l-5.48 25.87c-2.67 12.62 5.42 24.85 16.45 24.85h126.08c11.03 0 19.12-12.23 16.45-24.85l-5.5-25.87c41.78-22.41 70-62.75 70-109.28C368 57.31 303.53 0 224 0S80 57.31 80 128c0 46.53 28.22 86.87 70 109.28zM280 112c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32zm-112 0c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32z\"]\n};\nvar faSlash = {\n prefix: 'fas',\n iconName: 'slash',\n icon: [640, 512, [], \"f715\", \"M594.53 508.63L6.18 53.9c-6.97-5.42-8.23-15.47-2.81-22.45L23.01 6.18C28.43-.8 38.49-2.06 45.47 3.37L633.82 458.1c6.97 5.42 8.23 15.47 2.81 22.45l-19.64 25.27c-5.42 6.98-15.48 8.23-22.46 2.81z\"]\n};\nvar faSleigh = {\n prefix: 'fas',\n iconName: 'sleigh',\n icon: [640, 512, [], \"f7cc\", \"M612.7 350.7l-9.3-7.4c-6.9-5.5-17-4.4-22.5 2.5l-10 12.5c-5.5 6.9-4.4 17 2.5 22.5l9.3 7.4c5.9 4.7 9.2 11.7 9.2 19.2 0 13.6-11 24.6-24.6 24.6H48c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h516c39 0 73.7-29.3 75.9-68.3 1.4-23.8-8.7-46.3-27.2-61zM32 224c0 59.6 40.9 109.2 96 123.5V400h64v-48h192v48h64v-48c53 0 96-43 96-96v-96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96v64c0 35.3-28.7 64-64 64h-20.7c-65.8 0-125.9-37.2-155.3-96-29.4-58.8-89.6-96-155.3-96H32C14.3 32 0 46.3 0 64s14.3 32 32 32v128z\"]\n};\nvar faSlidersH = {\n prefix: 'fas',\n iconName: 'sliders-h',\n icon: [512, 512, [], \"f1de\", \"M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z\"]\n};\nvar faSmile = {\n prefix: 'fas',\n iconName: 'smile',\n icon: [496, 512, [], \"f118\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z\"]\n};\nvar faSmileBeam = {\n prefix: 'fas',\n iconName: 'smile-beam',\n icon: [496, 512, [], \"f5b8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z\"]\n};\nvar faSmileWink = {\n prefix: 'fas',\n iconName: 'smile-wink',\n icon: [496, 512, [], \"f4da\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z\"]\n};\nvar faSmog = {\n prefix: 'fas',\n iconName: 'smog',\n icon: [640, 512, [], \"f75f\", \"M624 368H80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm-480 96H16c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm416 0H224c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h336c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zM144 288h156.1c22.5 19.7 51.6 32 83.9 32s61.3-12.3 83.9-32H528c61.9 0 112-50.1 112-112S589.9 64 528 64c-18 0-34.7 4.6-49.7 12.1C454 31 406.8 0 352 0c-41 0-77.8 17.3-104 44.8C221.8 17.3 185 0 144 0 64.5 0 0 64.5 0 144s64.5 144 144 144z\"]\n};\nvar faSmoking = {\n prefix: 'fas',\n iconName: 'smoking',\n icon: [640, 512, [], \"f48d\", \"M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z\"]\n};\nvar faSmokingBan = {\n prefix: 'fas',\n iconName: 'smoking-ban',\n icon: [512, 512, [], \"f54d\", \"M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z\"]\n};\nvar faSms = {\n prefix: 'fas',\n iconName: 'sms',\n icon: [512, 512, [], \"f7cd\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7 1.3 3 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128.2 304H116c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H156c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-19 38.6-42.4 38.6zm191.8-8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-68.2l-24.8 55.8c-2.9 5.9-11.4 5.9-14.3 0L224 227.8V296c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V192c0-8.8 7.2-16 16-16h16c6.1 0 11.6 3.4 14.3 8.8l17.7 35.4 17.7-35.4c2.7-5.4 8.3-8.8 14.3-8.8h16c8.8 0 16 7.2 16 16v104zm48.3 8H356c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H396c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-18.9 38.6-42.3 38.6z\"]\n};\nvar faSnowboarding = {\n prefix: 'fas',\n iconName: 'snowboarding',\n icon: [512, 512, [], \"f7ce\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm28.8 153.6c5.8 4.3 12.5 6.4 19.2 6.4 9.7 0 19.3-4.4 25.6-12.8 10.6-14.1 7.8-34.2-6.4-44.8l-111.4-83.5c-13.8-10.3-29.1-18.4-45.4-23.8l-63.7-21.2-26.1-52.1C244.7 2 225.5-4.4 209.7 3.5c-15.8 7.9-22.2 27.1-14.3 42.9l29.1 58.1c5.7 11.4 15.6 19.9 27.7 24l16.4 5.5-41.2 20.6c-21.8 10.9-35.4 32.8-35.4 57.2v53.1l-74.1 24.7c-16.8 5.6-25.8 23.7-20.2 40.5 1.7 5.2 4.9 9.4 8.7 12.9l-38.7-14.1c-9.7-3.5-17.4-10.6-21.8-20-5.6-12-19.9-17.2-31.9-11.6s-17.2 19.9-11.6 31.9c9.8 21 27.1 36.9 48.9 44.8l364.8 132.7c9.7 3.5 19.7 5.3 29.7 5.3 12.5 0 24.9-2.7 36.5-8.2 12-5.6 17.2-19.9 11.6-31.9S474 454.7 462 460.3c-9.3 4.4-19.8 4.8-29.5 1.3l-90.8-33.1c8.7-4.1 15.6-11.8 17.8-21.9l21.9-102c3.9-18.2-3.2-37.2-18.1-48.4l-52-39 66-30.5 83.5 62.9zm-144.4 51.7l-19.7 92c-1.5 7.1-.1 13.9 2.8 20l-169.4-61.6c2.7-.2 5.4-.4 8-1.3l85-28.4c19.6-6.5 32.8-24.8 32.8-45.5V256l60.5 45.3z\"]\n};\nvar faSnowflake = {\n prefix: 'fas',\n iconName: 'snowflake',\n icon: [448, 512, [], \"f2dc\", \"M440.3 345.2l-33.8-19.5 26-7c8.2-2.2 13.1-10.7 10.9-18.9l-4-14.9c-2.2-8.2-10.7-13.1-18.9-10.9l-70.8 19-63.9-37 63.8-36.9 70.8 19c8.2 2.2 16.7-2.7 18.9-10.9l4-14.9c2.2-8.2-2.7-16.7-10.9-18.9l-26-7 33.8-19.5c7.4-4.3 9.9-13.7 5.7-21.1L430.4 119c-4.3-7.4-13.7-9.9-21.1-5.7l-33.8 19.5 7-26c2.2-8.2-2.7-16.7-10.9-18.9l-14.9-4c-8.2-2.2-16.7 2.7-18.9 10.9l-19 70.8-62.8 36.2v-77.5l53.7-53.7c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0L256 56.4V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v40.4l-19.7-19.7c-6.2-6.2-16.4-6.2-22.6 0L138.3 48c-6.3 6.2-6.3 16.4 0 22.6l53.7 53.7v77.5l-62.8-36.2-19-70.8c-2.2-8.2-10.7-13.1-18.9-10.9l-14.9 4c-8.2 2.2-13.1 10.7-10.9 18.9l7 26-33.8-19.5c-7.4-4.3-16.8-1.7-21.1 5.7L2.1 145.7c-4.3 7.4-1.7 16.8 5.7 21.1l33.8 19.5-26 7c-8.3 2.2-13.2 10.7-11 19l4 14.9c2.2 8.2 10.7 13.1 18.9 10.9l70.8-19 63.8 36.9-63.8 36.9-70.8-19c-8.2-2.2-16.7 2.7-18.9 10.9l-4 14.9c-2.2 8.2 2.7 16.7 10.9 18.9l26 7-33.8 19.6c-7.4 4.3-9.9 13.7-5.7 21.1l15.5 26.8c4.3 7.4 13.7 9.9 21.1 5.7l33.8-19.5-7 26c-2.2 8.2 2.7 16.7 10.9 18.9l14.9 4c8.2 2.2 16.7-2.7 18.9-10.9l19-70.8 62.8-36.2v77.5l-53.7 53.7c-6.3 6.2-6.3 16.4 0 22.6l11.3 11.3c6.2 6.2 16.4 6.2 22.6 0l19.7-19.7V496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-40.4l19.7 19.7c6.2 6.2 16.4 6.2 22.6 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6L256 387.7v-77.5l62.8 36.2 19 70.8c2.2 8.2 10.7 13.1 18.9 10.9l14.9-4c8.2-2.2 13.1-10.7 10.9-18.9l-7-26 33.8 19.5c7.4 4.3 16.8 1.7 21.1-5.7l15.5-26.8c4.3-7.3 1.8-16.8-5.6-21z\"]\n};\nvar faSnowman = {\n prefix: 'fas',\n iconName: 'snowman',\n icon: [512, 512, [], \"f7d0\", \"M510.9 152.3l-5.9-14.5c-3.3-8-12.6-11.9-20.8-8.7L456 140.6v-29c0-8.6-7.2-15.6-16-15.6h-16c-8.8 0-16 7-16 15.6v46.9c0 .5.3 1 .3 1.5l-56.4 23c-5.9-10-13.3-18.9-22-26.6 13.6-16.6 22-37.4 22-60.5 0-53-43-96-96-96s-96 43-96 96c0 23.1 8.5 43.9 22 60.5-8.7 7.7-16 16.6-22 26.6l-56.4-23c.1-.5.3-1 .3-1.5v-46.9C104 103 96.8 96 88 96H72c-8.8 0-16 7-16 15.6v29l-28.1-11.5c-8.2-3.2-17.5.7-20.8 8.7l-5.9 14.5c-3.3 8 .7 17.1 8.9 20.3l135.2 55.2c-.4 4-1.2 8-1.2 12.2 0 10.1 1.7 19.6 4.2 28.9C120.9 296.4 104 334.2 104 376c0 54 28.4 100.9 70.8 127.8 9.3 5.9 20.3 8.2 31.3 8.2h99.2c13.3 0 26.3-4.1 37.2-11.7 46.5-32.3 74.4-89.4 62.9-152.6-5.5-30.2-20.5-57.6-41.6-79 2.5-9.2 4.2-18.7 4.2-28.7 0-4.2-.8-8.1-1.2-12.2L502 172.6c8.1-3.1 12.1-12.2 8.9-20.3zM224 96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 272c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-88s-16-23.2-16-32 7.2-16 16-16 16 7.2 16 16-16 32-16 32zm32-56c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faSnowplow = {\n prefix: 'fas',\n iconName: 'snowplow',\n icon: [640, 512, [], \"f7d2\", \"M120 376c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm238.6 49.4c-14.5-14.5-22.6-34.1-22.6-54.6V269.2c0-20.5 8.1-40.1 22.6-54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.2-16.4-6.2-22.6 0l-36.7 36.7c-26.5 26.5-41.4 62.4-41.4 99.9V288h-64v-50.9c0-8.7-1.8-17.2-5.2-25.2L364.5 29.1C356.9 11.4 339.6 0 320.3 0H176c-26.5 0-48 21.5-48 48v112h-16c-26.5 0-48 21.5-48 48v91.2C26.3 317.2 0 355.4 0 400c0 61.9 50.1 112 112 112h256c61.9 0 112-50.1 112-112 0-17.3-4.2-33.4-11.2-48H512v18.7c0 37.5 14.9 73.4 41.4 99.9l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7zM192 64h117.8l68.6 160H256l-64-64V64zm176 384H112c-26.5 0-48-21.5-48-48s21.5-48 48-48h256c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faSoap = {\n prefix: 'fas',\n iconName: 'soap',\n icon: [512, 512, [], \"e06e\", \"M416,192a95.42,95.42,0,0,1-30.94,70.21A95.8,95.8,0,0,1,352,448H160a96,96,0,0,1,0-192h88.91A95.3,95.3,0,0,1,224,192H96A96,96,0,0,0,0,288V416a96,96,0,0,0,96,96H416a96,96,0,0,0,96-96V288A96,96,0,0,0,416,192Zm-96,64a64,64,0,1,0-64-64A64,64,0,0,0,320,256ZM208,96a48,48,0,1,0-48-48A48,48,0,0,0,208,96ZM384,64a32,32,0,1,0-32-32A32,32,0,0,0,384,64ZM160,288a64,64,0,0,0,0,128H352a64,64,0,0,0,0-128Z\"]\n};\nvar faSocks = {\n prefix: 'fas',\n iconName: 'socks',\n icon: [512, 512, [], \"f696\", \"M214.66 311.01L288 256V96H128v176l-86.65 64.61c-39.4 29.56-53.86 84.42-29.21 127.06C30.39 495.25 63.27 512 96.08 512c20.03 0 40.25-6.25 57.52-19.2l21.86-16.39c-29.85-55.38-13.54-125.84 39.2-165.4zM288 32c0-11.05 3.07-21.3 8.02-30.38C293.4.92 290.85 0 288 0H160c-17.67 0-32 14.33-32 32v32h160V32zM480 0H352c-17.67 0-32 14.33-32 32v32h192V32c0-17.67-14.33-32-32-32zM320 272l-86.13 64.61c-39.4 29.56-53.86 84.42-29.21 127.06 18.25 31.58 50.61 48.33 83.42 48.33 20.03 0 40.25-6.25 57.52-19.2l115.2-86.4A127.997 127.997 0 0 0 512 304V96H320v176z\"]\n};\nvar faSolarPanel = {\n prefix: 'fas',\n iconName: 'solar-panel',\n icon: [640, 512, [], \"f5ba\", \"M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z\"]\n};\nvar faSort = {\n prefix: 'fas',\n iconName: 'sort',\n icon: [320, 512, [], \"f0dc\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z\"]\n};\nvar faSortAlphaDown = {\n prefix: 'fas',\n iconName: 'sort-alpha-down',\n icon: [448, 512, [], \"f15d\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm240-64H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaDownAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-down-alt',\n icon: [448, 512, [], \"f881\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm112-128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAlphaUp = {\n prefix: 'fas',\n iconName: 'sort-alpha-up',\n icon: [448, 512, [], \"f15e\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm400 128H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaUpAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-up-alt',\n icon: [448, 512, [], \"f882\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm272 64h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAmountDown = {\n prefix: 'fas',\n iconName: 'sort-amount-down',\n icon: [512, 512, [], \"f160\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-128-64h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm256-192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountDownAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-down-alt',\n icon: [512, 512, [], \"f884\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm-64 0h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortAmountUp = {\n prefix: 'fas',\n iconName: 'sort-amount-up',\n icon: [512, 512, [], \"f161\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.77 160 16 160zm416 0H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountUpAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-up-alt',\n icon: [512, 512, [], \"f885\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.39-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160z\"]\n};\nvar faSortDown = {\n prefix: 'fas',\n iconName: 'sort-down',\n icon: [320, 512, [], \"f0dd\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z\"]\n};\nvar faSortNumericDown = {\n prefix: 'fas',\n iconName: 'sort-numeric-down',\n icon: [448, 512, [], \"f162\", \"M304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zm26.15 162.91a79 79 0 0 0-55 54.17c-14.25 51.05 21.21 97.77 68.85 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zm-176-4h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortNumericDownAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-down-alt',\n icon: [448, 512, [], \"f886\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm224 64h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortNumericUp = {\n prefix: 'fas',\n iconName: 'sort-numeric-up',\n icon: [448, 512, [], \"f163\", \"M330.17 258.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zM304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zM107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31z\"]\n};\nvar faSortNumericUpAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-up-alt',\n icon: [448, 512, [], \"f887\", \"M107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31zM400 416h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortUp = {\n prefix: 'fas',\n iconName: 'sort-up',\n icon: [320, 512, [], \"f0de\", \"M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z\"]\n};\nvar faSpa = {\n prefix: 'fas',\n iconName: 'spa',\n icon: [576, 512, [], \"f5bb\", \"M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z\"]\n};\nvar faSpaceShuttle = {\n prefix: 'fas',\n iconName: 'space-shuttle',\n icon: [640, 512, [], \"f197\", \"M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z\"]\n};\nvar faSpellCheck = {\n prefix: 'fas',\n iconName: 'spell-check',\n icon: [576, 512, [], \"f891\", \"M272 256h91.36c43.2 0 82-32.2 84.51-75.34a79.82 79.82 0 0 0-25.26-63.07 79.81 79.81 0 0 0 9.06-44.91C427.9 30.57 389.3 0 347 0h-75a16 16 0 0 0-16 16v224a16 16 0 0 0 16 16zm40-200h40a24 24 0 0 1 0 48h-40zm0 96h56a24 24 0 0 1 0 48h-56zM155.12 22.25A32 32 0 0 0 124.64 0H99.36a32 32 0 0 0-30.48 22.25L.59 235.73A16 16 0 0 0 16 256h24.93a16 16 0 0 0 15.42-11.73L68.29 208h87.42l11.94 36.27A16 16 0 0 0 183.07 256H208a16 16 0 0 0 15.42-20.27zM89.37 144L112 75.3l22.63 68.7zm482 132.48l-45.21-45.3a15.88 15.88 0 0 0-22.59 0l-151.5 151.5-55.41-55.5a15.88 15.88 0 0 0-22.59 0l-45.3 45.3a16 16 0 0 0 0 22.59l112 112.21a15.89 15.89 0 0 0 22.6 0l208-208.21a16 16 0 0 0-.02-22.59z\"]\n};\nvar faSpider = {\n prefix: 'fas',\n iconName: 'spider',\n icon: [576, 512, [], \"f717\", \"M151.17 167.35L177.1 176h4.67l5.22-26.12c.72-3.58 1.8-7.58 3.21-11.79l-20.29-40.58 23.8-71.39c2.79-8.38-1.73-17.44-10.12-20.24L168.42.82c-8.38-2.8-17.45 1.73-20.24 10.12l-25.89 77.68a32.04 32.04 0 0 0 1.73 24.43l27.15 54.3zm422.14 182.03l-52.75-79.12a32.002 32.002 0 0 0-26.62-14.25H416l68.99-24.36a32.03 32.03 0 0 0 16.51-12.61l53.6-80.41c4.9-7.35 2.91-17.29-4.44-22.19l-13.31-8.88c-7.35-4.9-17.29-2.91-22.19 4.44l-50.56 75.83L404.1 208H368l-10.37-51.85C355.44 145.18 340.26 96 288 96c-52.26 0-67.44 49.18-69.63 60.15L208 208h-36.1l-60.49-20.17L60.84 112c-4.9-7.35-14.83-9.34-22.19-4.44l-13.31 8.88c-7.35 4.9-9.34 14.83-4.44 22.19l53.6 80.41a32.03 32.03 0 0 0 16.51 12.61L160 256H82.06a32.02 32.02 0 0 0-26.63 14.25L2.69 349.38c-4.9 7.35-2.92 17.29 4.44 22.19l13.31 8.88c7.35 4.9 17.29 2.91 22.19-4.44l48-72h47.06l-60.83 97.33A31.988 31.988 0 0 0 72 418.3V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-73.11l74.08-118.53c-1.01 14.05-2.08 28.11-2.08 42.21C192 399.64 232.76 448 288 448s96-48.36 96-101.43c0-14.1-1.08-28.16-2.08-42.21L456 422.89V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-77.71c0-6-1.69-11.88-4.86-16.96L438.31 304h47.06l48 72c4.9 7.35 14.84 9.34 22.19 4.44l13.31-8.88c7.36-4.9 9.34-14.83 4.44-22.18zM406.09 97.51l-20.29 40.58c1.41 4.21 2.49 8.21 3.21 11.79l5.22 26.12h4.67l25.93-8.65 27.15-54.3a31.995 31.995 0 0 0 1.73-24.43l-25.89-77.68C425.03 2.56 415.96-1.98 407.58.82l-15.17 5.06c-8.38 2.8-12.91 11.86-10.12 20.24l23.8 71.39z\"]\n};\nvar faSpinner = {\n prefix: 'fas',\n iconName: 'spinner',\n icon: [512, 512, [], \"f110\", \"M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z\"]\n};\nvar faSplotch = {\n prefix: 'fas',\n iconName: 'splotch',\n icon: [512, 512, [], \"f5bc\", \"M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z\"]\n};\nvar faSprayCan = {\n prefix: 'fas',\n iconName: 'spray-can',\n icon: [512, 512, [], \"f5bd\", \"M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faSquare = {\n prefix: 'fas',\n iconName: 'square',\n icon: [448, 512, [], \"f0c8\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faSquareFull = {\n prefix: 'fas',\n iconName: 'square-full',\n icon: [512, 512, [], \"f45c\", \"M512 512H0V0h512v512z\"]\n};\nvar faSquareRootAlt = {\n prefix: 'fas',\n iconName: 'square-root-alt',\n icon: [576, 512, [], \"f698\", \"M571.31 251.31l-22.62-22.62c-6.25-6.25-16.38-6.25-22.63 0L480 274.75l-46.06-46.06c-6.25-6.25-16.38-6.25-22.63 0l-22.62 22.62c-6.25 6.25-6.25 16.38 0 22.63L434.75 320l-46.06 46.06c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L480 365.25l46.06 46.06c6.25 6.25 16.38 6.25 22.63 0l22.62-22.62c6.25-6.25 6.25-16.38 0-22.63L525.25 320l46.06-46.06c6.25-6.25 6.25-16.38 0-22.63zM552 0H307.65c-14.54 0-27.26 9.8-30.95 23.87l-84.79 322.8-58.41-106.1A32.008 32.008 0 0 0 105.47 224H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h43.62l88.88 163.73C168.99 503.5 186.3 512 204.94 512c17.27 0 44.44-9 54.28-41.48L357.03 96H552c13.25 0 24-10.75 24-24V24c0-13.26-10.75-24-24-24z\"]\n};\nvar faStamp = {\n prefix: 'fas',\n iconName: 'stamp',\n icon: [512, 512, [], \"f5bf\", \"M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z\"]\n};\nvar faStar = {\n prefix: 'fas',\n iconName: 'star',\n icon: [576, 512, [], \"f005\", \"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"]\n};\nvar faStarAndCrescent = {\n prefix: 'fas',\n iconName: 'star-and-crescent',\n icon: [512, 512, [], \"f699\", \"M340.47 466.36c-1.45 0-6.89.46-9.18.46-116.25 0-210.82-94.57-210.82-210.82S215.04 45.18 331.29 45.18c2.32 0 7.7.46 9.18.46 7.13 0 13.33-5.03 14.75-12.07 1.46-7.25-2.55-14.49-9.47-17.09C316.58 5.54 286.39 0 256 0 114.84 0 0 114.84 0 256s114.84 256 256 256c30.23 0 60.28-5.49 89.32-16.32 5.96-2.02 10.28-7.64 10.28-14.26 0-8.09-6.39-15.06-15.13-15.06zm162.99-252.5l-76.38-11.1-34.16-69.21c-1.83-3.7-5.38-5.55-8.93-5.55s-7.1 1.85-8.93 5.55l-34.16 69.21-76.38 11.1c-8.17 1.18-11.43 11.22-5.52 16.99l55.27 53.87-13.05 76.07c-1.11 6.44 4.01 11.66 9.81 11.66 1.53 0 3.11-.36 4.64-1.17L384 335.37l68.31 35.91c1.53.8 3.11 1.17 4.64 1.17 5.8 0 10.92-5.23 9.81-11.66l-13.05-76.07 55.27-53.87c5.91-5.77 2.65-15.81-5.52-16.99z\"]\n};\nvar faStarHalf = {\n prefix: 'fas',\n iconName: 'star-half',\n icon: [576, 512, [], \"f089\", \"M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z\"]\n};\nvar faStarHalfAlt = {\n prefix: 'fas',\n iconName: 'star-half-alt',\n icon: [536, 512, [], \"f5c0\", \"M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z\"]\n};\nvar faStarOfDavid = {\n prefix: 'fas',\n iconName: 'star-of-david',\n icon: [464, 512, [], \"f69a\", \"M405.68 256l53.21-89.39C473.3 142.4 455.48 112 426.88 112H319.96l-55.95-93.98C256.86 6.01 244.43 0 232 0s-24.86 6.01-32.01 18.02L144.04 112H37.11c-28.6 0-46.42 30.4-32.01 54.61L58.32 256 5.1 345.39C-9.31 369.6 8.51 400 37.11 400h106.93l55.95 93.98C207.14 505.99 219.57 512 232 512s24.86-6.01 32.01-18.02L319.96 400h106.93c28.6 0 46.42-30.4 32.01-54.61L405.68 256zm-12.78-88l-19.8 33.26L353.3 168h39.6zm-52.39 88l-52.39 88H175.88l-52.39-88 52.38-88h112.25l52.39 88zM232 73.72L254.79 112h-45.57L232 73.72zM71.1 168h39.6l-19.8 33.26L71.1 168zm0 176l19.8-33.26L110.7 344H71.1zM232 438.28L209.21 400h45.57L232 438.28zM353.29 344l19.8-33.26L392.9 344h-39.61z\"]\n};\nvar faStarOfLife = {\n prefix: 'fas',\n iconName: 'star-of-life',\n icon: [480, 512, [], \"f621\", \"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"]\n};\nvar faStepBackward = {\n prefix: 'fas',\n iconName: 'step-backward',\n icon: [448, 512, [], \"f048\", \"M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z\"]\n};\nvar faStepForward = {\n prefix: 'fas',\n iconName: 'step-forward',\n icon: [448, 512, [], \"f051\", \"M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z\"]\n};\nvar faStethoscope = {\n prefix: 'fas',\n iconName: 'stethoscope',\n icon: [512, 512, [], \"f0f1\", \"M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faStickyNote = {\n prefix: 'fas',\n iconName: 'sticky-note',\n icon: [448, 512, [], \"f249\", \"M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z\"]\n};\nvar faStop = {\n prefix: 'fas',\n iconName: 'stop',\n icon: [448, 512, [], \"f04d\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faStopCircle = {\n prefix: 'fas',\n iconName: 'stop-circle',\n icon: [512, 512, [], \"f28d\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faStopwatch = {\n prefix: 'fas',\n iconName: 'stopwatch',\n icon: [448, 512, [], \"f2f2\", \"M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faStopwatch20 = {\n prefix: 'fas',\n iconName: 'stopwatch-20',\n icon: [448, 512, [], \"e06f\", \"M398.5,190.91l.59-.61,26.59-26.58a16,16,0,0,0,0-22.63L403,118.41a16,16,0,0,0-22.63,0l-24.68,24.68A206.68,206.68,0,0,0,256,98.5V64h32a16,16,0,0,0,16-16V16A16,16,0,0,0,288,0H160a16.05,16.05,0,0,0-16,16V48a16.05,16.05,0,0,0,16,16h32V98.5A207.92,207.92,0,0,0,16.09,297.57C12.64,411.5,106.76,510.22,220.72,512,337.13,513.77,432,420,432,304A206,206,0,0,0,398.5,190.91ZM204.37,377.55a8.2,8.2,0,0,1,8.32,8.07v22.31a8.2,8.2,0,0,1-8.32,8.07H121.52a16.46,16.46,0,0,1-16.61-17.62c2.78-35.22,14.67-57.41,38.45-91.37,20.42-29.19,27.1-37.32,27.1-62.34,0-16.92-1.79-24.27-12.21-24.27-9.39,0-12.69,7.4-12.69,22.68v5.23a8.2,8.2,0,0,1-8.33,8.07h-24.9a8.2,8.2,0,0,1-8.33-8.07v-4.07c0-27.3,8.48-60.24,56.43-60.24,43,0,55.57,25.85,55.57,61,0,35.58-12.44,51.21-34.35,81.31-11.56,15-24.61,35.57-26.41,51.2ZM344,352.32c0,35.16-12.3,63.68-57.23,63.68C243.19,416,232,386.48,232,352.55V247.22c0-40.73,19.58-63.22,56.2-63.22C325,184,344,206.64,344,245.3ZM287.87,221.73c-9.41,0-13.23,7.5-13.23,20V357.68c0,13.11,3.59,20.59,13.23,20.59s13-8,13-21.27V241.06C300.89,229.79,297.88,221.73,287.87,221.73Z\"]\n};\nvar faStore = {\n prefix: 'fas',\n iconName: 'store',\n icon: [616, 512, [], \"f54e\", \"M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z\"]\n};\nvar faStoreAlt = {\n prefix: 'fas',\n iconName: 'store-alt',\n icon: [640, 512, [], \"f54f\", \"M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z\"]\n};\nvar faStoreAltSlash = {\n prefix: 'fas',\n iconName: 'store-alt-slash',\n icon: [640, 512, [], \"e070\", \"M17.89,123.62,5.51,142.2c-14.2,21.3,1,49.8,26.59,49.8h74.26ZM576,413.42V224H512V364L384,265V224H330.92l-41.4-32H608c25.5,0,40.7-28.5,26.59-49.8l-85.29-128A32.18,32.18,0,0,0,522.6,0H117.42A31.87,31.87,0,0,0,90.81,14.2l-10.66,16L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.81l19.64-25.26a16,16,0,0,0-2.81-22.45ZM320,384H128V224H64V480a32,32,0,0,0,32,32H352a32,32,0,0,0,32-32V406.59l-64-49.47Z\"]\n};\nvar faStoreSlash = {\n prefix: 'fas',\n iconName: 'store-slash',\n icon: [640, 512, [], \"e071\", \"M121.51,384V284.2a119.43,119.43,0,0,1-28,3.8,123.46,123.46,0,0,1-17.1-1.2,114.88,114.88,0,0,1-15.58-3.6V480c0,17.7,13.59,32,30.4,32H505.75L348.42,384Zm-28-128.09c25.1,0,47.29-10.72,64-27.24L24,120.05c-30.52,53.39-2.45,126.53,56.49,135A95.68,95.68,0,0,0,93.48,255.91ZM602.13,458.09,547.2,413.41V283.2a93.5,93.5,0,0,1-15.57,3.6,127.31,127.31,0,0,1-17.29,1.2,114.89,114.89,0,0,1-28-3.8v79.68L348.52,251.77a88.06,88.06,0,0,0,25.41,4.14c28.11,0,53-13,70.11-33.11,17.19,20.11,42.08,33.11,70.11,33.11a94.31,94.31,0,0,0,13-.91c59.66-8.41,88-82.8,56.06-136.4L521.55,15A30.1,30.1,0,0,0,495.81,0H112A30.11,30.11,0,0,0,86.27,15L76.88,30.78,43.19,3.38A14.68,14.68,0,0,0,21.86,6.19L3.2,31.45A16.58,16.58,0,0,0,5.87,53.91L564.81,508.63a14.69,14.69,0,0,0,21.33-2.82l18.66-25.26A16.58,16.58,0,0,0,602.13,458.09Z\"]\n};\nvar faStream = {\n prefix: 'fas',\n iconName: 'stream',\n icon: [512, 512, [], \"f550\", \"M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z\"]\n};\nvar faStreetView = {\n prefix: 'fas',\n iconName: 'street-view',\n icon: [512, 512, [], \"f21d\", \"M367.9 329.76c-4.62 5.3-9.78 10.1-15.9 13.65v22.94c66.52 9.34 112 28.05 112 49.65 0 30.93-93.12 56-208 56S48 446.93 48 416c0-21.6 45.48-40.3 112-49.65v-22.94c-6.12-3.55-11.28-8.35-15.9-13.65C58.87 345.34 0 378.05 0 416c0 53.02 114.62 96 256 96s256-42.98 256-96c0-37.95-58.87-70.66-144.1-86.24zM256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-64 192v96c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-96c17.67 0 32-14.33 32-32v-96c0-26.51-21.49-48-48-48h-11.8c-11.07 5.03-23.26 8-36.2 8s-25.13-2.97-36.2-8H208c-26.51 0-48 21.49-48 48v96c0 17.67 14.33 32 32 32z\"]\n};\nvar faStrikethrough = {\n prefix: 'fas',\n iconName: 'strikethrough',\n icon: [512, 512, [], \"f0cc\", \"M496 224H293.9l-87.17-26.83A43.55 43.55 0 0 1 219.55 112h66.79A49.89 49.89 0 0 1 331 139.58a16 16 0 0 0 21.46 7.15l42.94-21.47a16 16 0 0 0 7.16-21.46l-.53-1A128 128 0 0 0 287.51 32h-68a123.68 123.68 0 0 0-123 135.64c2 20.89 10.1 39.83 21.78 56.36H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-180.24 96A43 43 0 0 1 336 356.45 43.59 43.59 0 0 1 292.45 400h-66.79A49.89 49.89 0 0 1 181 372.42a16 16 0 0 0-21.46-7.15l-42.94 21.47a16 16 0 0 0-7.16 21.46l.53 1A128 128 0 0 0 224.49 480h68a123.68 123.68 0 0 0 123-135.64 114.25 114.25 0 0 0-5.34-24.36z\"]\n};\nvar faStroopwafel = {\n prefix: 'fas',\n iconName: 'stroopwafel',\n icon: [512, 512, [], \"f551\", \"M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z\"]\n};\nvar faSubscript = {\n prefix: 'fas',\n iconName: 'subscript',\n icon: [512, 512, [], \"f12c\", \"M496 448h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 352h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSubway = {\n prefix: 'fas',\n iconName: 'subway',\n icon: [448, 512, [], \"f239\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faSuitcase = {\n prefix: 'fas',\n iconName: 'suitcase',\n icon: [512, 512, [], \"f0f2\", \"M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z\"]\n};\nvar faSuitcaseRolling = {\n prefix: 'fas',\n iconName: 'suitcase-rolling',\n icon: [384, 512, [], \"f5c1\", \"M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z\"]\n};\nvar faSun = {\n prefix: 'fas',\n iconName: 'sun',\n icon: [512, 512, [], \"f185\", \"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z\"]\n};\nvar faSuperscript = {\n prefix: 'fas',\n iconName: 'superscript',\n icon: [512, 512, [], \"f12b\", \"M496 160h-16V16a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 64h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSurprise = {\n prefix: 'fas',\n iconName: 'surprise',\n icon: [496, 512, [], \"f5c2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faSwatchbook = {\n prefix: 'fas',\n iconName: 'swatchbook',\n icon: [512, 512, [], \"f5c3\", \"M434.66,167.71h0L344.5,77.36a31.83,31.83,0,0,0-45-.07h0l-.07.07L224,152.88V424L434.66,212.9A32,32,0,0,0,434.66,167.71ZM480,320H373.09L186.68,506.51c-2.06,2.07-4.5,3.58-6.68,5.49H480a32,32,0,0,0,32-32V352A32,32,0,0,0,480,320ZM192,32A32,32,0,0,0,160,0H32A32,32,0,0,0,0,32V416a96,96,0,0,0,192,0ZM96,440a24,24,0,1,1,24-24A24,24,0,0,1,96,440Zm32-184H64V192h64Zm0-128H64V64h64Z\"]\n};\nvar faSwimmer = {\n prefix: 'fas',\n iconName: 'swimmer',\n icon: [640, 512, [], \"f5c4\", \"M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z\"]\n};\nvar faSwimmingPool = {\n prefix: 'fas',\n iconName: 'swimming-pool',\n icon: [640, 512, [], \"f5c5\", \"M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z\"]\n};\nvar faSynagogue = {\n prefix: 'fas',\n iconName: 'synagogue',\n icon: [640, 512, [], \"f69b\", \"M70 196.51L6.67 268.29A26.643 26.643 0 0 0 0 285.93V512h128V239.58l-38-43.07c-5.31-6.01-14.69-6.01-20 0zm563.33 71.78L570 196.51c-5.31-6.02-14.69-6.02-20 0l-38 43.07V512h128V285.93c0-6.5-2.37-12.77-6.67-17.64zM339.99 7.01c-11.69-9.35-28.29-9.35-39.98 0l-128 102.4A32.005 32.005 0 0 0 160 134.4V512h96v-92.57c0-31.88 21.78-61.43 53.25-66.55C349.34 346.35 384 377.13 384 416v96h96V134.4c0-9.72-4.42-18.92-12.01-24.99l-128-102.4zm52.07 215.55c1.98 3.15-.29 7.24-4 7.24h-38.94L324 269.79c-1.85 2.95-6.15 2.95-8 0l-25.12-39.98h-38.94c-3.72 0-5.98-4.09-4-7.24l19.2-30.56-19.2-30.56c-1.98-3.15.29-7.24 4-7.24h38.94l25.12-40c1.85-2.95 6.15-2.95 8 0l25.12 39.98h38.95c3.71 0 5.98 4.09 4 7.24L372.87 192l19.19 30.56z\"]\n};\nvar faSync = {\n prefix: 'fas',\n iconName: 'sync',\n icon: [512, 512, [], \"f021\", \"M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z\"]\n};\nvar faSyncAlt = {\n prefix: 'fas',\n iconName: 'sync-alt',\n icon: [512, 512, [], \"f2f1\", \"M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z\"]\n};\nvar faSyringe = {\n prefix: 'fas',\n iconName: 'syringe',\n icon: [512, 512, [], \"f48e\", \"M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z\"]\n};\nvar faTable = {\n prefix: 'fas',\n iconName: 'table',\n icon: [512, 512, [], \"f0ce\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z\"]\n};\nvar faTableTennis = {\n prefix: 'fas',\n iconName: 'table-tennis',\n icon: [512, 512, [], \"f45d\", \"M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z\"]\n};\nvar faTablet = {\n prefix: 'fas',\n iconName: 'tablet',\n icon: [448, 512, [], \"f10a\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faTabletAlt = {\n prefix: 'fas',\n iconName: 'tablet-alt',\n icon: [448, 512, [], \"f3fa\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faTablets = {\n prefix: 'fas',\n iconName: 'tablets',\n icon: [640, 512, [], \"f490\", \"M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z\"]\n};\nvar faTachometerAlt = {\n prefix: 'fas',\n iconName: 'tachometer-alt',\n icon: [576, 512, [], \"f3fd\", \"M288 32C128.94 32 0 160.94 0 320c0 52.8 14.25 102.26 39.06 144.8 5.61 9.62 16.3 15.2 27.44 15.2h443c11.14 0 21.83-5.58 27.44-15.2C561.75 422.26 576 372.8 576 320c0-159.06-128.94-288-288-288zm0 64c14.71 0 26.58 10.13 30.32 23.65-1.11 2.26-2.64 4.23-3.45 6.67l-9.22 27.67c-5.13 3.49-10.97 6.01-17.64 6.01-17.67 0-32-14.33-32-32S270.33 96 288 96zM96 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm48-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm246.77-72.41l-61.33 184C343.13 347.33 352 364.54 352 384c0 11.72-3.38 22.55-8.88 32H232.88c-5.5-9.45-8.88-20.28-8.88-32 0-33.94 26.5-61.43 59.9-63.59l61.34-184.01c4.17-12.56 17.73-19.45 30.36-15.17 12.57 4.19 19.35 17.79 15.17 30.36zm14.66 57.2l15.52-46.55c3.47-1.29 7.13-2.23 11.05-2.23 17.67 0 32 14.33 32 32s-14.33 32-32 32c-11.38-.01-20.89-6.28-26.57-15.22zM480 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTag = {\n prefix: 'fas',\n iconName: 'tag',\n icon: [512, 512, [], \"f02b\", \"M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faTags = {\n prefix: 'fas',\n iconName: 'tags',\n icon: [640, 512, [], \"f02c\", \"M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z\"]\n};\nvar faTape = {\n prefix: 'fas',\n iconName: 'tape',\n icon: [640, 512, [], \"f4db\", \"M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z\"]\n};\nvar faTasks = {\n prefix: 'fas',\n iconName: 'tasks',\n icon: [512, 512, [], \"f0ae\", \"M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faTaxi = {\n prefix: 'fas',\n iconName: 'taxi',\n icon: [512, 512, [], \"f1ba\", \"M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTeeth = {\n prefix: 'fas',\n iconName: 'teeth',\n icon: [640, 512, [], \"f62e\", \"M544 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96zM160 368c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm128 128c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64z\"]\n};\nvar faTeethOpen = {\n prefix: 'fas',\n iconName: 'teeth-open',\n icon: [640, 512, [], \"f62f\", \"M544 0H96C42.98 0 0 42.98 0 96v64c0 35.35 28.66 64 64 64h512c35.34 0 64-28.65 64-64V96c0-53.02-42.98-96-96-96zM160 176c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm128 0c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm0 144H64c-35.34 0-64 28.65-64 64v32c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96v-32c0-35.35-28.66-64-64-64zm-416 80c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32zm144-8c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm144 0c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm128 8c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32z\"]\n};\nvar faTemperatureHigh = {\n prefix: 'fas',\n iconName: 'temperature-high',\n icon: [512, 512, [], \"f769\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTemperatureLow = {\n prefix: 'fas',\n iconName: 'temperature-low',\n icon: [512, 512, [], \"f76b\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V304c0-8.8-7.2-16-16-16s-16 7.2-16 16v18.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTenge = {\n prefix: 'fas',\n iconName: 'tenge',\n icon: [384, 512, [], \"f7d7\", \"M372 160H12c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h140v228c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V240h140c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12zm0-128H12C5.4 32 0 37.4 0 44v56c0 6.6 5.4 12 12 12h360c6.6 0 12-5.4 12-12V44c0-6.6-5.4-12-12-12z\"]\n};\nvar faTerminal = {\n prefix: 'fas',\n iconName: 'terminal',\n icon: [640, 512, [], \"f120\", \"M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z\"]\n};\nvar faTextHeight = {\n prefix: 'fas',\n iconName: 'text-height',\n icon: [576, 512, [], \"f034\", \"M304 32H16A16 16 0 0 0 0 48v96a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32h56v304H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-40V112h56v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm256 336h-48V144h48c14.31 0 21.33-17.31 11.31-27.31l-80-80a16 16 0 0 0-22.62 0l-80 80C379.36 126 384.36 144 400 144h48v224h-48c-14.31 0-21.32 17.31-11.31 27.31l80 80a16 16 0 0 0 22.62 0l80-80C580.64 386 575.64 368 560 368z\"]\n};\nvar faTextWidth = {\n prefix: 'fas',\n iconName: 'text-width',\n icon: [448, 512, [], \"f035\", \"M432 32H16A16 16 0 0 0 0 48v80a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h120v112h-24a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-24V112h120v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm-68.69 260.69C354 283.36 336 288.36 336 304v48H112v-48c0-14.31-17.31-21.32-27.31-11.31l-80 80a16 16 0 0 0 0 22.62l80 80C94 484.64 112 479.64 112 464v-48h224v48c0 14.31 17.31 21.33 27.31 11.31l80-80a16 16 0 0 0 0-22.62z\"]\n};\nvar faTh = {\n prefix: 'fas',\n iconName: 'th',\n icon: [512, 512, [], \"f00a\", \"M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z\"]\n};\nvar faThLarge = {\n prefix: 'fas',\n iconName: 'th-large',\n icon: [512, 512, [], \"f009\", \"M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z\"]\n};\nvar faThList = {\n prefix: 'fas',\n iconName: 'th-list',\n icon: [512, 512, [], \"f00b\", \"M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z\"]\n};\nvar faTheaterMasks = {\n prefix: 'fas',\n iconName: 'theater-masks',\n icon: [640, 512, [], \"f630\", \"M206.86 245.15c-35.88 10.45-59.95 41.2-57.53 74.1 11.4-12.72 28.81-23.7 49.9-30.92l7.63-43.18zM95.81 295L64.08 115.49c-.29-1.62.28-2.62.24-2.65 57.76-32.06 123.12-49.01 189.01-49.01 1.61 0 3.23.17 4.85.19 13.95-13.47 31.73-22.83 51.59-26 18.89-3.02 38.05-4.55 57.18-5.32-9.99-13.95-24.48-24.23-41.77-27C301.27 1.89 277.24 0 253.32 0 176.66 0 101.02 19.42 33.2 57.06 9.03 70.48-3.92 98.48 1.05 126.58l31.73 179.51c14.23 80.52 136.33 142.08 204.45 142.08 3.59 0 6.75-.46 10.01-.8-13.52-17.08-28.94-40.48-39.5-67.58-47.61-12.98-106.06-51.62-111.93-84.79zm97.55-137.46c-.73-4.12-2.23-7.87-4.07-11.4-8.25 8.91-20.67 15.75-35.32 18.32-14.65 2.58-28.67.4-39.48-5.17-.52 3.94-.64 7.98.09 12.1 3.84 21.7 24.58 36.19 46.34 32.37 21.75-3.82 36.28-24.52 32.44-46.22zM606.8 120.9c-88.98-49.38-191.43-67.41-291.98-51.35-27.31 4.36-49.08 26.26-54.04 54.36l-31.73 179.51c-15.39 87.05 95.28 196.27 158.31 207.35 63.03 11.09 204.47-53.79 219.86-140.84l31.73-179.51c4.97-28.11-7.98-56.11-32.15-69.52zm-273.24 96.8c3.84-21.7 24.58-36.19 46.34-32.36 21.76 3.83 36.28 24.52 32.45 46.22-.73 4.12-2.23 7.87-4.07 11.4-8.25-8.91-20.67-15.75-35.32-18.32-14.65-2.58-28.67-.4-39.48 5.17-.53-3.95-.65-7.99.08-12.11zm70.47 198.76c-55.68-9.79-93.52-59.27-89.04-112.9 20.6 25.54 56.21 46.17 99.49 53.78 43.28 7.61 83.82.37 111.93-16.6-14.18 51.94-66.71 85.51-122.38 75.72zm130.3-151.34c-8.25-8.91-20.68-15.75-35.33-18.32-14.65-2.58-28.67-.4-39.48 5.17-.52-3.94-.64-7.98.09-12.1 3.84-21.7 24.58-36.19 46.34-32.37 21.75 3.83 36.28 24.52 32.45 46.22-.73 4.13-2.23 7.88-4.07 11.4z\"]\n};\nvar faThermometer = {\n prefix: 'fas',\n iconName: 'thermometer',\n icon: [512, 512, [], \"f491\", \"M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z\"]\n};\nvar faThermometerEmpty = {\n prefix: 'fas',\n iconName: 'thermometer-empty',\n icon: [256, 512, [], \"f2cb\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerFull = {\n prefix: 'fas',\n iconName: 'thermometer-full',\n icon: [256, 512, [], \"f2c7\", \"M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z\"]\n};\nvar faThermometerHalf = {\n prefix: 'fas',\n iconName: 'thermometer-half',\n icon: [256, 512, [], \"f2c9\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerQuarter = {\n prefix: 'fas',\n iconName: 'thermometer-quarter',\n icon: [256, 512, [], \"f2ca\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerThreeQuarters = {\n prefix: 'fas',\n iconName: 'thermometer-three-quarters',\n icon: [256, 512, [], \"f2c8\", \"M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThumbsDown = {\n prefix: 'fas',\n iconName: 'thumbs-down',\n icon: [512, 512, [], \"f165\", \"M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z\"]\n};\nvar faThumbsUp = {\n prefix: 'fas',\n iconName: 'thumbs-up',\n icon: [512, 512, [], \"f164\", \"M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z\"]\n};\nvar faThumbtack = {\n prefix: 'fas',\n iconName: 'thumbtack',\n icon: [384, 512, [], \"f08d\", \"M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z\"]\n};\nvar faTicketAlt = {\n prefix: 'fas',\n iconName: 'ticket-alt',\n icon: [576, 512, [], \"f3ff\", \"M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z\"]\n};\nvar faTimes = {\n prefix: 'fas',\n iconName: 'times',\n icon: [352, 512, [], \"f00d\", \"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\"]\n};\nvar faTimesCircle = {\n prefix: 'fas',\n iconName: 'times-circle',\n icon: [512, 512, [], \"f057\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z\"]\n};\nvar faTint = {\n prefix: 'fas',\n iconName: 'tint',\n icon: [352, 512, [], \"f043\", \"M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faTintSlash = {\n prefix: 'fas',\n iconName: 'tint-slash',\n icon: [640, 512, [], \"f5c7\", \"M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z\"]\n};\nvar faTired = {\n prefix: 'fas',\n iconName: 'tired',\n icon: [496, 512, [], \"f5c8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z\"]\n};\nvar faToggleOff = {\n prefix: 'fas',\n iconName: 'toggle-off',\n icon: [576, 512, [], \"f204\", \"M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z\"]\n};\nvar faToggleOn = {\n prefix: 'fas',\n iconName: 'toggle-on',\n icon: [576, 512, [], \"f205\", \"M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z\"]\n};\nvar faToilet = {\n prefix: 'fas',\n iconName: 'toilet',\n icon: [384, 512, [], \"f7d8\", \"M368 48c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v16c0 8.8 7.2 16 16 16h16v156.7C11.8 214.8 0 226.9 0 240c0 67.2 34.6 126.2 86.8 160.5l-21.4 70.2C59.1 491.2 74.5 512 96 512h192c21.5 0 36.9-20.8 30.6-41.3l-21.4-70.2C349.4 366.2 384 307.2 384 240c0-13.1-11.8-25.2-32-35.3V48h16zM80 72c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H88c-4.4 0-8-3.6-8-8V72zm112 200c-77.1 0-139.6-14.3-139.6-32s62.5-32 139.6-32 139.6 14.3 139.6 32-62.5 32-139.6 32z\"]\n};\nvar faToiletPaper = {\n prefix: 'fas',\n iconName: 'toilet-paper',\n icon: [576, 512, [], \"f71e\", \"M128 0C74.98 0 32 85.96 32 192v172.07c0 41.12-9.8 62.77-31.17 126.87C-2.62 501.3 5.09 512 16.01 512h280.92c13.77 0 26-8.81 30.36-21.88 12.83-38.48 24.71-72.4 24.71-126.05V192c0-83.6 23.67-153.52 60.44-192H128zM96 224c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zM480 0c-53.02 0-96 85.96-96 192s42.98 192 96 192 96-85.96 96-192S533.02 0 480 0zm0 256c-17.67 0-32-28.65-32-64s14.33-64 32-64 32 28.65 32 64-14.33 64-32 64z\"]\n};\nvar faToiletPaperSlash = {\n prefix: 'fas',\n iconName: 'toilet-paper-slash',\n icon: [640, 512, [], \"e072\", \"M64,192V364.13c0,41.12-9.75,62.75-31.12,126.87A16,16,0,0,0,48,512H328.86a31.87,31.87,0,0,0,30.38-21.87c9.31-27.83,18-53.35,22.18-85.55l-316-244.25C64.53,170.66,64,181.19,64,192ZM633.82,458.09l-102-78.81C575.28,360.91,608,284.32,608,192,608,86,565,0,512,0s-96,86-96,192c0,42,7,80.4,18.43,112L384,265V192c0-83.62,23.63-153.5,60.5-192H160c-23.33,0-44.63,16.83-61.26,44.53L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09ZM512,256c-17.63,0-32-28.62-32-64s14.37-64,32-64,32,28.63,32,64S529.62,256,512,256Z\"]\n};\nvar faToolbox = {\n prefix: 'fas',\n iconName: 'toolbox',\n icon: [512, 512, [], \"f552\", \"M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z\"]\n};\nvar faTools = {\n prefix: 'fas',\n iconName: 'tools',\n icon: [512, 512, [], \"f7d9\", \"M501.1 395.7L384 278.6c-23.1-23.1-57.6-27.6-85.4-13.9L192 158.1V96L64 0 0 64l96 128h62.1l106.6 106.6c-13.6 27.8-9.2 62.3 13.9 85.4l117.1 117.1c14.6 14.6 38.2 14.6 52.7 0l52.7-52.7c14.5-14.6 14.5-38.2 0-52.7zM331.7 225c28.3 0 54.9 11 74.9 31l19.4 19.4c15.8-6.9 30.8-16.5 43.8-29.5 37.1-37.1 49.7-89.3 37.9-136.7-2.2-9-13.5-12.1-20.1-5.5l-74.4 74.4-67.9-11.3L334 98.9l74.4-74.4c6.6-6.6 3.4-17.9-5.7-20.2-47.4-11.7-99.6.9-136.6 37.9-28.5 28.5-41.9 66.1-41.2 103.6l82.1 82.1c8.1-1.9 16.5-2.9 24.7-2.9zm-103.9 82l-56.7-56.7L18.7 402.8c-25 25-25 65.5 0 90.5s65.5 25 90.5 0l123.6-123.6c-7.6-19.9-9.9-41.6-5-62.7zM64 472c-13.2 0-24-10.8-24-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13.2-10.7 24-24 24z\"]\n};\nvar faTooth = {\n prefix: 'fas',\n iconName: 'tooth',\n icon: [448, 512, [], \"f5c9\", \"M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z\"]\n};\nvar faTorah = {\n prefix: 'fas',\n iconName: 'torah',\n icon: [640, 512, [], \"f6a0\", \"M320.05 366.48l17.72-29.64h-35.46zm99.21-166H382.4l18.46 30.82zM48 0C21.49 0 0 14.33 0 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32C96 14.33 74.51 0 48 0zm172.74 311.5h36.85l-18.46-30.82zm161.71 0h36.86l-18.45-30.8zM128 464h384V48H128zm66.77-278.13a21.22 21.22 0 0 1 18.48-10.71h59.45l29.13-48.71a21.13 21.13 0 0 1 18.22-10.37A20.76 20.76 0 0 1 338 126.29l29.25 48.86h59.52a21.12 21.12 0 0 1 18.1 32L415.63 256 445 305a20.69 20.69 0 0 1 .24 21.12 21.25 21.25 0 0 1-18.48 10.72h-59.47l-29.13 48.7a21.13 21.13 0 0 1-18.16 10.4 20.79 20.79 0 0 1-18-10.22l-29.25-48.88h-59.5a21.11 21.11 0 0 1-18.1-32L224.36 256 195 207a20.7 20.7 0 0 1-.23-21.13zM592 0c-26.51 0-48 14.33-48 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32c0-17.67-21.49-32-48-32zM320 145.53l-17.78 29.62h35.46zm-62.45 55h-36.81l18.44 30.8zm29.58 111h65.79L386.09 256l-33.23-55.52h-65.79L253.9 256z\"]\n};\nvar faToriiGate = {\n prefix: 'fas',\n iconName: 'torii-gate',\n icon: [512, 512, [], \"f6a1\", \"M376.45 32h-240.9A303.17 303.17 0 0 1 0 0v96c0 17.67 14.33 32 32 32h32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h256v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h48c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-48v-64h32c17.67 0 32-14.33 32-32V0a303.17 303.17 0 0 1-135.55 32zM128 128h96v64h-96v-64zm256 64h-96v-64h96v64z\"]\n};\nvar faTractor = {\n prefix: 'fas',\n iconName: 'tractor',\n icon: [640, 512, [], \"f722\", \"M528 336c-48.6 0-88 39.4-88 88s39.4 88 88 88 88-39.4 88-88-39.4-88-88-88zm0 112c-13.23 0-24-10.77-24-24s10.77-24 24-24 24 10.77 24 24-10.77 24-24 24zm80-288h-64v-40.2c0-14.12 4.7-27.76 13.15-38.84 4.42-5.8 3.55-14.06-1.32-19.49L534.2 37.3c-6.66-7.45-18.32-6.92-24.7.78C490.58 60.9 480 89.81 480 119.8V160H377.67L321.58 29.14A47.914 47.914 0 0 0 277.45 0H144c-26.47 0-48 21.53-48 48v146.52c-8.63-6.73-20.96-6.46-28.89 1.47L36 227.1c-8.59 8.59-8.59 22.52 0 31.11l5.06 5.06c-4.99 9.26-8.96 18.82-11.91 28.72H22c-12.15 0-22 9.85-22 22v44c0 12.15 9.85 22 22 22h7.14c2.96 9.91 6.92 19.46 11.91 28.73l-5.06 5.06c-8.59 8.59-8.59 22.52 0 31.11L67.1 476c8.59 8.59 22.52 8.59 31.11 0l5.06-5.06c9.26 4.99 18.82 8.96 28.72 11.91V490c0 12.15 9.85 22 22 22h44c12.15 0 22-9.85 22-22v-7.14c9.9-2.95 19.46-6.92 28.72-11.91l5.06 5.06c8.59 8.59 22.52 8.59 31.11 0l31.11-31.11c8.59-8.59 8.59-22.52 0-31.11l-5.06-5.06c4.99-9.26 8.96-18.82 11.91-28.72H330c12.15 0 22-9.85 22-22v-6h80.54c21.91-28.99 56.32-48 95.46-48 18.64 0 36.07 4.61 51.8 12.2l50.82-50.82c6-6 9.37-14.14 9.37-22.63V192c.01-17.67-14.32-32-31.99-32zM176 416c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm22-256h-38V64h106.89l41.15 96H198z\"]\n};\nvar faTrademark = {\n prefix: 'fas',\n iconName: 'trademark',\n icon: [640, 512, [], \"f25c\", \"M260.6 96H12c-6.6 0-12 5.4-12 12v43.1c0 6.6 5.4 12 12 12h85.1V404c0 6.6 5.4 12 12 12h54.3c6.6 0 12-5.4 12-12V163.1h85.1c6.6 0 12-5.4 12-12V108c.1-6.6-5.3-12-11.9-12zM640 403l-24-296c-.5-6.2-5.7-11-12-11h-65.4c-5.1 0-9.7 3.3-11.3 8.1l-43.8 127.1c-7.2 20.6-16.1 52.8-16.1 52.8h-.9s-8.9-32.2-16.1-52.8l-43.8-127.1c-1.7-4.8-6.2-8.1-11.3-8.1h-65.4c-6.2 0-11.4 4.8-12 11l-24.4 296c-.6 7 4.9 13 12 13H360c6.3 0 11.5-4.9 12-11.2l9.1-132.9c1.8-24.2 0-53.7 0-53.7h.9s10.7 33.6 17.9 53.7l30.7 84.7c1.7 4.7 6.2 7.9 11.3 7.9h50.3c5.1 0 9.6-3.2 11.3-7.9l30.7-84.7c7.2-20.1 17.9-53.7 17.9-53.7h.9s-1.8 29.5 0 53.7l9.1 132.9c.4 6.3 5.7 11.2 12 11.2H628c7 0 12.5-6 12-13z\"]\n};\nvar faTrafficLight = {\n prefix: 'fas',\n iconName: 'traffic-light',\n icon: [384, 512, [], \"f637\", \"M384 192h-64v-37.88c37.2-13.22 64-48.38 64-90.12h-64V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v32H0c0 41.74 26.8 76.9 64 90.12V192H0c0 41.74 26.8 76.9 64 90.12V320H0c0 42.84 28.25 78.69 66.99 91.05C79.42 468.72 130.6 512 192 512s112.58-43.28 125.01-100.95C355.75 398.69 384 362.84 384 320h-64v-37.88c37.2-13.22 64-48.38 64-90.12zM192 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTrailer = {\n prefix: 'fas',\n iconName: 'trailer',\n icon: [640, 512, [], \"e041\", \"M624,320H544V80a16,16,0,0,0-16-16H16A16,16,0,0,0,0,80V368a16,16,0,0,0,16,16H65.61c7.83-54.21,54-96,110.39-96s102.56,41.79,110.39,96H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM96,243.68a176.29,176.29,0,0,0-32,20.71V136a8,8,0,0,1,8-8H88a8,8,0,0,1,8,8Zm96-18.54c-5.31-.49-10.57-1.14-16-1.14s-10.69.65-16,1.14V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,39.25a176.29,176.29,0,0,0-32-20.71V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8ZM384,320H352V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,0H448V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm-304,0a80,80,0,1,0,80,80A80,80,0,0,0,176,320Zm0,112a32,32,0,1,1,32-32A32,32,0,0,1,176,432Z\"]\n};\nvar faTrain = {\n prefix: 'fas',\n iconName: 'train',\n icon: [448, 512, [], \"f238\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z\"]\n};\nvar faTram = {\n prefix: 'fas',\n iconName: 'tram',\n icon: [512, 512, [], \"f7da\", \"M288 64c17.7 0 32-14.3 32-32S305.7 0 288 0s-32 14.3-32 32 14.3 32 32 32zm223.5-12.1c-2.3-8.6-11-13.6-19.6-11.3l-480 128c-8.5 2.3-13.6 11-11.3 19.6C2.5 195.3 8.9 200 16 200c1.4 0 2.8-.2 4.1-.5L240 140.8V224H64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H272v-91.7l228.1-60.8c8.6-2.3 13.6-11.1 11.4-19.6zM176 384H80v-96h96v96zm160-96h96v96h-96v-96zm-32 0v96h-96v-96h96zM192 96c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faTransgender = {\n prefix: 'fas',\n iconName: 'transgender',\n icon: [384, 512, [], \"f224\", \"M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTransgenderAlt = {\n prefix: 'fas',\n iconName: 'transgender-alt',\n icon: [480, 512, [], \"f225\", \"M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTrash = {\n prefix: 'fas',\n iconName: 'trash',\n icon: [448, 512, [], \"f1f8\", \"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z\"]\n};\nvar faTrashAlt = {\n prefix: 'fas',\n iconName: 'trash-alt',\n icon: [448, 512, [], \"f2ed\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestore = {\n prefix: 'fas',\n iconName: 'trash-restore',\n icon: [448, 512, [], \"f829\", \"M53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32zm70.11-175.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestoreAlt = {\n prefix: 'fas',\n iconName: 'trash-restore-alt',\n icon: [448, 512, [], \"f82a\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm91.31-172.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTree = {\n prefix: 'fas',\n iconName: 'tree',\n icon: [384, 512, [], \"f1bb\", \"M378.31 378.49L298.42 288h30.63c9.01 0 16.98-5 20.78-13.06 3.8-8.04 2.55-17.26-3.28-24.05L268.42 160h28.89c9.1 0 17.3-5.35 20.86-13.61 3.52-8.13 1.86-17.59-4.24-24.08L203.66 4.83c-6.03-6.45-17.28-6.45-23.32 0L70.06 122.31c-6.1 6.49-7.75 15.95-4.24 24.08C69.38 154.65 77.59 160 86.69 160h28.89l-78.14 90.91c-5.81 6.78-7.06 15.99-3.27 24.04C37.97 283 45.93 288 54.95 288h30.63L5.69 378.49c-6 6.79-7.36 16.09-3.56 24.26 3.75 8.05 12 13.25 21.01 13.25H160v24.45l-30.29 48.4c-5.32 10.64 2.42 23.16 14.31 23.16h95.96c11.89 0 19.63-12.52 14.31-23.16L224 440.45V416h136.86c9.01 0 17.26-5.2 21.01-13.25 3.8-8.17 2.44-17.47-3.56-24.26z\"]\n};\nvar faTrophy = {\n prefix: 'fas',\n iconName: 'trophy',\n icon: [576, 512, [], \"f091\", \"M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z\"]\n};\nvar faTruck = {\n prefix: 'fas',\n iconName: 'truck',\n icon: [640, 512, [], \"f0d1\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faTruckLoading = {\n prefix: 'fas',\n iconName: 'truck-loading',\n icon: [640, 512, [], \"f4de\", \"M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faTruckMonster = {\n prefix: 'fas',\n iconName: 'truck-monster',\n icon: [640, 512, [], \"f63b\", \"M624 224h-16v-64c0-17.67-14.33-32-32-32h-73.6L419.22 24.02A64.025 64.025 0 0 0 369.24 0H256c-17.67 0-32 14.33-32 32v96H48c-8.84 0-16 7.16-16 16v80H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16.72c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64h65.45c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-336-96V64h81.24l51.2 64H288zm304 224h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 512 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67A110.85 110.85 0 0 0 373.2 352H368c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32c-.02-8.84-7.18-16-16.02-16zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-208-80h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 192 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0L58.18 304.8c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67a110.85 110.85 0 0 0-8.65 20.89H48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32C288 359.16 280.84 352 272 352zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTruckMoving = {\n prefix: 'fas',\n iconName: 'truck-moving',\n icon: [640, 512, [], \"f4df\", \"M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z\"]\n};\nvar faTruckPickup = {\n prefix: 'fas',\n iconName: 'truck-pickup',\n icon: [640, 512, [], \"f63c\", \"M624 288h-16v-64c0-17.67-14.33-32-32-32h-48L419.22 56.02A64.025 64.025 0 0 0 369.24 32H256c-17.67 0-32 14.33-32 32v128H64c-17.67 0-32 14.33-32 32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h49.61c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16h67.23c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM288 96h81.24l76.8 96H288V96zM176 416c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm288 0c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faTshirt = {\n prefix: 'fas',\n iconName: 'tshirt',\n icon: [640, 512, [], \"f553\", \"M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z\"]\n};\nvar faTty = {\n prefix: 'fas',\n iconName: 'tty',\n icon: [512, 512, [], \"f1e4\", \"M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faTv = {\n prefix: 'fas',\n iconName: 'tv',\n icon: [640, 512, [], \"f26c\", \"M592 0H48A48 48 0 0 0 0 48v320a48 48 0 0 0 48 48h240v32H112a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H352v-32h240a48 48 0 0 0 48-48V48a48 48 0 0 0-48-48zm-16 352H64V64h512z\"]\n};\nvar faUmbrella = {\n prefix: 'fas',\n iconName: 'umbrella',\n icon: [576, 512, [], \"f0e9\", \"M575.7 280.8C547.1 144.5 437.3 62.6 320 49.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v17.9C138.3 62.6 29.5 144.5.3 280.8c-2.2 10.1 8.5 21.3 18.7 11.4 52-55 107.7-52.4 158.6 37 5.3 9.5 14.9 8.6 19.7 0 20.2-35.4 44.9-73.2 90.7-73.2 58.5 0 88.2 68.8 90.7 73.2 4.8 8.6 14.4 9.5 19.7 0 51-89.5 107.1-91.4 158.6-37 10.3 10 20.9-1.3 18.7-11.4zM256 301.7V432c0 8.8-7.2 16-16 16-7.8 0-13.2-5.3-15.1-10.7-5.9-16.7-24.1-25.4-40.8-19.5-16.7 5.9-25.4 24.2-19.5 40.8 11.2 31.9 41.6 53.3 75.4 53.3 44.1 0 80-35.9 80-80V301.6c-9.1-7.9-19.8-13.6-32-13.6-12.3.1-22.4 4.8-32 13.7z\"]\n};\nvar faUmbrellaBeach = {\n prefix: 'fas',\n iconName: 'umbrella-beach',\n icon: [640, 512, [], \"f5ca\", \"M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z\"]\n};\nvar faUnderline = {\n prefix: 'fas',\n iconName: 'underline',\n icon: [448, 512, [], \"f0cd\", \"M32 64h32v160c0 88.22 71.78 160 160 160s160-71.78 160-160V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H272a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32v160a80 80 0 0 1-160 0V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm400 384H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faUndo = {\n prefix: 'fas',\n iconName: 'undo',\n icon: [512, 512, [], \"f0e2\", \"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z\"]\n};\nvar faUndoAlt = {\n prefix: 'fas',\n iconName: 'undo-alt',\n icon: [512, 512, [], \"f2ea\", \"M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z\"]\n};\nvar faUniversalAccess = {\n prefix: 'fas',\n iconName: 'universal-access',\n icon: [512, 512, [], \"f29a\", \"M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z\"]\n};\nvar faUniversity = {\n prefix: 'fas',\n iconName: 'university',\n icon: [512, 512, [], \"f19c\", \"M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z\"]\n};\nvar faUnlink = {\n prefix: 'fas',\n iconName: 'unlink',\n icon: [512, 512, [], \"f127\", \"M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z\"]\n};\nvar faUnlock = {\n prefix: 'fas',\n iconName: 'unlock',\n icon: [448, 512, [], \"f09c\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faUnlockAlt = {\n prefix: 'fas',\n iconName: 'unlock-alt',\n icon: [448, 512, [], \"f13e\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z\"]\n};\nvar faUpload = {\n prefix: 'fas',\n iconName: 'upload',\n icon: [512, 512, [], \"f093\", \"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faUser = {\n prefix: 'fas',\n iconName: 'user',\n icon: [448, 512, [], \"f007\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserAlt = {\n prefix: 'fas',\n iconName: 'user-alt',\n icon: [512, 512, [], \"f406\", \"M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z\"]\n};\nvar faUserAltSlash = {\n prefix: 'fas',\n iconName: 'user-alt-slash',\n icon: [640, 512, [], \"f4fa\", \"M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z\"]\n};\nvar faUserAstronaut = {\n prefix: 'fas',\n iconName: 'user-astronaut',\n icon: [448, 512, [], \"f4fb\", \"M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z\"]\n};\nvar faUserCheck = {\n prefix: 'fas',\n iconName: 'user-check',\n icon: [640, 512, [], \"f4fc\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z\"]\n};\nvar faUserCircle = {\n prefix: 'fas',\n iconName: 'user-circle',\n icon: [496, 512, [], \"f2bd\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z\"]\n};\nvar faUserClock = {\n prefix: 'fas',\n iconName: 'user-clock',\n icon: [640, 512, [], \"f4fd\", \"M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z\"]\n};\nvar faUserCog = {\n prefix: 'fas',\n iconName: 'user-cog',\n icon: [640, 512, [], \"f4fe\", \"M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z\"]\n};\nvar faUserEdit = {\n prefix: 'fas',\n iconName: 'user-edit',\n icon: [640, 512, [], \"f4ff\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z\"]\n};\nvar faUserFriends = {\n prefix: 'fas',\n iconName: 'user-friends',\n icon: [640, 512, [], \"f500\", \"M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z\"]\n};\nvar faUserGraduate = {\n prefix: 'fas',\n iconName: 'user-graduate',\n icon: [448, 512, [], \"f501\", \"M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z\"]\n};\nvar faUserInjured = {\n prefix: 'fas',\n iconName: 'user-injured',\n icon: [448, 512, [], \"f728\", \"M277.37 11.98C261.08 4.47 243.11 0 224 0c-53.69 0-99.5 33.13-118.51 80h81.19l90.69-68.02zM342.51 80c-7.9-19.47-20.67-36.2-36.49-49.52L239.99 80h102.52zM224 256c70.69 0 128-57.31 128-128 0-5.48-.95-10.7-1.61-16H97.61c-.67 5.3-1.61 10.52-1.61 16 0 70.69 57.31 128 128 128zM80 299.7V512h128.26l-98.45-221.52A132.835 132.835 0 0 0 80 299.7zM0 464c0 26.51 21.49 48 48 48V320.24C18.88 344.89 0 381.26 0 422.4V464zm256-48h-55.38l42.67 96H256c26.47 0 48-21.53 48-48s-21.53-48-48-48zm57.6-128h-16.71c-22.24 10.18-46.88 16-72.89 16s-50.65-5.82-72.89-16h-7.37l42.67 96H256c44.11 0 80 35.89 80 80 0 18.08-6.26 34.59-16.41 48H400c26.51 0 48-21.49 48-48v-41.6c0-74.23-60.17-134.4-134.4-134.4z\"]\n};\nvar faUserLock = {\n prefix: 'fas',\n iconName: 'user-lock',\n icon: [640, 512, [], \"f502\", \"M224 256A128 128 0 1 0 96 128a128 128 0 0 0 128 128zm96 64a63.08 63.08 0 0 1 8.1-30.5c-4.8-.5-9.5-1.5-14.5-1.5h-16.7a174.08 174.08 0 0 1-145.8 0h-16.7A134.43 134.43 0 0 0 0 422.4V464a48 48 0 0 0 48 48h280.9a63.54 63.54 0 0 1-8.9-32zm288-32h-32v-80a80 80 0 0 0-160 0v80h-32a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V320a32 32 0 0 0-32-32zM496 432a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm32-144h-64v-80a32 32 0 0 1 64 0z\"]\n};\nvar faUserMd = {\n prefix: 'fas',\n iconName: 'user-md',\n icon: [448, 512, [], \"f0f0\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z\"]\n};\nvar faUserMinus = {\n prefix: 'fas',\n iconName: 'user-minus',\n icon: [640, 512, [], \"f503\", \"M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserNinja = {\n prefix: 'fas',\n iconName: 'user-ninja',\n icon: [448, 512, [], \"f504\", \"M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z\"]\n};\nvar faUserNurse = {\n prefix: 'fas',\n iconName: 'user-nurse',\n icon: [448, 512, [], \"f82f\", \"M319.41,320,224,415.39,128.59,320C57.1,323.1,0,381.6,0,453.79A58.21,58.21,0,0,0,58.21,512H389.79A58.21,58.21,0,0,0,448,453.79C448,381.6,390.9,323.1,319.41,320ZM224,304A128,128,0,0,0,352,176V65.82a32,32,0,0,0-20.76-30L246.47,4.07a64,64,0,0,0-44.94,0L116.76,35.86A32,32,0,0,0,96,65.82V176A128,128,0,0,0,224,304ZM184,71.67a5,5,0,0,1,5-5h21.67V45a5,5,0,0,1,5-5h16.66a5,5,0,0,1,5,5V66.67H259a5,5,0,0,1,5,5V88.33a5,5,0,0,1-5,5H237.33V115a5,5,0,0,1-5,5H215.67a5,5,0,0,1-5-5V93.33H189a5,5,0,0,1-5-5ZM144,160H304v16a80,80,0,0,1-160,0Z\"]\n};\nvar faUserPlus = {\n prefix: 'fas',\n iconName: 'user-plus',\n icon: [640, 512, [], \"f234\", \"M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserSecret = {\n prefix: 'fas',\n iconName: 'user-secret',\n icon: [448, 512, [], \"f21b\", \"M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z\"]\n};\nvar faUserShield = {\n prefix: 'fas',\n iconName: 'user-shield',\n icon: [640, 512, [], \"f505\", \"M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z\"]\n};\nvar faUserSlash = {\n prefix: 'fas',\n iconName: 'user-slash',\n icon: [640, 512, [], \"f506\", \"M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z\"]\n};\nvar faUserTag = {\n prefix: 'fas',\n iconName: 'user-tag',\n icon: [640, 512, [], \"f507\", \"M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z\"]\n};\nvar faUserTie = {\n prefix: 'fas',\n iconName: 'user-tie',\n icon: [448, 512, [], \"f508\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z\"]\n};\nvar faUserTimes = {\n prefix: 'fas',\n iconName: 'user-times',\n icon: [640, 512, [], \"f235\", \"M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUsers = {\n prefix: 'fas',\n iconName: 'users',\n icon: [640, 512, [], \"f0c0\", \"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersCog = {\n prefix: 'fas',\n iconName: 'users-cog',\n icon: [640, 512, [], \"f509\", \"M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersSlash = {\n prefix: 'fas',\n iconName: 'users-slash',\n icon: [640, 512, [], \"e073\", \"M132.65,212.32,36.21,137.78A63.4,63.4,0,0,0,32,160a63.84,63.84,0,0,0,100.65,52.32Zm40.44,62.28A63.79,63.79,0,0,0,128,256H64A64.06,64.06,0,0,0,0,320v32a32,32,0,0,0,32,32H97.91A146.62,146.62,0,0,1,173.09,274.6ZM544,224a64,64,0,1,0-64-64A64.06,64.06,0,0,0,544,224ZM500.56,355.11a114.24,114.24,0,0,0-84.47-65.28L361,247.23c41.46-16.3,71-55.92,71-103.23A111.93,111.93,0,0,0,320,32c-57.14,0-103.69,42.83-110.6,98.08L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM128,403.21V432a48,48,0,0,0,48,48H464a47.45,47.45,0,0,0,12.57-1.87L232,289.13C173.74,294.83,128,343.42,128,403.21ZM576,256H512a63.79,63.79,0,0,0-45.09,18.6A146.29,146.29,0,0,1,542,384h66a32,32,0,0,0,32-32V320A64.06,64.06,0,0,0,576,256Z\"]\n};\nvar faUtensilSpoon = {\n prefix: 'fas',\n iconName: 'utensil-spoon',\n icon: [512, 512, [], \"f2e5\", \"M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z\"]\n};\nvar faUtensils = {\n prefix: 'fas',\n iconName: 'utensils',\n icon: [416, 512, [], \"f2e7\", \"M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z\"]\n};\nvar faVectorSquare = {\n prefix: 'fas',\n iconName: 'vector-square',\n icon: [512, 512, [], \"f5cb\", \"M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z\"]\n};\nvar faVenus = {\n prefix: 'fas',\n iconName: 'venus',\n icon: [288, 512, [], \"f221\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faVenusDouble = {\n prefix: 'fas',\n iconName: 'venus-double',\n icon: [512, 512, [], \"f226\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z\"]\n};\nvar faVenusMars = {\n prefix: 'fas',\n iconName: 'venus-mars',\n icon: [576, 512, [], \"f228\", \"M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faVest = {\n prefix: 'fas',\n iconName: 'vest',\n icon: [448, 512, [], \"e085\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a24.021,24.021,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A24.021,24.021,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.564A151.518,151.518,0,0,0,224,86.234a151.55,151.55,0,0,0,73.812-19.672L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM131.312,371.312l-48,48a16,16,0,0,1-22.624-22.624l48-48a16,16,0,0,1,22.624,22.624Zm256,48a15.992,15.992,0,0,1-22.624,0l-48-48a16,16,0,0,1,22.624-22.624l48,48A15.993,15.993,0,0,1,387.312,419.312Z\"]\n};\nvar faVestPatches = {\n prefix: 'fas',\n iconName: 'vest-patches',\n icon: [448, 512, [], \"e086\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a23.982,23.982,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A23.982,23.982,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.561A151.579,151.579,0,0,0,224,86.234a151.565,151.565,0,0,0,73.811-19.668L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM63.5,272.484a12.01,12.01,0,0,1,17-16.968l15.5,15.5,15.5-15.5a12.01,12.01,0,0,1,17,16.968L112.984,288,128.5,303.516a12.01,12.01,0,0,1-17,16.968L96,304.984l-15.5,15.5a12.01,12.01,0,0,1-17-16.968L79.016,288ZM96,456a40,40,0,1,1,40-40A40,40,0,0,1,96,456ZM359.227,335.785,310.7,336a6.671,6.671,0,0,1-6.7-6.7l.215-48.574A24.987,24.987,0,0,1,331.43,256.1c12.789,1.162,22.129,12.619,22.056,25.419l-.037,5.057,5.051-.037c12.826-.035,24.236,9.275,25.4,22.076A24.948,24.948,0,0,1,359.227,335.785Z\"]\n};\nvar faVial = {\n prefix: 'fas',\n iconName: 'vial',\n icon: [480, 512, [], \"f492\", \"M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z\"]\n};\nvar faVials = {\n prefix: 'fas',\n iconName: 'vials',\n icon: [640, 512, [], \"f493\", \"M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z\"]\n};\nvar faVideo = {\n prefix: 'fas',\n iconName: 'video',\n icon: [576, 512, [], \"f03d\", \"M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z\"]\n};\nvar faVideoSlash = {\n prefix: 'fas',\n iconName: 'video-slash',\n icon: [640, 512, [], \"f4e2\", \"M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z\"]\n};\nvar faVihara = {\n prefix: 'fas',\n iconName: 'vihara',\n icon: [640, 512, [], \"f6a7\", \"M632.88 400.71L544 352v-64l55.16-17.69c11.79-5.9 11.79-22.72 0-28.62L480 192v-64l27.31-16.3c7.72-7.72 5.61-20.74-4.16-25.62L320 0 136.85 86.07c-9.77 4.88-11.88 17.9-4.16 25.62L160 128v64L40.84 241.69c-11.79 5.9-11.79 22.72 0 28.62L96 288v64L7.12 400.71c-5.42 3.62-7.7 9.63-7 15.29.62 5.01 3.57 9.75 8.72 12.33L64 448v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48l55.15-19.67c5.16-2.58 8.1-7.32 8.72-12.33.71-5.67-1.57-11.68-6.99-15.29zM224 128h192v64H224v-64zm-64 224v-64h320v64H160z\"]\n};\nvar faVirus = {\n prefix: 'fas',\n iconName: 'virus',\n icon: [512, 512, [], \"e074\", \"M483.55,227.55H462c-50.68,0-76.07-61.27-40.23-97.11L437,115.19A28.44,28.44,0,0,0,396.8,75L381.56,90.22c-35.84,35.83-97.11,10.45-97.11-40.23V28.44a28.45,28.45,0,0,0-56.9,0V50c0,50.68-61.27,76.06-97.11,40.23L115.2,75A28.44,28.44,0,0,0,75,115.19l15.25,15.25c35.84,35.84,10.45,97.11-40.23,97.11H28.45a28.45,28.45,0,1,0,0,56.89H50c50.68,0,76.07,61.28,40.23,97.12L75,396.8A28.45,28.45,0,0,0,115.2,437l15.24-15.25c35.84-35.84,97.11-10.45,97.11,40.23v21.54a28.45,28.45,0,0,0,56.9,0V462c0-50.68,61.27-76.07,97.11-40.23L396.8,437A28.45,28.45,0,0,0,437,396.8l-15.25-15.24c-35.84-35.84-10.45-97.12,40.23-97.12h21.54a28.45,28.45,0,1,0,0-56.89ZM224,272a48,48,0,1,1,48-48A48,48,0,0,1,224,272Zm80,56a24,24,0,1,1,24-24A24,24,0,0,1,304,328Z\"]\n};\nvar faVirusSlash = {\n prefix: 'fas',\n iconName: 'virus-slash',\n icon: [640, 512, [], \"e075\", \"M114,227.6H92.4C76.7,227.6,64,240.3,64,256s12.7,28.4,28.4,28.4H114c50.7,0,76.1,61.3,40.2,97.1L139,396.8 c-11.5,10.7-12.2,28.7-1.6,40.2s28.7,12.2,40.2,1.6c0.5-0.5,1.1-1,1.6-1.6l15.2-15.2c35.8-35.8,97.1-10.5,97.1,40.2v21.5 c0,15.7,12.8,28.4,28.5,28.4c15.7,0,28.4-12.7,28.4-28.4V462c0-26.6,17-45.9,38.2-53.4l-244.5-189 C133.7,224.7,123.9,227.5,114,227.6z M617,505.8l19.6-25.3c5.4-7,4.2-17-2.8-22.5L470.6,332c4.2-25.4,24.9-47.5,55.4-47.5h21.5 c15.7,0,28.4-12.7,28.4-28.4s-12.7-28.4-28.4-28.4H526c-50.7,0-76.1-61.3-40.2-97.1l15.2-15.3c10.7-11.5,10-29.5-1.6-40.2 c-10.9-10.1-27.7-10.1-38.6,0l-15.2,15.2c-35.8,35.8-97.1,10.5-97.1-40.2V28.5C348.4,12.7,335.7,0,320,0 c-15.7,0-28.4,12.7-28.4,28.4V50c0,50.7-61.3,76.1-97.1,40.2L179.2,75c-11.1-11.1-29.4-10.6-40.5,0.5L45.5,3.4 c-7-5.4-17-4.2-22.5,2.8L3.4,31.5c-5.4,7-4.2,17,2.8,22.5l588.4,454.7C601.5,514.1,611.6,512.8,617,505.8z M335.4,227.5l-62.9-48.6 c4.9-1.8,10.2-2.8,15.4-2.9c26.5,0,48,21.5,48,48C336,225.2,335.5,226.3,335.4,227.5z\"]\n};\nvar faViruses = {\n prefix: 'fas',\n iconName: 'viruses',\n icon: [640, 512, [], \"e076\", \"M624,352H611.88c-28.51,0-42.79-34.47-22.63-54.63l8.58-8.57a16,16,0,1,0-22.63-22.63l-8.57,8.58C546.47,294.91,512,280.63,512,252.12V240a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.57c20.16,20.16,5.88,54.63-22.63,54.63H368a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.57a16,16,0,1,0,22.63,22.63l8.57-8.58c20.16-20.16,54.63-5.88,54.63,22.63V496a16,16,0,0,0,32,0V483.88c0-28.51,34.47-42.79,54.63-22.63l8.57,8.58a16,16,0,1,0,22.63-22.63l-8.58-8.57C569.09,418.47,583.37,384,611.88,384H624a16,16,0,0,0,0-32ZM480,384a32,32,0,1,1,32-32A32,32,0,0,1,480,384ZM346.51,213.33h16.16a21.33,21.33,0,0,0,0-42.66H346.51c-38,0-57.05-46-30.17-72.84l11.43-11.44A21.33,21.33,0,0,0,297.6,56.23L286.17,67.66c-26.88,26.88-72.84,7.85-72.84-30.17V21.33a21.33,21.33,0,0,0-42.66,0V37.49c0,38-46,57.05-72.84,30.17L86.4,56.23A21.33,21.33,0,0,0,56.23,86.39L67.66,97.83c26.88,26.88,7.85,72.84-30.17,72.84H21.33a21.33,21.33,0,0,0,0,42.66H37.49c38,0,57.05,46,30.17,72.84L56.23,297.6A21.33,21.33,0,1,0,86.4,327.77l11.43-11.43c26.88-26.88,72.84-7.85,72.84,30.17v16.16a21.33,21.33,0,0,0,42.66,0V346.51c0-38,46-57.05,72.84-30.17l11.43,11.43a21.33,21.33,0,0,0,30.17-30.17l-11.43-11.43C289.46,259.29,308.49,213.33,346.51,213.33ZM160,192a32,32,0,1,1,32-32A32,32,0,0,1,160,192Zm80,32a16,16,0,1,1,16-16A16,16,0,0,1,240,224Z\"]\n};\nvar faVoicemail = {\n prefix: 'fas',\n iconName: 'voicemail',\n icon: [640, 512, [], \"f897\", \"M496 128a144 144 0 0 0-119.74 224H263.74A144 144 0 1 0 144 416h352a144 144 0 0 0 0-288zM64 272a80 80 0 1 1 80 80 80 80 0 0 1-80-80zm432 80a80 80 0 1 1 80-80 80 80 0 0 1-80 80z\"]\n};\nvar faVolleyballBall = {\n prefix: 'fas',\n iconName: 'volleyball-ball',\n icon: [512, 512, [], \"f45f\", \"M231.39 243.48a285.56 285.56 0 0 0-22.7-105.7c-90.8 42.4-157.5 122.4-180.3 216.8a249 249 0 0 0 56.9 81.1 333.87 333.87 0 0 1 146.1-192.2zm-36.9-134.4a284.23 284.23 0 0 0-57.4-70.7c-91 49.8-144.8 152.9-125 262.2 33.4-83.1 98.4-152 182.4-191.5zm187.6 165.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5A333.87 333.87 0 0 1 279.19 241a285 285 0 0 0 102.9 33.18zm-124.7 9.5a286.33 286.33 0 0 0-80.2 72.6c82 57.3 184.5 75.1 277.5 47.8a247.15 247.15 0 0 0 42.2-89.9 336.1 336.1 0 0 1-80.9 10.4c-54.6-.1-108.9-14.1-158.6-40.9zm-98.3 99.7c-15.2 26-25.7 54.4-32.1 84.2a247.07 247.07 0 0 0 289-22.1c-112.9 16.1-203.3-24.8-256.9-62.1zm180.3-360.6c55.3 70.4 82.5 161.2 74.6 253.6a286.59 286.59 0 0 0 89.7-14.2c0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z\"]\n};\nvar faVolumeDown = {\n prefix: 'fas',\n iconName: 'volume-down',\n icon: [384, 512, [], \"f027\", \"M215.03 72.04L126.06 161H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V89.02c0-21.47-25.96-31.98-40.97-16.98zm123.2 108.08c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 229.28 336 242.62 336 257c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.87z\"]\n};\nvar faVolumeMute = {\n prefix: 'fas',\n iconName: 'volume-mute',\n icon: [512, 512, [], \"f6a9\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM461.64 256l45.64-45.64c6.3-6.3 6.3-16.52 0-22.82l-22.82-22.82c-6.3-6.3-16.52-6.3-22.82 0L416 210.36l-45.64-45.64c-6.3-6.3-16.52-6.3-22.82 0l-22.82 22.82c-6.3 6.3-6.3 16.52 0 22.82L370.36 256l-45.63 45.63c-6.3 6.3-6.3 16.52 0 22.82l22.82 22.82c6.3 6.3 16.52 6.3 22.82 0L416 301.64l45.64 45.64c6.3 6.3 16.52 6.3 22.82 0l22.82-22.82c6.3-6.3 6.3-16.52 0-22.82L461.64 256z\"]\n};\nvar faVolumeOff = {\n prefix: 'fas',\n iconName: 'volume-off',\n icon: [256, 512, [], \"f026\", \"M215 71l-89 89H24a24 24 0 0 0-24 24v144a24 24 0 0 0 24 24h102.06L215 441c15 15 41 4.47 41-17V88c0-21.47-26-32-41-17z\"]\n};\nvar faVolumeUp = {\n prefix: 'fas',\n iconName: 'volume-up',\n icon: [576, 512, [], \"f028\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zm233.32-51.08c-11.17-7.33-26.18-4.24-33.51 6.95-7.34 11.17-4.22 26.18 6.95 33.51 66.27 43.49 105.82 116.6 105.82 195.58 0 78.98-39.55 152.09-105.82 195.58-11.17 7.32-14.29 22.34-6.95 33.5 7.04 10.71 21.93 14.56 33.51 6.95C528.27 439.58 576 351.33 576 256S528.27 72.43 448.35 19.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.54 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z\"]\n};\nvar faVoteYea = {\n prefix: 'fas',\n iconName: 'vote-yea',\n icon: [640, 512, [], \"f772\", \"M608 320h-64v64h22.4c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8H96v-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32zm-96 64V64.3c0-17.9-14.5-32.3-32.3-32.3H160.4C142.5 32 128 46.5 128 64.3V384h384zM211.2 202l25.5-25.3c4.2-4.2 11-4.2 15.2.1l41.3 41.6 95.2-94.4c4.2-4.2 11-4.2 15.2.1l25.3 25.5c4.2 4.2 4.2 11-.1 15.2L300.5 292c-4.2 4.2-11 4.2-15.2-.1l-74.1-74.7c-4.3-4.2-4.2-11 0-15.2z\"]\n};\nvar faVrCardboard = {\n prefix: 'fas',\n iconName: 'vr-cardboard',\n icon: [640, 512, [], \"f729\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h160.22c25.19 0 48.03-14.77 58.36-37.74l27.74-61.64C286.21 331.08 302.35 320 320 320s33.79 11.08 41.68 28.62l27.74 61.64C399.75 433.23 422.6 448 447.78 448H608c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM160 304c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64zm320 0c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64z\"]\n};\nvar faWalking = {\n prefix: 'fas',\n iconName: 'walking',\n icon: [320, 512, [], \"f554\", \"M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z\"]\n};\nvar faWallet = {\n prefix: 'fas',\n iconName: 'wallet',\n icon: [512, 512, [], \"f555\", \"M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faWarehouse = {\n prefix: 'fas',\n iconName: 'warehouse',\n icon: [640, 512, [], \"f494\", \"M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z\"]\n};\nvar faWater = {\n prefix: 'fas',\n iconName: 'water',\n icon: [576, 512, [], \"f773\", \"M562.1 383.9c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144C540.6 93.4 520 85.4 504.2 73 490.1 61.9 470 61.7 456 73c-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3z\"]\n};\nvar faWaveSquare = {\n prefix: 'fas',\n iconName: 'wave-square',\n icon: [640, 512, [], \"f83e\", \"M476 480H324a36 36 0 0 1-36-36V96h-96v156a36 36 0 0 1-36 36H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h112V68a36 36 0 0 1 36-36h152a36 36 0 0 1 36 36v348h96V260a36 36 0 0 1 36-36h140a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H512v156a36 36 0 0 1-36 36z\"]\n};\nvar faWeight = {\n prefix: 'fas',\n iconName: 'weight',\n icon: [512, 512, [], \"f496\", \"M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z\"]\n};\nvar faWeightHanging = {\n prefix: 'fas',\n iconName: 'weight-hanging',\n icon: [512, 512, [], \"f5cd\", \"M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faWheelchair = {\n prefix: 'fas',\n iconName: 'wheelchair',\n icon: [512, 512, [], \"f193\", \"M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z\"]\n};\nvar faWifi = {\n prefix: 'fas',\n iconName: 'wifi',\n icon: [640, 512, [], \"f1eb\", \"M634.91 154.88C457.74-8.99 182.19-8.93 5.09 154.88c-6.66 6.16-6.79 16.59-.35 22.98l34.24 33.97c6.14 6.1 16.02 6.23 22.4.38 145.92-133.68 371.3-133.71 517.25 0 6.38 5.85 16.26 5.71 22.4-.38l34.24-33.97c6.43-6.39 6.3-16.82-.36-22.98zM320 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm202.67-83.59c-115.26-101.93-290.21-101.82-405.34 0-6.9 6.1-7.12 16.69-.57 23.15l34.44 33.99c6 5.92 15.66 6.32 22.05.8 83.95-72.57 209.74-72.41 293.49 0 6.39 5.52 16.05 5.13 22.05-.8l34.44-33.99c6.56-6.46 6.33-17.06-.56-23.15z\"]\n};\nvar faWind = {\n prefix: 'fas',\n iconName: 'wind',\n icon: [512, 512, [], \"f72e\", \"M156.7 256H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h142.2c15.9 0 30.8 10.9 33.4 26.6 3.3 20-12.1 37.4-31.6 37.4-14.1 0-26.1-9.2-30.4-21.9-2.1-6.3-8.6-10.1-15.2-10.1H81.6c-9.8 0-17.7 8.8-15.9 18.4 8.6 44.1 47.6 77.6 94.2 77.6 57.1 0 102.7-50.1 95.2-108.6C249 291 205.4 256 156.7 256zM16 224h336c59.7 0 106.8-54.8 93.8-116.7-7.6-36.2-36.9-65.5-73.1-73.1-55.4-11.6-105.1 24.9-114.9 75.5-1.9 9.6 6.1 18.3 15.8 18.3h32.8c6.7 0 13.1-3.8 15.2-10.1C325.9 105.2 337.9 96 352 96c19.4 0 34.9 17.4 31.6 37.4-2.6 15.7-17.4 26.6-33.4 26.6H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16zm384 32H243.7c19.3 16.6 33.2 38.8 39.8 64H400c26.5 0 48 21.5 48 48s-21.5 48-48 48c-17.9 0-33.3-9.9-41.6-24.4-2.9-5-8.7-7.6-14.5-7.6h-33.8c-10.9 0-19 10.8-15.3 21.1 17.8 50.6 70.5 84.8 129.4 72.3 41.2-8.7 75.1-41.6 84.7-82.7C526 321.5 470.5 256 400 256z\"]\n};\nvar faWindowClose = {\n prefix: 'fas',\n iconName: 'window-close',\n icon: [512, 512, [], \"f410\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z\"]\n};\nvar faWindowMaximize = {\n prefix: 'fas',\n iconName: 'window-maximize',\n icon: [512, 512, [], \"f2d0\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z\"]\n};\nvar faWindowMinimize = {\n prefix: 'fas',\n iconName: 'window-minimize',\n icon: [512, 512, [], \"f2d1\", \"M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z\"]\n};\nvar faWindowRestore = {\n prefix: 'fas',\n iconName: 'window-restore',\n icon: [512, 512, [], \"f2d2\", \"M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z\"]\n};\nvar faWineBottle = {\n prefix: 'fas',\n iconName: 'wine-bottle',\n icon: [512, 512, [], \"f72f\", \"M507.31 72.57L439.43 4.69c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l-76.67 76.67c-46.58-19.7-102.4-10.73-140.37 27.23L18.75 312.23c-24.99 24.99-24.99 65.52 0 90.51l90.51 90.51c24.99 24.99 65.52 24.99 90.51 0l158.39-158.39c37.96-37.96 46.93-93.79 27.23-140.37l76.67-76.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.24-6.24 6.24-16.37-.01-22.62zM179.22 423.29l-90.51-90.51 122.04-122.04 90.51 90.51-122.04 122.04z\"]\n};\nvar faWineGlass = {\n prefix: 'fas',\n iconName: 'wine-glass',\n icon: [288, 512, [], \"f4e3\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z\"]\n};\nvar faWineGlassAlt = {\n prefix: 'fas',\n iconName: 'wine-glass-alt',\n icon: [288, 512, [], \"f5ce\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z\"]\n};\nvar faWonSign = {\n prefix: 'fas',\n iconName: 'won-sign',\n icon: [576, 512, [], \"f159\", \"M564 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-48l18.6-80.6c1.7-7.5-4-14.7-11.7-14.7h-46.1c-5.7 0-10.6 4-11.7 9.5L450.7 128H340.8l-19.7-86c-1.3-5.5-6.1-9.3-11.7-9.3h-44c-5.6 0-10.4 3.8-11.7 9.3l-20 86H125l-17.5-85.7c-1.1-5.6-6.1-9.6-11.8-9.6H53.6c-7.7 0-13.4 7.1-11.7 14.6L60 128H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h62.3l7.2 32H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h83.9l40.9 182.6c1.2 5.5 6.1 9.4 11.7 9.4h56.8c5.6 0 10.4-3.9 11.7-9.3L259.3 288h55.1l42.4 182.7c1.3 5.4 6.1 9.3 11.7 9.3h56.8c5.6 0 10.4-3.9 11.7-9.3L479.1 288H564c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-70.1l7.4-32zM183.8 342c-6.2 25.8-6.8 47.2-7.3 47.2h-1.1s-1.7-22-6.8-47.2l-11-54h38.8zm27.5-118h-66.8l-6.5-32h80.8zm62.9 0l2-8.6c1.9-8 3.5-16 4.8-23.4h11.8c1.3 7.4 2.9 15.4 4.8 23.4l2 8.6zm130.9 118c-5.1 25.2-6.8 47.2-6.8 47.2h-1.1c-.6 0-1.1-21.4-7.3-47.2l-12.4-54h39.1zm25.2-118h-67.4l-7.3-32h81.6z\"]\n};\nvar faWrench = {\n prefix: 'fas',\n iconName: 'wrench',\n icon: [512, 512, [], \"f0ad\", \"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faXRay = {\n prefix: 'fas',\n iconName: 'x-ray',\n icon: [640, 512, [], \"f497\", \"M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faYenSign = {\n prefix: 'fas',\n iconName: 'yen-sign',\n icon: [384, 512, [], \"f157\", \"M351.2 32h-65.3c-4.6 0-8.8 2.6-10.8 6.7l-55.4 113.2c-14.5 34.7-27.1 71.9-27.1 71.9h-1.3s-12.6-37.2-27.1-71.9L108.8 38.7c-2-4.1-6.2-6.7-10.8-6.7H32.8c-9.1 0-14.8 9.7-10.6 17.6L102.3 200H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h88.2l19.8 37.2V320H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h108v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h108c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12H232v-26.8l19.8-37.2H340c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12h-58.3l80.1-150.4c4.3-7.9-1.5-17.6-10.6-17.6z\"]\n};\nvar faYinYang = {\n prefix: 'fas',\n iconName: 'yin-yang',\n icon: [496, 512, [], \"f6ad\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 376c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-128c-53.02 0-96 42.98-96 96s42.98 96 96 96c-106.04 0-192-85.96-192-192S141.96 64 248 64c53.02 0 96 42.98 96 96s-42.98 96-96 96zm0-128c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar _iconsCache = {\n faAd: faAd,\n faAddressBook: faAddressBook,\n faAddressCard: faAddressCard,\n faAdjust: faAdjust,\n faAirFreshener: faAirFreshener,\n faAlignCenter: faAlignCenter,\n faAlignJustify: faAlignJustify,\n faAlignLeft: faAlignLeft,\n faAlignRight: faAlignRight,\n faAllergies: faAllergies,\n faAmbulance: faAmbulance,\n faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting,\n faAnchor: faAnchor,\n faAngleDoubleDown: faAngleDoubleDown,\n faAngleDoubleLeft: faAngleDoubleLeft,\n faAngleDoubleRight: faAngleDoubleRight,\n faAngleDoubleUp: faAngleDoubleUp,\n faAngleDown: faAngleDown,\n faAngleLeft: faAngleLeft,\n faAngleRight: faAngleRight,\n faAngleUp: faAngleUp,\n faAngry: faAngry,\n faAnkh: faAnkh,\n faAppleAlt: faAppleAlt,\n faArchive: faArchive,\n faArchway: faArchway,\n faArrowAltCircleDown: faArrowAltCircleDown,\n faArrowAltCircleLeft: faArrowAltCircleLeft,\n faArrowAltCircleRight: faArrowAltCircleRight,\n faArrowAltCircleUp: faArrowAltCircleUp,\n faArrowCircleDown: faArrowCircleDown,\n faArrowCircleLeft: faArrowCircleLeft,\n faArrowCircleRight: faArrowCircleRight,\n faArrowCircleUp: faArrowCircleUp,\n faArrowDown: faArrowDown,\n faArrowLeft: faArrowLeft,\n faArrowRight: faArrowRight,\n faArrowUp: faArrowUp,\n faArrowsAlt: faArrowsAlt,\n faArrowsAltH: faArrowsAltH,\n faArrowsAltV: faArrowsAltV,\n faAssistiveListeningSystems: faAssistiveListeningSystems,\n faAsterisk: faAsterisk,\n faAt: faAt,\n faAtlas: faAtlas,\n faAtom: faAtom,\n faAudioDescription: faAudioDescription,\n faAward: faAward,\n faBaby: faBaby,\n faBabyCarriage: faBabyCarriage,\n faBackspace: faBackspace,\n faBackward: faBackward,\n faBacon: faBacon,\n faBacteria: faBacteria,\n faBacterium: faBacterium,\n faBahai: faBahai,\n faBalanceScale: faBalanceScale,\n faBalanceScaleLeft: faBalanceScaleLeft,\n faBalanceScaleRight: faBalanceScaleRight,\n faBan: faBan,\n faBandAid: faBandAid,\n faBarcode: faBarcode,\n faBars: faBars,\n faBaseballBall: faBaseballBall,\n faBasketballBall: faBasketballBall,\n faBath: faBath,\n faBatteryEmpty: faBatteryEmpty,\n faBatteryFull: faBatteryFull,\n faBatteryHalf: faBatteryHalf,\n faBatteryQuarter: faBatteryQuarter,\n faBatteryThreeQuarters: faBatteryThreeQuarters,\n faBed: faBed,\n faBeer: faBeer,\n faBell: faBell,\n faBellSlash: faBellSlash,\n faBezierCurve: faBezierCurve,\n faBible: faBible,\n faBicycle: faBicycle,\n faBiking: faBiking,\n faBinoculars: faBinoculars,\n faBiohazard: faBiohazard,\n faBirthdayCake: faBirthdayCake,\n faBlender: faBlender,\n faBlenderPhone: faBlenderPhone,\n faBlind: faBlind,\n faBlog: faBlog,\n faBold: faBold,\n faBolt: faBolt,\n faBomb: faBomb,\n faBone: faBone,\n faBong: faBong,\n faBook: faBook,\n faBookDead: faBookDead,\n faBookMedical: faBookMedical,\n faBookOpen: faBookOpen,\n faBookReader: faBookReader,\n faBookmark: faBookmark,\n faBorderAll: faBorderAll,\n faBorderNone: faBorderNone,\n faBorderStyle: faBorderStyle,\n faBowlingBall: faBowlingBall,\n faBox: faBox,\n faBoxOpen: faBoxOpen,\n faBoxTissue: faBoxTissue,\n faBoxes: faBoxes,\n faBraille: faBraille,\n faBrain: faBrain,\n faBreadSlice: faBreadSlice,\n faBriefcase: faBriefcase,\n faBriefcaseMedical: faBriefcaseMedical,\n faBroadcastTower: faBroadcastTower,\n faBroom: faBroom,\n faBrush: faBrush,\n faBug: faBug,\n faBuilding: faBuilding,\n faBullhorn: faBullhorn,\n faBullseye: faBullseye,\n faBurn: faBurn,\n faBus: faBus,\n faBusAlt: faBusAlt,\n faBusinessTime: faBusinessTime,\n faCalculator: faCalculator,\n faCalendar: faCalendar,\n faCalendarAlt: faCalendarAlt,\n faCalendarCheck: faCalendarCheck,\n faCalendarDay: faCalendarDay,\n faCalendarMinus: faCalendarMinus,\n faCalendarPlus: faCalendarPlus,\n faCalendarTimes: faCalendarTimes,\n faCalendarWeek: faCalendarWeek,\n faCamera: faCamera,\n faCameraRetro: faCameraRetro,\n faCampground: faCampground,\n faCandyCane: faCandyCane,\n faCannabis: faCannabis,\n faCapsules: faCapsules,\n faCar: faCar,\n faCarAlt: faCarAlt,\n faCarBattery: faCarBattery,\n faCarCrash: faCarCrash,\n faCarSide: faCarSide,\n faCaravan: faCaravan,\n faCaretDown: faCaretDown,\n faCaretLeft: faCaretLeft,\n faCaretRight: faCaretRight,\n faCaretSquareDown: faCaretSquareDown,\n faCaretSquareLeft: faCaretSquareLeft,\n faCaretSquareRight: faCaretSquareRight,\n faCaretSquareUp: faCaretSquareUp,\n faCaretUp: faCaretUp,\n faCarrot: faCarrot,\n faCartArrowDown: faCartArrowDown,\n faCartPlus: faCartPlus,\n faCashRegister: faCashRegister,\n faCat: faCat,\n faCertificate: faCertificate,\n faChair: faChair,\n faChalkboard: faChalkboard,\n faChalkboardTeacher: faChalkboardTeacher,\n faChargingStation: faChargingStation,\n faChartArea: faChartArea,\n faChartBar: faChartBar,\n faChartLine: faChartLine,\n faChartPie: faChartPie,\n faCheck: faCheck,\n faCheckCircle: faCheckCircle,\n faCheckDouble: faCheckDouble,\n faCheckSquare: faCheckSquare,\n faCheese: faCheese,\n faChess: faChess,\n faChessBishop: faChessBishop,\n faChessBoard: faChessBoard,\n faChessKing: faChessKing,\n faChessKnight: faChessKnight,\n faChessPawn: faChessPawn,\n faChessQueen: faChessQueen,\n faChessRook: faChessRook,\n faChevronCircleDown: faChevronCircleDown,\n faChevronCircleLeft: faChevronCircleLeft,\n faChevronCircleRight: faChevronCircleRight,\n faChevronCircleUp: faChevronCircleUp,\n faChevronDown: faChevronDown,\n faChevronLeft: faChevronLeft,\n faChevronRight: faChevronRight,\n faChevronUp: faChevronUp,\n faChild: faChild,\n faChurch: faChurch,\n faCircle: faCircle,\n faCircleNotch: faCircleNotch,\n faCity: faCity,\n faClinicMedical: faClinicMedical,\n faClipboard: faClipboard,\n faClipboardCheck: faClipboardCheck,\n faClipboardList: faClipboardList,\n faClock: faClock,\n faClone: faClone,\n faClosedCaptioning: faClosedCaptioning,\n faCloud: faCloud,\n faCloudDownloadAlt: faCloudDownloadAlt,\n faCloudMeatball: faCloudMeatball,\n faCloudMoon: faCloudMoon,\n faCloudMoonRain: faCloudMoonRain,\n faCloudRain: faCloudRain,\n faCloudShowersHeavy: faCloudShowersHeavy,\n faCloudSun: faCloudSun,\n faCloudSunRain: faCloudSunRain,\n faCloudUploadAlt: faCloudUploadAlt,\n faCocktail: faCocktail,\n faCode: faCode,\n faCodeBranch: faCodeBranch,\n faCoffee: faCoffee,\n faCog: faCog,\n faCogs: faCogs,\n faCoins: faCoins,\n faColumns: faColumns,\n faComment: faComment,\n faCommentAlt: faCommentAlt,\n faCommentDollar: faCommentDollar,\n faCommentDots: faCommentDots,\n faCommentMedical: faCommentMedical,\n faCommentSlash: faCommentSlash,\n faComments: faComments,\n faCommentsDollar: faCommentsDollar,\n faCompactDisc: faCompactDisc,\n faCompass: faCompass,\n faCompress: faCompress,\n faCompressAlt: faCompressAlt,\n faCompressArrowsAlt: faCompressArrowsAlt,\n faConciergeBell: faConciergeBell,\n faCookie: faCookie,\n faCookieBite: faCookieBite,\n faCopy: faCopy,\n faCopyright: faCopyright,\n faCouch: faCouch,\n faCreditCard: faCreditCard,\n faCrop: faCrop,\n faCropAlt: faCropAlt,\n faCross: faCross,\n faCrosshairs: faCrosshairs,\n faCrow: faCrow,\n faCrown: faCrown,\n faCrutch: faCrutch,\n faCube: faCube,\n faCubes: faCubes,\n faCut: faCut,\n faDatabase: faDatabase,\n faDeaf: faDeaf,\n faDemocrat: faDemocrat,\n faDesktop: faDesktop,\n faDharmachakra: faDharmachakra,\n faDiagnoses: faDiagnoses,\n faDice: faDice,\n faDiceD20: faDiceD20,\n faDiceD6: faDiceD6,\n faDiceFive: faDiceFive,\n faDiceFour: faDiceFour,\n faDiceOne: faDiceOne,\n faDiceSix: faDiceSix,\n faDiceThree: faDiceThree,\n faDiceTwo: faDiceTwo,\n faDigitalTachograph: faDigitalTachograph,\n faDirections: faDirections,\n faDisease: faDisease,\n faDivide: faDivide,\n faDizzy: faDizzy,\n faDna: faDna,\n faDog: faDog,\n faDollarSign: faDollarSign,\n faDolly: faDolly,\n faDollyFlatbed: faDollyFlatbed,\n faDonate: faDonate,\n faDoorClosed: faDoorClosed,\n faDoorOpen: faDoorOpen,\n faDotCircle: faDotCircle,\n faDove: faDove,\n faDownload: faDownload,\n faDraftingCompass: faDraftingCompass,\n faDragon: faDragon,\n faDrawPolygon: faDrawPolygon,\n faDrum: faDrum,\n faDrumSteelpan: faDrumSteelpan,\n faDrumstickBite: faDrumstickBite,\n faDumbbell: faDumbbell,\n faDumpster: faDumpster,\n faDumpsterFire: faDumpsterFire,\n faDungeon: faDungeon,\n faEdit: faEdit,\n faEgg: faEgg,\n faEject: faEject,\n faEllipsisH: faEllipsisH,\n faEllipsisV: faEllipsisV,\n faEnvelope: faEnvelope,\n faEnvelopeOpen: faEnvelopeOpen,\n faEnvelopeOpenText: faEnvelopeOpenText,\n faEnvelopeSquare: faEnvelopeSquare,\n faEquals: faEquals,\n faEraser: faEraser,\n faEthernet: faEthernet,\n faEuroSign: faEuroSign,\n faExchangeAlt: faExchangeAlt,\n faExclamation: faExclamation,\n faExclamationCircle: faExclamationCircle,\n faExclamationTriangle: faExclamationTriangle,\n faExpand: faExpand,\n faExpandAlt: faExpandAlt,\n faExpandArrowsAlt: faExpandArrowsAlt,\n faExternalLinkAlt: faExternalLinkAlt,\n faExternalLinkSquareAlt: faExternalLinkSquareAlt,\n faEye: faEye,\n faEyeDropper: faEyeDropper,\n faEyeSlash: faEyeSlash,\n faFan: faFan,\n faFastBackward: faFastBackward,\n faFastForward: faFastForward,\n faFaucet: faFaucet,\n faFax: faFax,\n faFeather: faFeather,\n faFeatherAlt: faFeatherAlt,\n faFemale: faFemale,\n faFighterJet: faFighterJet,\n faFile: faFile,\n faFileAlt: faFileAlt,\n faFileArchive: faFileArchive,\n faFileAudio: faFileAudio,\n faFileCode: faFileCode,\n faFileContract: faFileContract,\n faFileCsv: faFileCsv,\n faFileDownload: faFileDownload,\n faFileExcel: faFileExcel,\n faFileExport: faFileExport,\n faFileImage: faFileImage,\n faFileImport: faFileImport,\n faFileInvoice: faFileInvoice,\n faFileInvoiceDollar: faFileInvoiceDollar,\n faFileMedical: faFileMedical,\n faFileMedicalAlt: faFileMedicalAlt,\n faFilePdf: faFilePdf,\n faFilePowerpoint: faFilePowerpoint,\n faFilePrescription: faFilePrescription,\n faFileSignature: faFileSignature,\n faFileUpload: faFileUpload,\n faFileVideo: faFileVideo,\n faFileWord: faFileWord,\n faFill: faFill,\n faFillDrip: faFillDrip,\n faFilm: faFilm,\n faFilter: faFilter,\n faFingerprint: faFingerprint,\n faFire: faFire,\n faFireAlt: faFireAlt,\n faFireExtinguisher: faFireExtinguisher,\n faFirstAid: faFirstAid,\n faFish: faFish,\n faFistRaised: faFistRaised,\n faFlag: faFlag,\n faFlagCheckered: faFlagCheckered,\n faFlagUsa: faFlagUsa,\n faFlask: faFlask,\n faFlushed: faFlushed,\n faFolder: faFolder,\n faFolderMinus: faFolderMinus,\n faFolderOpen: faFolderOpen,\n faFolderPlus: faFolderPlus,\n faFont: faFont,\n faFontAwesomeLogoFull: faFontAwesomeLogoFull,\n faFootballBall: faFootballBall,\n faForward: faForward,\n faFrog: faFrog,\n faFrown: faFrown,\n faFrownOpen: faFrownOpen,\n faFunnelDollar: faFunnelDollar,\n faFutbol: faFutbol,\n faGamepad: faGamepad,\n faGasPump: faGasPump,\n faGavel: faGavel,\n faGem: faGem,\n faGenderless: faGenderless,\n faGhost: faGhost,\n faGift: faGift,\n faGifts: faGifts,\n faGlassCheers: faGlassCheers,\n faGlassMartini: faGlassMartini,\n faGlassMartiniAlt: faGlassMartiniAlt,\n faGlassWhiskey: faGlassWhiskey,\n faGlasses: faGlasses,\n faGlobe: faGlobe,\n faGlobeAfrica: faGlobeAfrica,\n faGlobeAmericas: faGlobeAmericas,\n faGlobeAsia: faGlobeAsia,\n faGlobeEurope: faGlobeEurope,\n faGolfBall: faGolfBall,\n faGopuram: faGopuram,\n faGraduationCap: faGraduationCap,\n faGreaterThan: faGreaterThan,\n faGreaterThanEqual: faGreaterThanEqual,\n faGrimace: faGrimace,\n faGrin: faGrin,\n faGrinAlt: faGrinAlt,\n faGrinBeam: faGrinBeam,\n faGrinBeamSweat: faGrinBeamSweat,\n faGrinHearts: faGrinHearts,\n faGrinSquint: faGrinSquint,\n faGrinSquintTears: faGrinSquintTears,\n faGrinStars: faGrinStars,\n faGrinTears: faGrinTears,\n faGrinTongue: faGrinTongue,\n faGrinTongueSquint: faGrinTongueSquint,\n faGrinTongueWink: faGrinTongueWink,\n faGrinWink: faGrinWink,\n faGripHorizontal: faGripHorizontal,\n faGripLines: faGripLines,\n faGripLinesVertical: faGripLinesVertical,\n faGripVertical: faGripVertical,\n faGuitar: faGuitar,\n faHSquare: faHSquare,\n faHamburger: faHamburger,\n faHammer: faHammer,\n faHamsa: faHamsa,\n faHandHolding: faHandHolding,\n faHandHoldingHeart: faHandHoldingHeart,\n faHandHoldingMedical: faHandHoldingMedical,\n faHandHoldingUsd: faHandHoldingUsd,\n faHandHoldingWater: faHandHoldingWater,\n faHandLizard: faHandLizard,\n faHandMiddleFinger: faHandMiddleFinger,\n faHandPaper: faHandPaper,\n faHandPeace: faHandPeace,\n faHandPointDown: faHandPointDown,\n faHandPointLeft: faHandPointLeft,\n faHandPointRight: faHandPointRight,\n faHandPointUp: faHandPointUp,\n faHandPointer: faHandPointer,\n faHandRock: faHandRock,\n faHandScissors: faHandScissors,\n faHandSparkles: faHandSparkles,\n faHandSpock: faHandSpock,\n faHands: faHands,\n faHandsHelping: faHandsHelping,\n faHandsWash: faHandsWash,\n faHandshake: faHandshake,\n faHandshakeAltSlash: faHandshakeAltSlash,\n faHandshakeSlash: faHandshakeSlash,\n faHanukiah: faHanukiah,\n faHardHat: faHardHat,\n faHashtag: faHashtag,\n faHatCowboy: faHatCowboy,\n faHatCowboySide: faHatCowboySide,\n faHatWizard: faHatWizard,\n faHdd: faHdd,\n faHeadSideCough: faHeadSideCough,\n faHeadSideCoughSlash: faHeadSideCoughSlash,\n faHeadSideMask: faHeadSideMask,\n faHeadSideVirus: faHeadSideVirus,\n faHeading: faHeading,\n faHeadphones: faHeadphones,\n faHeadphonesAlt: faHeadphonesAlt,\n faHeadset: faHeadset,\n faHeart: faHeart,\n faHeartBroken: faHeartBroken,\n faHeartbeat: faHeartbeat,\n faHelicopter: faHelicopter,\n faHighlighter: faHighlighter,\n faHiking: faHiking,\n faHippo: faHippo,\n faHistory: faHistory,\n faHockeyPuck: faHockeyPuck,\n faHollyBerry: faHollyBerry,\n faHome: faHome,\n faHorse: faHorse,\n faHorseHead: faHorseHead,\n faHospital: faHospital,\n faHospitalAlt: faHospitalAlt,\n faHospitalSymbol: faHospitalSymbol,\n faHospitalUser: faHospitalUser,\n faHotTub: faHotTub,\n faHotdog: faHotdog,\n faHotel: faHotel,\n faHourglass: faHourglass,\n faHourglassEnd: faHourglassEnd,\n faHourglassHalf: faHourglassHalf,\n faHourglassStart: faHourglassStart,\n faHouseDamage: faHouseDamage,\n faHouseUser: faHouseUser,\n faHryvnia: faHryvnia,\n faICursor: faICursor,\n faIceCream: faIceCream,\n faIcicles: faIcicles,\n faIcons: faIcons,\n faIdBadge: faIdBadge,\n faIdCard: faIdCard,\n faIdCardAlt: faIdCardAlt,\n faIgloo: faIgloo,\n faImage: faImage,\n faImages: faImages,\n faInbox: faInbox,\n faIndent: faIndent,\n faIndustry: faIndustry,\n faInfinity: faInfinity,\n faInfo: faInfo,\n faInfoCircle: faInfoCircle,\n faItalic: faItalic,\n faJedi: faJedi,\n faJoint: faJoint,\n faJournalWhills: faJournalWhills,\n faKaaba: faKaaba,\n faKey: faKey,\n faKeyboard: faKeyboard,\n faKhanda: faKhanda,\n faKiss: faKiss,\n faKissBeam: faKissBeam,\n faKissWinkHeart: faKissWinkHeart,\n faKiwiBird: faKiwiBird,\n faLandmark: faLandmark,\n faLanguage: faLanguage,\n faLaptop: faLaptop,\n faLaptopCode: faLaptopCode,\n faLaptopHouse: faLaptopHouse,\n faLaptopMedical: faLaptopMedical,\n faLaugh: faLaugh,\n faLaughBeam: faLaughBeam,\n faLaughSquint: faLaughSquint,\n faLaughWink: faLaughWink,\n faLayerGroup: faLayerGroup,\n faLeaf: faLeaf,\n faLemon: faLemon,\n faLessThan: faLessThan,\n faLessThanEqual: faLessThanEqual,\n faLevelDownAlt: faLevelDownAlt,\n faLevelUpAlt: faLevelUpAlt,\n faLifeRing: faLifeRing,\n faLightbulb: faLightbulb,\n faLink: faLink,\n faLiraSign: faLiraSign,\n faList: faList,\n faListAlt: faListAlt,\n faListOl: faListOl,\n faListUl: faListUl,\n faLocationArrow: faLocationArrow,\n faLock: faLock,\n faLockOpen: faLockOpen,\n faLongArrowAltDown: faLongArrowAltDown,\n faLongArrowAltLeft: faLongArrowAltLeft,\n faLongArrowAltRight: faLongArrowAltRight,\n faLongArrowAltUp: faLongArrowAltUp,\n faLowVision: faLowVision,\n faLuggageCart: faLuggageCart,\n faLungs: faLungs,\n faLungsVirus: faLungsVirus,\n faMagic: faMagic,\n faMagnet: faMagnet,\n faMailBulk: faMailBulk,\n faMale: faMale,\n faMap: faMap,\n faMapMarked: faMapMarked,\n faMapMarkedAlt: faMapMarkedAlt,\n faMapMarker: faMapMarker,\n faMapMarkerAlt: faMapMarkerAlt,\n faMapPin: faMapPin,\n faMapSigns: faMapSigns,\n faMarker: faMarker,\n faMars: faMars,\n faMarsDouble: faMarsDouble,\n faMarsStroke: faMarsStroke,\n faMarsStrokeH: faMarsStrokeH,\n faMarsStrokeV: faMarsStrokeV,\n faMask: faMask,\n faMedal: faMedal,\n faMedkit: faMedkit,\n faMeh: faMeh,\n faMehBlank: faMehBlank,\n faMehRollingEyes: faMehRollingEyes,\n faMemory: faMemory,\n faMenorah: faMenorah,\n faMercury: faMercury,\n faMeteor: faMeteor,\n faMicrochip: faMicrochip,\n faMicrophone: faMicrophone,\n faMicrophoneAlt: faMicrophoneAlt,\n faMicrophoneAltSlash: faMicrophoneAltSlash,\n faMicrophoneSlash: faMicrophoneSlash,\n faMicroscope: faMicroscope,\n faMinus: faMinus,\n faMinusCircle: faMinusCircle,\n faMinusSquare: faMinusSquare,\n faMitten: faMitten,\n faMobile: faMobile,\n faMobileAlt: faMobileAlt,\n faMoneyBill: faMoneyBill,\n faMoneyBillAlt: faMoneyBillAlt,\n faMoneyBillWave: faMoneyBillWave,\n faMoneyBillWaveAlt: faMoneyBillWaveAlt,\n faMoneyCheck: faMoneyCheck,\n faMoneyCheckAlt: faMoneyCheckAlt,\n faMonument: faMonument,\n faMoon: faMoon,\n faMortarPestle: faMortarPestle,\n faMosque: faMosque,\n faMotorcycle: faMotorcycle,\n faMountain: faMountain,\n faMouse: faMouse,\n faMousePointer: faMousePointer,\n faMugHot: faMugHot,\n faMusic: faMusic,\n faNetworkWired: faNetworkWired,\n faNeuter: faNeuter,\n faNewspaper: faNewspaper,\n faNotEqual: faNotEqual,\n faNotesMedical: faNotesMedical,\n faObjectGroup: faObjectGroup,\n faObjectUngroup: faObjectUngroup,\n faOilCan: faOilCan,\n faOm: faOm,\n faOtter: faOtter,\n faOutdent: faOutdent,\n faPager: faPager,\n faPaintBrush: faPaintBrush,\n faPaintRoller: faPaintRoller,\n faPalette: faPalette,\n faPallet: faPallet,\n faPaperPlane: faPaperPlane,\n faPaperclip: faPaperclip,\n faParachuteBox: faParachuteBox,\n faParagraph: faParagraph,\n faParking: faParking,\n faPassport: faPassport,\n faPastafarianism: faPastafarianism,\n faPaste: faPaste,\n faPause: faPause,\n faPauseCircle: faPauseCircle,\n faPaw: faPaw,\n faPeace: faPeace,\n faPen: faPen,\n faPenAlt: faPenAlt,\n faPenFancy: faPenFancy,\n faPenNib: faPenNib,\n faPenSquare: faPenSquare,\n faPencilAlt: faPencilAlt,\n faPencilRuler: faPencilRuler,\n faPeopleArrows: faPeopleArrows,\n faPeopleCarry: faPeopleCarry,\n faPepperHot: faPepperHot,\n faPercent: faPercent,\n faPercentage: faPercentage,\n faPersonBooth: faPersonBooth,\n faPhone: faPhone,\n faPhoneAlt: faPhoneAlt,\n faPhoneSlash: faPhoneSlash,\n faPhoneSquare: faPhoneSquare,\n faPhoneSquareAlt: faPhoneSquareAlt,\n faPhoneVolume: faPhoneVolume,\n faPhotoVideo: faPhotoVideo,\n faPiggyBank: faPiggyBank,\n faPills: faPills,\n faPizzaSlice: faPizzaSlice,\n faPlaceOfWorship: faPlaceOfWorship,\n faPlane: faPlane,\n faPlaneArrival: faPlaneArrival,\n faPlaneDeparture: faPlaneDeparture,\n faPlaneSlash: faPlaneSlash,\n faPlay: faPlay,\n faPlayCircle: faPlayCircle,\n faPlug: faPlug,\n faPlus: faPlus,\n faPlusCircle: faPlusCircle,\n faPlusSquare: faPlusSquare,\n faPodcast: faPodcast,\n faPoll: faPoll,\n faPollH: faPollH,\n faPoo: faPoo,\n faPooStorm: faPooStorm,\n faPoop: faPoop,\n faPortrait: faPortrait,\n faPoundSign: faPoundSign,\n faPowerOff: faPowerOff,\n faPray: faPray,\n faPrayingHands: faPrayingHands,\n faPrescription: faPrescription,\n faPrescriptionBottle: faPrescriptionBottle,\n faPrescriptionBottleAlt: faPrescriptionBottleAlt,\n faPrint: faPrint,\n faProcedures: faProcedures,\n faProjectDiagram: faProjectDiagram,\n faPumpMedical: faPumpMedical,\n faPumpSoap: faPumpSoap,\n faPuzzlePiece: faPuzzlePiece,\n faQrcode: faQrcode,\n faQuestion: faQuestion,\n faQuestionCircle: faQuestionCircle,\n faQuidditch: faQuidditch,\n faQuoteLeft: faQuoteLeft,\n faQuoteRight: faQuoteRight,\n faQuran: faQuran,\n faRadiation: faRadiation,\n faRadiationAlt: faRadiationAlt,\n faRainbow: faRainbow,\n faRandom: faRandom,\n faReceipt: faReceipt,\n faRecordVinyl: faRecordVinyl,\n faRecycle: faRecycle,\n faRedo: faRedo,\n faRedoAlt: faRedoAlt,\n faRegistered: faRegistered,\n faRemoveFormat: faRemoveFormat,\n faReply: faReply,\n faReplyAll: faReplyAll,\n faRepublican: faRepublican,\n faRestroom: faRestroom,\n faRetweet: faRetweet,\n faRibbon: faRibbon,\n faRing: faRing,\n faRoad: faRoad,\n faRobot: faRobot,\n faRocket: faRocket,\n faRoute: faRoute,\n faRss: faRss,\n faRssSquare: faRssSquare,\n faRubleSign: faRubleSign,\n faRuler: faRuler,\n faRulerCombined: faRulerCombined,\n faRulerHorizontal: faRulerHorizontal,\n faRulerVertical: faRulerVertical,\n faRunning: faRunning,\n faRupeeSign: faRupeeSign,\n faSadCry: faSadCry,\n faSadTear: faSadTear,\n faSatellite: faSatellite,\n faSatelliteDish: faSatelliteDish,\n faSave: faSave,\n faSchool: faSchool,\n faScrewdriver: faScrewdriver,\n faScroll: faScroll,\n faSdCard: faSdCard,\n faSearch: faSearch,\n faSearchDollar: faSearchDollar,\n faSearchLocation: faSearchLocation,\n faSearchMinus: faSearchMinus,\n faSearchPlus: faSearchPlus,\n faSeedling: faSeedling,\n faServer: faServer,\n faShapes: faShapes,\n faShare: faShare,\n faShareAlt: faShareAlt,\n faShareAltSquare: faShareAltSquare,\n faShareSquare: faShareSquare,\n faShekelSign: faShekelSign,\n faShieldAlt: faShieldAlt,\n faShieldVirus: faShieldVirus,\n faShip: faShip,\n faShippingFast: faShippingFast,\n faShoePrints: faShoePrints,\n faShoppingBag: faShoppingBag,\n faShoppingBasket: faShoppingBasket,\n faShoppingCart: faShoppingCart,\n faShower: faShower,\n faShuttleVan: faShuttleVan,\n faSign: faSign,\n faSignInAlt: faSignInAlt,\n faSignLanguage: faSignLanguage,\n faSignOutAlt: faSignOutAlt,\n faSignal: faSignal,\n faSignature: faSignature,\n faSimCard: faSimCard,\n faSink: faSink,\n faSitemap: faSitemap,\n faSkating: faSkating,\n faSkiing: faSkiing,\n faSkiingNordic: faSkiingNordic,\n faSkull: faSkull,\n faSkullCrossbones: faSkullCrossbones,\n faSlash: faSlash,\n faSleigh: faSleigh,\n faSlidersH: faSlidersH,\n faSmile: faSmile,\n faSmileBeam: faSmileBeam,\n faSmileWink: faSmileWink,\n faSmog: faSmog,\n faSmoking: faSmoking,\n faSmokingBan: faSmokingBan,\n faSms: faSms,\n faSnowboarding: faSnowboarding,\n faSnowflake: faSnowflake,\n faSnowman: faSnowman,\n faSnowplow: faSnowplow,\n faSoap: faSoap,\n faSocks: faSocks,\n faSolarPanel: faSolarPanel,\n faSort: faSort,\n faSortAlphaDown: faSortAlphaDown,\n faSortAlphaDownAlt: faSortAlphaDownAlt,\n faSortAlphaUp: faSortAlphaUp,\n faSortAlphaUpAlt: faSortAlphaUpAlt,\n faSortAmountDown: faSortAmountDown,\n faSortAmountDownAlt: faSortAmountDownAlt,\n faSortAmountUp: faSortAmountUp,\n faSortAmountUpAlt: faSortAmountUpAlt,\n faSortDown: faSortDown,\n faSortNumericDown: faSortNumericDown,\n faSortNumericDownAlt: faSortNumericDownAlt,\n faSortNumericUp: faSortNumericUp,\n faSortNumericUpAlt: faSortNumericUpAlt,\n faSortUp: faSortUp,\n faSpa: faSpa,\n faSpaceShuttle: faSpaceShuttle,\n faSpellCheck: faSpellCheck,\n faSpider: faSpider,\n faSpinner: faSpinner,\n faSplotch: faSplotch,\n faSprayCan: faSprayCan,\n faSquare: faSquare,\n faSquareFull: faSquareFull,\n faSquareRootAlt: faSquareRootAlt,\n faStamp: faStamp,\n faStar: faStar,\n faStarAndCrescent: faStarAndCrescent,\n faStarHalf: faStarHalf,\n faStarHalfAlt: faStarHalfAlt,\n faStarOfDavid: faStarOfDavid,\n faStarOfLife: faStarOfLife,\n faStepBackward: faStepBackward,\n faStepForward: faStepForward,\n faStethoscope: faStethoscope,\n faStickyNote: faStickyNote,\n faStop: faStop,\n faStopCircle: faStopCircle,\n faStopwatch: faStopwatch,\n faStopwatch20: faStopwatch20,\n faStore: faStore,\n faStoreAlt: faStoreAlt,\n faStoreAltSlash: faStoreAltSlash,\n faStoreSlash: faStoreSlash,\n faStream: faStream,\n faStreetView: faStreetView,\n faStrikethrough: faStrikethrough,\n faStroopwafel: faStroopwafel,\n faSubscript: faSubscript,\n faSubway: faSubway,\n faSuitcase: faSuitcase,\n faSuitcaseRolling: faSuitcaseRolling,\n faSun: faSun,\n faSuperscript: faSuperscript,\n faSurprise: faSurprise,\n faSwatchbook: faSwatchbook,\n faSwimmer: faSwimmer,\n faSwimmingPool: faSwimmingPool,\n faSynagogue: faSynagogue,\n faSync: faSync,\n faSyncAlt: faSyncAlt,\n faSyringe: faSyringe,\n faTable: faTable,\n faTableTennis: faTableTennis,\n faTablet: faTablet,\n faTabletAlt: faTabletAlt,\n faTablets: faTablets,\n faTachometerAlt: faTachometerAlt,\n faTag: faTag,\n faTags: faTags,\n faTape: faTape,\n faTasks: faTasks,\n faTaxi: faTaxi,\n faTeeth: faTeeth,\n faTeethOpen: faTeethOpen,\n faTemperatureHigh: faTemperatureHigh,\n faTemperatureLow: faTemperatureLow,\n faTenge: faTenge,\n faTerminal: faTerminal,\n faTextHeight: faTextHeight,\n faTextWidth: faTextWidth,\n faTh: faTh,\n faThLarge: faThLarge,\n faThList: faThList,\n faTheaterMasks: faTheaterMasks,\n faThermometer: faThermometer,\n faThermometerEmpty: faThermometerEmpty,\n faThermometerFull: faThermometerFull,\n faThermometerHalf: faThermometerHalf,\n faThermometerQuarter: faThermometerQuarter,\n faThermometerThreeQuarters: faThermometerThreeQuarters,\n faThumbsDown: faThumbsDown,\n faThumbsUp: faThumbsUp,\n faThumbtack: faThumbtack,\n faTicketAlt: faTicketAlt,\n faTimes: faTimes,\n faTimesCircle: faTimesCircle,\n faTint: faTint,\n faTintSlash: faTintSlash,\n faTired: faTired,\n faToggleOff: faToggleOff,\n faToggleOn: faToggleOn,\n faToilet: faToilet,\n faToiletPaper: faToiletPaper,\n faToiletPaperSlash: faToiletPaperSlash,\n faToolbox: faToolbox,\n faTools: faTools,\n faTooth: faTooth,\n faTorah: faTorah,\n faToriiGate: faToriiGate,\n faTractor: faTractor,\n faTrademark: faTrademark,\n faTrafficLight: faTrafficLight,\n faTrailer: faTrailer,\n faTrain: faTrain,\n faTram: faTram,\n faTransgender: faTransgender,\n faTransgenderAlt: faTransgenderAlt,\n faTrash: faTrash,\n faTrashAlt: faTrashAlt,\n faTrashRestore: faTrashRestore,\n faTrashRestoreAlt: faTrashRestoreAlt,\n faTree: faTree,\n faTrophy: faTrophy,\n faTruck: faTruck,\n faTruckLoading: faTruckLoading,\n faTruckMonster: faTruckMonster,\n faTruckMoving: faTruckMoving,\n faTruckPickup: faTruckPickup,\n faTshirt: faTshirt,\n faTty: faTty,\n faTv: faTv,\n faUmbrella: faUmbrella,\n faUmbrellaBeach: faUmbrellaBeach,\n faUnderline: faUnderline,\n faUndo: faUndo,\n faUndoAlt: faUndoAlt,\n faUniversalAccess: faUniversalAccess,\n faUniversity: faUniversity,\n faUnlink: faUnlink,\n faUnlock: faUnlock,\n faUnlockAlt: faUnlockAlt,\n faUpload: faUpload,\n faUser: faUser,\n faUserAlt: faUserAlt,\n faUserAltSlash: faUserAltSlash,\n faUserAstronaut: faUserAstronaut,\n faUserCheck: faUserCheck,\n faUserCircle: faUserCircle,\n faUserClock: faUserClock,\n faUserCog: faUserCog,\n faUserEdit: faUserEdit,\n faUserFriends: faUserFriends,\n faUserGraduate: faUserGraduate,\n faUserInjured: faUserInjured,\n faUserLock: faUserLock,\n faUserMd: faUserMd,\n faUserMinus: faUserMinus,\n faUserNinja: faUserNinja,\n faUserNurse: faUserNurse,\n faUserPlus: faUserPlus,\n faUserSecret: faUserSecret,\n faUserShield: faUserShield,\n faUserSlash: faUserSlash,\n faUserTag: faUserTag,\n faUserTie: faUserTie,\n faUserTimes: faUserTimes,\n faUsers: faUsers,\n faUsersCog: faUsersCog,\n faUsersSlash: faUsersSlash,\n faUtensilSpoon: faUtensilSpoon,\n faUtensils: faUtensils,\n faVectorSquare: faVectorSquare,\n faVenus: faVenus,\n faVenusDouble: faVenusDouble,\n faVenusMars: faVenusMars,\n faVest: faVest,\n faVestPatches: faVestPatches,\n faVial: faVial,\n faVials: faVials,\n faVideo: faVideo,\n faVideoSlash: faVideoSlash,\n faVihara: faVihara,\n faVirus: faVirus,\n faVirusSlash: faVirusSlash,\n faViruses: faViruses,\n faVoicemail: faVoicemail,\n faVolleyballBall: faVolleyballBall,\n faVolumeDown: faVolumeDown,\n faVolumeMute: faVolumeMute,\n faVolumeOff: faVolumeOff,\n faVolumeUp: faVolumeUp,\n faVoteYea: faVoteYea,\n faVrCardboard: faVrCardboard,\n faWalking: faWalking,\n faWallet: faWallet,\n faWarehouse: faWarehouse,\n faWater: faWater,\n faWaveSquare: faWaveSquare,\n faWeight: faWeight,\n faWeightHanging: faWeightHanging,\n faWheelchair: faWheelchair,\n faWifi: faWifi,\n faWind: faWind,\n faWindowClose: faWindowClose,\n faWindowMaximize: faWindowMaximize,\n faWindowMinimize: faWindowMinimize,\n faWindowRestore: faWindowRestore,\n faWineBottle: faWineBottle,\n faWineGlass: faWineGlass,\n faWineGlassAlt: faWineGlassAlt,\n faWonSign: faWonSign,\n faWrench: faWrench,\n faXRay: faXRay,\n faYenSign: faYenSign,\n faYinYang: faYinYang\n};\n\nexport { _iconsCache as fas, prefix, faAd, faAddressBook, faAddressCard, faAdjust, faAirFreshener, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faAnkh, faAppleAlt, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAtom, faAudioDescription, faAward, faBaby, faBabyCarriage, faBackspace, faBackward, faBacon, faBacteria, faBacterium, faBahai, faBalanceScale, faBalanceScaleLeft, faBalanceScaleRight, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBible, faBicycle, faBiking, faBinoculars, faBiohazard, faBirthdayCake, faBlender, faBlenderPhone, faBlind, faBlog, faBold, faBolt, faBomb, faBone, faBong, faBook, faBookDead, faBookMedical, faBookOpen, faBookReader, faBookmark, faBorderAll, faBorderNone, faBorderStyle, faBowlingBall, faBox, faBoxOpen, faBoxTissue, faBoxes, faBraille, faBrain, faBreadSlice, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faBusinessTime, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarDay, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCalendarWeek, faCamera, faCameraRetro, faCampground, faCandyCane, faCannabis, faCapsules, faCar, faCarAlt, faCarBattery, faCarCrash, faCarSide, faCaravan, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCarrot, faCartArrowDown, faCartPlus, faCashRegister, faCat, faCertificate, faChair, faChalkboard, faChalkboardTeacher, faChargingStation, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faCheese, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faCity, faClinicMedical, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudMeatball, faCloudMoon, faCloudMoonRain, faCloudRain, faCloudShowersHeavy, faCloudSun, faCloudSunRain, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDollar, faCommentDots, faCommentMedical, faCommentSlash, faComments, faCommentsDollar, faCompactDisc, faCompass, faCompress, faCompressAlt, faCompressArrowsAlt, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCross, faCrosshairs, faCrow, faCrown, faCrutch, faCube, faCubes, faCut, faDatabase, faDeaf, faDemocrat, faDesktop, faDharmachakra, faDiagnoses, faDice, faDiceD20, faDiceD6, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDirections, faDisease, faDivide, faDizzy, faDna, faDog, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDragon, faDrawPolygon, faDrum, faDrumSteelpan, faDrumstickBite, faDumbbell, faDumpster, faDumpsterFire, faDungeon, faEdit, faEgg, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeOpenText, faEnvelopeSquare, faEquals, faEraser, faEthernet, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandAlt, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFan, faFastBackward, faFastForward, faFaucet, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileCsv, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireAlt, faFireExtinguisher, faFirstAid, faFish, faFistRaised, faFlag, faFlagCheckered, faFlagUsa, faFlask, faFlushed, faFolder, faFolderMinus, faFolderOpen, faFolderPlus, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFunnelDollar, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGhost, faGift, faGifts, faGlassCheers, faGlassMartini, faGlassMartiniAlt, faGlassWhiskey, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGlobeEurope, faGolfBall, faGopuram, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripLines, faGripLinesVertical, faGripVertical, faGuitar, faHSquare, faHamburger, faHammer, faHamsa, faHandHolding, faHandHoldingHeart, faHandHoldingMedical, faHandHoldingUsd, faHandHoldingWater, faHandLizard, faHandMiddleFinger, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSparkles, faHandSpock, faHands, faHandsHelping, faHandsWash, faHandshake, faHandshakeAltSlash, faHandshakeSlash, faHanukiah, faHardHat, faHashtag, faHatCowboy, faHatCowboySide, faHatWizard, faHdd, faHeadSideCough, faHeadSideCoughSlash, faHeadSideMask, faHeadSideVirus, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartBroken, faHeartbeat, faHelicopter, faHighlighter, faHiking, faHippo, faHistory, faHockeyPuck, faHollyBerry, faHome, faHorse, faHorseHead, faHospital, faHospitalAlt, faHospitalSymbol, faHospitalUser, faHotTub, faHotdog, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faHouseDamage, faHouseUser, faHryvnia, faICursor, faIceCream, faIcicles, faIcons, faIdBadge, faIdCard, faIdCardAlt, faIgloo, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJedi, faJoint, faJournalWhills, faKaaba, faKey, faKeyboard, faKhanda, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLandmark, faLanguage, faLaptop, faLaptopCode, faLaptopHouse, faLaptopMedical, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLayerGroup, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faLungs, faLungsVirus, faMagic, faMagnet, faMailBulk, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMask, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMenorah, faMercury, faMeteor, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMicroscope, faMinus, faMinusCircle, faMinusSquare, faMitten, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMosque, faMotorcycle, faMountain, faMouse, faMousePointer, faMugHot, faMusic, faNetworkWired, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOilCan, faOm, faOtter, faOutdent, faPager, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPastafarianism, faPaste, faPause, faPauseCircle, faPaw, faPeace, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleArrows, faPeopleCarry, faPepperHot, faPercent, faPercentage, faPersonBooth, faPhone, faPhoneAlt, faPhoneSlash, faPhoneSquare, faPhoneSquareAlt, faPhoneVolume, faPhotoVideo, faPiggyBank, faPills, faPizzaSlice, faPlaceOfWorship, faPlane, faPlaneArrival, faPlaneDeparture, faPlaneSlash, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoll, faPollH, faPoo, faPooStorm, faPoop, faPortrait, faPoundSign, faPowerOff, faPray, faPrayingHands, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPumpMedical, faPumpSoap, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faQuran, faRadiation, faRadiationAlt, faRainbow, faRandom, faReceipt, faRecordVinyl, faRecycle, faRedo, faRedoAlt, faRegistered, faRemoveFormat, faReply, faReplyAll, faRepublican, faRestroom, faRetweet, faRibbon, faRing, faRoad, faRobot, faRocket, faRoute, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRunning, faRupeeSign, faSadCry, faSadTear, faSatellite, faSatelliteDish, faSave, faSchool, faScrewdriver, faScroll, faSdCard, faSearch, faSearchDollar, faSearchLocation, faSearchMinus, faSearchPlus, faSeedling, faServer, faShapes, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShieldVirus, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSimCard, faSink, faSitemap, faSkating, faSkiing, faSkiingNordic, faSkull, faSkullCrossbones, faSlash, faSleigh, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmog, faSmoking, faSmokingBan, faSms, faSnowboarding, faSnowflake, faSnowman, faSnowplow, faSoap, faSocks, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaDownAlt, faSortAlphaUp, faSortAlphaUpAlt, faSortAmountDown, faSortAmountDownAlt, faSortAmountUp, faSortAmountUpAlt, faSortDown, faSortNumericDown, faSortNumericDownAlt, faSortNumericUp, faSortNumericUpAlt, faSortUp, faSpa, faSpaceShuttle, faSpellCheck, faSpider, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faSquareRootAlt, faStamp, faStar, faStarAndCrescent, faStarHalf, faStarHalfAlt, faStarOfDavid, faStarOfLife, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStopwatch20, faStore, faStoreAlt, faStoreAltSlash, faStoreSlash, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSynagogue, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTeeth, faTeethOpen, faTemperatureHigh, faTemperatureLow, faTenge, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faTheaterMasks, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToilet, faToiletPaper, faToiletPaperSlash, faToolbox, faTools, faTooth, faTorah, faToriiGate, faTractor, faTrademark, faTrafficLight, faTrailer, faTrain, faTram, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTrashRestore, faTrashRestoreAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMonster, faTruckMoving, faTruckPickup, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserInjured, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserNurse, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUsersSlash, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVest, faVestPatches, faVial, faVials, faVideo, faVideoSlash, faVihara, faVirus, faVirusSlash, faViruses, faVoicemail, faVolleyballBall, faVolumeDown, faVolumeMute, faVolumeOff, faVolumeUp, faVoteYea, faVrCardboard, faWalking, faWallet, faWarehouse, faWater, faWaveSquare, faWeight, faWeightHanging, faWheelchair, faWifi, faWind, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineBottle, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign, faYinYang };\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport {\n modulePropsDecoder,\n parseIntOr,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type EventsHistoryProps = {\n type: ItemType.AUTO_SLA_GRAPH;\n maxTime: number | null;\n legendColor: string;\n html: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function eventsHistoryPropsDecoder(\n data: AnyObject\n): EventsHistoryProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.AUTO_SLA_GRAPH,\n maxTime: parseIntOr(data.maxTime, null),\n legendColor: data.legendColor,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class EventsHistory extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"events-history\";\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const aux = document.createElement(\"div\");\n aux.innerHTML = this.props.html;\n const scripts = aux.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type DonutGraphProps = {\n type: ItemType.DONUT_GRAPH;\n html: string;\n legendBackgroundColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the donut graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function donutGraphPropsDecoder(\n data: AnyObject\n): DonutGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.DONUT_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n legendBackgroundColor: stringIsEmpty(data.legendBackgroundColor)\n ? \"#000000\"\n : data.legendBackgroundColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class DonutGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"donut-graph\";\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n setTimeout(() => {\n if (scripts[i].src.length === 0) eval(scripts[i].innerHTML.trim());\n }, 0);\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const aux = document.createElement(\"div\");\n aux.innerHTML = this.props.html;\n const scripts = aux.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type ModuleGraphProps = {\n type: ItemType.MODULE_GRAPH;\n html: string;\n backgroundType: \"white\" | \"black\" | \"transparent\";\n graphType: \"line\" | \"area\";\n period: number | null;\n customGraphId: number | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param backgroundType Raw value.\n */\nconst parseBackgroundType = (\n backgroundType: unknown\n): ModuleGraphProps[\"backgroundType\"] => {\n switch (backgroundType) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundType;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param graphType Raw value.\n */\nconst parseGraphType = (graphType: unknown): ModuleGraphProps[\"graphType\"] => {\n switch (graphType) {\n case \"line\":\n case \"area\":\n return graphType;\n default:\n return \"line\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the module graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function moduleGraphPropsDecoder(\n data: AnyObject\n): ModuleGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.MODULE_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundType: parseBackgroundType(data.backgroundType),\n period: parseIntOr(data.period, null),\n graphType: parseGraphType(data.graphType),\n customGraphId: parseIntOr(data.customGraphId, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class ModuleGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n element.innerHTML = this.props.html;\n element.className = \"module-graph\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BasicChartProps = {\n type: ItemType.BASIC_CHART;\n html: string;\n period: number | null;\n value: number | null;\n status: string;\n moduleNameColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the basic chart props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function basicChartPropsDecoder(\n data: AnyObject\n): BasicChartProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BASIC_CHART,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n period: parseIntOr(data.period, null),\n value: parseFloat(data.value),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n moduleNameColor: stringIsEmpty(data.moduleNameColor)\n ? \"#3f3f3f\"\n : data.moduleNameColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BasicChart extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.className = \"basic-chart\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n\n protected number_format(\n number: number,\n force_integer: boolean,\n unit: string,\n short_data: number,\n divisor: number\n ) {\n divisor = typeof divisor !== \"undefined\" ? divisor : 1000;\n var decimals = 2;\n\n // Set maximum decimal precision to 99 in case short_data is not set.\n if (!short_data) {\n short_data = 99;\n }\n\n if (force_integer) {\n if (Math.round(number) != number) {\n return \"\";\n }\n } else {\n short_data++;\n const aux_decimals = this.pad(\"1\", short_data, 0);\n number =\n Math.round(number * Number.parseInt(aux_decimals)) /\n Number.parseInt(aux_decimals);\n }\n\n var shorts = [\"\", \"K\", \"M\", \"G\", \"T\", \"P\", \"E\", \"Z\", \"Y\"];\n var pos = 0;\n\n while (Math.abs(number) >= divisor) {\n // As long as the number can be divided by 1000 or 1024.\n pos++;\n number = number / divisor;\n }\n\n if (divisor) {\n number = Math.round(number * decimals) / decimals;\n } else {\n number = Math.round(number * decimals);\n }\n\n if (isNaN(number)) {\n number = 0;\n }\n\n return number + \" \" + shorts[pos] + unit;\n }\n\n protected pad(input: string, length: number, padding: number): string {\n var str = input + \"\";\n return length <= str.length\n ? str\n : this.pad(str + padding, length, padding);\n }\n}\n","module.exports = \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARpJREFUeNqUU8ENwjAMTCsGyAiwAIIN2hdfmACYgLIACBYAJgA26JcXbABigo7QEbhDFxSFEIlIp7Sxz/Y5jjGJtb30B0TKJ4uQCmwLYByYauC8Gj1r/zAPyEdsV6AFhnDOCH4DDXCkD2C/KhCZWUuQHr8kMQiDwWfyqQAGEmchmedA5f5lI7HA+cyXsAY2kcxT2YwXhFIO7jyXHpZ2CktWmb2Imj3QpaRcZBc51FxJWhiYTWa1tmPSyyZsretBo2zW/LeKdwCV3kQGJzWhlNWCe3O3cGZXf1TRBmSrGziEg3TXZ6kmxTKTvFPj337+KJfa7xqs2Bu5SvvcJckiGSo9JqOrMspoNStLv8Is0ajCdRrrxmAxaS8BBgA1e3UUTVCKKgAAAABJRU5ErkJggg==\"","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject\n} from \"../lib/types\";\n\nimport {\n modulePropsDecoder,\n linkedVCPropsDecoder,\n notEmptyStringOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type StaticGraphProps = {\n type: ItemType.STATIC_GRAPH;\n imageSrc: string; // URL?\n showLastValueTooltip: \"default\" | \"enabled\" | \"disabled\";\n statusImageSrc: string | null; // URL?\n lastValue: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param showLastValueTooltip Raw value.\n */\nconst parseShowLastValueTooltip = (\n showLastValueTooltip: unknown\n): StaticGraphProps[\"showLastValueTooltip\"] => {\n switch (showLastValueTooltip) {\n case \"default\":\n case \"enabled\":\n case \"disabled\":\n return showLastValueTooltip;\n default:\n return \"default\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function staticGraphPropsDecoder(\n data: AnyObject\n): StaticGraphProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.STATIC_GRAPH,\n imageSrc: data.imageSrc,\n showLastValueTooltip: parseShowLastValueTooltip(data.showLastValueTooltip),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n lastValue: notEmptyStringOr(data.lastValue, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class StaticGraph extends Item {\n protected createDomElement(): HTMLElement {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n const element = document.createElement(\"div\");\n element.className = \"static-graph\";\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n element.style.backgroundImage = `url(${imgSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Show last value in a tooltip.\n if (\n this.props.lastValue !== null &&\n this.props.showLastValueTooltip !== \"disabled\"\n ) {\n element.className = \"static-graph image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\"data-title\", this.props.lastValue);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n element.style.backgroundImage = `url(${imgSrc})`;\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type IconProps = {\n type: ItemType.ICON;\n image: string;\n imageSrc: string; // URL?\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the icon props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function iconPropsDecoder(data: AnyObject): IconProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n if (typeof data.image !== \"string\" || data.image.length === 0) {\n throw new TypeError(\"invalid image.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ICON,\n image: data.image,\n imageSrc: data.imageSrc,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Icon extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"icon \" + this.props.image;\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n }\n}\n","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject,\n WithAgentProps\n} from \"../lib/types\";\nimport { modulePropsDecoder, linkedVCPropsDecoder, t } from \"../lib\";\nimport Item, { itemBasePropsDecoder, ItemType, ItemProps } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport { faTrashAlt, faPlusCircle } from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ColorCloudProps = {\n type: ItemType.COLOR_CLOUD;\n color: string;\n defaultColor: string;\n colorRanges: {\n color: string;\n fromValue: number;\n toValue: number;\n }[];\n // TODO: Add the rest of the color cloud values?\n} & ItemProps &\n WithAgentProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function colorCloudPropsDecoder(\n data: AnyObject\n): ColorCloudProps | never {\n // TODO: Validate the color.\n if (typeof data.color !== \"string\" || data.color.length === 0) {\n throw new TypeError(\"invalid color.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.COLOR_CLOUD,\n color: data.color,\n defaultColor: data.defaultColor,\n colorRanges: data.colorRanges,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n/**\n * Class to add item to the Color cloud item form\n * This item consists of a label and a color type input color.\n * Element default color is stored in the color property\n */\nclass ColorInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group\";\n\n const colorLabel = document.createElement(\"label\");\n colorLabel.textContent = t(\"Default color\");\n\n generalDiv.appendChild(colorLabel);\n\n const ColorInput = document.createElement(\"input\");\n ColorInput.type = \"color\";\n ColorInput.required = true;\n\n ColorInput.value = `${this.currentData.defaultColor ||\n this.initialData.defaultColor ||\n \"#000000\"}`;\n\n ColorInput.addEventListener(\"change\", e => {\n this.updateData({\n defaultColor: (e.target as HTMLInputElement).value\n });\n });\n\n generalDiv.appendChild(ColorInput);\n\n return generalDiv;\n }\n}\n\ntype ColorRanges = ColorCloudProps[\"colorRanges\"];\ntype ColorRange = ColorRanges[0];\n\nclass RangesInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group div-ranges-input-group\";\n\n const rangesLabel = this.createLabel(\"Ranges\");\n\n generalDiv.appendChild(rangesLabel);\n\n const rangesControlsContainer = document.createElement(\"div\");\n const createdRangesContainer = document.createElement(\"div\");\n\n generalDiv.appendChild(createdRangesContainer);\n generalDiv.appendChild(rangesControlsContainer);\n\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n\n let buildRanges: (ranges: ColorRanges) => void;\n\n const handleRangeUpdatePartial = (index: number) => (\n range: ColorRange\n ): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n this.updateData({\n colorRanges: [\n ...colorRanges.slice(0, index),\n range,\n ...colorRanges.slice(index + 1)\n ]\n });\n };\n\n const handleDelete = (index: number) => () => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [\n ...colorRanges.slice(0, index),\n ...colorRanges.slice(index + 1)\n ];\n\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n const handleCreate = (range: ColorRange): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [...colorRanges, range];\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n buildRanges = ranges => {\n createdRangesContainer.innerHTML = \"\";\n ranges.forEach((colorRange, index) =>\n createdRangesContainer.appendChild(\n this.rangeContainer(\n colorRange,\n handleRangeUpdatePartial(index),\n handleDelete(index)\n )\n )\n );\n };\n\n buildRanges(colorRanges);\n\n rangesControlsContainer.appendChild(\n this.initialRangeContainer(handleCreate)\n );\n\n return generalDiv;\n }\n\n private initialRangeContainer(onCreate: (range: ColorRange) => void) {\n // TODO: Document\n const initialState = { color: \"#ffffff\" };\n\n let state: Partial = { ...initialState };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n };\n\n // User defined type guard.\n // Docs: https://www.typescriptlang.org/docs/handbook/advanced-types.html#user-defined-type-guards\n const isValid = (range: Partial): range is ColorRange =>\n typeof range.color !== \"undefined\" &&\n typeof range.toValue !== \"undefined\" &&\n typeof range.fromValue !== \"undefined\";\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(null, handleFromValue);\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(null, handleToValue);\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n initialState.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const createBtn = document.createElement(\"a\");\n createBtn.appendChild(\n fontAwesomeIcon(faPlusCircle, t(\"Create color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n\n const handleCreate = () => {\n if (isValid(state)) onCreate(state);\n state = initialState;\n rangesInputFromValue.value = `${state.fromValue || \"\"}`;\n rangesInputToValue.value = `${state.toValue || \"\"}`;\n rangesInputColor.value = `${state.color}`;\n };\n\n createBtn.addEventListener(\"click\", handleCreate);\n\n rangesContainer.appendChild(createBtn);\n\n return rangesContainer;\n }\n\n private rangeContainer(\n colorRange: ColorRange,\n onUpdate: (range: ColorRange) => void,\n onDelete: () => void\n ): HTMLDivElement {\n // TODO: Document\n const state = { ...colorRange };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n onUpdate({ ...state });\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n onUpdate({ ...state });\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n onUpdate({ ...state });\n };\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(\n colorRange.fromValue,\n handleFromValue\n );\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(\n colorRange.toValue,\n handleToValue\n );\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n colorRange.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const deleteBtn = document.createElement(\"a\");\n deleteBtn.appendChild(\n fontAwesomeIcon(faTrashAlt, t(\"Delete color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n deleteBtn.addEventListener(\"click\", onDelete);\n\n rangesContainer.appendChild(deleteBtn);\n\n return rangesContainer;\n }\n\n private createLabel(text: string): HTMLLabelElement {\n const label = document.createElement(\"label\");\n label.textContent = t(text);\n return label;\n }\n\n private createInputNumber(\n value: number | null,\n onUpdate: (value: number) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"number\";\n if (value !== null) input.value = `${value}`;\n input.addEventListener(\"change\", e => {\n const value = parseInt((e.target as HTMLInputElement).value);\n if (!isNaN(value)) onUpdate(value);\n });\n\n return input;\n }\n\n private createInputColor(\n value: string | null,\n onUpdate: (value: string) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"color\";\n if (value !== null) input.value = value;\n input.addEventListener(\"change\", e =>\n onUpdate((e.target as HTMLInputElement).value)\n );\n\n return input;\n }\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class ColorCloud extends Item {\n protected createDomElement(): HTMLElement {\n const container: HTMLDivElement = document.createElement(\"div\");\n container.className = \"color-cloud\";\n\n // Add the SVG.\n container.append(this.createSvgElement());\n\n return container;\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width);\n }\n\n public createSvgElement(): SVGSVGElement {\n const gradientId = `grad_${this.props.id}`;\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Defs.\n const defs = document.createElementNS(svgNS, \"defs\");\n // Radial gradient.\n const radialGradient = document.createElementNS(svgNS, \"radialGradient\");\n radialGradient.setAttribute(\"id\", gradientId);\n radialGradient.setAttribute(\"cx\", \"50%\");\n radialGradient.setAttribute(\"cy\", \"50%\");\n radialGradient.setAttribute(\"r\", \"50%\");\n radialGradient.setAttribute(\"fx\", \"50%\");\n radialGradient.setAttribute(\"fy\", \"50%\");\n // Stops.\n const stop0 = document.createElementNS(svgNS, \"stop\");\n stop0.setAttribute(\"offset\", \"0%\");\n stop0.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0.9`\n );\n const stop100 = document.createElementNS(svgNS, \"stop\");\n stop100.setAttribute(\"offset\", \"100%\");\n stop100.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0`\n );\n // Circle.\n const circle = document.createElementNS(svgNS, \"circle\");\n circle.setAttribute(\"fill\", `url(#${gradientId})`);\n circle.setAttribute(\"cx\", \"50%\");\n circle.setAttribute(\"cy\", \"50%\");\n circle.setAttribute(\"r\", \"50%\");\n\n // Append elements.\n radialGradient.append(stop0, stop100);\n defs.append(radialGradient);\n svg.append(defs, circle);\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n return svg;\n }\n\n /**\n * @override function to add or remove inputsGroups those that are not necessary.\n * Add to:\n * ColorInputGroup\n * RangesInputGroup\n */\n public getFormContainer(): FormContainer {\n return ColorCloud.getFormContainer(this.props);\n }\n\n public static getFormContainer(\n props: Partial\n ): FormContainer {\n const formContainer = super.getFormContainer(props);\n formContainer.removeInputGroup(\"label\");\n\n formContainer.addInputGroup(new ColorInputGroup(\"color-cloud\", props), 3);\n formContainer.addInputGroup(new RangesInputGroup(\"ranges-cloud\", props), 4);\n\n return formContainer;\n }\n}\n","import { AnyObject, Position, Size, ItemMeta } from \"../lib/types\";\nimport {\n parseIntOr,\n notEmptyStringOr,\n debounce,\n addMovementListener\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport TypedEvent, { Listener, Disposable } from \"../lib/TypedEvent\";\n\nexport interface LineProps extends ItemProps {\n // Overrided properties.\n type: number;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n startPosition: Position;\n endPosition: Position;\n lineWidth: number;\n color: string | null;\n viewportOffsetX: number;\n viewportOffsetY: number;\n labelEnd: string;\n labelStart: string;\n linkedEnd: number | null;\n linkedStart: number | null;\n labelEndWidth: number;\n labelEndHeight: number;\n labelStartWidth: number;\n labelStartHeight: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function linePropsDecoder(data: AnyObject): LineProps | never {\n const props: LineProps = {\n ...itemBasePropsDecoder({ ...data, width: 1, height: 1 }), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LINE_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Initialize Position & Size.\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n // Custom properties.\n startPosition: {\n x: parseIntOr(data.startX, 0),\n y: parseIntOr(data.startY, 0)\n },\n endPosition: {\n x: parseIntOr(data.endX, 0),\n y: parseIntOr(data.endY, 0)\n },\n lineWidth: parseIntOr(data.lineWidth || data.borderWidth, 1),\n color: notEmptyStringOr(data.borderColor || data.color, null),\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n linkedEnd: data.linkedEnd,\n linkedStart: data.linkedStart,\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n\n /*\n * We need to enhance the props with the extracted size and position\n * of the box cause there are missing at the props update. A better\n * solution would be overriding the props setter to do it there, but\n * the language doesn't allow it while targetting ES5.\n * TODO: We need to figure out a more consistent solution.\n */\n\n return {\n ...props,\n // Enhance the props extracting the box size and position.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n ...Line.extractBoxSizeAndPosition(props.startPosition, props.endPosition)\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface LineMovedEvent {\n item: Line;\n startPosition: LineProps[\"startPosition\"];\n endPosition: LineProps[\"endPosition\"];\n}\n\nexport default class Line extends Item {\n protected circleRadius = 8;\n // To control if the line movement is enabled.\n protected moveMode: boolean = false;\n // To control if the line is moving.\n protected isMoving: boolean = false;\n\n // Event manager for moved events.\n public readonly lineMovedEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n protected readonly lineMovedEventDisposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedStartPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const startPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeStartPositionMovement: Function | null = null;\n\n /**\n * Start the movement funtionality for the start position.\n * @param element Element to move inside its container.\n */\n protected initStartPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeStartPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n const startPosition = { x, y };\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n startPosition\n };\n\n // Run the end function.\n this.debouncedStartPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement fun\n */\n private stopStartPositionMovementListener(): void {\n if (this.removeStartPositionMovement) {\n this.removeStartPositionMovement();\n this.removeStartPositionMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedEndPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeEndPositionMovement: Function | null = null;\n\n /**\n * End the movement funtionality for the end position.\n * @param element Element to move inside its container.\n */\n protected initEndPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeEndPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n endPosition: { x, y }\n };\n\n // Run the end function.\n this.debouncedEndPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement function.\n */\n private stopEndPositionMovementListener(): void {\n if (this.removeEndPositionMovement) {\n this.removeEndPositionMovement();\n this.removeEndPositionMovement = null;\n }\n }\n\n /**\n * @override\n */\n public constructor(props: LineProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props,\n ...Line.extractBoxSizeAndPosition(\n props.startPosition,\n props.endPosition\n )\n },\n {\n ...meta\n },\n true\n );\n\n this.moveMode = meta.editMode;\n this.init();\n\n super.resizeElement(\n Math.max(props.width, props.viewportOffsetX),\n Math.max(props.height, props.viewportOffsetY)\n );\n }\n\n /**\n * Classic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n * @override Item.setProps\n */\n public setProps(newProps: LineProps) {\n super.setProps({\n ...newProps,\n ...Line.extractBoxSizeAndPosition(\n newProps.startPosition,\n newProps.endPosition\n )\n });\n }\n\n /**\n * Classic and protected version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newMetadata\n * @override Item.setMeta\n */\n public setMeta(newMetadata: ItemMeta) {\n this.moveMode = newMetadata.editMode;\n super.setMeta({\n ...newMetadata,\n lineMode: true\n });\n }\n\n /**\n * @override\n * To create the item's DOM representation.\n * @return Item.\n */\n protected createDomElement(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"line\";\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness,\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const line = document.createElementNS(svgNS, \"line\");\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n\n svg.append(line);\n element.append(svg);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n if (element.parentElement != null) {\n element.parentElement.style.cursor = \"default\";\n }\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n const svgs = element.getElementsByTagName(\"svg\");\n\n if (svgs.length > 0) {\n const svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n\n if (lines.length > 0) {\n const line = lines.item(0);\n\n if (line != null) {\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n }\n }\n }\n }\n\n if (this.moveMode) {\n let startCircle: HTMLElement = document.createElement(\"div\");\n let endCircle: HTMLElement = document.createElement(\"div\");\n\n if (this.isMoving) {\n const circlesStart = element.getElementsByClassName(\n \"visual-console-item-line-circle-start\"\n );\n if (circlesStart.length > 0) {\n const circle = circlesStart.item(0) as HTMLElement;\n if (circle) startCircle = circle;\n }\n const circlesEnd = element.getElementsByClassName(\n \"visual-console-item-line-circle-end\"\n );\n if (circlesEnd.length > 0) {\n const circle = circlesEnd.item(0) as HTMLElement;\n if (circle) endCircle = circle;\n }\n }\n\n startCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-start\"\n );\n startCircle.style.width = `${this.circleRadius * 2}px`;\n startCircle.style.height = `${this.circleRadius * 2}px`;\n startCircle.style.borderRadius = \"50%\";\n startCircle.style.backgroundColor = `${color}`;\n startCircle.style.position = \"absolute\";\n startCircle.style.left = `${x1 - this.circleRadius}px`;\n startCircle.style.top = `${y1 - this.circleRadius}px`;\n startCircle.style.cursor = `move`;\n\n endCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-end\"\n );\n endCircle.style.width = `${this.circleRadius * 2}px`;\n endCircle.style.height = `${this.circleRadius * 2}px`;\n endCircle.style.borderRadius = \"50%\";\n endCircle.style.backgroundColor = `${color}`;\n endCircle.style.position = \"absolute\";\n endCircle.style.left = `${x2 - this.circleRadius}px`;\n endCircle.style.top = `${y2 - this.circleRadius}px`;\n endCircle.style.cursor = `move`;\n\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n\n element.parentElement.appendChild(startCircle);\n element.parentElement.appendChild(endCircle);\n }\n\n // Init the movement listeners.\n this.initStartPositionMovementListener(\n startCircle,\n this.elementRef.parentElement as HTMLElement\n );\n this.initEndPositionMovementListener(\n endCircle,\n this.elementRef.parentElement as HTMLElement\n );\n } else if (!this.moveMode) {\n this.stopStartPositionMovementListener();\n // Remove circles.\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n }\n } else {\n this.stopStartPositionMovementListener();\n }\n }\n\n /**\n * Extract the size and position of the box from\n * the start and the finish of the line.\n * @param props Item properties.\n */\n public static extractBoxSizeAndPosition(\n startPosition: Position,\n endPosition: Position\n ): Size & Position {\n return {\n width: Math.abs(startPosition.x - endPosition.x),\n height: Math.abs(startPosition.y - endPosition.y),\n x: Math.min(startPosition.x, endPosition.x),\n y: Math.min(startPosition.y, endPosition.y)\n };\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n * @override item function\n */\n public move(x: number, y: number): void {\n super.moveElement(x, y);\n const startIsLeft =\n this.props.startPosition.x - this.props.endPosition.x <= 0;\n const startIsTop =\n this.props.startPosition.y - this.props.endPosition.y <= 0;\n\n const start = {\n x: startIsLeft ? x : this.props.width + x,\n y: startIsTop ? y : this.props.height + y\n };\n\n const end = {\n x: startIsLeft ? this.props.width + x : x,\n y: startIsTop ? this.props.height + y : y\n };\n\n this.props = {\n ...this.props,\n startPosition: start,\n endPosition: end\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override Item.remove\n */\n public remove(): void {\n // Clear the item's event listeners.\n this.stopStartPositionMovementListener();\n // Call the parent's .remove()\n super.remove();\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n *\n * @override Item.onMoved\n */\n public onLineMovementFinished(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.lineMovedEventDisposables.push(disposable);\n\n return disposable;\n }\n}\n","import { AnyObject, Position, ItemMeta } from \"../lib/types\";\nimport { debounce, notEmptyStringOr, parseIntOr } from \"../lib\";\nimport { ItemType } from \"../Item\";\nimport Line, { LineProps, linePropsDecoder } from \"./Line\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface NetworkLinkProps extends LineProps {\n // Overrided properties.\n type: number;\n labelStart: string;\n labelEnd: string;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function networkLinkPropsDecoder(\n data: AnyObject\n): NetworkLinkProps | never {\n return {\n ...linePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.NETWORK_LINK,\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n}\n\nexport default class NetworkLink extends Line {\n /**\n * @override\n */\n public constructor(props: NetworkLinkProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props\n },\n {\n ...meta\n }\n );\n\n this.render();\n }\n\n /**\n * @override\n */\n protected debouncedStartPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n\n const startPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n\n protected debouncedEndPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n\n protected updateDomElement(element: HTMLElement): void {\n super.updateDomElement(element);\n\n let {\n x, // Box x\n y, // Box y\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color, // Line color\n labelEnd,\n labelStart,\n labelEndWidth,\n labelEndHeight,\n labelStartWidth,\n labelStartHeight\n } = this.props;\n\n const svgs = element.getElementsByTagName(\"svg\");\n let line;\n let svg;\n\n if (svgs.length > 0) {\n svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n let groups = svg.getElementsByTagNameNS(svgNS, \"g\");\n while (groups.length > 0) {\n groups[0].remove();\n }\n\n if (lines.length > 0) {\n line = lines.item(0);\n }\n }\n } else {\n // No line or svg, no more actions are required.\n return;\n }\n\n if (svg == null || line == null) {\n // No more actionas are required.\n return;\n }\n\n // Font size and text adjustments.\n const fontsize = 10;\n const adjustment = 25;\n\n const lineX1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const lineX2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n let x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n let x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // Calculate angle (rotation).\n let rad = Math.atan2(lineY2 - lineY1, lineX2 - lineX1);\n let g = (rad * 180) / Math.PI;\n\n // Calculate effective 'text' box sizes.\n const fontheight = 25;\n if (labelStartWidth <= 0) {\n let lines = labelStart.split(\"
    \");\n labelStartWidth = 0;\n lines.forEach(l => {\n if (l.length > labelStartWidth) {\n labelStartWidth = l.length * fontsize;\n }\n });\n if (labelStartHeight <= 0) {\n labelStartHeight = lines.length * fontheight;\n }\n }\n\n if (labelEndWidth <= 0) {\n let lines = labelEnd.split(\"
    \");\n labelEndWidth = 0;\n lines.forEach(l => {\n if (l.length > labelEndWidth) {\n labelEndWidth = l.length * fontsize;\n }\n });\n if (labelEndHeight <= 0) {\n labelEndHeight = lines.length * fontheight;\n }\n }\n\n if (x1 < x2) {\n // x1 on left of x2.\n x1 += adjustment;\n x2 -= adjustment + labelEndWidth;\n }\n\n if (x1 > x2) {\n // x1 on right of x2.\n x1 -= adjustment + labelStartWidth;\n x2 += adjustment;\n }\n\n if (y1 < y2) {\n // y1 on y2.\n y1 += adjustment;\n y2 -= adjustment + labelEndHeight;\n }\n\n if (y1 > y2) {\n // y1 under y2.\n y1 -= adjustment + labelStartHeight;\n y2 += adjustment;\n }\n\n if (typeof color == \"undefined\") {\n color = \"#000\";\n }\n\n // Clean.\n if (element.parentElement !== null) {\n const labels = element.parentElement.getElementsByClassName(\n \"vc-item-nl-label\"\n );\n while (labels.length > 0) {\n const label = labels.item(0);\n if (label) label.remove();\n }\n\n const arrows = element.parentElement.getElementsByClassName(\n \"vc-item-nl-arrow\"\n );\n while (arrows.length > 0) {\n const arrow = arrows.item(0);\n if (arrow) arrow.remove();\n }\n }\n\n let arrowSize = lineWidth * 2;\n\n let arrowPosX = lineX1 + (lineX2 - lineX1) / 2 - arrowSize;\n let arrowPosY = lineY1 + (lineY2 - lineY1) / 2 - arrowSize;\n\n let arrowStart: HTMLElement = document.createElement(\"div\");\n arrowStart.classList.add(\"vc-item-nl-arrow\");\n arrowStart.style.position = \"absolute\";\n arrowStart.style.border = `${arrowSize}px solid transparent`;\n arrowStart.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowStart.style.left = `${arrowPosX}px`;\n arrowStart.style.top = `${arrowPosY}px`;\n arrowStart.style.transform = `rotate(${90 + g}deg)`;\n\n let arrowEnd: HTMLElement = document.createElement(\"div\");\n arrowEnd.classList.add(\"vc-item-nl-arrow\");\n arrowEnd.style.position = \"absolute\";\n arrowEnd.style.border = `${arrowSize}px solid transparent`;\n arrowEnd.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowEnd.style.left = `${arrowPosX}px`;\n arrowEnd.style.top = `${arrowPosY}px`;\n arrowEnd.style.transform = `rotate(${270 + g}deg)`;\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(arrowStart);\n element.parentElement.appendChild(arrowEnd);\n }\n\n if (labelStart != \"\") {\n let htmlLabelStart: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelStart.innerHTML = labelStart;\n htmlLabelStart.style.position = \"absolute\";\n htmlLabelStart.style.left = `${x1}px`;\n htmlLabelStart.style.top = `${y1}px`;\n htmlLabelStart.style.width = `${labelStartWidth}px`;\n htmlLabelStart.style.border = `2px solid ${color}`;\n\n htmlLabelStart.classList.add(\"vc-item-nl-label\", \"label-start\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelStart);\n }\n }\n\n if (labelEnd != \"\") {\n let htmlLabelEnd: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelEnd.innerHTML = labelEnd;\n htmlLabelEnd.style.position = \"absolute\";\n htmlLabelEnd.style.left = `${x2}px`;\n htmlLabelEnd.style.top = `${y2}px`;\n htmlLabelEnd.style.width = `${labelEndWidth}px`;\n htmlLabelEnd.style.border = `2px solid ${color}`;\n\n htmlLabelEnd.classList.add(\"vc-item-nl-label\", \"label-end\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelEnd);\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n stringIsEmpty,\n decodeBase64,\n parseBoolean,\n t\n} from \"../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../Item\";\n\nexport type GroupProps = {\n type: ItemType.GROUP_ITEM;\n groupId: number;\n imageSrc: string | null; // URL?\n statusImageSrc: string | null;\n showStatistics: boolean;\n html?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\nfunction extractHtml(data: AnyObject): string | null {\n if (!stringIsEmpty(data.html)) return data.html;\n if (!stringIsEmpty(data.encodedHtml)) return decodeBase64(data.encodedHtml);\n return null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the group props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function groupPropsDecoder(data: AnyObject): GroupProps | never {\n if (\n (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) &&\n data.encodedHtml === null\n ) {\n throw new TypeError(\"invalid image src.\");\n }\n if (parseIntOr(data.groupId, null) === null) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n const showStatistics = parseBoolean(data.showStatistics);\n const html = showStatistics ? extractHtml(data) : null;\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.GROUP_ITEM,\n groupId: parseInt(data.groupId),\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n showStatistics,\n html,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\nexport default class Group extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"group\";\n\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n element.innerHTML = \"\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n }\n}\n","import \"./styles.css\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n Size,\n ItemMeta\n} from \"../../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n parseBoolean,\n prefixedCssRules,\n notEmptyStringOr,\n humanDate,\n humanTime,\n t\n} from \"../../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../../Item\";\n\nexport type ClockProps = {\n type: ItemType.CLOCK;\n clockType: \"analogic\" | \"digital\";\n clockFormat: \"datetime\" | \"time\";\n clockTimezone: string;\n clockTimezoneOffset: number; // Offset of the timezone to UTC in seconds.\n showClockTimezone: boolean;\n color?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockType Raw value.\n */\nconst parseClockType = (clockType: unknown): ClockProps[\"clockType\"] => {\n switch (clockType) {\n case \"analogic\":\n case \"digital\":\n return clockType;\n default:\n return \"analogic\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockFormat Raw value.\n */\nconst parseClockFormat = (clockFormat: unknown): ClockProps[\"clockFormat\"] => {\n switch (clockFormat) {\n case \"datetime\":\n case \"time\":\n return clockFormat;\n default:\n return \"datetime\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the clock props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function clockPropsDecoder(data: AnyObject): ClockProps | never {\n if (\n typeof data.clockTimezone !== \"string\" ||\n data.clockTimezone.length === 0\n ) {\n throw new TypeError(\"invalid timezone.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.CLOCK,\n clockType: parseClockType(data.clockType),\n clockFormat: parseClockFormat(data.clockFormat),\n clockTimezone: data.clockTimezone,\n clockTimezoneOffset: parseIntOr(data.clockTimezoneOffset, 0),\n showClockTimezone: parseBoolean(data.showClockTimezone),\n color: notEmptyStringOr(data.color, null),\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Clock extends Item {\n public static readonly TICK_INTERVAL = 1000; // In ms.\n private intervalRef: number | null = null;\n\n public constructor(props: ClockProps, meta: ItemMeta) {\n // Call the superclass constructor.\n super(props, meta);\n\n /* The item is already loaded and inserted into the DOM.\n * The class properties are now initialized.\n * Now you can modify the item, add event handlers, timers, etc.\n */\n\n /* The use of the arrow function is important here. startTick will\n * use the function passed as an argument to call the global setInterval\n * function. The interval, timeout or event functions, among other, are\n * called into another execution loop and using a different context.\n * The arrow functions, unlike the classic functions, doesn't create\n * their own context (this), so their context at execution time will be\n * use the current context at the declaration time.\n * http://es6-features.org/#Lexicalthis\n */\n this.startTick(\n () => {\n // Replace the old element with the updated date.\n this.childElementRef.innerHTML = this.createClock().innerHTML;\n },\n /* The analogic clock doesn't need to tick,\n * but it will be refreshed every 20 seconds\n * to avoid a desync caused by page freezes.\n */\n this.props.clockType === \"analogic\" ? 20000 : Clock.TICK_INTERVAL\n );\n }\n\n /**\n * Wrap a window.clearInterval call.\n */\n private stopTick(): void {\n if (this.intervalRef !== null) {\n window.clearInterval(this.intervalRef);\n this.intervalRef = null;\n }\n }\n\n /**\n * Wrap a window.setInterval call.\n * @param handler Function to be called every time the interval\n * timer is reached.\n * @param interval Number in milliseconds for the interval timer.\n */\n private startTick(\n handler: TimerHandler,\n interval: number = Clock.TICK_INTERVAL\n ): void {\n this.stopTick();\n this.intervalRef = window.setInterval(handler, interval);\n }\n\n /**\n * Create a element which contains the DOM representation of the item.\n * @return DOM Element.\n * @override\n */\n protected createDomElement(): HTMLElement | never {\n return this.createClock();\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n this.props.width,\n this.props.height\n );\n\n if (this.props.clockType === \"digital\") {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(this.props.width, this.props.height);\n }\n element.classList.replace(\"analogic-clock\", \"digital-clock\");\n } else {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(newWidth, newHeight);\n }\n element.classList.replace(\"digital-clock\", \"analogic-clock\");\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override\n */\n public remove(): void {\n // Clear the interval.\n this.stopTick();\n // Call to the parent clean function.\n super.remove();\n }\n\n /**\n * @override Item.resizeElement\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n width,\n height\n );\n\n // Re-render the item to force it calculate a new font size.\n if (this.props.clockType === \"digital\") {\n super.resizeElement(width, height);\n // Replace the old element with the updated date.\n //this.childElementRef.innerHTML = this.createClock().innerHTML;\n } else {\n super.resizeElement(newWidth, newHeight);\n }\n }\n\n /**\n * Create a element which contains a representation of a clock.\n * It choose between the clock types.\n * @return DOM Element.\n * @throws Error.\n */\n private createClock(): HTMLElement | never {\n switch (this.props.clockType) {\n case \"analogic\":\n return this.createAnalogicClock();\n case \"digital\":\n return this.createDigitalClock();\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n\n /**\n * Create a element which contains a representation of an analogic clock.\n * @return DOM Element.\n */\n private createAnalogicClock(): HTMLElement {\n const svgNS = \"http://www.w3.org/2000/svg\";\n const colors = {\n watchFace: \"#FFFFF0\",\n watchFaceBorder: \"#242124\",\n mark: \"#242124\",\n handDark: \"#242124\",\n handLight: \"#525252\",\n secondHand: \"#DC143C\"\n };\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 20; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * width) / 100;\n\n const div = document.createElement(\"div\");\n div.className = \"analogic-clock\";\n div.style.width = `${width}px`;\n div.style.height = `${height}px`;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Clock face.\n const clockFace = document.createElementNS(svgNS, \"g\");\n clockFace.setAttribute(\"class\", \"clockface\");\n const clockFaceBackground = document.createElementNS(svgNS, \"circle\");\n clockFaceBackground.setAttribute(\"cx\", \"50\");\n clockFaceBackground.setAttribute(\"cy\", \"50\");\n clockFaceBackground.setAttribute(\"r\", \"48\");\n clockFaceBackground.setAttribute(\"fill\", colors.watchFace);\n clockFaceBackground.setAttribute(\"stroke\", colors.watchFaceBorder);\n clockFaceBackground.setAttribute(\"stroke-width\", \"2\");\n clockFaceBackground.setAttribute(\"stroke-linecap\", \"round\");\n // Insert the clockface background into the clockface group.\n clockFace.append(clockFaceBackground);\n\n // Timezone complication.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const timezoneComplication = document.createElementNS(svgNS, \"text\");\n timezoneComplication.setAttribute(\"text-anchor\", \"middle\");\n timezoneComplication.setAttribute(\"font-size\", \"8\");\n timezoneComplication.setAttribute(\n \"transform\",\n \"translate(30 50) rotate(90)\" // Rotate to counter the clock rotation.\n );\n timezoneComplication.setAttribute(\"fill\", colors.mark);\n timezoneComplication.textContent = city;\n clockFace.append(timezoneComplication);\n }\n\n // Marks group.\n const marksGroup = document.createElementNS(svgNS, \"g\");\n marksGroup.setAttribute(\"class\", \"marks\");\n // Build the 12 hours mark.\n const mainMarkGroup = document.createElementNS(svgNS, \"g\");\n mainMarkGroup.setAttribute(\"class\", \"mark\");\n mainMarkGroup.setAttribute(\"transform\", \"translate(50 50)\");\n const mark1a = document.createElementNS(svgNS, \"line\");\n mark1a.setAttribute(\"x1\", \"36\");\n mark1a.setAttribute(\"y1\", \"0\");\n mark1a.setAttribute(\"x2\", \"46\");\n mark1a.setAttribute(\"y2\", \"0\");\n mark1a.setAttribute(\"stroke\", colors.mark);\n mark1a.setAttribute(\"stroke-width\", \"5\");\n const mark1b = document.createElementNS(svgNS, \"line\");\n mark1b.setAttribute(\"x1\", \"36\");\n mark1b.setAttribute(\"y1\", \"0\");\n mark1b.setAttribute(\"x2\", \"46\");\n mark1b.setAttribute(\"y2\", \"0\");\n mark1b.setAttribute(\"stroke\", colors.watchFace);\n mark1b.setAttribute(\"stroke-width\", \"1\");\n // Insert the 12 mark lines into their group.\n mainMarkGroup.append(mark1a, mark1b);\n // Insert the main mark into the marks group.\n marksGroup.append(mainMarkGroup);\n // Build the rest of the marks.\n for (let i = 1; i < 60; i++) {\n const mark = document.createElementNS(svgNS, \"line\");\n mark.setAttribute(\"y1\", \"0\");\n mark.setAttribute(\"y2\", \"0\");\n mark.setAttribute(\"stroke\", colors.mark);\n mark.setAttribute(\"transform\", `translate(50 50) rotate(${i * 6})`);\n\n if (i % 5 === 0) {\n mark.setAttribute(\"x1\", \"38\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", i % 15 === 0 ? \"2\" : \"1\");\n } else {\n mark.setAttribute(\"x1\", \"42\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", \"0.5\");\n }\n\n // Insert the mark into the marks group.\n marksGroup.append(mark);\n }\n\n /* Clock hands */\n\n // Hour hand.\n const hourHand = document.createElementNS(svgNS, \"g\");\n hourHand.setAttribute(\"class\", \"hour-hand\");\n hourHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const hourHandA = document.createElementNS(svgNS, \"line\");\n hourHandA.setAttribute(\"class\", \"hour-hand-a\");\n hourHandA.setAttribute(\"x1\", \"0\");\n hourHandA.setAttribute(\"y1\", \"0\");\n hourHandA.setAttribute(\"x2\", \"30\");\n hourHandA.setAttribute(\"y2\", \"0\");\n hourHandA.setAttribute(\"stroke\", colors.handLight);\n hourHandA.setAttribute(\"stroke-width\", \"4\");\n hourHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const hourHandB = document.createElementNS(svgNS, \"line\");\n hourHandB.setAttribute(\"class\", \"hour-hand-b\");\n hourHandB.setAttribute(\"x1\", \"0\");\n hourHandB.setAttribute(\"y1\", \"0\");\n hourHandB.setAttribute(\"x2\", \"29.9\");\n hourHandB.setAttribute(\"y2\", \"0\");\n hourHandB.setAttribute(\"stroke\", colors.handDark);\n hourHandB.setAttribute(\"stroke-width\", \"3.1\");\n hourHandB.setAttribute(\"stroke-linecap\", \"round\");\n // Append the elements to finish the hour hand.\n hourHand.append(hourHandA, hourHandB);\n\n // Minute hand.\n const minuteHand = document.createElementNS(svgNS, \"g\");\n minuteHand.setAttribute(\"class\", \"minute-hand\");\n minuteHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const minuteHandA = document.createElementNS(svgNS, \"line\");\n minuteHandA.setAttribute(\"class\", \"minute-hand-a\");\n minuteHandA.setAttribute(\"x1\", \"0\");\n minuteHandA.setAttribute(\"y1\", \"0\");\n minuteHandA.setAttribute(\"x2\", \"40\");\n minuteHandA.setAttribute(\"y2\", \"0\");\n minuteHandA.setAttribute(\"stroke\", colors.handLight);\n minuteHandA.setAttribute(\"stroke-width\", \"2\");\n minuteHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const minuteHandB = document.createElementNS(svgNS, \"line\");\n minuteHandB.setAttribute(\"class\", \"minute-hand-b\");\n minuteHandB.setAttribute(\"x1\", \"0\");\n minuteHandB.setAttribute(\"y1\", \"0\");\n minuteHandB.setAttribute(\"x2\", \"39.9\");\n minuteHandB.setAttribute(\"y2\", \"0\");\n minuteHandB.setAttribute(\"stroke\", colors.handDark);\n minuteHandB.setAttribute(\"stroke-width\", \"1.5\");\n minuteHandB.setAttribute(\"stroke-linecap\", \"round\");\n const minuteHandPin = document.createElementNS(svgNS, \"circle\");\n minuteHandPin.setAttribute(\"r\", \"3\");\n minuteHandPin.setAttribute(\"fill\", colors.handDark);\n // Append the elements to finish the minute hand.\n minuteHand.append(minuteHandA, minuteHandB, minuteHandPin);\n\n // Second hand.\n const secondHand = document.createElementNS(svgNS, \"g\");\n secondHand.setAttribute(\"class\", \"second-hand\");\n secondHand.setAttribute(\"transform\", \"translate(50 50)\");\n const secondHandBar = document.createElementNS(svgNS, \"line\");\n secondHandBar.setAttribute(\"x1\", \"0\");\n secondHandBar.setAttribute(\"y1\", \"0\");\n secondHandBar.setAttribute(\"x2\", \"46\");\n secondHandBar.setAttribute(\"y2\", \"0\");\n secondHandBar.setAttribute(\"stroke\", colors.secondHand);\n secondHandBar.setAttribute(\"stroke-width\", \"1\");\n secondHandBar.setAttribute(\"stroke-linecap\", \"round\");\n const secondHandPin = document.createElementNS(svgNS, \"circle\");\n secondHandPin.setAttribute(\"r\", \"2\");\n secondHandPin.setAttribute(\"fill\", colors.secondHand);\n // Append the elements to finish the second hand.\n secondHand.append(secondHandBar, secondHandPin);\n\n // Pin.\n const pin = document.createElementNS(svgNS, \"circle\");\n pin.setAttribute(\"cx\", \"50\");\n pin.setAttribute(\"cy\", \"50\");\n pin.setAttribute(\"r\", \"0.3\");\n pin.setAttribute(\"fill\", colors.handDark);\n\n // Get the hand angles.\n const date = this.getOriginDate();\n const seconds = date.getSeconds();\n const minutes = date.getMinutes();\n const hours = date.getHours();\n const secAngle = (360 / 60) * seconds;\n const minuteAngle = (360 / 60) * minutes + (360 / 60) * (seconds / 60);\n const hourAngle = (360 / 12) * hours + (360 / 12) * (minutes / 60);\n // Set the clock time by moving the hands.\n hourHand.setAttribute(\"transform\", `translate(50 50) rotate(${hourAngle})`);\n minuteHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${minuteAngle})`\n );\n secondHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${secAngle})`\n );\n\n // Build the clock\n svg.append(clockFace, marksGroup, hourHand, minuteHand, secondHand, pin);\n // Rotate the clock to its normal position.\n svg.setAttribute(\"transform\", \"rotate(-90)\");\n\n /* Add the animation declaration to the container.\n * Since the animation keyframes need to know the\n * start angle, this angle is dynamic (current time),\n * and we can't edit keyframes through javascript\n * safely and with backwards compatibility, we need\n * to inject it.\n */\n div.innerHTML = `\n \n `;\n // Add the clock to the container\n div.append(svg);\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n div.append(dateElem);\n }\n\n return div;\n }\n\n /**\n * Create a element which contains a representation of a digital clock.\n * @return DOM Element.\n */\n private createDigitalClock(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"digital-clock\";\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n let modified = width;\n if (height < width) {\n modified = height;\n }\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 35; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const tzFontSizeMultiplier = 6 / this.props.clockTimezone.length;\n const timeFontSize = (baseTimeFontSize * modified) / 100;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * modified) / 100;\n const tzFontSize = Math.min(\n (baseTimeFontSize * tzFontSizeMultiplier * modified) / 100,\n (width / 100) * 10\n );\n\n // Date calculated using the original timezone.\n const date = this.getOriginDate();\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n element.append(dateElem);\n }\n\n // Time.\n const timeElem: HTMLSpanElement = document.createElement(\"span\");\n timeElem.className = \"time\";\n timeElem.textContent = humanTime(date);\n timeElem.style.fontSize = `${timeFontSize}px`;\n if (this.props.color) timeElem.style.color = this.props.color;\n element.append(timeElem);\n\n // City name.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const tzElem: HTMLSpanElement = document.createElement(\"span\");\n tzElem.className = \"timezone\";\n tzElem.textContent = city;\n tzElem.style.fontSize = `${tzFontSize}px`;\n if (this.props.color) tzElem.style.color = this.props.color;\n element.append(tzElem);\n }\n\n return element;\n }\n\n /**\n * Generate the current date using the timezone offset stored into the properties.\n * @return The current date.\n */\n private getOriginDate(initialDate: Date | null = null): Date {\n const d = initialDate ? initialDate : new Date();\n const targetTZOffset = this.props.clockTimezoneOffset * 1000; // In ms.\n const localTZOffset = d.getTimezoneOffset() * 60 * 1000; // In ms.\n const utimestamp = d.getTime() + targetTZOffset + localTZOffset;\n\n return new Date(utimestamp);\n }\n\n /**\n * Extract a human readable city name from the timezone text.\n * @param timezone Timezone text.\n */\n public getHumanTimezone(timezone: string = this.props.clockTimezone): string {\n const [, city = \"\"] = timezone.split(\"/\");\n return city.replace(\"_\", \" \");\n }\n\n /**\n * Generate a element size using the current size and the default values.\n * @return The size.\n */\n private getElementSize(\n width: number = this.props.width,\n height: number = this.props.height\n ): Size {\n switch (this.props.clockType) {\n case \"analogic\": {\n let diameter = 100; // Default value.\n\n if (width > 0 && height > 0) {\n diameter = Math.min(width, height);\n } else if (width > 0) {\n diameter = width;\n } else if (height > 0) {\n diameter = height;\n }\n\n let extraHeigth = 0;\n if (this.props.clockFormat === \"datetime\") {\n extraHeigth = height / 8;\n }\n\n return {\n width: diameter,\n height: diameter + extraHeigth\n };\n }\n case \"digital\": {\n if (width > 0 && height > 0) {\n // The proportion of the clock should be (width = height / 2) aproximately.\n height = width / 2 < height ? width / 2 : height;\n } else if (width > 0) {\n height = width / 2;\n } else if (height > 0) {\n // The proportion of the clock should be (height * 2 = width) aproximately.\n width = height * 2;\n } else {\n width = 100; // Default value.\n height = 50; // Default value.\n }\n\n return {\n width,\n height\n };\n }\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport { parseIntOr, notEmptyStringOr, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\ninterface BoxProps extends ItemProps {\n // Overrided properties.\n readonly type: ItemType.BOX_ITEM;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n borderWidth: number;\n borderColor: string | null;\n fillColor: string | null;\n fillTransparent: boolean | null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function boxPropsDecoder(data: AnyObject): BoxProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BOX_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Custom properties.\n borderWidth: parseIntOr(data.borderWidth, 0),\n borderColor: notEmptyStringOr(data.borderColor, null),\n fillColor: notEmptyStringOr(data.fillColor, null),\n fillTransparent: data.fillTransparent\n };\n}\n\nexport default class Box extends Item {\n protected createDomElement(): HTMLElement {\n const box: HTMLDivElement = document.createElement(\"div\");\n box.className = \"box\";\n // To prevent this item to expand beyond its parent.\n box.style.boxSizing = \"border-box\";\n\n if (this.props.fillTransparent) {\n box.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n box.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n box.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n box.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n box.style.borderColor = this.props.borderColor;\n }\n }\n\n return box;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.fillTransparent) {\n element.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n element.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n element.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n element.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n element.style.borderColor = this.props.borderColor;\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type LabelProps = {\n type: ItemType.LABEL;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the label props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function labelPropsDecoder(data: AnyObject): LabelProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LABEL,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Label extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"label\";\n element.innerHTML = this.getLabelWithMacrosReplaced();\n\n return element;\n }\n\n /**\n * @override Item.createLabelDomElement\n * Create a new label for the visual console item.\n * @return Item label.\n */\n public createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n modulePropsDecoder,\n replaceMacros\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type SimpleValueProps = {\n type: ItemType.SIMPLE_VALUE;\n valueType: \"string\" | \"image\";\n value: string;\n} & (\n | {\n processValue: \"none\";\n }\n | {\n processValue: \"avg\" | \"max\" | \"min\";\n period: number;\n }\n) &\n ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw value type.\n * @param valueType Raw value.\n */\nconst parseValueType = (valueType: unknown): SimpleValueProps[\"valueType\"] => {\n switch (valueType) {\n case \"string\":\n case \"image\":\n return valueType;\n default:\n return \"string\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw process value.\n * @param processValue Raw value.\n */\nconst parseProcessValue = (\n processValue: unknown\n): SimpleValueProps[\"processValue\"] => {\n switch (processValue) {\n case \"none\":\n case \"avg\":\n case \"max\":\n case \"min\":\n return processValue;\n default:\n return \"none\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the simple value props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function simpleValuePropsDecoder(\n data: AnyObject\n): SimpleValueProps | never {\n if (typeof data.value !== \"string\" || data.value.length === 0) {\n throw new TypeError(\"invalid value\");\n }\n\n const processValue = parseProcessValue(data.processValue);\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SIMPLE_VALUE,\n valueType: parseValueType(data.valueType),\n value: data.value,\n ...(processValue === \"none\"\n ? { processValue }\n : { processValue, period: parseIntOr(data.period, 0) }), // Object spread. It will merge the properties of the two objects.\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class SimpleValue extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"simple-value\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n if (this.props.valueType === \"image\") {\n const img = document.createElement(\"img\");\n img.src = this.props.value;\n element.append(img);\n } else {\n // Add the value to the label and show it.\n let text = this.props.value;\n let label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n text = replaceMacros([{ macro: /\\(?_VALUE_\\)?/i, value: text }], label);\n }\n\n element.innerHTML = text;\n }\n\n return element;\n }\n\n /**\n * Generate a element size\n * using the current size and the default values.\n * @return The size.\n */ protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","var pi = Math.PI,\n tau = 2 * pi,\n epsilon = 1e-6,\n tauEpsilon = tau - epsilon;\n\nfunction Path() {\n this._x0 = this._y0 = // start of current subpath\n this._x1 = this._y1 = null; // end of current subpath\n this._ = \"\";\n}\n\nfunction path() {\n return new Path;\n}\n\nPath.prototype = path.prototype = {\n constructor: Path,\n moveTo: function(x, y) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y);\n },\n closePath: function() {\n if (this._x1 !== null) {\n this._x1 = this._x0, this._y1 = this._y0;\n this._ += \"Z\";\n }\n },\n lineTo: function(x, y) {\n this._ += \"L\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n quadraticCurveTo: function(x1, y1, x, y) {\n this._ += \"Q\" + (+x1) + \",\" + (+y1) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n bezierCurveTo: function(x1, y1, x2, y2, x, y) {\n this._ += \"C\" + (+x1) + \",\" + (+y1) + \",\" + (+x2) + \",\" + (+y2) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n arcTo: function(x1, y1, x2, y2, r) {\n x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r;\n var x0 = this._x1,\n y0 = this._y1,\n x21 = x2 - x1,\n y21 = y2 - y1,\n x01 = x0 - x1,\n y01 = y0 - y1,\n l01_2 = x01 * x01 + y01 * y01;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x1,y1).\n if (this._x1 === null) {\n this._ += \"M\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.\n else if (!(l01_2 > epsilon));\n\n // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?\n // Equivalently, is (x1,y1) coincident with (x2,y2)?\n // Or, is the radius zero? Line to (x1,y1).\n else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) {\n this._ += \"L\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Otherwise, draw an arc!\n else {\n var x20 = x2 - x0,\n y20 = y2 - y0,\n l21_2 = x21 * x21 + y21 * y21,\n l20_2 = x20 * x20 + y20 * y20,\n l21 = Math.sqrt(l21_2),\n l01 = Math.sqrt(l01_2),\n l = r * Math.tan((pi - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2),\n t01 = l / l01,\n t21 = l / l21;\n\n // If the start tangent is not coincident with (x0,y0), line to.\n if (Math.abs(t01 - 1) > epsilon) {\n this._ += \"L\" + (x1 + t01 * x01) + \",\" + (y1 + t01 * y01);\n }\n\n this._ += \"A\" + r + \",\" + r + \",0,0,\" + (+(y01 * x20 > x01 * y20)) + \",\" + (this._x1 = x1 + t21 * x21) + \",\" + (this._y1 = y1 + t21 * y21);\n }\n },\n arc: function(x, y, r, a0, a1, ccw) {\n x = +x, y = +y, r = +r, ccw = !!ccw;\n var dx = r * Math.cos(a0),\n dy = r * Math.sin(a0),\n x0 = x + dx,\n y0 = y + dy,\n cw = 1 ^ ccw,\n da = ccw ? a0 - a1 : a1 - a0;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x0,y0).\n if (this._x1 === null) {\n this._ += \"M\" + x0 + \",\" + y0;\n }\n\n // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0).\n else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) {\n this._ += \"L\" + x0 + \",\" + y0;\n }\n\n // Is this arc empty? We’re done.\n if (!r) return;\n\n // Does the angle go the wrong way? Flip the direction.\n if (da < 0) da = da % tau + tau;\n\n // Is this a complete circle? Draw two arcs to complete the circle.\n if (da > tauEpsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (x - dx) + \",\" + (y - dy) + \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (this._x1 = x0) + \",\" + (this._y1 = y0);\n }\n\n // Is this arc non-empty? Draw an arc!\n else if (da > epsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,\" + (+(da >= pi)) + \",\" + cw + \",\" + (this._x1 = x + r * Math.cos(a1)) + \",\" + (this._y1 = y + r * Math.sin(a1));\n }\n },\n rect: function(x, y, w, h) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y) + \"h\" + (+w) + \"v\" + (+h) + \"h\" + (-w) + \"Z\";\n },\n toString: function() {\n return this._;\n }\n};\n\nexport default path;\n","export default function(x) {\n return function constant() {\n return x;\n };\n}\n","export var abs = Math.abs;\nexport var atan2 = Math.atan2;\nexport var cos = Math.cos;\nexport var max = Math.max;\nexport var min = Math.min;\nexport var sin = Math.sin;\nexport var sqrt = Math.sqrt;\n\nexport var epsilon = 1e-12;\nexport var pi = Math.PI;\nexport var halfPi = pi / 2;\nexport var tau = 2 * pi;\n\nexport function acos(x) {\n return x > 1 ? 0 : x < -1 ? pi : Math.acos(x);\n}\n\nexport function asin(x) {\n return x >= 1 ? halfPi : x <= -1 ? -halfPi : Math.asin(x);\n}\n","import {path} from \"d3-path\";\nimport constant from \"./constant.js\";\nimport {abs, acos, asin, atan2, cos, epsilon, halfPi, max, min, pi, sin, sqrt, tau} from \"./math.js\";\n\nfunction arcInnerRadius(d) {\n return d.innerRadius;\n}\n\nfunction arcOuterRadius(d) {\n return d.outerRadius;\n}\n\nfunction arcStartAngle(d) {\n return d.startAngle;\n}\n\nfunction arcEndAngle(d) {\n return d.endAngle;\n}\n\nfunction arcPadAngle(d) {\n return d && d.padAngle; // Note: optional!\n}\n\nfunction intersect(x0, y0, x1, y1, x2, y2, x3, y3) {\n var x10 = x1 - x0, y10 = y1 - y0,\n x32 = x3 - x2, y32 = y3 - y2,\n t = y32 * x10 - x32 * y10;\n if (t * t < epsilon) return;\n t = (x32 * (y0 - y2) - y32 * (x0 - x2)) / t;\n return [x0 + t * x10, y0 + t * y10];\n}\n\n// Compute perpendicular offset line of length rc.\n// http://mathworld.wolfram.com/Circle-LineIntersection.html\nfunction cornerTangents(x0, y0, x1, y1, r1, rc, cw) {\n var x01 = x0 - x1,\n y01 = y0 - y1,\n lo = (cw ? rc : -rc) / sqrt(x01 * x01 + y01 * y01),\n ox = lo * y01,\n oy = -lo * x01,\n x11 = x0 + ox,\n y11 = y0 + oy,\n x10 = x1 + ox,\n y10 = y1 + oy,\n x00 = (x11 + x10) / 2,\n y00 = (y11 + y10) / 2,\n dx = x10 - x11,\n dy = y10 - y11,\n d2 = dx * dx + dy * dy,\n r = r1 - rc,\n D = x11 * y10 - x10 * y11,\n d = (dy < 0 ? -1 : 1) * sqrt(max(0, r * r * d2 - D * D)),\n cx0 = (D * dy - dx * d) / d2,\n cy0 = (-D * dx - dy * d) / d2,\n cx1 = (D * dy + dx * d) / d2,\n cy1 = (-D * dx + dy * d) / d2,\n dx0 = cx0 - x00,\n dy0 = cy0 - y00,\n dx1 = cx1 - x00,\n dy1 = cy1 - y00;\n\n // Pick the closer of the two intersection points.\n // TODO Is there a faster way to determine which intersection to use?\n if (dx0 * dx0 + dy0 * dy0 > dx1 * dx1 + dy1 * dy1) cx0 = cx1, cy0 = cy1;\n\n return {\n cx: cx0,\n cy: cy0,\n x01: -ox,\n y01: -oy,\n x11: cx0 * (r1 / r - 1),\n y11: cy0 * (r1 / r - 1)\n };\n}\n\nexport default function() {\n var innerRadius = arcInnerRadius,\n outerRadius = arcOuterRadius,\n cornerRadius = constant(0),\n padRadius = null,\n startAngle = arcStartAngle,\n endAngle = arcEndAngle,\n padAngle = arcPadAngle,\n context = null;\n\n function arc() {\n var buffer,\n r,\n r0 = +innerRadius.apply(this, arguments),\n r1 = +outerRadius.apply(this, arguments),\n a0 = startAngle.apply(this, arguments) - halfPi,\n a1 = endAngle.apply(this, arguments) - halfPi,\n da = abs(a1 - a0),\n cw = a1 > a0;\n\n if (!context) context = buffer = path();\n\n // Ensure that the outer radius is always larger than the inner radius.\n if (r1 < r0) r = r1, r1 = r0, r0 = r;\n\n // Is it a point?\n if (!(r1 > epsilon)) context.moveTo(0, 0);\n\n // Or is it a circle or annulus?\n else if (da > tau - epsilon) {\n context.moveTo(r1 * cos(a0), r1 * sin(a0));\n context.arc(0, 0, r1, a0, a1, !cw);\n if (r0 > epsilon) {\n context.moveTo(r0 * cos(a1), r0 * sin(a1));\n context.arc(0, 0, r0, a1, a0, cw);\n }\n }\n\n // Or is it a circular or annular sector?\n else {\n var a01 = a0,\n a11 = a1,\n a00 = a0,\n a10 = a1,\n da0 = da,\n da1 = da,\n ap = padAngle.apply(this, arguments) / 2,\n rp = (ap > epsilon) && (padRadius ? +padRadius.apply(this, arguments) : sqrt(r0 * r0 + r1 * r1)),\n rc = min(abs(r1 - r0) / 2, +cornerRadius.apply(this, arguments)),\n rc0 = rc,\n rc1 = rc,\n t0,\n t1;\n\n // Apply padding? Note that since r1 ≥ r0, da1 ≥ da0.\n if (rp > epsilon) {\n var p0 = asin(rp / r0 * sin(ap)),\n p1 = asin(rp / r1 * sin(ap));\n if ((da0 -= p0 * 2) > epsilon) p0 *= (cw ? 1 : -1), a00 += p0, a10 -= p0;\n else da0 = 0, a00 = a10 = (a0 + a1) / 2;\n if ((da1 -= p1 * 2) > epsilon) p1 *= (cw ? 1 : -1), a01 += p1, a11 -= p1;\n else da1 = 0, a01 = a11 = (a0 + a1) / 2;\n }\n\n var x01 = r1 * cos(a01),\n y01 = r1 * sin(a01),\n x10 = r0 * cos(a10),\n y10 = r0 * sin(a10);\n\n // Apply rounded corners?\n if (rc > epsilon) {\n var x11 = r1 * cos(a11),\n y11 = r1 * sin(a11),\n x00 = r0 * cos(a00),\n y00 = r0 * sin(a00),\n oc;\n\n // Restrict the corner radius according to the sector angle.\n if (da < pi && (oc = intersect(x01, y01, x00, y00, x11, y11, x10, y10))) {\n var ax = x01 - oc[0],\n ay = y01 - oc[1],\n bx = x11 - oc[0],\n by = y11 - oc[1],\n kc = 1 / sin(acos((ax * bx + ay * by) / (sqrt(ax * ax + ay * ay) * sqrt(bx * bx + by * by))) / 2),\n lc = sqrt(oc[0] * oc[0] + oc[1] * oc[1]);\n rc0 = min(rc, (r0 - lc) / (kc - 1));\n rc1 = min(rc, (r1 - lc) / (kc + 1));\n }\n }\n\n // Is the sector collapsed to a line?\n if (!(da1 > epsilon)) context.moveTo(x01, y01);\n\n // Does the sector’s outer ring have rounded corners?\n else if (rc1 > epsilon) {\n t0 = cornerTangents(x00, y00, x01, y01, r1, rc1, cw);\n t1 = cornerTangents(x11, y11, x10, y10, r1, rc1, cw);\n\n context.moveTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc1 < rc) context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r1, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), !cw);\n context.arc(t1.cx, t1.cy, rc1, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the outer ring just a circular arc?\n else context.moveTo(x01, y01), context.arc(0, 0, r1, a01, a11, !cw);\n\n // Is there no inner ring, and it’s a circular sector?\n // Or perhaps it’s an annular sector collapsed due to padding?\n if (!(r0 > epsilon) || !(da0 > epsilon)) context.lineTo(x10, y10);\n\n // Does the sector’s inner ring (or point) have rounded corners?\n else if (rc0 > epsilon) {\n t0 = cornerTangents(x10, y10, x11, y11, r0, -rc0, cw);\n t1 = cornerTangents(x01, y01, x00, y00, r0, -rc0, cw);\n\n context.lineTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc0 < rc) context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r0, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), cw);\n context.arc(t1.cx, t1.cy, rc0, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the inner ring just a circular arc?\n else context.arc(0, 0, r0, a10, a00, cw);\n }\n\n context.closePath();\n\n if (buffer) return context = null, buffer + \"\" || null;\n }\n\n arc.centroid = function() {\n var r = (+innerRadius.apply(this, arguments) + +outerRadius.apply(this, arguments)) / 2,\n a = (+startAngle.apply(this, arguments) + +endAngle.apply(this, arguments)) / 2 - pi / 2;\n return [cos(a) * r, sin(a) * r];\n };\n\n arc.innerRadius = function(_) {\n return arguments.length ? (innerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : innerRadius;\n };\n\n arc.outerRadius = function(_) {\n return arguments.length ? (outerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : outerRadius;\n };\n\n arc.cornerRadius = function(_) {\n return arguments.length ? (cornerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : cornerRadius;\n };\n\n arc.padRadius = function(_) {\n return arguments.length ? (padRadius = _ == null ? null : typeof _ === \"function\" ? _ : constant(+_), arc) : padRadius;\n };\n\n arc.startAngle = function(_) {\n return arguments.length ? (startAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : startAngle;\n };\n\n arc.endAngle = function(_) {\n return arguments.length ? (endAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : endAngle;\n };\n\n arc.padAngle = function(_) {\n return arguments.length ? (padAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : padAngle;\n };\n\n arc.context = function(_) {\n return arguments.length ? ((context = _ == null ? null : _), arc) : context;\n };\n\n return arc;\n}\n","import { arc as arcFactory } from \"d3-shape\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n notEmptyStringOr,\n parseIntOr,\n parseFloatOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type PercentileProps = {\n type: ItemType.PERCENTILE_BAR;\n percentileType:\n | \"progress-bar\"\n | \"bubble\"\n | \"circular-progress-bar\"\n | \"circular-progress-bar-alt\";\n valueType: \"percent\" | \"value\";\n minValue: number | null;\n maxValue: number | null;\n color: string | null;\n labelColor: string | null;\n value: number | null;\n unit: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw type value.\n * @param type Raw value.\n */\nfunction extractPercentileType(\n type: unknown\n): PercentileProps[\"percentileType\"] {\n switch (type) {\n case \"progress-bar\":\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n return type;\n default:\n case ItemType.PERCENTILE_BAR:\n return \"progress-bar\";\n case ItemType.PERCENTILE_BUBBLE:\n return \"bubble\";\n case ItemType.CIRCULAR_PROGRESS_BAR:\n return \"circular-progress-bar\";\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return \"circular-progress-bar-alt\";\n }\n}\n\n/**\n * Extract a valid enum value from a raw value type value.\n * @param type Raw value.\n */\nfunction extractValueType(valueType: unknown): PercentileProps[\"valueType\"] {\n switch (valueType) {\n case \"percent\":\n case \"value\":\n return valueType;\n default:\n return \"percent\";\n }\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the percentile props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function percentilePropsDecoder(\n data: AnyObject\n): PercentileProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.PERCENTILE_BAR,\n percentileType: extractPercentileType(data.percentileType || data.type),\n valueType: extractValueType(data.valueType),\n minValue: parseIntOr(data.minValue, null),\n maxValue: parseIntOr(data.maxValue, null),\n color: notEmptyStringOr(data.color, null),\n labelColor: notEmptyStringOr(data.labelColor, null),\n value: parseFloatOr(data.value, null),\n unit: notEmptyStringOr(data.unit, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class Percentile extends Item {\n protected createDomElement(): HTMLElement {\n const colors = {\n background: \"#000000\",\n progress: this.props.color || \"#F0F0F0\",\n text: this.props.labelColor || \"#444444\"\n };\n // Progress.\n const progress = this.getProgress();\n // Main element.\n const element = document.createElement(\"div\");\n\n var formatValue;\n if (this.props.value != null) {\n if (Intl) {\n formatValue = Intl.NumberFormat(\"en-EN\").format(this.props.value);\n } else {\n formatValue = this.props.value;\n }\n }\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n\n switch (this.props.percentileType) {\n case \"progress-bar\":\n {\n const backgroundRect = document.createElementNS(svgNS, \"rect\");\n backgroundRect.setAttribute(\"fill\", colors.background);\n backgroundRect.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundRect.setAttribute(\"width\", \"100%\");\n backgroundRect.setAttribute(\"height\", \"100%\");\n backgroundRect.setAttribute(\"rx\", \"5\");\n backgroundRect.setAttribute(\"ry\", \"5\");\n const progressRect = document.createElementNS(svgNS, \"rect\");\n progressRect.setAttribute(\"fill\", colors.progress);\n progressRect.setAttribute(\"fill-opacity\", \"1\");\n progressRect.setAttribute(\"width\", `${progress}%`);\n progressRect.setAttribute(\"height\", \"100%\");\n progressRect.setAttribute(\"rx\", \"5\");\n progressRect.setAttribute(\"ry\", \"5\");\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"15\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\n \"transform\",\n `translate(${this.props.width / 2}, 17.5)`\n );\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\") {\n text.style.fontSize = \"6pt\";\n\n text.textContent = this.props.unit\n ? `${formatValue} ${this.props.unit}`\n : `${formatValue}`;\n } else {\n text.textContent = `${progress}%`;\n }\n\n svg.setAttribute(\"width\", \"100%\");\n svg.setAttribute(\"height\", \"100%\");\n svg.append(backgroundRect, progressRect, text);\n }\n break;\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n {\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n if (this.props.percentileType === \"bubble\") {\n // Create and append the circles.\n const backgroundCircle = document.createElementNS(svgNS, \"circle\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"r\", \"50\");\n const progressCircle = document.createElementNS(svgNS, \"circle\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\"r\", `${progress / 2}`);\n\n svg.append(backgroundCircle, progressCircle);\n } else {\n // Create and append the circles.\n const arcProps = {\n innerRadius:\n this.props.percentileType === \"circular-progress-bar\" ? 30 : 0,\n outerRadius: 50,\n startAngle: 0,\n endAngle: Math.PI * 2\n };\n const arc = arcFactory();\n\n const backgroundCircle = document.createElementNS(svgNS, \"path\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"d\", `${arc(arcProps)}`);\n const progressCircle = document.createElementNS(svgNS, \"path\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\n \"d\",\n `${arc({\n ...arcProps,\n endAngle: arcProps.endAngle * (progress / 100)\n })}`\n );\n\n svg.append(backgroundCircle, progressCircle);\n }\n\n // Create and append the text.\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"16\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\" && this.props.value != null) {\n // Show value and unit in 1 (no unit) or 2 lines.\n if (this.props.unit && this.props.unit.length > 0) {\n const value = document.createElementNS(svgNS, \"tspan\");\n value.setAttribute(\"x\", \"0\");\n value.setAttribute(\"dy\", \"1em\");\n value.textContent = `${formatValue}`;\n value.style.fontSize = \"8pt\";\n const unit = document.createElementNS(svgNS, \"tspan\");\n unit.setAttribute(\"x\", \"0\");\n unit.setAttribute(\"dy\", \"1em\");\n unit.textContent = `${this.props.unit}`;\n unit.style.fontSize = \"8pt\";\n text.append(value, unit);\n text.setAttribute(\"transform\", \"translate(50 33)\");\n } else {\n text.textContent = `${formatValue}`;\n text.style.fontSize = \"8pt\";\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n } else {\n // Percentage.\n text.textContent = `${progress}%`;\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n\n svg.append(text);\n }\n break;\n }\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n if (svg !== null) element.append(svg);\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.meta.isBeingResized === false) {\n this.resizeElement(this.props.width, this.props.height);\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected resizeElement(width: number, height: number): void {\n if (this.props.percentileType === \"progress-bar\") {\n super.resizeElement(width, 35);\n } else {\n super.resizeElement(width, width);\n }\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(width, width);\n let height = this.props.maxValue || 0;\n if (this.props.percentileType === \"progress-bar\") {\n height = 35;\n }\n super.setProps({\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n });\n }\n\n private getProgress(): number {\n const minValue = this.props.minValue || 0;\n const maxValue = this.props.maxValue || 100;\n const value = this.props.value == null ? 0 : this.props.value;\n\n if (value <= minValue) return 0;\n else if (value >= maxValue) return 100;\n else return Math.trunc(((value - minValue) / (maxValue - minValue)) * 100);\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport { modulePropsDecoder, decodeBase64, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BarsGraphProps = {\n type: ItemType.BARS_GRAPH;\n html: string;\n backgroundColor: \"white\" | \"black\" | \"transparent\";\n typeGraph: \"horizontal\" | \"vertical\";\n gridColor: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param BarsGraphProps Raw value.\n */\nconst parseBarsGraphProps = (\n backgroundColor: unknown\n): BarsGraphProps[\"backgroundColor\"] => {\n switch (backgroundColor) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundColor;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param typeGraph Raw value.\n */\nconst parseTypeGraph = (typeGraph: unknown): BarsGraphProps[\"typeGraph\"] => {\n switch (typeGraph) {\n case \"horizontal\":\n case \"vertical\":\n return typeGraph;\n default:\n return \"vertical\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the bars graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function barsGraphPropsDecoder(data: AnyObject): BarsGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BARS_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundColor: parseBarsGraphProps(data.backgroundColor),\n typeGraph: parseTypeGraph(data.typeGraph),\n gridColor: stringIsEmpty(data.gridColor) ? \"#000000\" : data.gridColor,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BarsGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"bars-graph\";\n element.style.backgroundImage = `url(${this.props.html})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = `${this.props.width}px ${this.props.height}px`;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.style.backgroundImage = `url(${this.props.html})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = `${this.props.width}px ${this.props.height}px`;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport {\n stringIsEmpty,\n notEmptyStringOr,\n decodeBase64,\n parseIntOr,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport {\n faCircleNotch,\n faExclamationCircle\n} from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ServiceProps = {\n type: ItemType.SERVICE;\n serviceId: number;\n imageSrc: string | null;\n statusImageSrc: string | null;\n encodedTitle: string | null;\n} & ItemProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the service props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function servicePropsDecoder(data: AnyObject): ServiceProps | never {\n if (data.imageSrc !== null) {\n if (\n typeof data.statusImageSrc !== \"string\" ||\n data.imageSrc.statusImageSrc === 0\n ) {\n throw new TypeError(\"invalid status image src.\");\n }\n } else {\n if (stringIsEmpty(data.encodedTitle)) {\n throw new TypeError(\"missing encode tittle content.\");\n }\n }\n\n if (parseIntOr(data.serviceId, null) === null) {\n throw new TypeError(\"invalid service id.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SERVICE,\n serviceId: data.serviceId,\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n encodedTitle: notEmptyStringOr(data.encodedTitle, null)\n };\n}\n\nexport default class Service extends Item {\n public createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"service\";\n\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n element.innerHTML = \"\";\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\n\nimport { modulePropsDecoder, parseIntOr, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type OdometerProps = {\n type: ItemType.ODOMETER;\n value: number;\n status: string;\n title: string | null;\n titleModule: string;\n titleColor: string;\n odometerType: string;\n thresholds: string | any;\n minMaxValue: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function odometerPropsDecoder(data: AnyObject): OdometerProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ODOMETER,\n value: parseIntOr(data.value, 0),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n titleColor: stringIsEmpty(data.titleColor) ? \"#3f3f3f\" : data.titleColor,\n title: stringIsEmpty(data.title) ? \"\" : data.title,\n titleModule: stringIsEmpty(data.titleModule) ? \"\" : data.titleModule,\n thresholds: stringIsEmpty(data.thresholds) ? \"\" : data.thresholds,\n minMaxValue: stringIsEmpty(data.minMaxValue) ? \"\" : data.minMaxValue,\n odometerType: stringIsEmpty(data.odometerType)\n ? \"percent\"\n : data.odometerType,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Odometer extends Item {\n protected createDomElement(): HTMLElement {\n let lineWarning = \"\";\n let lineWarning2 = \"\";\n let lineCritical = \"\";\n let lineCritical2 = \"\";\n\n if (this.props.thresholds !== \"\") {\n const thresholds = JSON.parse(this.props.thresholds);\n\n if (thresholds !== null) {\n if (thresholds.min_warning != 0 || thresholds.max_warning != 0) {\n lineWarning = this.getCoords(\n thresholds.min_warning,\n this.props.width / 2\n );\n if (thresholds.max_warning == 0) {\n lineWarning2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineWarning2 = this.getCoords(\n thresholds.max_warning,\n this.props.width / 2\n );\n }\n }\n\n if (thresholds.min_critical != 0 || thresholds.max_critical != 0) {\n lineCritical = this.getCoords(\n thresholds.min_critical,\n this.props.width / 2\n );\n if (thresholds.max_critical == 0) {\n lineCritical2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineCritical2 = this.getCoords(\n thresholds.max_critical,\n this.props.width / 2\n );\n }\n }\n }\n }\n\n let percent = \"\";\n let number;\n // Float\n if (\n Number(this.props.value) === this.props.value &&\n this.props.value % 1 !== 0\n ) {\n number = this.props.value.toFixed(1);\n } else {\n if (this.props.minMaxValue === \"\") {\n percent = \" %\";\n } else {\n percent = this.getSubfix(this.props.value);\n }\n number = new Intl.NumberFormat(\"es\", {\n maximumSignificantDigits: 4,\n maximumFractionDigits: 3\n }).format(this.props.value);\n }\n\n var numb = number.match(/\\d*\\.\\d/);\n if (numb !== null) {\n number = numb[0];\n }\n\n const rotate = this.getRotate(this.props.value);\n\n let backgroundColor = document.getElementById(\n \"visual-console-container\"\n ) as HTMLElement;\n\n if (backgroundColor === null) {\n backgroundColor = document.getElementById(\n `visual-console-container-${this.props.cellId}`\n ) as HTMLElement;\n }\n\n if (backgroundColor.style.backgroundColor == \"\") {\n backgroundColor.style.backgroundColor = \"#fff\";\n }\n\n const anchoB = this.props.width * 0.7;\n\n const element = document.createElement(\"div\");\n element.className = \"odometer\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Odometer container.\n const odometerContainer = document.createElement(\"div\");\n odometerContainer.className = \"odometer-container\";\n\n // Central semicircle.\n const odometerA = document.createElement(\"div\");\n odometerA.className = \"odometer-a\";\n odometerA.style.backgroundColor = `${backgroundColor.style.backgroundColor}`;\n\n // Semicircle rotating with the value.\n const odometerB = document.createElement(\"div\");\n odometerB.className = \"odometer-b\";\n odometerB.id = `odometerB-${this.props.id}`;\n odometerB.style.backgroundColor = `${this.props.status}`;\n\n // Dark semicircle.\n const odometerC = document.createElement(\"div\");\n odometerC.className = \"odometer-c\";\n\n // Green outer semicircle.\n const gaugeE = document.createElement(\"div\");\n gaugeE.className = \"odometer-d\";\n\n const SVG_NS = \"http://www.w3.org/2000/svg\";\n // Portion of threshold warning\n if (lineWarning != \"\") {\n const svgWarning = document.createElementNS(SVG_NS, \"svg\");\n svgWarning.setAttributeNS(null, \"width\", \"100%\");\n svgWarning.setAttributeNS(null, \"height\", \"100%\");\n svgWarning.setAttributeNS(null, \"style\", \"position:absolute;z-index:1\");\n const pathWarning = document.createElementNS(SVG_NS, \"path\");\n pathWarning.setAttributeNS(null, \"id\", `svgWarning-${this.props.id}`);\n pathWarning.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineWarning}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineWarning2}Z`\n );\n pathWarning.setAttributeNS(null, \"class\", \"svg_warning\");\n svgWarning.appendChild(pathWarning);\n odometerContainer.appendChild(svgWarning);\n }\n\n // Portion of threshold critical\n if (lineCritical != \"\") {\n const svgCritical = document.createElementNS(SVG_NS, \"svg\");\n svgCritical.setAttributeNS(null, \"width\", \"100%\");\n svgCritical.setAttributeNS(null, \"height\", \"100%\");\n svgCritical.setAttributeNS(null, \"style\", \"position:absolute;z-index:2\");\n const pathCritical = document.createElementNS(SVG_NS, \"path\");\n pathCritical.setAttributeNS(null, \"id\", `svgCritical-${this.props.id}`);\n pathCritical.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineCritical}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineCritical2}Z`\n );\n pathCritical.setAttributeNS(null, \"fill\", \"#E63C52\");\n svgCritical.appendChild(pathCritical);\n odometerContainer.appendChild(svgCritical);\n }\n\n // Text.\n const h1 = document.createElement(\"h1\");\n h1.innerText = number + percent;\n h1.style.fontSize = `${anchoB * 0.17}px`;\n h1.style.color = `${this.props.status}`;\n h1.style.lineHeight = \"0\";\n\n const h2 = document.createElement(\"h2\");\n if (this.props.title == \"\") {\n h2.textContent = this.truncateTitle(this.props.moduleName);\n } else {\n h2.textContent = this.truncateTitle(this.props.title);\n }\n h2.title = this.props.titleModule;\n h2.setAttribute(\"title\", this.props.titleModule);\n\n h2.style.fontSize = `${anchoB * 0.06}px`;\n h2.style.color = `${this.props.titleColor}`;\n h2.style.lineHeight = \"0\";\n\n let script = document.createElement(\"script\");\n script.type = \"text/javascript\";\n script.onload = function() {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n };\n\n if (typeof this.props.metaconsoleId !== \"undefined\") {\n script.src = \"./../../include/javascript/pandora_alerts.js\";\n } else {\n script.src = \"./include/javascript/pandora_alerts.js\";\n }\n\n odometerA.appendChild(h1);\n odometerA.appendChild(h2);\n odometerContainer.appendChild(odometerB);\n odometerContainer.appendChild(odometerC);\n odometerContainer.appendChild(gaugeE);\n odometerContainer.appendChild(odometerA);\n odometerContainer.appendChild(script);\n element.appendChild(odometerContainer);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n\n let rotate = this.getRotate(this.props.value);\n\n const svgWarning = document.getElementById(`svgWarning-${this.props.id}`);\n if (svgWarning != null) {\n svgWarning.style.display = \"none\";\n }\n\n const svgCritical = document.getElementById(`svgCritical-${this.props.id}`);\n if (svgCritical != null) {\n svgCritical.style.display = \"none\";\n }\n\n setTimeout(() => {\n if (svgWarning != null) {\n svgWarning.style.display = \"block\";\n }\n\n if (svgCritical != null) {\n svgCritical.style.display = \"block\";\n }\n\n var odometerB = document.getElementById(`odometerB-${this.props.id}`);\n if (odometerB) {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n }\n }, 500);\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width / 2);\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(this.props.width);\n }\n\n private getRotate(value: number): number {\n let rotate = 0;\n if (this.props.minMaxValue === \"\") {\n rotate = value / 2 / 100;\n } else {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === value) {\n rotate = 0;\n } else if (minMax[\"max\"] === value) {\n rotate = 0.5;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n const valueMax = minMax[\"max\"] - value;\n rotate = (100 - (valueMax * 100) / limit) / 100 / 2;\n }\n }\n\n return rotate;\n }\n\n private getSubfix(value: number): string {\n let subfix = \"\";\n const length = (value + \"\").length;\n if (length > 3 && length <= 6) {\n subfix = \" K\";\n } else if (length > 6 && length <= 9) {\n subfix = \" M\";\n } else if (length > 9 && length <= 12) {\n subfix = \" G\";\n } else if (length > 12 && length <= 15) {\n subfix = \" T\";\n }\n\n return subfix;\n }\n\n private getCoords(percent: number, radio: number): string {\n if (this.props.minMaxValue === \"\") {\n percent = percent;\n } else {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === percent) {\n percent = 0;\n } else if (minMax[\"max\"] === percent || percent === 100) {\n percent = 100;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n let valueMax = minMax[\"max\"] - percent;\n percent = 100 - (valueMax * 100) / limit;\n }\n }\n\n percent = 180 - percent * 1.8;\n const x = radio + Math.cos((percent * Math.PI) / 180) * radio;\n const y = radio - Math.sin((percent * Math.PI) / 180) * radio;\n return `${x},${y}`;\n }\n\n private truncateTitle(title: any): string {\n if (title != null && title.length > 22) {\n const halfLength = title.length / 2;\n const diff = halfLength - 9;\n const stringBefore = title.substr(0, halfLength - diff);\n const stringAfter = title.substr(halfLength + diff);\n\n return `${stringBefore}...${stringAfter}`;\n } else {\n return title;\n }\n }\n}\n","import { AnyObject, Size, Position, WithModuleProps } from \"./lib/types\";\nimport {\n parseBoolean,\n sizePropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n itemMetaDecoder,\n t,\n ellipsize,\n debounce\n} from \"./lib\";\nimport Item, {\n ItemType,\n ItemProps,\n ItemClickEvent,\n ItemRemoveEvent,\n ItemMovedEvent,\n ItemResizedEvent,\n ItemSelectionChangedEvent\n} from \"./Item\";\nimport StaticGraph, { staticGraphPropsDecoder } from \"./items/StaticGraph\";\nimport Icon, { iconPropsDecoder } from \"./items/Icon\";\nimport ColorCloud, { colorCloudPropsDecoder } from \"./items/ColorCloud\";\nimport NetworkLink, { networkLinkPropsDecoder } from \"./items/NetworkLink\";\nimport Group, { groupPropsDecoder } from \"./items/Group\";\nimport Clock, { clockPropsDecoder } from \"./items/Clock\";\nimport Box, { boxPropsDecoder } from \"./items/Box\";\nimport Line, { linePropsDecoder, LineMovedEvent } from \"./items/Line\";\nimport Label, { labelPropsDecoder } from \"./items/Label\";\nimport SimpleValue, { simpleValuePropsDecoder } from \"./items/SimpleValue\";\nimport EventsHistory, {\n eventsHistoryPropsDecoder\n} from \"./items/EventsHistory\";\nimport Percentile, { percentilePropsDecoder } from \"./items/Percentile\";\nimport TypedEvent, { Disposable, Listener } from \"./lib/TypedEvent\";\nimport DonutGraph, { donutGraphPropsDecoder } from \"./items/DonutGraph\";\nimport BarsGraph, { barsGraphPropsDecoder } from \"./items/BarsGraph\";\nimport ModuleGraph, { moduleGraphPropsDecoder } from \"./items/ModuleGraph\";\nimport Service, { servicePropsDecoder } from \"./items/Service\";\nimport Odometer, { odometerPropsDecoder } from \"./items/Odometer\";\nimport BasicChart, { basicChartPropsDecoder } from \"./items/BasicChart\";\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction itemInstanceFrom(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n const meta = itemMetaDecoder(data);\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return new StaticGraph(staticGraphPropsDecoder(data), meta);\n case ItemType.MODULE_GRAPH:\n return new ModuleGraph(moduleGraphPropsDecoder(data), meta);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return new SimpleValue(simpleValuePropsDecoder(data), meta);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return new Percentile(percentilePropsDecoder(data), meta);\n case ItemType.LABEL:\n return new Label(labelPropsDecoder(data), meta);\n case ItemType.ICON:\n return new Icon(iconPropsDecoder(data), meta);\n case ItemType.SERVICE:\n return new Service(servicePropsDecoder(data), meta);\n case ItemType.GROUP_ITEM:\n return new Group(groupPropsDecoder(data), meta);\n case ItemType.BOX_ITEM:\n return new Box(boxPropsDecoder(data), meta);\n case ItemType.LINE_ITEM:\n return new Line(linePropsDecoder(data), meta);\n case ItemType.AUTO_SLA_GRAPH:\n return new EventsHistory(eventsHistoryPropsDecoder(data), meta);\n case ItemType.DONUT_GRAPH:\n return new DonutGraph(donutGraphPropsDecoder(data), meta);\n case ItemType.BARS_GRAPH:\n return new BarsGraph(barsGraphPropsDecoder(data), meta);\n case ItemType.CLOCK:\n return new Clock(clockPropsDecoder(data), meta);\n case ItemType.COLOR_CLOUD:\n return new ColorCloud(colorCloudPropsDecoder(data), meta);\n case ItemType.NETWORK_LINK:\n return new NetworkLink(networkLinkPropsDecoder(data), meta);\n case ItemType.ODOMETER:\n return new Odometer(odometerPropsDecoder(data), meta);\n case ItemType.BASIC_CHART:\n return new BasicChart(basicChartPropsDecoder(data), meta);\n default:\n throw new TypeError(\"item not found\");\n }\n}\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction decodeProps(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return staticGraphPropsDecoder(data);\n case ItemType.MODULE_GRAPH:\n return moduleGraphPropsDecoder(data);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return simpleValuePropsDecoder(data);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return percentilePropsDecoder(data);\n case ItemType.LABEL:\n return labelPropsDecoder(data);\n case ItemType.ICON:\n return iconPropsDecoder(data);\n case ItemType.SERVICE:\n return servicePropsDecoder(data);\n case ItemType.GROUP_ITEM:\n return groupPropsDecoder(data);\n case ItemType.BOX_ITEM:\n return boxPropsDecoder(data);\n case ItemType.LINE_ITEM:\n return linePropsDecoder(data);\n case ItemType.AUTO_SLA_GRAPH:\n return eventsHistoryPropsDecoder(data);\n case ItemType.DONUT_GRAPH:\n return donutGraphPropsDecoder(data);\n case ItemType.BARS_GRAPH:\n return barsGraphPropsDecoder(data);\n case ItemType.CLOCK:\n return clockPropsDecoder(data);\n case ItemType.COLOR_CLOUD:\n return colorCloudPropsDecoder(data);\n case ItemType.NETWORK_LINK:\n return networkLinkPropsDecoder(data);\n case ItemType.ODOMETER:\n return odometerPropsDecoder(data);\n case ItemType.BASIC_CHART:\n return basicChartPropsDecoder(data);\n default:\n throw new TypeError(\"decoder not found\");\n }\n}\n\n// Base properties.\nexport interface VisualConsoleProps extends Size {\n readonly id: number;\n name: string;\n groupId: number;\n backgroundURL: string | null; // URL?\n backgroundColor: string | null;\n isFavorite: boolean;\n relationLineWidth: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the Visual Console props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function visualConsolePropsDecoder(\n data: AnyObject\n): VisualConsoleProps | never {\n // Object destructuring: http://es6-features.org/#ObjectMatchingShorthandNotation\n const {\n id,\n name,\n groupId,\n backgroundURL,\n backgroundColor,\n isFavorite,\n relationLineWidth\n } = data;\n\n if (id == null || isNaN(parseInt(id))) {\n throw new TypeError(\"invalid Id.\");\n }\n if (typeof name !== \"string\" || name.length === 0) {\n throw new TypeError(\"invalid name.\");\n }\n if (groupId == null || isNaN(parseInt(groupId))) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n return {\n id: parseInt(id),\n name,\n groupId: parseInt(groupId),\n backgroundURL: notEmptyStringOr(backgroundURL, null),\n backgroundColor: notEmptyStringOr(backgroundColor, null),\n isFavorite: parseBoolean(isFavorite),\n relationLineWidth: parseIntOr(relationLineWidth, 0),\n ...sizePropsDecoder(data)\n };\n}\n\nexport default class VisualConsole {\n // Reference to the DOM element which will contain the items.\n private readonly containerRef: HTMLElement;\n // Properties.\n private _props: VisualConsoleProps;\n // Visual Console Item instances by their Id.\n private elementsById: {\n [key: number]: Item;\n } = {};\n // Visual Console Item Ids.\n private elementIds: ItemProps[\"id\"][] = [];\n // Dictionary which store the created lines.\n private relations: {\n [key: string]: Line;\n } = {};\n\n // Dictionary which store the related items (by ID).\n private lineLinks: {\n [key: number]: { [key: number]: { [key: string]: number } };\n } = {};\n\n private lines: {\n [key: number]: { [key: string]: number };\n } = {};\n\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for move events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for line move events.\n private readonly lineMovedEventManager = new TypedEvent();\n // Event manager for resize events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for remove events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n /**\n * React to a click on an element.\n * @param e Event object.\n */\n private handleElementClick: (e: ItemClickEvent) => void = e => {\n this.clickEventManager.emit(e);\n // console.log(`Clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a double click on an element.\n * @param e Event object.\n */\n private handleElementDblClick: (e: ItemClickEvent) => void = e => {\n this.dblClickEventManager.emit(e);\n // console.log(`Double clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a movement on an element.\n * @param e Event object.\n */\n private handleElementMovement: (e: ItemMovedEvent) => void = e => {\n // Move their relation lines.\n const itemId = e.item.props.id;\n const relations = this.getItemRelations(itemId);\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n }\n });\n\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, false);\n\n // console.log(`Moved element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a movement finished on an element.\n * @param e Event object.\n */\n private handleElementMovementFinished: (e: ItemMovedEvent) => void = e => {\n this.movedEventManager.emit(e);\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, true);\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Verifies if x,y are inside item coordinates.\n * @param x Coordinate X\n * @param y Coordinate Y\n * @param item ItemProps instance.\n */\n private coordinatesInItem(x: number, y: number, props: ItemProps) {\n if (\n props.type == ItemType.LINE_ITEM ||\n props.type == ItemType.NETWORK_LINK\n ) {\n return false;\n }\n\n if (\n x > props.x &&\n x < props.x + props.width &&\n y > props.y &&\n y < props.y + props.height\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * React to a line movement.\n * @param e Event object.\n */\n private handleLineElementMovementFinished: (\n e: LineMovedEvent\n ) => void = e => {\n // Update links.\n this.refreshLink(e.item);\n\n // Build line relationships between items and lines.\n this.lineMovedEventManager.emit(e);\n\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a resizement on an element.\n * @param e Event object.\n */\n private handleElementResizement: (e: ItemResizedEvent) => void = e => {\n // Move their relation lines.\n const item = e.item;\n const props = item.props;\n const itemId = props.id;\n const relations = this.getItemRelations(itemId);\n\n const position = {\n x: props.x,\n y: props.y\n };\n\n const meta = this.elementsById[itemId].meta;\n\n this.elementsById[itemId].meta = {\n ...meta,\n isUpdating: true\n };\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(position, item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(position, item)\n };\n }\n });\n\n // console.log(`Resized element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a finished resizement on an element.\n * @param e Event object.\n */\n private handleElementResizementFinished: (\n e: ItemResizedEvent\n ) => void = e => {\n this.resizedEventManager.emit(e);\n // console.log(`Resize fonished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Clear some element references.\n * @param e Event object.\n */\n private handleElementRemove: (e: ItemRemoveEvent) => void = e => {\n // Remove the element from the list and its relations.\n this.elementIds = this.elementIds.filter(id => id !== e.item.props.id);\n delete this.elementsById[e.item.props.id];\n this.clearRelations(e.item.props.id);\n };\n\n /**\n * React to element selection change\n * @param e Event object.\n */\n private handleElementSelectionChanged: (\n e: ItemSelectionChangedEvent\n ) => void = e => {\n if (this.elements.filter(item => item.meta.isSelected == true).length > 0) {\n e.selected = true;\n } else {\n e.selected = false;\n }\n this.selectionChangedEventManager.emit(e);\n };\n\n // TODO: Document\n private handleContainerClick: (e: MouseEvent) => void = () => {\n this.unSelectItems();\n };\n\n /**\n * Refresh link for given line.\n *\n * @param line Line.\n */\n protected refreshLink(l: Line) {\n let line: number = l.props.id;\n let itemAtStart = 0;\n let itemAtEnd = 0;\n\n try {\n for (let i in this.elementsById) {\n if (\n this.coordinatesInItem(\n l.props.startPosition.x,\n l.props.startPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtStart = parseInt(i);\n }\n\n if (\n this.coordinatesInItem(\n l.props.endPosition.x,\n l.props.endPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtEnd = parseInt(i);\n }\n }\n\n if (this.lineLinks == null) {\n this.lineLinks = {};\n }\n\n if (this.lines == null) {\n this.lines = {};\n }\n\n if (itemAtStart == line) {\n itemAtStart = 0;\n }\n\n if (itemAtEnd == line) {\n itemAtEnd = 0;\n }\n\n // Initialize line if not registered.\n if (this.lines[line] == null) {\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n }\n\n // Register 'start' side of the line.\n if (itemAtStart > 0) {\n // Initialize.\n if (this.lineLinks[itemAtStart] == null) {\n this.lineLinks[itemAtStart] = {};\n }\n\n // Assign.\n this.lineLinks[itemAtStart][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Register line if not exists prviously.\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"start\"] > 0) {\n this.lineLinks[this.lines[line][\"start\"]][line][\"start\"] = 0;\n this.lines[line][\"start\"] = 0;\n }\n }\n\n if (itemAtEnd > 0) {\n if (this.lineLinks[itemAtEnd] == null) {\n this.lineLinks[itemAtEnd] = {};\n }\n\n this.lineLinks[itemAtEnd][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"end\"] > 0) {\n this.lineLinks[this.lines[line][\"end\"]][line][\"end\"] = 0;\n this.lines[line][\"end\"] = 0;\n }\n }\n\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Cleanup.\n for (let i in this.lineLinks) {\n if (this.lineLinks[i][line]) {\n if (\n this.lineLinks[i][line].start == 0 &&\n this.lineLinks[i][line].end == 0\n ) {\n // Object not connected to a line.\n delete this.lineLinks[i][line];\n\n if (Object.keys(this.lineLinks[i]).length === 0) {\n delete this.lineLinks[i];\n }\n }\n }\n }\n } catch (error) {\n console.error(error);\n }\n }\n\n /**\n * Updates lines connected to this item.\n *\n * @param item Item moved.\n * @param newPosition New location for item.\n * @param oldPosition Old location for item.\n * @param save Save to ajax or not.\n */\n protected updateLinesConnected(item: ItemProps, to: Position, save: boolean) {\n if (this.lineLinks[item.id] == null) {\n return;\n }\n\n Object.keys(this.lineLinks[item.id]).forEach(i => {\n let lineId = parseInt(i);\n const found = this.elementIds.indexOf(lineId);\n if (found === -1) {\n return;\n }\n let line = this.elementsById[lineId] as Line;\n if (line.props) {\n let startX = line.props.startPosition.x;\n let startY = line.props.startPosition.y;\n let endX = line.props.endPosition.x;\n let endY = line.props.endPosition.y;\n\n if (item.id == this.lineLinks[item.id][lineId][\"start\"]) {\n startX = to.x + item.width / 2;\n startY = to.y + item.height / 2;\n }\n\n if (item.id == this.lineLinks[item.id][lineId][\"end\"]) {\n endX = to.x + item.width / 2;\n endY = to.y + item.height / 2;\n }\n\n // Update line movement.\n this.updateElement({\n ...line.props,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n\n if (save) {\n let debouncedLinePositionSave = debounce(\n 500,\n (options: AnyObject) => {\n this.lineMovedEventManager.emit({\n item: options.line,\n startPosition: {\n x: options.startX,\n y: options.startY\n },\n endPosition: {\n x: options.endX,\n y: options.endY\n }\n });\n }\n );\n\n // Save line positon.\n debouncedLinePositionSave({\n line: line,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n }\n }\n });\n\n // Update parents...\n this.buildRelations(item.id, to.x + item.width / 2, to.y + item.height / 2);\n }\n\n public constructor(\n container: HTMLElement,\n props: AnyObject,\n items: AnyObject[]\n ) {\n this.containerRef = container;\n this._props = visualConsolePropsDecoder(props);\n\n // Force the first render.\n this.render();\n\n // Sort by id ASC\n items = items.sort(function(a, b) {\n if (a.id == null || b.id == null) return 0;\n else if (a.id > b.id) return 1;\n else return -1;\n });\n\n // Initialize the items.\n items.forEach(item => this.addElement(item, this));\n\n // Create lines.\n this.buildRelations();\n\n // Re-attach all connected lines if any.\n this.elements.forEach(item => {\n if (item instanceof Line) {\n this.refreshLink(item);\n }\n });\n\n this.containerRef.addEventListener(\"click\", this.handleContainerClick);\n }\n\n /**\n * Public accessor of the `elements` property.\n * @return Properties.\n */\n public get elements(): Item[] {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n return this.elementIds\n .map(id => this.elementsById[id])\n .filter(_ => _ != null) as Item[];\n }\n\n /**\n * To create a new element add it to the DOM.\n * @param item. Raw representation of the item's data.\n */\n public addElement(item: AnyObject, context: this = this) {\n try {\n const itemInstance = itemInstanceFrom(item);\n // Add the item to the list.\n context.elementsById[itemInstance.props.id] = itemInstance;\n context.elementIds.push(itemInstance.props.id);\n // Item event handlers.\n itemInstance.onRemove(context.handleElementRemove);\n itemInstance.onSelectionChanged(context.handleElementSelectionChanged);\n itemInstance.onClick(context.handleElementClick);\n itemInstance.onDblClick(context.handleElementDblClick);\n\n // TODO:Continue\n if (itemInstance instanceof Line) {\n itemInstance.onLineMovementFinished(\n context.handleLineElementMovementFinished\n );\n this.refreshLink(itemInstance);\n } else {\n itemInstance.onMoved(context.handleElementMovement);\n itemInstance.onMovementFinished(context.handleElementMovementFinished);\n itemInstance.onResized(context.handleElementResizement);\n itemInstance.onResizeFinished(context.handleElementResizementFinished);\n }\n\n // Add the item to the DOM.\n context.containerRef.append(itemInstance.elementRef);\n return itemInstance;\n } catch (error) {\n console.error(\"Error creating a new element:\", error.message);\n }\n return;\n }\n\n /**\n * Public setter of the `elements` property.\n * @param items.\n */\n public updateElements(items: AnyObject[]): void {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n const itemIds = items\n .map(item => item.id || null)\n .filter(id => id != null) as number[];\n // Get the elements we should delete.\n const deletedIds = this.elementIds.filter(id => itemIds.indexOf(id) < 0);\n // Delete the elements.\n deletedIds.forEach(id => {\n if (this.elementsById[id] != null) {\n this.elementsById[id].remove();\n delete this.elementsById[id];\n }\n });\n // Replace the element ids.\n this.elementIds = itemIds;\n\n // Initialize the items.\n items.forEach(item => {\n if (item.id) {\n if (this.elementsById[item.id] == null) {\n // New item.\n this.addElement(item);\n } else {\n // Update item.\n try {\n this.elementsById[item.id].props = decodeProps(item);\n } catch (error) {\n console.error(\"Error updating an element:\", error.message);\n }\n }\n }\n });\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public setter of the `element` property.\n * @param item.\n */\n public updateElement(item: AnyObject): void {\n // Update item.\n try {\n this.elementsById[item.id].props = {\n ...decodeProps(item)\n };\n } catch (error) {\n console.error(\"Error updating element:\", error.message);\n }\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): VisualConsoleProps {\n return { ...this._props }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: VisualConsoleProps) {\n const prevProps = this.props;\n // Update the internal props.\n this._props = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Re-render.\n this.render(prevProps);\n }\n\n /**\n * Recreate or update the HTMLElement which represents the Visual Console into the DOM.\n * @param prevProps If exists it will be used to only DOM updates instead of a full replace.\n */\n public render(prevProps: VisualConsoleProps | null = null): void {\n if (prevProps) {\n if (prevProps.backgroundURL !== this.props.backgroundURL) {\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n }\n if (this.props.backgroundColor != null)\n if (prevProps.backgroundColor !== this.props.backgroundColor) {\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n }\n if (this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n }\n } else {\n if (this.props.backgroundURL)\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n\n if (this.props.backgroundColor)\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n this.resizeElement(this.props.width, this.props.height);\n }\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n public sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM container.\n * @param width\n * @param height\n */\n public resizeElement(width: number, height: number): void {\n this.containerRef.style.width = `${width}px`;\n this.containerRef.style.height = `${height}px`;\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.props = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n this.disposables.forEach(d => d.dispose()); // Arrow function.\n this.elements.forEach(e => e.remove()); // Arrow function.\n this.elementsById = {};\n this.elementIds = [];\n // Clear relations.\n this.clearRelations();\n // Remove the click event listener.\n this.containerRef.removeEventListener(\"click\", this.handleContainerClick);\n // Clean container.\n this.containerRef.innerHTML = \"\";\n }\n\n /**\n * Create line elements which connect the elements with their parents.\n *\n * When itemId is being moved, overwrite position of the 'parent' or 'child'\n * endpoints of the line, using X and Y values.\n */\n public buildRelations(itemId?: number, x?: number, y?: number): void {\n // Clear relations.\n this.clearRelations();\n // Add relations.\n this.elements.forEach(item => {\n if (item.props.parentId !== null) {\n const parent = this.elementsById[item.props.parentId];\n const child = this.elementsById[item.props.id];\n\n if (parent && child) {\n if (itemId != undefined) {\n if (item.props.parentId == itemId) {\n // Update parent line position.\n this.addRelationLine(parent, child, x, y);\n } else if (item.props.id == itemId) {\n // Update child line position.\n this.addRelationLine(parent, child, undefined, undefined, x, y);\n } else {\n this.addRelationLine(parent, child);\n }\n } else {\n // No movements default behaviour.\n this.addRelationLine(parent, child);\n }\n }\n }\n });\n }\n\n /**\n * @param itemId Optional identifier of a parent or child item.\n * Remove the line elements which connect the elements with their parents.\n */\n private clearRelations(itemId?: number): void {\n if (itemId != null) {\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n } else {\n for (let key in this.relations) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n }\n\n /**\n * Retrieve the line element which represent the relation between items.\n * @param parentId Identifier of the parent item.\n * @param childId Itentifier of the child item.\n * @return The line element or nothing.\n */\n private getRelationLine(parentId: number, childId: number): Line | null {\n const identifier = `${parentId}|${childId}`;\n return this.relations[identifier] || null;\n }\n\n // TODO: Document.\n private getItemRelations(\n itemId: number\n ): {\n parentId: number;\n childId: number;\n line: Line;\n }[] {\n const itemRelations = [];\n\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n itemRelations.push({\n parentId,\n childId,\n line: this.relations[key]\n });\n }\n }\n\n return itemRelations;\n }\n\n /**\n * Retrieve the visual center of the item. It's ussually the center of the\n * content, like the label doesn't exist.\n * @param position Initial position.\n * @param element Element we want to use.\n */\n private getVisualCenter(\n position: Position,\n element: Item\n ): Position {\n let x = position.x + element.elementRef.clientWidth / 2;\n let y = position.y + element.elementRef.clientHeight / 2;\n if (\n typeof element.props.label !== \"undefined\" ||\n element.props.label !== \"\" ||\n element.props.label !== null\n ) {\n switch (element.props.labelPosition) {\n case \"up\":\n y =\n position.y +\n (element.elementRef.clientHeight +\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"down\":\n y =\n position.y +\n (element.elementRef.clientHeight -\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"right\":\n x =\n position.x +\n (element.elementRef.clientWidth -\n element.labelElementRef.clientWidth) /\n 2;\n break;\n case \"left\":\n x =\n position.x +\n (element.elementRef.clientWidth +\n element.labelElementRef.clientWidth) /\n 2;\n break;\n }\n }\n return { x, y };\n }\n\n /**\n * Add a new line item to represent a relation between the items.\n * @param parent Parent item.\n * @param child Child item.\n * @return Whether the line was added or not.\n */\n private addRelationLine(\n parent: Item,\n child: Item,\n parentX?: number,\n parentY?: number,\n childX?: number,\n childY?: number\n ): Line {\n const identifier = `${parent.props.id}|${child.props.id}`;\n if (this.relations[identifier] != null) {\n this.relations[identifier].remove();\n }\n\n // Get the items center.\n let { x: startX, y: startY } = this.getVisualCenter(parent.props, parent);\n let { x: endX, y: endY } = this.getVisualCenter(child.props, child);\n\n // Overwrite positions if needed (while moving it!).\n if (parentX != null) {\n startX = parentX;\n }\n\n if (parentY != null) {\n startY = parentY;\n }\n\n if (childX != null) {\n endX = childX;\n }\n\n if (childY != null) {\n endY = childY;\n }\n\n // Line inherits child element status.\n const line = new Line(\n linePropsDecoder({\n id: 0,\n type: ItemType.LINE_ITEM,\n startX,\n startY,\n endX,\n endY,\n width: 0,\n height: 0,\n lineWidth: this.props.relationLineWidth,\n color: notEmptyStringOr(child.props.colorStatus, \"#CCC\")\n }),\n itemMetaDecoder({\n receivedAt: new Date()\n })\n );\n // Save a reference to the line item.\n this.relations[identifier] = line;\n\n // Add the line to the DOM.\n line.elementRef.style.zIndex = \"0\";\n this.containerRef.append(line.elementRef);\n\n return line;\n }\n\n /**\n * Add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onItemClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onItemDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console line elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onLineMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the resizement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the elements selection change of the visual console .\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Enable the edition mode.\n */\n public enableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: true };\n });\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Disable the edition mode.\n */\n public disableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: false };\n });\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(itemId: number, unique: boolean = false): void {\n if (unique) {\n this.elementIds.forEach(currentItemId => {\n const meta = this.elementsById[currentItemId].meta;\n\n if (currentItemId !== itemId && meta.isSelected) {\n this.elementsById[currentItemId].unSelectItem();\n } else if (currentItemId === itemId && !meta.isSelected) {\n this.elementsById[currentItemId].selectItem();\n }\n });\n } else if (this.elementsById[itemId]) {\n this.elementsById[itemId].selectItem();\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(itemId: number): void {\n if (this.elementsById[itemId]) {\n const meta = this.elementsById[itemId].meta;\n\n if (meta.isSelected) {\n this.elementsById[itemId].unSelectItem();\n }\n }\n }\n\n /**\n * Unselect all items.\n */\n public unSelectItems(): void {\n this.elementIds.forEach(itemId => {\n if (this.elementsById[itemId]) {\n this.elementsById[itemId].unSelectItem();\n }\n });\n }\n\n // TODO: Document.\n public static items = {\n [ItemType.STATIC_GRAPH]: StaticGraph,\n [ItemType.MODULE_GRAPH]: ModuleGraph,\n [ItemType.SIMPLE_VALUE]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MAX]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MIN]: SimpleValue,\n [ItemType.SIMPLE_VALUE_AVG]: SimpleValue,\n [ItemType.PERCENTILE_BAR]: Percentile,\n [ItemType.PERCENTILE_BUBBLE]: Percentile,\n [ItemType.CIRCULAR_PROGRESS_BAR]: Percentile,\n [ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR]: Percentile,\n [ItemType.LABEL]: Label,\n [ItemType.ICON]: Icon,\n [ItemType.SERVICE]: Service,\n [ItemType.GROUP_ITEM]: Group,\n [ItemType.BOX_ITEM]: Box,\n [ItemType.LINE_ITEM]: Line,\n [ItemType.AUTO_SLA_GRAPH]: EventsHistory,\n [ItemType.DONUT_GRAPH]: DonutGraph,\n [ItemType.BARS_GRAPH]: BarsGraph,\n [ItemType.CLOCK]: Clock,\n [ItemType.COLOR_CLOUD]: ColorCloud,\n [ItemType.NETWORK_LINK]: NetworkLink,\n [ItemType.ODOMETER]: Odometer,\n [ItemType.BASIC_CHART]: BasicChart\n };\n\n /**\n * Relying type item and srcimg and agent and module\n * name convert name item representative.\n *\n * @param item Instance item from extract name.\n *\n * @return Name item.\n */\n public static itemDescriptiveName(item: Item): string {\n let text: string;\n switch (item.props.type) {\n case ItemType.STATIC_GRAPH:\n text = `${t(\"Static graph\")} - ${(item as StaticGraph).props.imageSrc}`;\n break;\n case ItemType.MODULE_GRAPH:\n text = t(\"Module graph\");\n break;\n case ItemType.CLOCK:\n text = t(\"Clock\");\n break;\n case ItemType.BARS_GRAPH:\n text = t(\"Bars graph\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n text = t(\"Event history graph\");\n break;\n case ItemType.PERCENTILE_BAR:\n text = t(\"Percentile bar\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n text = t(\"Circular progress bar\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n text = t(\"Circular progress bar (interior)\");\n break;\n case ItemType.SIMPLE_VALUE:\n text = t(\"Simple Value\");\n break;\n case ItemType.LABEL:\n text = t(\"Label\");\n break;\n case ItemType.GROUP_ITEM:\n text = t(\"Group\");\n break;\n case ItemType.COLOR_CLOUD:\n text = t(\"Color cloud\");\n break;\n case ItemType.ICON:\n text = `${t(\"Icon\")} - ${(item as Icon).props.imageSrc}`;\n break;\n case ItemType.ODOMETER:\n text = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n text = t(\"BasicChart\");\n break;\n default:\n text = t(\"Item\");\n break;\n }\n\n const linkedAgentAndModuleProps = item.props as Partial;\n if (\n linkedAgentAndModuleProps.agentAlias != null &&\n linkedAgentAndModuleProps.moduleName != null\n ) {\n text += ` (${ellipsize(\n linkedAgentAndModuleProps.agentAlias,\n 18\n )} - ${ellipsize(linkedAgentAndModuleProps.moduleName, 25)})`;\n } else if (linkedAgentAndModuleProps.agentAlias != null) {\n text += ` (${ellipsize(linkedAgentAndModuleProps.agentAlias, 25)})`;\n }\n\n return text;\n }\n}\n","import TypedEvent, { Disposable, Listener } from \"./TypedEvent\";\n\ninterface Cancellable {\n cancel(): void;\n}\n\ntype AsyncTaskStatus = \"waiting\" | \"started\" | \"cancelled\" | \"finished\";\ntype AsyncTaskInitiator = (done: () => void) => Cancellable;\n\n/**\n * Defines an async task which can be started and cancelled.\n * It's possible to observe the status changes of the task.\n */\nclass AsyncTask {\n private readonly taskInitiator: AsyncTaskInitiator;\n private cancellable: Cancellable = { cancel: () => {} };\n private _status: AsyncTaskStatus = \"waiting\";\n\n // Event manager for status change events.\n private readonly statusChangeEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n public constructor(taskInitiator: AsyncTaskInitiator) {\n this.taskInitiator = taskInitiator;\n }\n\n /**\n * Public setter of the `status` property.\n * @param status.\n */\n public set status(status: AsyncTaskStatus) {\n this._status = status;\n this.statusChangeEventManager.emit(status);\n }\n\n /**\n * Public accessor of the `status` property.\n * @return status.\n */\n public get status() {\n return this._status;\n }\n\n /**\n * Start the async task.\n */\n public init(): void {\n this.cancellable = this.taskInitiator(() => {\n this.status = \"finished\";\n });\n this.status = \"started\";\n }\n\n /**\n * Cancel the async task.\n */\n public cancel(): void {\n this.cancellable.cancel();\n this.status = \"cancelled\";\n }\n\n /**\n * Add an event handler to the status change.\n * @param listener Function which is going to be executed when the status changes.\n */\n public onStatusChange(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.statusChangeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n}\n\n/**\n * Wrap an async task into another which will execute that task indefinitely\n * every time the tash finnish and the chosen period ends.\n * Will last until cancellation.\n *\n * @param task Async task to execute.\n * @param period Time in milliseconds to wait until the next async esecution.\n *\n * @return A new async task.\n */\nfunction asyncPeriodic(task: AsyncTask, period: number): AsyncTask {\n return new AsyncTask(() => {\n let ref: number | null = null;\n\n task.onStatusChange(status => {\n if (status === \"finished\") {\n ref = window.setTimeout(() => {\n task.init();\n }, period);\n }\n });\n\n task.init();\n\n return {\n cancel: () => {\n if (ref) clearTimeout(ref);\n task.cancel();\n }\n };\n });\n}\n\n/**\n * Manages a list of async tasks.\n */\nexport default class AsyncTaskManager {\n private tasks: { [identifier: string]: AsyncTask } = {};\n\n /**\n * Adds an async task to the manager.\n *\n * @param identifier Unique identifier.\n * @param taskInitiator Function to initialize the async task.\n * Should return a structure to cancel the task.\n * @param period Optional period to repeat the task indefinitely.\n */\n public add(\n identifier: string,\n taskInitiator: AsyncTaskInitiator,\n period: number = 0\n ): AsyncTask {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n\n const asyncTask =\n period > 0\n ? asyncPeriodic(new AsyncTask(taskInitiator), period)\n : new AsyncTask(taskInitiator);\n\n this.tasks[identifier] = asyncTask;\n\n return this.tasks[identifier];\n }\n\n /**\n * Starts an async task.\n *\n * @param identifier Unique identifier.\n */\n public init(identifier: string) {\n if (\n this.tasks[identifier] &&\n (this.tasks[identifier].status === \"waiting\" ||\n this.tasks[identifier].status === \"cancelled\" ||\n this.tasks[identifier].status === \"finished\")\n ) {\n this.tasks[identifier].init();\n }\n }\n\n /**\n * Cancel a running async task.\n *\n * @param identifier Unique identifier.\n */\n public cancel(identifier: string) {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n }\n}\n","/*\n * Useful resources.\n * http://es6-features.org/\n * http://exploringjs.com/es6\n * https://www.typescriptlang.org/\n */\n\nimport \"./main.css\"; // CSS import.\nimport VisualConsole from \"./VisualConsole\";\nimport * as Form from \"./Form\";\nimport AsyncTaskManager from \"./lib/AsyncTaskManager\";\n\n// Export the VisualConsole class to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole = VisualConsole;\n\n// Export the VisualConsole's Form classes to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole.Form = Form;\n\n// Export the AsyncTaskManager class to the global object.\n// eslint-disable-next-line\n(window as any).AsyncTaskManager = AsyncTaskManager;\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/lib/index.ts","webpack:///./src/Item.ts","webpack:///./src/lib/TypedEvent.ts","webpack:///./src/Form.ts","webpack:///./src/lib/FontAwesomeIcon.ts","webpack:///./node_modules/@fortawesome/free-solid-svg-icons/index.es.js","webpack:///./src/items/EventsHistory.ts","webpack:///./src/items/DonutGraph.ts","webpack:///./src/items/ModuleGraph.ts","webpack:///./src/items/BasicChart.ts","webpack:///./src/lib/help-tip.png","webpack:///./src/items/StaticGraph.ts","webpack:///./src/items/Icon.ts","webpack:///./src/items/ColorCloud.ts","webpack:///./src/items/Line.ts","webpack:///./src/items/NetworkLink.ts","webpack:///./src/items/Group.ts","webpack:///./src/items/Clock/index.ts","webpack:///./src/items/Box.ts","webpack:///./src/items/Label.ts","webpack:///./src/items/SimpleValue.ts","webpack:///./node_modules/d3-path/src/path.js","webpack:///./node_modules/d3-shape/src/constant.js","webpack:///./node_modules/d3-shape/src/math.js","webpack:///./node_modules/d3-shape/src/arc.js","webpack:///./src/items/Percentile.ts","webpack:///./src/items/BarsGraph.ts","webpack:///./src/items/Service.ts","webpack:///./src/items/Odometer.ts","webpack:///./src/VisualConsole.ts","webpack:///./src/lib/AsyncTaskManager.ts","webpack:///./src/index.ts"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","parseIntOr","defaultValue","length","isNaN","parseInt","parseFloatOr","parseFloat","stringIsEmpty","notEmptyStringOr","parseBoolean","leftPad","pad","diffLength","substr","Math","abs","substring","repeatTimes","floor","restLength","newPad","positionPropsDecoder","data","x","y","sizePropsDecoder","width","height","TypeError","modulePropsDecoder","moduleName","moduleDescription","moduleDisabled","agentProps","agentId","agentName","agentAlias","agentDescription","agentAddress","agentDisabled","metaconsoleId","agentPropsDecoder","linkedVCPropsDecoder","linkedLayoutStatusProps","linkedLayoutStatusType","weight","linkedLayoutStatusTypeWeight","warningThreshold","linkedLayoutStatusTypeWarningThreshold","criticalThreshold","linkedLayoutStatusTypeCriticalThreshold","linkedLayoutId","linkedLayoutNodeId","itemMetaDecoder","receivedAt","Date","Number","getTime","error","Error","editMode","maintenanceMode","isFromCache","isFetching","isUpdating","isBeingMoved","isBeingResized","isSelected","lineMode","prefixedCssRules","ruleName","ruleValue","rule","decodeBase64","input","decodeURIComponent","escape","window","atob","humanDate","date","locale","Intl","DateTimeFormat","day","month","year","format","getDate","getMonth","getFullYear","humanTime","getHours","getMinutes","getSeconds","replaceMacros","macros","text","reduce","acc","macro","replace","throttle","delay","fn","last","now","args","debounce","timerRef","clearTimeout","setTimeout","getOffset","el","parent","offsetLeft","offsetTop","scrollLeft","scrollTop","offsetParent","top","left","addMovementListener","element","onMoved","altContainer","container","parentElement","isDraggable","draggable","lastX","lastY","lastMouseX","lastMouseY","mouseElementOffsetX","mouseElementOffsetY","containerBounds","getBoundingClientRect","containerOffset","containerTop","containerBottom","containerLeft","containerRight","elementBounds","borderWidth","getComputedStyle","borderFix","debouncedMovement","throttledMovement","handleMove","e","mouseX","pageX","mouseY","pageY","mouseDeltaX","mouseDeltaY","maxX","maxY","outOfBoundsLeft","outOfBoundsRight","outOfBoundsTop","outOfBoundsBottom","handleEnd","document","removeEventListener","body","style","userSelect","handleStart","button","stopPropagation","setAttribute","elementOffset","offsetX","offsetY","addEventListener","addResizementListener","onResized","resizeDraggable","createElement","className","appendChild","lastWidth","lastHeight","elementTop","elementLeft","debouncedResizement","throttledResizement","handleResize","remove","ellipsize","str","max","ellipse","trim","parseLabelPosition","labelPosition","itemBasePropsDecoder","id","type","label","isLinkEnabled","link","isOnTop","parentId","aclGroupId","cacheExpiration","colorStatus","cellId","props","metadata","deferInit","elementRef","labelElementRef","childElementRef","clickEventManager","dblClickEventManager","movedEventManager","movementFinishedEventManager","resizedEventManager","resizeFinishedEventManager","removeEventManager","selectionChangedEventManager","disposables","debouncedMovementSave","_metadata","prevPosition","newPosition","positionChanged","move","emit","item","removeMovement","debouncedResizementSave","prevSize","newSize","sizeChanged","resize","removeResizement","this","itemProps","init","initMovementListener","meta","moveElement","stopMovementListener","initResizementListener","labelWidth","labelHeight","resizeElement","stopResizementListener","createContainerDomElement","createLabelDomElement","createDomElement","changeLabelPosition","box","href","classList","add","unSelectItem","selectItem","nativeEvent","preventDefault","divParent","divSpinner","path","composedPath","containerId","index","undefined","includes","containerVC","getElementById","getLabelWithMacrosReplaced","table","row","emptyRow1","emptyRow2","cell","innerHTML","textAlign","updateDomElement","newProps","setProps","prevProps","shouldBeUpdated","render","newMetadata","setMeta","prevMetadata","selected","prevMeta","oldLabelHtml","newLabelHtml","attrs","attributes","nodeName","cloneIsNeeded","getAttributeNode","setAttributeNode","cloneNode","parentNode","replaceChild","div","querySelector","removeChild","forEach","disposable","dispose","ignored","position","flexDirection","tables","getElementsByTagName","onClick","listener","on","push","onDblClick","onMovementFinished","onResizeFinished","onRemove","onSelectionChanged","getFormContainer","VisualConsoleItem","title","titleItem","listeners","listenersOncer","off","once","callbackIndex","indexOf","splice","event","pipe","te","initialData","_name","currentData","dataRequestedEventManager","RangeError","_element","content","createContent","Array","reset","updateData","requestData","identifier","params","done","onDataRequested","inputGroups","enabledInputGroups","inputGroupsByName","enabledInputGroupNames","submitEventManager","itemDataRequestedEventManager","handleItemDataRequested","prevVal","inputGroup","filter","getInputGroup","inputGroupName","addInputGroup","slice","removeInputGroup","getFormElement","form","formContent","onSubmit","onInputGroupDataRequested","svgNS","iconDefinition","size","color","spin","pulse","iconName","icon","createElementNS","pathData","faListAlt","prefix","faPencilAlt","faPlusCircle","faTrashAlt","eventsHistoryPropsDecoder","html","encodedHtml","maxTime","legendColor","opacity","scripts","src","eval","flotText","getElementsByClassName","aux","donutGraphPropsDecoder","legendBackgroundColor","parseBackgroundType","backgroundType","parseGraphType","graphType","moduleGraphPropsDecoder","period","customGraphId","legendP","margin","overviewGraphs","basicChartPropsDecoder","status","moduleNameColor","header","textContent","number_format","moduleValue","insertBefore","firstChild","number","force_integer","unit","short_data","divisor","round","aux_decimals","pos","padding","parseShowLastValueTooltip","showLastValueTooltip","staticGraphPropsDecoder","imageSrc","statusImageSrc","lastValue","imgSrc","backgroundImage","backgroundRepeat","backgroundSize","backgroundPosition","Item","iconPropsDecoder","image","colorCloudPropsDecoder","defaultColor","colorRanges","generalDiv","colorLabel","ColorInput","required","target","rangesLabel","createLabel","rangesControlsContainer","createdRangesContainer","buildRanges","ranges","colorRange","rangeContainer","range","handleRangeUpdatePartial","newRanges","handleDelete","initialRangeContainer","onCreate","initialState","state","rangesContainer","rangesContainerFromValue","rangesLabelFromValue","rangesInputFromValue","createInputNumber","fromValue","rangesDivContainerToValue","rangesLabelToValue","rangesInputToValue","toValue","rangesDivContainerColor","rangesLabelColor","rangesInputColor","createInputColor","createBtn","onUpdate","onDelete","deleteBtn","append","createSvgElement","gradientId","svg","defs","radialGradient","stop0","stop100","circle","ColorCloud","formContainer","linePropsDecoder","startPosition","startX","startY","endPosition","endX","endY","lineWidth","borderColor","viewportOffsetX","viewportOffsetY","labelEnd","labelEndWidth","linkedEnd","linkedStart","labelEndHeight","labelStart","labelStartWidth","labelStartHeight","extractBoxSizeAndPosition","Line","circleRadius","moveMode","isMoving","lineMovedEventManager","TypedEvent","lineMovedEventDisposables","debouncedStartPositionMovementSave","removeStartPositionMovement","debouncedEndPositionMovementSave","removeEndPositionMovement","initStartPositionMovementListener","stopStartPositionMovementListener","initEndPositionMovementListener","stopEndPositionMovementListener","x1","y1","x2","y2","line","cursor","svgs","lines","getElementsByTagNameNS","startCircle","endCircle","circlesStart","circlesEnd","borderRadius","backgroundColor","circles","min","startIsLeft","startIsTop","start","end","onLineMovementFinished","networkLinkPropsDecoder","groups","lineX1","lineY1","lineX2","lineY2","g","atan2","PI","split","labels","arrows","arrow","arrowSize","arrowPosX","arrowPosY","arrowStart","border","borderBottom","transform","arrowEnd","htmlLabelStart","console","htmlLabelEnd","groupPropsDecoder","groupId","showStatistics","extractHtml","parseClockType","clockType","parseClockFormat","clockFormat","clockPropsDecoder","clockTimezone","clockTimezoneOffset","showClockTimezone","intervalRef","startTick","createClock","Clock","TICK_INTERVAL","stopTick","clearInterval","handler","interval","setInterval","getElementSize","newWidth","newHeight","createAnalogicClock","createDigitalClock","colors","dateFontSize","baseTimeFontSize","clockFace","clockFaceBackground","city","getHumanTimezone","timezoneComplication","marksGroup","mainMarkGroup","mark1a","mark1b","mark","hourHand","hourHandA","hourHandB","minuteHand","minuteHandA","minuteHandB","minuteHandPin","secondHand","secondHandBar","secondHandPin","pin","getOriginDate","seconds","minutes","secAngle","minuteAngle","hourAngle","join","dateElem","fontSize","modified","tzFontSizeMultiplier","timeFontSize","tzFontSize","timeElem","tzElem","initialDate","targetTZOffset","localTZOffset","getTimezoneOffset","utimestamp","timezone","diameter","extraHeigth","boxPropsDecoder","fillColor","fillTransparent","boxSizing","borderStyle","maxBorderWidth","labelPropsDecoder","parseValueType","valueType","simpleValuePropsDecoder","processValue","parseProcessValue","img","pi","tau","tauEpsilon","Path","_x0","_y0","_x1","_y1","_","constructor","moveTo","closePath","lineTo","quadraticCurveTo","bezierCurveTo","arcTo","x0","y0","x21","y21","x01","y01","l01_2","x20","y20","l21_2","l20_2","l21","sqrt","l01","tan","acos","t01","t21","arc","a0","a1","ccw","dx","cos","dy","sin","cw","da","rect","w","h","toString","halfPi","asin","arcInnerRadius","innerRadius","arcOuterRadius","outerRadius","arcStartAngle","startAngle","arcEndAngle","endAngle","arcPadAngle","padAngle","intersect","x3","y3","x10","y10","x32","y32","cornerTangents","r1","rc","lo","ox","oy","x11","y11","x00","y00","d2","D","cx0","cy0","cx1","cy1","dx0","dy0","dx1","dy1","cx","cy","extractPercentileType","extractValueType","percentilePropsDecoder","percentileType","minValue","maxValue","labelColor","formatValue","background","progress","getProgress","NumberFormat","backgroundRect","progressRect","backgroundCircle","progressCircle","arcProps","cornerRadius","constant","padRadius","context","buffer","r0","apply","arguments","t0","t1","a01","a11","a00","a10","da0","da1","ap","rp","rc0","rc1","p0","p1","oc","ax","ay","bx","by","kc","lc","centroid","a","trunc","parseBarsGraphProps","parseTypeGraph","typeGraph","barsGraphPropsDecoder","gridColor","servicePropsDecoder","encodedTitle","serviceId","odometerPropsDecoder","titleColor","titleModule","thresholds","minMaxValue","odometerType","lineWarning","lineWarning2","lineCritical","lineCritical2","JSON","parse","min_warning","max_warning","getCoords","min_critical","max_critical","percent","toFixed","getSubfix","maximumSignificantDigits","maximumFractionDigits","numb","match","rotate","getRotate","anchoB","odometerContainer","odometerA","odometerB","odometerC","gaugeE","SVG_NS","svgWarning","setAttributeNS","pathWarning","svgCritical","pathCritical","h1","innerText","lineHeight","h2","truncateTitle","script","onload","display","minMax","limit","subfix","radio","halfLength","diff","decodeProps","items","elementsById","elementIds","relations","lineLinks","handleElementClick","handleElementDblClick","handleElementMovement","itemId","getItemRelations","relation","getVisualCenter","childId","updateLinesConnected","handleElementMovementFinished","handleLineElementMovementFinished","refreshLink","handleElementResizement","handleElementResizementFinished","handleElementRemove","clearRelations","handleElementSelectionChanged","elements","handleContainerClick","unSelectItems","containerRef","_props","backgroundURL","isFavorite","relationLineWidth","visualConsolePropsDecoder","sort","b","addElement","buildRelations","coordinatesInItem","itemAtStart","itemAtEnd","keys","to","save","lineId","updateElement","options","debouncedLinePositionSave","map","itemInstance","ModuleGraph","EventsHistory","DonutGraph","BasicChart","itemInstanceFrom","message","updateElements","itemIds","child","addRelationLine","ids","getRelationLine","itemRelations","clientWidth","clientHeight","parentX","parentY","childX","childY","zIndex","onItemClick","onItemDblClick","onItemMoved","onLineMoved","onItemResized","onItemSelectionChanged","enableEditMode","disableEditMode","enableMaintenanceMode","disableMaintenanceMode","unique","currentItemId","itemDescriptiveName","linkedAgentAndModuleProps","taskInitiator","cancellable","cancel","_status","statusChangeEventManager","onStatusChange","tasks","asyncTask","task","ref","asyncPeriodic","VisualConsole","Form","AsyncTaskManager"],"mappings":"aACE,IAAIA,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUC,QAGnC,IAAIC,EAASJ,EAAiBE,GAAY,CACzCG,EAAGH,EACHI,GAAG,EACHH,QAAS,IAUV,OANAI,EAAQL,GAAUM,KAAKJ,EAAOD,QAASC,EAAQA,EAAOD,QAASF,GAG/DG,EAAOE,GAAI,EAGJF,EAAOD,QAKfF,EAAoBQ,EAAIF,EAGxBN,EAAoBS,EAAIV,EAGxBC,EAAoBU,EAAI,SAASR,EAASS,EAAMC,GAC3CZ,EAAoBa,EAAEX,EAASS,IAClCG,OAAOC,eAAeb,EAASS,EAAM,CAAEK,YAAY,EAAMC,IAAKL,KAKhEZ,EAAoBkB,EAAI,SAAShB,GACX,oBAAXiB,QAA0BA,OAAOC,aAC1CN,OAAOC,eAAeb,EAASiB,OAAOC,YAAa,CAAEC,MAAO,WAE7DP,OAAOC,eAAeb,EAAS,aAAc,CAAEmB,OAAO,KAQvDrB,EAAoBsB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQrB,EAAoBqB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,iBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKX,OAAOY,OAAO,MAGvB,GAFA1B,EAAoBkB,EAAEO,GACtBX,OAAOC,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOrB,EAAoBU,EAAEe,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRzB,EAAoB6B,EAAI,SAAS1B,GAChC,IAAIS,EAAST,GAAUA,EAAOqB,WAC7B,WAAwB,OAAOrB,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAH,EAAoBU,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRZ,EAAoBa,EAAI,SAASiB,EAAQC,GAAY,OAAOjB,OAAOkB,UAAUC,eAAe1B,KAAKuB,EAAQC,IAGzG/B,EAAoBkC,EAAI,GAIjBlC,EAAoBA,EAAoBmC,EAAI,I,g7BC3D9C,SAASC,EAAcf,EAAgBgB,GAC5C,MAAqB,iBAAVhB,EAA2BA,EACjB,iBAAVA,GAAsBA,EAAMiB,OAAS,IAAMC,MAAMC,SAASnB,IAC5DmB,SAASnB,GACNgB,EASP,SAASI,EAAgBpB,EAAgBgB,GAC9C,MAAqB,iBAAVhB,EAA2BA,EAEnB,iBAAVA,GACPA,EAAMiB,OAAS,IACdC,MAAMG,WAAWrB,IAEXqB,WAAWrB,GACRgB,EAQP,SAASM,EAActB,GAC5B,OAAgB,MAATA,GAAkC,IAAjBA,EAAMiB,OASzB,SAASM,EACdvB,EACAgB,GAEA,MAAwB,iBAAVhB,GAAsBA,EAAMiB,OAAS,EAAIjB,EAAQgB,EAQ1D,SAASQ,EAAaxB,GAC3B,MAAqB,kBAAVA,EAA4BA,EACb,iBAAVA,EAA2BA,EAAQ,EACzB,iBAAVA,IAAqC,MAAVA,GAA2B,SAAVA,GA8BvD,SAASyB,EACdzB,EACAiB,EACAS,QAAA,IAAAA,MAAA,KAEqB,iBAAV1B,IAAoBA,EAAQ,GAAGA,GACvB,iBAAR0B,IAAkBA,EAAM,GAAGA,GAEtC,IAAMC,EAAaV,EAASjB,EAAMiB,OAClC,GAAmB,IAAfU,EAAkB,OAAO3B,EAC7B,GAAI2B,EAAa,EAAG,OAAO3B,EAAM4B,OAAOC,KAAKC,IAAIH,IAEjD,GAAIA,IAAeD,EAAIT,OAAQ,MAAO,GAAGS,EAAM1B,EAC/C,GAAI2B,EAAaD,EAAIT,OAAQ,MAAO,GAAGS,EAAIK,UAAU,EAAGJ,GAAc3B,EAMtE,IAJA,IAAMgC,EAAcH,KAAKI,MAAMN,EAAaD,EAAIT,QAC1CiB,EAAaP,EAAaD,EAAIT,OAASe,EAEzCG,EAAS,GACJpD,EAAI,EAAGA,EAAIiD,EAAajD,IAAKoD,GAAUT,EAEhD,OAAmB,IAAfQ,EAAyB,GAAGC,EAASnC,EAClC,GAAGmC,EAAST,EAAIK,UAAU,EAAGG,GAAclC,EAU7C,SAASoC,EAAqBC,GACnC,MAAO,CACLC,EAAGvB,EAAWsB,EAAKC,EAAG,GACtBC,EAAGxB,EAAWsB,EAAKE,EAAG,IAUnB,SAASC,EAAiBH,GAC/B,GACgB,MAAdA,EAAKI,OACLvB,MAAMC,SAASkB,EAAKI,SACL,MAAfJ,EAAKK,QACLxB,MAAMC,SAASkB,EAAKK,SAEpB,MAAM,IAAIC,UAAU,iBAGtB,MAAO,CACLF,MAAOtB,SAASkB,EAAKI,OACrBC,OAAQvB,SAASkB,EAAKK,SAgCnB,SAASE,EAAmBP,GACjC,OAAO,EAAP,CACEzD,SAAUmC,EAAWsB,EAAKzD,SAAU,MACpCiE,WAAYtB,EAAiBc,EAAKQ,WAAY,MAC9CC,kBAAmBvB,EAAiBc,EAAKS,kBAAmB,MAC5DC,eAAgBvB,EAAaa,EAAKU,iBA5B/B,SAA2BV,GAChC,IAAMW,EAA6B,CACjCC,QAASlC,EAAWsB,EAAKY,QAAS,MAClCC,UAAW3B,EAAiBc,EAAKa,UAAW,MAC5CC,WAAY5B,EAAiBc,EAAKc,WAAY,MAC9CC,iBAAkB7B,EAAiBc,EAAKe,iBAAkB,MAC1DC,aAAc9B,EAAiBc,EAAKgB,aAAc,MAClDC,cAAe9B,EAAaa,EAAKiB,gBAGnC,OAA6B,MAAtBjB,EAAKkB,cACR,EAAD,CACGA,cAAelB,EAAKkB,eACjBP,GAELA,EAcCQ,CAAkBnB,IAUlB,SAASoB,EACdpB,GAEA,IAAIqB,EAA0D,CAC5DC,uBAAwB,WAE1B,OAAQtB,EAAKsB,wBACX,IAAK,SACH,IAAMC,EAAS7C,EAAWsB,EAAKwB,6BAA8B,MAC7D,GAAc,MAAVD,EACF,MAAM,IAAIjB,UAAU,0CAElBN,EAAKwB,+BACPH,EAA0B,CACxBC,uBAAwB,SACxBE,6BAA8BD,IAElC,MAEF,IAAK,UACH,IAAME,EAAmB/C,EACvBsB,EAAK0B,uCACL,MAEIC,EAAoBjD,EACxBsB,EAAK4B,wCACL,MAEF,GAAwB,MAApBH,GAAiD,MAArBE,EAC9B,MAAM,IAAIrB,UAAU,0CAGtBe,EAA0B,CACxBC,uBAAwB,UACxBI,uCAAwCD,EACxCG,wCAAyCD,GAM/C,OAAO,EAAP,CACEE,eAAgBnD,EAAWsB,EAAK6B,eAAgB,MAChDC,mBAAoBpD,EAAWsB,EAAK8B,mBAAoB,OACrDT,GASA,SAASU,EAAgB/B,GAC9B,IAnL6BrC,EAAgBgB,EAmLvCqD,GAnLuBrE,EAmLEqC,EAAKgC,WAnLSrD,EAmLG,KAlL5ChB,aAAiBsE,KAAatE,EACR,iBAAVA,EAA2B,IAAIsE,KAAa,IAARtE,GAEjC,iBAAVA,GACNuE,OAAOrD,MAAM,IAAIoD,KAAKtE,GAAOwE,WAGpBxD,EADH,IAAIsD,KAAKtE,IA6KlB,GAAmB,OAAfqE,EAAqB,MAAM,IAAI1B,UAAU,0BAE7C,IAAI8B,EAAQ,KAIZ,OAHIpC,EAAKoC,iBAAiBC,MAAOD,EAAQpC,EAAKoC,MACf,iBAAfpC,EAAKoC,QAAoBA,EAAQ,IAAIC,MAAMrC,EAAKoC,QAEzD,CACLJ,WAAU,EACVI,MAAK,EACLE,SAAUnD,EAAaa,EAAKsC,UAC5BC,gBAAiBpD,EAAaa,EAAKuC,iBACnCC,YAAarD,EAAaa,EAAKwC,aAC/BC,YAAY,EACZC,YAAY,EACZC,cAAc,EACdC,gBAAgB,EAChBC,YAAY,EACZC,UAAU,GAUP,SAASC,EACdC,EACAC,GAEA,IAAMC,EAAUF,EAAQ,KAAKC,EAAS,IACtC,MAAO,CACL,WAAWC,EACX,QAAQA,EACR,OAAOA,EACP,MAAMA,EACN,GAAGA,GASA,SAASC,EAAaC,GAC3B,OAAOC,mBAAmBC,OAAOC,OAAOC,KAAKJ,KAUxC,SAASK,EAAUC,EAAYC,GACpC,QADoC,IAAAA,MAAA,MAChCA,GAAUC,MAAQA,KAAKC,eAAgB,CAOzC,OAAOD,KAAKC,eAAeF,EALiB,CAC1CG,IAAK,UACLC,MAAO,UACPC,KAAM,YAEoCC,OAAOP,GASnD,OANYtE,EAAQsE,EAAKQ,UAAW,EAAG,GAM1B,IAJC9E,EAAQsE,EAAKS,WAAa,EAAG,EAAG,GAIxB,IAHT/E,EAAQsE,EAAKU,cAAe,EAAG,GAazC,SAASC,EAAUX,GAKxB,OAJctE,EAAQsE,EAAKY,WAAY,EAAG,GAI3B,IAHClF,EAAQsE,EAAKa,aAAc,EAAG,GAGpB,IAFVnF,EAAQsE,EAAKc,aAAc,EAAG,GAczC,SAASC,EAAcC,EAAiBC,GAC7C,OAAOD,EAAOE,QACZ,SAACC,EAAK,G,IAAEC,EAAK,QAAEnH,EAAK,QAAO,OAAAkH,EAAIE,QAAQD,EAAOnH,KAC9CgH,GAUG,SAASK,EAAeC,EAAeC,GAC5C,IAAIC,EAAO,EACX,OAAO,W,IAAC,sDACN,IAAMC,EAAMnD,KAAKmD,MACjB,KAAIA,EAAMD,EAAOF,GAEjB,OADAE,EAAOC,EACAF,EAAE,aAAIG,IAUV,SAASC,EAAYL,EAAeC,GACzC,IAAIK,EAA0B,KAC9B,OAAO,W,IAAC,sDACW,OAAbA,GAAmBhC,OAAOiC,aAAaD,GAC3CA,EAAWhC,OAAOkC,YAAW,WAC3BP,EAAE,aAAIG,GACNE,EAAW,OACVN,IAQP,SAASS,EAAUC,EAAwBC,GAGzC,IAFA,IAAI3F,EAAI,EACJC,EAAI,EAENyF,IACCzD,OAAOrD,MAAM8G,EAAGE,cAChB3D,OAAOrD,MAAM8G,EAAGG,YACjBH,IAAOC,GAEP3F,GAAK0F,EAAGE,WAAaF,EAAGI,WACxB7F,GAAKyF,EAAGG,UAAYH,EAAGK,UACvBL,EAAKA,EAAGM,aAEV,MAAO,CAAEC,IAAKhG,EAAGiG,KAAMlG,GAYlB,SAASmG,EACdC,EACAC,EACAC,GAEA,IAAMC,EAAYD,GAAiBF,EAAQI,cAGrCC,EAAcL,EAAQM,UAExBC,EAAuB,EACvBC,EAAuB,EACvBC,EAA4B,EAC5BC,EAA4B,EAC5BC,EAAqC,EACrCC,EAAqC,EAErCC,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB7G,OACjDkH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB9G,MACjDqH,EAAgBpB,EAAQc,wBACxBO,EAAcnE,OAAOoE,iBAAiBtB,GAASqB,aAAe,IAC9DE,EAA2C,EAA/B1F,OAAOpD,SAAS4I,GAG1BG,EAAoBvC,EAAS,GAAIgB,GAEjCwB,EAAoB9C,EAAS,GAAIsB,GAEjCyB,EAAa,SAACC,GAElB,IAAI/H,EAAI,EACJC,EAAI,EAEF+H,EAASD,EAAEE,MACXC,EAASH,EAAEI,MACXC,EAAcJ,EAASnB,EACvBwB,EAAcH,EAASpB,EAGvBwB,EAAOrB,EAAgB9G,MAAQqH,EAAcrH,MAAQwH,EAErDY,EAAOtB,EAAgB7G,OAASoH,EAAcpH,OAASuH,EAEvDa,EACJR,EAASV,GACE,IAAVX,GACCyB,EAAc,GACdJ,EAASV,EAAgBP,EACvB0B,EACJT,EAAST,GACTa,EAAczB,EAAQa,EAAcrH,MAAQwH,EAC1CV,EAAgB9G,OACjBwG,IAAU2B,GACTF,EAAc,GACdJ,EAASV,EAAgBgB,EAAOvB,EAC9B2B,EACJR,EAASd,GACE,IAAVR,GACCyB,EAAc,GACdH,EAASd,EAAeJ,EACtB2B,EACJT,EAASb,GACTgB,EAAczB,EAAQY,EAAcpH,OAASuH,EAC3CV,EAAgB7G,QACjBwG,IAAU2B,GACTF,EAAc,GACdH,EAASd,EAAemB,EAAOvB,GAEdhH,EAAjBwI,EA9BS,EA+BJC,EAAsBH,EACtBF,EAAczB,GAMf,IAAG3G,EAtCE,IAkCOC,EAAhByI,EAhCS,EAiCJC,EAAuBJ,EACvBF,EAAczB,GAGf,IAAG3G,EArCE,GAwCb4G,EAAamB,EACblB,EAAaoB,EAETlI,IAAM2G,GAAS1G,IAAM2G,IAGzBiB,EAAkB7H,EAAGC,GACrB2H,EAAkB5H,EAAGC,GAGrB0G,EAAQ3G,EACR4G,EAAQ3G,IAEJ2I,EAAY,WAEhBjC,EAAQ,EACRC,EAAQ,EACRC,EAAa,EACbC,EAAa,EAEb+B,SAASC,oBAAoB,YAAahB,GAE1Ce,SAASC,oBAAoB,UAAWF,GAExCxC,EAAQM,UAAYD,EAEpBoC,SAASE,KAAKC,MAAMC,WAAa,QAE7BC,EAAc,SAACnB,GAEnB,GAAiB,IAAbA,EAAEoB,OAAN,CAEApB,EAAEqB,kBAGFhD,EAAQM,WAAY,EAGpBN,EAAQiD,aAAa,cAAe,iBACpCjD,EAAQiD,aAAa,YAAa,SAIlC,IAAMC,EAAgB7D,EAAUW,EAASG,GACzCI,EAAQ2C,EAAcpD,KACtBU,EAAQ0C,EAAcrD,IAGtBY,EAAakB,EAAEE,MACfnB,EAAaiB,EAAEI,MAEfpB,EAAsBgB,EAAEwB,QACxBvC,EAAsBe,EAAEyB,QAGxBvC,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB7G,OACjDkH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB9G,MACjDqH,EAAgBpB,EAAQc,wBACxBO,EAAcnE,OAAOoE,iBAAiBtB,GAASqB,aAAe,IAC9DE,EAA2C,EAA/B1F,OAAOpD,SAAS4I,GAG5BoB,SAASY,iBAAiB,YAAa3B,GAEvCe,SAASY,iBAAiB,UAAWb,GAErCC,SAASE,KAAKC,MAAMC,WAAa,SAOnC,OAHA7C,EAAQqD,iBAAiB,YAAaP,GAG/B,WACL9C,EAAQ0C,oBAAoB,YAAaI,GACzCN,KAYG,SAASc,EACdtD,EACAuD,GAEA,IAGMC,EAAkBf,SAASgB,cAAc,OAC/CD,EAAgBE,UAAY,mBAC5B1D,EAAQ2D,YAAYH,GAGpB,IAAMrD,EAAYH,EAAQI,cAEpBC,EAAcL,EAAQM,UAExBsD,EAA2B,EAC3BC,EAA6B,EAC7BpD,EAA4B,EAC5BC,EAA4B,EAC5BC,EAAqC,EAGrCE,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB7G,OACjDkH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB9G,MACjDmJ,EAAgB7D,EAAUW,GAC1B8D,EAAaZ,EAAcrD,IAC3BkE,EAAcb,EAAcpD,KAC5BuB,EAAcnE,OAAOoE,iBAAiBtB,GAASqB,aAAe,IAC9DE,EAAY1F,OAAOpD,SAAS4I,GAG1B2C,EAAsB/E,EAAS,GAAIsE,GAEnCU,EAAsBtF,EAAS,GAAI4E,GAEnCW,EAAe,SAACvC,GAEpB,IAAI5H,EAAQ6J,GAAajC,EAAEE,MAAQpB,GAC/BzG,EAAS6J,GAAclC,EAAEI,MAAQrB,GAEjC3G,IAAU6J,GAAa5J,IAAW6J,GAGpC9J,EAAQ6J,GACRjC,EAAEE,MAAQkC,GAAeH,EAAYjD,KAInC5G,EAjDW,GAmDbA,EAnDa,GAoDJA,EAAQgK,EAAcxC,EAAY,GAAKJ,IAEhDpH,EAAQoH,EAAiB4C,GAEvB/J,EAvDY,GAyDdA,EAzDc,GA0DLA,EAAS8J,EAAavC,EAAY,GAAKN,IAEhDjH,EAASiH,EAAkB6C,GAI7BG,EAAoBlK,EAAOC,GAC3BgK,EAAoBjK,EAAOC,GAG3B4J,EAAY7J,EACZ8J,EAAa7J,EAEbyG,EAAakB,EAAEE,MACfnB,EAAaiB,EAAEI,QAEXS,EAAY,WAEhBoB,EAAY,EACZC,EAAa,EACbpD,EAAa,EACbC,EAAa,EACbC,EAAsB,EACA,EAEtB8B,SAASC,oBAAoB,YAAawB,GAE1CzB,SAASC,oBAAoB,UAAWF,GAExCxC,EAAQM,UAAYD,EAEpBoC,SAASE,KAAKC,MAAMC,WAAa,QA2CnC,OAHAW,EAAgBH,iBAAiB,aAtCb,SAAC1B,GACnBA,EAAEqB,kBAGFhD,EAAQM,WAAY,EAId,MAAoBN,EAAQc,wBAA1B/G,EAAK,QAAEC,EAAM,SACrB4J,EAAY7J,EACZ8J,EAAa7J,EAEbyG,EAAakB,EAAEE,MACfnB,EAAaiB,EAAEI,MAEfpB,EAAsBgB,EAAEwB,QACFxB,EAAEyB,QAGxBvC,EAAkBV,EAAUW,wBAC5BC,EAAkB1B,EAAUc,GAC5Ba,EAAeD,EAAgBlB,IAC/BoB,EAAkBD,EAAeH,EAAgB7G,OACjDkH,EAAgBH,EAAgBjB,KAChCqB,EAAiBD,EAAgBL,EAAgB9G,MACjDmJ,EAAgB7D,EAAUW,GAC1B8D,EAAaZ,EAAcrD,IAC3BkE,EAAcb,EAAcpD,KAG5B2C,SAASY,iBAAiB,YAAaa,GAEvCzB,SAASY,iBAAiB,UAAWb,GAErCC,SAASE,KAAKC,MAAMC,WAAa,UAO5B,WACLW,EAAgBW,SAChB3B,KAKG,SAASjL,EAAE+G,GAChB,OAAOA,EAoNF,SAAS8F,EACdC,EACAC,EACAC,GAEA,YAHA,IAAAD,MAAA,UACA,IAAAC,MAAA,KAEOF,EAAIG,OAAOjM,OAAS+L,EAAMD,EAAInL,OAAO,EAAGoL,GAAKE,OAASD,EAAUF,I,uSCz2BnEI,EAAqB,SACzBC,GAEA,OAAQA,GACN,IAAK,KACL,IAAK,QACL,IAAK,OACL,IAAK,OACH,OAAOA,EACT,QACE,MAAO,SAaN,SAASC,EAAqBhL,GACnC,GAAe,MAAXA,EAAKiL,IAAcpM,MAAMC,SAASkB,EAAKiL,KACzC,MAAM,IAAI3K,UAAU,eAEtB,GAAiB,MAAbN,EAAKkL,MAAgBrM,MAAMC,SAASkB,EAAKkL,OAC3C,MAAM,IAAI5K,UAAU,iBAGtB,OAAO,EAAP,GACE2K,GAAInM,SAASkB,EAAKiL,IAClBC,KAAMpM,SAASkB,EAAKkL,MACpBC,MAAO,YAAiBnL,EAAKmL,MAAO,MACpCJ,cAAeD,EAAmB9K,EAAK+K,eACvCK,cAAe,YAAapL,EAAKoL,eACjCC,KAAM,YAAiBrL,EAAKqL,KAAM,MAClCC,QAAS,YAAatL,EAAKsL,SAC3BC,SAAU,YAAWvL,EAAKuL,SAAU,MACpCC,WAAY,YAAWxL,EAAKwL,WAAY,MACxCC,gBAAiB,YAAWzL,EAAKyL,gBAAiB,MAClDC,YAAa,YAAiB1L,EAAK0L,YAAa,QAChDC,OAAQ,YAAW3L,EAAK2L,OAAQ,OAC7B,YAAiB3L,IACjB,YAAqBA,IA2F5B,iBAwOE,WACE4L,EACAC,EACAC,GAHF,gBAGE,IAAAA,OAAA,GArOK,KAAAC,WAA0BjD,SAASgB,cAAc,OACjD,KAAAkC,gBAA+BlD,SAASgB,cAAc,OAEnD,KAAAmC,gBAA+BnD,SAASgB,cAAc,OAE/C,KAAAoC,kBAAoB,IAAI,IAExB,KAAAC,qBAAuB,IAAI,IAE3B,KAAAC,kBAAoB,IAAI,IAExB,KAAAC,6BAA+B,IAAI,IAInC,KAAAC,oBAAsB,IAAI,IAE1B,KAAAC,2BAA6B,IAAI,IAIjC,KAAAC,mBAAqB,IAAI,IAEzB,KAAAC,6BAA+B,IAAI,IAInC,KAAAC,YAA4B,GAIrC,KAAAC,sBAAwB,YAC9B,KACA,SAAC1M,EAAkBC,GAGjB,EAAK0M,UAAUjK,cAAe,EAE9B,IAAMkK,EAAe,CACnB5M,EAAG,EAAK2L,MAAM3L,EACdC,EAAG,EAAK0L,MAAM1L,GAEV4M,EAAc,CAClB7M,EAAGA,EACHC,EAAGA,GAGA,EAAK6M,gBAAgBF,EAAcC,KAGxC,EAAKE,KAAK/M,EAAGC,GAEb,EAAKmM,6BAA6BY,KAAK,CACrCC,KAAM,EACNL,aAAcA,EACdC,YAAaA,QAMX,KAAAK,eAAkC,KA2DlC,KAAAC,wBAA0B,YAChC,KACA,SAAChN,EAAsBC,GAGrB,EAAKuM,UAAUhK,gBAAiB,EAEhC,IAAMyK,EAAW,CACfjN,MAAO,EAAKwL,MAAMxL,MAClBC,OAAQ,EAAKuL,MAAMvL,QAEfiN,EAAU,CAAElN,MAAK,EAAEC,OAAM,GAE1B,EAAKkN,YAAYF,EAAUC,KAGhC,EAAKE,OAAOpN,EAAOC,GAGnB,EAAKkM,2BAA2BU,KAAK,CACnCC,KAAM,EACNG,SAAUA,EACVC,QAASA,QAMP,KAAAG,iBAAoC,KAmF1CC,KAAKC,UAAY/B,EACjB8B,KAAKd,UAAYf,EAEZC,GAAW4B,KAAKE,OA2xBzB,OAl8BU,YAAAC,qBAAR,SAA6BxH,GAA7B,WAGuB,IAAnBqH,KAAK9B,MAAMV,MACQ,IAAnBwC,KAAK9B,MAAMV,OAKbwC,KAAKP,eAAiB,YACpB9G,GACA,SAACpG,EAAkBC,GACjB,IAAM2M,EAAe,CACnB5M,EAAG,EAAK2L,MAAM3L,EACdC,EAAG,EAAK0L,MAAM1L,GAEV4M,EAAc,CAAE7M,EAAC,EAAEC,EAAC,GAE1B,EAAK4N,KAAO,EAAH,KACJ,EAAKA,MAAI,CACZjL,YAAY,IAGT,EAAKkK,gBAAgBF,EAAcC,KAIxC,EAAKF,UAAUjK,cAAe,EAE9B,EAAKoL,YAAY9N,EAAGC,GAEpB,EAAKkM,kBAAkBa,KAAK,CAC1BC,KAAM,EACNL,aAAcA,EACdC,YAAaA,IAGf,EAAKH,sBAAsB1M,EAAGC,SAO5B,YAAA8N,qBAAR,WACMN,KAAKP,iBACPO,KAAKP,iBACLO,KAAKP,eAAiB,OAwChB,YAAAc,uBAAV,SAAiC5H,GAAjC,WAEuB,IAAnBqH,KAAK9B,MAAMV,MACQ,IAAnBwC,KAAK9B,MAAMV,OAIbwC,KAAKD,iBAAmB,YACtBpH,GACA,SAACjG,EAAsBC,GAQrB,GALA,EAAKuM,UAAUhK,gBAAiB,EAK5B,EAAKgJ,MAAMT,OAAS,EAAKS,MAAMT,MAAMvM,OAAS,EAAG,CAC7C,MAGF,EAAKoN,gBAAgB7E,wBAFhB+G,EAAU,QACTC,EAAW,SAGrB,OAAQ,EAAKvC,MAAMb,eACjB,IAAK,KACL,IAAK,OACH1K,GAAU8N,EACV,MACF,IAAK,OACL,IAAK,QACH/N,GAAS8N,GAKf,IAAMb,EAAW,CACfjN,MAAO,EAAKwL,MAAMxL,MAClBC,OAAQ,EAAKuL,MAAMvL,QAEfiN,EAAU,CAAElN,MAAK,EAAEC,OAAM,GAE1B,EAAKkN,YAAYF,EAAUC,KAGhC,EAAKc,cAAchO,EAAOC,GAE1B,EAAKiM,oBAAoBW,KAAK,CAC5BC,KAAM,EACNG,SAAQ,EACRC,QAAO,IAGT,EAAKF,wBAAwBhN,EAAOC,SAOlC,YAAAgO,uBAAR,WACMX,KAAKD,mBACPC,KAAKD,mBACLC,KAAKD,iBAAmB,OAwBlB,YAAAG,KAAV,WAOEF,KAAK3B,WAAa2B,KAAKY,4BACvBZ,KAAK1B,gBAAkB0B,KAAKa,wBAO5Bb,KAAKzB,gBAAkByB,KAAKc,mBAG5Bd,KAAK3B,WAAW/B,YAAY0D,KAAKzB,iBACjCyB,KAAK3B,WAAW/B,YAAY0D,KAAK1B,iBAGjC0B,KAAKU,cAAcV,KAAKC,UAAUvN,MAAOsN,KAAKC,UAAUtN,QAExDqN,KAAKe,oBAAoBf,KAAKC,UAAU5C,gBAOlC,YAAAuD,0BAAR,eACMI,EADN,OA+FE,OA7FIhB,KAAK9B,MAAMR,eACbsD,EAAM5F,SAASgB,cAAc,KAEzB4D,KAAK9B,MAAMP,KACbqD,EAAIC,KAAOjB,KAAK9B,MAAMP,KAEtBqD,EAAI3E,UAAY,uBAGlB2E,EAAM5F,SAASgB,cAAc,QACzBC,UAAY,qBAGlB2E,EAAIE,UAAUC,IAAI,uBACdnB,KAAK9B,MAAMN,SACboD,EAAIE,UAAUC,IAAI,aAEpBH,EAAIzF,MAAM9C,KAAUuH,KAAK9B,MAAM3L,EAAC,KAChCyO,EAAIzF,MAAM/C,IAASwH,KAAK9B,MAAM1L,EAAC,KAG/BwO,EAAIhF,iBAAiB,YAAY,SAAA1B,GAC1B,EAAK8F,KAAKnL,cAAiB,EAAKmL,KAAKlL,iBACxC,EAAKkM,eACL,EAAKC,aAEL,EAAK5C,qBAAqBc,KAAK,CAC7BC,KAAM,EACN8B,YAAahH,QAInB0G,EAAIhF,iBAAiB,SAAS,SAAA1B,GAC5B,GAAI,EAAK8F,KAAKxL,SACZ0F,EAAEiH,iBACFjH,EAAEqB,uBAGF,GAAI,EAAKsE,UAAUvC,eAAwC,MAAvB,EAAKuC,UAAUtC,KAAc,CAC/D,IAAM6D,EAAYpG,SAASgB,cAAc,OACzCoF,EAAUnF,UAAY,6BACtB,IAAMoF,EAAarG,SAASgB,cAAc,OAC1CqF,EAAWpF,UAAY,yBACvBmF,EAAUlF,YAAYmF,GAGtB,IAFA,IAAIC,EAAOpH,EAAEqH,eACTC,EAAc,2BACTC,EAAQ,EAAGA,EAAQH,EAAKxQ,OAAQ2Q,IAAS,CAChD,IAAMlJ,EAAU+I,EAAKG,GACrB,GACgBC,MAAdnJ,EAAQ4E,IACM,MAAd5E,EAAQ4E,IACM,IAAd5E,EAAQ4E,KAEiC,IAArC5E,EAAQ4E,GAAGwE,SAASH,GAAuB,CAC7CA,EAAcjJ,EAAQ4E,GACtB,OAKN,IAAMyE,EAAc5G,SAAS6G,eAAeL,GACzB,MAAfI,IACFA,EAAYd,UAAUC,IAAI,eAC1Ba,EAAY1F,YAAYkF,IAKzB,EAAKpB,KAAKnL,cAAiB,EAAKmL,KAAKlL,gBACxC,EAAKsJ,kBAAkBe,KAAK,CAC1BC,KAAM,EACN8B,YAAahH,OAMf0F,KAAKI,KAAKvL,iBACZmM,EAAIE,UAAUC,IAAI,kBAEhBnB,KAAKI,KAAKxL,UACZoM,EAAIE,UAAUC,IAAI,cAEhBnB,KAAKI,KAAKrL,YACZiM,EAAIE,UAAUC,IAAI,eAEhBnB,KAAKI,KAAKpL,YACZgM,EAAIE,UAAUC,IAAI,eAEhBnB,KAAKI,KAAKjL,YACZ6L,EAAIE,UAAUC,IAAI,eAGbH,GAOC,YAAAH,sBAAV,WACE,IAAMlI,EAAUyC,SAASgB,cAAc,OACvCzD,EAAQ0D,UAAY,4BAEpB,IAAMoB,EAAQuC,KAAKkC,6BACnB,GAAIzE,EAAMvM,OAAS,EAAG,CAEpB,IAAMiR,EAAQ/G,SAASgB,cAAc,SAC/BgG,EAAMhH,SAASgB,cAAc,MAC7BiG,EAAYjH,SAASgB,cAAc,MACnCkG,EAAYlH,SAASgB,cAAc,MACnCmG,EAAOnH,SAASgB,cAAc,MAUpC,OARAmG,EAAKC,UAAY/E,EACjB2E,EAAI9F,YAAYiG,GAChBJ,EAAM7F,YAAY+F,GAClBF,EAAM7F,YAAY8F,GAClBD,EAAM7F,YAAYgG,GAClBH,EAAM5G,MAAMkH,UAAY,SAGhBzC,KAAK9B,MAAMb,eACjB,IAAK,KACL,IAAK,OACC2C,KAAK9B,MAAMxL,MAAQ,IACrByP,EAAM5G,MAAM7I,MAAWsN,KAAK9B,MAAMxL,MAAK,KACvCyP,EAAM5G,MAAM5I,OAAS,IAEvB,MACF,IAAK,OACL,IAAK,QACCqN,KAAK9B,MAAMvL,OAAS,IACtBwP,EAAM5G,MAAM7I,MAAQ,GACpByP,EAAM5G,MAAM5I,OAAYqN,KAAK9B,MAAMvL,OAAM,MAM/CgG,EAAQ2D,YAAY6F,GAGtB,OAAOxJ,GAMC,YAAAuJ,2BAAV,WAEE,IAAMhE,EAAQ8B,KAAK9B,MAEnB,OAAO,YACL,CACE,CACE9G,MAAO,SACPnH,MAAO,YAAU,IAAIsE,OAEvB,CACE6C,MAAO,SACPnH,MAAO,YAAU,IAAIsE,OAEvB,CACE6C,MAAO,UACPnH,MAA2B,MAApBiO,EAAM9K,WAAqB8K,EAAM9K,WAAa,IAEvD,CACEgE,MAAO,qBACPnH,MAAiC,MAA1BiO,EAAM7K,iBAA2B6K,EAAM7K,iBAAmB,IAEnE,CACE+D,MAAO,YACPnH,MAA6B,MAAtBiO,EAAM5K,aAAuB4K,EAAM5K,aAAe,IAE3D,CACE8D,MAAO,WACPnH,MAA2B,MAApBiO,EAAMpL,WAAqBoL,EAAMpL,WAAa,IAEvD,CACEsE,MAAO,sBACPnH,MAAkC,MAA3BiO,EAAMnL,kBAA4BmL,EAAMnL,kBAAoB,KAGvEiN,KAAK9B,MAAMT,OAAS,KAQd,YAAAiF,iBAAV,SAA2B/J,GACzBA,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,WAO9C,sBAAW,oBAAK,C,IAAhB,WACE,OAAO,EAAP,GAAYxC,KAAKC,Y,IASnB,SAAiB0C,GACf3C,KAAK4C,SAASD,I,gCAQN,YAAAC,SAAV,SAAmBD,GACjB,IAAME,EAAY7C,KAAK9B,MAEvB8B,KAAKC,UAAY0C,EAKb3C,KAAK8C,gBAAgBD,EAAWF,IAClC3C,KAAK+C,OAAOF,EAAW7C,KAAKd,YAOhC,sBAAW,mBAAI,C,IAAf,WACE,OAAO,EAAP,GAAYc,KAAKd,Y,IASnB,SAAgB8D,GACdhD,KAAKiD,QAAQD,I,gCAQR,YAAAC,QAAP,SAAeD,GACb,IAAME,EAAelD,KAAKd,UAE1Bc,KAAKd,UAAY,EAAH,KACTgE,GACAF,QAI+B,IAA3BA,EAAY7N,YACnB+N,EAAa/N,aAAe6N,EAAY7N,YAExC6K,KAAKjB,6BAA6BQ,KAAK,CACrC4D,SAAUH,EAAY7N,aAQ1B6K,KAAK+C,OAAO/C,KAAKC,UAAWiD,IAepB,YAAAJ,gBAAV,SAA0BD,EAAkBF,GAC1C,OAAOE,IAAcF,GAOhB,YAAAI,OAAP,SACEF,EACAO,QADA,IAAAP,MAAA,WACA,IAAAO,MAAA,MAEApD,KAAK0C,iBAAiB1C,KAAKzB,iBAGtBsE,IAAa7C,KAAKX,gBAAgBwD,EAAW7C,KAAK9B,QACrD8B,KAAKK,YAAYL,KAAK9B,MAAM3L,EAAGyN,KAAK9B,MAAM1L,GAGvCqQ,IAAa7C,KAAKH,YAAYgD,EAAW7C,KAAK9B,QACjD8B,KAAKU,cAAcV,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,QAGlD,IAAM0Q,EAAerD,KAAK1B,gBAAgBkE,UACpCc,EAAetD,KAAKa,wBAAwB2B,UAiBlD,GAhBIa,IAAiBC,IACnBtD,KAAK1B,gBAAgBkE,UAAYc,GAG9BT,GAAaA,EAAUxF,gBAAkB2C,KAAK9B,MAAMb,eACvD2C,KAAKe,oBAAoBf,KAAK9B,MAAMb,eAGjCwF,GAAaA,EAAUjF,UAAYoC,KAAK9B,MAAMN,UAC7CoC,KAAK9B,MAAMN,QACboC,KAAK3B,WAAW6C,UAAUC,IAAI,aAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,cAIjC+F,GAAaA,EAAUnF,gBAAkBsC,KAAK9B,MAAMR,cAAe,CACrE,IAAM5E,EAAYkH,KAAKY,4BAEvB9H,EAAU0J,UAAYxC,KAAK3B,WAAWmE,UAGtC,IADA,IAAMe,EAAQvD,KAAK3B,WAAWmF,WACrBxU,EAAI,EAAGA,EAAIuU,EAAMrS,OAAQlC,IAChC,GAA0B,OAAtBuU,EAAMvU,GAAGyU,SAAmB,CAC9B,IAAIC,EAAgB1D,KAAK3B,WAAWsF,iBAClCJ,EAAMvU,GAAGyU,UAEW,OAAlBC,GACF5K,EAAU8K,iBAAsBF,EAAcG,aAKjB,OAA/B7D,KAAK3B,WAAWyF,YAClB9D,KAAK3B,WAAWyF,WAAWC,aAAajL,EAAWkH,KAAK3B,YAI1D2B,KAAK3B,WAAavF,EAkCpB,GA9BE+J,GACA7C,KAAK9B,MAAMR,eACXmF,EAAUlF,OAASqC,KAAK9B,MAAMP,MAEN,OAApBqC,KAAK9B,MAAMP,MACbqC,KAAK3B,WAAWzC,aAAa,OAAQoE,KAAK9B,MAAMP,MAMjDyF,GACDA,EAASxO,WAAaoL,KAAKI,KAAKxL,UAChCwO,EAASvO,kBAAoBmL,KAAKI,KAAKvL,kBAEnCmL,KAAKI,KAAKxL,WAA0C,IAA9BoL,KAAKI,KAAKvL,gBAClCmL,KAAK3B,WAAW6C,UAAUC,IAAI,cAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,eAIhCsG,GAAYA,EAASrO,aAAeiL,KAAKI,KAAKrL,aAC7CiL,KAAKI,KAAKrL,WACZiL,KAAK3B,WAAW6C,UAAUC,IAAI,eAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,iBAIhCsG,GAAYA,EAASpO,aAAegL,KAAKI,KAAKpL,WACjD,GAAIgL,KAAKI,KAAKpL,WAAY,CACxBgL,KAAK3B,WAAW6C,UAAUC,IAAI,eAE9B,IAAMK,EAAYpG,SAASgB,cAAc,OACzCoF,EAAUnF,UAAY,6BACtB,IAAMoF,EAAarG,SAASgB,cAAc,OAC1CqF,EAAWpF,UAAY,yBACvBmF,EAAUlF,YAAYmF,GACtBzB,KAAK3B,WAAW/B,YAAYkF,OACvB,CACLxB,KAAK3B,WAAW6C,UAAUpE,OAAO,eAEjC,IAAMkH,EAAMhE,KAAK3B,WAAW4F,cAC1B,+BAEF,GAAY,OAARD,EAAc,CAChB,IAAM,EAASA,EAAIjL,cACJ,OAAX,GACF,EAAOmL,YAAYF,IAKtBZ,GAAYA,EAASjO,aAAe6K,KAAKI,KAAKjL,aAC7C6K,KAAKI,KAAKjL,WACZ6K,KAAK3B,WAAW6C,UAAUC,IAAI,eAE9BnB,KAAK3B,WAAW6C,UAAUpE,OAAO,iBAQhC,YAAAA,OAAP,WAEEkD,KAAKlB,mBAAmBS,KAAK,CAAEC,KAAMQ,OAErCA,KAAKhB,YAAYmF,SAAQ,SAAAC,GACvB,IACEA,EAAWC,UACX,MAAOC,QAGXtE,KAAK3B,WAAWvB,UAUR,YAAAuC,gBAAV,SACEF,EACAC,GAEA,OAAOD,EAAa5M,IAAM6M,EAAY7M,GAAK4M,EAAa3M,IAAM4M,EAAY5M,GAOlE,YAAAuO,oBAAV,SAA8BwD,GAC5B,OAAQA,GACN,IAAK,KACHvE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,iBACtC,MACF,IAAK,OACHxE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,cACtC,MACF,IAAK,QACHxE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,MACtC,MACF,IAAK,OACL,QACExE,KAAK3B,WAAW9C,MAAMiJ,cAAgB,SAK1C,IAAMC,EAASzE,KAAK1B,gBAAgBoG,qBAAqB,SACnDvC,EAAQsC,EAAOvT,OAAS,EAAIuT,EAAOjF,KAAK,GAAK,KAEnD,GAAI2C,EACF,OAAQnC,KAAK9B,MAAMb,eACjB,IAAK,KACL,IAAK,OACC2C,KAAK9B,MAAMxL,MAAQ,IACrByP,EAAM5G,MAAM7I,MAAWsN,KAAK9B,MAAMxL,MAAK,KACvCyP,EAAM5G,MAAM5I,OAAS,IAEvB,MACF,IAAK,OACL,IAAK,QACCqN,KAAK9B,MAAMvL,OAAS,IACtBwP,EAAM5G,MAAM7I,MAAQ,GACpByP,EAAM5G,MAAM5I,OAAYqN,KAAK9B,MAAMvL,OAAM,QAYzC,YAAA0N,YAAV,SAAsB9N,EAAWC,GAC/BwN,KAAK3B,WAAW9C,MAAM9C,KAAUlG,EAAC,KACjCyN,KAAK3B,WAAW9C,MAAM/C,IAAShG,EAAC,MAQ3B,YAAA8M,KAAP,SAAY/M,EAAWC,GACrBwN,KAAKK,YAAY9N,EAAGC,GACpBwN,KAAKC,UAAY,EAAH,KACTD,KAAK9B,OAAK,CACb3L,EAAC,EACDC,EAAC,KAWK,YAAAqN,YAAV,SAAsBF,EAAgBC,GACpC,OACED,EAASjN,QAAUkN,EAAQlN,OAASiN,EAAShN,SAAWiN,EAAQjN,QAS1D,YAAA+N,cAAV,SAAwBhO,EAAeC,GAUrC,GAPqB,IAAnBqN,KAAK9B,MAAMV,MACQ,IAAnBwC,KAAK9B,MAAMV,OAEXwC,KAAKzB,gBAAgBhD,MAAM7I,MAAQA,EAAQ,EAAOA,EAAK,KAAO,GAC9DsN,KAAKzB,gBAAgBhD,MAAM5I,OAASA,EAAS,EAAOA,EAAM,KAAO,IAG/DqN,KAAK9B,MAAMT,OAASuC,KAAK9B,MAAMT,MAAMvM,OAAS,EAAG,CAEnD,IAAMuT,EAASzE,KAAK1B,gBAAgBoG,qBAAqB,SACnDvC,EAAQsC,EAAOvT,OAAS,EAAIuT,EAAOjF,KAAK,GAAK,KAEnD,GAAI2C,EACF,OAAQnC,KAAK9B,MAAMb,eACjB,IAAK,KACL,IAAK,OACH8E,EAAM5G,MAAM7I,MAAQA,EAAQ,EAAOA,EAAK,KAAO,GAC/C,MACF,IAAK,OACL,IAAK,QACHyP,EAAM5G,MAAM5I,OAASA,EAAS,EAAOA,EAAM,KAAO,MAYrD,YAAAmN,OAAP,SAAcpN,EAAeC,GAC3BqN,KAAKU,cAAchO,EAAOC,GAC1BqN,KAAKC,UAAY,EAAH,KACTD,KAAK9B,OAAK,CACbxL,MAAK,EACLC,OAAM,KAQH,YAAAgS,QAAP,SAAeC,GAMb,IAAMR,EAAapE,KAAKxB,kBAAkBqG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAW,WAAP,SAAkBH,GAMhB,IAAMR,EAAapE,KAAKvB,qBAAqBoG,GAAGD,GAGhD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAxL,QAAP,SAAegM,GAMb,IAAMR,EAAapE,KAAKtB,kBAAkBmG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAY,mBAAP,SAA0BJ,GAMxB,IAAMR,EAAapE,KAAKrB,6BAA6BkG,GAAGD,GAGxD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAlI,UAAP,SAAiB0I,GAMf,IAAMR,EAAapE,KAAKpB,oBAAoBiG,GAAGD,GAG/C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAa,iBAAP,SAAwBL,GAMtB,IAAMR,EAAapE,KAAKnB,2BAA2BgG,GAAGD,GAGtD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAc,SAAP,SAAgBN,GAMd,IAAMR,EAAapE,KAAKlB,mBAAmB+F,GAAGD,GAG9C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAe,mBAAP,SACEP,GAOA,IAAMR,EAAapE,KAAKjB,6BAA6B8F,GAAGD,GAGxD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAQF,YAAA/C,WAAP,WACErB,KAAKI,KAAO,EAAH,KACJJ,KAAKI,MAAI,CACZjL,YAAY,IAGd6K,KAAKG,qBAAqBH,KAAK3B,YAET,KAApB2B,KAAK9B,MAAMV,MACS,KAApBwC,KAAK9B,MAAMV,MAEXwC,KAAKO,uBAAuBP,KAAK3B,aAQ9B,YAAA+C,aAAP,WACEpB,KAAKI,KAAO,EAAH,KACJJ,KAAKI,MAAI,CACZjL,YAAY,IAGd6K,KAAKM,uBACmB,KAApBN,KAAK9B,MAAMV,MACbwC,KAAKW,0BAKF,YAAAyE,iBAAP,WACE,OAAOC,EAAkBD,iBAAiBpF,KAAK9B,QAInC,EAAAkH,iBAAd,SAA+BlH,GAC7B,IAAMoH,EAAgBpH,EAAMV,KA9lCzB,SAAmBD,GACxB,IAAI+H,EAAQ,GACZ,OAAQ/H,GACN,KAAK,EACH+H,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,mBACV,MACF,KAAK,EACHA,EAAQ,YAAE,SACV,MACF,KAAK,EACHA,EAAQ,YAAE,QACV,MACF,KAAK,EAGL,KAAK,EAGL,KAAK,EACHA,EAAQ,YAAE,gBACV,MACF,KAAK,EACHA,EAAQ,YAAE,mBACV,MACF,KAAK,GACHA,EAAQ,YAAE,WACV,MACF,KAAK,GACHA,EAAQ,YAAE,SACV,MACF,KAAK,GACHA,EAAQ,YAAE,OACV,MACF,KAAK,GACHA,EAAQ,YAAE,QACV,MACF,KAAK,GACHA,EAAQ,YAAE,uBACV,MACF,KAAK,GAGL,KAAK,GACHA,EAAQ,YAAE,mBACV,MACF,KAAK,GACHA,EAAQ,YAAE,wBACV,MACF,KAAK,GACHA,EAAQ,YAAE,cACV,MACF,KAAK,GACHA,EAAQ,YAAE,SACV,MACF,KAAK,GACHA,EAAQ,YAAE,eACV,MACF,KAAK,GACHA,EAAQ,YAAE,gBACV,MACF,KAAK,GACHA,EAAQ,YAAE,YACV,MACF,KAAK,GACHA,EAAQ,YAAE,eACV,MACF,QACEA,EAAQ,YAAE,QAId,OAAOA,EA8gC8BC,CAAUrH,EAAMV,MAAQ,YAAE,QAC7D,OAAO,IAAI,gBAAc8H,EAAO,GAAI,KAExC,EA3gCA,GA6gCe,O,6BCjvCf,4BACU,KAAAE,UAA2B,GAC3B,KAAAC,eAAgC,GAEjC,KAAAZ,GAAK,SAACD,GAEX,OADA,EAAKY,UAAUV,KAAKF,GACb,CACLP,QAAS,WAAM,SAAKqB,IAAId,MAIrB,KAAAe,KAAO,SAACf,GACb,EAAKa,eAAeX,KAAKF,IAGpB,KAAAc,IAAM,SAACd,GACZ,IAAMgB,EAAgB,EAAKJ,UAAUK,QAAQjB,GACzCgB,GAAiB,GAAG,EAAKJ,UAAUM,OAAOF,EAAe,IAGxD,KAAArG,KAAO,SAACwG,GAEb,EAAKP,UAAUrB,SAAQ,SAAAS,GAAY,OAAAA,EAASmB,MAG5C,EAAKN,eAAetB,SAAQ,SAAAS,GAAY,OAAAA,EAASmB,MACjD,EAAKN,eAAiB,IAGjB,KAAAO,KAAO,SAACC,GAAkC,SAAKpB,IAAG,SAAAvK,GAAK,OAAA2L,EAAG1G,KAAKjF,Q,shBC3BxE,aAUE,WAAmB/K,EAAc2W,GATzB,KAAAC,MAAgB,GAGd,KAAAC,YAA6B,GAEtB,KAAAC,0BAA4B,IAAI,IAK/CrG,KAAKzQ,KAAOA,EACZyQ,KAAKkG,YAAcA,EAgEvB,OA7DE,sBAAW,mBAAI,C,IAKf,WACE,OAAOlG,KAAKmG,O,IANd,SAAgB5W,GACd,GAAoB,IAAhBA,EAAK2B,OAAc,MAAM,IAAIoV,WAAW,cAC5CtG,KAAKmG,MAAQ5W,G,gCAOf,sBAAW,mBAAI,C,IAAf,WACE,OAAO,EAAP,GAAYyQ,KAAKoG,c,gCAGnB,sBAAW,sBAAO,C,IAAlB,WACE,GAAqB,MAAjBpG,KAAKuG,SAAkB,CACzB,IAAM5N,EAAUyC,SAASgB,cAAc,OACvCzD,EAAQ0D,UAAY,2BAA2B2D,KAAKzQ,KAEpD,IAAMiX,EAAUxG,KAAKyG,gBAEjBD,aAAmBE,MACrBF,EAAQrC,QAAQxL,EAAQ2D,aAExB3D,EAAQ2D,YAAYkK,GAGtBxG,KAAKuG,SAAW5N,EAGlB,OAAOqH,KAAKuG,U,gCAGP,YAAAI,MAAP,WACE3G,KAAKoG,YAAc,IAGX,YAAAQ,WAAV,SAAqBtU,GACnB0N,KAAKoG,YAAc,EAAH,KACXpG,KAAKoG,aACL9T,IAKG,YAAAuU,YAAV,SACEC,EACAC,EACAC,GAEAhH,KAAKqG,0BAA0B9G,KAAK,CAAEuH,WAAU,EAAEC,OAAM,EAAEC,KAAI,KAGzD,YAAAC,gBAAP,SACErC,GAEA,OAAO5E,KAAKqG,0BAA0BxB,GAAGD,IAM7C,EA5EA,GAoFA,aAYE,WACEU,EACA4B,EACAC,GAHF,gBAEE,IAAAD,MAAA,SACA,IAAAC,MAAA,IAbM,KAAAC,kBAAoD,GACpD,KAAAC,uBAAmC,GAE1B,KAAAC,mBAAqB,IAAI,IAEzB,KAAAC,8BAAgC,IAAI,IAG7C,KAAAC,wBAA0BxH,KAAKuH,8BAA8BhI,KAOnES,KAAKsF,MAAQA,EAET4B,EAAYhW,OAAS,IACvB8O,KAAKoH,kBAAoBF,EAAYhQ,QAAO,SAACuQ,EAASC,GAIpD,OAFAA,EAAWT,gBAAgB,EAAKO,yBAChCC,EAAQC,EAAWnY,MAAQmY,EACpBD,IACNzH,KAAKoH,oBAGND,EAAmBjW,OAAS,IAC9B8O,KAAKqH,uBAAyB,EACzBrH,KAAKqH,uBACLF,EAAmBQ,QACpB,SAAApY,GAAQ,OAAgC,MAAhC,EAAK6X,kBAAkB7X,QA8HzC,OAxHS,YAAAqY,cAAP,SAAqBC,GACnB,OAAO7H,KAAKoH,kBAAkBS,IAAmB,MAG5C,YAAAC,cAAP,SACEJ,EACA7F,GAuCA,YAvCA,IAAAA,MAAA,MAGA6F,EAAWT,gBAAgBjH,KAAKwH,yBAChCxH,KAAKoH,kBAAkBM,EAAWnY,MAAQmY,EAG1C1H,KAAKqH,uBAAyBrH,KAAKqH,uBAAuBM,QACxD,SAAApY,GAAQ,OAAAA,IAASmY,EAAWnY,QAGhB,OAAVsS,EACEA,GAAS,EACX7B,KAAKqH,uBAAyB,EAAH,CACzBK,EAAWnY,MACRyQ,KAAKqH,wBAEDxF,GAAS7B,KAAKqH,uBAAuBnW,OAC9C8O,KAAKqH,uBAAyB,EACzBrH,KAAKqH,uBAAsB,CAC9BK,EAAWnY,OAGbyQ,KAAKqH,uBAAyB,EAEzBrH,KAAKqH,uBAAuBU,MAAM,EAAGlG,GAAM,CAE9C6F,EAAWnY,MAERyQ,KAAKqH,uBAAuBU,MAAMlG,IAIzC7B,KAAKqH,uBAAyB,EACzBrH,KAAKqH,uBAAsB,CAC9BK,EAAWnY,OAIRyQ,MAGF,YAAAgI,iBAAP,SAAwBH,GAOtB,cANO7H,KAAKoH,kBAAkBS,GAE9B7H,KAAKqH,uBAAyBrH,KAAKqH,uBAAuBM,QACxD,SAAApY,GAAQ,OAAAA,IAASsY,KAGZ7H,MAGF,YAAAiI,eAAP,SACEzK,GADF,gBACE,IAAAA,MAAA,UAEA,IAAM0K,EAAO9M,SAASgB,cAAc,QACpC8L,EAAK3K,GAAK,8BACV2K,EAAK7L,UAAY,8BACjB6L,EAAKlM,iBAAiB,UAAU,SAAA1B,GAC9BA,EAAEiH,iBACF,EAAK+F,mBAAmB/H,KAAK,CAC3B+B,YAAahH,EACbhI,KAAM,EAAK+U,uBAAuBnQ,QAAO,SAAC5E,EAAM/C,GAO9C,OANI,EAAK6X,kBAAkB7X,KACzB+C,EAAO,EAAH,KACCA,GACA,EAAK8U,kBAAkB7X,GAAM+C,OAG7BA,IACN,SAIP,IAAM6V,EAAc/M,SAASgB,cAAc,OAW3C,OAVA+L,EAAY9L,UAAY,eAExB2D,KAAKqH,uBAAuBlD,SAAQ,SAAA5U,GAC9B,EAAK6X,kBAAkB7X,IACzB4Y,EAAY7L,YAAY,EAAK8K,kBAAkB7X,GAAMoJ,YAIzDuP,EAAK5L,YAAY6L,GAEVD,GAGF,YAAAvB,MAAP,sBACE3G,KAAKqH,uBAAuBlD,SAAQ,SAAA5U,GAC9B,EAAK6X,kBAAkB7X,IACzB,EAAK6X,kBAAkB7X,GAAMoX,YAc5B,YAAAyB,SAAP,SAAgBxD,GACd,OAAO5E,KAAKsH,mBAAmBzC,GAAGD,IAG7B,YAAAyD,0BAAP,SACEzD,GAEA,OAAO5E,KAAKuH,8BAA8B1C,GAAGD,IAEjD,EA9JA,I,6BC9FA,UAEM0D,EAAQ,6BA6CC,IApCS,SACtBC,EACAjD,EACA,G,IAAA,aAA2C,GAAE,EAA3CkD,EAAI,OAAEC,EAAK,QAAEC,EAAI,OAAEC,EAAK,QAEpB7P,EAAYsC,SAASgB,cAAc,UACzCtD,EAAUwM,MAAQA,EAClBxM,EAAUuD,UAAY,SAASkM,EAAeK,SAE1CJ,GAAM1P,EAAUoI,UAAUC,IAAI,MAAMqH,GAEpCE,EAAM5P,EAAUoI,UAAUC,IAAI,WACzBwH,GAAO7P,EAAUoI,UAAUC,IAAI,YAExC,IAAM0H,EAAOzN,SAAS0N,gBAAgBR,EAAO,OAE7CO,EAAKjN,aACH,UACA,OAAO2M,EAAeM,KAAK,GAAE,IAAIN,EAAeM,KAAK,IAEnDJ,GAAOI,EAAKjN,aAAa,OAAQ6M,GAGrC,IAAM/G,EAAOtG,SAAS0N,gBAAgBR,EAAO,QACvCS,EAC8B,iBAA3BR,EAAeM,KAAK,GACvBN,EAAeM,KAAK,GACpBN,EAAeM,KAAK,GAAG,GAM7B,OALAnH,EAAK9F,aAAa,IAAKmN,GAEvBF,EAAKvM,YAAYoF,GACjB5I,EAAUwD,YAAYuM,GAEf/P,I,6BC7CT;;;;;AAIA,IA+mFIkQ,EAAY,CACdC,OAAQ,MACRL,SAAU,WACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,qsBA2f3BK,EAAc,CAChBD,OAAQ,MACRL,SAAU,aACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,sdAoI3BM,EAAe,CACjBF,OAAQ,MACRL,SAAU,cACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,uRAurC3BO,EAAa,CACfH,OAAQ,MACRL,SAAU,YACVC,KAAM,CAAC,IAAK,IAAK,GAAI,OAAQ,6W,s2BC15IxB,SAASQ,0BACd/W,GAEA,GAAI,4CAAcA,EAAKgX,OAAS,4CAAchX,EAAKiX,aACjD,MAAM,IAAI3W,UAAU,yBAGtB,OAAO,SAAP,qBACK,6CAAqBN,IAAK,CAC7BkL,KAAM,GACNgM,QAAS,4CAAWlX,EAAKkX,QAAS,MAClCC,YAAanX,EAAKmX,YAClBH,KAAO,4CAAchX,EAAKgX,MAEtB,4CAAahX,EAAKiX,aADlBjX,EAAKgX,OAEN,4CAAmBhX,IAI1B,4D,yDAmDA,OAnD2C,gCAC/B,wBAAAwO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OACvCzD,QAAQ0D,UAAY,iBACpB1D,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,MAGA,IAA7BtJ,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMC,QAAUhR,QAAQ+L,qBAAqB,U,iBACpC1V,GACuB,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB6G,YAAW,WACT,IACE8R,KAAKF,QAAQ3a,GAAGwT,UAAUrF,QAC1B,MAAOmH,OACR,IANEtV,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,I,QAA3BA,GAUT,IAAI8a,SAAWnR,QAAQoR,uBACrB,cAIF,OAFAD,SAAS,GAAGvO,MAAMkN,MAAQzI,KAAK9B,MAAMuL,YAE9B9Q,SAGC,wBAAA+J,iBAAV,SAA2B/J,SACzBA,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAG/B,IAAMU,IAAM5O,SAASgB,cAAc,OACnC4N,IAAIxH,UAAYxC,KAAK9B,MAAMoL,KAE3B,IADA,IAAMK,QAAUK,IAAItF,qBAAqB,UAChC1V,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,IACJ,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB2Y,KAAKF,QAAQ3a,GAAGwT,UAAUrF,QAI9B,IAAI2M,SAAWnR,QAAQoR,uBACrB,cAEFD,SAAS,GAAGvO,MAAMkN,MAAQzI,KAAK9B,MAAMuL,aAEzC,cAnDA,CAA2C,sC,w4BCfpC,SAASQ,uBACd3X,GAEA,GAAI,4CAAcA,EAAKgX,OAAS,4CAAchX,EAAKiX,aACjD,MAAM,IAAI3W,UAAU,yBAGtB,OAAO,SAAP,8BACK,6CAAqBN,IAAK,CAC7BkL,KAAM,GACN8L,KAAO,4CAAchX,EAAKgX,MAEtB,4CAAahX,EAAKiX,aADlBjX,EAAKgX,KAETY,sBAAuB,4CAAc5X,EAAK4X,uBACtC,UACA5X,EAAK4X,wBACN,4CAAmB5X,IACnB,4CAAqBA,IAI5B,sD,yDAqCA,OArCwC,6BAC5B,qBAAAwO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OACvCzD,QAAQ0D,UAAY,cACpB1D,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,MAGA,IAA7BtJ,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMC,QAAUhR,QAAQ+L,qBAAqB,U,iBACpC1V,GACP+I,YAAW,WACqB,IAA1B4R,QAAQ3a,GAAG4a,IAAI1Y,QAAc2Y,KAAKF,QAAQ3a,GAAGwT,UAAUrF,UAC1D,IAHInO,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,I,QAA3BA,GAMT,OAAO2J,SAGC,qBAAA+J,iBAAV,SAA2B/J,SACzBA,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAG/B,IAAMU,IAAM5O,SAASgB,cAAc,OACnC4N,IAAIxH,UAAYxC,KAAK9B,MAAMoL,KAE3B,IADA,IAAMK,QAAUK,IAAItF,qBAAqB,UAChC1V,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,IACJ,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB2Y,KAAKF,QAAQ3a,GAAGwT,UAAUrF,SAIlC,WArCA,CAAwC,sC,s4BCvBlCgN,oBAAsB,SAC1BC,GAEA,OAAQA,GACN,IAAK,QACL,IAAK,QACL,IAAK,cACH,OAAOA,EACT,QACE,MAAO,gBAQPC,eAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,OACL,IAAK,OACH,OAAOA,EACT,QACE,MAAO,SAaN,SAASC,wBACdjY,GAEA,GAAI,4CAAcA,EAAKgX,OAAS,4CAAchX,EAAKiX,aACjD,MAAM,IAAI3W,UAAU,yBAGtB,OAAO,SAAP,8BACK,6CAAqBN,IAAK,CAC7BkL,KAAM,EACN8L,KAAO,4CAAchX,EAAKgX,MAEtB,4CAAahX,EAAKiX,aADlBjX,EAAKgX,KAETc,eAAgBD,oBAAoB7X,EAAK8X,gBACzCI,OAAQ,4CAAWlY,EAAKkY,OAAQ,MAChCF,UAAWD,eAAe/X,EAAKgY,WAC/BG,cAAe,4CAAWnY,EAAKmY,cAAe,QAC3C,4CAAmBnY,IACnB,4CAAqBA,IAI5B,wD,yDA+DA,OA/DyC,8BAC7B,sBAAAwO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OAEvCzD,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQ0D,UAAY,gBAEW,IAA7B2D,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMgB,QAAU/R,QAAQ+L,qBAAqB,KACpC1V,EAAI,EAAGA,EAAI0b,QAAQxZ,OAAQlC,IAClC0b,QAAQ1b,GAAGuM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C/a,EAAI,EAAGA,EAAI4b,eAAe1Z,OAAQlC,IACzC4b,eAAe5b,GAAG8N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,U,iBACpC1V,GACuB,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB6G,YAAW,WACT,IACE8R,KAAKF,QAAQ3a,GAAGwT,UAAUrF,QAC1B,MAAOmH,OACR,IANEtV,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,I,QAA3BA,GAUT,OAAO2J,SAGC,sBAAA+J,iBAAV,SAA2B/J,SACzBA,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAI/B,IADA,IAAMoB,QAAU/R,QAAQ+L,qBAAqB,KACpC1V,EAAI,EAAGA,EAAI0b,QAAQxZ,OAAQlC,IAClC0b,QAAQ1b,GAAGuM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C/a,EAAI,EAAGA,EAAI4b,eAAe1Z,OAAQlC,IACzC4b,eAAe5b,GAAG8N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,UACpC1V,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,IACJ,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB2Y,KAAKF,QAAQ3a,GAAGwT,UAAUrF,SAIlC,YA/DA,CAAyC,sC,s4BCrDlC,SAAS0N,uBACdvY,GAEA,GAAI,4CAAcA,EAAKgX,OAAS,4CAAchX,EAAKiX,aACjD,MAAM,IAAI3W,UAAU,yBAGtB,OAAO,SAAP,8BACK,6CAAqBN,IAAK,CAC7BkL,KAAM,GACN8L,KAAO,4CAAchX,EAAKgX,MAEtB,4CAAahX,EAAKiX,aADlBjX,EAAKgX,KAETkB,OAAQ,4CAAWlY,EAAKkY,OAAQ,MAChCva,MAAOqB,WAAWgB,EAAKrC,OACvB6a,OAAQ,4CAAcxY,EAAKwY,QAAU,UAAYxY,EAAKwY,OACtDC,gBAAiB,4CAAczY,EAAKyY,iBAChC,UACAzY,EAAKyY,kBACN,4CAAmBzY,IACnB,4CAAqBA,IAI5B,sD,yDAmKA,OAnKwC,6BAC5B,qBAAAwO,iBAAV,WACE,IAAMnI,QAAUyC,SAASgB,cAAc,OAEjC4O,OAAS5P,SAASgB,cAAc,OACtC4O,OAAO3O,UAAY,qBAEnB,IAAMvJ,WAAasI,SAASgB,cAAc,MAC1CtJ,WAAWuJ,UAAY,0BACvBvJ,WAAWmY,YAAcjL,KAAK9B,MAAMpL,WACpCA,WAAWyI,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM6M,gBACvCC,OAAO1O,YAAYxJ,YAEnB,IAAI7C,MAAQ,GACa,OAArB+P,KAAK9B,MAAMjO,QACbA,MAAQ+P,KAAKkL,cAAclL,KAAK9B,MAAMjO,OAAO,EAAO,GAAI,EAAG,MAG7D,IAAMkb,YAAc/P,SAASgB,cAAc,MAC3C+O,YAAY9O,UAAY,2BACxB8O,YAAYF,YAAc,GAAGhb,MAC7Bkb,YAAY5P,MAAMkN,MAAQzI,KAAK9B,MAAM4M,OACrCE,OAAO1O,YAAY6O,aAEnBxS,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQ0D,UAAY,eAEW,IAA7B2D,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,QAAQ4C,MAAMmO,QAAU,OAK1B,IADA,IAAMgB,QAAU/R,QAAQ+L,qBAAqB,KACpC1V,EAAI,EAAGA,EAAI0b,QAAQxZ,OAAQlC,IAClC0b,QAAQ1b,GAAGuM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C/a,EAAI,EAAGA,EAAI4b,eAAe1Z,OAAQlC,IACzC4b,eAAe5b,GAAG8N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,U,iBACpC1V,GACuB,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB6G,YAAW,WACT,IACE8R,KAAKF,QAAQ3a,GAAGwT,UAAUrF,QAC1B,MAAOmH,OACR,IANEtV,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,I,QAA3BA,GAaT,OAHA2J,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQyS,aAAaJ,OAAQrS,QAAQ0S,YAE9B1S,SAGC,qBAAA+J,iBAAV,SAA2B/J,SACzB,IAAMqS,OAAS5P,SAASgB,cAAc,OACtC4O,OAAO3O,UAAY,qBAEnB,IAAMvJ,WAAasI,SAASgB,cAAc,MAC1CtJ,WAAWuJ,UAAY,0BACvBvJ,WAAWmY,YAAcjL,KAAK9B,MAAMpL,WACpCA,WAAWyI,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM6M,gBACvCC,OAAO1O,YAAYxJ,YAEnB,IAAI7C,MAAQ,GACa,OAArB+P,KAAK9B,MAAMjO,QACbA,MAAQ+P,KAAKkL,cAAclL,KAAK9B,MAAMjO,OAAO,EAAO,GAAI,EAAG,MAG7D,IAAMkb,YAAc/P,SAASgB,cAAc,MAC3C+O,YAAY9O,UAAY,2BACxB8O,YAAYF,YAAc,GAAGhb,MAC7Bkb,YAAY5P,MAAMkN,MAAQzI,KAAK9B,MAAM4M,OACrCE,OAAO1O,YAAY6O,aAEnBxS,QAAQ6J,UAAYxC,KAAK9B,MAAMoL,KAC/B3Q,QAAQyS,aAAaJ,OAAQrS,QAAQ0S,YAIrC,IADA,IAAMX,QAAU/R,QAAQ+L,qBAAqB,KACpC1V,EAAI,EAAGA,EAAI0b,QAAQxZ,OAAQlC,IAClC0b,QAAQ1b,GAAGuM,MAAMoP,OAAS,MAK5B,IADA,IAAMC,eAAiBjS,QAAQoR,uBAAuB,kBAC7C/a,EAAI,EAAGA,EAAI4b,eAAe1Z,OAAQlC,IACzC4b,eAAe5b,GAAG8N,SAKpB,IADA,IAAM6M,QAAUhR,QAAQ+L,qBAAqB,UACpC1V,EAAI,EAAGA,EAAI2a,QAAQzY,OAAQlC,IACJ,IAA1B2a,QAAQ3a,GAAG4a,IAAI1Y,QACjB2Y,KAAKF,QAAQ3a,GAAGwT,UAAUrF,SAKtB,qBAAA+N,cAAV,SACEI,EACAC,EACAC,EACAC,EACAC,GAEAA,OAA6B,IAAZA,EAA0BA,EAAU,IAQrD,GAJKD,IACHA,EAAa,IAGXF,GACF,GAAIzZ,KAAK6Z,MAAML,IAAWA,EACxB,MAAO,OAEJ,CACLG,IACA,IAAMG,EAAe5L,KAAKrO,IAAI,IAAK8Z,EAAY,GAC/CH,EACExZ,KAAK6Z,MAAML,EAAS9W,OAAOpD,SAASwa,IACpCpX,OAAOpD,SAASwa,GAMpB,IAHA,IACIC,EAAM,EAEH/Z,KAAKC,IAAIuZ,IAAWI,GAEzBG,IACAP,GAAkBI,EAapB,OATEJ,EADEI,EACO5Z,KAAK6Z,MA7BD,EA6BOL,GA7BP,EA+BJxZ,KAAK6Z,MA/BD,EA+BOL,GAGlBna,MAAMma,KACRA,EAAS,GAGJA,EAAS,IAnBH,CAAC,GAAI,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,KAmBxBO,GAAOL,GAG5B,qBAAA7Z,IAAV,SAAc+D,EAAexE,EAAgB4a,GAC3C,IAAI9O,EAAMtH,EAAQ,GAClB,OAAOxE,GAAU8L,EAAI9L,OACjB8L,EACAgD,KAAKrO,IAAIqL,EAAM8O,EAAS5a,EAAQ4a,IAExC,WAnKA,CAAwC,sC,gDC1DxC/c,EAAOD,QAAU,khB,yoBC2BXid,EAA4B,SAChCC,GAEA,OAAQA,GACN,IAAK,UACL,IAAK,UACL,IAAK,WACH,OAAOA,EACT,QACE,MAAO,YAaN,SAASC,EACd3Z,GAEA,GAA6B,iBAAlBA,EAAK4Z,UAAkD,IAAzB5Z,EAAK4Z,SAAShb,OACrD,MAAM,IAAI0B,UAAU,sBAGtB,OAAO,EAAP,SACK,YAAqBN,IAAK,CAC7BkL,KAAM,EACN0O,SAAU5Z,EAAK4Z,SACfF,qBAAsBD,EAA0BzZ,EAAK0Z,sBACrDG,eAAgB,YAAiB7Z,EAAK6Z,eAAgB,MACtDC,UAAW,YAAiB9Z,EAAK8Z,UAAW,QACzC,YAAmB9Z,IACnB,YAAqBA,IAI5B,I,EAAA,yB,+CAwCA,OAxCyC,OAC7B,YAAAwO,iBAAV,WACE,IAAMuL,EAASrM,KAAK9B,MAAMiO,gBAAkBnM,KAAK9B,MAAMgO,SACjDvT,EAAUyC,SAASgB,cAAc,OA0BvC,OAzBAzD,EAAQ0D,UAAY,eACpB1D,EAAQiD,aAAa,cAAe,iBACpCjD,EAAQiD,aAAa,YAAa,SAClCjD,EAAQ4C,MAAM+Q,gBAAkB,OAAOD,EAAM,IAC7C1T,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,UAGJ,IAA7BzM,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,EAAQ4C,MAAMmO,QAAU,OAKC,OAAzB1J,KAAK9B,MAAMkO,WACyB,aAApCpM,KAAK9B,MAAM8N,uBAEXrT,EAAQ0D,UAAY,kCACpB1D,EAAQiD,aAAa,iCAAkC,KACvDjD,EAAQiD,aAAa,aAAcoE,KAAK9B,MAAMkO,YAGzCzT,GAOC,YAAA+J,iBAAV,SAA2B/J,GACzB,IAAM0T,EAASrM,KAAK9B,MAAMiO,gBAAkBnM,KAAK9B,MAAMgO,SACvDvT,EAAQ4C,MAAM+Q,gBAAkB,OAAOD,EAAM,KAEjD,EAxCA,CAAyCK,EAAA,G,0hBChDlC,SAASC,EAAiBra,GAC/B,GAA6B,iBAAlBA,EAAK4Z,UAAkD,IAAzB5Z,EAAK4Z,SAAShb,OACrD,MAAM,IAAI0B,UAAU,sBAGtB,GAA0B,iBAAfN,EAAKsa,OAA4C,IAAtBta,EAAKsa,MAAM1b,OAC/C,MAAM,IAAI0B,UAAU,kBAGtB,OAAO,SACF,YAAqBN,IAAK,CAC7BkL,KAAM,EACNoP,MAAOta,EAAKsa,MACZV,SAAU5Z,EAAK4Z,WACZ,YAAqB5Z,IAI5B,I,EAAA,yB,+CAmBA,OAnBkC,OACtB,YAAAwO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAOvC,OANAzD,EAAQ0D,UAAY,QAAU2D,KAAK9B,MAAM0O,MACzCjU,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMgO,SAAQ,IAC1DvT,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SAE5B9T,GAOC,YAAA+J,iBAAV,SAA2B/J,GACzBA,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMgO,SAAQ,KAE9D,EAnBA,CAAkCQ,EAAA,G,uuBCF3B,SAASG,EACdva,GAGA,GAA0B,iBAAfA,EAAKmW,OAA4C,IAAtBnW,EAAKmW,MAAMvX,OAC/C,MAAM,IAAI0B,UAAU,kBAGtB,OAAO,WACF,YAAqBN,IAAK,CAC7BkL,KAAM,GACNiL,MAAOnW,EAAKmW,MACZqE,aAAcxa,EAAKwa,aACnBC,YAAaza,EAAKya,cACf,YAAmBza,IACnB,YAAqBA,IAS5B,+B,+CA4BA,OA5B8B,OAClB,YAAAmU,cAAV,sBACQuG,EAAa5R,SAASgB,cAAc,OAC1C4Q,EAAW3Q,UAAY,kBAEvB,IAAM4Q,EAAa7R,SAASgB,cAAc,SAC1C6Q,EAAWhC,YAAc,YAAE,iBAE3B+B,EAAW1Q,YAAY2Q,GAEvB,IAAMC,EAAa9R,SAASgB,cAAc,SAgB1C,OAfA8Q,EAAW1P,KAAO,QAClB0P,EAAWC,UAAW,EAEtBD,EAAWjd,MAAQ,IAAG+P,KAAKoG,YAAY0G,cACrC9M,KAAKkG,YAAY4G,cACjB,WAEFI,EAAWlR,iBAAiB,UAAU,SAAA1B,GACpC,EAAKsM,WAAW,CACdkG,aAAexS,EAAE8S,OAA4Bnd,WAIjD+c,EAAW1Q,YAAY4Q,GAEhBF,GAEX,EA5BA,CAA8B,cAiC9B,2B,+CAiQA,OAjQ+B,OACnB,YAAAvG,cAAV,sBACQuG,EAAa5R,SAASgB,cAAc,OAC1C4Q,EAAW3Q,UAAY,yCAEvB,IAAMgR,EAAcrN,KAAKsN,YAAY,UAErCN,EAAW1Q,YAAY+Q,GAEvB,IAAME,EAA0BnS,SAASgB,cAAc,OACjDoR,EAAyBpS,SAASgB,cAAc,OAEtD4Q,EAAW1Q,YAAYkR,GACvBR,EAAW1Q,YAAYiR,GAEvB,IAGIE,EAHEV,EACJ/M,KAAKoG,YAAY2G,aAAe/M,KAAKkG,YAAY6G,aAAe,GAyDlE,OAnBAU,EAAc,SAAAC,GACZF,EAAuBhL,UAAY,GACnCkL,EAAOvJ,SAAQ,SAACwJ,EAAY9L,GAC1B,OAAA2L,EAAuBlR,YACrB,EAAKsR,eACHD,EAvCyB,SAAC9L,GAAkB,gBAClDgM,GAEA,IAAMd,EACJ,EAAK3G,YAAY2G,aAAe,EAAK7G,YAAY6G,aAAe,GAClE,EAAKnG,WAAW,CACdmG,YAAa,EACRA,EAAYhF,MAAM,EAAGlG,GAAM,CAC9BgM,GACGd,EAAYhF,MAAMlG,EAAQ,OA+B3BiM,CAAyBjM,GA1BZ,SAACA,GAAkB,kBACtC,IAAMkL,EACJ,EAAK3G,YAAY2G,aAAe,EAAK7G,YAAY6G,aAAe,GAC5DgB,EAAY,EACbhB,EAAYhF,MAAM,EAAGlG,GACrBkL,EAAYhF,MAAMlG,EAAQ,IAG/B,EAAK+E,WAAW,CAAEmG,YAAagB,IAC/BN,EAAYM,IAkBNC,CAAanM,UAMTkL,GAEZQ,EAAwBjR,YACtB0D,KAAKiO,uBAxBc,SAACJ,GACpB,IAAMd,EACJ,EAAK3G,YAAY2G,aAAe,EAAK7G,YAAY6G,aAAe,GAC5DgB,EAAY,EAAIhB,EAAa,CAAAc,IACnC,EAAKjH,WAAW,CAAEmG,YAAagB,IAC/BN,EAAYM,OAsBPf,GAGD,YAAAiB,sBAAR,SAA8BC,GAE5B,IAAMC,EAAe,CAAE1F,MAAO,WAE1B2F,EAAK,KAA6BD,GAmBhCE,EAAkBjT,SAASgB,cAAc,OAGzCkS,EAA2BlT,SAASgB,cAAc,OAClDmS,EAAuBvO,KAAKsN,YAAY,cACxCkB,EAAuBxO,KAAKyO,kBAAkB,MAtB5B,SAACxe,GACvBme,EAAMM,UAAYze,KAsBpBqe,EAAyBhS,YAAYiS,GACrCD,EAAyBhS,YAAYkS,GACrCH,EAAgB/R,YAAYgS,GAG5B,IAAMK,EAA4BvT,SAASgB,cAAc,OACnDwS,EAAqB5O,KAAKsN,YAAY,YACtCuB,EAAqB7O,KAAKyO,kBAAkB,MA3B5B,SAACxe,GACrBme,EAAMU,QAAU7e,KA2BlBqe,EAAyBhS,YAAYsS,GACrCN,EAAyBhS,YAAYuS,GACrCR,EAAgB/R,YAAYqS,GAG5B,IAAMI,EAA0B3T,SAASgB,cAAc,OACjD4S,EAAmBhP,KAAKsN,YAAY,SACpC2B,EAAmBjP,KAAKkP,iBAC5Bf,EAAa1F,OAjCK,SAACxY,GACnBme,EAAM3F,MAAQxY,KAmChBqe,EAAyBhS,YAAY0S,GACrCV,EAAyBhS,YAAY2S,GACrCZ,EAAgB/R,YAAYyS,GAG5B,IAAMI,EAAY/T,SAASgB,cAAc,KACzC+S,EAAU7S,YACR,YAAgB,IAAc,YAAE,sBAAuB,CACrDkM,KAAM,QACNC,MAAO,aAgBX,OAJA0G,EAAUnT,iBAAiB,SARN,WA3CL,IAAC6R,OACQ,KADRA,EA4CHO,GA3CC3F,YACY,IAAlBoF,EAAMiB,cACc,IAApBjB,EAAMa,WAyCOR,EAASE,GAC7BA,EAAQD,EACRK,EAAqBve,MAAQ,IAAGme,EAAMM,WAAa,IACnDG,EAAmB5e,MAAQ,IAAGme,EAAMU,SAAW,IAC/CG,EAAiBhf,MAAQ,GAAGme,EAAM3F,SAKpC4F,EAAgB/R,YAAY6S,GAErBd,GAGD,YAAAT,eAAR,SACED,EACAyB,EACAC,GAGA,IAAMjB,EAAQ,KAAKT,GAebU,EAAkBjT,SAASgB,cAAc,OAGzCkS,EAA2BlT,SAASgB,cAAc,OAClDmS,EAAuBvO,KAAKsN,YAAY,cACxCkB,EAAuBxO,KAAKyO,kBAChCd,EAAWe,WAnBW,SAACze,GACvBme,EAAMM,UAAYze,EAClBmf,EAAS,KAAKhB,OAoBhBE,EAAyBhS,YAAYiS,GACrCD,EAAyBhS,YAAYkS,GACrCH,EAAgB/R,YAAYgS,GAG5B,IAAMK,EAA4BvT,SAASgB,cAAc,OACnDwS,EAAqB5O,KAAKsN,YAAY,YACtCuB,EAAqB7O,KAAKyO,kBAC9Bd,EAAWmB,SA1BS,SAAC7e,GACrBme,EAAMU,QAAU7e,EAChBmf,EAAS,KAAKhB,OA2BhBE,EAAyBhS,YAAYsS,GACrCN,EAAyBhS,YAAYuS,GACrCR,EAAgB/R,YAAYqS,GAG5B,IAAMI,EAA0B3T,SAASgB,cAAc,OACjD4S,EAAmBhP,KAAKsN,YAAY,SACpC2B,EAAmBjP,KAAKkP,iBAC5BvB,EAAWlF,OAjCO,SAACxY,GACnBme,EAAM3F,MAAQxY,EACdmf,EAAS,KAAKhB,OAkChBE,EAAyBhS,YAAY0S,GACrCV,EAAyBhS,YAAY2S,GACrCZ,EAAgB/R,YAAYyS,GAG5B,IAAMO,EAAYlU,SAASgB,cAAc,KAWzC,OAVAkT,EAAUhT,YACR,YAAgB,IAAY,YAAE,sBAAuB,CACnDkM,KAAM,QACNC,MAAO,aAGX6G,EAAUtT,iBAAiB,QAASqT,GAEpChB,EAAgB/R,YAAYgT,GAErBjB,GAGD,YAAAf,YAAR,SAAoBrW,GAClB,IAAMwG,EAAQrC,SAASgB,cAAc,SAErC,OADAqB,EAAMwN,YAAc,YAAEhU,GACfwG,GAGD,YAAAgR,kBAAR,SACExe,EACAmf,GAEA,IAAM1Z,EAAQ0F,SAASgB,cAAc,SAQrC,OAPA1G,EAAM8H,KAAO,SACC,OAAVvN,IAAgByF,EAAMzF,MAAQ,GAAGA,GACrCyF,EAAMsG,iBAAiB,UAAU,SAAA1B,GAC/B,IAAMrK,EAAQmB,SAAUkJ,EAAE8S,OAA4Bnd,OACjDkB,MAAMlB,IAAQmf,EAASnf,MAGvByF,GAGD,YAAAwZ,iBAAR,SACEjf,EACAmf,GAEA,IAAM1Z,EAAQ0F,SAASgB,cAAc,SAOrC,OANA1G,EAAM8H,KAAO,QACC,OAAVvN,IAAgByF,EAAMzF,MAAQA,GAClCyF,EAAMsG,iBAAiB,UAAU,SAAA1B,GAC/B,OAAA8U,EAAU9U,EAAE8S,OAA4Bnd,UAGnCyF,GAEX,EAjQA,CAA+B,cAmQzB,EAAQ,6B,EAEd,yB,+CAwFA,OAxFwC,OAC5B,YAAAoL,iBAAV,WACE,IAAMhI,EAA4BsC,SAASgB,cAAc,OAMzD,OALAtD,EAAUuD,UAAY,cAGtBvD,EAAUyW,OAAOvP,KAAKwP,oBAEf1W,GAGC,YAAA4H,cAAV,SAAwBhO,GACtB,YAAMgO,cAAa,UAAChO,EAAOA,IAGtB,YAAA8c,iBAAP,WACE,IAAMC,EAAa,QAAQzP,KAAK9B,MAAMX,GAEhCmS,EAAMtU,SAAS0N,gBAAgB,EAAO,OAE5C4G,EAAI9T,aAAa,UAAW,eAG5B,IAAM+T,EAAOvU,SAAS0N,gBAAgB,EAAO,QAEvC8G,EAAiBxU,SAAS0N,gBAAgB,EAAO,kBACvD8G,EAAehU,aAAa,KAAM6T,GAClCG,EAAehU,aAAa,KAAM,OAClCgU,EAAehU,aAAa,KAAM,OAClCgU,EAAehU,aAAa,IAAK,OACjCgU,EAAehU,aAAa,KAAM,OAClCgU,EAAehU,aAAa,KAAM,OAElC,IAAMiU,EAAQzU,SAAS0N,gBAAgB,EAAO,QAC9C+G,EAAMjU,aAAa,SAAU,MAC7BiU,EAAMjU,aACJ,QACA,cAAcoE,KAAK9B,MAAMuK,MAAK,qBAEhC,IAAMqH,EAAU1U,SAAS0N,gBAAgB,EAAO,QAChDgH,EAAQlU,aAAa,SAAU,QAC/BkU,EAAQlU,aACN,QACA,cAAcoE,KAAK9B,MAAMuK,MAAK,mBAGhC,IAAMsH,EAAS3U,SAAS0N,gBAAgB,EAAO,UAkB/C,OAjBAiH,EAAOnU,aAAa,OAAQ,QAAQ6T,EAAU,KAC9CM,EAAOnU,aAAa,KAAM,OAC1BmU,EAAOnU,aAAa,KAAM,OAC1BmU,EAAOnU,aAAa,IAAK,OAGzBgU,EAAeL,OAAOM,EAAOC,GAC7BH,EAAKJ,OAAOK,GACZF,EAAIH,OAAOI,EAAMI,IAGc,IAA7B/P,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,gBAEX0c,EAAI9T,aAAa,UAAW,OAGvB8T,GASF,YAAAtK,iBAAP,WACE,OAAO4K,EAAW5K,iBAAiBpF,KAAK9B,QAG5B,EAAAkH,iBAAd,SACElH,GAEA,IAAM+R,EAAgB,EAAM7K,iBAAgB,UAAClH,GAM7C,OALA+R,EAAcjI,iBAAiB,SAE/BiI,EAAcnI,cAAc,IAAI,EAAgB,cAAe5J,GAAQ,GACvE+R,EAAcnI,cAAc,IAAI,EAAiB,eAAgB5J,GAAQ,GAElE+R,GAEX,EAxFA,CAAwCvD,EAAA,G,iiBCvTjC,SAASwD,EAAiB5d,GAC/B,IAAM4L,EAAK,OACN,YAAqB,OAAK5L,GAAI,CAAEI,MAAO,EAAGC,OAAQ,MAAI,CACzD6K,KAAM,GACNC,MAAO,KACPC,eAAe,EACfG,SAAU,KACVC,WAAY,KAEZvL,EAAG,EACHC,EAAG,EACHE,MAAO,EACPC,OAAQ,EAERwd,cAAe,CACb5d,EAAG,YAAWD,EAAK8d,OAAQ,GAC3B5d,EAAG,YAAWF,EAAK+d,OAAQ,IAE7BC,YAAa,CACX/d,EAAG,YAAWD,EAAKie,KAAM,GACzB/d,EAAG,YAAWF,EAAKke,KAAM,IAE3BC,UAAW,YAAWne,EAAKme,WAAane,EAAK0H,YAAa,GAC1DyO,MAAO,YAAiBnW,EAAKoe,aAAepe,EAAKmW,MAAO,MACxDkI,gBAAiB,EACjBC,gBAAiB,EACjBC,SAAU,YAAiBve,EAAKue,SAAU,IAC1CC,cAAe,YAAWxe,EAAKwe,cAAe,GAC9CC,UAAWze,EAAKye,UAChBC,YAAa1e,EAAK0e,YAClBC,eAAgB,YAAW3e,EAAK2e,eAAgB,GAChDC,WAAY,YAAiB5e,EAAK4e,WAAY,IAC9CC,gBAAiB,YAAW7e,EAAK6e,gBAAiB,GAClDC,iBAAkB,YAAW9e,EAAK8e,iBAAkB,KAWtD,OAAO,OACFlT,GAGA,EAAKmT,0BAA0BnT,EAAMiS,cAAejS,EAAMoS,cAIjE,IAAM,EAAQ,6BAQd,cAiIE,WAAmBpS,EAAkBkC,GAArC,MAKE,mBAEOlC,GACAoT,EAAKD,0BACNnT,EAAMiS,cACNjS,EAAMoS,cACP,KAGElQ,IAEL,IACD,K,OAjJO,EAAAmR,aAAe,EAEf,EAAAC,UAAoB,EAEpB,EAAAC,UAAoB,EAGd,EAAAC,sBAAwB,IAAIC,EAAA,EAEzB,EAAAC,0BAA0C,GAInD,EAAAC,mCAAqC,YAC7C,KACA,SAACtf,EAAkBC,GACjB,EAAKif,UAAW,EAChB,IAAMtB,EAAgB,CAAE5d,EAAC,EAAEC,EAAC,GAE5B,EAAKkf,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN2Q,cAAa,EACbG,YAAa,EAAKpS,MAAMoS,iBAMpB,EAAAwB,4BAA+C,KA2C/C,EAAAC,iCAAmC,YAC3C,KACA,SAACxf,EAAkBC,GACjB,EAAKif,UAAW,EAChB,IAAMnB,EAAc,CAAE/d,EAAC,EAAEC,EAAC,GAE1B,EAAKkf,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN8Q,YAAW,EACXH,cAAe,EAAKjS,MAAMiS,mBAMtB,EAAA6B,0BAA6C,KA6DrD,EAAKR,SAAWpR,EAAKxL,SACrB,EAAKsL,OAEL,YAAMQ,cAAa,OACjB5O,KAAKmL,IAAIiB,EAAMxL,MAAOwL,EAAMyS,iBAC5B7e,KAAKmL,IAAIiB,EAAMvL,OAAQuL,EAAM0S,kB,EA6SnC,OAtckC,OAmCtB,YAAAqB,kCAAV,SACEtZ,EACAG,GAFF,WAIEkH,KAAK8R,4BAA8B,YACjCnZ,GACA,SAACpG,EAAkBC,GAKjB,IAAM2d,EAAgB,CAAE5d,EAHxBA,GAAK,EAAKgf,aAAe,EAAKrT,MAAMyS,gBAAkB,EAG3Bne,EAF3BA,GAAK,EAAK+e,aAAe,EAAKrT,MAAM0S,gBAAkB,GAItD,EAAKa,UAAW,EAChB,EAAKvT,MAAQ,OACR,EAAKA,OAAK,CACbiS,cAAa,IAIf,EAAK0B,mCAAmCtf,EAAGC,KAE7CsG,IAMI,YAAAoZ,kCAAR,WACMlS,KAAK8R,8BACP9R,KAAK8R,8BACL9R,KAAK8R,4BAA8B,OA2B7B,YAAAK,gCAAV,SACExZ,EACAG,GAFF,WAIEkH,KAAKgS,0BAA4B,YAC/BrZ,GACA,SAACpG,EAAkBC,GAEjBD,GAAK,EAAKgf,aAAe,EAAKrT,MAAMyS,gBAAkB,EACtDne,GAAK,EAAK+e,aAAe,EAAKrT,MAAM0S,gBAAkB,EAEtD,EAAKa,UAAW,EAChB,EAAKvT,MAAQ,OACR,EAAKA,OAAK,CACboS,YAAa,CAAE/d,EAAC,EAAEC,EAAC,KAIrB,EAAKuf,iCAAiCxf,EAAGC,KAE3CsG,IAMI,YAAAsZ,gCAAR,WACMpS,KAAKgS,4BACPhS,KAAKgS,4BACLhS,KAAKgS,0BAA4B,OAyC9B,YAAApP,SAAP,SAAgBD,GACd,YAAMC,SAAQ,YAAC,KACVD,GACA2O,EAAKD,0BACN1O,EAASwN,cACTxN,EAAS2N,gBAWR,YAAArN,QAAP,SAAeD,GACbhD,KAAKwR,SAAWxO,EAAYpO,SAC5B,YAAMqO,QAAO,YAAC,KACTD,GAAW,CACd5N,UAAU,MASJ,YAAA0L,iBAAV,WACE,IAAMnI,EAA0ByC,SAASgB,cAAc,OACvDzD,EAAQ0D,UAAY,OAEhB,MAWA2D,KAAK9B,MAVP3L,EAAC,IACDC,EAAC,IACDE,EAAK,QACLC,EAAM,SACN8d,EAAS,YACTE,EAAe,kBACfC,EAAe,kBACfT,EAAa,gBACbG,EAAW,cACX7H,EAAK,QAGP/V,GAAgBie,EAChBhe,GAAkBie,EAElB,IAAMyB,EAAKlC,EAAc5d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC7D2B,EAAKnC,EAAc3d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAC7D2B,EAAKjC,EAAY/d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC3D6B,EAAKlC,EAAY9d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAG3DlB,EAAMtU,SAAS0N,gBAAgB,EAAO,OAE5C4G,EAAI9T,aAAa,QAAS,IAAGlJ,EAAQ+d,IACrCf,EAAI9T,aAAa,SAAU,IAAGjJ,EAAS8d,IAEvC,IAAMgC,EAAOrX,SAAS0N,gBAAgB,EAAO,QAW7C,OAVA2J,EAAK7W,aAAa,KAAM,GAAGyW,GAC3BI,EAAK7W,aAAa,KAAM,GAAG0W,GAC3BG,EAAK7W,aAAa,KAAM,GAAG2W,GAC3BE,EAAK7W,aAAa,KAAM,GAAG4W,GAC3BC,EAAK7W,aAAa,SAAU6M,GAAS,SACrCgK,EAAK7W,aAAa,eAAgB,GAAG6U,GAErCf,EAAIH,OAAOkD,GACX9Z,EAAQ4W,OAAOG,GAER/W,GAGC,YAAA+J,iBAAV,SAA2B/J,GACI,MAAzBA,EAAQI,gBACVJ,EAAQI,cAAcwC,MAAMmX,OAAS,WAGnC,MAWA1S,KAAK9B,MAVP3L,EAAC,IACDC,EAAC,IACDE,EAAK,QACLC,EAAM,SACN8d,EAAS,YACTE,EAAe,kBACfC,EAAe,kBACfT,EAAa,gBACbG,EAAW,cACX7H,EAAK,QAGP/V,GAAgBie,EAChBhe,GAAkBie,EAElB,IAAMyB,EAAKlC,EAAc5d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC7D2B,EAAKnC,EAAc3d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAC7D2B,EAAKjC,EAAY/d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC3D6B,EAAKlC,EAAY9d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAE3D+B,EAAOha,EAAQ+L,qBAAqB,OAE1C,GAAIiO,EAAKzhB,OAAS,EAAG,CACnB,IAAMwe,EAAMiD,EAAKnT,KAAK,GAEtB,GAAW,MAAPkQ,EAAa,CAEfA,EAAI9T,aAAa,QAAS,IAAGlJ,EAAQ+d,IACrCf,EAAI9T,aAAa,SAAU,IAAGjJ,EAAS8d,IAEvC,IAAMmC,EAAQlD,EAAImD,uBAAuB,EAAO,QAEhD,GAAID,EAAM1hB,OAAS,EAAG,CACpB,IAAMuhB,EAAOG,EAAMpT,KAAK,GAEZ,MAARiT,IACFA,EAAK7W,aAAa,KAAM,GAAGyW,GAC3BI,EAAK7W,aAAa,KAAM,GAAG0W,GAC3BG,EAAK7W,aAAa,KAAM,GAAG2W,GAC3BE,EAAK7W,aAAa,KAAM,GAAG4W,GAC3BC,EAAK7W,aAAa,SAAU6M,GAAS,SACrCgK,EAAK7W,aAAa,eAAgB,GAAG6U,MAM7C,GAAIzQ,KAAKwR,SAAU,CACjB,IAAIsB,EAA2B1X,SAASgB,cAAc,OAClD2W,EAAyB3X,SAASgB,cAAc,OAEpD,GAAI4D,KAAKyR,SAAU,CACjB,IAAMuB,EAAera,EAAQoR,uBAC3B,yCAEF,GAAIiJ,EAAa9hB,OAAS,GAClB6e,EAASiD,EAAaxT,KAAK,MACrBsT,EAAc/C,GAE5B,IAAMkD,EAAata,EAAQoR,uBACzB,uCAEF,GAAIkJ,EAAW/hB,OAAS,GAChB6e,EAASkD,EAAWzT,KAAK,MACnBuT,EAAYhD,GA8B5B,GA1BA+C,EAAY5R,UAAUC,IACpB,kCACA,yCAEF2R,EAAYvX,MAAM7I,MAA+B,EAApBsN,KAAKuR,aAAgB,KAClDuB,EAAYvX,MAAM5I,OAAgC,EAApBqN,KAAKuR,aAAgB,KACnDuB,EAAYvX,MAAM2X,aAAe,MACjCJ,EAAYvX,MAAM4X,gBAAkB,GAAG1K,EACvCqK,EAAYvX,MAAMgJ,SAAW,WAC7BuO,EAAYvX,MAAM9C,KAAU4Z,EAAKrS,KAAKuR,aAAY,KAClDuB,EAAYvX,MAAM/C,IAAS8Z,EAAKtS,KAAKuR,aAAY,KACjDuB,EAAYvX,MAAMmX,OAAS,OAE3BK,EAAU7R,UAAUC,IAClB,kCACA,uCAEF4R,EAAUxX,MAAM7I,MAA+B,EAApBsN,KAAKuR,aAAgB,KAChDwB,EAAUxX,MAAM5I,OAAgC,EAApBqN,KAAKuR,aAAgB,KACjDwB,EAAUxX,MAAM2X,aAAe,MAC/BH,EAAUxX,MAAM4X,gBAAkB,GAAG1K,EACrCsK,EAAUxX,MAAMgJ,SAAW,WAC3BwO,EAAUxX,MAAM9C,KAAU8Z,EAAKvS,KAAKuR,aAAY,KAChDwB,EAAUxX,MAAM/C,IAASga,EAAKxS,KAAKuR,aAAY,KAC/CwB,EAAUxX,MAAMmX,OAAS,OAEK,OAA1B/Z,EAAQI,cAAwB,CAIlC,IAHA,IAAMqa,EAAUza,EAAQI,cAAcgR,uBACpC,mCAEKqJ,EAAQliB,OAAS,GAAG,EACnB6e,EAASqD,EAAQ5T,KAAK,KAChBuQ,EAAOjT,SAGrBnE,EAAQI,cAAcuD,YAAYwW,GAClCna,EAAQI,cAAcuD,YAAYyW,GAIpC/S,KAAKiS,kCACHa,EACA9S,KAAK3B,WAAWtF,eAElBiH,KAAKmS,gCACHY,EACA/S,KAAK3B,WAAWtF,oBAEb,GAAKiH,KAAKwR,SAcfxR,KAAKkS,yCAXL,GAFAlS,KAAKkS,oCAEyB,OAA1BvZ,EAAQI,cAKV,IAJMqa,EAAUza,EAAQI,cAAcgR,uBACpC,mCAGKqJ,EAAQliB,OAAS,GAAG,CACzB,IAAM6e,KAASqD,EAAQ5T,KAAK,KAChBuQ,EAAOjT,WAab,EAAAuU,0BAAd,SACElB,EACAG,GAEA,MAAO,CACL5d,MAAOZ,KAAKC,IAAIoe,EAAc5d,EAAI+d,EAAY/d,GAC9CI,OAAQb,KAAKC,IAAIoe,EAAc3d,EAAI8d,EAAY9d,GAC/CD,EAAGT,KAAKuhB,IAAIlD,EAAc5d,EAAG+d,EAAY/d,GACzCC,EAAGV,KAAKuhB,IAAIlD,EAAc3d,EAAG8d,EAAY9d,KAUtC,YAAA8M,KAAP,SAAY/M,EAAWC,GACrB,YAAM6N,YAAW,UAAC9N,EAAGC,GACrB,IAAM8gB,EACJtT,KAAK9B,MAAMiS,cAAc5d,EAAIyN,KAAK9B,MAAMoS,YAAY/d,GAAK,EACrDghB,EACJvT,KAAK9B,MAAMiS,cAAc3d,EAAIwN,KAAK9B,MAAMoS,YAAY9d,GAAK,EAErDghB,EAAQ,CACZjhB,EAAG+gB,EAAc/gB,EAAIyN,KAAK9B,MAAMxL,MAAQH,EACxCC,EAAG+gB,EAAa/gB,EAAIwN,KAAK9B,MAAMvL,OAASH,GAGpCihB,EAAM,CACVlhB,EAAG+gB,EAActT,KAAK9B,MAAMxL,MAAQH,EAAIA,EACxCC,EAAG+gB,EAAavT,KAAK9B,MAAMvL,OAASH,EAAIA,GAG1CwN,KAAK9B,MAAQ,OACR8B,KAAK9B,OAAK,CACbiS,cAAeqD,EACflD,YAAamD,KAQV,YAAA3W,OAAP,WAEEkD,KAAKkS,oCAEL,YAAMpV,OAAM,YASP,YAAA4W,uBAAP,SACE9O,GAOA,IAAMR,EAAapE,KAAK0R,sBAAsB7M,GAAGD,GAGjD,OAFA5E,KAAK4R,0BAA0B9M,KAAKV,GAE7BA,GAEX,EAtcA,CAAkCsI,EAAA,G,8hBChF3B,SAASiH,EACdrhB,GAEA,OAAO,OACF4d,EAAiB5d,IAAK,CACzBkL,KAAM,GACNmT,gBAAiB,EACjBC,gBAAiB,EACjBC,SAAU,YAAiBve,EAAKue,SAAU,IAC1CC,cAAe,YAAWxe,EAAKwe,cAAe,GAC9CG,eAAgB,YAAW3e,EAAK2e,eAAgB,GAChDC,WAAY,YAAiB5e,EAAK4e,WAAY,IAC9CC,gBAAiB,YAAW7e,EAAK6e,gBAAiB,GAClDC,iBAAkB,YAAW9e,EAAK8e,iBAAkB,KAIxD,I,EAAA,YAIE,WAAmBlT,EAAyBkC,GAA5C,MAKE,iBAEOlC,GAAK,KAGLkC,KAEN,K,OAQO,EAAAyR,mCAAqC,YAC7C,IACA,SAACtf,EAAkBC,GACjB,EAAKif,UAAW,EAEhB,IAAMtB,EAAgB,CAAE5d,EAAC,EAAEC,EAAC,GAG5B,EAAKuQ,SAGL,EAAK2O,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN2Q,cAAa,EACbG,YAAa,EAAKpS,MAAMoS,iBAKpB,EAAAyB,iCAAmC,YAC3C,IACA,SAACxf,EAAkBC,GACjB,EAAKif,UAAW,EAChB,IAAMnB,EAAc,CAAE/d,EAAC,EAAEC,EAAC,GAG1B,EAAKuQ,SAGL,EAAK2O,sBAAsBnS,KAAK,CAC9BC,KAAM,EACN8Q,YAAW,EACXH,cAAe,EAAKjS,MAAMiS,mBAtC9B,EAAKpN,S,EA+PT,OAjRyC,OA6D7B,YAAAL,iBAAV,SAA2B/J,GACzB,YAAM+J,iBAAgB,UAAC/J,GAEnB,IAkBA8Z,EACA/C,EAnBA,EAeA1P,KAAK9B,MAdP3L,EAAC,IACDC,EAAC,IACDie,EAAS,YACTE,EAAe,kBACfC,EAAe,kBACfT,EAAa,gBACbG,EAAW,cACX7H,EAAK,QACLoI,EAAQ,WACRK,EAAU,aACVJ,EAAa,gBACbG,EAAc,iBACdE,EAAe,kBACfC,EAAgB,mBAGZuB,EAAOha,EAAQ+L,qBAAqB,OAI1C,GAAIiO,EAAKzhB,OAAS,EAAlB,CAGE,GAAW,OAFXwe,EAAMiD,EAAKnT,KAAK,IAEC,CAIf,IAFA,IAAMoT,EAAQlD,EAAImD,uBA7HZ,6BA6H0C,QAC5Ce,EAASlE,EAAImD,uBA9HX,6BA8HyC,KACxCe,EAAO1iB,OAAS,GACrB0iB,EAAO,GAAG9W,SAGR8V,EAAM1hB,OAAS,IACjBuhB,EAAOG,EAAMpT,KAAK,IAQxB,GAAW,MAAPkQ,GAAuB,MAAR+C,EAAnB,CAMA,IAGMoB,EAAS1D,EAAc5d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EACjEmD,EAAS3D,EAAc3d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EACjEmD,EAASzD,EAAY/d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC/DqD,EAAS1D,EAAY9d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAEjEyB,EAAKlC,EAAc5d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC7D2B,EAAKnC,EAAc3d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAC7D2B,EAAKjC,EAAY/d,EAAIA,EAAIke,EAAY,EAAIE,EAAkB,EAC3D6B,EAAKlC,EAAY9d,EAAIA,EAAIie,EAAY,EAAIG,EAAkB,EAI3DqD,EAAW,IADLniB,KAAKoiB,MAAMF,EAASF,EAAQC,EAASF,GACzB/hB,KAAKqiB,GAI3B,GAAIhD,GAAmB,EAAG,CACpByB,EAAQ1B,EAAWkD,MAAM,QAC7BjD,EAAkB,EAClByB,EAAMzO,SAAQ,SAAAlV,GACRA,EAAEiC,OAASigB,IACbA,EAxBW,GAwBOliB,EAAEiC,WAGpBkgB,GAAoB,IACtBA,EAVe,GAUIwB,EAAM1hB,QAI7B,GAAI4f,GAAiB,EAAG,CAClB8B,EAAQ/B,EAASuD,MAAM,QAC3BtD,EAAgB,EAChB8B,EAAMzO,SAAQ,SAAAlV,GACRA,EAAEiC,OAAS4f,IACbA,EArCW,GAqCK7hB,EAAEiC,WAGlB+f,GAAkB,IACpBA,EAvBe,GAuBE2B,EAAM1hB,QAiC3B,GA7BImhB,EAAKE,IAEPF,GA9CiB,GA+CjBE,GA/CiB,GA+CEzB,GAGjBuB,EAAKE,IAEPF,GApDiB,GAoDElB,EACnBoB,GArDiB,IAwDfD,EAAKE,IAEPF,GA1DiB,GA2DjBE,GA3DiB,GA2DEvB,GAGjBqB,EAAKE,IAEPF,GAhEiB,GAgEElB,EACnBoB,GAjEiB,SAoEC,IAAT/J,IACTA,EAAQ,QAIoB,OAA1B9P,EAAQI,cAAwB,CAIlC,IAHA,IAAMsb,EAAS1b,EAAQI,cAAcgR,uBACnC,oBAEKsK,EAAOnjB,OAAS,GAAG,CACxB,IAAMuM,EAAQ4W,EAAO7U,KAAK,GACtB/B,GAAOA,EAAMX,SAMnB,IAHA,IAAMwX,EAAS3b,EAAQI,cAAcgR,uBACnC,oBAEKuK,EAAOpjB,OAAS,GAAG,CACxB,IAAMqjB,EAAQD,EAAO9U,KAAK,GACtB+U,GAAOA,EAAMzX,UAIrB,IAAI0X,EAAwB,EAAZ/D,EAEZgE,EAAYZ,GAAUE,EAASF,GAAU,EAAIW,EAC7CE,EAAYZ,GAAUE,EAASF,GAAU,EAAIU,EAE7CG,EAA0BvZ,SAASgB,cAAc,OACrDuY,EAAWzT,UAAUC,IAAI,oBACzBwT,EAAWpZ,MAAMgJ,SAAW,WAC5BoQ,EAAWpZ,MAAMqZ,OAAYJ,EAAS,uBACtCG,EAAWpZ,MAAMsZ,aAAkBL,EAAS,YAAY/L,EACxDkM,EAAWpZ,MAAM9C,KAAUgc,EAAS,KACpCE,EAAWpZ,MAAM/C,IAASkc,EAAS,KACnCC,EAAWpZ,MAAMuZ,UAAY,WAAU,GAAKb,GAAC,OAE7C,IAAIc,EAAwB3Z,SAASgB,cAAc,OAcnD,GAbA2Y,EAAS7T,UAAUC,IAAI,oBACvB4T,EAASxZ,MAAMgJ,SAAW,WAC1BwQ,EAASxZ,MAAMqZ,OAAYJ,EAAS,uBACpCO,EAASxZ,MAAMsZ,aAAkBL,EAAS,YAAY/L,EACtDsM,EAASxZ,MAAM9C,KAAUgc,EAAS,KAClCM,EAASxZ,MAAM/C,IAASkc,EAAS,KACjCK,EAASxZ,MAAMuZ,UAAY,WAAU,IAAMb,GAAC,OAEd,OAA1Btb,EAAQI,gBACVJ,EAAQI,cAAcuD,YAAYqY,GAClChc,EAAQI,cAAcuD,YAAYyY,IAGlB,IAAd7D,EAAkB,CACpB,IAAI8D,EAA8B5Z,SAASgB,cAAc,OAEzD,IACE4Y,EAAexS,UAAY0O,EAC3B8D,EAAezZ,MAAMgJ,SAAW,WAChCyQ,EAAezZ,MAAM9C,KAAU4Z,EAAE,KACjC2C,EAAezZ,MAAM/C,IAAS8Z,EAAE,KAChC0C,EAAezZ,MAAM7I,MAAWye,EAAe,KAC/C6D,EAAezZ,MAAMqZ,OAAS,aAAanM,EAE3CuM,EAAe9T,UAAUC,IAAI,mBAAoB,eACjD,MAAOzM,GACPugB,QAAQvgB,MAAMA,GAGc,OAA1BiE,EAAQI,eACVJ,EAAQI,cAAcuD,YAAY0Y,GAItC,GAAgB,IAAZnE,EAAgB,CAClB,IAAIqE,EAA4B9Z,SAASgB,cAAc,OAEvD,IACE8Y,EAAa1S,UAAYqO,EACzBqE,EAAa3Z,MAAMgJ,SAAW,WAC9B2Q,EAAa3Z,MAAM9C,KAAU8Z,EAAE,KAC/B2C,EAAa3Z,MAAM/C,IAASga,EAAE,KAC9B0C,EAAa3Z,MAAM7I,MAAWoe,EAAa,KAC3CoE,EAAa3Z,MAAMqZ,OAAS,aAAanM,EAEzCyM,EAAahU,UAAUC,IAAI,mBAAoB,aAC/C,MAAOzM,GACPugB,QAAQvgB,MAAMA,GAGc,OAA1BiE,EAAQI,eACVJ,EAAQI,cAAcuD,YAAY4Y,OAI1C,EAjRA,CAAyC,G,0hBCHlC,SAASC,EAAkB7iB,GAChC,IAC4B,iBAAlBA,EAAK4Z,UAAkD,IAAzB5Z,EAAK4Z,SAAShb,SAC/B,OAArBoB,EAAKiX,YAEL,MAAM,IAAI3W,UAAU,sBAEtB,GAAuC,OAAnC,YAAWN,EAAK8iB,QAAS,MAC3B,MAAM,IAAIxiB,UAAU,qBAGtB,IAAMyiB,EAAiB,YAAa/iB,EAAK+iB,gBACnC/L,EAAO+L,EA3Bf,SAAqB/iB,GACnB,OAAK,YAAcA,EAAKgX,MACnB,YAAchX,EAAKiX,aACjB,KADsC,YAAajX,EAAKiX,aADzBjX,EAAKgX,KA0BbgM,CAAYhjB,GAAQ,KAElD,OAAO,SACF,YAAqBA,IAAK,CAC7BkL,KAAM,GACN4X,QAAShkB,SAASkB,EAAK8iB,SACvBlJ,SAAU,YAAiB5Z,EAAK4Z,SAAU,MAC1CC,eAAgB,YAAiB7Z,EAAK6Z,eAAgB,MACtDkJ,eAAc,EACd/L,KAAI,IACD,YAAqBhX,IAG5B,I,EAAA,yB,+CAsCA,OAtCmC,OACvB,YAAAwO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAevC,OAdAzD,EAAQ0D,UAAY,QAEf2D,KAAK9B,MAAMmX,gBAAgD,OAA9BrV,KAAK9B,MAAMiO,eAMlCnM,KAAK9B,MAAMmX,gBAAqC,MAAnBrV,KAAK9B,MAAMoL,OAEjD3Q,EAAQ4C,MAAM+Q,gBAAkB,OAChC3T,EAAQ6J,UAAYxC,KAAK9B,MAAMoL,OAP/B3Q,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMiO,eAAc,IAChExT,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,UAO9B9T,GAOC,YAAA+J,iBAAV,SAA2B/J,GACpBqH,KAAK9B,MAAMmX,gBAAgD,OAA9BrV,KAAK9B,MAAMiO,eAOlCnM,KAAK9B,MAAMmX,gBAAqC,MAAnBrV,KAAK9B,MAAMoL,OAEjD3Q,EAAQ4C,MAAM+Q,gBAAkB,OAChC3T,EAAQ6J,UAAYxC,KAAK9B,MAAMoL,OAR/B3Q,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMiO,eAAc,IAChExT,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SACnC9T,EAAQ6J,UAAY,KAO1B,EAtCA,CAAmCkK,EAAA,G,kiBC3B7B6I,EAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,WACL,IAAK,UACH,OAAOA,EACT,QACE,MAAO,aAQPC,EAAmB,SAACC,GACxB,OAAQA,GACN,IAAK,WACL,IAAK,OACH,OAAOA,EACT,QACE,MAAO,aAaN,SAASC,EAAkBrjB,GAChC,GACgC,iBAAvBA,EAAKsjB,eACkB,IAA9BtjB,EAAKsjB,cAAc1kB,OAEnB,MAAM,IAAI0B,UAAU,qBAGtB,OAAO,SACF,YAAqBN,IAAK,CAC7BkL,KAAM,GACNgY,UAAWD,EAAejjB,EAAKkjB,WAC/BE,YAAaD,EAAiBnjB,EAAKojB,aACnCE,cAAetjB,EAAKsjB,cACpBC,oBAAqB,YAAWvjB,EAAKujB,oBAAqB,GAC1DC,kBAAmB,YAAaxjB,EAAKwjB,mBACrCrN,MAAO,YAAiBnW,EAAKmW,MAAO,QACjC,YAAqBnW,IAI5B,IAAqB,EAArB,YAIE,WAAmB4L,EAAmBkC,GAAtC,MAEE,YAAMlC,EAAOkC,IAAK,K,OAJZ,EAAA2V,YAA6B,KAoBnC,EAAKC,WACH,WAEE,EAAKzX,gBAAgBiE,UAAY,EAAKyT,cAAczT,YAM7B,aAAzB,EAAKtE,MAAMsX,UAA2B,IAAQU,EAAMC,e,EAuhB1D,OAtjBmC,OAsCzB,YAAAC,SAAR,WAC2B,OAArBpW,KAAK+V,cACPlgB,OAAOwgB,cAAcrW,KAAK+V,aAC1B/V,KAAK+V,YAAc,OAUf,YAAAC,UAAR,SACEM,EACAC,QAAA,IAAAA,MAAmBL,EAAMC,eAEzBnW,KAAKoW,WACLpW,KAAK+V,YAAclgB,OAAO2gB,YAAYF,EAASC,IAQvC,YAAAzV,iBAAV,WACE,OAAOd,KAAKiW,eAOJ,YAAAvT,iBAAV,SAA2B/J,GAEnB,MAAyCqH,KAAKyW,eAClDzW,KAAK9B,MAAMxL,MACXsN,KAAK9B,MAAMvL,QAFE+jB,EAAQ,QAAUC,EAAS,SAKb,YAAzB3W,KAAK9B,MAAMsX,YACoB,IAA7BxV,KAAKI,KAAKlL,gBACZ,YAAMwL,cAAa,UAACV,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,QAEnDgG,EAAQuI,UAAU7J,QAAQ,iBAAkB,oBAEX,IAA7B2I,KAAKI,KAAKlL,gBACZ,YAAMwL,cAAa,UAACgW,EAAUC,GAEhChe,EAAQuI,UAAU7J,QAAQ,gBAAiB,mBAE7CsB,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,WAOvC,YAAA1F,OAAP,WAEEkD,KAAKoW,WAEL,YAAMtZ,OAAM,YASJ,YAAA4D,cAAV,SAAwBhO,EAAeC,GAE/B,MAAyCqN,KAAKyW,eAClD/jB,EACAC,GAFa+jB,EAAQ,QAAUC,EAAS,SAMb,YAAzB3W,KAAK9B,MAAMsX,UACb,YAAM9U,cAAa,UAAChO,EAAOC,GAI3B,YAAM+N,cAAa,UAACgW,EAAUC,IAU1B,YAAAV,YAAR,WACE,OAAQjW,KAAK9B,MAAMsX,WACjB,IAAK,WACH,OAAOxV,KAAK4W,sBACd,IAAK,UACH,OAAO5W,KAAK6W,qBACd,QACE,MAAM,IAAIliB,MAAM,yBAQd,YAAAiiB,oBAAR,WACE,IAAMtO,EAAQ,6BACRwO,EACO,UADPA,EAEa,UAFbA,EAGE,UAHFA,EAIM,UAJNA,EAKO,UALPA,EAMQ,UAGR,EAAoB9W,KAAKyW,iBAAvB/jB,EAAK,QAAEC,EAAM,SAKfokB,EACHC,GAA4CtkB,EAAS,IAElDsR,EAAM5I,SAASgB,cAAc,OACnC4H,EAAI3H,UAAY,iBAChB2H,EAAIzI,MAAM7I,MAAWA,EAAK,KAC1BsR,EAAIzI,MAAM5I,OAAYA,EAAM,KAG5B,IAAM+c,EAAMtU,SAAS0N,gBAAgBR,EAAO,OAE5CoH,EAAI9T,aAAa,UAAW,eAG5B,IAAMqb,EAAY7b,SAAS0N,gBAAgBR,EAAO,KAClD2O,EAAUrb,aAAa,QAAS,aAChC,IAAMsb,EAAsB9b,SAAS0N,gBAAgBR,EAAO,UAC5D4O,EAAoBtb,aAAa,KAAM,MACvCsb,EAAoBtb,aAAa,KAAM,MACvCsb,EAAoBtb,aAAa,IAAK,MACtCsb,EAAoBtb,aAAa,OAAQkb,GACzCI,EAAoBtb,aAAa,SAAUkb,GAC3CI,EAAoBtb,aAAa,eAAgB,KACjDsb,EAAoBtb,aAAa,iBAAkB,SAEnDqb,EAAU1H,OAAO2H,GAGjB,IAAMC,EAAOnX,KAAKoX,mBAClB,GAAID,EAAKjmB,OAAS,EAAG,CACnB,IAAMmmB,EAAuBjc,SAAS0N,gBAAgBR,EAAO,QAC7D+O,EAAqBzb,aAAa,cAAe,UACjDyb,EAAqBzb,aAAa,YAAa,KAC/Cyb,EAAqBzb,aACnB,YACA,+BAEFyb,EAAqBzb,aAAa,OAAQkb,GAC1CO,EAAqBpM,YAAckM,EACnCF,EAAU1H,OAAO8H,GAInB,IAAMC,EAAalc,SAAS0N,gBAAgBR,EAAO,KACnDgP,EAAW1b,aAAa,QAAS,SAEjC,IAAM2b,EAAgBnc,SAAS0N,gBAAgBR,EAAO,KACtDiP,EAAc3b,aAAa,QAAS,QACpC2b,EAAc3b,aAAa,YAAa,oBACxC,IAAM4b,EAASpc,SAAS0N,gBAAgBR,EAAO,QAC/CkP,EAAO5b,aAAa,KAAM,MAC1B4b,EAAO5b,aAAa,KAAM,KAC1B4b,EAAO5b,aAAa,KAAM,MAC1B4b,EAAO5b,aAAa,KAAM,KAC1B4b,EAAO5b,aAAa,SAAUkb,GAC9BU,EAAO5b,aAAa,eAAgB,KACpC,IAAM6b,EAASrc,SAAS0N,gBAAgBR,EAAO,QAC/CmP,EAAO7b,aAAa,KAAM,MAC1B6b,EAAO7b,aAAa,KAAM,KAC1B6b,EAAO7b,aAAa,KAAM,MAC1B6b,EAAO7b,aAAa,KAAM,KAC1B6b,EAAO7b,aAAa,SAAUkb,GAC9BW,EAAO7b,aAAa,eAAgB,KAEpC2b,EAAchI,OAAOiI,EAAQC,GAE7BH,EAAW/H,OAAOgI,GAElB,IAAK,IAAIvoB,EAAI,EAAGA,EAAI,GAAIA,IAAK,CAC3B,IAAM0oB,EAAOtc,SAAS0N,gBAAgBR,EAAO,QAC7CoP,EAAK9b,aAAa,KAAM,KACxB8b,EAAK9b,aAAa,KAAM,KACxB8b,EAAK9b,aAAa,SAAUkb,GAC5BY,EAAK9b,aAAa,YAAa,2BAA+B,EAAJ5M,EAAK,KAE3DA,EAAI,GAAM,GACZ0oB,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,eAAgB5M,EAAI,IAAO,EAAI,IAAM,OAEvD0oB,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,KAAM,MACxB8b,EAAK9b,aAAa,eAAgB,QAIpC0b,EAAW/H,OAAOmI,GAMpB,IAAMC,EAAWvc,SAAS0N,gBAAgBR,EAAO,KACjDqP,EAAS/b,aAAa,QAAS,aAC/B+b,EAAS/b,aAAa,YAAa,oBAEnC,IAAMgc,EAAYxc,SAAS0N,gBAAgBR,EAAO,QAClDsP,EAAUhc,aAAa,QAAS,eAChCgc,EAAUhc,aAAa,KAAM,KAC7Bgc,EAAUhc,aAAa,KAAM,KAC7Bgc,EAAUhc,aAAa,KAAM,MAC7Bgc,EAAUhc,aAAa,KAAM,KAC7Bgc,EAAUhc,aAAa,SAAUkb,GACjCc,EAAUhc,aAAa,eAAgB,KACvCgc,EAAUhc,aAAa,iBAAkB,SAEzC,IAAMic,EAAYzc,SAAS0N,gBAAgBR,EAAO,QAClDuP,EAAUjc,aAAa,QAAS,eAChCic,EAAUjc,aAAa,KAAM,KAC7Bic,EAAUjc,aAAa,KAAM,KAC7Bic,EAAUjc,aAAa,KAAM,QAC7Bic,EAAUjc,aAAa,KAAM,KAC7Bic,EAAUjc,aAAa,SAAUkb,GACjCe,EAAUjc,aAAa,eAAgB,OACvCic,EAAUjc,aAAa,iBAAkB,SAEzC+b,EAASpI,OAAOqI,EAAWC,GAG3B,IAAMC,EAAa1c,SAAS0N,gBAAgBR,EAAO,KACnDwP,EAAWlc,aAAa,QAAS,eACjCkc,EAAWlc,aAAa,YAAa,oBAErC,IAAMmc,EAAc3c,SAAS0N,gBAAgBR,EAAO,QACpDyP,EAAYnc,aAAa,QAAS,iBAClCmc,EAAYnc,aAAa,KAAM,KAC/Bmc,EAAYnc,aAAa,KAAM,KAC/Bmc,EAAYnc,aAAa,KAAM,MAC/Bmc,EAAYnc,aAAa,KAAM,KAC/Bmc,EAAYnc,aAAa,SAAUkb,GACnCiB,EAAYnc,aAAa,eAAgB,KACzCmc,EAAYnc,aAAa,iBAAkB,SAE3C,IAAMoc,EAAc5c,SAAS0N,gBAAgBR,EAAO,QACpD0P,EAAYpc,aAAa,QAAS,iBAClCoc,EAAYpc,aAAa,KAAM,KAC/Boc,EAAYpc,aAAa,KAAM,KAC/Boc,EAAYpc,aAAa,KAAM,QAC/Boc,EAAYpc,aAAa,KAAM,KAC/Boc,EAAYpc,aAAa,SAAUkb,GACnCkB,EAAYpc,aAAa,eAAgB,OACzCoc,EAAYpc,aAAa,iBAAkB,SAC3C,IAAMqc,EAAgB7c,SAAS0N,gBAAgBR,EAAO,UACtD2P,EAAcrc,aAAa,IAAK,KAChCqc,EAAcrc,aAAa,OAAQkb,GAEnCgB,EAAWvI,OAAOwI,EAAaC,EAAaC,GAG5C,IAAMC,EAAa9c,SAAS0N,gBAAgBR,EAAO,KACnD4P,EAAWtc,aAAa,QAAS,eACjCsc,EAAWtc,aAAa,YAAa,oBACrC,IAAMuc,EAAgB/c,SAAS0N,gBAAgBR,EAAO,QACtD6P,EAAcvc,aAAa,KAAM,KACjCuc,EAAcvc,aAAa,KAAM,KACjCuc,EAAcvc,aAAa,KAAM,MACjCuc,EAAcvc,aAAa,KAAM,KACjCuc,EAAcvc,aAAa,SAAUkb,GACrCqB,EAAcvc,aAAa,eAAgB,KAC3Cuc,EAAcvc,aAAa,iBAAkB,SAC7C,IAAMwc,EAAgBhd,SAAS0N,gBAAgBR,EAAO,UACtD8P,EAAcxc,aAAa,IAAK,KAChCwc,EAAcxc,aAAa,OAAQkb,GAEnCoB,EAAW3I,OAAO4I,EAAeC,GAGjC,IAAMC,EAAMjd,SAAS0N,gBAAgBR,EAAO,UAC5C+P,EAAIzc,aAAa,KAAM,MACvByc,EAAIzc,aAAa,KAAM,MACvByc,EAAIzc,aAAa,IAAK,OACtByc,EAAIzc,aAAa,OAAQkb,GAGzB,IAAM9gB,EAAOgK,KAAKsY,gBACZC,EAAUviB,EAAKc,aACf0hB,EAAUxiB,EAAKa,aAEf4hB,EAAW,EAAaF,EACxBG,EAAc,EAAaF,EAAwBD,EAAU,GAAxB,EACrCI,EAAY,GAHJ3iB,EAAKY,WAGkC4hB,EAAU,GAAxB,GA0EvC,GAxEAb,EAAS/b,aAAa,YAAa,2BAA2B+c,EAAS,KACvEb,EAAWlc,aACT,YACA,2BAA2B8c,EAAW,KAExCR,EAAWtc,aACT,YACA,2BAA2B6c,EAAQ,KAIrC/I,EAAIH,OAAO0H,EAAWK,EAAYK,EAAUG,EAAYI,EAAYG,GAEpE3I,EAAI9T,aAAa,YAAa,eAS9BoI,EAAIxB,UAAY,oFAIN,YACA,YACA,gCAAgCmW,EAAS,QACzCC,KAAK,MAAK,8CAGV,YACA,YACA,iCAAgCD,EAAY,KAAG,QAC/CC,KAAK,MAAK,+FAKV,YACA,YACA,gCAAgCF,EAAW,QAC3CE,KAAK,MAAK,8CAGV,YACA,YACA,iCAAgCF,EAAc,KAAG,QACjDE,KAAK,MAAK,+FAKV,YACA,YACA,gCAAgCH,EAAQ,QACxCG,KAAK,MAAK,8CAGV,YACA,YACA,iCAAgCH,EAAW,KAAG,QAC9CG,KAAK,MAAK,iDAMpB5U,EAAIuL,OAAOG,GAGoB,aAA3B1P,KAAK9B,MAAMwX,YAA4B,CACzC,IAAMmD,EAA4Bzd,SAASgB,cAAc,QACzDyc,EAASxc,UAAY,OACrBwc,EAAS5N,YAAc,YAAUjV,EAAM,WACvC6iB,EAAStd,MAAMud,SAAc/B,EAAY,KACrC/W,KAAK9B,MAAMuK,QAAOoQ,EAAStd,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACxDzE,EAAIuL,OAAOsJ,GAGb,OAAO7U,GAOD,YAAA6S,mBAAR,WACE,IAAMle,EAA0ByC,SAASgB,cAAc,OACvDzD,EAAQ0D,UAAY,gBAEd,MAAoB2D,KAAKyW,iBAAvB/jB,EAAK,QAAEC,EAAM,SACjBomB,EAAWrmB,EACXC,EAASD,IACXqmB,EAAWpmB,GAIb,IAEMqmB,EAAuB,EAAIhZ,KAAK9B,MAAM0X,cAAc1kB,OACpD+nB,EAHmB,GAGgBF,EAAY,IAC/ChC,EACHC,KAA4C+B,EAAY,IACrDG,EAAapnB,KAAKuhB,IANC,GAOH2F,EAAuBD,EAAY,IACtDrmB,EAAQ,IAAO,IAIZsD,EAAOgK,KAAKsY,gBAGlB,GAA+B,aAA3BtY,KAAK9B,MAAMwX,YAA4B,CACzC,IAAMmD,EAA4Bzd,SAASgB,cAAc,QACzDyc,EAASxc,UAAY,OACrBwc,EAAS5N,YAAc,YAAUjV,EAAM,WACvC6iB,EAAStd,MAAMud,SAAc/B,EAAY,KACrC/W,KAAK9B,MAAMuK,QAAOoQ,EAAStd,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACxD9P,EAAQ4W,OAAOsJ,GAIjB,IAAMM,EAA4B/d,SAASgB,cAAc,QACzD+c,EAAS9c,UAAY,OACrB8c,EAASlO,YAAc,YAAUjV,GACjCmjB,EAAS5d,MAAMud,SAAcG,EAAY,KACrCjZ,KAAK9B,MAAMuK,QAAO0Q,EAAS5d,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACxD9P,EAAQ4W,OAAO4J,GAGf,IAAMhC,EAAOnX,KAAKoX,mBAClB,GAAID,EAAKjmB,OAAS,EAAG,CACnB,IAAMkoB,EAA0Bhe,SAASgB,cAAc,QACvDgd,EAAO/c,UAAY,WACnB+c,EAAOnO,YAAckM,EACrBiC,EAAO7d,MAAMud,SAAcI,EAAU,KACjClZ,KAAK9B,MAAMuK,QAAO2Q,EAAO7d,MAAMkN,MAAQzI,KAAK9B,MAAMuK,OACtD9P,EAAQ4W,OAAO6J,GAGjB,OAAOzgB,GAOD,YAAA2f,cAAR,SAAsBe,QAAA,IAAAA,MAAA,MACpB,IAAM/pB,EAAI+pB,GAA4B,IAAI9kB,KACpC+kB,EAAkD,IAAjCtZ,KAAK9B,MAAM2X,oBAC5B0D,EAAwC,GAAxBjqB,EAAEkqB,oBAA2B,IAC7CC,EAAanqB,EAAEmF,UAAY6kB,EAAiBC,EAElD,OAAO,IAAIhlB,KAAKklB,IAOX,YAAArC,iBAAP,SAAwBsC,QAAA,IAAAA,MAAmB1Z,KAAK9B,MAAM0X,eAC9C,IAAG,EAAa8D,EAAStF,MAAM,KAA5B,GACT,YADa,IAAG,KAAE,GACN/c,QAAQ,IAAK,MAOnB,YAAAof,eAAR,SACE/jB,EACAC,GAEA,YAHA,IAAAD,MAAgBsN,KAAK9B,MAAMxL,YAC3B,IAAAC,MAAiBqN,KAAK9B,MAAMvL,QAEpBqN,KAAK9B,MAAMsX,WACjB,IAAK,WACH,IAAImE,EAAW,IAEXjnB,EAAQ,GAAKC,EAAS,EACxBgnB,EAAW7nB,KAAKuhB,IAAI3gB,EAAOC,GAClBD,EAAQ,EACjBinB,EAAWjnB,EACFC,EAAS,IAClBgnB,EAAWhnB,GAGb,IAAIinB,EAAc,EAKlB,MAJ+B,aAA3B5Z,KAAK9B,MAAMwX,cACbkE,EAAcjnB,EAAS,GAGlB,CACLD,MAAOinB,EACPhnB,OAAQgnB,EAAWC,GAGvB,IAAK,UAcH,OAbIlnB,EAAQ,GAAKC,EAAS,EAExBA,EAASD,EAAQ,EAAIC,EAASD,EAAQ,EAAIC,EACjCD,EAAQ,EACjBC,EAASD,EAAQ,EACRC,EAAS,EAElBD,EAAiB,EAATC,GAERD,EAAQ,IACRC,EAAS,IAGJ,CACLD,MAAK,EACLC,OAAM,GAGV,QACE,MAAM,IAAIgC,MAAM,yBAljBC,EAAAwhB,cAAgB,IAqjBzC,EAtjBA,CAAmCzJ,EAAA,G,0hBC9D5B,SAASmN,EAAgBvnB,GAC9B,OAAO,OACF,YAAqBA,IAAK,CAC7BkL,KAAM,GACNC,MAAO,KACPC,eAAe,EACfG,SAAU,KACVC,WAAY,KAEZ9D,YAAa,YAAW1H,EAAK0H,YAAa,GAC1C0W,YAAa,YAAiBpe,EAAKoe,YAAa,MAChDoJ,UAAW,YAAiBxnB,EAAKwnB,UAAW,MAC5CC,gBAAiBznB,EAAKynB,kBAI1B,I,EAAA,yB,+CAyDA,OAzDiC,OACrB,YAAAjZ,iBAAV,WACE,IAAME,EAAsB5F,SAASgB,cAAc,OAcnD,GAbA4E,EAAI3E,UAAY,MAEhB2E,EAAIzF,MAAMye,UAAY,aAElBha,KAAK9B,MAAM6b,gBACb/Y,EAAIzF,MAAM4X,gBAAkB,cAExBnT,KAAK9B,MAAM4b,YACb9Y,EAAIzF,MAAM4X,gBAAkBnT,KAAK9B,MAAM4b,WAKvC9Z,KAAK9B,MAAMlE,YAAc,EAAG,CAC9BgH,EAAIzF,MAAM0e,YAAc,QAExB,IAAMC,EAAiBpoB,KAAKuhB,IAAIrT,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,QAAU,EACjEqH,EAAclI,KAAKuhB,IAAIrT,KAAK9B,MAAMlE,YAAakgB,GACrDlZ,EAAIzF,MAAMvB,YAAiBA,EAAW,KAElCgG,KAAK9B,MAAMwS,cACb1P,EAAIzF,MAAMmV,YAAc1Q,KAAK9B,MAAMwS,aAIvC,OAAO1P,GAOC,YAAA0B,iBAAV,SAA2B/J,GAUzB,GATIqH,KAAK9B,MAAM6b,gBACbphB,EAAQ4C,MAAM4X,gBAAkB,cAE5BnT,KAAK9B,MAAM4b,YACbnhB,EAAQ4C,MAAM4X,gBAAkBnT,KAAK9B,MAAM4b,WAK3C9Z,KAAK9B,MAAMlE,YAAc,EAAG,CAC9BrB,EAAQ4C,MAAM0e,YAAc,QAE5B,IAAMC,EAAiBpoB,KAAKuhB,IAAIrT,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,QAAU,EACjEqH,EAAclI,KAAKuhB,IAAIrT,KAAK9B,MAAMlE,YAAakgB,GACrDvhB,EAAQ4C,MAAMvB,YAAiBA,EAAW,KAEtCgG,KAAK9B,MAAMwS,cACb/X,EAAQ4C,MAAMmV,YAAc1Q,KAAK9B,MAAMwS,eAI/C,EAzDA,CAAiChE,EAAA,G,0hBCzB1B,SAASyN,EAAkB7nB,GAChC,OAAO,SACF,YAAqBA,IAAK,CAC7BkL,KAAM,IACH,YAAqBlL,IAI5B,I,GAAA,yB,+CAoBA,OApBmC,OACvB,YAAAwO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAIvC,OAHAzD,EAAQ0D,UAAY,QACpB1D,EAAQ6J,UAAYxC,KAAKkC,6BAElBvJ,GAQF,YAAAkI,sBAAP,WACE,IAAMlI,EAAUyC,SAASgB,cAAc,OAGvC,OAFAzD,EAAQ0D,UAAY,4BAEb1D,GAEX,EApBA,CAAmC+T,EAAA,G,6hBCQ7B0N,GAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,SACL,IAAK,QACH,OAAOA,EACT,QACE,MAAO,WA+BN,SAASC,GACdhoB,GAEA,GAA0B,iBAAfA,EAAKrC,OAA4C,IAAtBqC,EAAKrC,MAAMiB,OAC/C,MAAM,IAAI0B,UAAU,iBAGtB,IAAM2nB,EA9BkB,SACxBA,GAEA,OAAQA,GACN,IAAK,OACL,IAAK,MACL,IAAK,MACL,IAAK,MACH,OAAOA,EACT,QACE,MAAO,QAoBUC,CAAkBloB,EAAKioB,cAE5C,OAAO,kBACF,YAAqBjoB,IAAK,CAC7BkL,KAAM,EACN6c,UAAWD,GAAe9nB,EAAK+nB,WAC/BpqB,MAAOqC,EAAKrC,QACS,SAAjBsqB,EACA,CAAEA,aAAY,GACd,CAAEA,aAAY,EAAE/P,OAAQ,YAAWlY,EAAKkY,OAAQ,KACjD,YAAmBlY,IACnB,YAAqBA,IAI5B,I,GAAA,yB,+CAwCA,OAxCyC,QAC7B,YAAAwO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAUvC,GATAzD,EAAQ0D,UAAY,gBAGW,IAA7B2D,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,EAAQ4C,MAAMmO,QAAU,OAGG,UAAzB1J,KAAK9B,MAAMmc,UAAuB,CACpC,IAAMI,EAAMrf,SAASgB,cAAc,OACnCqe,EAAI7Q,IAAM5J,KAAK9B,MAAMjO,MACrB0I,EAAQ4W,OAAOkL,OACV,CAEL,IAAIxjB,EAAO+I,KAAK9B,MAAMjO,MAClBwN,EAAQuC,KAAKkC,6BACbzE,EAAMvM,OAAS,IACjB+F,EAAO,YAAc,CAAC,CAAEG,MAAO,iBAAkBnH,MAAOgH,IAASwG,IAGnE9E,EAAQ6J,UAAYvL,EAGtB,OAAO0B,GAOK,YAAAkI,sBAAV,WACF,IAAMlI,EAAUyC,SAASgB,cAAc,OAGvC,OAFAzD,EAAQ0D,UAAY,4BAEb1D,GAEX,EAxCA,CAAyC+T,EAAA,G,QC7FrCgO,GAAK5oB,KAAKqiB,GACVwG,GAAM,EAAID,GAEVE,GAAaD,GADH,KAGd,SAASE,KACP7a,KAAK8a,IAAM9a,KAAK+a,IAChB/a,KAAKgb,IAAMhb,KAAKib,IAAM,KACtBjb,KAAKkb,EAAI,GAGX,SAASxZ,KACP,OAAO,IAAImZ,GAGbA,GAAKjqB,UAAY8Q,GAAK9Q,UAAY,CAChCuqB,YAAaN,GACbO,OAAQ,SAAS7oB,EAAGC,GAClBwN,KAAKkb,GAAK,KAAOlb,KAAK8a,IAAM9a,KAAKgb,KAAOzoB,GAAK,KAAOyN,KAAK+a,IAAM/a,KAAKib,KAAOzoB,IAE7E6oB,UAAW,WACQ,OAAbrb,KAAKgb,MACPhb,KAAKgb,IAAMhb,KAAK8a,IAAK9a,KAAKib,IAAMjb,KAAK+a,IACrC/a,KAAKkb,GAAK,MAGdI,OAAQ,SAAS/oB,EAAGC,GAClBwN,KAAKkb,GAAK,KAAOlb,KAAKgb,KAAOzoB,GAAK,KAAOyN,KAAKib,KAAOzoB,IAEvD+oB,iBAAkB,SAASlJ,EAAIC,EAAI/f,EAAGC,GACpCwN,KAAKkb,GAAK,MAAQ7I,EAAM,MAAQC,EAAM,KAAOtS,KAAKgb,KAAOzoB,GAAK,KAAOyN,KAAKib,KAAOzoB,IAEnFgpB,cAAe,SAASnJ,EAAIC,EAAIC,EAAIC,EAAIjgB,EAAGC,GACzCwN,KAAKkb,GAAK,MAAQ7I,EAAM,MAAQC,EAAM,MAAQC,EAAM,MAAQC,EAAM,KAAOxS,KAAKgb,KAAOzoB,GAAK,KAAOyN,KAAKib,KAAOzoB,IAE/GipB,MAAO,SAASpJ,EAAIC,EAAIC,EAAIC,EAAI1iB,GAC9BuiB,GAAMA,EAAIC,GAAMA,EAAIC,GAAMA,EAAIC,GAAMA,EAAI1iB,GAAKA,EAC7C,IAAI4rB,EAAK1b,KAAKgb,IACVW,EAAK3b,KAAKib,IACVW,EAAMrJ,EAAKF,EACXwJ,EAAMrJ,EAAKF,EACXwJ,EAAMJ,EAAKrJ,EACX0J,EAAMJ,EAAKrJ,EACX0J,EAAQF,EAAMA,EAAMC,EAAMA,EAG9B,GAAIjsB,EAAI,EAAG,MAAM,IAAI6E,MAAM,oBAAsB7E,GAGjD,GAAiB,OAAbkQ,KAAKgb,IACPhb,KAAKkb,GAAK,KAAOlb,KAAKgb,IAAM3I,GAAM,KAAOrS,KAAKib,IAAM3I,QAIjD,GAAM0J,EApDD,KAyDL,GAAMlqB,KAAKC,IAAIgqB,EAAMH,EAAMC,EAAMC,GAzD5B,MAyDgDhsB,EAKrD,CACH,IAAImsB,EAAM1J,EAAKmJ,EACXQ,EAAM1J,EAAKmJ,EACXQ,EAAQP,EAAMA,EAAMC,EAAMA,EAC1BO,EAAQH,EAAMA,EAAMC,EAAMA,EAC1BG,EAAMvqB,KAAKwqB,KAAKH,GAChBI,EAAMzqB,KAAKwqB,KAAKN,GAChB/sB,EAAIa,EAAIgC,KAAK0qB,KAAK9B,GAAK5oB,KAAK2qB,MAAMN,EAAQH,EAAQI,IAAU,EAAIC,EAAME,KAAS,GAC/EG,EAAMztB,EAAIstB,EACVI,EAAM1tB,EAAIotB,EAGVvqB,KAAKC,IAAI2qB,EAAM,GA1EX,OA2EN1c,KAAKkb,GAAK,KAAO7I,EAAKqK,EAAMZ,GAAO,KAAOxJ,EAAKoK,EAAMX,IAGvD/b,KAAKkb,GAAK,IAAMprB,EAAI,IAAMA,EAAI,WAAaisB,EAAME,EAAMH,EAAMI,GAAQ,KAAOlc,KAAKgb,IAAM3I,EAAKsK,EAAMf,GAAO,KAAO5b,KAAKib,IAAM3I,EAAKqK,EAAMd,QApBtI7b,KAAKkb,GAAK,KAAOlb,KAAKgb,IAAM3I,GAAM,KAAOrS,KAAKib,IAAM3I,UAuBxDsK,IAAK,SAASrqB,EAAGC,EAAG1C,EAAG+sB,EAAIC,EAAIC,GAC7BxqB,GAAKA,EAAGC,GAAKA,EAAWuqB,IAAQA,EAChC,IAAIC,GADYltB,GAAKA,GACRgC,KAAKmrB,IAAIJ,GAClBK,EAAKptB,EAAIgC,KAAKqrB,IAAIN,GAClBnB,EAAKnpB,EAAIyqB,EACTrB,EAAKnpB,EAAI0qB,EACTE,EAAK,EAAIL,EACTM,EAAKN,EAAMF,EAAKC,EAAKA,EAAKD,EAG9B,GAAI/sB,EAAI,EAAG,MAAM,IAAI6E,MAAM,oBAAsB7E,GAGhC,OAAbkQ,KAAKgb,IACPhb,KAAKkb,GAAK,IAAMQ,EAAK,IAAMC,GAIpB7pB,KAAKC,IAAIiO,KAAKgb,IAAMU,GAnGnB,MAmGoC5pB,KAAKC,IAAIiO,KAAKib,IAAMU,GAnGxD,QAoGR3b,KAAKkb,GAAK,IAAMQ,EAAK,IAAMC,GAIxB7rB,IAGDutB,EAAK,IAAGA,EAAKA,EAAK1C,GAAMA,IAGxB0C,EAAKzC,GACP5a,KAAKkb,GAAK,IAAMprB,EAAI,IAAMA,EAAI,QAAUstB,EAAK,KAAO7qB,EAAIyqB,GAAM,KAAOxqB,EAAI0qB,GAAM,IAAMptB,EAAI,IAAMA,EAAI,QAAUstB,EAAK,KAAOpd,KAAKgb,IAAMU,GAAM,KAAO1b,KAAKib,IAAMU,GAIrJ0B,EAnHC,OAoHRrd,KAAKkb,GAAK,IAAMprB,EAAI,IAAMA,EAAI,SAAWutB,GAAM3C,IAAO,IAAM0C,EAAK,KAAOpd,KAAKgb,IAAMzoB,EAAIzC,EAAIgC,KAAKmrB,IAAIH,IAAO,KAAO9c,KAAKib,IAAMzoB,EAAI1C,EAAIgC,KAAKqrB,IAAIL,OAGlJQ,KAAM,SAAS/qB,EAAGC,EAAG+qB,EAAGC,GACtBxd,KAAKkb,GAAK,KAAOlb,KAAK8a,IAAM9a,KAAKgb,KAAOzoB,GAAK,KAAOyN,KAAK+a,IAAM/a,KAAKib,KAAOzoB,GAAK,MAAQ+qB,EAAK,MAAQC,EAAK,KAAQD,EAAK,KAEzHE,SAAU,WACR,OAAOzd,KAAKkb,IAID,UCjIA,eACb,OAAO,WACL,OAAO3oB,ICFAR,GAAMD,KAAKC,IACXmiB,GAAQpiB,KAAKoiB,MACb+I,GAAMnrB,KAAKmrB,IACXhgB,GAAMnL,KAAKmL,IACXoW,GAAMvhB,KAAKuhB,IACX8J,GAAMrrB,KAAKqrB,IACXb,GAAOxqB,KAAKwqB,KAGZ,GAAKxqB,KAAKqiB,GACVuJ,GAAS,GAAK,EACd,GAAM,EAAI,GAEd,SAASjB,GAAKlqB,GACnB,OAAOA,EAAI,EAAI,EAAIA,GAAK,EAAI,GAAKT,KAAK2qB,KAAKlqB,GAGtC,SAASorB,GAAKprB,GACnB,OAAOA,GAAK,EAAImrB,GAASnrB,IAAM,GAAKmrB,GAAS5rB,KAAK6rB,KAAKprB,GCdzD,SAASqrB,GAAetuB,GACtB,OAAOA,EAAEuuB,YAGX,SAASC,GAAexuB,GACtB,OAAOA,EAAEyuB,YAGX,SAASC,GAAc1uB,GACrB,OAAOA,EAAE2uB,WAGX,SAASC,GAAY5uB,GACnB,OAAOA,EAAE6uB,SAGX,SAASC,GAAY9uB,GACnB,OAAOA,GAAKA,EAAE+uB,SAGhB,SAASC,GAAU5C,EAAIC,EAAItJ,EAAIC,EAAIC,EAAIC,EAAI+L,EAAIC,GAC7C,IAAIC,EAAMpM,EAAKqJ,EAAIgD,EAAMpM,EAAKqJ,EAC1BgD,EAAMJ,EAAKhM,EAAIqM,EAAMJ,EAAKhM,EAC1BtiB,EAAI0uB,EAAMH,EAAME,EAAMD,EAC1B,KAAIxuB,EAAIA,EDpBW,OCsBnB,MAAO,CAACwrB,GADRxrB,GAAKyuB,GAAOhD,EAAKnJ,GAAMoM,GAAOlD,EAAKnJ,IAAOriB,GACzBuuB,EAAK9C,EAAKzrB,EAAIwuB,GAKjC,SAASG,GAAenD,EAAIC,EAAItJ,EAAIC,EAAIwM,EAAIC,EAAI3B,GAC9C,IAAItB,EAAMJ,EAAKrJ,EACX0J,EAAMJ,EAAKrJ,EACX0M,GAAM5B,EAAK2B,GAAMA,GAAMzC,GAAKR,EAAMA,EAAMC,EAAMA,GAC9CkD,EAAKD,EAAKjD,EACVmD,GAAMF,EAAKlD,EACXqD,EAAMzD,EAAKuD,EACXG,EAAMzD,EAAKuD,EACXT,EAAMpM,EAAK4M,EACXP,EAAMpM,EAAK4M,EACXG,GAAOF,EAAMV,GAAO,EACpBa,GAAOF,EAAMV,GAAO,EACpB1B,EAAKyB,EAAMU,EACXjC,EAAKwB,EAAMU,EACXG,EAAKvC,EAAKA,EAAKE,EAAKA,EACpBptB,EAAIgvB,EAAKC,EACTS,EAAIL,EAAMT,EAAMD,EAAMW,EACtB9vB,GAAK4tB,EAAK,GAAK,EAAI,GAAKZ,GAAKrf,GAAI,EAAGnN,EAAIA,EAAIyvB,EAAKC,EAAIA,IACrDC,GAAOD,EAAItC,EAAKF,EAAK1tB,GAAKiwB,EAC1BG,IAAQF,EAAIxC,EAAKE,EAAK5tB,GAAKiwB,EAC3BI,GAAOH,EAAItC,EAAKF,EAAK1tB,GAAKiwB,EAC1BK,IAAQJ,EAAIxC,EAAKE,EAAK5tB,GAAKiwB,EAC3BM,EAAMJ,EAAMJ,EACZS,EAAMJ,EAAMJ,EACZS,EAAMJ,EAAMN,EACZW,EAAMJ,EAAMN,EAMhB,OAFIO,EAAMA,EAAMC,EAAMA,EAAMC,EAAMA,EAAMC,EAAMA,IAAKP,EAAME,EAAKD,EAAME,GAE7D,CACLK,GAAIR,EACJS,GAAIR,EACJ5D,KAAMmD,EACNlD,KAAMmD,EACNC,IAAKM,GAAOX,EAAKhvB,EAAI,GACrBsvB,IAAKM,GAAOZ,EAAKhvB,EAAI,IAIV,I,6hBCtCf,SAASqwB,GACP3iB,GAEA,OAAQA,GACN,IAAK,eACL,IAAK,SACL,IAAK,wBACL,IAAK,4BACH,OAAOA,EACT,QACA,KAAK,EACH,MAAO,eACT,KAAK,EACH,MAAO,SACT,KAAK,GACH,MAAO,wBACT,KAAK,GACH,MAAO,6BAQb,SAAS4iB,GAAiB/F,GACxB,OAAQA,GACN,IAAK,UACL,IAAK,QACH,OAAOA,EACT,QACE,MAAO,WAaN,SAASgG,GACd/tB,GAEA,OAAO,eACF,YAAqBA,IAAK,CAC7BkL,KAAM,EACN8iB,eAAgBH,GAAsB7tB,EAAKguB,gBAAkBhuB,EAAKkL,MAClE6c,UAAW+F,GAAiB9tB,EAAK+nB,WACjCkG,SAAU,YAAWjuB,EAAKiuB,SAAU,MACpCC,SAAU,YAAWluB,EAAKkuB,SAAU,MACpC/X,MAAO,YAAiBnW,EAAKmW,MAAO,MACpCgY,WAAY,YAAiBnuB,EAAKmuB,WAAY,MAC9CxwB,MAAO,YAAaqC,EAAKrC,MAAO,MAChCub,KAAM,YAAiBlZ,EAAKkZ,KAAM,QAC/B,YAAmBlZ,IACnB,YAAqBA,IAI5B,IAAM,GAAQ,6B,GAEd,yB,+CA6NA,OA7NwC,QAC5B,YAAAwO,iBAAV,WACE,IAUI4f,EAVE5J,EAAS,CACb6J,WAAY,UACZC,SAAU5gB,KAAK9B,MAAMuK,OAAS,UAC9BxR,KAAM+I,KAAK9B,MAAMuiB,YAAc,WAG3BG,EAAW5gB,KAAK6gB,cAEhBloB,EAAUyC,SAASgB,cAAc,OAGf,MAApB4D,KAAK9B,MAAMjO,QAEXywB,EADExqB,KACYA,KAAK4qB,aAAa,SAASvqB,OAAOyJ,KAAK9B,MAAMjO,OAE7C+P,KAAK9B,MAAMjO,OAK7B,IAAMyf,EAAMtU,SAAS0N,gBAAgB,GAAO,OAE5C,OAAQ9I,KAAK9B,MAAMoiB,gBACjB,IAAK,eAED,IAAMS,EAAiB3lB,SAAS0N,gBAAgB,GAAO,QACvDiY,EAAenlB,aAAa,OAAQkb,EAAO6J,YAC3CI,EAAenlB,aAAa,eAAgB,OAC5CmlB,EAAenlB,aAAa,QAAS,QACrCmlB,EAAenlB,aAAa,SAAU,QACtCmlB,EAAenlB,aAAa,KAAM,KAClCmlB,EAAenlB,aAAa,KAAM,KAClC,IAAMolB,EAAe5lB,SAAS0N,gBAAgB,GAAO,QACrDkY,EAAaplB,aAAa,OAAQkb,EAAO8J,UACzCI,EAAaplB,aAAa,eAAgB,KAC1ColB,EAAaplB,aAAa,QAAYglB,EAAQ,KAC9CI,EAAaplB,aAAa,SAAU,QACpColB,EAAaplB,aAAa,KAAM,KAChColB,EAAaplB,aAAa,KAAM,MAC1B3E,EAAOmE,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,cAAe,UACjC3E,EAAK2E,aAAa,qBAAsB,UACxC3E,EAAK2E,aAAa,YAAa,MAC/B3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aACH,YACA,aAAaoE,KAAK9B,MAAMxL,MAAQ,EAAC,WAEnCuE,EAAK2E,aAAa,OAAQkb,EAAO7f,MAEJ,UAAzB+I,KAAK9B,MAAMmc,WACbpjB,EAAKsE,MAAMud,SAAW,MAEtB7hB,EAAKgU,YAAcjL,KAAK9B,MAAMsN,KACvBkV,EAAW,IAAI1gB,KAAK9B,MAAMsN,KAC7B,GAAGkV,GAEPzpB,EAAKgU,YAAiB2V,EAAQ,IAGhClR,EAAI9T,aAAa,QAAS,QAC1B8T,EAAI9T,aAAa,SAAU,QAC3B8T,EAAIH,OAAOwR,EAAgBC,EAAc/pB,GAE3C,MACF,IAAK,SACL,IAAK,wBACL,IAAK,4BAKD,GAFAyY,EAAI9T,aAAa,UAAW,eAEM,WAA9BoE,KAAK9B,MAAMoiB,eAA6B,EAEpCW,EAAmB7lB,SAAS0N,gBAAgB,GAAO,WACxClN,aAAa,YAAa,oBAC3CqlB,EAAiBrlB,aAAa,OAAQkb,EAAO6J,YAC7CM,EAAiBrlB,aAAa,eAAgB,OAC9CqlB,EAAiBrlB,aAAa,IAAK,OAC7BslB,EAAiB9lB,SAAS0N,gBAAgB,GAAO,WACxClN,aAAa,YAAa,oBACzCslB,EAAetlB,aAAa,OAAQkb,EAAO8J,UAC3CM,EAAetlB,aAAa,eAAgB,KAC5CslB,EAAetlB,aAAa,IAAK,GAAGglB,EAAW,GAE/ClR,EAAIH,OAAO0R,EAAkBC,OACxB,CAEL,IASMD,EAKAC,EAdAC,EAAW,CACftD,YACgC,0BAA9B7d,KAAK9B,MAAMoiB,eAA6C,GAAK,EAC/DvC,YAAa,GACbE,WAAY,EACZE,SAAoB,EAAVrsB,KAAKqiB,IAEXyI,ED7HH,WACb,IAAIiB,EAAcD,GACdG,EAAcD,GACdsD,EAAeC,GAAS,GACxBC,EAAY,KACZrD,EAAaD,GACbG,EAAWD,GACXG,EAAWD,GACXmD,EAAU,KAEd,SAAS3E,IACP,IAAI4E,EACA1xB,EACA2xB,GAAM5D,EAAY6D,MAAM1hB,KAAM2hB,WAC9B7C,GAAMf,EAAY2D,MAAM1hB,KAAM2hB,WAC9B9E,EAAKoB,EAAWyD,MAAM1hB,KAAM2hB,WAAajE,GACzCZ,EAAKqB,EAASuD,MAAM1hB,KAAM2hB,WAAajE,GACvCL,EAAKtrB,GAAI+qB,EAAKD,GACdO,EAAKN,EAAKD,EAQd,GANK0E,IAASA,EAAUC,EAAS,MAG7B1C,EAAK2C,IAAI3xB,EAAIgvB,EAAIA,EAAK2C,EAAIA,EAAK3xB,GAG7BgvB,ED9FW,MCiGZ,GAAIzB,EAAK,GDjGG,MCkGfkE,EAAQnG,OAAO0D,EAAK7B,GAAIJ,GAAKiC,EAAK3B,GAAIN,IACtC0E,EAAQ3E,IAAI,EAAG,EAAGkC,EAAIjC,EAAIC,GAAKM,GAC3BqE,EDpGW,QCqGbF,EAAQnG,OAAOqG,EAAKxE,GAAIH,GAAK2E,EAAKtE,GAAIL,IACtCyE,EAAQ3E,IAAI,EAAG,EAAG6E,EAAI3E,EAAID,EAAIO,QAK7B,CACH,IAWIwE,EACAC,EAZAC,EAAMjF,EACNkF,EAAMjF,EACNkF,EAAMnF,EACNoF,EAAMnF,EACNoF,EAAM7E,EACN8E,EAAM9E,EACN+E,EAAK/D,EAASqD,MAAM1hB,KAAM2hB,WAAa,EACvCU,EAAMD,EDnHK,QCmHad,GAAaA,EAAUI,MAAM1hB,KAAM2hB,WAAarF,GAAKmF,EAAKA,EAAK3C,EAAKA,IAC5FC,EAAK1L,GAAIthB,GAAI+sB,EAAK2C,GAAM,GAAIL,EAAaM,MAAM1hB,KAAM2hB,YACrDW,EAAMvD,EACNwD,EAAMxD,EAKV,GAAIsD,ED3HW,MC2HG,CAChB,IAAIG,EAAK7E,GAAK0E,EAAKZ,EAAKtE,GAAIiF,IACxBK,EAAK9E,GAAK0E,EAAKvD,EAAK3B,GAAIiF,KACvBF,GAAY,EAALM,GD9HC,OC8HuCR,GAArBQ,GAAOpF,EAAK,GAAK,EAAe6E,GAAOO,IACjEN,EAAM,EAAGF,EAAMC,GAAOpF,EAAKC,GAAM,IACjCqF,GAAY,EAALM,GDhIC,OCgIuCX,GAArBW,GAAOrF,EAAK,GAAK,EAAe2E,GAAOU,IACjEN,EAAM,EAAGL,EAAMC,GAAOlF,EAAKC,GAAM,GAGxC,IAAIhB,EAAMgD,EAAK7B,GAAI6E,GACf/F,EAAM+C,EAAK3B,GAAI2E,GACfrD,EAAMgD,EAAKxE,GAAIgF,GACfvD,EAAM+C,EAAKtE,GAAI8E,GAGnB,GAAIlD,ED1IW,MC0IG,CAChB,IAII2D,EAJAvD,EAAML,EAAK7B,GAAI8E,GACf3C,EAAMN,EAAK3B,GAAI4E,GACf1C,EAAMoC,EAAKxE,GAAI+E,GACf1C,EAAMmC,EAAKtE,GAAI6E,GAInB,GAAI3E,EAAK,KAAOqF,EAAKpE,GAAUxC,EAAKC,EAAKsD,EAAKC,EAAKH,EAAKC,EAAKX,EAAKC,IAAO,CACvE,IAAIiE,EAAK7G,EAAM4G,EAAG,GACdE,EAAK7G,EAAM2G,EAAG,GACdG,EAAK1D,EAAMuD,EAAG,GACdI,EAAK1D,EAAMsD,EAAG,GACdK,EAAK,EAAI5F,GAAIV,IAAMkG,EAAKE,EAAKD,EAAKE,IAAOxG,GAAKqG,EAAKA,EAAKC,EAAKA,GAAMtG,GAAKuG,EAAKA,EAAKC,EAAKA,KAAQ,GAC/FE,EAAK1G,GAAKoG,EAAG,GAAKA,EAAG,GAAKA,EAAG,GAAKA,EAAG,IACzCJ,EAAMjP,GAAI0L,GAAK0C,EAAKuB,IAAOD,EAAK,IAChCR,EAAMlP,GAAI0L,GAAKD,EAAKkE,IAAOD,EAAK,KAK9BZ,ED/JS,MCkKNI,EDlKM,OCmKbX,EAAK/C,GAAeQ,EAAKC,EAAKxD,EAAKC,EAAK+C,EAAIyD,EAAKnF,GACjDyE,EAAKhD,GAAeM,EAAKC,EAAKX,EAAKC,EAAKI,EAAIyD,EAAKnF,GAEjDmE,EAAQnG,OAAOwG,EAAG3B,GAAK2B,EAAG9F,IAAK8F,EAAG1B,GAAK0B,EAAG7F,KAGtCwG,EAAMxD,EAAIwC,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIqC,EAAKrO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,IAI1FmE,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIqC,EAAKrO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM0N,EAAGxC,IAAKwC,EAAGzC,MAAO/B,GAC9EmE,EAAQ3E,IAAI,EAAG,EAAGkC,EAAI5K,GAAM0N,EAAG1B,GAAK0B,EAAGxC,IAAKwC,EAAG3B,GAAK2B,EAAGzC,KAAMjL,GAAM2N,EAAG3B,GAAK2B,EAAGzC,IAAKyC,EAAG5B,GAAK4B,EAAG1C,MAAO/B,GACrGmE,EAAQ3E,IAAIiF,EAAG5B,GAAI4B,EAAG3B,GAAIqC,EAAKrO,GAAM2N,EAAGzC,IAAKyC,EAAG1C,KAAMjL,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,MAK7EmE,EAAQnG,OAAOU,EAAKC,GAAMwF,EAAQ3E,IAAI,EAAG,EAAGkC,EAAIgD,EAAKC,GAAM3E,IArB1CmE,EAAQnG,OAAOU,EAAKC,GAyBpC0F,EDxLS,OCwLUS,EDxLV,MC2LNI,ED3LM,OC4LbV,EAAK/C,GAAeJ,EAAKC,EAAKS,EAAKC,EAAKqC,GAAKa,EAAKlF,GAClDyE,EAAKhD,GAAe/C,EAAKC,EAAKsD,EAAKC,EAAKmC,GAAKa,EAAKlF,GAElDmE,EAAQjG,OAAOsG,EAAG3B,GAAK2B,EAAG9F,IAAK8F,EAAG1B,GAAK0B,EAAG7F,KAGtCuG,EAAMvD,EAAIwC,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIoC,EAAKpO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,IAI1FmE,EAAQ3E,IAAIgF,EAAG3B,GAAI2B,EAAG1B,GAAIoC,EAAKpO,GAAM0N,EAAG7F,IAAK6F,EAAG9F,KAAM5H,GAAM0N,EAAGxC,IAAKwC,EAAGzC,MAAO/B,GAC9EmE,EAAQ3E,IAAI,EAAG,EAAG6E,EAAIvN,GAAM0N,EAAG1B,GAAK0B,EAAGxC,IAAKwC,EAAG3B,GAAK2B,EAAGzC,KAAMjL,GAAM2N,EAAG3B,GAAK2B,EAAGzC,IAAKyC,EAAG5B,GAAK4B,EAAG1C,KAAM/B,GACpGmE,EAAQ3E,IAAIiF,EAAG5B,GAAI4B,EAAG3B,GAAIoC,EAAKpO,GAAM2N,EAAGzC,IAAKyC,EAAG1C,KAAMjL,GAAM2N,EAAG9F,IAAK8F,EAAG/F,MAAOsB,KAK7EmE,EAAQ3E,IAAI,EAAG,EAAG6E,EAAIQ,EAAKD,EAAK5E,GArBImE,EAAQjG,OAAOmD,EAAKC,QA1F1C6C,EAAQnG,OAAO,EAAG,GAoHvC,GAFAmG,EAAQlG,YAEJmG,EAAQ,OAAOD,EAAU,KAAMC,EAAS,IAAM,KAyCpD,OAtCA5E,EAAIqG,SAAW,WACb,IAAInzB,IAAM+tB,EAAY6D,MAAM1hB,KAAM2hB,aAAc5D,EAAY2D,MAAM1hB,KAAM2hB,YAAc,EAClFuB,IAAMjF,EAAWyD,MAAM1hB,KAAM2hB,aAAcxD,EAASuD,MAAM1hB,KAAM2hB,YAAc,EAAI,GAAK,EAC3F,MAAO,CAAC1E,GAAIiG,GAAKpzB,EAAGqtB,GAAI+F,GAAKpzB,IAG/B8sB,EAAIiB,YAAc,SAAS3C,GACzB,OAAOyG,UAAUzwB,QAAU2sB,EAA2B,mBAAN3C,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOiB,GAG9FjB,EAAImB,YAAc,SAAS7C,GACzB,OAAOyG,UAAUzwB,QAAU6sB,EAA2B,mBAAN7C,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOmB,GAG9FnB,EAAIwE,aAAe,SAASlG,GAC1B,OAAOyG,UAAUzwB,QAAUkwB,EAA4B,mBAANlG,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOwE,GAG/FxE,EAAI0E,UAAY,SAASpG,GACvB,OAAOyG,UAAUzwB,QAAUowB,EAAiB,MAALpG,EAAY,KAAoB,mBAANA,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAO0E,GAG/G1E,EAAIqB,WAAa,SAAS/C,GACxB,OAAOyG,UAAUzwB,QAAU+sB,EAA0B,mBAAN/C,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOqB,GAG7FrB,EAAIuB,SAAW,SAASjD,GACtB,OAAOyG,UAAUzwB,QAAUitB,EAAwB,mBAANjD,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOuB,GAG3FvB,EAAIyB,SAAW,SAASnD,GACtB,OAAOyG,UAAUzwB,QAAUmtB,EAAwB,mBAANnD,EAAmBA,EAAImG,IAAUnG,GAAI0B,GAAOyB,GAG3FzB,EAAI2E,QAAU,SAASrG,GACrB,OAAOyG,UAAUzwB,QAAWqwB,EAAe,MAALrG,EAAY,KAAOA,EAAI0B,GAAO2E,GAG/D3E,EC1De,IAENqE,EAAmB7lB,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,YAAa,oBAC3CqlB,EAAiBrlB,aAAa,OAAQkb,EAAO6J,YAC7CM,EAAiBrlB,aAAa,eAAgB,OAC9CqlB,EAAiBrlB,aAAa,IAAK,GAAGghB,EAAIuE,KACpCD,EAAiB9lB,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,YAAa,oBACzCslB,EAAetlB,aAAa,OAAQkb,EAAO8J,UAC3CM,EAAetlB,aAAa,eAAgB,KAC5CslB,EAAetlB,aACb,IACA,GAAGghB,EAAI,SACFuE,GAAQ,CACXhD,SAAUgD,EAAShD,UAAYyC,EAAW,SAI9ClR,EAAIH,OAAO0R,EAAkBC,GAI/B,IAAMjqB,EAQN,IARMA,EAAOmE,SAAS0N,gBAAgB,GAAO,SACxClN,aAAa,cAAe,UACjC3E,EAAK2E,aAAa,qBAAsB,UACxC3E,EAAK2E,aAAa,YAAa,MAC/B3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aAAa,cAAe,QACjC3E,EAAK2E,aAAa,OAAQkb,EAAO7f,MAEJ,UAAzB+I,KAAK9B,MAAMmc,WAA6C,MAApBra,KAAK9B,MAAMjO,MAEjD,GAAI+P,KAAK9B,MAAMsN,MAAQxL,KAAK9B,MAAMsN,KAAKta,OAAS,EAAG,CACjD,IAAMjB,EAAQmL,SAAS0N,gBAAgB,GAAO,SAC9C7Y,EAAM2L,aAAa,IAAK,KACxB3L,EAAM2L,aAAa,KAAM,OACzB3L,EAAMgb,YAAc,GAAGyV,EACvBzwB,EAAMsL,MAAMud,SAAW,MACvB,IAAMtN,EAAOpQ,SAAS0N,gBAAgB,GAAO,SAC7C0C,EAAK5P,aAAa,IAAK,KACvB4P,EAAK5P,aAAa,KAAM,OACxB4P,EAAKP,YAAc,GAAGjL,KAAK9B,MAAMsN,KACjCA,EAAKjQ,MAAMud,SAAW,MACtB7hB,EAAKsY,OAAOtf,EAAOub,GACnBvU,EAAK2E,aAAa,YAAa,yBAE/B3E,EAAKgU,YAAc,GAAGyV,EACtBzpB,EAAKsE,MAAMud,SAAW,MACtB7hB,EAAK2E,aAAa,YAAa,yBAIjC3E,EAAKgU,YAAiB2V,EAAQ,IAC9B3pB,EAAK2E,aAAa,YAAa,oBAGjC8T,EAAIH,OAAOtY,GAcjB,OAR+B,IAA7B+I,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,gBAEX0c,EAAI9T,aAAa,UAAW,OAGlB,OAAR8T,GAAc/W,EAAQ4W,OAAOG,GAE1B/W,GAOC,YAAA+J,iBAAV,SAA2B/J,IACQ,IAA7BqH,KAAKI,KAAKlL,gBACZ8K,KAAKU,cAAcV,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,QAElDgG,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,WAOpC,YAAA9B,cAAV,SAAwBhO,EAAeC,GACH,iBAA9BqN,KAAK9B,MAAMoiB,eACb,YAAM5f,cAAa,UAAChO,EAAO,IAE3B,YAAMgO,cAAa,UAAChO,EAAOA,IAQxB,YAAAoN,OAAP,SAAcpN,GACZsN,KAAKU,cAAchO,EAAOA,GAC1B,IAAIC,EAASqN,KAAK9B,MAAMsiB,UAAY,EACF,iBAA9BxgB,KAAK9B,MAAMoiB,iBACb3tB,EAAS,IAEX,YAAMiQ,SAAQ,aAAC,MACV5C,KAAK9B,OAAK,CACbxL,MAAK,EACLC,OAAM,MAIF,YAAAkuB,YAAR,WACE,IAAMN,EAAWvgB,KAAK9B,MAAMqiB,UAAY,EAClCC,EAAWxgB,KAAK9B,MAAMsiB,UAAY,IAClCvwB,EAA4B,MAApB+P,KAAK9B,MAAMjO,MAAgB,EAAI+P,KAAK9B,MAAMjO,MAExD,OAAIA,GAASswB,EAAiB,EACrBtwB,GAASuwB,EAAiB,IACvB1uB,KAAKqxB,OAAQlzB,EAAQswB,IAAaC,EAAWD,GAAa,MAE1E,EA7NA,CAAwC7T,EAAA,G,qiBCtFlC0W,GAAsB,SAC1BjQ,GAEA,OAAQA,GACN,IAAK,QACL,IAAK,QACL,IAAK,cACH,OAAOA,EACT,QACE,MAAO,gBAQPkQ,GAAiB,SAACC,GACtB,OAAQA,GACN,IAAK,aACL,IAAK,WACH,OAAOA,EACT,QACE,MAAO,aAaN,SAASC,GAAsBjxB,GACpC,GAAI,YAAcA,EAAKgX,OAAS,YAAchX,EAAKiX,aACjD,MAAM,IAAI3W,UAAU,yBAGtB,OAAO,YACF,YAAqBN,IAAK,CAC7BkL,KAAM,GACN8L,KAAO,YAAchX,EAAKgX,MAEtB,YAAahX,EAAKiX,aADlBjX,EAAKgX,KAET6J,gBAAiBiQ,GAAoB9wB,EAAK6gB,iBAC1CmQ,UAAWD,GAAe/wB,EAAKgxB,WAC/BE,UAAW,YAAclxB,EAAKkxB,WAAa,UAAYlxB,EAAKkxB,YACzD,YAAmBlxB,IAI1B,I,GAAA,yB,+CA8BA,OA9BuC,QAC3B,YAAAwO,iBAAV,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAavC,OAZAzD,EAAQ0D,UAAY,aACpB1D,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMoL,KAAI,IACtD3Q,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAoBxM,KAAK9B,MAAMxL,MAAK,MAAMsN,KAAK9B,MAAMvL,OAAM,MAG1C,IAA7BqN,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,EAAQ4C,MAAMmO,QAAU,OAGnB/Q,GAGC,YAAA+J,iBAAV,SAA2B/J,GACzBA,EAAQ4C,MAAM+Q,gBAAkB,OAAOtM,KAAK9B,MAAMoL,KAAI,IACtD3Q,EAAQ4C,MAAMgR,iBAAmB,YACjC5T,EAAQ4C,MAAMiR,eAAoBxM,KAAK9B,MAAMxL,MAAK,MAAMsN,KAAK9B,MAAMvL,OAAM,MAG1C,IAA7BqN,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,EAAQ4C,MAAMmO,QAAU,QAG9B,EA9BA,CAAuCgD,EAAA,G,qiBCtChC,SAAS+W,GAAoBnxB,GAClC,GAAsB,OAAlBA,EAAK4Z,UACP,GACiC,iBAAxB5Z,EAAK6Z,gBACqB,IAAjC7Z,EAAK4Z,SAASC,eAEd,MAAM,IAAIvZ,UAAU,kCAGtB,GAAI,YAAcN,EAAKoxB,cACrB,MAAM,IAAI9wB,UAAU,kCAIxB,GAAyC,OAArC,YAAWN,EAAKqxB,UAAW,MAC7B,MAAM,IAAI/wB,UAAU,uBAGtB,OAAO,SACF,YAAqBN,IAAK,CAC7BkL,KAAM,GACNmmB,UAAWrxB,EAAKqxB,UAChBzX,SAAU,YAAiB5Z,EAAK4Z,SAAU,MAC1CC,eAAgB,YAAiB7Z,EAAK6Z,eAAgB,MACtDuX,aAAc,YAAiBpxB,EAAKoxB,aAAc,QAItD,I,GAAA,yB,+CA8CA,OA9CqC,QAC5B,YAAA5iB,iBAAP,WACE,IAAMnI,EAAUyC,SAASgB,cAAc,OAmBvC,OAlBAzD,EAAQ0D,UAAY,UAEc,OAA9B2D,KAAK9B,MAAMiO,gBACbxT,EAAQ4C,MAAMolB,WAAa,OAAO3gB,KAAK9B,MAAMiO,eAAc,cAC3DxT,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SACH,OAA5BzM,KAAK9B,MAAMwlB,eACb/qB,EAAQ0D,UAAY,6BACpB1D,EAAQiD,aAAa,iCAAkC,KACvDjD,EAAQiD,aACN,aACA,YAAaoE,KAAK9B,MAAMwlB,iBAGS,OAA5B1jB,KAAK9B,MAAMwlB,eACpB/qB,EAAQ6J,UAAY,YAAaxC,KAAK9B,MAAMwlB,eAGvC/qB,GAOC,YAAA+J,iBAAV,SAA2B/J,GACS,OAA9BqH,KAAK9B,MAAMiO,gBACbxT,EAAQ4C,MAAMolB,WAAa,OAAO3gB,KAAK9B,MAAMiO,eAAc,cAC3DxT,EAAQ4C,MAAMiR,eAAiB,UAC/B7T,EAAQ4C,MAAMkR,mBAAqB,SACH,OAA5BzM,KAAK9B,MAAMwlB,eACb/qB,EAAQ0D,UAAY,6BACpB1D,EAAQiD,aAAa,iCAAkC,KACvDjD,EAAQiD,aACN,aACA,YAAaoE,KAAK9B,MAAMwlB,gBAG5B/qB,EAAQ6J,UAAY,IACiB,OAA5BxC,KAAK9B,MAAMwlB,eACpB/qB,EAAQ6J,UAAY,YAAaxC,KAAK9B,MAAMwlB,gBAGlD,EA9CA,CAAqChX,EAAA,G,6hBClC9B,SAASkX,GAAqBtxB,GACnC,OAAO,YACF,YAAqBA,IAAK,CAC7BkL,KAAM,GACNvN,MAAO,YAAWqC,EAAKrC,MAAO,GAC9B6a,OAAQ,YAAcxY,EAAKwY,QAAU,UAAYxY,EAAKwY,OACtD+Y,WAAY,YAAcvxB,EAAKuxB,YAAc,UAAYvxB,EAAKuxB,WAC9Dve,MAAO,YAAchT,EAAKgT,OAAS,GAAKhT,EAAKgT,MAC7Cwe,YAAa,YAAcxxB,EAAKwxB,aAAe,GAAKxxB,EAAKwxB,YACzDC,WAAY,YAAczxB,EAAKyxB,YAAc,GAAKzxB,EAAKyxB,WACvDC,YAAa,YAAc1xB,EAAK0xB,aAAe,GAAK1xB,EAAK0xB,YACzDC,aAAc,YAAc3xB,EAAK2xB,cAC7B,UACA3xB,EAAK2xB,eACN,YAAmB3xB,IAI1B,I,MAAA,yB,+CA2TA,OA3TsC,QAC1B,YAAAwO,iBAAV,WACE,IAAIojB,EAAc,GACdC,EAAe,GACfC,EAAe,GACfC,EAAgB,GAEpB,GAA8B,KAA1BrkB,KAAK9B,MAAM6lB,WAAmB,CAChC,IAAMA,EAAaO,KAAKC,MAAMvkB,KAAK9B,MAAM6lB,YAEtB,OAAfA,IAC4B,GAA1BA,EAAWS,aAA8C,GAA1BT,EAAWU,cAC5CP,EAAclkB,KAAK0kB,UACjBX,EAAWS,YACXxkB,KAAK9B,MAAMxL,MAAQ,GAGnByxB,EAD4B,GAA1BJ,EAAWU,YACEzkB,KAAK0kB,UAAU,IAAK1kB,KAAK9B,MAAMxL,MAAQ,GAEvCsN,KAAK0kB,UAClBX,EAAWU,YACXzkB,KAAK9B,MAAMxL,MAAQ,IAKM,GAA3BqxB,EAAWY,cAAgD,GAA3BZ,EAAWa,eAC7CR,EAAepkB,KAAK0kB,UAClBX,EAAWY,aACX3kB,KAAK9B,MAAMxL,MAAQ,GAGnB2xB,EAD6B,GAA3BN,EAAWa,aACG5kB,KAAK0kB,UAAU,IAAK1kB,KAAK9B,MAAMxL,MAAQ,GAEvCsN,KAAK0kB,UACnBX,EAAWa,aACX5kB,KAAK9B,MAAMxL,MAAQ,KAO7B,IACI4Y,EADAuZ,EAAU,GAIZrwB,OAAOwL,KAAK9B,MAAMjO,SAAW+P,KAAK9B,MAAMjO,OACxC+P,KAAK9B,MAAMjO,MAAQ,GAAM,EAEzBqb,EAAStL,KAAK9B,MAAMjO,MAAM60B,QAAQ,IAGhCD,EAD6B,KAA3B7kB,KAAK9B,MAAM8lB,YACH,KAEAhkB,KAAK+kB,UAAU/kB,KAAK9B,MAAMjO,OAEtCqb,EAAS,IAAIpV,KAAK4qB,aAAa,KAAM,CACnCkE,yBAA0B,EAC1BC,sBAAuB,IACtB1uB,OAAOyJ,KAAK9B,MAAMjO,QAGvB,IAAIi1B,EAAO5Z,EAAO6Z,MAAM,WACX,OAATD,IACF5Z,EAAS4Z,EAAK,IAGhB,IAAME,EAASplB,KAAKqlB,UAAUrlB,KAAK9B,MAAMjO,OAErCkjB,EAAkB/X,SAAS6G,eAC7B,4BAGsB,OAApBkR,IACFA,EAAkB/X,SAAS6G,eACzB,4BAA4BjC,KAAK9B,MAAMD,SAIE,IAAzCkV,EAAgB5X,MAAM4X,kBACxBA,EAAgB5X,MAAM4X,gBAAkB,QAG1C,IAAMmS,EAA4B,GAAnBtlB,KAAK9B,MAAMxL,MAEpBiG,EAAUyC,SAASgB,cAAc,OACvCzD,EAAQ0D,UAAY,YAGW,IAA7B2D,KAAK9B,MAAM3K,gBACmB,IAA9ByM,KAAK9B,MAAMlL,iBAEX2F,EAAQ4C,MAAMmO,QAAU,OAI1B,IAAM6b,EAAoBnqB,SAASgB,cAAc,OACjDmpB,EAAkBlpB,UAAY,qBAG9B,IAAMmpB,EAAYpqB,SAASgB,cAAc,OACzCopB,EAAUnpB,UAAY,aACtBmpB,EAAUjqB,MAAM4X,gBAAkB,GAAGA,EAAgB5X,MAAM4X,gBAG3D,IAAMsS,EAAYrqB,SAASgB,cAAc,OACzCqpB,EAAUppB,UAAY,aACtBopB,EAAUloB,GAAK,aAAayC,KAAK9B,MAAMX,GACvCkoB,EAAUlqB,MAAM4X,gBAAkB,GAAGnT,KAAK9B,MAAM4M,OAGhD,IAAM4a,EAAYtqB,SAASgB,cAAc,OACzCspB,EAAUrpB,UAAY,aAGtB,IAAMspB,EAASvqB,SAASgB,cAAc,OACtCupB,EAAOtpB,UAAY,aAEnB,IAAMupB,EAAS,6BAEf,GAAmB,IAAf1B,EAAmB,CACrB,IAAM2B,EAAazqB,SAAS0N,gBAAgB8c,EAAQ,OACpDC,EAAWC,eAAe,KAAM,QAAS,QACzCD,EAAWC,eAAe,KAAM,SAAU,QAC1CD,EAAWC,eAAe,KAAM,QAAS,+BACzC,IAAMC,EAAc3qB,SAAS0N,gBAAgB8c,EAAQ,QACrDG,EAAYD,eAAe,KAAM,KAAM,cAAc9lB,KAAK9B,MAAMX,IAChEwoB,EAAYD,eACV,KACA,IACA,IAAI9lB,KAAK9B,MAAMxL,MAAQ,EAAC,IAAIsN,KAAK9B,MAAMxL,MAAQ,EAAC,IAAIwxB,EAAW,IAAIlkB,KAChE9B,MAAMxL,MAAQ,EAAC,IAAIsN,KAAK9B,MAAMxL,MAAQ,EAAC,UAAUyxB,EAAY,KAElE4B,EAAYD,eAAe,KAAM,QAAS,eAC1CD,EAAWvpB,YAAYypB,GACvBR,EAAkBjpB,YAAYupB,GAIhC,GAAoB,IAAhBzB,EAAoB,CACtB,IAAM4B,EAAc5qB,SAAS0N,gBAAgB8c,EAAQ,OACrDI,EAAYF,eAAe,KAAM,QAAS,QAC1CE,EAAYF,eAAe,KAAM,SAAU,QAC3CE,EAAYF,eAAe,KAAM,QAAS,+BAC1C,IAAMG,EAAe7qB,SAAS0N,gBAAgB8c,EAAQ,QACtDK,EAAaH,eAAe,KAAM,KAAM,eAAe9lB,KAAK9B,MAAMX,IAClE0oB,EAAaH,eACX,KACA,IACA,IAAI9lB,KAAK9B,MAAMxL,MAAQ,EAAC,IAAIsN,KAAK9B,MAAMxL,MAAQ,EAAC,IAAI0xB,EAAY,IAAIpkB,KACjE9B,MAAMxL,MAAQ,EAAC,IAAIsN,KAAK9B,MAAMxL,MAAQ,EAAC,UAAU2xB,EAAa,KAEnE4B,EAAaH,eAAe,KAAM,OAAQ,WAC1CE,EAAY1pB,YAAY2pB,GACxBV,EAAkBjpB,YAAY0pB,GAIhC,IAAME,EAAK9qB,SAASgB,cAAc,MAClC8pB,EAAGC,UAAY7a,EAASuZ,EACxBqB,EAAG3qB,MAAMud,SAAuB,IAATwM,EAAa,KACpCY,EAAG3qB,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM4M,OAC/Bob,EAAG3qB,MAAM6qB,WAAa,IAEtB,IAAMC,EAAKjrB,SAASgB,cAAc,MACV,IAApB4D,KAAK9B,MAAMoH,MACb+gB,EAAGpb,YAAcjL,KAAKsmB,cAActmB,KAAK9B,MAAMpL,YAE/CuzB,EAAGpb,YAAcjL,KAAKsmB,cAActmB,KAAK9B,MAAMoH,OAEjD+gB,EAAG/gB,MAAQtF,KAAK9B,MAAM4lB,YACtBuC,EAAGzqB,aAAa,QAASoE,KAAK9B,MAAM4lB,aAEpCuC,EAAG9qB,MAAMud,SAAuB,IAATwM,EAAa,KACpCe,EAAG9qB,MAAMkN,MAAQ,GAAGzI,KAAK9B,MAAM2lB,WAC/BwC,EAAG9qB,MAAM6qB,WAAa,IAEtB,IAAIG,EAASnrB,SAASgB,cAAc,UAqBpC,OApBAmqB,EAAO/oB,KAAO,kBACd+oB,EAAOC,OAAS,WACdf,EAAUlqB,MAAMuZ,UAAY,UAAUsQ,EAAM,cAGN,IAA7BplB,KAAK9B,MAAM1K,cACpB+yB,EAAO3c,IAAM,+CAEb2c,EAAO3c,IAAM,yCAGf4b,EAAUlpB,YAAY4pB,GACtBV,EAAUlpB,YAAY+pB,GACtBd,EAAkBjpB,YAAYmpB,GAC9BF,EAAkBjpB,YAAYopB,GAC9BH,EAAkBjpB,YAAYqpB,GAC9BJ,EAAkBjpB,YAAYkpB,GAC9BD,EAAkBjpB,YAAYiqB,GAC9B5tB,EAAQ2D,YAAYipB,GAEb5sB,GAGC,YAAA+J,iBAAV,SAA2B/J,GAA3B,WACEA,EAAQ6J,UAAYxC,KAAKc,mBAAmB0B,UAE5C,IAAI4iB,EAASplB,KAAKqlB,UAAUrlB,KAAK9B,MAAMjO,OAEjC41B,EAAazqB,SAAS6G,eAAe,cAAcjC,KAAK9B,MAAMX,IAClD,MAAdsoB,IACFA,EAAWtqB,MAAMkrB,QAAU,QAG7B,IAAMT,EAAc5qB,SAAS6G,eAAe,eAAejC,KAAK9B,MAAMX,IACnD,MAAfyoB,IACFA,EAAYzqB,MAAMkrB,QAAU,QAG9B1uB,YAAW,WACS,MAAd8tB,IACFA,EAAWtqB,MAAMkrB,QAAU,SAGV,MAAfT,IACFA,EAAYzqB,MAAMkrB,QAAU,SAG9B,IAAIhB,EAAYrqB,SAAS6G,eAAe,aAAa,EAAK/D,MAAMX,IAC5DkoB,IACFA,EAAUlqB,MAAMuZ,UAAY,UAAUsQ,EAAM,WAE7C,MAGK,YAAA1kB,cAAV,SAAwBhO,GACtB,YAAMgO,cAAa,UAAChO,EAAOA,EAAQ,IAO9B,YAAAoN,OAAP,SAAcpN,GACZsN,KAAKU,cAAcV,KAAK9B,MAAMxL,QAGxB,YAAA2yB,UAAR,SAAkBp1B,GAChB,IAAIm1B,EAAS,EACb,GAA+B,KAA3BplB,KAAK9B,MAAM8lB,YACboB,EAASn1B,EAAQ,EAAI,QAChB,CACL,IAAMy2B,EAASpC,KAAKC,MAAMvkB,KAAK9B,MAAM8lB,aACrC,GAAI0C,EAAY,MAAMz2B,EACpBm1B,EAAS,OACJ,GAAIsB,EAAY,MAAMz2B,EAC3Bm1B,EAAS,OACJ,CACL,IAAMuB,EAAQD,EAAY,IAAIA,EAAY,IAE1CtB,GAAU,IAAkB,KADXsB,EAAY,IAAIz2B,GACE02B,GAAS,IAAM,GAItD,OAAOvB,GAGD,YAAAL,UAAR,SAAkB90B,GAChB,IAAI22B,EAAS,GACP11B,GAAUjB,EAAQ,IAAIiB,OAW5B,OAVIA,EAAS,GAAKA,GAAU,EAC1B01B,EAAS,KACA11B,EAAS,GAAKA,GAAU,EACjC01B,EAAS,KACA11B,EAAS,GAAKA,GAAU,GACjC01B,EAAS,KACA11B,EAAS,IAAMA,GAAU,KAClC01B,EAAS,MAGJA,GAGD,YAAAlC,UAAR,SAAkBG,EAAiBgC,GACjC,GAA+B,KAA3B7mB,KAAK9B,MAAM8lB,YACba,EAAUA,MACL,CACL,IAAM6B,EAASpC,KAAKC,MAAMvkB,KAAK9B,MAAM8lB,aACrC,GAAI0C,EAAY,MAAM7B,EACpBA,EAAU,OACL,GAAI6B,EAAY,MAAM7B,GAAuB,MAAZA,EACtCA,EAAU,QACL,CACL,IAAM8B,EAAQD,EAAY,IAAIA,EAAY,IAE1C7B,EAAU,IAAkB,KADb6B,EAAY,IAAI7B,GACI8B,GAOvC,OAHA9B,EAAU,IAAgB,IAAVA,EACNgC,EAAQ/0B,KAAKmrB,IAAK4H,EAAU/yB,KAAKqiB,GAAM,KAAO0S,EAE7C,KADDA,EAAQ/0B,KAAKqrB,IAAK0H,EAAU/yB,KAAKqiB,GAAM,KAAO0S,IAIlD,YAAAP,cAAR,SAAsBhhB,GACpB,GAAa,MAATA,GAAiBA,EAAMpU,OAAS,GAAI,CACtC,IAAM41B,EAAaxhB,EAAMpU,OAAS,EAC5B61B,EAAOD,EAAa,EAI1B,OAHqBxhB,EAAMzT,OAAO,EAAGi1B,EAAaC,GAG5B,MAFFzhB,EAAMzT,OAAOi1B,EAAaC,GAI9C,OAAOzhB,GAGb,EA3TA,CAAsCoH,EAAA,G,yNCuDtC,SAASsa,GAAY10B,GACnB,IAAMkL,EAAO,YAAWlL,EAAKkL,KAAM,MACnC,GAAY,MAARA,EAAc,MAAM,IAAI5K,UAAU,sBAEtC,OAAQ4K,GACN,KAAK,EACH,OAAOyO,EAAwB3Z,GACjC,KAAK,EACH,OAAO,aAAwBA,GACjC,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACH,OAAOgoB,GAAwBhoB,GACjC,KAAK,EACL,KAAK,EACL,KAAK,GACL,KAAK,GACH,OAAO+tB,GAAuB/tB,GAChC,KAAK,EACH,OAAO6nB,EAAkB7nB,GAC3B,KAAK,EACH,OAAOqa,EAAiBra,GAC1B,KAAK,GACH,OAAOmxB,GAAoBnxB,GAC7B,KAAK,GACH,OAAO6iB,EAAkB7iB,GAC3B,KAAK,GACH,OAAOunB,EAAgBvnB,GACzB,KAAK,GACH,OAAO4d,EAAiB5d,GAC1B,KAAK,GACH,OAAO,aAA0BA,GACnC,KAAK,GACH,OAAO,aAAuBA,GAChC,KAAK,GACH,OAAOixB,GAAsBjxB,GAC/B,KAAK,GACH,OAAOqjB,EAAkBrjB,GAC3B,KAAK,GACH,OAAOua,EAAuBva,GAChC,KAAK,GACH,OAAOqhB,EAAwBrhB,GACjC,KAAK,GACH,OAAOsxB,GAAqBtxB,GAC9B,KAAK,GACH,OAAO,aAAuBA,GAChC,QACE,MAAM,IAAIM,UAAU,sBAoE1B,IAAqB,GAArB,WA8aE,WACEkG,EACAoF,EACA+oB,GAHF,WAxaQ,KAAAC,aAEJ,GAEI,KAAAC,WAAgC,GAEhC,KAAAC,UAEJ,GAGI,KAAAC,UAEJ,GAEI,KAAAzU,MAEJ,GAGa,KAAApU,kBAAoB,IAAImT,EAAA,EAExB,KAAAlT,qBAAuB,IAAIkT,EAAA,EAE3B,KAAAjT,kBAAoB,IAAIiT,EAAA,EAExB,KAAAD,sBAAwB,IAAIC,EAAA,EAE5B,KAAA/S,oBAAsB,IAAI+S,EAAA,EAE1B,KAAA5S,6BAA+B,IAAI4S,EAAA,EAInC,KAAA3S,YAA4B,GAMrC,KAAAsoB,mBAAkD,SAAAhtB,GACxD,EAAKkE,kBAAkBe,KAAKjF,IAQtB,KAAAitB,sBAAqD,SAAAjtB,GAC3D,EAAKmE,qBAAqBc,KAAKjF,IAQzB,KAAAktB,sBAAqD,SAAAltB,GAE3D,IAAMmtB,EAASntB,EAAEkF,KAAKtB,MAAMX,GACV,EAAKmqB,iBAAiBD,GAE9BtjB,SAAQ,SAAAwjB,GACZA,EAAS9pB,WAAa4pB,EAExBE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBiS,cAAe,EAAKyX,gBAAgBttB,EAAE8E,YAAa9E,EAAEkF,QAE9CmoB,EAASE,UAAYJ,IAE9BE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBoS,YAAa,EAAKsX,gBAAgBttB,EAAE8E,YAAa9E,EAAEkF,YAMzD,EAAKsoB,qBAAqBxtB,EAAEkF,KAAKtB,MAAO5D,EAAE8E,aAAa,IASjD,KAAA2oB,8BAA6D,SAAAztB,GACnE,EAAKoE,kBAAkBa,KAAKjF,GAE5B,EAAKwtB,qBAAqBxtB,EAAEkF,KAAKtB,MAAO5D,EAAE8E,aAAa,IAiCjD,KAAA4oB,kCAEI,SAAA1tB,GAEV,EAAK2tB,YAAY3tB,EAAEkF,MAGnB,EAAKkS,sBAAsBnS,KAAKjF,IAS1B,KAAA4tB,wBAAyD,SAAA5tB,GAE/D,IAAMkF,EAAOlF,EAAEkF,KACTtB,EAAQsB,EAAKtB,MACbupB,EAASvpB,EAAMX,GACf6pB,EAAY,EAAKM,iBAAiBD,GAElCljB,EAAW,CACfhS,EAAG2L,EAAM3L,EACTC,EAAG0L,EAAM1L,GAGL4N,EAAO,EAAK8mB,aAAaO,GAAQrnB,KAEvC,EAAK8mB,aAAaO,GAAQrnB,KAAO,SAC5BA,GAAI,CACPpL,YAAY,IAGdoyB,EAAUjjB,SAAQ,SAAAwjB,GACZA,EAAS9pB,WAAa4pB,EAExBE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBiS,cAAe,EAAKyX,gBAAgBrjB,EAAU/E,KAEvCmoB,EAASE,UAAYJ,IAE9BE,EAASlV,KAAKvU,MAAQ,SACjBypB,EAASlV,KAAKvU,OAAK,CACtBoS,YAAa,EAAKsX,gBAAgBrjB,EAAU/E,UAY5C,KAAA2oB,gCAEI,SAAA7tB,GACV,EAAKsE,oBAAoBW,KAAKjF,IAQxB,KAAA8tB,oBAAoD,SAAA9tB,GAE1D,EAAK6sB,WAAa,EAAKA,WAAWxf,QAAO,SAAApK,GAAM,OAAAA,IAAOjD,EAAEkF,KAAKtB,MAAMX,aAC5D,EAAK2pB,aAAa5sB,EAAEkF,KAAKtB,MAAMX,IACtC,EAAK8qB,eAAe/tB,EAAEkF,KAAKtB,MAAMX,KAO3B,KAAA+qB,8BAEI,SAAAhuB,GACN,EAAKiuB,SAAS5gB,QAAO,SAAAnI,GAAQ,OAAwB,GAAxBA,EAAKY,KAAKjL,cAAoBjE,OAAS,EACtEoJ,EAAE6I,UAAW,EAEb7I,EAAE6I,UAAW,EAEf,EAAKpE,6BAA6BQ,KAAKjF,IAIjC,KAAAkuB,qBAAgD,WACtD,EAAKC,iBAmNLzoB,KAAK0oB,aAAe5vB,EACpBkH,KAAK2oB,OA1dF,SACLr2B,GAIE,IAAAiL,EAQEjL,EAAI,GAPN/C,EAOE+C,EAAI,KANN8iB,EAME9iB,EAAI,QALNs2B,EAKEt2B,EAAI,cAJN6gB,EAIE7gB,EAAI,gBAHNu2B,EAGEv2B,EAAI,WAFNw2B,EAEEx2B,EAAI,kBADNuC,EACEvC,EAAI,gBAER,GAAU,MAANiL,GAAcpM,MAAMC,SAASmM,IAC/B,MAAM,IAAI3K,UAAU,eAEtB,GAAoB,iBAATrD,GAAqC,IAAhBA,EAAK2B,OACnC,MAAM,IAAI0B,UAAU,iBAEtB,GAAe,MAAXwiB,GAAmBjkB,MAAMC,SAASgkB,IACpC,MAAM,IAAIxiB,UAAU,qBAGtB,OAAO,IACL2K,GAAInM,SAASmM,GACbhO,KAAI,EACJ6lB,QAAShkB,SAASgkB,GAClBwT,cAAe,YAAiBA,EAAe,MAC/CzV,gBAAiB,YAAiBA,EAAiB,MACnD0V,WAAY,YAAaA,GACzBC,kBAAmB,YAAWA,EAAmB,GACjDj0B,gBAAiBA,GACd,YAAiBvC,IAwbNy2B,CAA0B7qB,GAGxC8B,KAAK+C,UAGLkkB,EAAQA,EAAM+B,MAAK,SAAS9F,EAAG+F,GAC7B,OAAY,MAAR/F,EAAE3lB,IAAsB,MAAR0rB,EAAE1rB,GAAmB,EAChC2lB,EAAE3lB,GAAK0rB,EAAE1rB,GAAW,GAChB,MAIT4G,SAAQ,SAAA3E,GAAQ,SAAK0pB,WAAW1pB,EAAM,MAG5CQ,KAAKmpB,iBAGLnpB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GAChBA,aAAgB,GAClB,EAAKyoB,YAAYzoB,MAIrBQ,KAAK0oB,aAAa1sB,iBAAiB,QAASgE,KAAKwoB,sBAutBrD,OAxjCU,YAAAY,kBAAR,SAA0B72B,EAAWC,EAAW0L,GAC9C,OACgB,IAAdA,EAAMV,MACQ,IAAdU,EAAMV,OAMNjL,EAAI2L,EAAM3L,GACVA,EAAI2L,EAAM3L,EAAI2L,EAAMxL,OACpBF,EAAI0L,EAAM1L,GACVA,EAAI0L,EAAM1L,EAAI0L,EAAMvL,SAgHd,YAAAs1B,YAAV,SAAsBh5B,GACpB,IAAIwjB,EAAexjB,EAAEiP,MAAMX,GACvB8rB,EAAc,EACdC,EAAY,EAEhB,IACE,IAAK,IAAIt6B,KAAKgR,KAAKknB,aAEflnB,KAAKopB,kBACHn6B,EAAEiP,MAAMiS,cAAc5d,EACtBtD,EAAEiP,MAAMiS,cAAc3d,EACtBwN,KAAKknB,aAAal4B,GAAGkP,SAIvBmrB,EAAcj4B,SAASpC,IAIvBgR,KAAKopB,kBACHn6B,EAAEiP,MAAMoS,YAAY/d,EACpBtD,EAAEiP,MAAMoS,YAAY9d,EACpBwN,KAAKknB,aAAal4B,GAAGkP,SAIvBorB,EAAYl4B,SAASpC,IAyEzB,IAAK,IAAIA,KArEa,MAAlBgR,KAAKqnB,YACPrnB,KAAKqnB,UAAY,IAGD,MAAdrnB,KAAK4S,QACP5S,KAAK4S,MAAQ,IAGXyW,GAAe5W,IACjB4W,EAAc,GAGZC,GAAa7W,IACf6W,EAAY,GAIU,MAApBtpB,KAAK4S,MAAMH,KACbzS,KAAK4S,MAAMH,GAAQ,CACjBe,MAAO6V,EACP5V,IAAK6V,IAKLD,EAAc,GAEmB,MAA/BrpB,KAAKqnB,UAAUgC,KACjBrpB,KAAKqnB,UAAUgC,GAAe,IAIhCrpB,KAAKqnB,UAAUgC,GAAa5W,GAAQ,CAClCe,MAAO6V,EACP5V,IAAK6V,IAMHtpB,KAAK4S,MAAMH,GAAa,MAAI,IAC9BzS,KAAKqnB,UAAUrnB,KAAK4S,MAAMH,GAAa,OAAGA,GAAa,MAAI,EAC3DzS,KAAK4S,MAAMH,GAAa,MAAI,GAI5B6W,EAAY,GACmB,MAA7BtpB,KAAKqnB,UAAUiC,KACjBtpB,KAAKqnB,UAAUiC,GAAa,IAG9BtpB,KAAKqnB,UAAUiC,GAAW7W,GAAQ,CAChCe,MAAO6V,EACP5V,IAAK6V,IAIHtpB,KAAK4S,MAAMH,GAAW,IAAI,IAC5BzS,KAAKqnB,UAAUrnB,KAAK4S,MAAMH,GAAW,KAAGA,GAAW,IAAI,EACvDzS,KAAK4S,MAAMH,GAAW,IAAI,GAI9BzS,KAAK4S,MAAMH,GAAQ,CACjBe,MAAO6V,EACP5V,IAAK6V,GAIOtpB,KAAKqnB,UACbrnB,KAAKqnB,UAAUr4B,GAAGyjB,IAEe,GAAjCzS,KAAKqnB,UAAUr4B,GAAGyjB,GAAMe,OACO,GAA/BxT,KAAKqnB,UAAUr4B,GAAGyjB,GAAMgB,aAGjBzT,KAAKqnB,UAAUr4B,GAAGyjB,GAEqB,IAA1C/iB,OAAO65B,KAAKvpB,KAAKqnB,UAAUr4B,IAAIkC,eAC1B8O,KAAKqnB,UAAUr4B,IAK9B,MAAO0F,GACPugB,QAAQvgB,MAAMA,KAYR,YAAAozB,qBAAV,SAA+BtoB,EAAiBgqB,EAAcC,GAA9D,WACiC,MAA3BzpB,KAAKqnB,UAAU7nB,EAAKjC,MAIxB7N,OAAO65B,KAAKvpB,KAAKqnB,UAAU7nB,EAAKjC,KAAK4G,SAAQ,SAAAnV,GAC3C,IAAI06B,EAASt4B,SAASpC,GAEtB,IAAe,IADD,EAAKm4B,WAAWthB,QAAQ6jB,GACtC,CAGA,IAAIjX,EAAO,EAAKyU,aAAawC,GAC7B,GAAIjX,EAAKvU,MAAO,CACd,IAAIkS,EAASqC,EAAKvU,MAAMiS,cAAc5d,EAClC8d,EAASoC,EAAKvU,MAAMiS,cAAc3d,EAClC+d,EAAOkC,EAAKvU,MAAMoS,YAAY/d,EAC9Bie,EAAOiC,EAAKvU,MAAMoS,YAAY9d,EAqBlC,GAnBIgN,EAAKjC,IAAM,EAAK8pB,UAAU7nB,EAAKjC,IAAImsB,GAAe,QACpDtZ,EAASoZ,EAAGj3B,EAAIiN,EAAK9M,MAAQ,EAC7B2d,EAASmZ,EAAGh3B,EAAIgN,EAAK7M,OAAS,GAG5B6M,EAAKjC,IAAM,EAAK8pB,UAAU7nB,EAAKjC,IAAImsB,GAAa,MAClDnZ,EAAOiZ,EAAGj3B,EAAIiN,EAAK9M,MAAQ,EAC3B8d,EAAOgZ,EAAGh3B,EAAIgN,EAAK7M,OAAS,GAI9B,EAAKg3B,cAAc,SACdlX,EAAKvU,OAAK,CACbkS,OAAQA,EACRC,OAAQA,EACRE,KAAMA,EACNC,KAAMA,KAGJiZ,EAC8B,YAC9B,KACA,SAACG,GACC,EAAKlY,sBAAsBnS,KAAK,CAC9BC,KAAMoqB,EAAQnX,KACdtC,cAAe,CACb5d,EAAGq3B,EAAQxZ,OACX5d,EAAGo3B,EAAQvZ,QAEbC,YAAa,CACX/d,EAAGq3B,EAAQrZ,KACX/d,EAAGo3B,EAAQpZ,UAOnBqZ,CAA0B,CACxBpX,KAAMA,EACNrC,OAAQA,EACRC,OAAQA,EACRE,KAAMA,EACNC,KAAMA,SAOdxQ,KAAKmpB,eAAe3pB,EAAKjC,GAAIisB,EAAGj3B,EAAIiN,EAAK9M,MAAQ,EAAG82B,EAAGh3B,EAAIgN,EAAK7M,OAAS,KAyC3E,sBAAW,uBAAQ,C,IAAnB,sBAEE,OAAOqN,KAAKmnB,WACT2C,KAAI,SAAAvsB,GAAM,SAAK2pB,aAAa3pB,MAC5BoK,QAAO,SAAAuT,GAAK,OAAK,MAALA,M,gCAOV,YAAAgO,WAAP,SAAkB1pB,EAAiB+hB,QAAA,IAAAA,MAAA,MACjC,IACE,IAAMwI,EA7oBZ,SAA0Bz3B,GACxB,IAAMkL,EAAO,YAAWlL,EAAKkL,KAAM,MACnC,GAAY,MAARA,EAAc,MAAM,IAAI5K,UAAU,sBAEtC,IAAMwN,EAAO,YAAgB9N,GAE7B,OAAQkL,GACN,KAAK,EACH,OAAO,IAAI,EAAYyO,EAAwB3Z,GAAO8N,GACxD,KAAK,EACH,OAAO,IAAI4pB,GAAA,EAAY,aAAwB13B,GAAO8N,GACxD,KAAK,EACL,KAAK,EACL,KAAK,EACL,KAAK,EACH,OAAO,IAAI,GAAYka,GAAwBhoB,GAAO8N,GACxD,KAAK,EACL,KAAK,EACL,KAAK,GACL,KAAK,GACH,OAAO,IAAI,GAAWigB,GAAuB/tB,GAAO8N,GACtD,KAAK,EACH,OAAO,IAAI,GAAM+Z,EAAkB7nB,GAAO8N,GAC5C,KAAK,EACH,OAAO,IAAI,EAAKuM,EAAiBra,GAAO8N,GAC1C,KAAK,GACH,OAAO,IAAI,GAAQqjB,GAAoBnxB,GAAO8N,GAChD,KAAK,GACH,OAAO,IAAI,EAAM+U,EAAkB7iB,GAAO8N,GAC5C,KAAK,GACH,OAAO,IAAI,EAAIyZ,EAAgBvnB,GAAO8N,GACxC,KAAK,GACH,OAAO,IAAI,EAAK8P,EAAiB5d,GAAO8N,GAC1C,KAAK,GACH,OAAO,IAAI6pB,GAAA,EAAc,aAA0B33B,GAAO8N,GAC5D,KAAK,GACH,OAAO,IAAI8pB,GAAA,EAAW,aAAuB53B,GAAO8N,GACtD,KAAK,GACH,OAAO,IAAI,GAAUmjB,GAAsBjxB,GAAO8N,GACpD,KAAK,GACH,OAAO,IAAI,EAAMuV,EAAkBrjB,GAAO8N,GAC5C,KAAK,GACH,OAAO,IAAI,EAAWyM,EAAuBva,GAAO8N,GACtD,KAAK,GACH,OAAO,IAAI,EAAYuT,EAAwBrhB,GAAO8N,GACxD,KAAK,GACH,OAAO,IAAI,GAASwjB,GAAqBtxB,GAAO8N,GAClD,KAAK,GACH,OAAO,IAAI+pB,GAAA,EAAW,aAAuB73B,GAAO8N,GACtD,QACE,MAAM,IAAIxN,UAAU,mBA2lBCw3B,CAAiB5qB,GAyBtC,OAvBA+hB,EAAQ2F,aAAa6C,EAAa7rB,MAAMX,IAAMwsB,EAC9CxI,EAAQ4F,WAAWriB,KAAKilB,EAAa7rB,MAAMX,IAE3CwsB,EAAa7kB,SAASqc,EAAQ6G,qBAC9B2B,EAAa5kB,mBAAmBoc,EAAQ+G,+BACxCyB,EAAaplB,QAAQ4c,EAAQ+F,oBAC7ByC,EAAahlB,WAAWwc,EAAQgG,uBAG5BwC,aAAwB,GAC1BA,EAAarW,uBACX6N,EAAQyG,mCAEVhoB,KAAKioB,YAAY8B,KAEjBA,EAAanxB,QAAQ2oB,EAAQiG,uBAC7BuC,EAAa/kB,mBAAmBuc,EAAQwG,+BACxCgC,EAAa7tB,UAAUqlB,EAAQ2G,yBAC/B6B,EAAa9kB,iBAAiBsc,EAAQ4G,kCAIxC5G,EAAQmH,aAAanZ,OAAOwa,EAAa1rB,YAClC0rB,EACP,MAAOr1B,GACPugB,QAAQvgB,MAAM,gCAAiCA,EAAM21B,WASlD,YAAAC,eAAP,SAAsBrD,GAAtB,WAEQsD,EAAUtD,EACb6C,KAAI,SAAAtqB,GAAQ,OAAAA,EAAKjC,IAAM,QACvBoK,QAAO,SAAApK,GAAM,OAAM,MAANA,KAEGyC,KAAKmnB,WAAWxf,QAAO,SAAApK,GAAM,OAAAgtB,EAAQ1kB,QAAQtI,GAAM,KAE3D4G,SAAQ,SAAA5G,GACY,MAAzB,EAAK2pB,aAAa3pB,KACpB,EAAK2pB,aAAa3pB,GAAIT,gBACf,EAAKoqB,aAAa3pB,OAI7ByC,KAAKmnB,WAAaoD,EAGlBtD,EAAM9iB,SAAQ,SAAA3E,GACZ,GAAIA,EAAKjC,GACP,GAAkC,MAA9B,EAAK2pB,aAAa1nB,EAAKjC,IAEzB,EAAK2rB,WAAW1pB,QAGhB,IACE,EAAK0nB,aAAa1nB,EAAKjC,IAAIW,MAAQ8oB,GAAYxnB,GAC/C,MAAO9K,GACPugB,QAAQvgB,MAAM,6BAA8BA,EAAM21B,aAO1DrqB,KAAKmpB,kBAOA,YAAAQ,cAAP,SAAqBnqB,GAEnB,IACEQ,KAAKknB,aAAa1nB,EAAKjC,IAAIW,MAAQ,MAC9B8oB,GAAYxnB,IAEjB,MAAO9K,GACPugB,QAAQvgB,MAAM,0BAA2BA,EAAM21B,SAIjDrqB,KAAKmpB,kBAOP,sBAAW,oBAAK,C,IAAhB,WACE,OAAO,MAAKnpB,KAAK2oB,S,IASnB,SAAiBhmB,GACf,IAAME,EAAY7C,KAAK9B,MAEvB8B,KAAK2oB,OAAShmB,EAKd3C,KAAK+C,OAAOF,I,gCAOP,YAAAE,OAAP,SAAcF,QAAA,IAAAA,MAAA,MACRA,GACEA,EAAU+lB,gBAAkB5oB,KAAK9B,MAAM0qB,gBACzC5oB,KAAK0oB,aAAantB,MAAM+Q,gBACO,OAA7BtM,KAAK9B,MAAM0qB,cACP,OAAO5oB,KAAK9B,MAAM0qB,cAAa,IAC/B,IAE0B,MAA9B5oB,KAAK9B,MAAMiV,iBACTtQ,EAAUsQ,kBAAoBnT,KAAK9B,MAAMiV,kBAC3CnT,KAAK0oB,aAAantB,MAAM4X,gBAAkBnT,KAAK9B,MAAMiV,iBAErDnT,KAAKH,YAAYgD,EAAW7C,KAAK9B,QACnC8B,KAAKU,cAAcV,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,UAG9CqN,KAAK9B,MAAM0qB,gBACb5oB,KAAK0oB,aAAantB,MAAM+Q,gBACO,OAA7BtM,KAAK9B,MAAM0qB,cACP,OAAO5oB,KAAK9B,MAAM0qB,cAAa,IAC/B,IAEJ5oB,KAAK9B,MAAMiV,kBACbnT,KAAK0oB,aAAantB,MAAM4X,gBAAkBnT,KAAK9B,MAAMiV,iBACvDnT,KAAKU,cAAcV,KAAK9B,MAAMxL,MAAOsN,KAAK9B,MAAMvL,UAW7C,YAAAkN,YAAP,SAAmBF,EAAgBC,GACjC,OACED,EAASjN,QAAUkN,EAAQlN,OAASiN,EAAShN,SAAWiN,EAAQjN,QAS7D,YAAA+N,cAAP,SAAqBhO,EAAeC,GAClCqN,KAAK0oB,aAAantB,MAAM7I,MAAWA,EAAK,KACxCsN,KAAK0oB,aAAantB,MAAM5I,OAAYA,EAAM,MAQrC,YAAAmN,OAAP,SAAcpN,EAAeC,GAC3BqN,KAAK9B,MAAQ,SACR8B,KAAK9B,OAAK,CACbxL,MAAK,EACLC,OAAM,KAOH,YAAAmK,OAAP,WACEkD,KAAKhB,YAAYmF,SAAQ,SAAA7U,GAAK,OAAAA,EAAE+U,aAChCrE,KAAKuoB,SAASpkB,SAAQ,SAAA7J,GAAK,OAAAA,EAAEwC,YAC7BkD,KAAKknB,aAAe,GACpBlnB,KAAKmnB,WAAa,GAElBnnB,KAAKqoB,iBAELroB,KAAK0oB,aAAartB,oBAAoB,QAAS2E,KAAKwoB,sBAEpDxoB,KAAK0oB,aAAalmB,UAAY,IASzB,YAAA2mB,eAAP,SAAsB1B,EAAiBl1B,EAAYC,GAAnD,WAEEwN,KAAKqoB,iBAELroB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpB,GAA4B,OAAxBA,EAAKtB,MAAML,SAAmB,CAChC,IAAM,EAAS,EAAKqpB,aAAa1nB,EAAKtB,MAAML,UACtC2sB,EAAQ,EAAKtD,aAAa1nB,EAAKtB,MAAMX,IAEvC,GAAUitB,IACE1oB,MAAV2lB,EACEjoB,EAAKtB,MAAML,UAAY4pB,EAEzB,EAAKgD,gBAAgB,EAAQD,EAAOj4B,EAAGC,GAC9BgN,EAAKtB,MAAMX,IAAMkqB,EAE1B,EAAKgD,gBAAgB,EAAQD,OAAO1oB,OAAWA,EAAWvP,EAAGC,GAE7D,EAAKi4B,gBAAgB,EAAQD,GAI/B,EAAKC,gBAAgB,EAAQD,SAW/B,YAAAnC,eAAR,SAAuBZ,GACrB,GAAc,MAAVA,EACF,IAAK,IAAIl3B,KAAOyP,KAAKonB,UAAW,CAC9B,IAAMsD,EAAMn6B,EAAI6jB,MAAM,KAChBvW,EAAWrJ,OAAOpD,SAASs5B,EAAI,IAC/B7C,EAAUrzB,OAAOpD,SAASs5B,EAAI,IAEhCjD,IAAW5pB,GAAY4pB,IAAWI,IACpC7nB,KAAKonB,UAAU72B,GAAKuM,gBACbkD,KAAKonB,UAAU72B,SAI1B,IAAK,IAAIA,KAAOyP,KAAKonB,UACnBpnB,KAAKonB,UAAU72B,GAAKuM,gBACbkD,KAAKonB,UAAU72B,IAWpB,YAAAo6B,gBAAR,SAAwB9sB,EAAkBgqB,GACxC,IAAM/gB,EAAgBjJ,EAAQ,IAAIgqB,EAClC,OAAO7nB,KAAKonB,UAAUtgB,IAAe,MAI/B,YAAA4gB,iBAAR,SACED,GAMA,IAAMmD,EAAgB,GAEtB,IAAK,IAAIr6B,KAAOyP,KAAKonB,UAAW,CAC9B,IAAMsD,EAAMn6B,EAAI6jB,MAAM,KAChBvW,EAAWrJ,OAAOpD,SAASs5B,EAAI,IAC/B7C,EAAUrzB,OAAOpD,SAASs5B,EAAI,IAEhCjD,IAAW5pB,GAAY4pB,IAAWI,GACpC+C,EAAc9lB,KAAK,CACjBjH,SAAQ,EACRgqB,QAAO,EACPpV,KAAMzS,KAAKonB,UAAU72B,KAK3B,OAAOq6B,GASD,YAAAhD,gBAAR,SACErjB,EACA5L,GAEA,IAAIpG,EAAIgS,EAAShS,EAAIoG,EAAQ0F,WAAWwsB,YAAc,EAClDr4B,EAAI+R,EAAS/R,EAAImG,EAAQ0F,WAAWysB,aAAe,EACvD,QACiC,IAAxBnyB,EAAQuF,MAAMT,OACG,KAAxB9E,EAAQuF,MAAMT,OACU,OAAxB9E,EAAQuF,MAAMT,MAEd,OAAQ9E,EAAQuF,MAAMb,eACpB,IAAK,KACH7K,EACE+R,EAAS/R,GACRmG,EAAQ0F,WAAWysB,aAClBnyB,EAAQ2F,gBAAgBwsB,cACxB,EACJ,MACF,IAAK,OACHt4B,EACE+R,EAAS/R,GACRmG,EAAQ0F,WAAWysB,aAClBnyB,EAAQ2F,gBAAgBwsB,cACxB,EACJ,MACF,IAAK,QACHv4B,EACEgS,EAAShS,GACRoG,EAAQ0F,WAAWwsB,YAClBlyB,EAAQ2F,gBAAgBusB,aACxB,EACJ,MACF,IAAK,OACHt4B,EACEgS,EAAShS,GACRoG,EAAQ0F,WAAWwsB,YAClBlyB,EAAQ2F,gBAAgBusB,aACxB,EAIV,MAAO,CAAEt4B,EAAC,EAAEC,EAAC,IASP,YAAAi4B,gBAAR,SACEvyB,EACAsyB,EACAO,EACAC,EACAC,EACAC,GAEA,IAAMpkB,EAAgB5O,EAAOgG,MAAMX,GAAE,IAAIitB,EAAMtsB,MAAMX,GACnB,MAA9ByC,KAAKonB,UAAUtgB,IACjB9G,KAAKonB,UAAUtgB,GAAYhK,SAIzB,MAA2BkD,KAAK4nB,gBAAgB1vB,EAAOgG,MAAOhG,GAAzDkY,EAAM,IAAKC,EAAM,IACtB,EAAuBrQ,KAAK4nB,gBAAgB4C,EAAMtsB,MAAOssB,GAApDja,EAAI,IAAKC,EAAI,IAGP,MAAXua,IACF3a,EAAS2a,GAGI,MAAXC,IACF3a,EAAS2a,GAGG,MAAVC,IACF1a,EAAO0a,GAGK,MAAVC,IACF1a,EAAO0a,GAIT,IAAMzY,EAAO,IAAI,EACfvC,EAAiB,CACf3S,GAAI,EACJC,KAAM,GACN4S,OAAM,EACNC,OAAM,EACNE,KAAI,EACJC,KAAI,EACJ9d,MAAO,EACPC,OAAQ,EACR8d,UAAWzQ,KAAK9B,MAAM4qB,kBACtBrgB,MAAO,YAAiB+hB,EAAMtsB,MAAMF,YAAa,UAEnD,YAAgB,CACd1J,WAAY,IAAIC,QAUpB,OANAyL,KAAKonB,UAAUtgB,GAAc2L,EAG7BA,EAAKpU,WAAW9C,MAAM4vB,OAAS,IAC/BnrB,KAAK0oB,aAAanZ,OAAOkD,EAAKpU,YAEvBoU,GAOF,YAAA2Y,YAAP,SAAmBxmB,GAMjB,IAAMR,EAAapE,KAAKxB,kBAAkBqG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAinB,eAAP,SAAsBzmB,GAMpB,IAAMR,EAAapE,KAAKvB,qBAAqBoG,GAAGD,GAGhD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAknB,YAAP,SAAmB1mB,GAMjB,IAAMR,EAAapE,KAAKtB,kBAAkBmG,GAAGD,GAG7C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAmnB,YAAP,SAAmB3mB,GAMjB,IAAMR,EAAapE,KAAK0R,sBAAsB7M,GAAGD,GAGjD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAonB,cAAP,SAAqB5mB,GAMnB,IAAMR,EAAapE,KAAKpB,oBAAoBiG,GAAGD,GAG/C,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAOF,YAAAqnB,uBAAP,SACE7mB,GAOA,IAAMR,EAAapE,KAAKjB,6BAA6B8F,GAAGD,GAGxD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAMF,YAAAsnB,eAAP,WACE1rB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpBA,EAAKY,KAAO,SAAKZ,EAAKY,MAAI,CAAExL,UAAU,OAExCoL,KAAK0oB,aAAaxnB,UAAUC,IAAI,eAM3B,YAAAwqB,gBAAP,WACE3rB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpBA,EAAKY,KAAO,SAAKZ,EAAKY,MAAI,CAAExL,UAAU,OAExCoL,KAAK0oB,aAAaxnB,UAAUpE,OAAO,eAM9B,YAAA8uB,sBAAP,WACE5rB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpBA,EAAKY,KAAO,SAAKZ,EAAKY,MAAI,CAAEvL,iBAAiB,OAE/CmL,KAAK0oB,aAAaxnB,UAAUC,IAAI,kBAChCnB,KAAK0oB,aAAaxnB,UAAUpE,OAAO,eAM9B,YAAA+uB,uBAAP,WACE7rB,KAAKuoB,SAASpkB,SAAQ,SAAA3E,GACpBA,EAAKY,KAAO,SAAKZ,EAAKY,MAAI,CAAEvL,iBAAiB,OAE/CmL,KAAK0oB,aAAaxnB,UAAUpE,OAAO,kBACnCkD,KAAK0oB,aAAaxnB,UAAUC,IAAI,eAQ3B,YAAAE,WAAP,SAAkBomB,EAAgBqE,GAAlC,gBAAkC,IAAAA,OAAA,GAC5BA,EACF9rB,KAAKmnB,WAAWhjB,SAAQ,SAAA4nB,GACtB,IAAM3rB,EAAO,EAAK8mB,aAAa6E,GAAe3rB,KAE1C2rB,IAAkBtE,GAAUrnB,EAAKjL,WACnC,EAAK+xB,aAAa6E,GAAe3qB,eACxB2qB,IAAkBtE,GAAWrnB,EAAKjL,YAC3C,EAAK+xB,aAAa6E,GAAe1qB,gBAG5BrB,KAAKknB,aAAaO,IAC3BznB,KAAKknB,aAAaO,GAAQpmB,cAQvB,YAAAD,aAAP,SAAoBqmB,GACdznB,KAAKknB,aAAaO,KACPznB,KAAKknB,aAAaO,GAAQrnB,KAE9BjL,YACP6K,KAAKknB,aAAaO,GAAQrmB,iBAQzB,YAAAqnB,cAAP,sBACEzoB,KAAKmnB,WAAWhjB,SAAQ,SAAAsjB,GAClB,EAAKP,aAAaO,IACpB,EAAKP,aAAaO,GAAQrmB,mBAyClB,EAAA4qB,oBAAd,SAAkCxsB,GAChC,IAAIvI,EACJ,OAAQuI,EAAKtB,MAAMV,MACjB,KAAK,EACHvG,EAAU,YAAE,gBAAe,MAAOuI,EAAqBtB,MAAMgO,SAC7D,MACF,KAAK,EACHjV,EAAO,YAAE,gBACT,MACF,KAAK,GACHA,EAAO,YAAE,SACT,MACF,KAAK,GACHA,EAAO,YAAE,cACT,MACF,KAAK,GACHA,EAAO,YAAE,uBACT,MACF,KAAK,EACHA,EAAO,YAAE,kBACT,MACF,KAAK,GACHA,EAAO,YAAE,yBACT,MACF,KAAK,GACHA,EAAO,YAAE,oCACT,MACF,KAAK,EACHA,EAAO,YAAE,gBACT,MACF,KAAK,EACHA,EAAO,YAAE,SACT,MACF,KAAK,GACHA,EAAO,YAAE,SACT,MACF,KAAK,GACHA,EAAO,YAAE,eACT,MACF,KAAK,EACHA,EAAU,YAAE,QAAO,MAAOuI,EAActB,MAAMgO,SAC9C,MACF,KAAK,GACHjV,EAAO,YAAE,YACT,MACF,KAAK,GACHA,EAAO,YAAE,cACT,MACF,QACEA,EAAO,YAAE,QAIb,IAAMg1B,EAA4BzsB,EAAKtB,MAavC,OAX0C,MAAxC+tB,EAA0B74B,YACc,MAAxC64B,EAA0Bn5B,WAE1BmE,GAAQ,KAAK,YACXg1B,EAA0B74B,WAC1B,IACD,MAAM,YAAU64B,EAA0Bn5B,WAAY,IAAG,IACT,MAAxCm5B,EAA0B74B,aACnC6D,GAAQ,KAAK,YAAUg1B,EAA0B74B,WAAY,IAAG,KAG3D6D,GArGK,EAAAgwB,QAAK,OACjB,GAAyB,EACzB,MAAyB+C,GAAA,EACzB,MAAyB,GACzB,MAA6B,GAC7B,MAA6B,GAC7B,MAA6B,GAC7B,MAA2B,GAC3B,MAA8B,GAC9B,OAAkC,GAClC,OAA2C,GAC3C,MAAkB,GAClB,MAAiB,EACjB,OAAoB,GACpB,OAAuB,EACvB,OAAqB,EACrB,OAAsB,EACtB,OAA2BC,GAAA,EAC3B,OAAwBC,GAAA,EACxB,OAAuB,GACvB,OAAkB,EAClB,OAAwB,EACxB,OAAyB,EACzB,OAAqB,GACrB,OAAwBC,GAAA,E,IA+E5B,EApqCA,GC3MA,cAUE,WAAmB+B,GARX,KAAAC,YAA2B,CAAEC,OAAQ,cACrC,KAAAC,QAA2B,UAGlB,KAAAC,yBAA2B,IAAI3a,EAAA,EAE/B,KAAA3S,YAA4B,GAG3CgB,KAAKksB,cAAgBA,EAqDzB,OA9CE,sBAAW,qBAAM,C,IASjB,WACE,OAAOlsB,KAAKqsB,S,IAVd,SAAkBvhB,GAChB9K,KAAKqsB,QAAUvhB,EACf9K,KAAKssB,yBAAyB/sB,KAAKuL,I,gCAc9B,YAAA5K,KAAP,sBACEF,KAAKmsB,YAAcnsB,KAAKksB,eAAc,WACpC,EAAKphB,OAAS,cAEhB9K,KAAK8K,OAAS,WAMT,YAAAshB,OAAP,WACEpsB,KAAKmsB,YAAYC,SACjBpsB,KAAK8K,OAAS,aAOT,YAAAyhB,eAAP,SAAsB3nB,GAMpB,IAAMR,EAAapE,KAAKssB,yBAAyBznB,GAAGD,GAGpD,OAFA5E,KAAKhB,YAAY8F,KAAKV,GAEfA,GAEX,EAhEA,GAsGA,I,GAAA,wBACU,KAAAooB,MAA6C,GAuDvD,OA7CS,YAAArrB,IAAP,SACE2F,EACAolB,EACA1hB,QAAA,IAAAA,MAAA,GAEIxK,KAAKwsB,MAAM1lB,IAAiD,YAAlC9G,KAAKwsB,MAAM1lB,GAAYgE,QACnD9K,KAAKwsB,MAAM1lB,GAAYslB,SAGzB,IAAMK,EACJjiB,EAAS,EA/Cf,SAAuBkiB,EAAiBliB,GACtC,OAAO,IAAI,IAAU,WACnB,IAAImiB,EAAqB,KAYzB,OAVAD,EAAKH,gBAAe,SAAAzhB,GACH,aAAXA,IACF6hB,EAAM92B,OAAOkC,YAAW,WACtB20B,EAAKxsB,SACJsK,OAIPkiB,EAAKxsB,OAEE,CACLksB,OAAQ,WACFO,GAAK70B,aAAa60B,GACtBD,EAAKN,cA+BHQ,CAAc,IAAI,GAAUV,GAAgB1hB,GAC5C,IAAI,GAAU0hB,GAIpB,OAFAlsB,KAAKwsB,MAAM1lB,GAAc2lB,EAElBzsB,KAAKwsB,MAAM1lB,IAQb,YAAA5G,KAAP,SAAY4G,IAER9G,KAAKwsB,MAAM1lB,IACwB,YAAlC9G,KAAKwsB,MAAM1lB,GAAYgE,QACY,cAAlC9K,KAAKwsB,MAAM1lB,GAAYgE,QACW,aAAlC9K,KAAKwsB,MAAM1lB,GAAYgE,QAEzB9K,KAAKwsB,MAAM1lB,GAAY5G,QASpB,YAAAksB,OAAP,SAActlB,GACR9G,KAAKwsB,MAAM1lB,IAAiD,YAAlC9G,KAAKwsB,MAAM1lB,GAAYgE,QACnD9K,KAAKwsB,MAAM1lB,GAAYslB,UAG7B,EAxDA,GCrGCv2B,OAAeg3B,cAAgB,GAI/Bh3B,OAAeg3B,cAAcC,KAAOA,EAIpCj3B,OAAek3B,iBAAmB","file":"vc.main.min.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 15);\n","import {\n AnyObject,\n Position,\n Size,\n WithAgentProps,\n WithModuleProps,\n LinkedVisualConsoleProps,\n LinkedVisualConsolePropsStatus,\n UnknownObject,\n ItemMeta\n} from \"./types\";\n\nimport helpTipIcon from \"./help-tip.png\";\nimport fontAwesomeIcon from \"./FontAwesomeIcon\";\nimport { faPencilAlt, faListAlt } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./autocomplete.css\";\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseIntOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (typeof value === \"string\" && value.length > 0 && !isNaN(parseInt(value)))\n return parseInt(value);\n else return defaultValue;\n}\n\n/**\n * Return a number or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid number.\n * @param defaultValue Default value to use if we cannot extract a valid number.\n * @return A valid number or the default value.\n */\nexport function parseFloatOr(value: unknown, defaultValue: T): number | T {\n if (typeof value === \"number\") return value;\n if (\n typeof value === \"string\" &&\n value.length > 0 &&\n !isNaN(parseFloat(value))\n )\n return parseFloat(value);\n else return defaultValue;\n}\n\n/**\n * Check if a string exists and it's not empty.\n * @param value Value to check.\n * @return The check result.\n */\nexport function stringIsEmpty(value?: string | null): boolean {\n return value == null || value.length === 0;\n}\n\n/**\n * Return a not empty string or a default value from a raw value.\n * @param value Raw value from which we will try to extract a non empty string.\n * @param defaultValue Default value to use if we cannot extract a non empty string.\n * @return A non empty string or the default value.\n */\nexport function notEmptyStringOr(\n value: unknown,\n defaultValue: T\n): string | T {\n return typeof value === \"string\" && value.length > 0 ? value : defaultValue;\n}\n\n/**\n * Return a boolean from a raw value.\n * @param value Raw value from which we will try to extract the boolean.\n * @return A valid boolean value. false by default.\n */\nexport function parseBoolean(value: unknown): boolean {\n if (typeof value === \"boolean\") return value;\n else if (typeof value === \"number\") return value > 0;\n else if (typeof value === \"string\") return value === \"1\" || value === \"true\";\n else return false;\n}\n\n/**\n * Return a valid date or a default value from a raw value.\n * @param value Raw value from which we will try to extract a valid date.\n * @param defaultValue Default value to use if we cannot extract a valid date.\n * @return A valid date or the default value.\n */\nexport function parseDateOr(value: unknown, defaultValue: T): Date | T {\n if (value instanceof Date) return value;\n else if (typeof value === \"number\") return new Date(value * 1000);\n else if (\n typeof value === \"string\" &&\n !Number.isNaN(new Date(value).getTime())\n )\n return new Date(value);\n else return defaultValue;\n}\n\n/**\n * Pad the current string with another string (multiple times, if needed)\n * until the resulting string reaches the given length.\n * The padding is applied from the start (left) of the current string.\n * @param value Text that needs to be padded.\n * @param length Length of the returned text.\n * @param pad Text to add.\n * @return Padded text.\n */\nexport function leftPad(\n value: string | number,\n length: number,\n pad: string | number = \" \"\n): string {\n if (typeof value === \"number\") value = `${value}`;\n if (typeof pad === \"number\") pad = `${pad}`;\n\n const diffLength = length - value.length;\n if (diffLength === 0) return value;\n if (diffLength < 0) return value.substr(Math.abs(diffLength));\n\n if (diffLength === pad.length) return `${pad}${value}`;\n if (diffLength < pad.length) return `${pad.substring(0, diffLength)}${value}`;\n\n const repeatTimes = Math.floor(diffLength / pad.length);\n const restLength = diffLength - pad.length * repeatTimes;\n\n let newPad = \"\";\n for (let i = 0; i < repeatTimes; i++) newPad += pad;\n\n if (restLength === 0) return `${newPad}${value}`;\n return `${newPad}${pad.substring(0, restLength)}${value}`;\n}\n\n/* Decoders */\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the position.\n */\nexport function positionPropsDecoder(data: AnyObject): Position {\n return {\n x: parseIntOr(data.x, 0),\n y: parseIntOr(data.y, 0)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the size.\n * @throws Will throw a TypeError if the width and height are not valid numbers.\n */\nexport function sizePropsDecoder(data: AnyObject): Size | never {\n if (\n data.width == null ||\n isNaN(parseInt(data.width)) ||\n data.height == null ||\n isNaN(parseInt(data.height))\n ) {\n throw new TypeError(\"invalid size.\");\n }\n\n return {\n width: parseInt(data.width),\n height: parseInt(data.height)\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the agent properties.\n */\nexport function agentPropsDecoder(data: AnyObject): WithAgentProps {\n const agentProps: WithAgentProps = {\n agentId: parseIntOr(data.agentId, null),\n agentName: notEmptyStringOr(data.agentName, null),\n agentAlias: notEmptyStringOr(data.agentAlias, null),\n agentDescription: notEmptyStringOr(data.agentDescription, null),\n agentAddress: notEmptyStringOr(data.agentAddress, null),\n agentDisabled: parseBoolean(data.agentDisabled)\n };\n\n return data.metaconsoleId != null\n ? {\n metaconsoleId: data.metaconsoleId,\n ...agentProps // Object spread: http://es6-features.org/#SpreadOperator\n }\n : agentProps;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the module and agent properties.\n */\nexport function modulePropsDecoder(data: AnyObject): WithModuleProps {\n return {\n moduleId: parseIntOr(data.moduleId, null),\n moduleName: notEmptyStringOr(data.moduleName, null),\n moduleDescription: notEmptyStringOr(data.moduleDescription, null),\n moduleDisabled: parseBoolean(data.moduleDisabled),\n ...agentPropsDecoder(data) // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the linked visual console properties.\n * @throws Will throw a TypeError if the status calculation properties are invalid.\n */\nexport function linkedVCPropsDecoder(\n data: AnyObject\n): LinkedVisualConsoleProps | never {\n let linkedLayoutStatusProps: LinkedVisualConsolePropsStatus = {\n linkedLayoutStatusType: \"default\"\n };\n switch (data.linkedLayoutStatusType) {\n case \"weight\": {\n const weight = parseIntOr(data.linkedLayoutStatusTypeWeight, null);\n if (weight == null)\n throw new TypeError(\"invalid status calculation properties.\");\n\n if (data.linkedLayoutStatusTypeWeight)\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"weight\",\n linkedLayoutStatusTypeWeight: weight\n };\n break;\n }\n case \"service\": {\n const warningThreshold = parseIntOr(\n data.linkedLayoutStatusTypeWarningThreshold,\n null\n );\n const criticalThreshold = parseIntOr(\n data.linkedLayoutStatusTypeCriticalThreshold,\n null\n );\n if (warningThreshold == null || criticalThreshold == null) {\n throw new TypeError(\"invalid status calculation properties.\");\n }\n\n linkedLayoutStatusProps = {\n linkedLayoutStatusType: \"service\",\n linkedLayoutStatusTypeWarningThreshold: warningThreshold,\n linkedLayoutStatusTypeCriticalThreshold: criticalThreshold\n };\n break;\n }\n }\n\n return {\n linkedLayoutId: parseIntOr(data.linkedLayoutId, null),\n linkedLayoutNodeId: parseIntOr(data.linkedLayoutNodeId, null),\n ...linkedLayoutStatusProps // Object spread: http://es6-features.org/#SpreadOperator\n };\n}\n\n/**\n * Build a valid typed object from a raw object.\n * @param data Raw object.\n * @return An object representing the item's meta properties.\n */\nexport function itemMetaDecoder(data: UnknownObject): ItemMeta | never {\n const receivedAt = parseDateOr(data.receivedAt, null);\n if (receivedAt === null) throw new TypeError(\"invalid meta structure\");\n\n let error = null;\n if (data.error instanceof Error) error = data.error;\n else if (typeof data.error === \"string\") error = new Error(data.error);\n\n return {\n receivedAt,\n error,\n editMode: parseBoolean(data.editMode),\n maintenanceMode: parseBoolean(data.maintenanceMode),\n isFromCache: parseBoolean(data.isFromCache),\n isFetching: false,\n isUpdating: false,\n isBeingMoved: false,\n isBeingResized: false,\n isSelected: false,\n lineMode: false\n };\n}\n\n/**\n * To get a CSS rule with the most used prefixes.\n * @param ruleName Name of the CSS rule.\n * @param ruleValue Value of the CSS rule.\n * @return An array of rules with the prefixes applied.\n */\nexport function prefixedCssRules(\n ruleName: string,\n ruleValue: string\n): string[] {\n const rule = `${ruleName}: ${ruleValue};`;\n return [\n `-webkit-${rule}`,\n `-moz-${rule}`,\n `-ms-${rule}`,\n `-o-${rule}`,\n `${rule}`\n ];\n}\n\n/**\n * Decode a base64 string.\n * @param input Data encoded using base64.\n * @return Decoded data.\n */\nexport function decodeBase64(input: string): string {\n return decodeURIComponent(escape(window.atob(input)));\n}\n\n/**\n * Generate a date representation with the format 'd/m/Y'.\n * @param initialDate Date to be used instead of a generated one.\n * @param locale Locale to use if localization is required and available.\n * @example 24/02/2020.\n * @return Date representation.\n */\nexport function humanDate(date: Date, locale: string | null = null): string {\n if (locale && Intl && Intl.DateTimeFormat) {\n // Format using the user locale.\n const options: Intl.DateTimeFormatOptions = {\n day: \"2-digit\",\n month: \"2-digit\",\n year: \"numeric\"\n };\n return Intl.DateTimeFormat(locale, options).format(date);\n } else {\n // Use getDate, getDay returns the week day.\n const day = leftPad(date.getDate(), 2, 0);\n // The getMonth function returns the month starting by 0.\n const month = leftPad(date.getMonth() + 1, 2, 0);\n const year = leftPad(date.getFullYear(), 4, 0);\n\n // Format: 'd/m/Y'.\n return `${day}/${month}/${year}`;\n }\n}\n\n/**\n * Generate a time representation with the format 'hh:mm:ss'.\n * @param initialDate Date to be used instead of a generated one.\n * @example 01:34:09.\n * @return Time representation.\n */\nexport function humanTime(date: Date): string {\n const hours = leftPad(date.getHours(), 2, 0);\n const minutes = leftPad(date.getMinutes(), 2, 0);\n const seconds = leftPad(date.getSeconds(), 2, 0);\n\n return `${hours}:${minutes}:${seconds}`;\n}\n\ninterface Macro {\n macro: string | RegExp;\n value: string;\n}\n/**\n * Replace the macros of a text.\n * @param macros List of macros and their replacements.\n * @param text Text in which we need to replace the macros.\n */\nexport function replaceMacros(macros: Macro[], text: string): string {\n return macros.reduce(\n (acc, { macro, value }) => acc.replace(macro, value),\n text\n );\n}\n\n/**\n * Create a function which will limit the rate of execution of\n * the selected function to one time for the selected interval.\n * @param delay Interval.\n * @param fn Function to be executed at a limited rate.\n */\nexport function throttle(delay: number, fn: (...args: T[]) => R) {\n let last = 0;\n return (...args: T[]) => {\n const now = Date.now();\n if (now - last < delay) return;\n last = now;\n return fn(...args);\n };\n}\n\n/**\n * Create a function which will call the selected function only\n * after the interval time has passed after its last execution.\n * @param delay Interval.\n * @param fn Function to be executed after the last call.\n */\nexport function debounce(delay: number, fn: (...args: T[]) => void) {\n let timerRef: number | null = null;\n return (...args: T[]) => {\n if (timerRef !== null) window.clearTimeout(timerRef);\n timerRef = window.setTimeout(() => {\n fn(...args);\n timerRef = null;\n }, delay);\n };\n}\n\n/**\n * Retrieve the offset of an element relative to the page.\n * @param el Node used to calculate the offset.\n */\nfunction getOffset(el: HTMLElement | null, parent?: HTMLElement) {\n let x = 0;\n let y = 0;\n while (\n el &&\n !Number.isNaN(el.offsetLeft) &&\n !Number.isNaN(el.offsetTop) &&\n el !== parent\n ) {\n x += el.offsetLeft - el.scrollLeft;\n y += el.offsetTop - el.scrollTop;\n el = el.offsetParent as HTMLElement | null;\n }\n return { top: y, left: x };\n}\n\n/**\n * Add the grab & move functionality to a certain element inside it's container.\n *\n * @param element Element to move.\n * @param onMoved Function to execute when the element moves.\n * @param altContainer Alternative element to contain the moved element.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addMovementListener(\n element: HTMLElement,\n onMoved: (x: Position[\"x\"], y: Position[\"y\"]) => void,\n altContainer?: HTMLElement\n): Function {\n const container = altContainer || (element.parentElement as HTMLElement);\n\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastX: Position[\"x\"] = 0;\n let lastY: Position[\"y\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementBounds = element.getBoundingClientRect();\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth) * 2;\n\n // Will run onMoved 32ms after its last execution.\n const debouncedMovement = debounce(32, onMoved);\n // Will run onMoved one time max every 16ms.\n const throttledMovement = throttle(16, onMoved);\n\n const handleMove = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let x = 0;\n let y = 0;\n\n const mouseX = e.pageX;\n const mouseY = e.pageY;\n const mouseDeltaX = mouseX - lastMouseX;\n const mouseDeltaY = mouseY - lastMouseY;\n\n const minX = 0;\n const maxX = containerBounds.width - elementBounds.width + borderFix;\n const minY = 0;\n const maxY = containerBounds.height - elementBounds.height + borderFix;\n\n const outOfBoundsLeft =\n mouseX < containerLeft ||\n (lastX === 0 &&\n mouseDeltaX > 0 &&\n mouseX < containerLeft + mouseElementOffsetX);\n const outOfBoundsRight =\n mouseX > containerRight ||\n mouseDeltaX + lastX + elementBounds.width - borderFix >\n containerBounds.width ||\n (lastX === maxX &&\n mouseDeltaX < 0 &&\n mouseX > containerLeft + maxX + mouseElementOffsetX);\n const outOfBoundsTop =\n mouseY < containerTop ||\n (lastY === 0 &&\n mouseDeltaY > 0 &&\n mouseY < containerTop + mouseElementOffsetY);\n const outOfBoundsBottom =\n mouseY > containerBottom ||\n mouseDeltaY + lastY + elementBounds.height - borderFix >\n containerBounds.height ||\n (lastY === maxY &&\n mouseDeltaY < 0 &&\n mouseY > containerTop + maxY + mouseElementOffsetY);\n\n if (outOfBoundsLeft) x = minX;\n else if (outOfBoundsRight) x = maxX;\n else x = mouseDeltaX + lastX;\n\n if (outOfBoundsTop) y = minY;\n else if (outOfBoundsBottom) y = maxY;\n else y = mouseDeltaY + lastY;\n\n if (x < 0) x = minX;\n if (y < 0) y = minY;\n\n // Store the last mouse coordinates.\n lastMouseX = mouseX;\n lastMouseY = mouseY;\n\n if (x === lastX && y === lastY) return;\n\n // Run the movement events.\n throttledMovement(x, y);\n debouncedMovement(x, y);\n\n // Store the coordinates of the element.\n lastX = x;\n lastY = y;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastX = 0;\n lastY = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleMove);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n // Avoid starting the movement on right click.\n if (e.button === 2) return;\n\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Fix for Firefox browser.\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const elementOffset = getOffset(element, container);\n lastX = elementOffset.left;\n lastY = elementOffset.top;\n\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementBounds = element.getBoundingClientRect();\n borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n borderFix = Number.parseInt(borderWidth) * 2;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleMove);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n element.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n element.removeEventListener(\"mousedown\", handleStart);\n handleEnd();\n };\n}\n\n/**\n * Add the grab & resize functionality to a certain element.\n *\n * @param element Element to move.\n * @param onResized Function to execute when the element is resized.\n *\n * @return A function which will clean the event handlers when executed.\n */\nexport function addResizementListener(\n element: HTMLElement,\n onResized: (x: Position[\"x\"], y: Position[\"y\"]) => void\n): Function {\n const minWidth = 15;\n const minHeight = 15;\n\n const resizeDraggable = document.createElement(\"div\");\n resizeDraggable.className = \"resize-draggable\";\n element.appendChild(resizeDraggable);\n\n // Container of the resizable element.\n const container = element.parentElement as HTMLElement;\n // Store the initial draggable state.\n const isDraggable = element.draggable;\n // Init the coordinates.\n let lastWidth: Size[\"width\"] = 0;\n let lastHeight: Size[\"height\"] = 0;\n let lastMouseX: Position[\"x\"] = 0;\n let lastMouseY: Position[\"y\"] = 0;\n let mouseElementOffsetX: Position[\"x\"] = 0;\n let mouseElementOffsetY: Position[\"y\"] = 0;\n // Init the bounds.\n let containerBounds = container.getBoundingClientRect();\n let containerOffset = getOffset(container);\n let containerTop = containerOffset.top;\n let containerBottom = containerTop + containerBounds.height;\n let containerLeft = containerOffset.left;\n let containerRight = containerLeft + containerBounds.width;\n let elementOffset = getOffset(element);\n let elementTop = elementOffset.top;\n let elementLeft = elementOffset.left;\n let borderWidth = window.getComputedStyle(element).borderWidth || \"0\";\n let borderFix = Number.parseInt(borderWidth);\n\n // Will run onResized 32ms after its last execution.\n const debouncedResizement = debounce(32, onResized);\n // Will run onResized one time max every 16ms.\n const throttledResizement = throttle(16, onResized);\n\n const handleResize = (e: MouseEvent) => {\n // Calculate the new element coordinates.\n let width = lastWidth + (e.pageX - lastMouseX);\n let height = lastHeight + (e.pageY - lastMouseY);\n\n if (width === lastWidth && height === lastHeight) return;\n\n if (\n width < lastWidth &&\n e.pageX > elementLeft + (lastWidth - mouseElementOffsetX)\n )\n return;\n\n if (width < minWidth) {\n // Minimum value.\n width = minWidth;\n } else if (width + elementLeft - borderFix / 2 >= containerRight) {\n // Limit the size to the container.\n width = containerRight - elementLeft;\n }\n if (height < minHeight) {\n // Minimum value.\n height = minHeight;\n } else if (height + elementTop - borderFix / 2 >= containerBottom) {\n // Limit the size to the container.\n height = containerBottom - elementTop;\n }\n\n // Run the movement events.\n throttledResizement(width, height);\n debouncedResizement(width, height);\n\n // Store the coordinates of the element.\n lastWidth = width;\n lastHeight = height;\n // Store the last mouse coordinates.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n };\n const handleEnd = () => {\n // Reset the positions.\n lastWidth = 0;\n lastHeight = 0;\n lastMouseX = 0;\n lastMouseY = 0;\n mouseElementOffsetX = 0;\n mouseElementOffsetY = 0;\n // Remove the move event.\n document.removeEventListener(\"mousemove\", handleResize);\n // Clean itself.\n document.removeEventListener(\"mouseup\", handleEnd);\n // Reset the draggable property to its initial state.\n element.draggable = isDraggable;\n // Reset the body selection property to a default state.\n document.body.style.userSelect = \"auto\";\n };\n const handleStart = (e: MouseEvent) => {\n e.stopPropagation();\n\n // Disable the drag temporarily.\n element.draggable = false;\n\n // Store the difference between the cursor and\n // the initial coordinates of the element.\n const { width, height } = element.getBoundingClientRect();\n lastWidth = width;\n lastHeight = height;\n // Store the mouse position.\n lastMouseX = e.pageX;\n lastMouseY = e.pageY;\n // Store the relative position between the mouse and the element.\n mouseElementOffsetX = e.offsetX;\n mouseElementOffsetY = e.offsetY;\n\n // Initialize the bounds.\n containerBounds = container.getBoundingClientRect();\n containerOffset = getOffset(container);\n containerTop = containerOffset.top;\n containerBottom = containerTop + containerBounds.height;\n containerLeft = containerOffset.left;\n containerRight = containerLeft + containerBounds.width;\n elementOffset = getOffset(element);\n elementTop = elementOffset.top;\n elementLeft = elementOffset.left;\n\n // Listen to the mouse movement.\n document.addEventListener(\"mousemove\", handleResize);\n // Listen to the moment when the mouse click is not pressed anymore.\n document.addEventListener(\"mouseup\", handleEnd);\n // Limit the mouse selection of the body.\n document.body.style.userSelect = \"none\";\n };\n\n // Event to listen the init of the movement.\n resizeDraggable.addEventListener(\"mousedown\", handleStart);\n\n // Returns a function to clean the event listeners.\n return () => {\n resizeDraggable.remove();\n handleEnd();\n };\n}\n\n// TODO: Document and code\nexport function t(text: string): string {\n return text;\n}\n\nexport function helpTip(text: string): HTMLElement {\n const container = document.createElement(\"a\");\n container.className = \"tip\";\n const icon = document.createElement(\"img\");\n icon.src = helpTipIcon;\n icon.className = \"forced_title\";\n icon.setAttribute(\"alt\", text);\n icon.setAttribute(\"data-title\", text);\n icon.setAttribute(\"data-use_title_for_force_title\", \"1\");\n\n container.appendChild(icon);\n\n return container;\n}\n\ninterface PeriodSelectorOption {\n value: number;\n text: string;\n}\nexport function periodSelector(\n selectedValue: PeriodSelectorOption[\"value\"] | null,\n emptyOption: PeriodSelectorOption | null,\n options: PeriodSelectorOption[],\n onChange: (value: PeriodSelectorOption[\"value\"]) => void\n): HTMLElement {\n if (selectedValue === null) selectedValue = 0;\n const initialValue = emptyOption ? emptyOption.value : 0;\n let currentValue: number =\n selectedValue != null ? selectedValue : initialValue;\n // Main container.\n const container = document.createElement(\"div\");\n // Container for the period selector.\n const periodsContainer = document.createElement(\"div\");\n const selectPeriods = document.createElement(\"select\");\n const useManualPeriodsBtn = document.createElement(\"a\");\n // Container for the custom period input.\n const manualPeriodsContainer = document.createElement(\"div\");\n const inputTimeValue = document.createElement(\"input\");\n const unitsSelect = document.createElement(\"select\");\n const usePeriodsBtn = document.createElement(\"a\");\n // Units to multiply the custom period input.\n const unitOptions: { value: string; text: string }[] = [\n { value: \"1\", text: t(\"Seconds\").toLowerCase() },\n { value: \"60\", text: t(\"Minutes\").toLowerCase() },\n { value: \"3600\", text: t(\"Hours\").toLowerCase() },\n { value: \"86400\", text: t(\"Days\").toLowerCase() },\n { value: \"604800\", text: t(\"Weeks\").toLowerCase() },\n { value: `${86400 * 30}`, text: t(\"Months\").toLowerCase() },\n { value: `${86400 * 30 * 12}`, text: t(\"Years\").toLowerCase() }\n ];\n\n // Will be executed every time the value changes.\n const handleChange = (value: number) => {\n currentValue = value;\n onChange(currentValue);\n };\n // Will return the first period option smaller than the value.\n const findPeriodsOption = (value: number) =>\n options\n .sort((a, b) => (a.value < b.value ? 1 : -1))\n .find(optionVal => value >= optionVal.value);\n // Will return the first multiple of the value using the custom input multipliers.\n const findManualPeriodsOptionValue = (value: number) =>\n unitOptions\n .map(unitOption => Number.parseInt(unitOption.value))\n .sort((a, b) => (a < b ? 1 : -1))\n .find(optionVal => value % optionVal === 0);\n // Will find and set a valid option for the period selector.\n const setPeriodsValue = (value: number) => {\n let option = findPeriodsOption(value);\n selectPeriods.value = `${option ? option.value : initialValue}`;\n };\n // Will transform the value to show the perfect fit for the custom input period.\n const setManualPeriodsValue = (value: number) => {\n const optionVal = findManualPeriodsOptionValue(value);\n if (optionVal) {\n inputTimeValue.value = `${value / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${value}`;\n unitsSelect.value = \"1\";\n }\n };\n\n // Will modify the value to show the perfect fit for this element and show its container.\n const showPeriods = () => {\n let option = findPeriodsOption(currentValue);\n const newValue = option ? option.value : initialValue;\n selectPeriods.value = `${newValue}`;\n\n if (newValue !== currentValue) handleChange(newValue);\n\n container.replaceChild(periodsContainer, manualPeriodsContainer);\n };\n // Will modify the value to show the perfect fit for this element and show its container.\n const showManualPeriods = () => {\n const optionVal = findManualPeriodsOptionValue(currentValue);\n\n if (optionVal) {\n inputTimeValue.value = `${currentValue / optionVal}`;\n unitsSelect.value = `${optionVal}`;\n } else {\n inputTimeValue.value = `${currentValue}`;\n unitsSelect.value = \"1\";\n }\n\n container.replaceChild(manualPeriodsContainer, periodsContainer);\n };\n\n // Append the elements\n\n periodsContainer.appendChild(selectPeriods);\n periodsContainer.appendChild(useManualPeriodsBtn);\n\n manualPeriodsContainer.appendChild(inputTimeValue);\n manualPeriodsContainer.appendChild(unitsSelect);\n manualPeriodsContainer.appendChild(usePeriodsBtn);\n\n if (\n options.find(option => option.value === selectedValue) ||\n (emptyOption && emptyOption.value === selectedValue)\n ) {\n // Start with the custom periods select.\n container.appendChild(periodsContainer);\n } else {\n // Start with the manual time input\n container.appendChild(manualPeriodsContainer);\n }\n\n // Set and fill the elements.\n\n // Periods selector.\n\n selectPeriods.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, initialValue)\n )\n );\n if (emptyOption) {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${emptyOption.value}`;\n optionElem.text = emptyOption.text;\n selectPeriods.appendChild(optionElem);\n }\n options.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n selectPeriods.appendChild(optionElem);\n });\n\n setPeriodsValue(selectedValue);\n\n useManualPeriodsBtn.appendChild(\n fontAwesomeIcon(faPencilAlt, t(\"Show manual period input\"), {\n size: \"small\"\n })\n );\n useManualPeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showManualPeriods();\n });\n\n // Manual periods input.\n\n inputTimeValue.type = \"number\";\n inputTimeValue.min = \"0\";\n inputTimeValue.required = true;\n inputTimeValue.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr((e.target as HTMLSelectElement).value, 0) *\n parseIntOr(unitsSelect.value, 1)\n )\n );\n // Select for time units.\n unitsSelect.addEventListener(\"change\", (e: Event) =>\n handleChange(\n parseIntOr(inputTimeValue.value, 0) *\n parseIntOr((e.target as HTMLSelectElement).value, 1)\n )\n );\n unitOptions.forEach(option => {\n const optionElem = document.createElement(\"option\");\n optionElem.value = `${option.value}`;\n optionElem.text = option.text;\n unitsSelect.appendChild(optionElem);\n });\n\n setManualPeriodsValue(selectedValue);\n\n usePeriodsBtn.appendChild(\n fontAwesomeIcon(faListAlt, t(\"Show periods selector\"), { size: \"small\" })\n );\n usePeriodsBtn.addEventListener(\"click\", e => {\n e.preventDefault();\n showPeriods();\n });\n\n return container;\n}\n\n/**\n * Cuts the text if their length is greater than the selected max length\n * and applies the selected ellipse to the result text.\n * @param str Text to cut\n * @param max Maximum length after cutting the text\n * @param ellipse String to be added to the cutted text\n * @returns Full text or text cutted with the ellipse\n */\nexport function ellipsize(\n str: string,\n max: number = 140,\n ellipse: string = \"…\"\n): string {\n return str.trim().length > max ? str.substr(0, max).trim() + ellipse : str;\n}\n\n// TODO: Document\nexport function autocompleteInput(\n initialValue: string | null,\n onDataRequested: (value: string, done: (data: T[]) => void) => void,\n renderListElement: (data: T) => HTMLElement,\n onSelected: (data: T) => string\n): HTMLElement {\n const container = document.createElement(\"div\");\n container.classList.add(\"autocomplete\");\n\n const input = document.createElement(\"input\");\n input.type = \"text\";\n input.required = true;\n if (initialValue !== null) input.value = initialValue;\n\n const list = document.createElement(\"div\");\n list.classList.add(\"autocomplete-items\");\n\n const cleanList = () => {\n list.innerHTML = \"\";\n };\n\n input.addEventListener(\"keyup\", e => {\n const value = (e.target as HTMLInputElement).value;\n if (value) {\n onDataRequested(value, data => {\n cleanList();\n if (data instanceof Array) {\n data.forEach(item => {\n const listElement = renderListElement(item);\n listElement.addEventListener(\"click\", () => {\n input.value = onSelected(item);\n cleanList();\n });\n list.appendChild(listElement);\n });\n }\n });\n } else {\n cleanList();\n }\n });\n\n container.appendChild(input);\n container.appendChild(list);\n\n return container;\n}\n","import {\n Position,\n Size,\n AnyObject,\n WithModuleProps,\n ItemMeta,\n LinkedVisualConsoleProps,\n WithAgentProps\n} from \"./lib/types\";\nimport {\n sizePropsDecoder,\n positionPropsDecoder,\n parseIntOr,\n parseBoolean,\n notEmptyStringOr,\n replaceMacros,\n humanDate,\n humanTime,\n addMovementListener,\n debounce,\n addResizementListener,\n t\n} from \"./lib\";\nimport TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { FormContainer, InputGroup } from \"./Form\";\n\n// Enum: https://www.typescriptlang.org/docs/handbook/enums.html.\nexport const enum ItemType {\n STATIC_GRAPH = 0,\n MODULE_GRAPH = 1,\n SIMPLE_VALUE = 2,\n PERCENTILE_BAR = 3,\n LABEL = 4,\n ICON = 5,\n SIMPLE_VALUE_MAX = 6,\n SIMPLE_VALUE_MIN = 7,\n SIMPLE_VALUE_AVG = 8,\n PERCENTILE_BUBBLE = 9,\n SERVICE = 10,\n GROUP_ITEM = 11,\n BOX_ITEM = 12,\n LINE_ITEM = 13,\n AUTO_SLA_GRAPH = 14,\n CIRCULAR_PROGRESS_BAR = 15,\n CIRCULAR_INTERIOR_PROGRESS_BAR = 16,\n DONUT_GRAPH = 17,\n BARS_GRAPH = 18,\n CLOCK = 19,\n COLOR_CLOUD = 20,\n NETWORK_LINK = 21,\n ODOMETER = 22,\n BASIC_CHART = 23\n}\n\n// Base item properties. This interface should be extended by the item implementations.\nexport interface ItemProps extends Position, Size {\n readonly id: number;\n readonly type: ItemType;\n label: string | null;\n labelPosition: \"up\" | \"right\" | \"down\" | \"left\";\n isLinkEnabled: boolean;\n link: string | null;\n isOnTop: boolean;\n parentId: number | null;\n aclGroupId: number | null;\n cacheExpiration: number | null;\n colorStatus: string;\n cellId: number | null;\n}\n\nexport interface ItemClickEvent {\n item: VisualConsoleItem;\n nativeEvent: Event;\n}\n\n// FIXME: Fix type compatibility.\nexport interface ItemRemoveEvent {\n // data: Props;\n item: VisualConsoleItem;\n}\n\nexport interface ItemMovedEvent {\n item: VisualConsoleItem;\n prevPosition: Position;\n newPosition: Position;\n}\n\nexport interface ItemResizedEvent {\n item: VisualConsoleItem;\n prevSize: Size;\n newSize: Size;\n}\n\nexport interface ItemSelectionChangedEvent {\n selected: boolean;\n}\n\n/**\n * Extract a valid enum value from a raw label position value.\n * @param labelPosition Raw value.\n */\nconst parseLabelPosition = (\n labelPosition: unknown\n): ItemProps[\"labelPosition\"] => {\n switch (labelPosition) {\n case \"up\":\n case \"right\":\n case \"down\":\n case \"left\":\n return labelPosition;\n default:\n return \"down\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function itemBasePropsDecoder(data: AnyObject): ItemProps | never {\n if (data.id == null || isNaN(parseInt(data.id))) {\n throw new TypeError(\"invalid id.\");\n }\n if (data.type == null || isNaN(parseInt(data.type))) {\n throw new TypeError(\"invalid type.\");\n }\n\n return {\n id: parseInt(data.id),\n type: parseInt(data.type),\n label: notEmptyStringOr(data.label, null),\n labelPosition: parseLabelPosition(data.labelPosition),\n isLinkEnabled: parseBoolean(data.isLinkEnabled),\n link: notEmptyStringOr(data.link, null),\n isOnTop: parseBoolean(data.isOnTop),\n parentId: parseIntOr(data.parentId, null),\n aclGroupId: parseIntOr(data.aclGroupId, null),\n cacheExpiration: parseIntOr(data.cacheExpiration, null),\n colorStatus: notEmptyStringOr(data.colorStatus, \"#CCC\"),\n cellId: parseIntOr(data.cellId, null),\n ...sizePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...positionPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n//TODO: Document\nexport function titleItem(id: number): string {\n let title = \"\";\n switch (id) {\n case ItemType.STATIC_GRAPH:\n title = t(\"Static image\");\n break;\n case ItemType.MODULE_GRAPH:\n title = t(\"Module graph\");\n break;\n case ItemType.SIMPLE_VALUE:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.LABEL:\n title = t(\"Label\");\n break;\n case ItemType.ICON:\n title = t(\"Icon\");\n break;\n case ItemType.SIMPLE_VALUE_MAX:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_MIN:\n title = t(\"Simple value\");\n break;\n case ItemType.SIMPLE_VALUE_AVG:\n title = t(\"Simple value\");\n break;\n case ItemType.PERCENTILE_BUBBLE:\n title = t(\"Percentile item\");\n break;\n case ItemType.SERVICE:\n title = t(\"Service\");\n break;\n case ItemType.GROUP_ITEM:\n title = t(\"Group\");\n break;\n case ItemType.BOX_ITEM:\n title = t(\"Box\");\n break;\n case ItemType.LINE_ITEM:\n title = t(\"Line\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n title = t(\"Event history graph\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n title = t(\"Percentile item\");\n break;\n case ItemType.DONUT_GRAPH:\n title = t(\"Serialized pie graph\");\n break;\n case ItemType.BARS_GRAPH:\n title = t(\"Bars graph\");\n break;\n case ItemType.CLOCK:\n title = t(\"Clock\");\n break;\n case ItemType.COLOR_CLOUD:\n title = t(\"Color cloud\");\n break;\n case ItemType.NETWORK_LINK:\n title = t(\"Network link\");\n break;\n case ItemType.ODOMETER:\n title = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n title = t(\"Basic chart\");\n break;\n default:\n title = t(\"Item\");\n break;\n }\n\n return title;\n}\n\n/**\n * Base class of the visual console items. Should be extended to use its capabilities.\n */\nabstract class VisualConsoleItem {\n // Properties of the item.\n private itemProps: Props;\n // Metadata of the item.\n private _metadata: ItemMeta;\n // Reference to the DOM element which will contain the item.\n public elementRef: HTMLElement = document.createElement(\"div\");\n public labelElementRef: HTMLElement = document.createElement(\"div\");\n // Reference to the DOM element which will contain the view of the item which extends this class.\n protected childElementRef: HTMLElement = document.createElement(\"div\");\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for moved events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for stopped movement events.\n private readonly movementFinishedEventManager = new TypedEvent<\n ItemMovedEvent\n >();\n // Event manager for resized events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for resize finished events.\n private readonly resizeFinishedEventManager = new TypedEvent<\n ItemResizedEvent\n >();\n // Event manager for remove events.\n private readonly removeEventManager = new TypedEvent();\n // Event manager for selection change events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = false;\n\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = {\n x: x,\n y: y\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Save the new position to the props.\n this.move(x, y);\n // Emit the movement event.\n this.movementFinishedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n private removeMovement: Function | null = null;\n\n /**\n * Start the movement funtionality.\n * @param element Element to move inside its container.\n */\n private initMovementListener(element: HTMLElement): void {\n // Avoid line movement as 'block' force using circles.\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n\n this.removeMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n const prevPosition = {\n x: this.props.x,\n y: this.props.y\n };\n const newPosition = { x, y };\n\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n if (!this.positionChanged(prevPosition, newPosition)) return;\n\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingMoved = true;\n // Move the DOM element.\n this.moveElement(x, y);\n // Emit the movement event.\n this.movedEventManager.emit({\n item: this,\n prevPosition: prevPosition,\n newPosition: newPosition\n });\n // Run the save function.\n this.debouncedMovementSave(x, y);\n }\n );\n }\n /**\n * Stop the movement fun\n */\n private stopMovementListener(): void {\n if (this.removeMovement) {\n this.removeMovement();\n this.removeMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n private debouncedResizementSave = debounce(\n 500, // ms.\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = false;\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Save the new position to the props.\n this.resize(width, height);\n\n // Emit the resize finished event.\n this.resizeFinishedEventManager.emit({\n item: this,\n prevSize: prevSize,\n newSize: newSize\n });\n }\n );\n // This property will store the function\n // to clean the resizement listener.\n private removeResizement: Function | null = null;\n\n /**\n * Start the resizement funtionality.\n * @param element Element to move inside its container.\n */\n protected initResizementListener(element: HTMLElement): void {\n if (\n this.props.type == ItemType.LINE_ITEM ||\n this.props.type == ItemType.NETWORK_LINK\n ) {\n return;\n }\n this.removeResizement = addResizementListener(\n element,\n (width: Size[\"width\"], height: Size[\"height\"]) => {\n // Update the metadata information.\n // Don't use the .meta property cause we don't need DOM updates.\n this._metadata.isBeingResized = true;\n\n // The label it's outside the item's size, so we need\n // to get rid of its size to get the real size of the\n // item's content.\n if (this.props.label && this.props.label.length > 0) {\n const {\n width: labelWidth,\n height: labelHeight\n } = this.labelElementRef.getBoundingClientRect();\n\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n height -= labelHeight;\n break;\n case \"left\":\n case \"right\":\n width -= labelWidth;\n break;\n }\n }\n\n const prevSize = {\n width: this.props.width,\n height: this.props.height\n };\n const newSize = { width, height };\n\n if (!this.sizeChanged(prevSize, newSize)) return;\n\n // Move the DOM element.\n this.resizeElement(width, height);\n // Emit the resizement event.\n this.resizedEventManager.emit({\n item: this,\n prevSize,\n newSize\n });\n // Run the save function.\n this.debouncedResizementSave(width, height);\n }\n );\n }\n /**\n * Stop the resizement functionality.\n */\n private stopResizementListener(): void {\n if (this.removeResizement) {\n this.removeResizement();\n this.removeResizement = null;\n }\n }\n\n /**\n * To create a new element which will be inside the item box.\n * @return Item.\n */\n protected abstract createDomElement(): HTMLElement;\n\n public constructor(\n props: Props,\n metadata: ItemMeta,\n deferInit: boolean = false\n ) {\n this.itemProps = props;\n this._metadata = metadata;\n\n if (!deferInit) this.init();\n }\n\n /**\n * To create and append the DOM elements.\n */\n protected init(): void {\n /*\n * Get a HTMLElement which represents the container box\n * of the Visual Console item. This element will manage\n * all the common things like click events, show a border\n * when hovered, etc.\n */\n this.elementRef = this.createContainerDomElement();\n this.labelElementRef = this.createLabelDomElement();\n\n /*\n * Get a HTMLElement which represents the custom view\n * of the Visual Console item. This element will be\n * different depending on the item implementation.\n */\n this.childElementRef = this.createDomElement();\n\n // Insert the elements into the container.\n this.elementRef.appendChild(this.childElementRef);\n this.elementRef.appendChild(this.labelElementRef);\n\n // Resize element.\n this.resizeElement(this.itemProps.width, this.itemProps.height);\n // Set label position.\n this.changeLabelPosition(this.itemProps.labelPosition);\n }\n\n /**\n * To create a new box for the visual console item.\n * @return Item box.\n */\n private createContainerDomElement(): HTMLElement {\n let box;\n if (this.props.isLinkEnabled) {\n box = document.createElement(\"a\") as HTMLAnchorElement;\n\n if (this.props.link) {\n box.href = this.props.link;\n } else {\n box.className = \"textDecorationNone\";\n }\n } else {\n box = document.createElement(\"div\") as HTMLDivElement;\n box.className = \"textDecorationNone\";\n }\n\n box.classList.add(\"visual-console-item\");\n if (this.props.isOnTop) {\n box.classList.add(\"is-on-top\");\n }\n box.style.left = `${this.props.x}px`;\n box.style.top = `${this.props.y}px`;\n\n // Init the click listeners.\n box.addEventListener(\"dblclick\", e => {\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.unSelectItem();\n this.selectItem();\n\n this.dblClickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n box.addEventListener(\"click\", e => {\n if (this.meta.editMode) {\n e.preventDefault();\n e.stopPropagation();\n } else {\n // Add loading click item.\n if (this.itemProps.isLinkEnabled && this.itemProps.link != null) {\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n let path = e.composedPath();\n let containerId = \"visual-console-container\";\n for (let index = 0; index < path.length; index++) {\n const element = path[index] as HTMLInputElement;\n if (\n element.id != undefined &&\n element.id != null &&\n element.id != \"\"\n ) {\n if (element.id.includes(containerId) === true) {\n containerId = element.id;\n break;\n }\n }\n }\n\n const containerVC = document.getElementById(containerId);\n if (containerVC != null) {\n containerVC.classList.add(\"is-updating\");\n containerVC.appendChild(divParent);\n }\n }\n }\n\n if (!this.meta.isBeingMoved && !this.meta.isBeingResized) {\n this.clickEventManager.emit({\n item: this,\n nativeEvent: e\n });\n }\n });\n\n // Metadata state.\n if (this.meta.maintenanceMode) {\n box.classList.add(\"is-maintenance\");\n }\n if (this.meta.editMode) {\n box.classList.add(\"is-editing\");\n }\n if (this.meta.isFetching) {\n box.classList.add(\"is-fetching\");\n }\n if (this.meta.isUpdating) {\n box.classList.add(\"is-updating\");\n }\n if (this.meta.isSelected) {\n box.classList.add(\"is-selected\");\n }\n\n return box;\n }\n\n /**\n * To create a new label for the visual console item.\n * @return Item label.\n */\n protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Add the label if it exists.\n const label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n // Ugly table we need to use to replicate the legacy style.\n const table = document.createElement(\"table\");\n const row = document.createElement(\"tr\");\n const emptyRow1 = document.createElement(\"tr\");\n const emptyRow2 = document.createElement(\"tr\");\n const cell = document.createElement(\"td\");\n\n cell.innerHTML = label;\n row.appendChild(cell);\n table.appendChild(emptyRow1);\n table.appendChild(row);\n table.appendChild(emptyRow2);\n table.style.textAlign = \"center\";\n\n // Change the table size depending on its position.\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n\n // element.innerHTML = this.props.label;\n element.appendChild(table);\n }\n\n return element;\n }\n\n /**\n * Return the label stored into the props with some macros replaced.\n */\n protected getLabelWithMacrosReplaced(): string {\n // We assert that the props may have some needed properties.\n const props = this.props as Partial;\n\n return replaceMacros(\n [\n {\n macro: \"_date_\",\n value: humanDate(new Date())\n },\n {\n macro: \"_time_\",\n value: humanTime(new Date())\n },\n {\n macro: \"_agent_\",\n value: props.agentAlias != null ? props.agentAlias : \"\"\n },\n {\n macro: \"_agentdescription_\",\n value: props.agentDescription != null ? props.agentDescription : \"\"\n },\n {\n macro: \"_address_\",\n value: props.agentAddress != null ? props.agentAddress : \"\"\n },\n {\n macro: \"_module_\",\n value: props.moduleName != null ? props.moduleName : \"\"\n },\n {\n macro: \"_moduledescription_\",\n value: props.moduleDescription != null ? props.moduleDescription : \"\"\n }\n ],\n this.props.label || \"\"\n );\n }\n\n /**\n * To update the content element.\n * @return Item.\n */\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): Props {\n return { ...this.itemProps }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: Props) {\n this.setProps(newProps);\n }\n\n /**\n * Clasic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n protected setProps(newProps: Props) {\n const prevProps = this.props;\n // Update the internal props.\n this.itemProps = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n if (this.shouldBeUpdated(prevProps, newProps))\n this.render(prevProps, this._metadata);\n }\n\n /**\n * Public accessor of the `meta` property.\n * @return Properties.\n */\n public get meta(): ItemMeta {\n return { ...this._metadata }; // Return a copy.\n }\n\n /**\n * Public setter of the `meta` property.\n * If the new meta are different enough than the\n * stored meta, a render would be fired.\n * @param newProps\n */\n public set meta(newMetadata: ItemMeta) {\n this.setMeta(newMetadata);\n }\n\n /**\n * Classic version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newProps\n */\n public setMeta(newMetadata: Partial): void {\n const prevMetadata = this._metadata;\n // Update the internal meta.\n this._metadata = {\n ...prevMetadata,\n ...newMetadata\n };\n\n if (\n typeof newMetadata.isSelected !== \"undefined\" &&\n prevMetadata.isSelected !== newMetadata.isSelected\n ) {\n this.selectionChangedEventManager.emit({\n selected: newMetadata.isSelected\n });\n }\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Check if we should re-render.\n // if (this.shouldBeUpdated(prevMetadata, newMetadata))\n this.render(this.itemProps, prevMetadata);\n }\n\n /**\n * To compare the previous and the new props and returns a boolean value\n * in case the difference is meaningfull enough to perform DOM changes.\n *\n * Here, the only comparision is done by reference.\n *\n * Override this function to perform a different comparision depending on the item needs.\n *\n * @param prevProps\n * @param newProps\n * @return Whether the difference is meaningful enough to perform DOM changes or not.\n */\n protected shouldBeUpdated(prevProps: Props, newProps: Props): boolean {\n return prevProps !== newProps;\n }\n\n /**\n * To recreate or update the HTMLElement which represents the item into the DOM.\n * @param prevProps If exists it will be used to only perform DOM updates instead of a full replace.\n */\n public render(\n prevProps: Props | null = null,\n prevMeta: ItemMeta | null = null\n ): void {\n this.updateDomElement(this.childElementRef);\n\n // Move box.\n if (!prevProps || this.positionChanged(prevProps, this.props)) {\n this.moveElement(this.props.x, this.props.y);\n }\n // Resize box.\n if (!prevProps || this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n }\n // Change label.\n const oldLabelHtml = this.labelElementRef.innerHTML;\n const newLabelHtml = this.createLabelDomElement().innerHTML;\n if (oldLabelHtml !== newLabelHtml) {\n this.labelElementRef.innerHTML = newLabelHtml;\n }\n // Change label position.\n if (!prevProps || prevProps.labelPosition !== this.props.labelPosition) {\n this.changeLabelPosition(this.props.labelPosition);\n }\n //Change z-index class is-on-top\n if (!prevProps || prevProps.isOnTop !== this.props.isOnTop) {\n if (this.props.isOnTop) {\n this.elementRef.classList.add(\"is-on-top\");\n } else {\n this.elementRef.classList.remove(\"is-on-top\");\n }\n }\n // Change link.\n if (prevProps && prevProps.isLinkEnabled !== this.props.isLinkEnabled) {\n const container = this.createContainerDomElement();\n // Add the children of the old element.\n container.innerHTML = this.elementRef.innerHTML;\n // Copy the attributes.\n const attrs = this.elementRef.attributes;\n for (let i = 0; i < attrs.length; i++) {\n if (attrs[i].nodeName !== \"id\") {\n let cloneIsNeeded = this.elementRef.getAttributeNode(\n attrs[i].nodeName\n );\n if (cloneIsNeeded !== null) {\n container.setAttributeNode(cloneIsNeeded.cloneNode());\n }\n }\n }\n // Replace the reference.\n if (this.elementRef.parentNode !== null) {\n this.elementRef.parentNode.replaceChild(container, this.elementRef);\n }\n\n // Changed the reference to the main element. It's ugly, but needed.\n this.elementRef = container;\n }\n\n if (\n prevProps &&\n this.props.isLinkEnabled &&\n prevProps.link !== this.props.link\n ) {\n if (this.props.link !== null) {\n this.elementRef.setAttribute(\"href\", this.props.link);\n }\n }\n\n // Change metadata related things.\n if (\n !prevMeta ||\n prevMeta.editMode !== this.meta.editMode ||\n prevMeta.maintenanceMode !== this.meta.maintenanceMode\n ) {\n if (this.meta.editMode && this.meta.maintenanceMode === false) {\n this.elementRef.classList.add(\"is-editing\");\n } else {\n this.elementRef.classList.remove(\"is-editing\");\n }\n }\n\n if (!prevMeta || prevMeta.isFetching !== this.meta.isFetching) {\n if (this.meta.isFetching) {\n this.elementRef.classList.add(\"is-fetching\");\n } else {\n this.elementRef.classList.remove(\"is-fetching\");\n }\n }\n\n if (!prevMeta || prevMeta.isUpdating !== this.meta.isUpdating) {\n if (this.meta.isUpdating) {\n this.elementRef.classList.add(\"is-updating\");\n\n const divParent = document.createElement(\"div\");\n divParent.className = \"div-visual-console-spinner\";\n const divSpinner = document.createElement(\"div\");\n divSpinner.className = \"visual-console-spinner\";\n divParent.appendChild(divSpinner);\n this.elementRef.appendChild(divParent);\n } else {\n this.elementRef.classList.remove(\"is-updating\");\n\n const div = this.elementRef.querySelector(\n \".div-visual-console-spinner\"\n );\n if (div !== null) {\n const parent = div.parentElement;\n if (parent !== null) {\n parent.removeChild(div);\n }\n }\n }\n }\n if (!prevMeta || prevMeta.isSelected !== this.meta.isSelected) {\n if (this.meta.isSelected) {\n this.elementRef.classList.add(\"is-selected\");\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n }\n }\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n // Call the remove event.\n this.removeEventManager.emit({ item: this });\n // Event listeners.\n this.disposables.forEach(disposable => {\n try {\n disposable.dispose();\n } catch (ignored) {} // eslint-disable-line no-empty\n });\n // VisualConsoleItem DOM element.\n this.elementRef.remove();\n }\n\n /**\n * Compare the previous and the new position and return\n * a boolean value in case the position changed.\n * @param prevPosition\n * @param newPosition\n * @return Whether the position changed or not.\n */\n protected positionChanged(\n prevPosition: Position,\n newPosition: Position\n ): boolean {\n return prevPosition.x !== newPosition.x || prevPosition.y !== newPosition.y;\n }\n\n /**\n * Move the label around the item content.\n * @param position Label position.\n */\n protected changeLabelPosition(position: Props[\"labelPosition\"]): void {\n switch (position) {\n case \"up\":\n this.elementRef.style.flexDirection = \"column-reverse\";\n break;\n case \"left\":\n this.elementRef.style.flexDirection = \"row-reverse\";\n break;\n case \"right\":\n this.elementRef.style.flexDirection = \"row\";\n break;\n case \"down\":\n default:\n this.elementRef.style.flexDirection = \"column\";\n break;\n }\n\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n // Change the table size depending on its position.\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n if (this.props.width > 0) {\n table.style.width = `${this.props.width}px`;\n table.style.height = \"\";\n }\n break;\n case \"left\":\n case \"right\":\n if (this.props.height > 0) {\n table.style.width = \"\";\n table.style.height = `${this.props.height}px`;\n }\n break;\n }\n }\n }\n\n /**\n * Move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n protected moveElement(x: number, y: number): void {\n this.elementRef.style.left = `${x}px`;\n this.elementRef.style.top = `${y}px`;\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n */\n public move(x: number, y: number): void {\n this.moveElement(x, y);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n x,\n y\n };\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n protected sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // The most valuable size is the content size.\n if (\n this.props.type != ItemType.LINE_ITEM &&\n this.props.type != ItemType.NETWORK_LINK\n ) {\n this.childElementRef.style.width = width > 0 ? `${width}px` : \"\";\n this.childElementRef.style.height = height > 0 ? `${height}px` : \"\";\n }\n\n if (this.props.label && this.props.label.length > 0) {\n // Ugly table to show the label as its legacy counterpart.\n const tables = this.labelElementRef.getElementsByTagName(\"table\");\n const table = tables.length > 0 ? tables.item(0) : null;\n\n if (table) {\n switch (this.props.labelPosition) {\n case \"up\":\n case \"down\":\n table.style.width = width > 0 ? `${width}px` : \"\";\n break;\n case \"left\":\n case \"right\":\n table.style.height = height > 0 ? `${height}px` : \"\";\n break;\n }\n }\n }\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.resizeElement(width, height);\n this.itemProps = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the movement stopped of visual console elements.\n * @param listener Function which is going to be executed when a linked console's movement is finished.\n */\n public onMovementFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movementFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the resizement finish of visual console elements.\n * @param listener Function which is going to be executed when a linked console is finished resizing.\n */\n public onResizeFinished(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizeFinishedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to the removal of the item.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onRemove(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.removeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * To add an event handler to item selection.\n * @param listener Function which is going to be executed when a item is removed.\n */\n public onSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: true\n };\n\n this.initMovementListener(this.elementRef);\n if (\n this.props.type !== ItemType.LINE_ITEM &&\n this.props.type !== ItemType.NETWORK_LINK\n ) {\n this.initResizementListener(this.elementRef);\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(): void {\n this.meta = {\n ...this.meta,\n isSelected: false\n };\n\n this.stopMovementListener();\n if (this.props.type !== ItemType.LINE_ITEM) {\n this.stopResizementListener();\n }\n }\n\n // TODO: Document\n public getFormContainer(): FormContainer {\n return VisualConsoleItem.getFormContainer(this.props);\n }\n\n // TODO: Document\n public static getFormContainer(props: Partial): FormContainer {\n const title: string = props.type ? titleItem(props.type) : t(\"Item\");\n return new FormContainer(title, [], []);\n }\n}\n\nexport default VisualConsoleItem;\n","export interface Listener {\n (event: T): void;\n}\n\nexport interface Disposable {\n dispose: () => void;\n}\n\n/** passes through events as they happen. You will not get events from before you start listening */\nexport default class TypedEvent {\n private listeners: Listener[] = [];\n private listenersOncer: Listener[] = [];\n\n public on = (listener: Listener): Disposable => {\n this.listeners.push(listener);\n return {\n dispose: () => this.off(listener)\n };\n };\n\n public once = (listener: Listener): void => {\n this.listenersOncer.push(listener);\n };\n\n public off = (listener: Listener): void => {\n const callbackIndex = this.listeners.indexOf(listener);\n if (callbackIndex > -1) this.listeners.splice(callbackIndex, 1);\n };\n\n public emit = (event: T): void => {\n /** Update any general listeners */\n this.listeners.forEach(listener => listener(event));\n\n /** Clear the `once` queue */\n this.listenersOncer.forEach(listener => listener(event));\n this.listenersOncer = [];\n };\n\n public pipe = (te: TypedEvent): Disposable => this.on(e => te.emit(e));\n}\n","import TypedEvent, { Listener, Disposable } from \"./lib/TypedEvent\";\nimport { AnyObject, UnknownObject } from \"./lib/types\";\nimport { t } from \"./lib\";\n\ninterface InputGroupDataRequestedEvent {\n identifier: string;\n params: UnknownObject;\n done: (error: Error | null, data?: unknown) => void;\n}\n\n// TODO: Document\nexport abstract class InputGroup {\n private _name: string = \"\";\n private _element?: HTMLElement;\n public readonly initialData: Data;\n protected currentData: Partial = {};\n // Event manager for data requests.\n private readonly dataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n\n public constructor(name: string, initialData: Data) {\n this.name = name;\n this.initialData = initialData;\n }\n\n public set name(name: string) {\n if (name.length === 0) throw new RangeError(\"empty name\");\n this._name = name;\n }\n\n public get name(): string {\n return this._name;\n }\n\n public get data(): Partial {\n return { ...this.currentData };\n }\n\n public get element(): HTMLElement {\n if (this._element == null) {\n const element = document.createElement(\"div\");\n element.className = `input-group input-group-${this.name}`;\n\n const content = this.createContent();\n\n if (content instanceof Array) {\n content.forEach(element.appendChild);\n } else {\n element.appendChild(content);\n }\n\n this._element = element;\n }\n\n return this._element;\n }\n\n public reset(): void {\n this.currentData = {};\n }\n\n protected updateData(data: Partial): void {\n this.currentData = {\n ...this.currentData,\n ...data\n };\n // TODO: Update item.\n }\n\n protected requestData(\n identifier: string,\n params: UnknownObject,\n done: (error: Error | null, data?: unknown) => void\n ): void {\n this.dataRequestedEventManager.emit({ identifier, params, done });\n }\n\n public onDataRequested(\n listener: Listener\n ): Disposable {\n return this.dataRequestedEventManager.on(listener);\n }\n\n protected abstract createContent(): HTMLElement | HTMLElement[];\n\n // public abstract get isValid(): boolean;\n}\n\nexport interface SubmitFormEvent {\n nativeEvent: Event;\n data: AnyObject;\n}\n\n// TODO: Document\nexport class FormContainer {\n public readonly title: string;\n private inputGroupsByName: { [name: string]: InputGroup } = {};\n private enabledInputGroupNames: string[] = [];\n // Event manager for submit events.\n private readonly submitEventManager = new TypedEvent();\n // Event manager for item data requests.\n private readonly itemDataRequestedEventManager = new TypedEvent<\n InputGroupDataRequestedEvent\n >();\n private handleItemDataRequested = this.itemDataRequestedEventManager.emit;\n\n public constructor(\n title: string,\n inputGroups: InputGroup[] = [],\n enabledInputGroups: string[] = []\n ) {\n this.title = title;\n\n if (inputGroups.length > 0) {\n this.inputGroupsByName = inputGroups.reduce((prevVal, inputGroup) => {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n prevVal[inputGroup.name] = inputGroup;\n return prevVal;\n }, this.inputGroupsByName);\n }\n\n if (enabledInputGroups.length > 0) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n ...enabledInputGroups.filter(\n name => this.inputGroupsByName[name] != null\n )\n ];\n }\n }\n\n public getInputGroup(inputGroupName: string): InputGroup | null {\n return this.inputGroupsByName[inputGroupName] || null;\n }\n\n public addInputGroup(\n inputGroup: InputGroup,\n index: number | null = null\n ): FormContainer {\n // Add event handlers.\n inputGroup.onDataRequested(this.handleItemDataRequested);\n this.inputGroupsByName[inputGroup.name] = inputGroup;\n\n // Remove the current stored name if exist.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroup.name\n );\n\n if (index !== null) {\n if (index <= 0) {\n this.enabledInputGroupNames = [\n inputGroup.name,\n ...this.enabledInputGroupNames\n ];\n } else if (index >= this.enabledInputGroupNames.length) {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n } else {\n this.enabledInputGroupNames = [\n // part of the array before the specified index\n ...this.enabledInputGroupNames.slice(0, index),\n // inserted item\n inputGroup.name,\n // part of the array after the specified index\n ...this.enabledInputGroupNames.slice(index)\n ];\n }\n } else {\n this.enabledInputGroupNames = [\n ...this.enabledInputGroupNames,\n inputGroup.name\n ];\n }\n\n return this;\n }\n\n public removeInputGroup(inputGroupName: string): FormContainer {\n delete this.inputGroupsByName[inputGroupName];\n // Remove the current stored name.\n this.enabledInputGroupNames = this.enabledInputGroupNames.filter(\n name => name !== inputGroupName\n );\n\n return this;\n }\n\n public getFormElement(\n type: \"creation\" | \"update\" = \"update\"\n ): HTMLFormElement {\n const form = document.createElement(\"form\");\n form.id = \"visual-console-item-edition\";\n form.className = \"visual-console-item-edition\";\n form.addEventListener(\"submit\", e => {\n e.preventDefault();\n this.submitEventManager.emit({\n nativeEvent: e,\n data: this.enabledInputGroupNames.reduce((data, name) => {\n if (this.inputGroupsByName[name]) {\n data = {\n ...data,\n ...this.inputGroupsByName[name].data\n };\n }\n return data;\n }, {})\n });\n });\n\n const formContent = document.createElement(\"div\");\n formContent.className = \"input-groups\";\n\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n formContent.appendChild(this.inputGroupsByName[name].element);\n }\n });\n\n form.appendChild(formContent);\n\n return form;\n }\n\n public reset(): void {\n this.enabledInputGroupNames.forEach(name => {\n if (this.inputGroupsByName[name]) {\n this.inputGroupsByName[name].reset();\n }\n });\n }\n\n // public get isValid(): boolean {\n // for (let i = 0; i < this.enabledInputGroupNames.length; i++) {\n // const inputGroup = this.inputGroupsByName[this.enabledInputGroupNames[i]];\n // if (inputGroup && !inputGroup.isValid) return false;\n // }\n\n // return true;\n // }\n\n public onSubmit(listener: Listener): Disposable {\n return this.submitEventManager.on(listener);\n }\n\n public onInputGroupDataRequested(\n listener: Listener\n ): Disposable {\n return this.itemDataRequestedEventManager.on(listener);\n }\n}\n","import { IconDefinition } from \"@fortawesome/free-solid-svg-icons\";\nimport \"./FontAwesomeIcon.styles.css\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\ninterface ExtraProps {\n size?: \"small\" | \"medium\" | \"large\";\n color?: string;\n spin?: boolean;\n pulse?: boolean;\n}\n\nconst fontAwesomeIcon = (\n iconDefinition: IconDefinition,\n title: string,\n { size, color, spin, pulse }: ExtraProps = {}\n): HTMLElement => {\n const container = document.createElement(\"figure\");\n container.title = title;\n container.className = `fa fa-${iconDefinition.iconName}`;\n\n if (size) container.classList.add(`fa-${size}`);\n\n if (spin) container.classList.add(\"fa-spin\");\n else if (pulse) container.classList.add(\"fa-pulse\");\n\n const icon = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n icon.setAttribute(\n \"viewBox\",\n `0 0 ${iconDefinition.icon[0]} ${iconDefinition.icon[1]}`\n );\n if (color) icon.setAttribute(\"fill\", color);\n\n // Path\n const path = document.createElementNS(svgNS, \"path\");\n const pathData =\n typeof iconDefinition.icon[4] === \"string\"\n ? iconDefinition.icon[4]\n : iconDefinition.icon[4][0];\n path.setAttribute(\"d\", pathData);\n\n icon.appendChild(path);\n container.appendChild(icon);\n\n return container;\n};\n\nexport default fontAwesomeIcon;\n","/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\nvar prefix = \"fas\";\nvar faAd = {\n prefix: 'fas',\n iconName: 'ad',\n icon: [512, 512, [], \"f641\", \"M157.52 272h36.96L176 218.78 157.52 272zM352 256c-13.23 0-24 10.77-24 24s10.77 24 24 24 24-10.77 24-24-10.77-24-24-24zM464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM250.58 352h-16.94c-6.81 0-12.88-4.32-15.12-10.75L211.15 320h-70.29l-7.38 21.25A16 16 0 0 1 118.36 352h-16.94c-11.01 0-18.73-10.85-15.12-21.25L140 176.12A23.995 23.995 0 0 1 162.67 160h26.66A23.99 23.99 0 0 1 212 176.13l53.69 154.62c3.61 10.4-4.11 21.25-15.11 21.25zM424 336c0 8.84-7.16 16-16 16h-16c-4.85 0-9.04-2.27-11.98-5.68-8.62 3.66-18.09 5.68-28.02 5.68-39.7 0-72-32.3-72-72s32.3-72 72-72c8.46 0 16.46 1.73 24 4.42V176c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v160z\"]\n};\nvar faAddressBook = {\n prefix: 'fas',\n iconName: 'address-book',\n icon: [448, 512, [], \"f2b9\", \"M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faAddressCard = {\n prefix: 'fas',\n iconName: 'address-card',\n icon: [576, 512, [], \"f2bb\", \"M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-352 96c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H86.4C74 384 64 375.4 64 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2zM512 312c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-64c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faAdjust = {\n prefix: 'fas',\n iconName: 'adjust',\n icon: [512, 512, [], \"f042\", \"M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z\"]\n};\nvar faAirFreshener = {\n prefix: 'fas',\n iconName: 'air-freshener',\n icon: [512, 512, [], \"f5d0\", \"M224 160H96C43 160 0 203 0 256V480C0 497.625 14.375 512 32 512H288C305.625 512 320 497.625 320 480V256C320 203 277 160 224 160ZM160 416C115.875 416 80 380.125 80 336S115.875 256 160 256S240 291.875 240 336S204.125 416 160 416ZM224 32C224 14.375 209.625 0 192 0H128C110.375 0 96 14.375 96 32V128H224V32ZM381.781 51.578C383 50.969 384 49.359 384 48C384 46.625 383 45.031 381.781 44.422L352 32L339.562 2.219C338.969 1 337.375 0 336 0S333.031 1 332.406 2.219L320 32L290.219 44.422C289 45.031 288 46.625 288 48C288 49.359 289 50.969 290.219 51.578L320 64L332.406 93.781C333.031 95 334.625 96 336 96S338.969 95 339.562 93.781L352 64L381.781 51.578ZM448 64L460.406 93.781C461.031 95 462.625 96 464 96S466.969 95 467.562 93.781L480 64L509.781 51.578C511 50.969 512 49.359 512 48C512 46.625 511 45.031 509.781 44.422L480 32L467.562 2.219C466.969 1 465.375 0 464 0S461.031 1 460.406 2.219L448 32L418.219 44.422C417 45.031 416 46.625 416 48C416 49.359 417 50.969 418.219 51.578L448 64ZM480 224L467.562 194.219C466.969 193 465.375 192 464 192S461.031 193 460.406 194.219L448 224L418.219 236.422C417 237.031 416 238.625 416 240C416 241.359 417 242.969 418.219 243.578L448 256L460.406 285.781C461.031 287 462.625 288 464 288S466.969 287 467.562 285.781L480 256L509.781 243.578C511 242.969 512 241.359 512 240C512 238.625 511 237.031 509.781 236.422L480 224ZM445.781 147.578C447 146.969 448 145.359 448 144C448 142.625 447 141.031 445.781 140.422L416 128L403.562 98.219C402.969 97 401.375 96 400 96S397.031 97 396.406 98.219L384 128L354.219 140.422C353 141.031 352 142.625 352 144C352 145.359 353 146.969 354.219 147.578L384 160L396.406 189.781C397.031 191 398.625 192 400 192S402.969 191 403.562 189.781L416 160L445.781 147.578Z\"]\n};\nvar faAlignCenter = {\n prefix: 'fas',\n iconName: 'align-center',\n icon: [448, 512, [], \"f037\", \"M432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM108.1 96h231.81A12.09 12.09 0 0 0 352 83.9V44.09A12.09 12.09 0 0 0 339.91 32H108.1A12.09 12.09 0 0 0 96 44.09V83.9A12.1 12.1 0 0 0 108.1 96zm231.81 256A12.09 12.09 0 0 0 352 339.9v-39.81A12.09 12.09 0 0 0 339.91 288H108.1A12.09 12.09 0 0 0 96 300.09v39.81a12.1 12.1 0 0 0 12.1 12.1z\"]\n};\nvar faAlignJustify = {\n prefix: 'fas',\n iconName: 'align-justify',\n icon: [448, 512, [], \"f039\", \"M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faAlignLeft = {\n prefix: 'fas',\n iconName: 'align-left',\n icon: [448, 512, [], \"f036\", \"M12.83 352h262.34A12.82 12.82 0 0 0 288 339.17v-38.34A12.82 12.82 0 0 0 275.17 288H12.83A12.82 12.82 0 0 0 0 300.83v38.34A12.82 12.82 0 0 0 12.83 352zm0-256h262.34A12.82 12.82 0 0 0 288 83.17V44.83A12.82 12.82 0 0 0 275.17 32H12.83A12.82 12.82 0 0 0 0 44.83v38.34A12.82 12.82 0 0 0 12.83 96zM432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faAlignRight = {\n prefix: 'fas',\n iconName: 'align-right',\n icon: [448, 512, [], \"f038\", \"M16 224h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm416 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-384H172.83A12.82 12.82 0 0 0 160 44.83v38.34A12.82 12.82 0 0 0 172.83 96h262.34A12.82 12.82 0 0 0 448 83.17V44.83A12.82 12.82 0 0 0 435.17 32zm0 256H172.83A12.82 12.82 0 0 0 160 300.83v38.34A12.82 12.82 0 0 0 172.83 352h262.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288z\"]\n};\nvar faAllergies = {\n prefix: 'fas',\n iconName: 'allergies',\n icon: [448, 512, [], \"f461\", \"M416 112c-17.6 0-32 14.4-32 32v72c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v152c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V32c0-17.6-14.4-32-32-32s-32 14.4-32 32v184c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V64c0-17.6-14.4-32-32-32S96 46.4 96 64v241l-23.6-32.5c-13-17.9-38-21.8-55.9-8.8s-21.8 38-8.8 55.9l125.6 172.7c9 12.4 23.5 19.8 38.8 19.8h197.6c22.3 0 41.6-15.3 46.7-37l26.5-112.7c3.2-13.7 4.9-28.3 5.1-42.3V144c0-17.6-14.4-32-32-32zM176 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm64 32c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32-128c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faAmbulance = {\n prefix: 'fas',\n iconName: 'ambulance',\n icon: [640, 512, [], \"f0f9\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faAmericanSignLanguageInterpreting = {\n prefix: 'fas',\n iconName: 'american-sign-language-interpreting',\n icon: [640, 512, [], \"f2a3\", \"M290.547 189.039c-20.295-10.149-44.147-11.199-64.739-3.89 42.606 0 71.208 20.475 85.578 50.576 8.576 17.899-5.148 38.071-23.617 38.071 18.429 0 32.211 20.136 23.617 38.071-14.725 30.846-46.123 50.854-80.298 50.854-.557 0-94.471-8.615-94.471-8.615l-66.406 33.347c-9.384 4.693-19.815.379-23.895-7.781L1.86 290.747c-4.167-8.615-1.111-18.897 6.946-23.621l58.072-33.069L108 159.861c6.39-57.245 34.731-109.767 79.743-146.726 11.391-9.448 28.341-7.781 37.51 3.613 9.446 11.394 7.78 28.067-3.612 37.516-12.503 10.559-23.618 22.509-32.509 35.57 21.672-14.729 46.679-24.732 74.186-28.067 14.725-1.945 28.063 8.336 29.73 23.065 1.945 14.728-8.336 28.067-23.062 29.734-16.116 1.945-31.12 7.503-44.178 15.284 26.114-5.713 58.712-3.138 88.079 11.115 13.336 6.669 18.893 22.509 12.224 35.848-6.389 13.06-22.504 18.617-35.564 12.226zm-27.229 69.472c-6.112-12.505-18.338-20.286-32.231-20.286a35.46 35.46 0 0 0-35.565 35.57c0 21.428 17.808 35.57 35.565 35.57 13.893 0 26.119-7.781 32.231-20.286 4.446-9.449 13.614-15.006 23.339-15.284-9.725-.277-18.893-5.835-23.339-15.284zm374.821-37.237c4.168 8.615 1.111 18.897-6.946 23.621l-58.071 33.069L532 352.16c-6.39 57.245-34.731 109.767-79.743 146.726-10.932 9.112-27.799 8.144-37.51-3.613-9.446-11.394-7.78-28.067 3.613-37.516 12.503-10.559 23.617-22.509 32.508-35.57-21.672 14.729-46.679 24.732-74.186 28.067-10.021 2.506-27.552-5.643-29.73-23.065-1.945-14.728 8.336-28.067 23.062-29.734 16.116-1.946 31.12-7.503 44.178-15.284-26.114 5.713-58.712 3.138-88.079-11.115-13.336-6.669-18.893-22.509-12.224-35.848 6.389-13.061 22.505-18.619 35.565-12.227 20.295 10.149 44.147 11.199 64.739 3.89-42.606 0-71.208-20.475-85.578-50.576-8.576-17.899 5.148-38.071 23.617-38.071-18.429 0-32.211-20.136-23.617-38.071 14.033-29.396 44.039-50.887 81.966-50.854l92.803 8.615 66.406-33.347c9.408-4.704 19.828-.354 23.894 7.781l44.455 88.926zm-229.227-18.618c-13.893 0-26.119 7.781-32.231 20.286-4.446 9.449-13.614 15.006-23.339 15.284 9.725.278 18.893 5.836 23.339 15.284 6.112 12.505 18.338 20.286 32.231 20.286a35.46 35.46 0 0 0 35.565-35.57c0-21.429-17.808-35.57-35.565-35.57z\"]\n};\nvar faAnchor = {\n prefix: 'fas',\n iconName: 'anchor',\n icon: [576, 512, [], \"f13d\", \"M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z\"]\n};\nvar faAngleDoubleDown = {\n prefix: 'fas',\n iconName: 'angle-double-down',\n icon: [320, 512, [], \"f103\", \"M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z\"]\n};\nvar faAngleDoubleLeft = {\n prefix: 'fas',\n iconName: 'angle-double-left',\n icon: [448, 512, [], \"f100\", \"M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z\"]\n};\nvar faAngleDoubleRight = {\n prefix: 'fas',\n iconName: 'angle-double-right',\n icon: [448, 512, [], \"f101\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"]\n};\nvar faAngleDoubleUp = {\n prefix: 'fas',\n iconName: 'angle-double-up',\n icon: [320, 512, [], \"f102\", \"M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z\"]\n};\nvar faAngleDown = {\n prefix: 'fas',\n iconName: 'angle-down',\n icon: [320, 512, [], \"f107\", \"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\"]\n};\nvar faAngleLeft = {\n prefix: 'fas',\n iconName: 'angle-left',\n icon: [256, 512, [], \"f104\", \"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"]\n};\nvar faAngleRight = {\n prefix: 'fas',\n iconName: 'angle-right',\n icon: [256, 512, [], \"f105\", \"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"]\n};\nvar faAngleUp = {\n prefix: 'fas',\n iconName: 'angle-up',\n icon: [320, 512, [], \"f106\", \"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"]\n};\nvar faAngry = {\n prefix: 'fas',\n iconName: 'angry',\n icon: [496, 512, [], \"f556\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 240c0-9.3 4.1-17.5 10.5-23.4l-31-9.3c-8.5-2.5-13.3-11.5-10.7-19.9 2.5-8.5 11.4-13.2 19.9-10.7l80 24c8.5 2.5 13.3 11.5 10.7 19.9-2.1 6.9-8.4 11.4-15.3 11.4-.5 0-1.1-.2-1.7-.2.7 2.7 1.7 5.3 1.7 8.2 0 17.7-14.3 32-32 32S136 257.7 136 240zm168 154.2c-27.8-33.4-84.2-33.4-112.1 0-13.5 16.3-38.2-4.2-24.6-20.5 20-24 49.4-37.8 80.6-37.8s60.6 13.8 80.6 37.8c13.8 16.5-11.1 36.6-24.5 20.5zm76.6-186.9l-31 9.3c6.3 5.8 10.5 14.1 10.5 23.4 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.9.9-5.6 1.7-8.2-.6.1-1.1.2-1.7.2-6.9 0-13.2-4.5-15.3-11.4-2.5-8.5 2.3-17.4 10.7-19.9l80-24c8.4-2.5 17.4 2.3 19.9 10.7 2.5 8.5-2.3 17.4-10.8 19.9z\"]\n};\nvar faAnkh = {\n prefix: 'fas',\n iconName: 'ankh',\n icon: [320, 512, [], \"f644\", \"M296 256h-44.62C272.46 222.01 288 181.65 288 144 288 55.63 230.69 0 160 0S32 55.63 32 144c0 37.65 15.54 78.01 36.62 112H24c-13.25 0-24 10.74-24 24v32c0 13.25 10.75 24 24 24h96v152c0 13.25 10.75 24 24 24h32c13.25 0 24-10.75 24-24V336h96c13.25 0 24-10.75 24-24v-32c0-13.26-10.75-24-24-24zM160 80c29.61 0 48 24.52 48 64 0 34.66-27.14 78.14-48 100.87-20.86-22.72-48-66.21-48-100.87 0-39.48 18.39-64 48-64z\"]\n};\nvar faAppleAlt = {\n prefix: 'fas',\n iconName: 'apple-alt',\n icon: [448, 512, [], \"f5d1\", \"M350.85 129c25.97 4.67 47.27 18.67 63.92 42 14.65 20.67 24.64 46.67 29.96 78 4.67 28.67 4.32 57.33-1 86-7.99 47.33-23.97 87-47.94 119-28.64 38.67-64.59 58-107.87 58-10.66 0-22.3-3.33-34.96-10-8.66-5.33-18.31-8-28.97-8s-20.3 2.67-28.97 8c-12.66 6.67-24.3 10-34.96 10-43.28 0-79.23-19.33-107.87-58-23.97-32-39.95-71.67-47.94-119-5.32-28.67-5.67-57.33-1-86 5.32-31.33 15.31-57.33 29.96-78 16.65-23.33 37.95-37.33 63.92-42 15.98-2.67 37.95-.33 65.92 7 23.97 6.67 44.28 14.67 60.93 24 16.65-9.33 36.96-17.33 60.93-24 27.98-7.33 49.96-9.67 65.94-7zm-54.94-41c-9.32 8.67-21.65 15-36.96 19-10.66 3.33-22.3 5-34.96 5l-14.98-1c-1.33-9.33-1.33-20 0-32 2.67-24 10.32-42.33 22.97-55 9.32-8.67 21.65-15 36.96-19 10.66-3.33 22.3-5 34.96-5l14.98 1 1 15c0 12.67-1.67 24.33-4.99 35-3.99 15.33-10.31 27.67-18.98 37z\"]\n};\nvar faArchive = {\n prefix: 'fas',\n iconName: 'archive',\n icon: [512, 512, [], \"f187\", \"M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z\"]\n};\nvar faArchway = {\n prefix: 'fas',\n iconName: 'archway',\n icon: [576, 512, [], \"f557\", \"M560 448h-16V96H32v352H16.02c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16H176c8.84 0 16-7.16 16-16V320c0-53.02 42.98-96 96-96s96 42.98 96 96l.02 160v16c0 8.84 7.16 16 16 16H560c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm0-448H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h544c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faArrowAltCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-down',\n icon: [512, 512, [], \"f358\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z\"]\n};\nvar faArrowAltCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-left',\n icon: [512, 512, [], \"f359\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z\"]\n};\nvar faArrowAltCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-right',\n icon: [512, 512, [], \"f35a\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\"]\n};\nvar faArrowAltCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-alt-circle-up',\n icon: [512, 512, [], \"f35b\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z\"]\n};\nvar faArrowCircleDown = {\n prefix: 'fas',\n iconName: 'arrow-circle-down',\n icon: [512, 512, [], \"f0ab\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-143.6-28.9L288 302.6V120c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24v182.6l-72.4-75.5c-9.3-9.7-24.8-9.9-34.3-.4l-10.9 11c-9.4 9.4-9.4 24.6 0 33.9L239 404.3c9.4 9.4 24.6 9.4 33.9 0l132.7-132.7c9.4-9.4 9.4-24.6 0-33.9l-10.9-11c-9.5-9.5-25-9.3-34.3.4z\"]\n};\nvar faArrowCircleLeft = {\n prefix: 'fas',\n iconName: 'arrow-circle-left',\n icon: [512, 512, [], \"f0a8\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm28.9-143.6L209.4 288H392c13.3 0 24-10.7 24-24v-16c0-13.3-10.7-24-24-24H209.4l75.5-72.4c9.7-9.3 9.9-24.8.4-34.3l-11-10.9c-9.4-9.4-24.6-9.4-33.9 0L107.7 239c-9.4 9.4-9.4 24.6 0 33.9l132.7 132.7c9.4 9.4 24.6 9.4 33.9 0l11-10.9c9.5-9.5 9.3-25-.4-34.3z\"]\n};\nvar faArrowCircleRight = {\n prefix: 'fas',\n iconName: 'arrow-circle-right',\n icon: [512, 512, [], \"f0a9\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28.9 143.6l75.5 72.4H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h182.6l-75.5 72.4c-9.7 9.3-9.9 24.8-.4 34.3l11 10.9c9.4 9.4 24.6 9.4 33.9 0L404.3 273c9.4-9.4 9.4-24.6 0-33.9L271.6 106.3c-9.4-9.4-24.6-9.4-33.9 0l-11 10.9c-9.5 9.6-9.3 25.1.4 34.4z\"]\n};\nvar faArrowCircleUp = {\n prefix: 'fas',\n iconName: 'arrow-circle-up',\n icon: [512, 512, [], \"f0aa\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm143.6 28.9l72.4-75.5V392c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V209.4l72.4 75.5c9.3 9.7 24.8 9.9 34.3.4l10.9-11c9.4-9.4 9.4-24.6 0-33.9L273 107.7c-9.4-9.4-24.6-9.4-33.9 0L106.3 240.4c-9.4 9.4-9.4 24.6 0 33.9l10.9 11c9.6 9.5 25.1 9.3 34.4-.4z\"]\n};\nvar faArrowDown = {\n prefix: 'fas',\n iconName: 'arrow-down',\n icon: [448, 512, [], \"f063\", \"M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z\"]\n};\nvar faArrowLeft = {\n prefix: 'fas',\n iconName: 'arrow-left',\n icon: [448, 512, [], \"f060\", \"M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z\"]\n};\nvar faArrowRight = {\n prefix: 'fas',\n iconName: 'arrow-right',\n icon: [448, 512, [], \"f061\", \"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"]\n};\nvar faArrowUp = {\n prefix: 'fas',\n iconName: 'arrow-up',\n icon: [448, 512, [], \"f062\", \"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z\"]\n};\nvar faArrowsAlt = {\n prefix: 'fas',\n iconName: 'arrows-alt',\n icon: [512, 512, [], \"f0b2\", \"M352.201 425.775l-79.196 79.196c-9.373 9.373-24.568 9.373-33.941 0l-79.196-79.196c-15.119-15.119-4.411-40.971 16.971-40.97h51.162L228 284H127.196v51.162c0 21.382-25.851 32.09-40.971 16.971L7.029 272.937c-9.373-9.373-9.373-24.569 0-33.941L86.225 159.8c15.119-15.119 40.971-4.411 40.971 16.971V228H228V127.196h-51.23c-21.382 0-32.09-25.851-16.971-40.971l79.196-79.196c9.373-9.373 24.568-9.373 33.941 0l79.196 79.196c15.119 15.119 4.411 40.971-16.971 40.971h-51.162V228h100.804v-51.162c0-21.382 25.851-32.09 40.97-16.971l79.196 79.196c9.373 9.373 9.373 24.569 0 33.941L425.773 352.2c-15.119 15.119-40.971 4.411-40.97-16.971V284H284v100.804h51.23c21.382 0 32.09 25.851 16.971 40.971z\"]\n};\nvar faArrowsAltH = {\n prefix: 'fas',\n iconName: 'arrows-alt-h',\n icon: [512, 512, [], \"f337\", \"M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z\"]\n};\nvar faArrowsAltV = {\n prefix: 'fas',\n iconName: 'arrows-alt-v',\n icon: [256, 512, [], \"f338\", \"M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z\"]\n};\nvar faAssistiveListeningSystems = {\n prefix: 'fas',\n iconName: 'assistive-listening-systems',\n icon: [512, 512, [], \"f2a2\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"]\n};\nvar faAsterisk = {\n prefix: 'fas',\n iconName: 'asterisk',\n icon: [512, 512, [], \"f069\", \"M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z\"]\n};\nvar faAt = {\n prefix: 'fas',\n iconName: 'at',\n icon: [512, 512, [], \"f1fa\", \"M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z\"]\n};\nvar faAtlas = {\n prefix: 'fas',\n iconName: 'atlas',\n icon: [448, 512, [], \"f558\", \"M318.38 208h-39.09c-1.49 27.03-6.54 51.35-14.21 70.41 27.71-13.24 48.02-39.19 53.3-70.41zm0-32c-5.29-31.22-25.59-57.17-53.3-70.41 7.68 19.06 12.72 43.38 14.21 70.41h39.09zM224 97.31c-7.69 7.45-20.77 34.42-23.43 78.69h46.87c-2.67-44.26-15.75-71.24-23.44-78.69zm-41.08 8.28c-27.71 13.24-48.02 39.19-53.3 70.41h39.09c1.49-27.03 6.53-51.35 14.21-70.41zm0 172.82c-7.68-19.06-12.72-43.38-14.21-70.41h-39.09c5.28 31.22 25.59 57.17 53.3 70.41zM247.43 208h-46.87c2.66 44.26 15.74 71.24 23.43 78.69 7.7-7.45 20.78-34.43 23.44-78.69zM448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM224 64c70.69 0 128 57.31 128 128s-57.31 128-128 128S96 262.69 96 192 153.31 64 224 64zm160 384H96c-19.2 0-32-12.8-32-32s16-32 32-32h288v64z\"]\n};\nvar faAtom = {\n prefix: 'fas',\n iconName: 'atom',\n icon: [448, 512, [], \"f5d2\", \"M223.99908,224a32,32,0,1,0,32.00782,32A32.06431,32.06431,0,0,0,223.99908,224Zm214.172-96c-10.877-19.5-40.50979-50.75-116.27544-41.875C300.39168,34.875,267.63386,0,223.99908,0s-76.39066,34.875-97.89653,86.125C50.3369,77.375,20.706,108.5,9.82907,128-6.54984,157.375-5.17484,201.125,34.958,256-5.17484,310.875-6.54984,354.625,9.82907,384c29.13087,52.375,101.64652,43.625,116.27348,41.875C147.60842,477.125,180.36429,512,223.99908,512s76.3926-34.875,97.89652-86.125c14.62891,1.75,87.14456,10.5,116.27544-41.875C454.55,354.625,453.175,310.875,413.04017,256,453.175,201.125,454.55,157.375,438.171,128ZM63.33886,352c-4-7.25-.125-24.75,15.00391-48.25,6.87695,6.5,14.12891,12.875,21.88087,19.125,1.625,13.75,4,27.125,6.75,40.125C82.34472,363.875,67.09081,358.625,63.33886,352Zm36.88478-162.875c-7.752,6.25-15.00392,12.625-21.88087,19.125-15.12891-23.5-19.00392-41-15.00391-48.25,3.377-6.125,16.37891-11.5,37.88478-11.5,1.75,0,3.875.375,5.75.375C104.09864,162.25,101.84864,175.625,100.22364,189.125ZM223.99908,64c9.50195,0,22.25586,13.5,33.88282,37.25-11.252,3.75-22.50391,8-33.88282,12.875-11.377-4.875-22.62892-9.125-33.88283-12.875C201.74516,77.5,214.49712,64,223.99908,64Zm0,384c-9.502,0-22.25392-13.5-33.88283-37.25,11.25391-3.75,22.50587-8,33.88283-12.875C235.378,402.75,246.62994,407,257.8819,410.75,246.25494,434.5,233.501,448,223.99908,448Zm0-112a80,80,0,1,1,80-80A80.00023,80.00023,0,0,1,223.99908,336ZM384.6593,352c-3.625,6.625-19.00392,11.875-43.63479,11,2.752-13,5.127-26.375,6.752-40.125,7.75195-6.25,15.00391-12.625,21.87891-19.125C384.7843,327.25,388.6593,344.75,384.6593,352ZM369.65538,208.25c-6.875-6.5-14.127-12.875-21.87891-19.125-1.625-13.5-3.875-26.875-6.752-40.25,1.875,0,4.002-.375,5.752-.375,21.50391,0,34.50782,5.375,37.88283,11.5C388.6593,167.25,384.7843,184.75,369.65538,208.25Z\"]\n};\nvar faAudioDescription = {\n prefix: 'fas',\n iconName: 'audio-description',\n icon: [512, 512, [], \"f29e\", \"M162.925 238.709l8.822 30.655h-25.606l9.041-30.652c1.277-4.421 2.651-9.994 3.872-15.245 1.22 5.251 2.594 10.823 3.871 15.242zm166.474-32.099h-14.523v98.781h14.523c29.776 0 46.175-17.678 46.175-49.776 0-32.239-17.49-49.005-46.175-49.005zM512 112v288c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48zM245.459 336.139l-57.097-168A12.001 12.001 0 0 0 177 160h-35.894a12.001 12.001 0 0 0-11.362 8.139l-57.097 168C70.003 343.922 75.789 352 84.009 352h29.133a12 12 0 0 0 11.535-8.693l8.574-29.906h51.367l8.793 29.977A12 12 0 0 0 204.926 352h29.172c8.22 0 14.006-8.078 11.361-15.861zm184.701-80.525c0-58.977-37.919-95.614-98.96-95.614h-57.366c-6.627 0-12 5.373-12 12v168c0 6.627 5.373 12 12 12H331.2c61.041 0 98.96-36.933 98.96-96.386z\"]\n};\nvar faAward = {\n prefix: 'fas',\n iconName: 'award',\n icon: [384, 512, [], \"f559\", \"M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z\"]\n};\nvar faBaby = {\n prefix: 'fas',\n iconName: 'baby',\n icon: [384, 512, [], \"f77c\", \"M192 160c44.2 0 80-35.8 80-80S236.2 0 192 0s-80 35.8-80 80 35.8 80 80 80zm-53.4 248.8l25.6-32-61.5-51.2L56.8 383c-11.4 14.2-11.7 34.4-.8 49l48 64c7.9 10.5 19.9 16 32 16 8.3 0 16.8-2.6 24-8 17.7-13.2 21.2-38.3 8-56l-29.4-39.2zm142.7-83.2l-61.5 51.2 25.6 32L216 448c-13.2 17.7-9.7 42.8 8 56 7.2 5.4 15.6 8 24 8 12.2 0 24.2-5.5 32-16l48-64c10.9-14.6 10.6-34.8-.8-49l-45.9-57.4zM376.7 145c-12.7-18.1-37.6-22.4-55.7-9.8l-40.6 28.5c-52.7 37-124.2 37-176.8 0L63 135.3C44.9 122.6 20 127 7.3 145-5.4 163.1-1 188 17 200.7l40.6 28.5c17 11.9 35.4 20.9 54.4 27.9V288h160v-30.8c19-7 37.4-16 54.4-27.9l40.6-28.5c18.1-12.8 22.4-37.7 9.7-55.8z\"]\n};\nvar faBabyCarriage = {\n prefix: 'fas',\n iconName: 'baby-carriage',\n icon: [512, 512, [], \"f77d\", \"M144.8 17c-11.3-17.8-37.2-22.8-54-9.4C35.3 51.9 0 118 0 192h256L144.8 17zM496 96h-48c-35.3 0-64 28.7-64 64v64H0c0 50.6 23 96.4 60.3 130.7C25.7 363.6 0 394.7 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-8.9-1.8-17.2-4.4-25.2 21.6 5.9 44.6 9.2 68.4 9.2s46.9-3.3 68.4-9.2c-2.7 8-4.4 16.3-4.4 25.2 0 44.2 35.8 80 80 80s80-35.8 80-80c0-37.3-25.7-68.4-60.3-77.3C425 320.4 448 274.6 448 224v-64h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM80 464c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm320-32c0 17.6-14.4 32-32 32s-32-14.4-32-32 14.4-32 32-32 32 14.4 32 32z\"]\n};\nvar faBackspace = {\n prefix: 'fas',\n iconName: 'backspace',\n icon: [640, 512, [], \"f55a\", \"M576 64H205.26A63.97 63.97 0 0 0 160 82.75L9.37 233.37c-12.5 12.5-12.5 32.76 0 45.25L160 429.25c12 12 28.28 18.75 45.25 18.75H576c35.35 0 64-28.65 64-64V128c0-35.35-28.65-64-64-64zm-84.69 254.06c6.25 6.25 6.25 16.38 0 22.63l-22.62 22.62c-6.25 6.25-16.38 6.25-22.63 0L384 301.25l-62.06 62.06c-6.25 6.25-16.38 6.25-22.63 0l-22.62-22.62c-6.25-6.25-6.25-16.38 0-22.63L338.75 256l-62.06-62.06c-6.25-6.25-6.25-16.38 0-22.63l22.62-22.62c6.25-6.25 16.38-6.25 22.63 0L384 210.75l62.06-62.06c6.25-6.25 16.38-6.25 22.63 0l22.62 22.62c6.25 6.25 6.25 16.38 0 22.63L429.25 256l62.06 62.06z\"]\n};\nvar faBackward = {\n prefix: 'fas',\n iconName: 'backward',\n icon: [512, 512, [], \"f04a\", \"M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z\"]\n};\nvar faBacon = {\n prefix: 'fas',\n iconName: 'bacon',\n icon: [576, 512, [], \"f7e5\", \"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\"]\n};\nvar faBacteria = {\n prefix: 'fas',\n iconName: 'bacteria',\n icon: [640, 512, [], \"e059\", \"M272.35,226.4A17.71,17.71,0,0,0,281.46,203l-4-9.08a121.29,121.29,0,0,1,12.36-3.08A83.34,83.34,0,0,0,323.57,177l10,9a17.76,17.76,0,1,0,23.92-26.27l-9.72-8.76a83.12,83.12,0,0,0,11.65-48.18l11.85-3.51a17.73,17.73,0,1,0-10.15-34l-11.34,3.36a84,84,0,0,0-36.38-35.57l2.84-10.85a17.8,17.8,0,0,0-34.47-8.93l-2.82,10.78a83.25,83.25,0,0,0-16.74,1.1C250.83,27,240,30.22,229.1,33.39l-3.38-9.46a17.8,17.8,0,0,0-33.56,11.89l3.49,9.8a286.74,286.74,0,0,0-43.94,23.57l-6.32-8.43a17.9,17.9,0,0,0-24.94-3.6A17.69,17.69,0,0,0,116.84,82l6.45,8.61a286.59,286.59,0,0,0-34.95,35.33l-8.82-6.42a17.84,17.84,0,0,0-24.89,3.86,17.66,17.66,0,0,0,3.88,24.77l8.88,6.47a286.6,286.6,0,0,0-23,43.91l-10.48-3.59a17.73,17.73,0,1,0-11.59,33.52L32.67,232c-2.79,10-5.79,19.84-7.52,30.22a83.16,83.16,0,0,0-.82,19l-11.58,3.43a17.73,17.73,0,1,0,10.13,34l11.27-3.33a83.51,83.51,0,0,0,36.39,35.43l-2.88,11.06a17.81,17.81,0,0,0,34.48,8.92l2.87-11c1,0,2.07.26,3.1.26a83.39,83.39,0,0,0,45.65-13.88l8.59,8.8a17.77,17.77,0,0,0,25.56-24.7l-9.14-9.37a83.41,83.41,0,0,0,12.08-31.05,119.08,119.08,0,0,1,3.87-15.53l9,4.22a17.74,17.74,0,1,0,15.15-32.09l-8.8-4.11c.67-1,1.2-2.08,1.9-3.05a119.89,119.89,0,0,1,7.87-9.41,121.73,121.73,0,0,1,11.65-11.4,119.49,119.49,0,0,1,9.94-7.82c1.12-.77,2.32-1.42,3.47-2.15l3.92,8.85a17.86,17.86,0,0,0,16.32,10.58A18.14,18.14,0,0,0,272.35,226.4ZM128,256a32,32,0,1,1,32-32A32,32,0,0,1,128,256Zm80-96a16,16,0,1,1,16-16A16,16,0,0,1,208,160Zm431.26,45.3a17.79,17.79,0,0,0-17.06-12.69,17.55,17.55,0,0,0-5.08.74l-11.27,3.33a83.61,83.61,0,0,0-36.39-35.43l2.88-11.06a17.81,17.81,0,0,0-34.48-8.91l-2.87,11c-1,0-2.07-.26-3.1-.26a83.32,83.32,0,0,0-45.65,13.89l-8.59-8.81a17.77,17.77,0,0,0-25.56,24.7l9.14,9.37a83.28,83.28,0,0,0-12.08,31.06,119.34,119.34,0,0,1-3.87,15.52l-9-4.22a17.74,17.74,0,1,0-15.15,32.09l8.8,4.11c-.67,1-1.2,2.08-1.89,3.05a117.71,117.71,0,0,1-7.94,9.47,119,119,0,0,1-11.57,11.33,121.59,121.59,0,0,1-10,7.83c-1.12.77-2.32,1.42-3.47,2.15l-3.92-8.85a17.86,17.86,0,0,0-16.32-10.58,18.14,18.14,0,0,0-7.18,1.5A17.71,17.71,0,0,0,358.54,309l4,9.08a118.71,118.71,0,0,1-12.36,3.08,83.34,83.34,0,0,0-33.77,13.9l-10-9a17.77,17.77,0,1,0-23.92,26.28l9.72,8.75a83.12,83.12,0,0,0-11.65,48.18l-11.86,3.51a17.73,17.73,0,1,0,10.16,34l11.34-3.36A84,84,0,0,0,326.61,479l-2.84,10.85a17.8,17.8,0,0,0,34.47,8.93L361.06,488a83.3,83.3,0,0,0,16.74-1.1c11.37-1.89,22.24-5.07,33.1-8.24l3.38,9.46a17.8,17.8,0,0,0,33.56-11.89l-3.49-9.79a287.66,287.66,0,0,0,43.94-23.58l6.32,8.43a17.88,17.88,0,0,0,24.93,3.6A17.67,17.67,0,0,0,523.16,430l-6.45-8.61a287.37,287.37,0,0,0,34.95-35.34l8.82,6.42a17.76,17.76,0,1,0,21-28.63l-8.88-6.46a287.17,287.17,0,0,0,23-43.92l10.48,3.59a17.73,17.73,0,1,0,11.59-33.52L607.33,280c2.79-10,5.79-19.84,7.52-30.21a83.27,83.27,0,0,0,.82-19.05l11.58-3.43A17.7,17.7,0,0,0,639.26,205.3ZM416,416a32,32,0,1,1,32-32A32,32,0,0,1,416,416Z\"]\n};\nvar faBacterium = {\n prefix: 'fas',\n iconName: 'bacterium',\n icon: [512, 512, [], \"e05a\", \"M511,102.93A23.76,23.76,0,0,0,481.47,87l-15.12,4.48a111.85,111.85,0,0,0-48.5-47.42l3.79-14.47a23.74,23.74,0,0,0-46-11.91l-3.76,14.37a111.94,111.94,0,0,0-22.33,1.47,386.74,386.74,0,0,0-44.33,10.41l-4.3-12a23.74,23.74,0,0,0-44.75,15.85l4.3,12.05a383.4,383.4,0,0,0-58.69,31.83l-8-10.63a23.85,23.85,0,0,0-33.24-4.8,23.57,23.57,0,0,0-4.83,33.09l8,10.63a386.14,386.14,0,0,0-46.7,47.44l-11-8a23.68,23.68,0,1,0-28,38.17l11.09,8.06a383.45,383.45,0,0,0-30.92,58.75l-12.93-4.43a23.65,23.65,0,1,0-15.47,44.69l13,4.48a385.81,385.81,0,0,0-9.3,40.53A111.58,111.58,0,0,0,32.44,375L17,379.56a23.64,23.64,0,0,0,13.51,45.31l15-4.44a111.49,111.49,0,0,0,48.53,47.24l-3.85,14.75a23.66,23.66,0,0,0,17,28.83,24.7,24.7,0,0,0,6,.75,23.73,23.73,0,0,0,23-17.7L140,479.67c1.37.05,2.77.35,4.13.35A111.22,111.22,0,0,0,205,461.5l11.45,11.74a23.7,23.7,0,0,0,34.08-32.93l-12.19-12.5a111,111,0,0,0,16.11-41.4,158.69,158.69,0,0,1,5.16-20.71l12,5.64a23.66,23.66,0,1,0,20.19-42.79l-11.72-5.49c.89-1.32,1.59-2.77,2.52-4.06a157.86,157.86,0,0,1,10.46-12.49,159.5,159.5,0,0,1,15.59-15.28,162.18,162.18,0,0,1,13.23-10.4c1.5-1,3.1-1.89,4.63-2.87l5.23,11.8a23.74,23.74,0,0,0,43.48-19.08l-5.36-12.11a158.87,158.87,0,0,1,16.49-4.1,111,111,0,0,0,45-18.54l13.33,12a23.69,23.69,0,1,0,31.88-35l-12.94-11.67A110.83,110.83,0,0,0,479.21,137L495,132.32A23.61,23.61,0,0,0,511,102.93ZM160,368a48,48,0,1,1,48-48A48,48,0,0,1,160,368Zm80-136a24,24,0,1,1,24-24A24,24,0,0,1,240,232Z\"]\n};\nvar faBahai = {\n prefix: 'fas',\n iconName: 'bahai',\n icon: [512, 512, [], \"f666\", \"M496.25 202.52l-110-15.44 41.82-104.34c6.67-16.64-11.6-32.18-26.59-22.63L307.44 120 273.35 12.82C270.64 4.27 263.32 0 256 0c-7.32 0-14.64 4.27-17.35 12.82l-34.09 107.19-94.04-59.89c-14.99-9.55-33.25 5.99-26.59 22.63l41.82 104.34-110 15.43c-17.54 2.46-21.68 26.27-6.03 34.67l98.16 52.66-74.48 83.54c-10.92 12.25-1.72 30.93 13.29 30.93 1.31 0 2.67-.14 4.07-.45l108.57-23.65-4.11 112.55c-.43 11.65 8.87 19.22 18.41 19.22 5.15 0 10.39-2.21 14.2-7.18l68.18-88.9 68.18 88.9c3.81 4.97 9.04 7.18 14.2 7.18 9.54 0 18.84-7.57 18.41-19.22l-4.11-112.55 108.57 23.65c17.36 3.76 29.21-17.2 17.35-30.49l-74.48-83.54 98.16-52.66c15.64-8.39 11.5-32.2-6.04-34.66zM338.51 311.68l-51.89-11.3 1.97 53.79L256 311.68l-32.59 42.49 1.96-53.79-51.89 11.3 35.6-39.93-46.92-25.17 52.57-7.38-19.99-49.87 44.95 28.62L256 166.72l16.29 51.23 44.95-28.62-19.99 49.87 52.57 7.38-46.92 25.17 35.61 39.93z\"]\n};\nvar faBalanceScale = {\n prefix: 'fas',\n iconName: 'balance-scale',\n icon: [640, 512, [], \"f24e\", \"M256 336h-.02c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0C-2.06 328.75.02 320.33.02 336H0c0 44.18 57.31 80 128 80s128-35.82 128-80zM128 176l72 144H56l72-144zm511.98 160c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 320l72-144 72 144H440zm88 128H352V153.25c23.51-10.29 41.16-31.48 46.39-57.25H528c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H383.64C369.04 12.68 346.09 0 320 0s-49.04 12.68-63.64 32H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h129.61c5.23 25.76 22.87 46.96 46.39 57.25V448H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faBalanceScaleLeft = {\n prefix: 'fas',\n iconName: 'balance-scale-left',\n icon: [640, 512, [], \"f515\", \"M528 448H352V153.25c20.42-8.94 36.1-26.22 43.38-47.47l132-44.26c8.38-2.81 12.89-11.88 10.08-20.26l-10.17-30.34C524.48 2.54 515.41-1.97 507.03.84L389.11 40.37C375.3 16.36 349.69 0 320 0c-44.18 0-80 35.82-80 80 0 3.43.59 6.71 1.01 10.03l-128.39 43.05c-8.38 2.81-12.89 11.88-10.08 20.26l10.17 30.34c2.81 8.38 11.88 12.89 20.26 10.08l142.05-47.63c4.07 2.77 8.43 5.12 12.99 7.12V496c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16v-32c-.01-8.84-7.17-16-16.01-16zm111.98-144c0-16.18 1.34-8.73-85.05-181.51-17.65-35.29-68.19-35.36-85.87 0-87.12 174.26-85.04 165.84-85.04 181.51H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02zM440 288l72-144 72 144H440zm-269.07-37.51c-17.65-35.29-68.19-35.36-85.87 0C-2.06 424.75.02 416.33.02 432H0c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-16.18 1.34-8.73-85.05-181.51zM56 416l72-144 72 144H56z\"]\n};\nvar faBalanceScaleRight = {\n prefix: 'fas',\n iconName: 'balance-scale-right',\n icon: [640, 512, [], \"f516\", \"M96 464v32c0 8.84 7.16 16 16 16h224c8.84 0 16-7.16 16-16V153.25c4.56-2 8.92-4.35 12.99-7.12l142.05 47.63c8.38 2.81 17.45-1.71 20.26-10.08l10.17-30.34c2.81-8.38-1.71-17.45-10.08-20.26l-128.4-43.05c.42-3.32 1.01-6.6 1.01-10.03 0-44.18-35.82-80-80-80-29.69 0-55.3 16.36-69.11 40.37L132.96.83c-8.38-2.81-17.45 1.71-20.26 10.08l-10.17 30.34c-2.81 8.38 1.71 17.45 10.08 20.26l132 44.26c7.28 21.25 22.96 38.54 43.38 47.47V448H112c-8.84 0-16 7.16-16 16zM0 304c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0C-1.32 295.27.02 287.82.02 304H0zm56-16l72-144 72 144H56zm328.02 144H384c0 44.18 57.31 80 128 80s128-35.82 128-80h-.02c0-15.67 2.08-7.25-85.05-181.51-17.68-35.36-68.22-35.29-85.87 0-86.38 172.78-85.04 165.33-85.04 181.51zM440 416l72-144 72 144H440z\"]\n};\nvar faBan = {\n prefix: 'fas',\n iconName: 'ban',\n icon: [512, 512, [], \"f05e\", \"M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z\"]\n};\nvar faBandAid = {\n prefix: 'fas',\n iconName: 'band-aid',\n icon: [640, 512, [], \"f462\", \"M0 160v192c0 35.3 28.7 64 64 64h96V96H64c-35.3 0-64 28.7-64 64zm576-64h-96v320h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64zM192 416h256V96H192v320zm176-232c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm0 96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24z\"]\n};\nvar faBarcode = {\n prefix: 'fas',\n iconName: 'barcode',\n icon: [512, 512, [], \"f02a\", \"M0 448V64h18v384H0zm26.857-.273V64H36v383.727h-9.143zm27.143 0V64h8.857v383.727H54zm44.857 0V64h8.857v383.727h-8.857zm36 0V64h17.714v383.727h-17.714zm44.857 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm18 0V64h8.857v383.727h-8.857zm35.715 0V64h18v383.727h-18zm44.857 0V64h18v383.727h-18zm35.999 0V64h18.001v383.727h-18.001zm36.001 0V64h18.001v383.727h-18.001zm26.857 0V64h18v383.727h-18zm45.143 0V64h26.857v383.727h-26.857zm35.714 0V64h9.143v383.727H476zm18 .273V64h18v384h-18z\"]\n};\nvar faBars = {\n prefix: 'fas',\n iconName: 'bars',\n icon: [448, 512, [], \"f0c9\", \"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"]\n};\nvar faBaseballBall = {\n prefix: 'fas',\n iconName: 'baseball-ball',\n icon: [496, 512, [], \"f433\", \"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\"]\n};\nvar faBasketballBall = {\n prefix: 'fas',\n iconName: 'basketball-ball',\n icon: [496, 512, [], \"f434\", \"M212.3 10.3c-43.8 6.3-86.2 24.1-122.2 53.8l77.4 77.4c27.8-35.8 43.3-81.2 44.8-131.2zM248 222L405.9 64.1c-42.4-35-93.6-53.5-145.5-56.1-1.2 63.9-21.5 122.3-58.7 167.7L248 222zM56.1 98.1c-29.7 36-47.5 78.4-53.8 122.2 50-1.5 95.5-17 131.2-44.8L56.1 98.1zm272.2 204.2c45.3-37.1 103.7-57.4 167.7-58.7-2.6-51.9-21.1-103.1-56.1-145.5L282 256l46.3 46.3zM248 290L90.1 447.9c42.4 34.9 93.6 53.5 145.5 56.1 1.3-64 21.6-122.4 58.7-167.7L248 290zm191.9 123.9c29.7-36 47.5-78.4 53.8-122.2-50.1 1.6-95.5 17.1-131.2 44.8l77.4 77.4zM167.7 209.7C122.3 246.9 63.9 267.3 0 268.4c2.6 51.9 21.1 103.1 56.1 145.5L214 256l-46.3-46.3zm116 292c43.8-6.3 86.2-24.1 122.2-53.8l-77.4-77.4c-27.7 35.7-43.2 81.2-44.8 131.2z\"]\n};\nvar faBath = {\n prefix: 'fas',\n iconName: 'bath',\n icon: [512, 512, [], \"f2cd\", \"M32,384a95.4,95.4,0,0,0,32,71.09V496a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V480H384v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V455.09A95.4,95.4,0,0,0,480,384V336H32ZM496,256H80V69.25a21.26,21.26,0,0,1,36.28-15l19.27,19.26c-13.13,29.88-7.61,59.11,8.62,79.73l-.17.17A16,16,0,0,0,144,176l11.31,11.31a16,16,0,0,0,22.63,0L283.31,81.94a16,16,0,0,0,0-22.63L272,48a16,16,0,0,0-22.62,0l-.17.17c-20.62-16.23-49.83-21.75-79.73-8.62L150.22,20.28A69.25,69.25,0,0,0,32,69.25V256H16A16,16,0,0,0,0,272v16a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V272A16,16,0,0,0,496,256Z\"]\n};\nvar faBatteryEmpty = {\n prefix: 'fas',\n iconName: 'battery-empty',\n icon: [640, 512, [], \"f244\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z\"]\n};\nvar faBatteryFull = {\n prefix: 'fas',\n iconName: 'battery-full',\n icon: [640, 512, [], \"f240\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-48 96H96v128h416V192z\"]\n};\nvar faBatteryHalf = {\n prefix: 'fas',\n iconName: 'battery-half',\n icon: [640, 512, [], \"f242\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-240 96H96v128h224V192z\"]\n};\nvar faBatteryQuarter = {\n prefix: 'fas',\n iconName: 'battery-quarter',\n icon: [640, 512, [], \"f243\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-336 96H96v128h128V192z\"]\n};\nvar faBatteryThreeQuarters = {\n prefix: 'fas',\n iconName: 'battery-three-quarters',\n icon: [640, 512, [], \"f241\", \"M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48zm-144 96H96v128h320V192z\"]\n};\nvar faBed = {\n prefix: 'fas',\n iconName: 'bed',\n icon: [640, 512, [], \"f236\", \"M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z\"]\n};\nvar faBeer = {\n prefix: 'fas',\n iconName: 'beer',\n icon: [448, 512, [], \"f0fc\", \"M368 96h-48V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24v-42.11l80.606-35.977C429.396 365.063 448 336.388 448 304.86V176c0-44.112-35.888-80-80-80zm16 208.86a16.018 16.018 0 0 1-9.479 14.611L320 343.805V160h48c8.822 0 16 7.178 16 16v128.86zM208 384c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16zm-96 0c-8.836 0-16-7.164-16-16V144c0-8.836 7.164-16 16-16s16 7.164 16 16v224c0 8.836-7.164 16-16 16z\"]\n};\nvar faBell = {\n prefix: 'fas',\n iconName: 'bell',\n icon: [448, 512, [], \"f0f3\", \"M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z\"]\n};\nvar faBellSlash = {\n prefix: 'fas',\n iconName: 'bell-slash',\n icon: [640, 512, [], \"f1f6\", \"M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z\"]\n};\nvar faBezierCurve = {\n prefix: 'fas',\n iconName: 'bezier-curve',\n icon: [640, 512, [], \"f55b\", \"M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faBible = {\n prefix: 'fas',\n iconName: 'bible',\n icon: [448, 512, [], \"f647\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM144 144c0-8.84 7.16-16 16-16h48V80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v48h48c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-48v112c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V192h-48c-8.84 0-16-7.16-16-16v-32zm236.8 304H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faBicycle = {\n prefix: 'fas',\n iconName: 'bicycle',\n icon: [640, 512, [], \"f206\", \"M512.509 192.001c-16.373-.064-32.03 2.955-46.436 8.495l-77.68-125.153A24 24 0 0 0 368.001 64h-64c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h50.649l14.896 24H256.002v-16c0-8.837-7.163-16-16-16h-87.459c-13.441 0-24.777 10.999-24.536 24.437.232 13.044 10.876 23.563 23.995 23.563h48.726l-29.417 47.52c-13.433-4.83-27.904-7.483-42.992-7.52C58.094 191.83.412 249.012.002 319.236-.413 390.279 57.055 448 128.002 448c59.642 0 109.758-40.793 123.967-96h52.033a24 24 0 0 0 20.406-11.367L410.37 201.77l14.938 24.067c-25.455 23.448-41.385 57.081-41.307 94.437.145 68.833 57.899 127.051 126.729 127.719 70.606.685 128.181-55.803 129.255-125.996 1.086-70.941-56.526-129.72-127.476-129.996zM186.75 265.772c9.727 10.529 16.673 23.661 19.642 38.228h-43.306l23.664-38.228zM128.002 400c-44.112 0-80-35.888-80-80s35.888-80 80-80c5.869 0 11.586.653 17.099 1.859l-45.505 73.509C89.715 331.327 101.213 352 120.002 352h81.3c-12.37 28.225-40.562 48-73.3 48zm162.63-96h-35.624c-3.96-31.756-19.556-59.894-42.383-80.026L237.371 184h127.547l-74.286 120zm217.057 95.886c-41.036-2.165-74.049-35.692-75.627-76.755-.812-21.121 6.633-40.518 19.335-55.263l44.433 71.586c4.66 7.508 14.524 9.816 22.032 5.156l13.594-8.437c7.508-4.66 9.817-14.524 5.156-22.032l-44.468-71.643a79.901 79.901 0 0 1 19.858-2.497c44.112 0 80 35.888 80 80-.001 45.54-38.252 82.316-84.313 79.885z\"]\n};\nvar faBiking = {\n prefix: 'fas',\n iconName: 'biking',\n icon: [640, 512, [], \"f84a\", \"M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z\"]\n};\nvar faBinoculars = {\n prefix: 'fas',\n iconName: 'binoculars',\n icon: [512, 512, [], \"f1e5\", \"M416 48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v48h96V48zM63.91 159.99C61.4 253.84 3.46 274.22 0 404v44c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V288h32V128H95.84c-17.63 0-31.45 14.37-31.93 31.99zm384.18 0c-.48-17.62-14.3-31.99-31.93-31.99H320v160h32v160c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-44c-3.46-129.78-61.4-150.16-63.91-244.01zM176 32h-64c-8.84 0-16 7.16-16 16v48h96V48c0-8.84-7.16-16-16-16zm48 256h64V128h-64v160z\"]\n};\nvar faBiohazard = {\n prefix: 'fas',\n iconName: 'biohazard',\n icon: [576, 512, [], \"f780\", \"M287.9 112c18.6 0 36.2 3.8 52.8 9.6 13.3-10.3 23.6-24.3 29.5-40.7-25.2-10.9-53-17-82.2-17-29.1 0-56.9 6-82.1 16.9 5.9 16.4 16.2 30.4 29.5 40.7 16.5-5.7 34-9.5 52.5-9.5zM163.6 438.7c12-11.8 20.4-26.4 24.5-42.4-32.9-26.4-54.8-65.3-58.9-109.6-8.5-2.8-17.2-4.6-26.4-4.6-7.6 0-15.2 1-22.5 3.1 4.1 62.8 35.8 118 83.3 153.5zm224.2-42.6c4.1 16 12.5 30.7 24.5 42.5 47.4-35.5 79.1-90.7 83-153.5-7.2-2-14.7-3-22.2-3-9.2 0-18 1.9-26.6 4.7-4.1 44.2-26 82.9-58.7 109.3zm113.5-205c-17.6-10.4-36.3-16.6-55.3-19.9 6-17.7 10-36.4 10-56.2 0-41-14.5-80.8-41-112.2-2.5-3-6.6-3.7-10-1.8-3.3 1.9-4.8 6-3.6 9.7 4.5 13.8 6.6 26.3 6.6 38.5 0 67.8-53.8 122.9-120 122.9S168 117 168 49.2c0-12.1 2.2-24.7 6.6-38.5 1.2-3.7-.3-7.8-3.6-9.7-3.4-1.9-7.5-1.2-10 1.8C134.6 34.2 120 74 120 115c0 19.8 3.9 38.5 10 56.2-18.9 3.3-37.7 9.5-55.3 19.9-34.6 20.5-61 53.3-74.3 92.4-1.3 3.7.2 7.7 3.5 9.8 3.3 2 7.5 1.3 10-1.6 9.4-10.8 19-19.1 29.2-25.1 57.3-33.9 130.8-13.7 163.9 45 33.1 58.7 13.4 134-43.9 167.9-10.2 6.1-22 10.4-35.8 13.4-3.7.8-6.4 4.2-6.4 8.1.1 4 2.7 7.3 6.5 8 39.7 7.8 80.6.8 115.2-19.7 18-10.6 32.9-24.5 45.3-40.1 12.4 15.6 27.3 29.5 45.3 40.1 34.6 20.5 75.5 27.5 115.2 19.7 3.8-.7 6.4-4 6.5-8 0-3.9-2.6-7.3-6.4-8.1-13.9-2.9-25.6-7.3-35.8-13.4-57.3-33.9-77-109.2-43.9-167.9s106.6-78.9 163.9-45c10.2 6.1 19.8 14.3 29.2 25.1 2.5 2.9 6.7 3.6 10 1.6s4.8-6.1 3.5-9.8c-13.1-39.1-39.5-72-74.1-92.4zm-213.4 129c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faBirthdayCake = {\n prefix: 'fas',\n iconName: 'birthday-cake',\n icon: [448, 512, [], \"f1fd\", \"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\"]\n};\nvar faBlender = {\n prefix: 'fas',\n iconName: 'blender',\n icon: [512, 512, [], \"f517\", \"M416 384H160c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-128 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm40-416h166.54L512 0H48C21.49 0 0 21.49 0 48v160c0 26.51 21.49 48 48 48h103.27l8.73 96h256l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H328c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H328c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM64 192V64h69.82l11.64 128H64z\"]\n};\nvar faBlenderPhone = {\n prefix: 'fas',\n iconName: 'blender-phone',\n icon: [576, 512, [], \"f6b6\", \"M392 64h166.54L576 0H192v352h288l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h114.18l17.46-64H392c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h140.36l17.46-64H392c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8zM158.8 335.01l-25.78-63.26c-2.78-6.81-9.8-10.99-17.24-10.26l-45.03 4.42c-17.28-46.94-17.65-99.78 0-147.72l45.03 4.42c7.43.73 14.46-3.46 17.24-10.26l25.78-63.26c3.02-7.39.2-15.85-6.68-20.07l-39.28-24.1C98.51-3.87 80.09-.5 68.95 11.97c-92.57 103.6-92 259.55 2.1 362.49 9.87 10.8 29.12 12.48 41.65 4.8l39.41-24.18c6.89-4.22 9.7-12.67 6.69-20.07zM480 384H192c-35.35 0-64 28.65-64 64v32c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32v-32c0-35.35-28.65-64-64-64zm-144 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBlind = {\n prefix: 'fas',\n iconName: 'blind',\n icon: [384, 512, [], \"f29d\", \"M380.15 510.837a8 8 0 0 1-10.989-2.687l-125.33-206.427a31.923 31.923 0 0 0 12.958-9.485l126.048 207.608a8 8 0 0 1-2.687 10.991zM142.803 314.338l-32.54 89.485 36.12 88.285c6.693 16.36 25.377 24.192 41.733 17.501 16.357-6.692 24.193-25.376 17.501-41.734l-62.814-153.537zM96 88c24.301 0 44-19.699 44-44S120.301 0 96 0 52 19.699 52 44s19.699 44 44 44zm154.837 169.128l-120-152c-4.733-5.995-11.75-9.108-18.837-9.112V96H80v.026c-7.146.003-14.217 3.161-18.944 9.24L0 183.766v95.694c0 13.455 11.011 24.791 24.464 24.536C37.505 303.748 48 293.1 48 280v-79.766l16-20.571v140.698L9.927 469.055c-6.04 16.609 2.528 34.969 19.138 41.009 16.602 6.039 34.968-2.524 41.009-19.138L136 309.638V202.441l-31.406-39.816a4 4 0 1 1 6.269-4.971l102.3 129.217c9.145 11.584 24.368 11.339 33.708 3.965 10.41-8.216 12.159-23.334 3.966-33.708z\"]\n};\nvar faBlog = {\n prefix: 'fas',\n iconName: 'blog',\n icon: [512, 512, [], \"f781\", \"M172.2 226.8c-14.6-2.9-28.2 8.9-28.2 23.8V301c0 10.2 7.1 18.4 16.7 22 18.2 6.8 31.3 24.4 31.3 45 0 26.5-21.5 48-48 48s-48-21.5-48-48V120c0-13.3-10.7-24-24-24H24c-13.3 0-24 10.7-24 24v248c0 89.5 82.1 160.2 175 140.7 54.4-11.4 98.3-55.4 109.7-109.7 17.4-82.9-37-157.2-112.5-172.2zM209 0c-9.2-.5-17 6.8-17 16v31.6c0 8.5 6.6 15.5 15 15.9 129.4 7 233.4 112 240.9 241.5.5 8.4 7.5 15 15.9 15h32.1c9.2 0 16.5-7.8 16-17C503.4 139.8 372.2 8.6 209 0zm.3 96c-9.3-.7-17.3 6.7-17.3 16.1v32.1c0 8.4 6.5 15.3 14.8 15.9 76.8 6.3 138 68.2 144.9 145.2.8 8.3 7.6 14.7 15.9 14.7h32.2c9.3 0 16.8-8 16.1-17.3-8.4-110.1-96.5-198.2-206.6-206.7z\"]\n};\nvar faBold = {\n prefix: 'fas',\n iconName: 'bold',\n icon: [384, 512, [], \"f032\", \"M333.49 238a122 122 0 0 0 27-65.21C367.87 96.49 308 32 233.42 32H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h31.87v288H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h209.32c70.8 0 134.14-51.75 141-122.4 4.74-48.45-16.39-92.06-50.83-119.6zM145.66 112h87.76a48 48 0 0 1 0 96h-87.76zm87.76 288h-87.76V288h87.76a56 56 0 0 1 0 112z\"]\n};\nvar faBolt = {\n prefix: 'fas',\n iconName: 'bolt',\n icon: [320, 512, [], \"f0e7\", \"M296 160H180.6l42.6-129.8C227.2 15 215.7 0 200 0H56C44 0 33.8 8.9 32.2 20.8l-32 240C-1.7 275.2 9.5 288 24 288h118.7L96.6 482.5c-3.6 15.2 8 29.5 23.3 29.5 8.4 0 16.4-4.4 20.8-12l176-304c9.3-15.9-2.2-36-20.7-36z\"]\n};\nvar faBomb = {\n prefix: 'fas',\n iconName: 'bomb',\n icon: [512, 512, [], \"f1e2\", \"M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z\"]\n};\nvar faBone = {\n prefix: 'fas',\n iconName: 'bone',\n icon: [640, 512, [], \"f5d7\", \"M598.88 244.56c25.2-12.6 41.12-38.36 41.12-66.53v-7.64C640 129.3 606.7 96 565.61 96c-32.02 0-60.44 20.49-70.57 50.86-7.68 23.03-11.6 45.14-38.11 45.14H183.06c-27.38 0-31.58-25.54-38.11-45.14C134.83 116.49 106.4 96 74.39 96 33.3 96 0 129.3 0 170.39v7.64c0 28.17 15.92 53.93 41.12 66.53 9.43 4.71 9.43 18.17 0 22.88C15.92 280.04 0 305.8 0 333.97v7.64C0 382.7 33.3 416 74.38 416c32.02 0 60.44-20.49 70.57-50.86 7.68-23.03 11.6-45.14 38.11-45.14h273.87c27.38 0 31.58 25.54 38.11 45.14C505.17 395.51 533.6 416 565.61 416c41.08 0 74.38-33.3 74.38-74.39v-7.64c0-28.18-15.92-53.93-41.12-66.53-9.42-4.71-9.42-18.17.01-22.88z\"]\n};\nvar faBong = {\n prefix: 'fas',\n iconName: 'bong',\n icon: [448, 512, [], \"f55c\", \"M302.5 512c23.18 0 44.43-12.58 56-32.66C374.69 451.26 384 418.75 384 384c0-36.12-10.08-69.81-27.44-98.62L400 241.94l9.38 9.38c6.25 6.25 16.38 6.25 22.63 0l11.3-11.32c6.25-6.25 6.25-16.38 0-22.63l-52.69-52.69c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l9.38 9.38-39.41 39.41c-11.56-11.37-24.53-21.33-38.65-29.51V63.74l15.97-.02c8.82-.01 15.97-7.16 15.98-15.98l.04-31.72C320 7.17 312.82-.01 303.97 0L80.03.26c-8.82.01-15.97 7.16-15.98 15.98l-.04 31.73c-.01 8.85 7.17 16.02 16.02 16.01L96 63.96v153.93C38.67 251.1 0 312.97 0 384c0 34.75 9.31 67.27 25.5 95.34C37.08 499.42 58.33 512 81.5 512h221zM120.06 259.43L144 245.56V63.91l96-.11v181.76l23.94 13.87c24.81 14.37 44.12 35.73 56.56 60.57h-257c12.45-24.84 31.75-46.2 56.56-60.57z\"]\n};\nvar faBook = {\n prefix: 'fas',\n iconName: 'book',\n icon: [448, 512, [], \"f02d\", \"M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z\"]\n};\nvar faBookDead = {\n prefix: 'fas',\n iconName: 'book-dead',\n icon: [448, 512, [], \"f6b7\", \"M272 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm176 222.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM240 56c44.2 0 80 28.7 80 64 0 20.9-12.7 39.2-32 50.9V184c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16v-13.1c-19.3-11.7-32-30-32-50.9 0-35.3 35.8-64 80-64zM124.8 223.3l6.3-14.7c1.7-4.1 6.4-5.9 10.5-4.2l98.3 42.1 98.4-42.1c4.1-1.7 8.8.1 10.5 4.2l6.3 14.7c1.7 4.1-.1 8.8-4.2 10.5L280.6 264l70.3 30.1c4.1 1.7 5.9 6.4 4.2 10.5l-6.3 14.7c-1.7 4.1-6.4 5.9-10.5 4.2L240 281.4l-98.3 42.2c-4.1 1.7-8.8-.1-10.5-4.2l-6.3-14.7c-1.7-4.1.1-8.8 4.2-10.5l70.4-30.1-70.5-30.3c-4.1-1.7-5.9-6.4-4.2-10.5zm256 224.7H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8zM208 136c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16z\"]\n};\nvar faBookMedical = {\n prefix: 'fas',\n iconName: 'book-medical',\n icon: [448, 512, [], \"f7e6\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16q0-9.6-9.6-19.2c-3.2-16-3.2-60.8 0-73.6q9.6-4.8 9.6-19.2zM144 168a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8zm236.8 280H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8z\"]\n};\nvar faBookOpen = {\n prefix: 'fas',\n iconName: 'book-open',\n icon: [576, 512, [], \"f518\", \"M542.22 32.05c-54.8 3.11-163.72 14.43-230.96 55.59-4.64 2.84-7.27 7.89-7.27 13.17v363.87c0 11.55 12.63 18.85 23.28 13.49 69.18-34.82 169.23-44.32 218.7-46.92 16.89-.89 30.02-14.43 30.02-30.66V62.75c.01-17.71-15.35-31.74-33.77-30.7zM264.73 87.64C197.5 46.48 88.58 35.17 33.78 32.05 15.36 31.01 0 45.04 0 62.75V400.6c0 16.24 13.13 29.78 30.02 30.66 49.49 2.6 149.59 12.11 218.77 46.95 10.62 5.35 23.21-1.94 23.21-13.46V100.63c0-5.29-2.62-10.14-7.27-12.99z\"]\n};\nvar faBookReader = {\n prefix: 'fas',\n iconName: 'book-reader',\n icon: [512, 512, [], \"f5da\", \"M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z\"]\n};\nvar faBookmark = {\n prefix: 'fas',\n iconName: 'bookmark',\n icon: [384, 512, [], \"f02e\", \"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"]\n};\nvar faBorderAll = {\n prefix: 'fas',\n iconName: 'border-all',\n icon: [448, 512, [], \"f84c\", \"M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z\"]\n};\nvar faBorderNone = {\n prefix: 'fas',\n iconName: 'border-none',\n icon: [448, 512, [], \"f850\", \"M240 224h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-288 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM240 320h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-384h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM48 224H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-192H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBorderStyle = {\n prefix: 'fas',\n iconName: 'border-style',\n icon: [448, 512, [], \"f853\", \"M240 416h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-96 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm192 0h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm96-192h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 96h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-288h-32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-96H32A32 32 0 0 0 0 64v400a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V96h368a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faBowlingBall = {\n prefix: 'fas',\n iconName: 'bowling-ball',\n icon: [496, 512, [], \"f436\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM120 192c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64-96c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm48 144c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faBox = {\n prefix: 'fas',\n iconName: 'box',\n icon: [512, 512, [], \"f466\", \"M509.5 184.6L458.9 32.8C452.4 13.2 434.1 0 413.4 0H272v192h238.7c-.4-2.5-.4-5-1.2-7.4zM240 0H98.6c-20.7 0-39 13.2-45.5 32.8L2.5 184.6c-.8 2.4-.8 4.9-1.2 7.4H240V0zM0 224v240c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V224H0z\"]\n};\nvar faBoxOpen = {\n prefix: 'fas',\n iconName: 'box-open',\n icon: [640, 512, [], \"f49e\", \"M425.7 256c-16.9 0-32.8-9-41.4-23.4L320 126l-64.2 106.6c-8.7 14.5-24.6 23.5-41.5 23.5-4.5 0-9-.6-13.3-1.9L64 215v178c0 14.7 10 27.5 24.2 31l216.2 54.1c10.2 2.5 20.9 2.5 31 0L551.8 424c14.2-3.6 24.2-16.4 24.2-31V215l-137 39.1c-4.3 1.3-8.8 1.9-13.3 1.9zm212.6-112.2L586.8 41c-3.1-6.2-9.8-9.8-16.7-8.9L320 64l91.7 152.1c3.8 6.3 11.4 9.3 18.5 7.3l197.9-56.5c9.9-2.9 14.7-13.9 10.2-23.1zM53.2 41L1.7 143.8c-4.6 9.2.3 20.2 10.1 23l197.9 56.5c7.1 2 14.7-1 18.5-7.3L320 64 69.8 32.1c-6.9-.8-13.5 2.7-16.6 8.9z\"]\n};\nvar faBoxTissue = {\n prefix: 'fas',\n iconName: 'box-tissue',\n icon: [512, 512, [], \"e05b\", \"M383.88,287.82l64-192H338.47a70.2,70.2,0,0,1-66.59-48,70.21,70.21,0,0,0-66.6-48H63.88l64,288Zm-384,192a32,32,0,0,0,32,32h448a32,32,0,0,0,32-32v-64H-.12Zm480-256H438.94l-21.33,64h14.27a16,16,0,0,1,0,32h-352a16,16,0,1,1,0-32H95.09l-14.22-64h-49a32,32,0,0,0-32,32v128h512v-128A32,32,0,0,0,479.88,223.82Z\"]\n};\nvar faBoxes = {\n prefix: 'fas',\n iconName: 'boxes',\n icon: [576, 512, [], \"f468\", \"M560 288h-80v96l-32-21.3-32 21.3v-96h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16zm-384-64h224c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16h-80v96l-32-21.3L256 96V0h-80c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16zm64 64h-80v96l-32-21.3L96 384v-96H16c-8.8 0-16 7.2-16 16v192c0 8.8 7.2 16 16 16h224c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16z\"]\n};\nvar faBraille = {\n prefix: 'fas',\n iconName: 'braille',\n icon: [640, 512, [], \"f2a1\", \"M128 256c0 35.346-28.654 64-64 64S0 291.346 0 256s28.654-64 64-64 64 28.654 64 64zM64 384c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352C28.654 32 0 60.654 0 96s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm224 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zm160 192c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 160c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0-320c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faBrain = {\n prefix: 'fas',\n iconName: 'brain',\n icon: [576, 512, [], \"f5dc\", \"M208 0c-29.9 0-54.7 20.5-61.8 48.2-.8 0-1.4-.2-2.2-.2-35.3 0-64 28.7-64 64 0 4.8.6 9.5 1.7 14C52.5 138 32 166.6 32 200c0 12.6 3.2 24.3 8.3 34.9C16.3 248.7 0 274.3 0 304c0 33.3 20.4 61.9 49.4 73.9-.9 4.6-1.4 9.3-1.4 14.1 0 39.8 32.2 72 72 72 4.1 0 8.1-.5 12-1.2 9.6 28.5 36.2 49.2 68 49.2 39.8 0 72-32.2 72-72V64c0-35.3-28.7-64-64-64zm368 304c0-29.7-16.3-55.3-40.3-69.1 5.2-10.6 8.3-22.3 8.3-34.9 0-33.4-20.5-62-49.7-74 1-4.5 1.7-9.2 1.7-14 0-35.3-28.7-64-64-64-.8 0-1.5.2-2.2.2C422.7 20.5 397.9 0 368 0c-35.3 0-64 28.6-64 64v376c0 39.8 32.2 72 72 72 31.8 0 58.4-20.7 68-49.2 3.9.7 7.9 1.2 12 1.2 39.8 0 72-32.2 72-72 0-4.8-.5-9.5-1.4-14.1 29-12 49.4-40.6 49.4-73.9z\"]\n};\nvar faBreadSlice = {\n prefix: 'fas',\n iconName: 'bread-slice',\n icon: [576, 512, [], \"f7ec\", \"M288 0C108 0 0 93.4 0 169.14 0 199.44 24.24 224 64 224v256c0 17.67 16.12 32 36 32h376c19.88 0 36-14.33 36-32V224c39.76 0 64-24.56 64-54.86C576 93.4 468 0 288 0z\"]\n};\nvar faBriefcase = {\n prefix: 'fas',\n iconName: 'briefcase',\n icon: [512, 512, [], \"f0b1\", \"M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z\"]\n};\nvar faBriefcaseMedical = {\n prefix: 'fas',\n iconName: 'briefcase-medical',\n icon: [512, 512, [], \"f469\", \"M464 128h-80V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48zM192 96h128v32H192V96zm160 248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48z\"]\n};\nvar faBroadcastTower = {\n prefix: 'fas',\n iconName: 'broadcast-tower',\n icon: [640, 512, [], \"f519\", \"M150.94 192h33.73c11.01 0 18.61-10.83 14.86-21.18-4.93-13.58-7.55-27.98-7.55-42.82s2.62-29.24 7.55-42.82C203.29 74.83 195.68 64 184.67 64h-33.73c-7.01 0-13.46 4.49-15.41 11.23C130.64 92.21 128 109.88 128 128c0 18.12 2.64 35.79 7.54 52.76 1.94 6.74 8.39 11.24 15.4 11.24zM89.92 23.34C95.56 12.72 87.97 0 75.96 0H40.63c-6.27 0-12.14 3.59-14.74 9.31C9.4 45.54 0 85.65 0 128c0 24.75 3.12 68.33 26.69 118.86 2.62 5.63 8.42 9.14 14.61 9.14h34.84c12.02 0 19.61-12.74 13.95-23.37-49.78-93.32-16.71-178.15-.17-209.29zM614.06 9.29C611.46 3.58 605.6 0 599.33 0h-35.42c-11.98 0-19.66 12.66-14.02 23.25 18.27 34.29 48.42 119.42.28 209.23-5.72 10.68 1.8 23.52 13.91 23.52h35.23c6.27 0 12.13-3.58 14.73-9.29C630.57 210.48 640 170.36 640 128s-9.42-82.48-25.94-118.71zM489.06 64h-33.73c-11.01 0-18.61 10.83-14.86 21.18 4.93 13.58 7.55 27.98 7.55 42.82s-2.62 29.24-7.55 42.82c-3.76 10.35 3.85 21.18 14.86 21.18h33.73c7.02 0 13.46-4.49 15.41-11.24 4.9-16.97 7.53-34.64 7.53-52.76 0-18.12-2.64-35.79-7.54-52.76-1.94-6.75-8.39-11.24-15.4-11.24zm-116.3 100.12c7.05-10.29 11.2-22.71 11.2-36.12 0-35.35-28.63-64-63.96-64-35.32 0-63.96 28.65-63.96 64 0 13.41 4.15 25.83 11.2 36.12l-130.5 313.41c-3.4 8.15.46 17.52 8.61 20.92l29.51 12.31c8.15 3.4 17.52-.46 20.91-8.61L244.96 384h150.07l49.2 118.15c3.4 8.16 12.76 12.01 20.91 8.61l29.51-12.31c8.15-3.4 12-12.77 8.61-20.92l-130.5-313.41zM271.62 320L320 203.81 368.38 320h-96.76z\"]\n};\nvar faBroom = {\n prefix: 'fas',\n iconName: 'broom',\n icon: [640, 512, [], \"f51a\", \"M256.47 216.77l86.73 109.18s-16.6 102.36-76.57 150.12C206.66 523.85 0 510.19 0 510.19s3.8-23.14 11-55.43l94.62-112.17c3.97-4.7-.87-11.62-6.65-9.5l-60.4 22.09c14.44-41.66 32.72-80.04 54.6-97.47 59.97-47.76 163.3-40.94 163.3-40.94zM636.53 31.03l-19.86-25c-5.49-6.9-15.52-8.05-22.41-2.56l-232.48 177.8-34.14-42.97c-5.09-6.41-15.14-5.21-18.59 2.21l-25.33 54.55 86.73 109.18 58.8-12.45c8-1.69 11.42-11.2 6.34-17.6l-34.09-42.92 232.48-177.8c6.89-5.48 8.04-15.53 2.55-22.44z\"]\n};\nvar faBrush = {\n prefix: 'fas',\n iconName: 'brush',\n icon: [384, 512, [], \"f55d\", \"M352 0H32C14.33 0 0 14.33 0 32v224h384V32c0-17.67-14.33-32-32-32zM0 320c0 35.35 28.66 64 64 64h64v64c0 35.35 28.66 64 64 64s64-28.65 64-64v-64h64c35.34 0 64-28.65 64-64v-32H0v32zm192 104c13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24s-24-10.75-24-24c0-13.26 10.75-24 24-24z\"]\n};\nvar faBug = {\n prefix: 'fas',\n iconName: 'bug',\n icon: [512, 512, [], \"f188\", \"M511.988 288.9c-.478 17.43-15.217 31.1-32.653 31.1H424v16c0 21.864-4.882 42.584-13.6 61.145l60.228 60.228c12.496 12.497 12.496 32.758 0 45.255-12.498 12.497-32.759 12.496-45.256 0l-54.736-54.736C345.886 467.965 314.351 480 280 480V236c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v244c-34.351 0-65.886-12.035-90.636-32.108l-54.736 54.736c-12.498 12.497-32.759 12.496-45.256 0-12.496-12.497-12.496-32.758 0-45.255l60.228-60.228C92.882 378.584 88 357.864 88 336v-16H32.666C15.23 320 .491 306.33.013 288.9-.484 270.816 14.028 256 32 256h56v-58.745l-46.628-46.628c-12.496-12.497-12.496-32.758 0-45.255 12.498-12.497 32.758-12.497 45.256 0L141.255 160h229.489l54.627-54.627c12.498-12.497 32.758-12.497 45.256 0 12.496 12.497 12.496 32.758 0 45.255L424 197.255V256h56c17.972 0 32.484 14.816 31.988 32.9zM257 0c-61.856 0-112 50.144-112 112h224C369 50.144 318.856 0 257 0z\"]\n};\nvar faBuilding = {\n prefix: 'fas',\n iconName: 'building',\n icon: [448, 512, [], \"f1ad\", \"M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z\"]\n};\nvar faBullhorn = {\n prefix: 'fas',\n iconName: 'bullhorn',\n icon: [576, 512, [], \"f0a1\", \"M576 240c0-23.63-12.95-44.04-32-55.12V32.01C544 23.26 537.02 0 512 0c-7.12 0-14.19 2.38-19.98 7.02l-85.03 68.03C364.28 109.19 310.66 128 256 128H64c-35.35 0-64 28.65-64 64v96c0 35.35 28.65 64 64 64h33.7c-1.39 10.48-2.18 21.14-2.18 32 0 39.77 9.26 77.35 25.56 110.94 5.19 10.69 16.52 17.06 28.4 17.06h74.28c26.05 0 41.69-29.84 25.9-50.56-16.4-21.52-26.15-48.36-26.15-77.44 0-11.11 1.62-21.79 4.41-32H256c54.66 0 108.28 18.81 150.98 52.95l85.03 68.03a32.023 32.023 0 0 0 19.98 7.02c24.92 0 32-22.78 32-32V295.13C563.05 284.04 576 263.63 576 240zm-96 141.42l-33.05-26.44C392.95 311.78 325.12 288 256 288v-96c69.12 0 136.95-23.78 190.95-66.98L480 98.58v282.84z\"]\n};\nvar faBullseye = {\n prefix: 'fas',\n iconName: 'bullseye',\n icon: [496, 512, [], \"f140\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 432c-101.69 0-184-82.29-184-184 0-101.69 82.29-184 184-184 101.69 0 184 82.29 184 184 0 101.69-82.29 184-184 184zm0-312c-70.69 0-128 57.31-128 128s57.31 128 128 128 128-57.31 128-128-57.31-128-128-128zm0 192c-35.29 0-64-28.71-64-64s28.71-64 64-64 64 28.71 64 64-28.71 64-64 64z\"]\n};\nvar faBurn = {\n prefix: 'fas',\n iconName: 'burn',\n icon: [384, 512, [], \"f46a\", \"M192 0C79.7 101.3 0 220.9 0 300.5 0 425 79 512 192 512s192-87 192-211.5c0-79.9-80.2-199.6-192-300.5zm0 448c-56.5 0-96-39-96-94.8 0-13.5 4.6-61.5 96-161.2 91.4 99.7 96 147.7 96 161.2 0 55.8-39.5 94.8-96 94.8z\"]\n};\nvar faBus = {\n prefix: 'fas',\n iconName: 'bus',\n icon: [512, 512, [], \"f207\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM112 400c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm16-112c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32v128c0 17.67-14.33 32-32 32H128zm272 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusAlt = {\n prefix: 'fas',\n iconName: 'bus-alt',\n icon: [512, 512, [], \"f55e\", \"M488 128h-8V80c0-44.8-99.2-80-224-80S32 35.2 32 80v48h-8c-13.25 0-24 10.74-24 24v80c0 13.25 10.75 24 24 24h8v160c0 17.67 14.33 32 32 32v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h192v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h6.4c16 0 25.6-12.8 25.6-25.6V256h8c13.25 0 24-10.75 24-24v-80c0-13.26-10.75-24-24-24zM160 72c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H168c-4.42 0-8-3.58-8-8V72zm-48 328c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128-112H128c-17.67 0-32-14.33-32-32v-96c0-17.67 14.33-32 32-32h112v160zm32 0V128h112c17.67 0 32 14.33 32 32v96c0 17.67-14.33 32-32 32H272zm128 112c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faBusinessTime = {\n prefix: 'fas',\n iconName: 'business-time',\n icon: [640, 512, [], \"f64a\", \"M496 224c-79.59 0-144 64.41-144 144s64.41 144 144 144 144-64.41 144-144-64.41-144-144-144zm64 150.29c0 5.34-4.37 9.71-9.71 9.71h-60.57c-5.34 0-9.71-4.37-9.71-9.71v-76.57c0-5.34 4.37-9.71 9.71-9.71h12.57c5.34 0 9.71 4.37 9.71 9.71V352h38.29c5.34 0 9.71 4.37 9.71 9.71v12.58zM496 192c5.4 0 10.72.33 16 .81V144c0-25.6-22.4-48-48-48h-80V48c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h395.12c28.6-20.09 63.35-32 100.88-32zM320 96H192V64h128v32zm6.82 224H208c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h291.43C327.1 423.96 320 396.82 320 368c0-16.66 2.48-32.72 6.82-48z\"]\n};\nvar faCalculator = {\n prefix: 'fas',\n iconName: 'calculator',\n icon: [448, 512, [], \"f1ec\", \"M400 0H48C22.4 0 0 22.4 0 48v416c0 25.6 22.4 48 48 48h352c25.6 0 48-22.4 48-48V48c0-25.6-22.4-48-48-48zM128 435.2c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm128 128c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8V268.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v166.4zm0-256c0 6.4-6.4 12.8-12.8 12.8H76.8c-6.4 0-12.8-6.4-12.8-12.8V76.8C64 70.4 70.4 64 76.8 64h294.4c6.4 0 12.8 6.4 12.8 12.8v102.4z\"]\n};\nvar faCalendar = {\n prefix: 'fas',\n iconName: 'calendar',\n icon: [448, 512, [], \"f133\", \"M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z\"]\n};\nvar faCalendarAlt = {\n prefix: 'fas',\n iconName: 'calendar-alt',\n icon: [448, 512, [], \"f073\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarCheck = {\n prefix: 'fas',\n iconName: 'calendar-check',\n icon: [448, 512, [], \"f274\", \"M436 160H12c-6.627 0-12-5.373-12-12v-36c0-26.51 21.49-48 48-48h48V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h128V12c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v52h48c26.51 0 48 21.49 48 48v36c0 6.627-5.373 12-12 12zM12 192h424c6.627 0 12 5.373 12 12v260c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V204c0-6.627 5.373-12 12-12zm333.296 95.947l-28.169-28.398c-4.667-4.705-12.265-4.736-16.97-.068L194.12 364.665l-45.98-46.352c-4.667-4.705-12.266-4.736-16.971-.068l-28.397 28.17c-4.705 4.667-4.736 12.265-.068 16.97l82.601 83.269c4.667 4.705 12.265 4.736 16.97.068l142.953-141.805c4.705-4.667 4.736-12.265.068-16.97z\"]\n};\nvar faCalendarDay = {\n prefix: 'fas',\n iconName: 'calendar-day',\n icon: [448, 512, [], \"f783\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCalendarMinus = {\n prefix: 'fas',\n iconName: 'calendar-minus',\n icon: [448, 512, [], \"f272\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm304 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H132c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h184z\"]\n};\nvar faCalendarPlus = {\n prefix: 'fas',\n iconName: 'calendar-plus',\n icon: [448, 512, [], \"f271\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm316 140c0-6.6-5.4-12-12-12h-60v-60c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v60h-60c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h60v60c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-60h60c6.6 0 12-5.4 12-12v-40z\"]\n};\nvar faCalendarTimes = {\n prefix: 'fas',\n iconName: 'calendar-times',\n icon: [448, 512, [], \"f273\", \"M436 160H12c-6.6 0-12-5.4-12-12v-36c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48v36c0 6.6-5.4 12-12 12zM12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm257.3 160l48.1-48.1c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0L224 306.7l-48.1-48.1c-4.7-4.7-12.3-4.7-17 0l-28.3 28.3c-4.7 4.7-4.7 12.3 0 17l48.1 48.1-48.1 48.1c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l48.1-48.1 48.1 48.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L269.3 352z\"]\n};\nvar faCalendarWeek = {\n prefix: 'fas',\n iconName: 'calendar-week',\n icon: [448, 512, [], \"f784\", \"M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h288c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-64zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z\"]\n};\nvar faCamera = {\n prefix: 'fas',\n iconName: 'camera',\n icon: [512, 512, [], \"f030\", \"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"]\n};\nvar faCameraRetro = {\n prefix: 'fas',\n iconName: 'camera-retro',\n icon: [512, 512, [], \"f083\", \"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm0 32h106c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H38c-3.3 0-6-2.7-6-6V80c0-8.8 7.2-16 16-16zm426 96H38c-3.3 0-6-2.7-6-6v-36c0-3.3 2.7-6 6-6h138l30.2-45.3c1.1-1.7 3-2.7 5-2.7H464c8.8 0 16 7.2 16 16v74c0 3.3-2.7 6-6 6zM256 424c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88zm-48 104c-8.8 0-16-7.2-16-16 0-35.3 28.7-64 64-64 8.8 0 16 7.2 16 16s-7.2 16-16 16c-17.6 0-32 14.4-32 32 0 8.8-7.2 16-16 16z\"]\n};\nvar faCampground = {\n prefix: 'fas',\n iconName: 'campground',\n icon: [640, 512, [], \"f6bb\", \"M624 448h-24.68L359.54 117.75l53.41-73.55c5.19-7.15 3.61-17.16-3.54-22.35l-25.9-18.79c-7.15-5.19-17.15-3.61-22.35 3.55L320 63.3 278.83 6.6c-5.19-7.15-15.2-8.74-22.35-3.55l-25.88 18.8c-7.15 5.19-8.74 15.2-3.54 22.35l53.41 73.55L40.68 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM320 288l116.36 160H203.64L320 288z\"]\n};\nvar faCandyCane = {\n prefix: 'fas',\n iconName: 'candy-cane',\n icon: [512, 512, [], \"f786\", \"M497.5 92C469.6 33.1 411.8 0 352.4 0c-27.9 0-56.2 7.3-81.8 22.6L243.1 39c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5l27.5-16.4c5.1-3.1 10.8-4.5 16.4-4.5 10.9 0 21.5 5.6 27.5 15.6 9.1 15.1 4.1 34.8-11 43.9L15.6 397.6c-15.2 9.1-20.1 28.7-11 43.9l32.8 54.9c6 10 16.6 15.6 27.5 15.6 5.6 0 11.2-1.5 16.4-4.5L428.6 301c71.7-42.9 104.6-133.5 68.9-209zm-177.7 13l-2.5 1.5L296.8 45c9.7-4.7 19.8-8.1 30.3-10.2l20.6 61.8c-9.8.8-19.4 3.3-27.9 8.4zM145.9 431.8l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm107.5-63.9l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zM364.3 302l-60.5-38.5 30.8-18.3 60.5 38.5-30.8 18.3zm20.4-197.3l46-46c8.4 6.5 16 14.1 22.6 22.6L407.6 127c-5.7-9.3-13.7-16.9-22.9-22.3zm82.1 107.8l-59.5-19.8c3.2-5.3 5.8-10.9 7.4-17.1 1.1-4.5 1.7-9.1 1.8-13.6l60.4 20.1c-2.1 10.4-5.5 20.6-10.1 30.4z\"]\n};\nvar faCannabis = {\n prefix: 'fas',\n iconName: 'cannabis',\n icon: [512, 512, [], \"f55f\", \"M503.47 360.25c-1.56-.82-32.39-16.89-76.78-25.81 64.25-75.12 84.05-161.67 84.93-165.64 1.18-5.33-.44-10.9-4.3-14.77-3.03-3.04-7.12-4.7-11.32-4.7-1.14 0-2.29.12-3.44.38-3.88.85-86.54 19.59-160.58 79.76.01-1.46.01-2.93.01-4.4 0-118.79-59.98-213.72-62.53-217.7A15.973 15.973 0 0 0 256 0c-5.45 0-10.53 2.78-13.47 7.37-2.55 3.98-62.53 98.91-62.53 217.7 0 1.47.01 2.94.01 4.4-74.03-60.16-156.69-78.9-160.58-79.76-1.14-.25-2.29-.38-3.44-.38-4.2 0-8.29 1.66-11.32 4.7A15.986 15.986 0 0 0 .38 168.8c.88 3.97 20.68 90.52 84.93 165.64-44.39 8.92-75.21 24.99-76.78 25.81a16.003 16.003 0 0 0-.02 28.29c2.45 1.29 60.76 31.72 133.49 31.72 6.14 0 11.96-.1 17.5-.31-11.37 22.23-16.52 38.31-16.81 39.22-1.8 5.68-.29 11.89 3.91 16.11a16.019 16.019 0 0 0 16.1 3.99c1.83-.57 37.72-11.99 77.3-39.29V504c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-64.01c39.58 27.3 75.47 38.71 77.3 39.29a16.019 16.019 0 0 0 16.1-3.99c4.2-4.22 5.71-10.43 3.91-16.11-.29-.91-5.45-16.99-16.81-39.22 5.54.21 11.37.31 17.5.31 72.72 0 131.04-30.43 133.49-31.72 5.24-2.78 8.52-8.22 8.51-14.15-.01-5.94-3.29-11.39-8.53-14.15z\"]\n};\nvar faCapsules = {\n prefix: 'fas',\n iconName: 'capsules',\n icon: [576, 512, [], \"f46b\", \"M555.3 300.1L424.2 112.8C401.9 81 366.4 64 330.4 64c-22.6 0-45.5 6.7-65.5 20.7-19.7 13.8-33.7 32.8-41.5 53.8C220.5 79.2 172 32 112 32 50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V218.9c3.3 8.6 7.3 17.1 12.8 25L368 431.2c22.2 31.8 57.7 48.8 93.8 48.8 22.7 0 45.5-6.7 65.5-20.7 51.7-36.2 64.2-107.5 28-159.2zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm194.8 44.9l-65.6-93.7c-7.7-11-10.7-24.4-8.3-37.6 2.3-13.2 9.7-24.8 20.7-32.5 8.5-6 18.5-9.1 28.8-9.1 16.5 0 31.9 8 41.3 21.5l65.6 93.7-82.5 57.7z\"]\n};\nvar faCar = {\n prefix: 'fas',\n iconName: 'car',\n icon: [512, 512, [], \"f1b9\", \"M499.99 176h-59.87l-16.64-41.6C406.38 91.63 365.57 64 319.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4L71.87 176H12.01C4.2 176-1.53 183.34.37 190.91l6 24C7.7 220.25 12.5 224 18.01 224h20.07C24.65 235.73 16 252.78 16 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-19.22-8.65-36.27-22.07-48H494c5.51 0 10.31-3.75 11.64-9.09l6-24c1.89-7.57-3.84-14.91-11.65-14.91zm-352.06-17.83c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L384 208H128l19.93-49.83zM96 319.8c-19.2 0-32-12.76-32-31.9S76.8 256 96 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S396.8 256 416 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarAlt = {\n prefix: 'fas',\n iconName: 'car-alt',\n icon: [480, 512, [], \"f5de\", \"M438.66 212.33l-11.24-28.1-19.93-49.83C390.38 91.63 349.57 64 303.5 64h-127c-46.06 0-86.88 27.63-103.99 70.4l-19.93 49.83-11.24 28.1C17.22 221.5 0 244.66 0 272v48c0 16.12 6.16 30.67 16 41.93V416c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-54.07c9.84-11.25 16-25.8 16-41.93v-48c0-27.34-17.22-50.5-41.34-59.67zm-306.73-54.16c7.29-18.22 24.94-30.17 44.57-30.17h127c19.63 0 37.28 11.95 44.57 30.17L368 208H112l19.93-49.83zM80 319.8c-19.2 0-32-12.76-32-31.9S60.8 256 80 256s48 28.71 48 47.85-28.8 15.95-48 15.95zm320 0c-19.2 0-48 3.19-48-15.95S380.8 256 400 256s32 12.76 32 31.9-12.8 31.9-32 31.9z\"]\n};\nvar faCarBattery = {\n prefix: 'fas',\n iconName: 'car-battery',\n icon: [512, 512, [], \"f5df\", \"M480 128h-32V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v48H192V80c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v48H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32zM192 264c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm256 0c0 4.42-3.58 8-8 8h-40v40c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-40h-40c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h40v-40c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v40h40c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faCarCrash = {\n prefix: 'fas',\n iconName: 'car-crash',\n icon: [640, 512, [], \"f5e1\", \"M143.25 220.81l-12.42 46.37c-3.01 11.25-3.63 22.89-2.41 34.39l-35.2 28.98c-6.57 5.41-16.31-.43-14.62-8.77l15.44-76.68c1.06-5.26-2.66-10.28-8-10.79l-77.86-7.55c-8.47-.82-11.23-11.83-4.14-16.54l65.15-43.3c4.46-2.97 5.38-9.15 1.98-13.29L21.46 93.22c-5.41-6.57.43-16.3 8.78-14.62l76.68 15.44c5.26 1.06 10.28-2.66 10.8-8l7.55-77.86c.82-8.48 11.83-11.23 16.55-4.14l43.3 65.14c2.97 4.46 9.15 5.38 13.29 1.98l60.4-49.71c6.57-5.41 16.3.43 14.62 8.77L262.1 86.38c-2.71 3.05-5.43 6.09-7.91 9.4l-32.15 42.97-10.71 14.32c-32.73 8.76-59.18 34.53-68.08 67.74zm494.57 132.51l-12.42 46.36c-3.13 11.68-9.38 21.61-17.55 29.36a66.876 66.876 0 0 1-8.76 7l-13.99 52.23c-1.14 4.27-3.1 8.1-5.65 11.38-7.67 9.84-20.74 14.68-33.54 11.25L515 502.62c-17.07-4.57-27.2-22.12-22.63-39.19l8.28-30.91-247.28-66.26-8.28 30.91c-4.57 17.07-22.12 27.2-39.19 22.63l-30.91-8.28c-12.8-3.43-21.7-14.16-23.42-26.51-.57-4.12-.35-8.42.79-12.68l13.99-52.23a66.62 66.62 0 0 1-4.09-10.45c-3.2-10.79-3.65-22.52-.52-34.2l12.42-46.37c5.31-19.8 19.36-34.83 36.89-42.21a64.336 64.336 0 0 1 18.49-4.72l18.13-24.23 32.15-42.97c3.45-4.61 7.19-8.9 11.2-12.84 8-7.89 17.03-14.44 26.74-19.51 4.86-2.54 9.89-4.71 15.05-6.49 10.33-3.58 21.19-5.63 32.24-6.04 11.05-.41 22.31.82 33.43 3.8l122.68 32.87c11.12 2.98 21.48 7.54 30.85 13.43a111.11 111.11 0 0 1 34.69 34.5c8.82 13.88 14.64 29.84 16.68 46.99l6.36 53.29 3.59 30.05a64.49 64.49 0 0 1 22.74 29.93c4.39 11.88 5.29 25.19 1.75 38.39zM255.58 234.34c-18.55-4.97-34.21 4.04-39.17 22.53-4.96 18.49 4.11 34.12 22.65 39.09 18.55 4.97 45.54 15.51 50.49-2.98 4.96-18.49-15.43-53.67-33.97-58.64zm290.61 28.17l-6.36-53.29c-.58-4.87-1.89-9.53-3.82-13.86-5.8-12.99-17.2-23.01-31.42-26.82l-122.68-32.87a48.008 48.008 0 0 0-50.86 17.61l-32.15 42.97 172 46.08 75.29 20.18zm18.49 54.65c-18.55-4.97-53.8 15.31-58.75 33.79-4.95 18.49 23.69 22.86 42.24 27.83 18.55 4.97 34.21-4.04 39.17-22.53 4.95-18.48-4.11-34.12-22.66-39.09z\"]\n};\nvar faCarSide = {\n prefix: 'fas',\n iconName: 'car-side',\n icon: [640, 512, [], \"f5e4\", \"M544 192h-16L419.22 56.02A64.025 64.025 0 0 0 369.24 32H155.33c-26.17 0-49.7 15.93-59.42 40.23L48 194.26C20.44 201.4 0 226.21 0 256v112c0 8.84 7.16 16 16 16h48c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h48c8.84 0 16-7.16 16-16v-80c0-53.02-42.98-96-96-96zM160 432c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm72-240H116.93l38.4-96H232v96zm48 0V96h89.24l76.8 96H280zm200 240c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faCaravan = {\n prefix: 'fas',\n iconName: 'caravan',\n icon: [640, 512, [], \"f8ff\", \"M416,208a16,16,0,1,0,16,16A16,16,0,0,0,416,208ZM624,320H576V160A160,160,0,0,0,416,0H64A64,64,0,0,0,0,64V320a64,64,0,0,0,64,64H96a96,96,0,0,0,192,0H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM192,432a48,48,0,1,1,48-48A48.05,48.05,0,0,1,192,432Zm64-240a32,32,0,0,1-32,32H96a32,32,0,0,1-32-32V128A32,32,0,0,1,96,96H224a32,32,0,0,1,32,32ZM448,320H320V128a32,32,0,0,1,32-32h64a32,32,0,0,1,32,32Z\"]\n};\nvar faCaretDown = {\n prefix: 'fas',\n iconName: 'caret-down',\n icon: [320, 512, [], \"f0d7\", \"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"]\n};\nvar faCaretLeft = {\n prefix: 'fas',\n iconName: 'caret-left',\n icon: [192, 512, [], \"f0d9\", \"M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z\"]\n};\nvar faCaretRight = {\n prefix: 'fas',\n iconName: 'caret-right',\n icon: [192, 512, [], \"f0da\", \"M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z\"]\n};\nvar faCaretSquareDown = {\n prefix: 'fas',\n iconName: 'caret-square-down',\n icon: [448, 512, [], \"f150\", \"M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM92.5 220.5l123 123c4.7 4.7 12.3 4.7 17 0l123-123c7.6-7.6 2.2-20.5-8.5-20.5H101c-10.7 0-16.1 12.9-8.5 20.5z\"]\n};\nvar faCaretSquareLeft = {\n prefix: 'fas',\n iconName: 'caret-square-left',\n icon: [448, 512, [], \"f191\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM259.515 124.485l-123.03 123.03c-4.686 4.686-4.686 12.284 0 16.971l123.029 123.029c7.56 7.56 20.485 2.206 20.485-8.485V132.971c.001-10.691-12.925-16.045-20.484-8.486z\"]\n};\nvar faCaretSquareRight = {\n prefix: 'fas',\n iconName: 'caret-square-right',\n icon: [448, 512, [], \"f152\", \"M48 32h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48zm140.485 355.515l123.029-123.029c4.686-4.686 4.686-12.284 0-16.971l-123.029-123.03c-7.56-7.56-20.485-2.206-20.485 8.485v246.059c0 10.691 12.926 16.045 20.485 8.486z\"]\n};\nvar faCaretSquareUp = {\n prefix: 'fas',\n iconName: 'caret-square-up',\n icon: [448, 512, [], \"f151\", \"M0 432V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48zm355.515-140.485l-123.03-123.03c-4.686-4.686-12.284-4.686-16.971 0L92.485 291.515c-7.56 7.56-2.206 20.485 8.485 20.485h246.059c10.691 0 16.045-12.926 8.486-20.485z\"]\n};\nvar faCaretUp = {\n prefix: 'fas',\n iconName: 'caret-up',\n icon: [320, 512, [], \"f0d8\", \"M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z\"]\n};\nvar faCarrot = {\n prefix: 'fas',\n iconName: 'carrot',\n icon: [512, 512, [], \"f787\", \"M298.2 156.6c-52.7-25.7-114.5-10.5-150.2 32.8l55.2 55.2c6.3 6.3 6.3 16.4 0 22.6-3.1 3.1-7.2 4.7-11.3 4.7s-8.2-1.6-11.3-4.7L130.4 217 2.3 479.7c-2.9 6-3.1 13.3 0 19.7 5.4 11.1 18.9 15.7 30 10.3l133.6-65.2-49.2-49.2c-6.3-6.2-6.3-16.4 0-22.6 6.3-6.2 16.4-6.2 22.6 0l57 57 102-49.8c24-11.7 44.5-31.3 57.1-57.1 30.1-61.7 4.5-136.1-57.2-166.2zm92.1-34.9C409.8 81 399.7 32.9 360 0c-50.3 41.7-52.5 107.5-7.9 151.9l8 8c44.4 44.6 110.3 42.4 151.9-7.9-32.9-39.7-81-49.8-121.7-30.3z\"]\n};\nvar faCartArrowDown = {\n prefix: 'fas',\n iconName: 'cart-arrow-down',\n icon: [576, 512, [], \"f218\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"]\n};\nvar faCartPlus = {\n prefix: 'fas',\n iconName: 'cart-plus',\n icon: [576, 512, [], \"f217\", \"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM408 168h-48v-40c0-8.837-7.163-16-16-16h-16c-8.837 0-16 7.163-16 16v40h-48c-8.837 0-16 7.163-16 16v16c0 8.837 7.163 16 16 16h48v40c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-40h48c8.837 0 16-7.163 16-16v-16c0-8.837-7.163-16-16-16z\"]\n};\nvar faCashRegister = {\n prefix: 'fas',\n iconName: 'cash-register',\n icon: [512, 512, [], \"f788\", \"M511.1 378.8l-26.7-160c-2.6-15.4-15.9-26.7-31.6-26.7H208v-64h96c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96v64H59.1c-15.6 0-29 11.3-31.6 26.7L.8 378.7c-.6 3.5-.9 7-.9 10.5V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-90.7c.1-3.5-.2-7-.8-10.5zM280 248c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16zm-32 64h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16zm-32-80c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16zM80 80V48h192v32H80zm40 200h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16zm16 64v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm216 112c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16zm24-112c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16zm48-80c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16z\"]\n};\nvar faCat = {\n prefix: 'fas',\n iconName: 'cat',\n icon: [512, 512, [], \"f6be\", \"M290.59 192c-20.18 0-106.82 1.98-162.59 85.95V192c0-52.94-43.06-96-96-96-17.67 0-32 14.33-32 32s14.33 32 32 32c17.64 0 32 14.36 32 32v256c0 35.3 28.7 64 64 64h176c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-32l128-96v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V289.86c-10.29 2.67-20.89 4.54-32 4.54-61.81 0-113.52-44.05-125.41-102.4zM448 96h-64l-64-64v134.4c0 53.02 42.98 96 96 96s96-42.98 96-96V32l-64 64zm-72 80c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm80 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faCertificate = {\n prefix: 'fas',\n iconName: 'certificate',\n icon: [512, 512, [], \"f0a3\", \"M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z\"]\n};\nvar faChair = {\n prefix: 'fas',\n iconName: 'chair',\n icon: [448, 512, [], \"f6c0\", \"M112 128c0-29.5 16.2-55 40-68.9V256h48V48h48v208h48V59.1c23.8 13.9 40 39.4 40 68.9v128h48V128C384 57.3 326.7 0 256 0h-64C121.3 0 64 57.3 64 128v128h48zm334.3 213.9l-10.7-32c-4.4-13.1-16.6-21.9-30.4-21.9H42.7c-13.8 0-26 8.8-30.4 21.9l-10.7 32C-5.2 362.6 10.2 384 32 384v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384h256v112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V384c21.8 0 37.2-21.4 30.3-42.1z\"]\n};\nvar faChalkboard = {\n prefix: 'fas',\n iconName: 'chalkboard',\n icon: [640, 512, [], \"f51b\", \"M96 64h448v352h64V40c0-22.06-17.94-40-40-40H72C49.94 0 32 17.94 32 40v376h64V64zm528 384H480v-64H288v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChalkboardTeacher = {\n prefix: 'fas',\n iconName: 'chalkboard-teacher',\n icon: [640, 512, [], \"f51c\", \"M208 352c-2.39 0-4.78.35-7.06 1.09C187.98 357.3 174.35 360 160 360c-14.35 0-27.98-2.7-40.95-6.91-2.28-.74-4.66-1.09-7.05-1.09C49.94 352-.33 402.48 0 464.62.14 490.88 21.73 512 48 512h224c26.27 0 47.86-21.12 48-47.38.33-62.14-49.94-112.62-112-112.62zm-48-32c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM592 0H208c-26.47 0-48 22.25-48 49.59V96c23.42 0 45.1 6.78 64 17.8V64h352v288h-64v-64H384v64h-76.24c19.1 16.69 33.12 38.73 39.69 64H592c26.47 0 48-22.25 48-49.59V49.59C640 22.25 618.47 0 592 0z\"]\n};\nvar faChargingStation = {\n prefix: 'fas',\n iconName: 'charging-station',\n icon: [576, 512, [], \"f5e7\", \"M336 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h320c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm208-320V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-32V80c0-8.84-7.16-16-16-16s-16 7.16-16 16v48h-16c-8.84 0-16 7.16-16 16v32c0 35.76 23.62 65.69 56 75.93v118.49c0 13.95-9.5 26.92-23.26 29.19C431.22 402.5 416 388.99 416 372v-28c0-48.6-39.4-88-88-88h-8V64c0-35.35-28.65-64-64-64H96C60.65 0 32 28.65 32 64v352h288V304h8c22.09 0 40 17.91 40 40v24.61c0 39.67 28.92 75.16 68.41 79.01C481.71 452.05 520 416.41 520 372V251.93c32.38-10.24 56-40.17 56-75.93v-32c0-8.84-7.16-16-16-16h-16zm-283.91 47.76l-93.7 139c-2.2 3.33-6.21 5.24-10.39 5.24-7.67 0-13.47-6.28-11.67-12.92L167.35 224H108c-7.25 0-12.85-5.59-11.89-11.89l16-107C112.9 99.9 117.98 96 124 96h68c7.88 0 13.62 6.54 11.6 13.21L192 160h57.7c9.24 0 15.01 8.78 10.39 15.76z\"]\n};\nvar faChartArea = {\n prefix: 'fas',\n iconName: 'chart-area',\n icon: [512, 512, [], \"f1fe\", \"M500 384c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v308h436zM372.7 159.5L288 216l-85.3-113.7c-5.1-6.8-15.5-6.3-19.9 1L96 248v104h384l-89.9-187.8c-3.2-6.5-11.4-8.7-17.4-4.7z\"]\n};\nvar faChartBar = {\n prefix: 'fas',\n iconName: 'chart-bar',\n icon: [512, 512, [], \"f080\", \"M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faChartLine = {\n prefix: 'fas',\n iconName: 'chart-line',\n icon: [512, 512, [], \"f201\", \"M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z\"]\n};\nvar faChartPie = {\n prefix: 'fas',\n iconName: 'chart-pie',\n icon: [544, 512, [], \"f200\", \"M527.79 288H290.5l158.03 158.03c6.04 6.04 15.98 6.53 22.19.68 38.7-36.46 65.32-85.61 73.13-140.86 1.34-9.46-6.51-17.85-16.06-17.85zm-15.83-64.8C503.72 103.74 408.26 8.28 288.8.04 279.68-.59 272 7.1 272 16.24V240h223.77c9.14 0 16.82-7.68 16.19-16.8zM224 288V50.71c0-9.55-8.39-17.4-17.84-16.06C86.99 51.49-4.1 155.6.14 280.37 4.5 408.51 114.83 513.59 243.03 511.98c50.4-.63 96.97-16.87 135.26-44.03 7.9-5.6 8.42-17.23 1.57-24.08L224 288z\"]\n};\nvar faCheck = {\n prefix: 'fas',\n iconName: 'check',\n icon: [512, 512, [], \"f00c\", \"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"]\n};\nvar faCheckCircle = {\n prefix: 'fas',\n iconName: 'check-circle',\n icon: [512, 512, [], \"f058\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"]\n};\nvar faCheckDouble = {\n prefix: 'fas',\n iconName: 'check-double',\n icon: [512, 512, [], \"f560\", \"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"]\n};\nvar faCheckSquare = {\n prefix: 'fas',\n iconName: 'check-square',\n icon: [448, 512, [], \"f14a\", \"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\"]\n};\nvar faCheese = {\n prefix: 'fas',\n iconName: 'cheese',\n icon: [512, 512, [], \"f7ef\", \"M0 288v160a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V288zM299.83 32a32 32 0 0 0-21.13 7L0 256h512c0-119.89-94-217.8-212.17-224z\"]\n};\nvar faChess = {\n prefix: 'fas',\n iconName: 'chess',\n icon: [512, 512, [], \"f439\", \"M74 208H64a16 16 0 0 0-16 16v16a16 16 0 0 0 16 16h15.94A535.78 535.78 0 0 1 64 384h128a535.78 535.78 0 0 1-15.94-128H192a16 16 0 0 0 16-16v-16a16 16 0 0 0-16-16h-10l33.89-90.38a16 16 0 0 0-15-21.62H144V64h24a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8h-24V8a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v24H88a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h24v32H55.09a16 16 0 0 0-15 21.62zm173.16 251.58L224 448v-16a16 16 0 0 0-16-16H48a16 16 0 0 0-16 16v16L8.85 459.58A16 16 0 0 0 0 473.89V496a16 16 0 0 0 16 16h224a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31zm92.77-157.78l-3.29 82.2h126.72l-3.29-82.21 24.6-20.79A32 32 0 0 0 496 256.54V198a6 6 0 0 0-6-6h-26.38a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H373.1a6 6 0 0 0-6 6v26h-24.71v-26a6 6 0 0 0-6-6H310a6 6 0 0 0-6 6v58.6a32 32 0 0 0 11.36 24.4zM384 304a16 16 0 0 1 32 0v32h-32zm119.16 155.58L480 448v-16a16 16 0 0 0-16-16H336a16 16 0 0 0-16 16v16l-23.15 11.58a16 16 0 0 0-8.85 14.31V496a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-22.11a16 16 0 0 0-8.84-14.31z\"]\n};\nvar faChessBishop = {\n prefix: 'fas',\n iconName: 'chess-bishop',\n icon: [320, 512, [], \"f43a\", \"M8 287.88c0 51.64 22.14 73.83 56 84.6V416h192v-43.52c33.86-10.77 56-33 56-84.6 0-30.61-10.73-67.1-26.69-102.56L185 285.65a8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 0-11.31L270.27 155.1c-20.8-37.91-46.47-72.1-70.87-92.59C213.4 59.09 224 47.05 224 32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32c0 15 10.6 27.09 24.6 30.51C67.81 106.8 8 214.5 8 287.88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessBoard = {\n prefix: 'fas',\n iconName: 'chess-board',\n icon: [512, 512, [], \"f43c\", \"M255.9.2h-64v64h64zM0 64.17v64h64v-64zM128 .2H64v64h64zm64 255.9v64h64v-64zM0 192.12v64h64v-64zM383.85.2h-64v64h64zm128 0h-64v64h64zM128 256.1H64v64h64zM511.8 448v-64h-64v64zm0-128v-64h-64v64zM383.85 512h64v-64h-64zm128-319.88v-64h-64v64zM128 512h64v-64h-64zM0 512h64v-64H0zm255.9 0h64v-64h-64zM0 320.07v64h64v-64zm319.88-191.92v-64h-64v64zm-64 128h64v-64h-64zm-64 128v64h64v-64zm128-64h64v-64h-64zm0-127.95h64v-64h-64zm0 191.93v64h64v-64zM64 384.05v64h64v-64zm128-255.9v-64h-64v64zm191.92 255.9h64v-64h-64zm-128-191.93v-64h-64v64zm128-127.95v64h64v-64zm-128 255.9v64h64v-64zm-64-127.95H128v64h64zm191.92 64h64v-64h-64zM128 128.15H64v64h64zm0 191.92v64h64v-64z\"]\n};\nvar faChessKing = {\n prefix: 'fas',\n iconName: 'chess-king',\n icon: [448, 512, [], \"f43f\", \"M400 448H48a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm16-288H256v-48h40a8 8 0 0 0 8-8V56a8 8 0 0 0-8-8h-40V8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v40h-40a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h40v48H32a32 32 0 0 0-30.52 41.54L74.56 416h298.88l73.08-214.46A32 32 0 0 0 416 160z\"]\n};\nvar faChessKnight = {\n prefix: 'fas',\n iconName: 'chess-knight',\n icon: [384, 512, [], \"f441\", \"M19 272.47l40.63 18.06a32 32 0 0 0 24.88.47l12.78-5.12a32 32 0 0 0 18.76-20.5l9.22-30.65a24 24 0 0 1 12.55-15.65L159.94 208v50.33a48 48 0 0 1-26.53 42.94l-57.22 28.65A80 80 0 0 0 32 401.48V416h319.86V224c0-106-85.92-192-191.92-192H12A12 12 0 0 0 0 44a16.9 16.9 0 0 0 1.79 7.58L16 80l-9 9a24 24 0 0 0-7 17v137.21a32 32 0 0 0 19 29.26zM52 128a20 20 0 1 1-20 20 20 20 0 0 1 20-20zm316 320H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessPawn = {\n prefix: 'fas',\n iconName: 'chess-pawn',\n icon: [320, 512, [], \"f443\", \"M105.1 224H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h16v5.49c0 44-4.14 86.6-24 122.51h176c-19.89-35.91-24-78.51-24-122.51V288h16a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-25.1c29.39-18.38 49.1-50.78 49.1-88a104 104 0 0 0-208 0c0 37.22 19.71 69.62 49.1 88zM304 448H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChessQueen = {\n prefix: 'fas',\n iconName: 'chess-queen',\n icon: [512, 512, [], \"f445\", \"M256 112a56 56 0 1 0-56-56 56 56 0 0 0 56 56zm176 336H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm72.87-263.84l-28.51-15.92c-7.44-5-16.91-2.46-22.29 4.68a47.59 47.59 0 0 1-47.23 18.23C383.7 186.86 368 164.93 368 141.4a13.4 13.4 0 0 0-13.4-13.4h-38.77c-6 0-11.61 4-12.86 9.91a48 48 0 0 1-93.94 0c-1.25-5.92-6.82-9.91-12.86-9.91H157.4a13.4 13.4 0 0 0-13.4 13.4c0 25.69-19 48.75-44.67 50.49a47.5 47.5 0 0 1-41.54-19.15c-5.28-7.09-14.73-9.45-22.09-4.54l-28.57 16a16 16 0 0 0-5.44 20.47L104.24 416h303.52l102.55-211.37a16 16 0 0 0-5.44-20.47z\"]\n};\nvar faChessRook = {\n prefix: 'fas',\n iconName: 'chess-rook',\n icon: [384, 512, [], \"f447\", \"M368 32h-56a16 16 0 0 0-16 16v48h-48V48a16 16 0 0 0-16-16h-80a16 16 0 0 0-16 16v48H88.1V48a16 16 0 0 0-16-16H16A16 16 0 0 0 0 48v176l64 32c0 48.33-1.54 95-13.21 160h282.42C321.54 351 320 303.72 320 256l64-32V48a16 16 0 0 0-16-16zM224 320h-64v-64a32 32 0 0 1 64 0zm144 128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h352a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faChevronCircleDown = {\n prefix: 'fas',\n iconName: 'chevron-circle-down',\n icon: [512, 512, [], \"f13a\", \"M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z\"]\n};\nvar faChevronCircleLeft = {\n prefix: 'fas',\n iconName: 'chevron-circle-left',\n icon: [512, 512, [], \"f137\", \"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\"]\n};\nvar faChevronCircleRight = {\n prefix: 'fas',\n iconName: 'chevron-circle-right',\n icon: [512, 512, [], \"f138\", \"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"]\n};\nvar faChevronCircleUp = {\n prefix: 'fas',\n iconName: 'chevron-circle-up',\n icon: [512, 512, [], \"f139\", \"M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm231-113.9L103.5 277.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L256 226.9l101.6 101.6c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L273 142.1c-9.4-9.4-24.6-9.4-34 0z\"]\n};\nvar faChevronDown = {\n prefix: 'fas',\n iconName: 'chevron-down',\n icon: [448, 512, [], \"f078\", \"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"]\n};\nvar faChevronLeft = {\n prefix: 'fas',\n iconName: 'chevron-left',\n icon: [320, 512, [], \"f053\", \"M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z\"]\n};\nvar faChevronRight = {\n prefix: 'fas',\n iconName: 'chevron-right',\n icon: [320, 512, [], \"f054\", \"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"]\n};\nvar faChevronUp = {\n prefix: 'fas',\n iconName: 'chevron-up',\n icon: [448, 512, [], \"f077\", \"M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z\"]\n};\nvar faChild = {\n prefix: 'fas',\n iconName: 'child',\n icon: [384, 512, [], \"f1ae\", \"M120 72c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.764-32.235 72-72 72s-72-32.236-72-72zm254.627 1.373c-12.496-12.497-32.758-12.497-45.254 0L242.745 160H141.254L54.627 73.373c-12.496-12.497-32.758-12.497-45.254 0-12.497 12.497-12.497 32.758 0 45.255L104 213.254V480c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V368h16v112c0 17.673 14.327 32 32 32h16c17.673 0 32-14.327 32-32V213.254l94.627-94.627c12.497-12.497 12.497-32.757 0-45.254z\"]\n};\nvar faChurch = {\n prefix: 'fas',\n iconName: 'church',\n icon: [640, 512, [], \"f51d\", \"M464.46 246.68L352 179.2V128h48c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-48V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v48h-48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v51.2l-112.46 67.48A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.65-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.54A32.024 32.024 0 0 0 0 395.96zm620.61-29.42L512 320v192h112c8.84 0 16-7.16 16-16V395.96c0-12.8-7.63-24.37-19.39-29.42z\"]\n};\nvar faCircle = {\n prefix: 'fas',\n iconName: 'circle',\n icon: [512, 512, [], \"f111\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"]\n};\nvar faCircleNotch = {\n prefix: 'fas',\n iconName: 'circle-notch',\n icon: [512, 512, [], \"f1ce\", \"M288 39.056v16.659c0 10.804 7.281 20.159 17.686 23.066C383.204 100.434 440 171.518 440 256c0 101.689-82.295 184-184 184-101.689 0-184-82.295-184-184 0-84.47 56.786-155.564 134.312-177.219C216.719 75.874 224 66.517 224 55.712V39.064c0-15.709-14.834-27.153-30.046-23.234C86.603 43.482 7.394 141.206 8.003 257.332c.72 137.052 111.477 246.956 248.531 246.667C393.255 503.711 504 392.788 504 256c0-115.633-79.14-212.779-186.211-240.236C302.678 11.889 288 23.456 288 39.056z\"]\n};\nvar faCity = {\n prefix: 'fas',\n iconName: 'city',\n icon: [640, 512, [], \"f64f\", \"M616 192H480V24c0-13.26-10.74-24-24-24H312c-13.26 0-24 10.74-24 24v72h-64V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v80h-64V16c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v80H24c-13.26 0-24 10.74-24 24v360c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V216c0-13.26-10.75-24-24-24zM128 404c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm128 192c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12V76c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 288c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40z\"]\n};\nvar faClinicMedical = {\n prefix: 'fas',\n iconName: 'clinic-medical',\n icon: [576, 512, [], \"f7f2\", \"M288 115L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2zm96 261a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8zm186.69-139.72l-255.94-226a39.85 39.85 0 0 0-53.45 0l-256 226a16 16 0 0 0-1.21 22.6L25.5 282.7a16 16 0 0 0 22.6 1.21L277.42 81.63a16 16 0 0 1 21.17 0L527.91 283.9a16 16 0 0 0 22.6-1.21l21.4-23.82a16 16 0 0 0-1.22-22.59z\"]\n};\nvar faClipboard = {\n prefix: 'fas',\n iconName: 'clipboard',\n icon: [384, 512, [], \"f328\", \"M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z\"]\n};\nvar faClipboardCheck = {\n prefix: 'fas',\n iconName: 'clipboard-check',\n icon: [384, 512, [], \"f46c\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm121.2 231.8l-143 141.8c-4.7 4.7-12.3 4.6-17-.1l-82.6-83.3c-4.7-4.7-4.6-12.3.1-17L99.1 285c4.7-4.7 12.3-4.6 17 .1l46 46.4 106-105.2c4.7-4.7 12.3-4.6 17 .1l28.2 28.4c4.7 4.8 4.6 12.3-.1 17z\"]\n};\nvar faClipboardList = {\n prefix: 'fas',\n iconName: 'clipboard-list',\n icon: [384, 512, [], \"f46d\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM96 424c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm0-96c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24zm96-192c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm128 368c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faClock = {\n prefix: 'fas',\n iconName: 'clock',\n icon: [512, 512, [], \"f017\", \"M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z\"]\n};\nvar faClone = {\n prefix: 'fas',\n iconName: 'clone',\n icon: [512, 512, [], \"f24d\", \"M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z\"]\n};\nvar faClosedCaptioning = {\n prefix: 'fas',\n iconName: 'closed-captioning',\n icon: [512, 512, [], \"f20a\", \"M464 64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM218.1 287.7c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.6 56.8-172.8 32.1-172.8-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7l-17.5 30.5c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2.1 48 51.1 70.5 92.3 32.6zm190.4 0c2.8-2.5 7.1-2.1 9.2.9l19.5 27.7c1.7 2.4 1.5 5.6-.5 7.7-53.5 56.9-172.7 32.1-172.7-67.9 0-97.3 121.7-119.5 172.5-70.1 2.1 2 2.5 3.2 1 5.7L420 222.2c-1.9 3.1-6.2 4-9.1 1.7-40.8-32-94.6-14.9-94.6 31.2 0 48 51 70.5 92.2 32.6z\"]\n};\nvar faCloud = {\n prefix: 'fas',\n iconName: 'cloud',\n icon: [640, 512, [], \"f0c2\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4z\"]\n};\nvar faCloudDownloadAlt = {\n prefix: 'fas',\n iconName: 'cloud-download-alt',\n icon: [640, 512, [], \"f381\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zm-132.9 88.7L299.3 420.7c-6.2 6.2-16.4 6.2-22.6 0L171.3 315.3c-10.1-10.1-2.9-27.3 11.3-27.3H248V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v112h65.4c14.2 0 21.4 17.2 11.3 27.3z\"]\n};\nvar faCloudMeatball = {\n prefix: 'fas',\n iconName: 'cloud-meatball',\n icon: [512, 512, [], \"f73b\", \"M48 352c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm416 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm-119 11.1c4.6-14.5 1.6-30.8-9.8-42.3-11.5-11.5-27.8-14.4-42.3-9.9-7-13.5-20.7-23-36.9-23s-29.9 9.5-36.9 23c-14.5-4.6-30.8-1.6-42.3 9.9-11.5 11.5-14.4 27.8-9.9 42.3-13.5 7-23 20.7-23 36.9s9.5 29.9 23 36.9c-4.6 14.5-1.6 30.8 9.9 42.3 8.2 8.2 18.9 12.3 29.7 12.3 4.3 0 8.5-1.1 12.6-2.5 7 13.5 20.7 23 36.9 23s29.9-9.5 36.9-23c4.1 1.3 8.3 2.5 12.6 2.5 10.8 0 21.5-4.1 29.7-12.3 11.5-11.5 14.4-27.8 9.8-42.3 13.5-7 23-20.7 23-36.9s-9.5-29.9-23-36.9zM512 224c0-53-43-96-96-96-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h43.4c3.6-8 8.4-15.4 14.8-21.8 13.5-13.5 31.5-21.1 50.8-21.3 13.5-13.2 31.7-20.9 51-20.9s37.5 7.7 51 20.9c19.3.2 37.3 7.8 50.8 21.3 6.4 6.4 11.3 13.8 14.8 21.8H416c53 0 96-43 96-96z\"]\n};\nvar faCloudMoon = {\n prefix: 'fas',\n iconName: 'cloud-moon',\n icon: [576, 512, [], \"f6c3\", \"M342.8 352.7c5.7-9.6 9.2-20.7 9.2-32.7 0-35.3-28.7-64-64-64-17.2 0-32.8 6.9-44.3 17.9-16.3-29.6-47.5-49.9-83.7-49.9-53 0-96 43-96 96 0 2 .5 3.8.6 5.7C27.1 338.8 0 374.1 0 416c0 53 43 96 96 96h240c44.2 0 80-35.8 80-80 0-41.9-32.3-75.8-73.2-79.3zm222.5-54.3c-93.1 17.7-178.5-53.7-178.5-147.7 0-54.2 29-104 76.1-130.8 7.3-4.1 5.4-15.1-2.8-16.7C448.4 1.1 436.7 0 425 0 319.1 0 233.1 85.9 233.1 192c0 8.5.7 16.8 1.8 25 5.9 4.3 11.6 8.9 16.7 14.2 11.4-4.7 23.7-7.2 36.4-7.2 52.9 0 96 43.1 96 96 0 3.6-.2 7.2-.6 10.7 23.6 10.8 42.4 29.5 53.5 52.6 54.4-3.4 103.7-29.3 137.1-70.4 5.3-6.5-.5-16.1-8.7-14.5z\"]\n};\nvar faCloudMoonRain = {\n prefix: 'fas',\n iconName: 'cloud-moon-rain',\n icon: [576, 512, [], \"f73c\", \"M350.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C27.6 232.9 0 265.2 0 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm217.4-1.7c-70.4 13.3-135-40.3-135-110.8 0-40.6 21.9-78 57.5-98.1 5.5-3.1 4.1-11.4-2.1-12.5C479.6.8 470.7 0 461.8 0c-77.9 0-141.1 61.2-144.4 137.9 26.7 11.9 48.2 33.8 58.9 61.7 37.1 14.3 64 47.4 70.2 86.8 5.1.5 10 1.5 15.2 1.5 44.7 0 85.6-20.2 112.6-53.3 4.2-4.8-.2-12-6.4-10.8zM364.5 418.1c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudRain = {\n prefix: 'fas',\n iconName: 'cloud-rain',\n icon: [512, 512, [], \"f73d\", \"M416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.1 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96zM88 374.2c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0zm160 0c-12.8 44.4-40 56.4-40 87.7 0 27.7 21.5 50.1 48 50.1s48-22.4 48-50.1c0-31.4-27.2-43.1-40-87.7-2.2-8.1-13.5-8.5-16 0z\"]\n};\nvar faCloudShowersHeavy = {\n prefix: 'fas',\n iconName: 'cloud-showers-heavy',\n icon: [512, 512, [], \"f740\", \"M183.9 370.1c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-192 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm384 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zm-96 0c-7.6-4.4-17.4-1.8-21.8 6l-64 112c-4.4 7.7-1.7 17.5 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l64-112c4.4-7.6 1.7-17.4-6-21.8zM416 128c-.6 0-1.1.2-1.6.2 1.1-5.2 1.6-10.6 1.6-16.2 0-44.2-35.8-80-80-80-24.6 0-46.3 11.3-61 28.8C256.4 24.8 219.3 0 176 0 114.2 0 64 50.1 64 112c0 7.3.8 14.3 2.1 21.2C27.8 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96s-43-96-96-96z\"]\n};\nvar faCloudSun = {\n prefix: 'fas',\n iconName: 'cloud-sun',\n icon: [640, 512, [], \"f6c4\", \"M575.2 325.7c.2-1.9.8-3.7.8-5.6 0-35.3-28.7-64-64-64-12.6 0-24.2 3.8-34.1 10-17.6-38.8-56.5-66-101.9-66-61.8 0-112 50.1-112 112 0 3 .7 5.8.9 8.7-49.6 3.7-88.9 44.7-88.9 95.3 0 53 43 96 96 96h272c53 0 96-43 96-96 0-42.1-27.2-77.4-64.8-90.4zm-430.4-22.6c-43.7-43.7-43.7-114.7 0-158.3 43.7-43.7 114.7-43.7 158.4 0 9.7 9.7 16.9 20.9 22.3 32.7 9.8-3.7 20.1-6 30.7-7.5L386 81.1c4-11.9-7.3-23.1-19.2-19.2L279 91.2 237.5 8.4C232-2.8 216-2.8 210.4 8.4L169 91.2 81.1 61.9C69.3 58 58 69.3 61.9 81.1l29.3 87.8-82.8 41.5c-11.2 5.6-11.2 21.5 0 27.1l82.8 41.4-29.3 87.8c-4 11.9 7.3 23.1 19.2 19.2l76.1-25.3c6.1-12.4 14-23.7 23.6-33.5-13.1-5.4-25.4-13.4-36-24zm-4.8-79.2c0 40.8 29.3 74.8 67.9 82.3 8-4.7 16.3-8.8 25.2-11.7 5.4-44.3 31-82.5 67.4-105C287.3 160.4 258 140 224 140c-46.3 0-84 37.6-84 83.9z\"]\n};\nvar faCloudSunRain = {\n prefix: 'fas',\n iconName: 'cloud-sun-rain',\n icon: [576, 512, [], \"f743\", \"M510.5 225.5c-6.9-37.2-39.3-65.5-78.5-65.5-12.3 0-23.9 3-34.3 8-17.4-24.1-45.6-40-77.7-40-53 0-96 43-96 96 0 .5.2 1.1.2 1.6C187.6 233 160 265.2 160 304c0 44.2 35.8 80 80 80h256c44.2 0 80-35.8 80-80 0-39.2-28.2-71.7-65.5-78.5zm-386.4 34.4c-37.4-37.4-37.4-98.3 0-135.8 34.6-34.6 89.1-36.8 126.7-7.4 20-12.9 43.6-20.7 69.2-20.7.7 0 1.3.2 2 .2l8.9-26.7c3.4-10.2-6.3-19.8-16.5-16.4l-75.3 25.1-35.5-71c-4.8-9.6-18.5-9.6-23.3 0l-35.5 71-75.3-25.1c-10.2-3.4-19.8 6.3-16.4 16.5l25.1 75.3-71 35.5c-9.6 4.8-9.6 18.5 0 23.3l71 35.5-25.1 75.3c-3.4 10.2 6.3 19.8 16.5 16.5l59.2-19.7c-.2-2.4-.7-4.7-.7-7.2 0-12.5 2.3-24.5 6.2-35.9-3.6-2.7-7.1-5.2-10.2-8.3zm69.8-58c4.3-24.5 15.8-46.4 31.9-64-9.8-6.2-21.4-9.9-33.8-9.9-35.3 0-64 28.7-64 64 0 18.7 8.2 35.4 21.1 47.1 11.3-15.9 26.6-28.9 44.8-37.2zm330.6 216.2c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8zm-96 0c-7.6-4.3-17.4-1.8-21.8 6l-36.6 64c-4.4 7.7-1.7 17.4 6 21.8 2.5 1.4 5.2 2.1 7.9 2.1 5.5 0 10.9-2.9 13.9-8.1l36.6-64c4.3-7.7 1.7-17.4-6-21.8z\"]\n};\nvar faCloudUploadAlt = {\n prefix: 'fas',\n iconName: 'cloud-upload-alt',\n icon: [640, 512, [], \"f382\", \"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z\"]\n};\nvar faCocktail = {\n prefix: 'fas',\n iconName: 'cocktail',\n icon: [576, 512, [], \"f561\", \"M296 464h-56V338.78l168.74-168.73c15.52-15.52 4.53-42.05-17.42-42.05H24.68c-21.95 0-32.94 26.53-17.42 42.05L176 338.78V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM432 0c-62.61 0-115.35 40.2-135.18 96h52.54c16.65-28.55 47.27-48 82.64-48 52.93 0 96 43.06 96 96s-43.07 96-96 96c-14.04 0-27.29-3.2-39.32-8.64l-35.26 35.26C379.23 279.92 404.59 288 432 288c79.53 0 144-64.47 144-144S511.53 0 432 0z\"]\n};\nvar faCode = {\n prefix: 'fas',\n iconName: 'code',\n icon: [640, 512, [], \"f121\", \"M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z\"]\n};\nvar faCodeBranch = {\n prefix: 'fas',\n iconName: 'code-branch',\n icon: [384, 512, [], \"f126\", \"M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z\"]\n};\nvar faCoffee = {\n prefix: 'fas',\n iconName: 'coffee',\n icon: [640, 512, [], \"f0f4\", \"M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z\"]\n};\nvar faCog = {\n prefix: 'fas',\n iconName: 'cog',\n icon: [512, 512, [], \"f013\", \"M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faCogs = {\n prefix: 'fas',\n iconName: 'cogs',\n icon: [640, 512, [], \"f085\", \"M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z\"]\n};\nvar faCoins = {\n prefix: 'fas',\n iconName: 'coins',\n icon: [512, 512, [], \"f51e\", \"M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z\"]\n};\nvar faColumns = {\n prefix: 'fas',\n iconName: 'columns',\n icon: [512, 512, [], \"f0db\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z\"]\n};\nvar faComment = {\n prefix: 'fas',\n iconName: 'comment',\n icon: [512, 512, [], \"f075\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z\"]\n};\nvar faCommentAlt = {\n prefix: 'fas',\n iconName: 'comment-alt',\n icon: [512, 512, [], \"f27a\", \"M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z\"]\n};\nvar faCommentDollar = {\n prefix: 'fas',\n iconName: 'comment-dollar',\n icon: [512, 512, [], \"f651\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95.01 57.02 130.74C44.46 421.05 2.7 465.97 2.2 466.5A7.995 7.995 0 0 0 8 480c66.26 0 115.99-31.75 140.6-51.38C181.29 440.93 217.59 448 256 448c141.38 0 256-93.12 256-208S397.38 32 256 32zm24 302.44V352c0 8.84-7.16 16-16 16h-16c-8.84 0-16-7.16-16-16v-17.73c-11.42-1.35-22.28-5.19-31.78-11.46-6.22-4.11-6.82-13.11-1.55-18.38l17.52-17.52c3.74-3.74 9.31-4.24 14.11-2.03 3.18 1.46 6.66 2.22 10.26 2.22h32.78c4.66 0 8.44-3.78 8.44-8.42 0-3.75-2.52-7.08-6.12-8.11l-50.07-14.3c-22.25-6.35-40.01-24.71-42.91-47.67-4.05-32.07 19.03-59.43 49.32-63.05V128c0-8.84 7.16-16 16-16h16c8.84 0 16 7.16 16 16v17.73c11.42 1.35 22.28 5.19 31.78 11.46 6.22 4.11 6.82 13.11 1.55 18.38l-17.52 17.52c-3.74 3.74-9.31 4.24-14.11 2.03a24.516 24.516 0 0 0-10.26-2.22h-32.78c-4.66 0-8.44 3.78-8.44 8.42 0 3.75 2.52 7.08 6.12 8.11l50.07 14.3c22.25 6.36 40.01 24.71 42.91 47.67 4.05 32.06-19.03 59.42-49.32 63.04z\"]\n};\nvar faCommentDots = {\n prefix: 'fas',\n iconName: 'comment-dots',\n icon: [512, 512, [], \"f4ad\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128 272c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faCommentMedical = {\n prefix: 'fas',\n iconName: 'comment-medical',\n icon: [512, 512, [], \"f7f5\", \"M256 32C114.62 32 0 125.12 0 240c0 49.56 21.41 95 57 130.74C44.46 421.05 2.7 466 2.2 466.5A8 8 0 0 0 8 480c66.26 0 116-31.75 140.6-51.38A304.66 304.66 0 0 0 256 448c141.39 0 256-93.12 256-208S397.39 32 256 32zm96 232a8 8 0 0 1-8 8h-56v56a8 8 0 0 1-8 8h-48a8 8 0 0 1-8-8v-56h-56a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8h56v-56a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v56h56a8 8 0 0 1 8 8z\"]\n};\nvar faCommentSlash = {\n prefix: 'fas',\n iconName: 'comment-slash',\n icon: [640, 512, [], \"f4b3\", \"M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faComments = {\n prefix: 'fas',\n iconName: 'comments',\n icon: [576, 512, [], \"f086\", \"M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z\"]\n};\nvar faCommentsDollar = {\n prefix: 'fas',\n iconName: 'comments-dollar',\n icon: [576, 512, [], \"f653\", \"M416 192c0-88.37-93.12-160-208-160S0 103.63 0 192c0 34.27 14.13 65.95 37.97 91.98C24.61 314.22 2.52 338.16 2.2 338.5A7.995 7.995 0 0 0 8 352c36.58 0 66.93-12.25 88.73-24.98C128.93 342.76 167.02 352 208 352c114.88 0 208-71.63 208-160zm-224 96v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V96c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07V288c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm346.01 123.99C561.87 385.96 576 354.27 576 320c0-66.94-53.49-124.2-129.33-148.07.86 6.6 1.33 13.29 1.33 20.07 0 105.87-107.66 192-240 192-10.78 0-21.32-.77-31.73-1.88C207.8 439.63 281.77 480 368 480c40.98 0 79.07-9.24 111.27-24.98C501.07 467.75 531.42 480 568 480c3.2 0 6.09-1.91 7.34-4.84 1.27-2.94.66-6.34-1.55-8.67-.31-.33-22.42-24.24-35.78-54.5z\"]\n};\nvar faCompactDisc = {\n prefix: 'fas',\n iconName: 'compact-disc',\n icon: [496, 512, [], \"f51f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 256H56c0-105.9 86.1-192 192-192v32c-88.2 0-160 71.8-160 160zm160 96c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z\"]\n};\nvar faCompass = {\n prefix: 'fas',\n iconName: 'compass',\n icon: [496, 512, [], \"f14e\", \"M225.38 233.37c-12.5 12.5-12.5 32.76 0 45.25 12.49 12.5 32.76 12.5 45.25 0 12.5-12.5 12.5-32.76 0-45.25-12.5-12.49-32.76-12.49-45.25 0zM248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm126.14 148.05L308.17 300.4a31.938 31.938 0 0 1-15.77 15.77l-144.34 65.97c-16.65 7.61-33.81-9.55-26.2-26.2l65.98-144.35a31.938 31.938 0 0 1 15.77-15.77l144.34-65.97c16.65-7.6 33.8 9.55 26.19 26.2z\"]\n};\nvar faCompress = {\n prefix: 'fas',\n iconName: 'compress',\n icon: [448, 512, [], \"f066\", \"M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faCompressAlt = {\n prefix: 'fas',\n iconName: 'compress-alt',\n icon: [448, 512, [], \"f422\", \"M4.686 427.314L104 328l-32.922-31.029C55.958 281.851 66.666 256 88.048 256h112C213.303 256 224 266.745 224 280v112c0 21.382-25.803 32.09-40.922 16.971L152 376l-99.314 99.314c-6.248 6.248-16.379 6.248-22.627 0L4.686 449.941c-6.248-6.248-6.248-16.379 0-22.627zM443.314 84.686L344 184l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C234.697 256 224 245.255 224 232V120c0-21.382 25.803-32.09 40.922-16.971L296 136l99.314-99.314c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.248 6.248 6.248 16.379 0 22.627z\"]\n};\nvar faCompressArrowsAlt = {\n prefix: 'fas',\n iconName: 'compress-arrows-alt',\n icon: [512, 512, [], \"f78c\", \"M200 288H88c-21.4 0-32.1 25.8-17 41l32.9 31-99.2 99.3c-6.2 6.2-6.2 16.4 0 22.6l25.4 25.4c6.2 6.2 16.4 6.2 22.6 0L152 408l31.1 33c15.1 15.1 40.9 4.4 40.9-17V312c0-13.3-10.7-24-24-24zm112-64h112c21.4 0 32.1-25.9 17-41l-33-31 99.3-99.3c6.2-6.2 6.2-16.4 0-22.6L481.9 4.7c-6.2-6.2-16.4-6.2-22.6 0L360 104l-31.1-33C313.8 55.9 288 66.6 288 88v112c0 13.3 10.7 24 24 24zm96 136l33-31.1c15.1-15.1 4.4-40.9-17-40.9H312c-13.3 0-24 10.7-24 24v112c0 21.4 25.9 32.1 41 17l31-32.9 99.3 99.3c6.2 6.2 16.4 6.2 22.6 0l25.4-25.4c6.2-6.2 6.2-16.4 0-22.6L408 360zM183 71.1L152 104 52.7 4.7c-6.2-6.2-16.4-6.2-22.6 0L4.7 30.1c-6.2 6.2-6.2 16.4 0 22.6L104 152l-33 31.1C55.9 198.2 66.6 224 88 224h112c13.3 0 24-10.7 24-24V88c0-21.3-25.9-32-41-16.9z\"]\n};\nvar faConciergeBell = {\n prefix: 'fas',\n iconName: 'concierge-bell',\n icon: [512, 512, [], \"f562\", \"M288 130.54V112h16c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16h-96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h16v18.54C115.49 146.11 32 239.18 32 352h448c0-112.82-83.49-205.89-192-221.46zM496 384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faCookie = {\n prefix: 'fas',\n iconName: 'cookie',\n icon: [512, 512, [], \"f563\", \"M510.37 254.79l-12.08-76.26a132.493 132.493 0 0 0-37.16-72.95l-54.76-54.75c-19.73-19.72-45.18-32.7-72.71-37.05l-76.7-12.15c-27.51-4.36-55.69.11-80.52 12.76L107.32 49.6a132.25 132.25 0 0 0-57.79 57.8l-35.1 68.88a132.602 132.602 0 0 0-12.82 80.94l12.08 76.27a132.493 132.493 0 0 0 37.16 72.95l54.76 54.75a132.087 132.087 0 0 0 72.71 37.05l76.7 12.14c27.51 4.36 55.69-.11 80.52-12.75l69.12-35.21a132.302 132.302 0 0 0 57.79-57.8l35.1-68.87c12.71-24.96 17.2-53.3 12.82-80.96zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCookieBite = {\n prefix: 'fas',\n iconName: 'cookie-bite',\n icon: [512, 512, [], \"f564\", \"M510.52 255.82c-69.97-.85-126.47-57.69-126.47-127.86-70.17 0-127-56.49-127.86-126.45-27.26-4.14-55.13.3-79.72 12.82l-69.13 35.22a132.221 132.221 0 0 0-57.79 57.81l-35.1 68.88a132.645 132.645 0 0 0-12.82 80.95l12.08 76.27a132.521 132.521 0 0 0 37.16 72.96l54.77 54.76a132.036 132.036 0 0 0 72.71 37.06l76.71 12.15c27.51 4.36 55.7-.11 80.53-12.76l69.13-35.21a132.273 132.273 0 0 0 57.79-57.81l35.1-68.88c12.56-24.64 17.01-52.58 12.91-79.91zM176 368c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm32-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm160 128c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faCopy = {\n prefix: 'fas',\n iconName: 'copy',\n icon: [448, 512, [], \"f0c5\", \"M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z\"]\n};\nvar faCopyright = {\n prefix: 'fas',\n iconName: 'copyright',\n icon: [512, 512, [], \"f1f9\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm117.134 346.753c-1.592 1.867-39.776 45.731-109.851 45.731-84.692 0-144.484-63.26-144.484-145.567 0-81.303 62.004-143.401 143.762-143.401 66.957 0 101.965 37.315 103.422 38.904a12 12 0 0 1 1.238 14.623l-22.38 34.655c-4.049 6.267-12.774 7.351-18.234 2.295-.233-.214-26.529-23.88-61.88-23.88-46.116 0-73.916 33.575-73.916 76.082 0 39.602 25.514 79.692 74.277 79.692 38.697 0 65.28-28.338 65.544-28.625 5.132-5.565 14.059-5.033 18.508 1.053l24.547 33.572a12.001 12.001 0 0 1-.553 14.866z\"]\n};\nvar faCouch = {\n prefix: 'fas',\n iconName: 'couch',\n icon: [640, 512, [], \"f4b8\", \"M160 224v64h320v-64c0-35.3 28.7-64 64-64h32c0-53-43-96-96-96H160c-53 0-96 43-96 96h32c35.3 0 64 28.7 64 64zm416-32h-32c-17.7 0-32 14.3-32 32v96H128v-96c0-17.7-14.3-32-32-32H64c-35.3 0-64 28.7-64 64 0 23.6 13 44 32 55.1V432c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-16h384v16c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V311.1c19-11.1 32-31.5 32-55.1 0-35.3-28.7-64-64-64z\"]\n};\nvar faCreditCard = {\n prefix: 'fas',\n iconName: 'credit-card',\n icon: [576, 512, [], \"f09d\", \"M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z\"]\n};\nvar faCrop = {\n prefix: 'fas',\n iconName: 'crop',\n icon: [512, 512, [], \"f125\", \"M488 352h-40V109.25l59.31-59.31c6.25-6.25 6.25-16.38 0-22.63L484.69 4.69c-6.25-6.25-16.38-6.25-22.63 0L402.75 64H192v96h114.75L160 306.75V24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v264c0 13.25 10.75 24 24 24h232v-96H205.25L352 205.25V488c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faCropAlt = {\n prefix: 'fas',\n iconName: 'crop-alt',\n icon: [512, 512, [], \"f565\", \"M488 352h-40V96c0-17.67-14.33-32-32-32H192v96h160v328c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24v-40h40c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24zM160 24c0-13.26-10.75-24-24-24H88C74.75 0 64 10.74 64 24v40H24C10.75 64 0 74.74 0 88v48c0 13.25 10.75 24 24 24h40v256c0 17.67 14.33 32 32 32h224v-96H160V24z\"]\n};\nvar faCross = {\n prefix: 'fas',\n iconName: 'cross',\n icon: [384, 512, [], \"f654\", \"M352 128h-96V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h96v224c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V256h96c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faCrosshairs = {\n prefix: 'fas',\n iconName: 'crosshairs',\n icon: [512, 512, [], \"f05b\", \"M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z\"]\n};\nvar faCrow = {\n prefix: 'fas',\n iconName: 'crow',\n icon: [640, 512, [], \"f520\", \"M544 32h-16.36C513.04 12.68 490.09 0 464 0c-44.18 0-80 35.82-80 80v20.98L12.09 393.57A30.216 30.216 0 0 0 0 417.74c0 22.46 23.64 37.07 43.73 27.03L165.27 384h96.49l44.41 120.1c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38L312.94 384H352c1.91 0 3.76-.23 5.66-.29l44.51 120.38c2.27 6.23 9.15 9.44 15.38 7.17l22.55-8.21c6.23-2.27 9.44-9.15 7.17-15.38l-41.24-111.53C485.74 352.8 544 279.26 544 192v-80l96-16c0-35.35-42.98-64-96-64zm-80 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faCrown = {\n prefix: 'fas',\n iconName: 'crown',\n icon: [640, 512, [], \"f521\", \"M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z\"]\n};\nvar faCrutch = {\n prefix: 'fas',\n iconName: 'crutch',\n icon: [512, 512, [], \"f7f7\", \"M507.31 185.71l-181-181a16 16 0 0 0-22.62 0L281 27.31a16 16 0 0 0 0 22.63l181 181a16 16 0 0 0 22.63 0l22.62-22.63a16 16 0 0 0 .06-22.6zm-179.54 66.41l-67.89-67.89 55.1-55.1-45.25-45.25-109.67 109.67a96.08 96.08 0 0 0-25.67 46.29L106.65 360.1l-102 102a16 16 0 0 0 0 22.63l22.62 22.62a16 16 0 0 0 22.63 0l102-102 120.25-27.75a95.88 95.88 0 0 0 46.29-25.65l109.68-109.68L382.87 197zm-54.57 54.57a32 32 0 0 1-15.45 8.54l-79.3 18.32 18.3-79.3a32.22 32.22 0 0 1 8.56-15.45l9.31-9.31 67.89 67.89z\"]\n};\nvar faCube = {\n prefix: 'fas',\n iconName: 'cube',\n icon: [512, 512, [], \"f1b2\", \"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"]\n};\nvar faCubes = {\n prefix: 'fas',\n iconName: 'cubes',\n icon: [512, 512, [], \"f1b3\", \"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"]\n};\nvar faCut = {\n prefix: 'fas',\n iconName: 'cut',\n icon: [448, 512, [], \"f0c4\", \"M278.06 256L444.48 89.57c4.69-4.69 4.69-12.29 0-16.97-32.8-32.8-85.99-32.8-118.79 0L210.18 188.12l-24.86-24.86c4.31-10.92 6.68-22.81 6.68-35.26 0-53.02-42.98-96-96-96S0 74.98 0 128s42.98 96 96 96c4.54 0 8.99-.32 13.36-.93L142.29 256l-32.93 32.93c-4.37-.61-8.83-.93-13.36-.93-53.02 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96c0-12.45-2.37-24.34-6.68-35.26l24.86-24.86L325.69 439.4c32.8 32.8 85.99 32.8 118.79 0 4.69-4.68 4.69-12.28 0-16.97L278.06 256zM96 160c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32zm0 256c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faDatabase = {\n prefix: 'fas',\n iconName: 'database',\n icon: [448, 512, [], \"f1c0\", \"M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z\"]\n};\nvar faDeaf = {\n prefix: 'fas',\n iconName: 'deaf',\n icon: [512, 512, [], \"f2a4\", \"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm268.485-52.201L480.2 3.515c-4.687-4.686-12.284-4.686-16.971 0L376.2 90.544c-4.686 4.686-4.686 12.284 0 16.971l28.285 28.285c4.686 4.686 12.284 4.686 16.97 0l87.03-87.029c4.687-4.688 4.687-12.286 0-16.972zM168.97 314.745c-4.686-4.686-12.284-4.686-16.97 0L3.515 463.23c-4.686 4.686-4.686 12.284 0 16.971L31.8 508.485c4.687 4.686 12.284 4.686 16.971 0L197.256 360c4.686-4.686 4.686-12.284 0-16.971l-28.286-28.284z\"]\n};\nvar faDemocrat = {\n prefix: 'fas',\n iconName: 'democrat',\n icon: [640, 512, [], \"f747\", \"M637.3 256.9l-19.6-29.4c-28.2-42.3-75.3-67.5-126.1-67.5H256l-81.2-81.2c20.1-20.1 22.6-51.1 7.5-73.9-3.4-5.2-10.8-5.9-15.2-1.5l-41.8 41.8L82.4 2.4c-3.6-3.6-9.6-3-12.4 1.2-12.3 18.6-10.3 44 6.1 60.4 3.3 3.3 7.3 5.3 11.3 7.5-2.2 1.7-4.7 3.1-6.4 5.4L6.4 176.2c-7.3 9.7-8.4 22.7-3 33.5l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7h31c8.5 0 16.6-3.4 22.6-9.4L138 212l54 108h352v-77.8c16.2 12.2 18.3 17.6 40.1 50.3 4.9 7.4 14.8 9.3 22.2 4.4l26.6-17.7c7.3-5 9.3-14.9 4.4-22.3zm-341.1-13.6l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L256 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L368 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zm112 0l-16.5 16.1 3.9 22.7c.7 4.1-3.6 7.2-7.2 5.3L480 276.7l-20.4 10.7c-3.6 1.9-7.9-1.2-7.2-5.3l3.9-22.7-16.5-16.1c-3-2.9-1.3-7.9 2.8-8.5l22.8-3.3 10.2-20.7c1.8-3.7 7.1-3.7 9 0l10.2 20.7 22.8 3.3c4 .6 5.6 5.6 2.6 8.5zM192 496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80h160v80c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V352H192v144z\"]\n};\nvar faDesktop = {\n prefix: 'fas',\n iconName: 'desktop',\n icon: [576, 512, [], \"f108\", \"M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z\"]\n};\nvar faDharmachakra = {\n prefix: 'fas',\n iconName: 'dharmachakra',\n icon: [512, 512, [], \"f655\", \"M495 225.06l-17.22 1.08c-5.27-39.49-20.79-75.64-43.86-105.84l12.95-11.43c6.92-6.11 7.25-16.79.73-23.31L426.44 64.4c-6.53-6.53-17.21-6.19-23.31.73L391.7 78.07c-30.2-23.06-66.35-38.58-105.83-43.86L286.94 17c.58-9.21-6.74-17-15.97-17h-29.94c-9.23 0-16.54 7.79-15.97 17l1.08 17.22c-39.49 5.27-75.64 20.79-105.83 43.86l-11.43-12.95c-6.11-6.92-16.79-7.25-23.31-.73L64.4 85.56c-6.53 6.53-6.19 17.21.73 23.31l12.95 11.43c-23.06 30.2-38.58 66.35-43.86 105.84L17 225.06c-9.21-.58-17 6.74-17 15.97v29.94c0 9.23 7.79 16.54 17 15.97l17.22-1.08c5.27 39.49 20.79 75.64 43.86 105.83l-12.95 11.43c-6.92 6.11-7.25 16.79-.73 23.31l21.17 21.17c6.53 6.53 17.21 6.19 23.31-.73l11.43-12.95c30.2 23.06 66.35 38.58 105.84 43.86L225.06 495c-.58 9.21 6.74 17 15.97 17h29.94c9.23 0 16.54-7.79 15.97-17l-1.08-17.22c39.49-5.27 75.64-20.79 105.84-43.86l11.43 12.95c6.11 6.92 16.79 7.25 23.31.73l21.17-21.17c6.53-6.53 6.19-17.21-.73-23.31l-12.95-11.43c23.06-30.2 38.58-66.35 43.86-105.83l17.22 1.08c9.21.58 17-6.74 17-15.97v-29.94c-.01-9.23-7.8-16.54-17.01-15.97zM281.84 98.61c24.81 4.07 47.63 13.66 67.23 27.78l-42.62 48.29c-8.73-5.44-18.32-9.54-28.62-11.95l4.01-64.12zm-51.68 0l4.01 64.12c-10.29 2.41-19.89 6.52-28.62 11.95l-42.62-48.29c19.6-14.12 42.42-23.71 67.23-27.78zm-103.77 64.33l48.3 42.61c-5.44 8.73-9.54 18.33-11.96 28.62l-64.12-4.01c4.07-24.81 13.66-47.62 27.78-67.22zm-27.78 118.9l64.12-4.01c2.41 10.29 6.52 19.89 11.95 28.62l-48.29 42.62c-14.12-19.6-23.71-42.42-27.78-67.23zm131.55 131.55c-24.81-4.07-47.63-13.66-67.23-27.78l42.61-48.3c8.73 5.44 18.33 9.54 28.62 11.96l-4 64.12zM256 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm25.84 125.39l-4.01-64.12c10.29-2.41 19.89-6.52 28.62-11.96l42.61 48.3c-19.6 14.12-42.41 23.71-67.22 27.78zm103.77-64.33l-48.29-42.62c5.44-8.73 9.54-18.32 11.95-28.62l64.12 4.01c-4.07 24.82-13.66 47.64-27.78 67.23zm-36.34-114.89c-2.41-10.29-6.52-19.89-11.96-28.62l48.3-42.61c14.12 19.6 23.71 42.42 27.78 67.23l-64.12 4z\"]\n};\nvar faDiagnoses = {\n prefix: 'fas',\n iconName: 'diagnoses',\n icon: [640, 512, [], \"f470\", \"M496 256c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm-176-80c48.5 0 88-39.5 88-88S368.5 0 320 0s-88 39.5-88 88 39.5 88 88 88zM59.8 364c10.2 15.3 29.3 17.8 42.9 9.8 16.2-9.6 56.2-31.7 105.3-48.6V416h224v-90.7c49.1 16.8 89.1 39 105.3 48.6 13.6 8 32.7 5.3 42.9-9.8l17.8-26.7c8.8-13.2 7.6-34.6-10-45.1-11.9-7.1-29.7-17-51.1-27.4-28.1 46.1-99.4 17.8-87.7-35.1C409.3 217.2 365.1 208 320 208c-57 0-112.9 14.5-160 32.2-.2 40.2-47.6 63.3-79.2 36-11.2 6-21.3 11.6-28.7 16-17.6 10.5-18.8 31.8-10 45.1L59.8 364zM368 344c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-96-96c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm-160 8c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zm512 192H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDice = {\n prefix: 'fas',\n iconName: 'dice',\n icon: [640, 512, [], \"f522\", \"M592 192H473.26c12.69 29.59 7.12 65.2-17 89.32L320 417.58V464c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V240c0-26.51-21.49-48-48-48zM480 376c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm-46.37-186.7L258.7 14.37c-19.16-19.16-50.23-19.16-69.39 0L14.37 189.3c-19.16 19.16-19.16 50.23 0 69.39L189.3 433.63c19.16 19.16 50.23 19.16 69.39 0L433.63 258.7c19.16-19.17 19.16-50.24 0-69.4zM96 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm0-128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm128 128c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faDiceD20 = {\n prefix: 'fas',\n iconName: 'dice-d20',\n icon: [480, 512, [], \"f6cf\", \"M106.75 215.06L1.2 370.95c-3.08 5 .1 11.5 5.93 12.14l208.26 22.07-108.64-190.1zM7.41 315.43L82.7 193.08 6.06 147.1c-2.67-1.6-6.06.32-6.06 3.43v162.81c0 4.03 5.29 5.53 7.41 2.09zM18.25 423.6l194.4 87.66c5.3 2.45 11.35-1.43 11.35-7.26v-65.67l-203.55-22.3c-4.45-.5-6.23 5.59-2.2 7.57zm81.22-257.78L179.4 22.88c4.34-7.06-3.59-15.25-10.78-11.14L17.81 110.35c-2.47 1.62-2.39 5.26.13 6.78l81.53 48.69zM240 176h109.21L253.63 7.62C250.5 2.54 245.25 0 240 0s-10.5 2.54-13.63 7.62L130.79 176H240zm233.94-28.9l-76.64 45.99 75.29 122.35c2.11 3.44 7.41 1.94 7.41-2.1V150.53c0-3.11-3.39-5.03-6.06-3.43zm-93.41 18.72l81.53-48.7c2.53-1.52 2.6-5.16.13-6.78l-150.81-98.6c-7.19-4.11-15.12 4.08-10.78 11.14l79.93 142.94zm79.02 250.21L256 438.32v65.67c0 5.84 6.05 9.71 11.35 7.26l194.4-87.66c4.03-1.97 2.25-8.06-2.2-7.56zm-86.3-200.97l-108.63 190.1 208.26-22.07c5.83-.65 9.01-7.14 5.93-12.14L373.25 215.06zM240 208H139.57L240 383.75 340.43 208H240z\"]\n};\nvar faDiceD6 = {\n prefix: 'fas',\n iconName: 'dice-d6',\n icon: [448, 512, [], \"f6d1\", \"M422.19 109.95L256.21 9.07c-19.91-12.1-44.52-12.1-64.43 0L25.81 109.95c-5.32 3.23-5.29 11.27.06 14.46L224 242.55l198.14-118.14c5.35-3.19 5.38-11.22.05-14.46zm13.84 44.63L240 271.46v223.82c0 12.88 13.39 20.91 24.05 14.43l152.16-92.48c19.68-11.96 31.79-33.94 31.79-57.7v-197.7c0-6.41-6.64-10.43-11.97-7.25zM0 161.83v197.7c0 23.77 12.11 45.74 31.79 57.7l152.16 92.47c10.67 6.48 24.05-1.54 24.05-14.43V271.46L11.97 154.58C6.64 151.4 0 155.42 0 161.83z\"]\n};\nvar faDiceFive = {\n prefix: 'fas',\n iconName: 'dice-five',\n icon: [448, 512, [], \"f523\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceFour = {\n prefix: 'fas',\n iconName: 'dice-four',\n icon: [448, 512, [], \"f524\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceOne = {\n prefix: 'fas',\n iconName: 'dice-one',\n icon: [448, 512, [], \"f525\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM224 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceSix = {\n prefix: 'fas',\n iconName: 'dice-six',\n icon: [448, 512, [], \"f526\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceThree = {\n prefix: 'fas',\n iconName: 'dice-three',\n icon: [448, 512, [], \"f527\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm96 96c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDiceTwo = {\n prefix: 'fas',\n iconName: 'dice-two',\n icon: [448, 512, [], \"f528\", \"M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm192 192c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faDigitalTachograph = {\n prefix: 'fas',\n iconName: 'digital-tachograph',\n icon: [640, 512, [], \"f566\", \"M608 96H32c-17.67 0-32 14.33-32 32v256c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128c0-17.67-14.33-32-32-32zM304 352c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8zM72 288v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H80c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm64 0v-16c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8zm40-64c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-48c0-8.84 7.16-16 16-16h208c8.84 0 16 7.16 16 16v48zm272 128c0 4.42-3.58 8-8 8H344c-4.42 0-8-3.58-8-8v-8c0-4.42 3.58-8 8-8h224c4.42 0 8 3.58 8 8v8z\"]\n};\nvar faDirections = {\n prefix: 'fas',\n iconName: 'directions',\n icon: [512, 512, [], \"f5eb\", \"M502.61 233.32L278.68 9.39c-12.52-12.52-32.83-12.52-45.36 0L9.39 233.32c-12.52 12.53-12.52 32.83 0 45.36l223.93 223.93c12.52 12.53 32.83 12.53 45.36 0l223.93-223.93c12.52-12.53 12.52-32.83 0-45.36zm-100.98 12.56l-84.21 77.73c-5.12 4.73-13.43 1.1-13.43-5.88V264h-96v64c0 4.42-3.58 8-8 8h-32c-4.42 0-8-3.58-8-8v-80c0-17.67 14.33-32 32-32h112v-53.73c0-6.97 8.3-10.61 13.43-5.88l84.21 77.73c3.43 3.17 3.43 8.59 0 11.76z\"]\n};\nvar faDisease = {\n prefix: 'fas',\n iconName: 'disease',\n icon: [512, 512, [], \"f7fa\", \"M472.29 195.9l-67.06-23c-19.28-6.6-33.54-20.92-38.14-38.31l-16-60.45c-11.58-43.77-76.57-57.13-110-22.62L195 99.24c-13.26 13.71-33.54 20.93-54.2 19.31l-71.9-5.62c-52-4.07-86.93 44.89-59 82.84l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24l-28.43 57C4 396.67 47.46 440.29 98.11 429.23l70-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101 7.57 104.45-37.22l4.7-61.86c1.35-17.8 12.8-33.87 30.63-43l62-31.74c44.84-22.96 39.55-80.17-8.99-96.79zM160 256a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm128 96a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm16-128a16 16 0 1 1 16-16 16 16 0 0 1-16 16z\"]\n};\nvar faDivide = {\n prefix: 'fas',\n iconName: 'divide',\n icon: [448, 512, [], \"f529\", \"M224 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm0-192c35.35 0 64-28.65 64-64s-28.65-64-64-64-64 28.65-64 64 28.65 64 64 64zm192 48H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faDizzy = {\n prefix: 'fas',\n iconName: 'dizzy',\n icon: [496, 512, [], \"f567\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-96 206.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L174.6 192l28.7 28.7c15.2 15.2-7.9 37.4-22.6 22.6L152 214.6zM248 416c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm147.3-195.3c15.2 15.2-7.9 37.4-22.6 22.6L344 214.6l-28.7 28.7c-14.8 14.8-37.8-7.5-22.6-22.6l28.7-28.7-28.7-28.7c-15-15 7.7-37.6 22.6-22.6l28.7 28.7 28.7-28.7c15-15 37.6 7.7 22.6 22.6L366.6 192l28.7 28.7z\"]\n};\nvar faDna = {\n prefix: 'fas',\n iconName: 'dna',\n icon: [448, 512, [], \"f471\", \"M.1 494.1c-1.1 9.5 6.3 17.8 15.9 17.8l32.3.1c8.1 0 14.9-5.9 16-13.9.7-4.9 1.8-11.1 3.4-18.1H380c1.6 6.9 2.9 13.2 3.5 18.1 1.1 8 7.9 14 16 13.9l32.3-.1c9.6 0 17.1-8.3 15.9-17.8-4.6-37.9-25.6-129-118.9-207.7-17.6 12.4-37.1 24.2-58.5 35.4 6.2 4.6 11.4 9.4 17 14.2H159.7c21.3-18.1 47-35.6 78.7-51.4C410.5 199.1 442.1 65.8 447.9 17.9 449 8.4 441.6.1 432 .1L399.6 0c-8.1 0-14.9 5.9-16 13.9-.7 4.9-1.8 11.1-3.4 18.1H67.8c-1.6-7-2.7-13.1-3.4-18.1-1.1-8-7.9-14-16-13.9L16.1.1C6.5.1-1 8.4.1 17.9 5.3 60.8 31.4 171.8 160 256 31.5 340.2 5.3 451.2.1 494.1zM224 219.6c-25.1-13.7-46.4-28.4-64.3-43.6h128.5c-17.8 15.2-39.1 30-64.2 43.6zM355.1 96c-5.8 10.4-12.8 21.1-21 32H114c-8.3-10.9-15.3-21.6-21-32h262.1zM92.9 416c5.8-10.4 12.8-21.1 21-32h219.4c8.3 10.9 15.4 21.6 21.2 32H92.9z\"]\n};\nvar faDog = {\n prefix: 'fas',\n iconName: 'dog',\n icon: [576, 512, [], \"f6d3\", \"M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z\"]\n};\nvar faDollarSign = {\n prefix: 'fas',\n iconName: 'dollar-sign',\n icon: [288, 512, [], \"f155\", \"M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z\"]\n};\nvar faDolly = {\n prefix: 'fas',\n iconName: 'dolly',\n icon: [576, 512, [], \"f472\", \"M294.2 277.7c18 5 34.7 13.4 49.5 24.7l161.5-53.8c8.4-2.8 12.9-11.9 10.1-20.2L454.9 47.2c-2.8-8.4-11.9-12.9-20.2-10.1l-61.1 20.4 33.1 99.4L346 177l-33.1-99.4-61.6 20.5c-8.4 2.8-12.9 11.9-10.1 20.2l53 159.4zm281 48.7L565 296c-2.8-8.4-11.9-12.9-20.2-10.1l-213.5 71.2c-17.2-22-43.6-36.4-73.5-37L158.4 21.9C154 8.8 141.8 0 128 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h88.9l92.2 276.7c-26.1 20.4-41.7 53.6-36 90.5 6.1 39.4 37.9 72.3 77.3 79.2 60.2 10.7 112.3-34.8 113.4-92.6l213.3-71.2c8.3-2.8 12.9-11.8 10.1-20.2zM256 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faDollyFlatbed = {\n prefix: 'fas',\n iconName: 'dolly-flatbed',\n icon: [640, 512, [], \"f474\", \"M208 320h384c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H448v128l-48-32-48 32V32H208c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16zm416 64H128V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h82.9c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H451c-1.8 5-2.9 10.4-2.9 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1.2-11-2.9-16H624c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDonate = {\n prefix: 'fas',\n iconName: 'donate',\n icon: [512, 512, [], \"f4b9\", \"M256 416c114.9 0 208-93.1 208-208S370.9 0 256 0 48 93.1 48 208s93.1 208 208 208zM233.8 97.4V80.6c0-9.2 7.4-16.6 16.6-16.6h11.1c9.2 0 16.6 7.4 16.6 16.6v17c15.5.8 30.5 6.1 43 15.4 5.6 4.1 6.2 12.3 1.2 17.1L306 145.6c-3.8 3.7-9.5 3.8-14 1-5.4-3.4-11.4-5.1-17.8-5.1h-38.9c-9 0-16.3 8.2-16.3 18.3 0 8.2 5 15.5 12.1 17.6l62.3 18.7c25.7 7.7 43.7 32.4 43.7 60.1 0 34-26.4 61.5-59.1 62.4v16.8c0 9.2-7.4 16.6-16.6 16.6h-11.1c-9.2 0-16.6-7.4-16.6-16.6v-17c-15.5-.8-30.5-6.1-43-15.4-5.6-4.1-6.2-12.3-1.2-17.1l16.3-15.5c3.8-3.7 9.5-3.8 14-1 5.4 3.4 11.4 5.1 17.8 5.1h38.9c9 0 16.3-8.2 16.3-18.3 0-8.2-5-15.5-12.1-17.6l-62.3-18.7c-25.7-7.7-43.7-32.4-43.7-60.1.1-34 26.4-61.5 59.1-62.4zM480 352h-32.5c-19.6 26-44.6 47.7-73 64h63.8c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8h63.8c-28.4-16.3-53.3-38-73-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z\"]\n};\nvar faDoorClosed = {\n prefix: 'fas',\n iconName: 'door-closed',\n icon: [640, 512, [], \"f52a\", \"M624 448H512V50.8C512 22.78 490.47 0 464 0H175.99c-26.47 0-48 22.78-48 50.8V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM415.99 288c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32c.01 17.67-14.32 32-32 32z\"]\n};\nvar faDoorOpen = {\n prefix: 'fas',\n iconName: 'door-open',\n icon: [640, 512, [], \"f52b\", \"M624 448h-80V113.45C544 86.19 522.47 64 496 64H384v64h96v384h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM312.24 1.01l-192 49.74C105.99 54.44 96 67.7 96 82.92V448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h336V33.18c0-21.58-19.56-37.41-39.76-32.17zM264 288c-13.25 0-24-14.33-24-32s10.75-32 24-32 24 14.33 24 32-10.75 32-24 32z\"]\n};\nvar faDotCircle = {\n prefix: 'fas',\n iconName: 'dot-circle',\n icon: [512, 512, [], \"f192\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"]\n};\nvar faDove = {\n prefix: 'fas',\n iconName: 'dove',\n icon: [512, 512, [], \"f4ba\", \"M288 167.2v-28.1c-28.2-36.3-47.1-79.3-54.1-125.2-2.1-13.5-19-18.8-27.8-8.3-21.1 24.9-37.7 54.1-48.9 86.5 34.2 38.3 80 64.6 130.8 75.1zM400 64c-44.2 0-80 35.9-80 80.1v59.4C215.6 197.3 127 133 87 41.8c-5.5-12.5-23.2-13.2-29-.9C41.4 76 32 115.2 32 156.6c0 70.8 34.1 136.9 85.1 185.9 13.2 12.7 26.1 23.2 38.9 32.8l-143.9 36C1.4 414-3.4 426.4 2.6 435.7 20 462.6 63 508.2 155.8 512c8 .3 16-2.6 22.1-7.9l65.2-56.1H320c88.4 0 160-71.5 160-159.9V128l32-64H400zm0 96.1c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faDownload = {\n prefix: 'fas',\n iconName: 'download',\n icon: [512, 512, [], \"f019\", \"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faDraftingCompass = {\n prefix: 'fas',\n iconName: 'drafting-compass',\n icon: [512, 512, [], \"f568\", \"M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z\"]\n};\nvar faDragon = {\n prefix: 'fas',\n iconName: 'dragon',\n icon: [640, 512, [], \"f6d5\", \"M18.32 255.78L192 223.96l-91.28 68.69c-10.08 10.08-2.94 27.31 11.31 27.31h222.7c-9.44-26.4-14.73-54.47-14.73-83.38v-42.27l-119.73-87.6c-23.82-15.88-55.29-14.01-77.06 4.59L5.81 227.64c-12.38 10.33-3.45 30.42 12.51 28.14zm556.87 34.1l-100.66-50.31A47.992 47.992 0 0 1 448 196.65v-36.69h64l28.09 22.63c6 6 14.14 9.37 22.63 9.37h30.97a32 32 0 0 0 28.62-17.69l14.31-28.62a32.005 32.005 0 0 0-3.02-33.51l-74.53-99.38C553.02 4.7 543.54 0 533.47 0H296.02c-7.13 0-10.7 8.57-5.66 13.61L352 63.96 292.42 88.8c-5.9 2.95-5.9 11.36 0 14.31L352 127.96v108.62c0 72.08 36.03 139.39 96 179.38-195.59 6.81-344.56 41.01-434.1 60.91C5.78 478.67 0 485.88 0 494.2 0 504 7.95 512 17.76 512h499.08c63.29.01 119.61-47.56 122.99-110.76 2.52-47.28-22.73-90.4-64.64-111.36zM489.18 66.25l45.65 11.41c-2.75 10.91-12.47 18.89-24.13 18.26-12.96-.71-25.85-12.53-21.52-29.67z\"]\n};\nvar faDrawPolygon = {\n prefix: 'fas',\n iconName: 'draw-polygon',\n icon: [448, 512, [], \"f5ee\", \"M384 352c-.35 0-.67.1-1.02.1l-39.2-65.32c5.07-9.17 8.22-19.56 8.22-30.78s-3.14-21.61-8.22-30.78l39.2-65.32c.35.01.67.1 1.02.1 35.35 0 64-28.65 64-64s-28.65-64-64-64c-23.63 0-44.04 12.95-55.12 32H119.12C108.04 44.95 87.63 32 64 32 28.65 32 0 60.65 0 96c0 23.63 12.95 44.04 32 55.12v209.75C12.95 371.96 0 392.37 0 416c0 35.35 28.65 64 64 64 23.63 0 44.04-12.95 55.12-32h209.75c11.09 19.05 31.49 32 55.12 32 35.35 0 64-28.65 64-64 .01-35.35-28.64-64-63.99-64zm-288 8.88V151.12A63.825 63.825 0 0 0 119.12 128h208.36l-38.46 64.1c-.35-.01-.67-.1-1.02-.1-35.35 0-64 28.65-64 64s28.65 64 64 64c.35 0 .67-.1 1.02-.1l38.46 64.1H119.12A63.748 63.748 0 0 0 96 360.88zM272 256c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zM400 96c0 8.82-7.18 16-16 16s-16-7.18-16-16 7.18-16 16-16 16 7.18 16 16zM64 80c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 416c0-8.82 7.18-16 16-16s16 7.18 16 16-7.18 16-16 16-16-7.18-16-16zm336 16c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z\"]\n};\nvar faDrum = {\n prefix: 'fas',\n iconName: 'drum',\n icon: [512, 512, [], \"f569\", \"M431.34 122.05l73.53-47.42a16 16 0 0 0 4.44-22.19l-8.87-13.31a16 16 0 0 0-22.19-4.44l-110.06 71C318.43 96.91 271.22 96 256 96 219.55 96 0 100.55 0 208.15v160.23c0 30.27 27.5 57.68 72 77.86v-101.9a24 24 0 1 1 48 0v118.93c33.05 9.11 71.07 15.06 112 16.73V376.39a24 24 0 1 1 48 0V480c40.93-1.67 78.95-7.62 112-16.73V344.34a24 24 0 1 1 48 0v101.9c44.5-20.18 72-47.59 72-77.86V208.15c0-43.32-35.76-69.76-80.66-86.1zM256 272.24c-114.88 0-208-28.69-208-64.09s93.12-64.08 208-64.08c17.15 0 33.73.71 49.68 1.91l-72.81 47a16 16 0 0 0-4.43 22.19l8.87 13.31a16 16 0 0 0 22.19 4.44l118.64-76.52C430.09 168 464 186.84 464 208.15c0 35.4-93.13 64.09-208 64.09z\"]\n};\nvar faDrumSteelpan = {\n prefix: 'fas',\n iconName: 'drum-steelpan',\n icon: [576, 512, [], \"f56a\", \"M288 32C128.94 32 0 89.31 0 160v192c0 70.69 128.94 128 288 128s288-57.31 288-128V160c0-70.69-128.94-128-288-128zm-82.99 158.36c-4.45 16.61-14.54 30.57-28.31 40.48C100.23 217.46 48 190.78 48 160c0-30.16 50.11-56.39 124.04-70.03l25.6 44.34c9.86 17.09 12.48 36.99 7.37 56.05zM288 240c-21.08 0-41.41-1-60.89-2.7 8.06-26.13 32.15-45.3 60.89-45.3s52.83 19.17 60.89 45.3C329.41 239 309.08 240 288 240zm64-144c0 35.29-28.71 64-64 64s-64-28.71-64-64V82.96c20.4-1.88 41.8-2.96 64-2.96s43.6 1.08 64 2.96V96zm46.93 134.9c-13.81-9.91-23.94-23.9-28.4-40.54-5.11-19.06-2.49-38.96 7.38-56.04l25.65-44.42C477.72 103.5 528 129.79 528 160c0 30.83-52.4 57.54-129.07 70.9z\"]\n};\nvar faDrumstickBite = {\n prefix: 'fas',\n iconName: 'drumstick-bite',\n icon: [512, 512, [], \"f6d7\", \"M462.8 49.57a169.44 169.44 0 0 0-239.5 0C187.82 85 160.13 128 160.13 192v85.83l-40.62 40.59c-9.7 9.69-24 11.07-36.78 6a60.33 60.33 0 0 0-65 98.72C33 438.39 54.24 442.7 73.85 438.21c-4.5 19.6-.18 40.83 15.1 56.1a60.35 60.35 0 0 0 98.8-65c-5.09-12.73-3.72-27 6-36.75L234.36 352h85.89a187.87 187.87 0 0 0 61.89-10c-39.64-43.89-39.83-110.23 1.05-151.07 34.38-34.36 86.76-39.46 128.74-16.8 1.3-44.96-14.81-90.28-49.13-124.56z\"]\n};\nvar faDumbbell = {\n prefix: 'fas',\n iconName: 'dumbbell',\n icon: [640, 512, [], \"f44b\", \"M104 96H56c-13.3 0-24 10.7-24 24v104H8c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h24v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm528 128h-24V120c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v272c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h24c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM456 32h-48c-13.3 0-24 10.7-24 24v168H256V56c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V288h128v168c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24z\"]\n};\nvar faDumpster = {\n prefix: 'fas',\n iconName: 'dumpster',\n icon: [576, 512, [], \"f793\", \"M560 160c10.4 0 18-9.8 15.5-19.9l-24-96C549.7 37 543.3 32 536 32h-98.9l25.6 128H560zM272 32H171.5l-25.6 128H272V32zm132.5 0H304v128h126.1L404.5 32zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm544 64h-20l4-32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h320v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16l20-160h28c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faDumpsterFire = {\n prefix: 'fas',\n iconName: 'dumpster-fire',\n icon: [640, 512, [], \"f794\", \"M418.7 104.1l.2-.2-14.4-72H304v128h60.8c16.2-19.3 34.2-38.2 53.9-55.8zM272 32H171.5l-25.6 128H272V32zm189.3 72.1c18.2 16.3 35.5 33.7 51.1 51.5 5.7-5.6 11.4-11.1 17.3-16.3l21.3-19 21.3 19c1.1.9 2.1 2.1 3.1 3.1-.1-.8.2-1.5 0-2.3l-24-96C549.7 37 543.3 32 536 32h-98.9l12.3 61.5 11.9 10.6zM16 160h97.3l25.6-128H40c-7.3 0-13.7 5-15.5 12.1l-24 96C-2 150.2 5.6 160 16 160zm324.6 32H32l4 32H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h28l20 160v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208.8c-30.2-33.7-48.8-77.9-48.8-126.4 0-35.9 19.9-82.9 52.6-129.6zm210.5-28.8c-14.9 13.3-28.3 27.2-40.2 41.2-19.5-25.8-43.6-52-71-76.4-70.2 62.7-120 144.3-120 193.6 0 87.5 71.6 158.4 160 158.4s160-70.9 160-158.4c.1-36.6-37-112.2-88.8-158.4zm-18.6 229.4c-14.7 10.7-32.9 17-52.5 17-49 0-88.9-33.5-88.9-88 0-27.1 16.5-51 49.4-91.9 4.7 5.6 67.1 88.1 67.1 88.1l39.8-47c2.8 4.8 5.4 9.5 7.7 14 18.6 36.7 10.8 83.6-22.6 107.8z\"]\n};\nvar faDungeon = {\n prefix: 'fas',\n iconName: 'dungeon',\n icon: [512, 512, [], \"f6d9\", \"M128.73 195.32l-82.81-51.76c-8.04-5.02-18.99-2.17-22.93 6.45A254.19 254.19 0 0 0 .54 239.28C-.05 248.37 7.59 256 16.69 256h97.13c7.96 0 14.08-6.25 15.01-14.16 1.09-9.33 3.24-18.33 6.24-26.94 2.56-7.34.25-15.46-6.34-19.58zM319.03 8C298.86 2.82 277.77 0 256 0s-42.86 2.82-63.03 8c-9.17 2.35-13.91 12.6-10.39 21.39l37.47 104.03A16.003 16.003 0 0 0 235.1 144h41.8c6.75 0 12.77-4.23 15.05-10.58l37.47-104.03c3.52-8.79-1.22-19.03-10.39-21.39zM112 288H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm77.31-283.67l-36.32-90.8c-3.53-8.83-14.13-12.99-22.42-8.31a257.308 257.308 0 0 0-71.61 59.89c-6.06 7.32-3.85 18.48 4.22 23.52l82.93 51.83c6.51 4.07 14.66 2.62 20.11-2.79 5.18-5.15 10.79-9.85 16.79-14.05 6.28-4.41 9.15-12.17 6.3-19.29zM398.18 256h97.13c9.1 0 16.74-7.63 16.15-16.72a254.135 254.135 0 0 0-22.45-89.27c-3.94-8.62-14.89-11.47-22.93-6.45l-82.81 51.76c-6.59 4.12-8.9 12.24-6.34 19.58 3.01 8.61 5.15 17.62 6.24 26.94.93 7.91 7.05 14.16 15.01 14.16zm54.85-162.89a257.308 257.308 0 0 0-71.61-59.89c-8.28-4.68-18.88-.52-22.42 8.31l-36.32 90.8c-2.85 7.12.02 14.88 6.3 19.28 6 4.2 11.61 8.9 16.79 14.05 5.44 5.41 13.6 6.86 20.11 2.79l82.93-51.83c8.07-5.03 10.29-16.19 4.22-23.51zM496 288h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm0 128h-96c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h96c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zM240 177.62V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V177.62c-5.23-.89-10.52-1.62-16-1.62s-10.77.73-16 1.62zm-64 41.51V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V189.36c-12.78 7.45-23.84 17.47-32 29.77zm128-29.77V472c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8V219.13c-8.16-12.3-19.22-22.32-32-29.77z\"]\n};\nvar faEdit = {\n prefix: 'fas',\n iconName: 'edit',\n icon: [576, 512, [], \"f044\", \"M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z\"]\n};\nvar faEgg = {\n prefix: 'fas',\n iconName: 'egg',\n icon: [384, 512, [], \"f7fb\", \"M192 0C86 0 0 214 0 320s86 192 192 192 192-86 192-192S298 0 192 0z\"]\n};\nvar faEject = {\n prefix: 'fas',\n iconName: 'eject',\n icon: [448, 512, [], \"f052\", \"M448 384v64c0 17.673-14.327 32-32 32H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h384c17.673 0 32 14.327 32 32zM48.053 320h351.886c41.651 0 63.581-49.674 35.383-80.435L259.383 47.558c-19.014-20.743-51.751-20.744-70.767 0L12.67 239.565C-15.475 270.268 6.324 320 48.053 320z\"]\n};\nvar faEllipsisH = {\n prefix: 'fas',\n iconName: 'ellipsis-h',\n icon: [512, 512, [], \"f141\", \"M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z\"]\n};\nvar faEllipsisV = {\n prefix: 'fas',\n iconName: 'ellipsis-v',\n icon: [192, 512, [], \"f142\", \"M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z\"]\n};\nvar faEnvelope = {\n prefix: 'fas',\n iconName: 'envelope',\n icon: [512, 512, [], \"f0e0\", \"M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z\"]\n};\nvar faEnvelopeOpen = {\n prefix: 'fas',\n iconName: 'envelope-open',\n icon: [512, 512, [], \"f2b6\", \"M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z\"]\n};\nvar faEnvelopeOpenText = {\n prefix: 'fas',\n iconName: 'envelope-open-text',\n icon: [512, 512, [], \"f658\", \"M176 216h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16zm-16 80c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16zm96 121.13c-16.42 0-32.84-5.06-46.86-15.19L0 250.86V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V250.86L302.86 401.94c-14.02 10.12-30.44 15.19-46.86 15.19zm237.61-254.18c-8.85-6.94-17.24-13.47-29.61-22.81V96c0-26.51-21.49-48-48-48h-77.55c-3.04-2.2-5.87-4.26-9.04-6.56C312.6 29.17 279.2-.35 256 0c-23.2-.35-56.59 29.17-73.41 41.44-3.17 2.3-6 4.36-9.04 6.56H96c-26.51 0-48 21.49-48 48v44.14c-12.37 9.33-20.76 15.87-29.61 22.81A47.995 47.995 0 0 0 0 200.72v10.65l96 69.35V96h320v184.72l96-69.35v-10.65c0-14.74-6.78-28.67-18.39-37.77z\"]\n};\nvar faEnvelopeSquare = {\n prefix: 'fas',\n iconName: 'envelope-square',\n icon: [448, 512, [], \"f199\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z\"]\n};\nvar faEquals = {\n prefix: 'fas',\n iconName: 'equals',\n icon: [448, 512, [], \"f52c\", \"M416 304H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32zm0-192H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faEraser = {\n prefix: 'fas',\n iconName: 'eraser',\n icon: [512, 512, [], \"f12d\", \"M497.941 273.941c18.745-18.745 18.745-49.137 0-67.882l-160-160c-18.745-18.745-49.136-18.746-67.883 0l-256 256c-18.745 18.745-18.745 49.137 0 67.882l96 96A48.004 48.004 0 0 0 144 480h356c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H355.883l142.058-142.059zm-302.627-62.627l137.373 137.373L265.373 416H150.628l-80-80 124.686-124.686z\"]\n};\nvar faEthernet = {\n prefix: 'fas',\n iconName: 'ethernet',\n icon: [512, 512, [], \"f796\", \"M496 192h-48v-48c0-8.8-7.2-16-16-16h-48V80c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16v48H80c-8.8 0-16 7.2-16 16v48H16c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16h80V320h32v128h64V320h32v128h64V320h32v128h64V320h32v128h80c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16z\"]\n};\nvar faEuroSign = {\n prefix: 'fas',\n iconName: 'euro-sign',\n icon: [320, 512, [], \"f153\", \"M310.706 413.765c-1.314-6.63-7.835-10.872-14.424-9.369-10.692 2.439-27.422 5.413-45.426 5.413-56.763 0-101.929-34.79-121.461-85.449h113.689a12 12 0 0 0 11.708-9.369l6.373-28.36c1.686-7.502-4.019-14.631-11.708-14.631H115.22c-1.21-14.328-1.414-28.287.137-42.245H261.95a12 12 0 0 0 11.723-9.434l6.512-29.755c1.638-7.484-4.061-14.566-11.723-14.566H130.184c20.633-44.991 62.69-75.03 117.619-75.03 14.486 0 28.564 2.25 37.851 4.145 6.216 1.268 12.347-2.498 14.002-8.623l11.991-44.368c1.822-6.741-2.465-13.616-9.326-14.917C290.217 34.912 270.71 32 249.635 32 152.451 32 74.03 92.252 45.075 176H12c-6.627 0-12 5.373-12 12v29.755c0 6.627 5.373 12 12 12h21.569c-1.009 13.607-1.181 29.287-.181 42.245H12c-6.627 0-12 5.373-12 12v28.36c0 6.627 5.373 12 12 12h30.114C67.139 414.692 145.264 480 249.635 480c26.301 0 48.562-4.544 61.101-7.788 6.167-1.595 10.027-7.708 8.788-13.957l-8.818-44.49z\"]\n};\nvar faExchangeAlt = {\n prefix: 'fas',\n iconName: 'exchange-alt',\n icon: [512, 512, [], \"f362\", \"M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z\"]\n};\nvar faExclamation = {\n prefix: 'fas',\n iconName: 'exclamation',\n icon: [192, 512, [], \"f12a\", \"M176 432c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80zM25.26 25.199l13.6 272C39.499 309.972 50.041 320 62.83 320h66.34c12.789 0 23.331-10.028 23.97-22.801l13.6-272C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199z\"]\n};\nvar faExclamationCircle = {\n prefix: 'fas',\n iconName: 'exclamation-circle',\n icon: [512, 512, [], \"f06a\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExclamationTriangle = {\n prefix: 'fas',\n iconName: 'exclamation-triangle',\n icon: [576, 512, [], \"f071\", \"M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z\"]\n};\nvar faExpand = {\n prefix: 'fas',\n iconName: 'expand',\n icon: [448, 512, [], \"f065\", \"M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z\"]\n};\nvar faExpandAlt = {\n prefix: 'fas',\n iconName: 'expand-alt',\n icon: [448, 512, [], \"f424\", \"M212.686 315.314L120 408l32.922 31.029c15.12 15.12 4.412 40.971-16.97 40.971h-112C10.697 480 0 469.255 0 456V344c0-21.382 25.803-32.09 40.922-16.971L72 360l92.686-92.686c6.248-6.248 16.379-6.248 22.627 0l25.373 25.373c6.249 6.248 6.249 16.378 0 22.627zm22.628-118.628L328 104l-32.922-31.029C279.958 57.851 290.666 32 312.048 32h112C437.303 32 448 42.745 448 56v112c0 21.382-25.803 32.09-40.922 16.971L376 152l-92.686 92.686c-6.248 6.248-16.379 6.248-22.627 0l-25.373-25.373c-6.249-6.248-6.249-16.378 0-22.627z\"]\n};\nvar faExpandArrowsAlt = {\n prefix: 'fas',\n iconName: 'expand-arrows-alt',\n icon: [448, 512, [], \"f31e\", \"M448 344v112a23.94 23.94 0 0 1-24 24H312c-21.39 0-32.09-25.9-17-41l36.2-36.2L224 295.6 116.77 402.9 153 439c15.09 15.1 4.39 41-17 41H24a23.94 23.94 0 0 1-24-24V344c0-21.4 25.89-32.1 41-17l36.19 36.2L184.46 256 77.18 148.7 41 185c-15.1 15.1-41 4.4-41-17V56a23.94 23.94 0 0 1 24-24h112c21.39 0 32.09 25.9 17 41l-36.2 36.2L224 216.4l107.23-107.3L295 73c-15.09-15.1-4.39-41 17-41h112a23.94 23.94 0 0 1 24 24v112c0 21.4-25.89 32.1-41 17l-36.19-36.2L263.54 256l107.28 107.3L407 327.1c15.1-15.2 41-4.5 41 16.9z\"]\n};\nvar faExternalLinkAlt = {\n prefix: 'fas',\n iconName: 'external-link-alt',\n icon: [512, 512, [], \"f35d\", \"M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z\"]\n};\nvar faExternalLinkSquareAlt = {\n prefix: 'fas',\n iconName: 'external-link-square-alt',\n icon: [448, 512, [], \"f360\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-88 16H248.029c-21.313 0-32.08 25.861-16.971 40.971l31.984 31.987L67.515 364.485c-4.686 4.686-4.686 12.284 0 16.971l31.029 31.029c4.687 4.686 12.285 4.686 16.971 0l195.526-195.526 31.988 31.991C358.058 263.977 384 253.425 384 231.979V120c0-13.255-10.745-24-24-24z\"]\n};\nvar faEye = {\n prefix: 'fas',\n iconName: 'eye',\n icon: [576, 512, [], \"f06e\", \"M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z\"]\n};\nvar faEyeDropper = {\n prefix: 'fas',\n iconName: 'eye-dropper',\n icon: [512, 512, [], \"f1fb\", \"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\"]\n};\nvar faEyeSlash = {\n prefix: 'fas',\n iconName: 'eye-slash',\n icon: [640, 512, [], \"f070\", \"M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z\"]\n};\nvar faFan = {\n prefix: 'fas',\n iconName: 'fan',\n icon: [512, 512, [], \"f863\", \"M352.57 128c-28.09 0-54.09 4.52-77.06 12.86l12.41-123.11C289 7.31 279.81-1.18 269.33.13 189.63 10.13 128 77.64 128 159.43c0 28.09 4.52 54.09 12.86 77.06L17.75 224.08C7.31 223-1.18 232.19.13 242.67c10 79.7 77.51 141.33 159.3 141.33 28.09 0 54.09-4.52 77.06-12.86l-12.41 123.11c-1.05 10.43 8.11 18.93 18.59 17.62 79.7-10 141.33-77.51 141.33-159.3 0-28.09-4.52-54.09-12.86-77.06l123.11 12.41c10.44 1.05 18.93-8.11 17.62-18.59-10-79.7-77.51-141.33-159.3-141.33zM256 288a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faFastBackward = {\n prefix: 'fas',\n iconName: 'fast-backward',\n icon: [512, 512, [], \"f049\", \"M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z\"]\n};\nvar faFastForward = {\n prefix: 'fas',\n iconName: 'fast-forward',\n icon: [512, 512, [], \"f050\", \"M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z\"]\n};\nvar faFaucet = {\n prefix: 'fas',\n iconName: 'faucet',\n icon: [512, 512, [], \"e005\", \"M352,256H313.39c-15.71-13.44-35.46-23.07-57.39-28V180.44l-32-3.38-32,3.38V228c-21.93,5-41.68,14.6-57.39,28H16A16,16,0,0,0,0,272v96a16,16,0,0,0,16,16h92.79C129.38,421.73,173,448,224,448s94.62-26.27,115.21-64H352a32,32,0,0,1,32,32,32,32,0,0,0,32,32h64a32,32,0,0,0,32-32A160,160,0,0,0,352,256ZM81.59,159.91l142.41-15,142.41,15c9.42,1,17.59-6.81,17.59-16.8V112.89c0-10-8.17-17.8-17.59-16.81L256,107.74V80a16,16,0,0,0-16-16H208a16,16,0,0,0-16,16v27.74L81.59,96.08C72.17,95.09,64,102.9,64,112.89v30.22C64,153.1,72.17,160.91,81.59,159.91Z\"]\n};\nvar faFax = {\n prefix: 'fas',\n iconName: 'fax',\n icon: [512, 512, [], \"f1ac\", \"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"]\n};\nvar faFeather = {\n prefix: 'fas',\n iconName: 'feather',\n icon: [512, 512, [], \"f52d\", \"M467.14 44.84c-62.55-62.48-161.67-64.78-252.28 25.73-78.61 78.52-60.98 60.92-85.75 85.66-60.46 60.39-70.39 150.83-63.64 211.17l178.44-178.25c6.26-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.6 9.37 33.98 0l66.1-66.03C159.42 454.65 279 457.11 353.95 384h-98.19l147.57-49.14c49.99-49.93 36.38-36.18 46.31-46.86h-97.78l131.54-43.8c45.44-74.46 34.31-148.84-16.26-199.36z\"]\n};\nvar faFeatherAlt = {\n prefix: 'fas',\n iconName: 'feather-alt',\n icon: [512, 512, [], \"f56b\", \"M512 0C460.22 3.56 96.44 38.2 71.01 287.61c-3.09 26.66-4.84 53.44-5.99 80.24l178.87-178.69c6.25-6.25 16.4-6.25 22.65 0s6.25 16.38 0 22.63L7.04 471.03c-9.38 9.37-9.38 24.57 0 33.94 9.38 9.37 24.59 9.37 33.98 0l57.13-57.07c42.09-.14 84.15-2.53 125.96-7.36 53.48-5.44 97.02-26.47 132.58-56.54H255.74l146.79-48.88c11.25-14.89 21.37-30.71 30.45-47.12h-81.14l106.54-53.21C500.29 132.86 510.19 26.26 512 0z\"]\n};\nvar faFemale = {\n prefix: 'fas',\n iconName: 'female',\n icon: [256, 512, [], \"f182\", \"M128 0c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64S92.654 0 128 0m119.283 354.179l-48-192A24 24 0 0 0 176 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H80a24 24 0 0 0-23.283 18.179l-48 192C4.935 369.305 16.383 384 32 384h56v104c0 13.255 10.745 24 24 24h32c13.255 0 24-10.745 24-24V384h56c15.591 0 27.071-14.671 23.283-29.821z\"]\n};\nvar faFighterJet = {\n prefix: 'fas',\n iconName: 'fighter-jet',\n icon: [640, 512, [], \"f0fb\", \"M544 224l-128-16-48-16h-24L227.158 44h39.509C278.333 44 288 41.375 288 38s-9.667-6-21.333-6H152v12h16v164h-48l-66.667-80H18.667L8 138.667V208h8v16h48v2.666l-64 8v42.667l64 8V288H16v16H8v69.333L18.667 384h34.667L120 304h48v164h-16v12h114.667c11.667 0 21.333-2.625 21.333-6s-9.667-6-21.333-6h-39.509L344 320h24l48-16 128-16c96-21.333 96-26.583 96-32 0-5.417 0-10.667-96-32z\"]\n};\nvar faFile = {\n prefix: 'fas',\n iconName: 'file',\n icon: [384, 512, [], \"f15b\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileAlt = {\n prefix: 'fas',\n iconName: 'file-alt',\n icon: [384, 512, [], \"f15c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileArchive = {\n prefix: 'fas',\n iconName: 'file-archive',\n icon: [384, 512, [], \"f1c6\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zM128.4 336c-17.9 0-32.4 12.1-32.4 27 0 15 14.6 27 32.5 27s32.4-12.1 32.4-27-14.6-27-32.5-27zM224 136V0h-63.6v32h-32V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM95.9 32h32v32h-32zm32.3 384c-33.2 0-58-30.4-51.4-62.9L96.4 256v-32h32v-32h-32v-32h32v-32h-32V96h32V64h32v32h-32v32h32v32h-32v32h32v32h-32v32h22.1c5.7 0 10.7 4.1 11.8 9.7l17.3 87.7c6.4 32.4-18.4 62.6-51.4 62.6z\"]\n};\nvar faFileAudio = {\n prefix: 'fas',\n iconName: 'file-audio',\n icon: [384, 512, [], \"f1c7\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileCode = {\n prefix: 'fas',\n iconName: 'file-code',\n icon: [384, 512, [], \"f1c9\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zM123.206 400.505a5.4 5.4 0 0 1-7.633.246l-64.866-60.812a5.4 5.4 0 0 1 0-7.879l64.866-60.812a5.4 5.4 0 0 1 7.633.246l19.579 20.885a5.4 5.4 0 0 1-.372 7.747L101.65 336l40.763 35.874a5.4 5.4 0 0 1 .372 7.747l-19.579 20.884zm51.295 50.479l-27.453-7.97a5.402 5.402 0 0 1-3.681-6.692l61.44-211.626a5.402 5.402 0 0 1 6.692-3.681l27.452 7.97a5.4 5.4 0 0 1 3.68 6.692l-61.44 211.626a5.397 5.397 0 0 1-6.69 3.681zm160.792-111.045l-64.866 60.812a5.4 5.4 0 0 1-7.633-.246l-19.58-20.885a5.4 5.4 0 0 1 .372-7.747L284.35 336l-40.763-35.874a5.4 5.4 0 0 1-.372-7.747l19.58-20.885a5.4 5.4 0 0 1 7.633-.246l64.866 60.812a5.4 5.4 0 0 1-.001 7.879z\"]\n};\nvar faFileContract = {\n prefix: 'fas',\n iconName: 'file-contract',\n icon: [384, 512, [], \"f56c\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm192.81 248H304c8.84 0 16 7.16 16 16s-7.16 16-16 16h-47.19c-16.45 0-31.27-9.14-38.64-23.86-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34a15.986 15.986 0 0 1-14.31 8.84c-.38 0-.75-.02-1.14-.05-6.45-.45-12-4.75-14.03-10.89L144 354.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.77-16.19 54.05-9.7 66 14.16 2.02 4.06 5.96 6.5 10.16 6.5zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileCsv = {\n prefix: 'fas',\n iconName: 'file-csv',\n icon: [384, 512, [], \"f6dd\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileDownload = {\n prefix: 'fas',\n iconName: 'file-download',\n icon: [384, 512, [], \"f56d\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm76.45 211.36l-96.42 95.7c-6.65 6.61-17.39 6.61-24.04 0l-96.42-95.7C73.42 337.29 80.54 320 94.82 320H160v-80c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v80h65.18c14.28 0 21.4 17.29 11.27 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileExcel = {\n prefix: 'fas',\n iconName: 'file-excel',\n icon: [384, 512, [], \"f1c3\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm60.1 106.5L224 336l60.1 93.5c5.1 8-.6 18.5-10.1 18.5h-34.9c-4.4 0-8.5-2.4-10.6-6.3C208.9 405.5 192 373 192 373c-6.4 14.8-10 20-36.6 68.8-2.1 3.9-6.1 6.3-10.5 6.3H110c-9.5 0-15.2-10.5-10.1-18.5l60.3-93.5-60.3-93.5c-5.2-8 .6-18.5 10.1-18.5h34.8c4.4 0 8.5 2.4 10.6 6.3 26.1 48.8 20 33.6 36.6 68.5 0 0 6.1-11.7 36.6-68.5 2.1-3.9 6.2-6.3 10.6-6.3H274c9.5-.1 15.2 10.4 10.1 18.4zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileExport = {\n prefix: 'fas',\n iconName: 'file-export',\n icon: [576, 512, [], \"f56e\", \"M384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128zM571 308l-95.7-96.4c-10.1-10.1-27.4-3-27.4 11.3V288h-64v64h64v65.2c0 14.3 17.3 21.4 27.4 11.3L571 332c6.6-6.6 6.6-17.4 0-24zm-379 28v-32c0-8.8 7.2-16 16-16h176V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V352H208c-8.8 0-16-7.2-16-16z\"]\n};\nvar faFileImage = {\n prefix: 'fas',\n iconName: 'file-image',\n icon: [384, 512, [], \"f1c5\", \"M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z\"]\n};\nvar faFileImport = {\n prefix: 'fas',\n iconName: 'file-import',\n icon: [512, 512, [], \"f56f\", \"M16 288c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h112v-64zm489-183L407.1 7c-4.5-4.5-10.6-7-17-7H384v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H152c-13.3 0-24 10.7-24 24v264h128v-65.2c0-14.3 17.3-21.4 27.4-11.3L379 308c6.6 6.7 6.6 17.4 0 24l-95.7 96.4c-10.1 10.1-27.4 3-27.4-11.3V352H128v136c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H376c-13.2 0-24-10.8-24-24z\"]\n};\nvar faFileInvoice = {\n prefix: 'fas',\n iconName: 'file-invoice',\n icon: [384, 512, [], \"f570\", \"M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z\"]\n};\nvar faFileInvoiceDollar = {\n prefix: 'fas',\n iconName: 'file-invoice-dollar',\n icon: [384, 512, [], \"f571\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 80v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8zm144 263.88V440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-24.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V232c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v24.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07z\"]\n};\nvar faFileMedical = {\n prefix: 'fas',\n iconName: 'file-medical',\n icon: [384, 512, [], \"f477\", \"M377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 160v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8z\"]\n};\nvar faFileMedicalAlt = {\n prefix: 'fas',\n iconName: 'file-medical-alt',\n icon: [448, 512, [], \"f478\", \"M288 136V0H88C74.7 0 64 10.7 64 24v232H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h140.9c3 0 5.8 1.7 7.2 4.4l19.9 39.8 56.8-113.7c2.9-5.9 11.4-5.9 14.3 0l34.7 69.5H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-89.9L240 275.8l-56.8 113.7c-2.9 5.9-11.4 5.9-14.3 0L134.1 320H64v168c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H312c-13.2 0-24-10.8-24-24zm153-31L343.1 7c-4.5-4.5-10.6-7-17-7H320v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFilePdf = {\n prefix: 'fas',\n iconName: 'file-pdf',\n icon: [384, 512, [], \"f1c1\", \"M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z\"]\n};\nvar faFilePowerpoint = {\n prefix: 'fas',\n iconName: 'file-powerpoint',\n icon: [384, 512, [], \"f1c4\", \"M193.7 271.2c8.8 0 15.5 2.7 20.3 8.1 9.6 10.9 9.8 32.7-.2 44.1-4.9 5.6-11.9 8.5-21.1 8.5h-26.9v-60.7h27.9zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm53 165.2c0 90.3-88.8 77.6-111.1 77.6V436c0 6.6-5.4 12-12 12h-30.8c-6.6 0-12-5.4-12-12V236.2c0-6.6 5.4-12 12-12h81c44.5 0 72.9 32.8 72.9 77z\"]\n};\nvar faFilePrescription = {\n prefix: 'fas',\n iconName: 'file-prescription',\n icon: [384, 512, [], \"f572\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm68.53 179.48l11.31 11.31c6.25 6.25 6.25 16.38 0 22.63l-29.9 29.9L304 409.38c6.25 6.25 6.25 16.38 0 22.63l-11.31 11.31c-6.25 6.25-16.38 6.25-22.63 0L240 413.25l-30.06 30.06c-6.25 6.25-16.38 6.25-22.63 0L176 432c-6.25-6.25-6.25-16.38 0-22.63l30.06-30.06L146.74 320H128v48c0 8.84-7.16 16-16 16H96c-8.84 0-16-7.16-16-16V208c0-8.84 7.16-16 16-16h80c35.35 0 64 28.65 64 64 0 24.22-13.62 45.05-33.46 55.92L240 345.38l29.9-29.9c6.25-6.25 16.38-6.25 22.63 0zM176 272h-48v-32h48c8.82 0 16 7.18 16 16s-7.18 16-16 16zm208-150.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFileSignature = {\n prefix: 'fas',\n iconName: 'file-signature',\n icon: [576, 512, [], \"f573\", \"M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z\"]\n};\nvar faFileUpload = {\n prefix: 'fas',\n iconName: 'file-upload',\n icon: [384, 512, [], \"f574\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z\"]\n};\nvar faFileVideo = {\n prefix: 'fas',\n iconName: 'file-video',\n icon: [384, 512, [], \"f1c8\", \"M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z\"]\n};\nvar faFileWord = {\n prefix: 'fas',\n iconName: 'file-word',\n icon: [384, 512, [], \"f1c2\", \"M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm57.1 120H305c7.7 0 13.4 7.1 11.7 14.7l-38 168c-1.2 5.5-6.1 9.3-11.7 9.3h-38c-5.5 0-10.3-3.8-11.6-9.1-25.8-103.5-20.8-81.2-25.6-110.5h-.5c-1.1 14.3-2.4 17.4-25.6 110.5-1.3 5.3-6.1 9.1-11.6 9.1H117c-5.6 0-10.5-3.9-11.7-9.4l-37.8-168c-1.7-7.5 4-14.6 11.7-14.6h24.5c5.7 0 10.7 4 11.8 9.7 15.6 78 20.1 109.5 21 122.2 1.6-10.2 7.3-32.7 29.4-122.7 1.3-5.4 6.1-9.1 11.7-9.1h29.1c5.6 0 10.4 3.8 11.7 9.2 24 100.4 28.8 124 29.6 129.4-.2-11.2-2.6-17.8 21.6-129.2 1-5.6 5.9-9.5 11.5-9.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z\"]\n};\nvar faFill = {\n prefix: 'fas',\n iconName: 'fill',\n icon: [512, 512, [], \"f575\", \"M502.63 217.06L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.77c-6.24-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.63l86.19 86.18-94.76 94.76c-37.49 37.49-37.49 98.26 0 135.75l117.19 117.19c18.75 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.88-28.12l221.57-221.57c12.49-12.5 12.49-32.76 0-45.26zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.61 58.6c12.49 12.49 32.75 12.49 45.24 0 12.49-12.49 12.49-32.75 0-45.24l-58.61-58.6 58.95-58.95 162.45 162.44-48.35 48.34z\"]\n};\nvar faFillDrip = {\n prefix: 'fas',\n iconName: 'fill-drip',\n icon: [576, 512, [], \"f576\", \"M512 320s-64 92.65-64 128c0 35.35 28.66 64 64 64s64-28.65 64-64-64-128-64-128zm-9.37-102.94L294.94 9.37C288.69 3.12 280.5 0 272.31 0s-16.38 3.12-22.62 9.37l-81.58 81.58L81.93 4.76c-6.25-6.25-16.38-6.25-22.62 0L36.69 27.38c-6.24 6.25-6.24 16.38 0 22.62l86.19 86.18-94.76 94.76c-37.49 37.48-37.49 98.26 0 135.75l117.19 117.19c18.74 18.74 43.31 28.12 67.87 28.12 24.57 0 49.13-9.37 67.87-28.12l221.57-221.57c12.5-12.5 12.5-32.75.01-45.25zm-116.22 70.97H65.93c1.36-3.84 3.57-7.98 7.43-11.83l13.15-13.15 81.61-81.61 58.6 58.6c12.49 12.49 32.75 12.49 45.24 0s12.49-32.75 0-45.24l-58.6-58.6 58.95-58.95 162.44 162.44-48.34 48.34z\"]\n};\nvar faFilm = {\n prefix: 'fas',\n iconName: 'film',\n icon: [512, 512, [], \"f008\", \"M488 64h-8v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V64H96v20c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12V64h-8C10.7 64 0 74.7 0 88v336c0 13.3 10.7 24 24 24h8v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h320v-20c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v20h8c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM96 372c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12H44c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm272 208c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm0-168c0 6.6-5.4 12-12 12H156c-6.6 0-12-5.4-12-12v-96c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v96zm112 152c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-96c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faFilter = {\n prefix: 'fas',\n iconName: 'filter',\n icon: [512, 512, [], \"f0b0\", \"M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z\"]\n};\nvar faFingerprint = {\n prefix: 'fas',\n iconName: 'fingerprint',\n icon: [512, 512, [], \"f577\", \"M256.12 245.96c-13.25 0-24 10.74-24 24 1.14 72.25-8.14 141.9-27.7 211.55-2.73 9.72 2.15 30.49 23.12 30.49 10.48 0 20.11-6.92 23.09-17.52 13.53-47.91 31.04-125.41 29.48-224.52.01-13.25-10.73-24-23.99-24zm-.86-81.73C194 164.16 151.25 211.3 152.1 265.32c.75 47.94-3.75 95.91-13.37 142.55-2.69 12.98 5.67 25.69 18.64 28.36 13.05 2.67 25.67-5.66 28.36-18.64 10.34-50.09 15.17-101.58 14.37-153.02-.41-25.95 19.92-52.49 54.45-52.34 31.31.47 57.15 25.34 57.62 55.47.77 48.05-2.81 96.33-10.61 143.55-2.17 13.06 6.69 25.42 19.76 27.58 19.97 3.33 26.81-15.1 27.58-19.77 8.28-50.03 12.06-101.21 11.27-152.11-.88-55.8-47.94-101.88-104.91-102.72zm-110.69-19.78c-10.3-8.34-25.37-6.8-33.76 3.48-25.62 31.5-39.39 71.28-38.75 112 .59 37.58-2.47 75.27-9.11 112.05-2.34 13.05 6.31 25.53 19.36 27.89 20.11 3.5 27.07-14.81 27.89-19.36 7.19-39.84 10.5-80.66 9.86-121.33-.47-29.88 9.2-57.88 28-80.97 8.35-10.28 6.79-25.39-3.49-33.76zm109.47-62.33c-15.41-.41-30.87 1.44-45.78 4.97-12.89 3.06-20.87 15.98-17.83 28.89 3.06 12.89 16 20.83 28.89 17.83 11.05-2.61 22.47-3.77 34-3.69 75.43 1.13 137.73 61.5 138.88 134.58.59 37.88-1.28 76.11-5.58 113.63-1.5 13.17 7.95 25.08 21.11 26.58 16.72 1.95 25.51-11.88 26.58-21.11a929.06 929.06 0 0 0 5.89-119.85c-1.56-98.75-85.07-180.33-186.16-181.83zm252.07 121.45c-2.86-12.92-15.51-21.2-28.61-18.27-12.94 2.86-21.12 15.66-18.26 28.61 4.71 21.41 4.91 37.41 4.7 61.6-.11 13.27 10.55 24.09 23.8 24.2h.2c13.17 0 23.89-10.61 24-23.8.18-22.18.4-44.11-5.83-72.34zm-40.12-90.72C417.29 43.46 337.6 1.29 252.81.02 183.02-.82 118.47 24.91 70.46 72.94 24.09 119.37-.9 181.04.14 246.65l-.12 21.47c-.39 13.25 10.03 24.31 23.28 24.69.23.02.48.02.72.02 12.92 0 23.59-10.3 23.97-23.3l.16-23.64c-.83-52.5 19.16-101.86 56.28-139 38.76-38.8 91.34-59.67 147.68-58.86 69.45 1.03 134.73 35.56 174.62 92.39 7.61 10.86 22.56 13.45 33.42 5.86 10.84-7.62 13.46-22.59 5.84-33.43z\"]\n};\nvar faFire = {\n prefix: 'fas',\n iconName: 'fire',\n icon: [384, 512, [], \"f06d\", \"M216 23.86c0-23.8-30.65-32.77-44.15-13.04C48 191.85 224 200 224 288c0 35.63-29.11 64.46-64.85 63.99-35.17-.45-63.15-29.77-63.15-64.94v-85.51c0-21.7-26.47-32.23-41.43-16.5C27.8 213.16 0 261.33 0 320c0 105.87 86.13 192 192 192s192-86.13 192-192c0-170.29-168-193-168-296.14z\"]\n};\nvar faFireAlt = {\n prefix: 'fas',\n iconName: 'fire-alt',\n icon: [448, 512, [], \"f7e4\", \"M323.56 51.2c-20.8 19.3-39.58 39.59-56.22 59.97C240.08 73.62 206.28 35.53 168 0 69.74 91.17 0 209.96 0 281.6 0 408.85 100.29 512 224 512s224-103.15 224-230.4c0-53.27-51.98-163.14-124.44-230.4zm-19.47 340.65C282.43 407.01 255.72 416 226.86 416 154.71 416 96 368.26 96 290.75c0-38.61 24.31-72.63 72.79-130.75 6.93 7.98 98.83 125.34 98.83 125.34l58.63-66.88c4.14 6.85 7.91 13.55 11.27 19.97 27.35 52.19 15.81 118.97-33.43 153.42z\"]\n};\nvar faFireExtinguisher = {\n prefix: 'fas',\n iconName: 'fire-extinguisher',\n icon: [448, 512, [], \"f134\", \"M434.027 26.329l-168 28C254.693 56.218 256 67.8 256 72h-58.332C208.353 36.108 181.446 0 144 0c-39.435 0-66.368 39.676-52.228 76.203-52.039 13.051-75.381 54.213-90.049 90.884-4.923 12.307 1.063 26.274 13.37 31.197 12.317 4.926 26.279-1.075 31.196-13.37C75.058 112.99 106.964 120 168 120v27.076c-41.543 10.862-72 49.235-72 94.129V488c0 13.255 10.745 24 24 24h144c13.255 0 24-10.745 24-24V240c0-44.731-30.596-82.312-72-92.97V120h40c0 2.974-1.703 15.716 10.027 17.671l168 28C441.342 166.89 448 161.25 448 153.834V38.166c0-7.416-6.658-13.056-13.973-11.837zM144 72c-8.822 0-16-7.178-16-16s7.178-16 16-16 16 7.178 16 16-7.178 16-16 16z\"]\n};\nvar faFirstAid = {\n prefix: 'fas',\n iconName: 'first-aid',\n icon: [576, 512, [], \"f479\", \"M0 80v352c0 26.5 21.5 48 48 48h48V32H48C21.5 32 0 53.5 0 80zm128 400h320V32H128v448zm64-248c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48zM528 32h-48v448h48c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faFish = {\n prefix: 'fas',\n iconName: 'fish',\n icon: [576, 512, [], \"f578\", \"M327.1 96c-89.97 0-168.54 54.77-212.27 101.63L27.5 131.58c-12.13-9.18-30.24.6-27.14 14.66L24.54 256 .35 365.77c-3.1 14.06 15.01 23.83 27.14 14.66l87.33-66.05C158.55 361.23 237.13 416 327.1 416 464.56 416 576 288 576 256S464.56 96 327.1 96zm87.43 184c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24 13.26 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFistRaised = {\n prefix: 'fas',\n iconName: 'fist-raised',\n icon: [384, 512, [], \"f6de\", \"M255.98 160V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v146.93c5.02-1.78 10.34-2.93 15.97-2.93h48.03zm128 95.99c-.01-35.34-28.66-63.99-63.99-63.99H207.85c-8.78 0-15.9 7.07-15.9 15.85v.56c0 26.27 21.3 47.59 47.57 47.59h35.26c9.68 0 13.2 3.58 13.2 8v16.2c0 4.29-3.59 7.78-7.88 8-44.52 2.28-64.16 24.71-96.05 72.55l-6.31 9.47a7.994 7.994 0 0 1-11.09 2.22l-13.31-8.88a7.994 7.994 0 0 1-2.22-11.09l6.31-9.47c15.73-23.6 30.2-43.26 47.31-58.08-17.27-5.51-31.4-18.12-38.87-34.45-6.59 3.41-13.96 5.52-21.87 5.52h-32c-12.34 0-23.49-4.81-32-12.48C71.48 251.19 60.33 256 48 256H16c-5.64 0-10.97-1.15-16-2.95v77.93c0 33.95 13.48 66.5 37.49 90.51L63.99 448v64h255.98v-63.96l35.91-35.92A96.035 96.035 0 0 0 384 344.21l-.02-88.22zm-32.01-90.09V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v112h32c11.28 0 21.94 2.31 32 5.9zM16 224h32c8.84 0 16-7.16 16-16V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v128c0 8.84 7.16 16 16 16zm95.99 0h32c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16z\"]\n};\nvar faFlag = {\n prefix: 'fas',\n iconName: 'flag',\n icon: [512, 512, [], \"f024\", \"M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z\"]\n};\nvar faFlagCheckered = {\n prefix: 'fas',\n iconName: 'flag-checkered',\n icon: [512, 512, [], \"f11e\", \"M243.2 189.9V258c26.1 5.9 49.3 15.6 73.6 22.3v-68.2c-26-5.8-49.4-15.5-73.6-22.2zm223.3-123c-34.3 15.9-76.5 31.9-117 31.9C296 98.8 251.7 64 184.3 64c-25 0-47.3 4.4-68 12 2.8-7.3 4.1-15.2 3.6-23.6C118.1 24 94.8 1.2 66.3 0 34.3-1.3 8 24.3 8 56c0 19 9.5 35.8 24 45.9V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-94.4c28.3-12.1 63.6-22.1 114.4-22.1 53.6 0 97.8 34.8 165.2 34.8 48.2 0 86.7-16.3 122.5-40.9 8.7-6 13.8-15.8 13.8-26.4V95.9c.1-23.3-24.2-38.8-45.4-29zM169.6 325.5c-25.8 2.7-50 8.2-73.6 16.6v-70.5c26.2-9.3 47.5-15 73.6-17.4zM464 191c-23.6 9.8-46.3 19.5-73.6 23.9V286c24.8-3.4 51.4-11.8 73.6-26v70.5c-25.1 16.1-48.5 24.7-73.6 27.1V286c-27 3.7-47.9 1.5-73.6-5.6v67.4c-23.9-7.4-47.3-16.7-73.6-21.3V258c-19.7-4.4-40.8-6.8-73.6-3.8v-70c-22.4 3.1-44.6 10.2-73.6 20.9v-70.5c33.2-12.2 50.1-19.8 73.6-22v71.6c27-3.7 48.4-1.3 73.6 5.7v-67.4c23.7 7.4 47.2 16.7 73.6 21.3v68.4c23.7 5.3 47.6 6.9 73.6 2.7V143c27-4.8 52.3-13.6 73.6-22.5z\"]\n};\nvar faFlagUsa = {\n prefix: 'fas',\n iconName: 'flag-usa',\n icon: [512, 512, [], \"f74d\", \"M32 0C14.3 0 0 14.3 0 32v464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32C64 14.3 49.7 0 32 0zm267.9 303.6c-57.2-15.1-111.7-28.8-203.9 11.1V384c185.7-92.2 221.7 53.3 397.5-23.1 11.4-5 18.5-16.5 18.5-28.8v-36c-43.6 17.3-80.2 24.1-112.1 24.1-37.4-.1-68.9-8.4-100-16.6zm0-96c-57.2-15.1-111.7-28.8-203.9 11.1v61.5c94.8-37.6 154.6-22.7 212.1-7.6 57.2 15.1 111.7 28.8 203.9-11.1V200c-43.6 17.3-80.2 24.1-112.1 24.1-37.4 0-68.9-8.3-100-16.5zm9.5-125.9c51.8 15.6 97.4 29 202.6-20.1V30.8c0-25.1-26.8-38.1-49.4-26.6C291.3 91.5 305.4-62.2 96 32.4v151.9c94.8-37.5 154.6-22.7 212.1-7.6 57.2 15 111.7 28.7 203.9-11.1V96.7c-53.6 23.5-93.3 31.4-126.1 31.4s-59-7.8-85.7-15.9c-4-1.2-8.1-2.4-12.1-3.5V75.5c7.2 2 14.3 4.1 21.3 6.2zM160 128.1c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16-7.2 16-16 16zm0-55.8c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm64 47.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16zm0-55.9c-8.8 0-16-7.1-16-16 0-8.8 7.2-16 16-16s16 7.1 16 16c0 8.8-7.2 16-16 16z\"]\n};\nvar faFlask = {\n prefix: 'fas',\n iconName: 'flask',\n icon: [448, 512, [], \"f0c3\", \"M437.2 403.5L320 215V64h8c13.3 0 24-10.7 24-24V24c0-13.3-10.7-24-24-24H120c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24h8v151L10.8 403.5C-18.5 450.6 15.3 512 70.9 512h306.2c55.7 0 89.4-61.5 60.1-108.5zM137.9 320l48.2-77.6c3.7-5.2 5.8-11.6 5.8-18.4V64h64v160c0 6.9 2.2 13.2 5.8 18.4l48.2 77.6h-172z\"]\n};\nvar faFlushed = {\n prefix: 'fas',\n iconName: 'flushed',\n icon: [496, 512, [], \"f579\", \"M344 200c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm-192 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM80 224c0-39.8 32.2-72 72-72s72 32.2 72 72-32.2 72-72 72-72-32.2-72-72zm232 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-104c-39.8 0-72-32.2-72-72s32.2-72 72-72 72 32.2 72 72-32.2 72-72 72z\"]\n};\nvar faFolder = {\n prefix: 'fas',\n iconName: 'folder',\n icon: [512, 512, [], \"f07b\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z\"]\n};\nvar faFolderMinus = {\n prefix: 'fas',\n iconName: 'folder-minus',\n icon: [512, 512, [], \"f65d\", \"M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48zm-96 168c0 8.84-7.16 16-16 16H160c-8.84 0-16-7.16-16-16v-16c0-8.84 7.16-16 16-16h192c8.84 0 16 7.16 16 16v16z\"]\n};\nvar faFolderOpen = {\n prefix: 'fas',\n iconName: 'folder-open',\n icon: [576, 512, [], \"f07c\", \"M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z\"]\n};\nvar faFolderPlus = {\n prefix: 'fas',\n iconName: 'folder-plus',\n icon: [512, 512, [], \"f65e\", \"M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z\"]\n};\nvar faFont = {\n prefix: 'fas',\n iconName: 'font',\n icon: [448, 512, [], \"f031\", \"M432 416h-23.41L277.88 53.69A32 32 0 0 0 247.58 32h-47.16a32 32 0 0 0-30.3 21.69L39.41 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-19.58l23.3-64h152.56l23.3 64H304a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM176.85 272L224 142.51 271.15 272z\"]\n};\nvar faFontAwesomeLogoFull = {\n prefix: 'fas',\n iconName: 'font-awesome-logo-full',\n icon: [3992, 512, [\"Font Awesome\"], \"f4e6\", \"M454.6 0H57.4C25.9 0 0 25.9 0 57.4v397.3C0 486.1 25.9 512 57.4 512h397.3c31.4 0 57.4-25.9 57.4-57.4V57.4C512 25.9 486.1 0 454.6 0zm-58.9 324.9c0 4.8-4.1 6.9-8.9 8.9-19.2 8.1-39.7 15.7-61.5 15.7-40.5 0-68.7-44.8-163.2 2.5v51.8c0 30.3-45.7 30.2-45.7 0v-250c-9-7-15-17.9-15-30.3 0-21 17.1-38.2 38.2-38.2 21 0 38.2 17.1 38.2 38.2 0 12.2-5.8 23.2-14.9 30.2v21c37.1-12 65.5-34.4 146.1-3.4 26.6 11.4 68.7-15.7 76.5-15.7 5.5 0 10.3 4.1 10.3 8.9v160.4zm432.9-174.2h-137v70.1H825c39.8 0 40.4 62.2 0 62.2H691.6v105.6c0 45.5-70.7 46.4-70.7 0V128.3c0-22 18-39.8 39.8-39.8h167.8c39.6 0 40.5 62.2.1 62.2zm191.1 23.4c-169.3 0-169.1 252.4 0 252.4 169.9 0 169.9-252.4 0-252.4zm0 196.1c-81.6 0-82.1-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm372.4 53.4c-17.5 0-31.4-13.9-31.4-31.4v-117c0-62.4-72.6-52.5-99.1-16.4v133.4c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c43.3-51.6 162.4-60.4 162.4 39.3v141.5c.3 30.4-31.5 31.4-31.7 31.4zm179.7 2.9c-44.3 0-68.3-22.9-68.3-65.8V235.2H1488c-35.6 0-36.7-55.3 0-55.3h15.5v-37.3c0-41.3 63.8-42.1 63.8 0v37.5h24.9c35.4 0 35.7 55.3 0 55.3h-24.9v108.5c0 29.6 26.1 26.3 27.4 26.3 31.4 0 52.6 56.3-22.9 56.3zM1992 123c-19.5-50.2-95.5-50-114.5 0-107.3 275.7-99.5 252.7-99.5 262.8 0 42.8 58.3 51.2 72.1 14.4l13.5-35.9H2006l13 35.9c14.2 37.7 72.1 27.2 72.1-14.4 0-10.1 5.3 6.8-99.1-262.8zm-108.9 179.1l51.7-142.9 51.8 142.9h-103.5zm591.3-85.6l-53.7 176.3c-12.4 41.2-72 41-84 0l-42.3-135.9-42.3 135.9c-12.4 40.9-72 41.2-84.5 0l-54.2-176.3c-12.5-39.4 49.8-56.1 60.2-16.9L2213 342l45.3-139.5c10.9-32.7 59.6-34.7 71.2 0l45.3 139.5 39.3-142.4c10.3-38.3 72.6-23.8 60.3 16.9zm275.4 75.1c0-42.4-33.9-117.5-119.5-117.5-73.2 0-124.4 56.3-124.4 126 0 77.2 55.3 126.4 128.5 126.4 31.7 0 93-11.5 93-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-109 8.4-115.9-43.8h148.3c16.3 0 29.3-13.4 29.3-28.9zM2571 277.7c9.5-73.4 113.9-68.6 118.6 0H2571zm316.7 148.8c-31.4 0-81.6-10.5-96.6-31.9-12.4-17 2.5-39.8 21.8-39.8 16.3 0 36.8 22.9 77.7 22.9 27.4 0 40.4-11 40.4-25.8 0-39.8-142.9-7.4-142.9-102 0-40.4 35.3-75.7 98.6-75.7 31.4 0 74.1 9.9 87.6 29.4 10.8 14.8-1.4 36.2-20.9 36.2-15.1 0-26.7-17.3-66.2-17.3-22.9 0-37.8 10.5-37.8 23.8 0 35.9 142.4 6 142.4 103.1-.1 43.7-37.4 77.1-104.1 77.1zm266.8-252.4c-169.3 0-169.1 252.4 0 252.4 170.1 0 169.6-252.4 0-252.4zm0 196.1c-81.8 0-82-139.8 0-139.8 82.5 0 82.4 139.8 0 139.8zm476.9 22V268.7c0-53.8-61.4-45.8-85.7-10.5v134c0 41.3-63.8 42.1-63.8 0V268.7c0-52.1-59.5-47.4-85.7-10.1v133.6c0 41.5-63.3 41.8-63.3 0V208c0-40 63.1-41.6 63.1 0v3.4c9.9-14.4 41.8-37.3 78.6-37.3 35.3 0 57.7 16.4 66.7 43.8 13.9-21.8 45.8-43.8 82.6-43.8 44.3 0 70.7 23.4 70.7 72.7v145.3c.5 17.3-13.5 31.4-31.9 31.4 3.5.1-31.3 1.1-31.3-31.3zM3992 291.6c0-42.4-32.4-117.5-117.9-117.5-73.2 0-127.5 56.3-127.5 126 0 77.2 58.3 126.4 131.6 126.4 31.7 0 91.5-11.5 91.5-39.8 0-18.3-21.1-31.5-39.3-22.4-49.4 26.2-110.5 8.4-117.5-43.8h149.8c16.3 0 29.1-13.4 29.3-28.9zm-180.5-13.9c9.7-74.4 115.9-68.3 120.1 0h-120.1z\"]\n};\nvar faFootballBall = {\n prefix: 'fas',\n iconName: 'football-ball',\n icon: [496, 512, [], \"f44e\", \"M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z\"]\n};\nvar faForward = {\n prefix: 'fas',\n iconName: 'forward',\n icon: [512, 512, [], \"f04e\", \"M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z\"]\n};\nvar faFrog = {\n prefix: 'fas',\n iconName: 'frog',\n icon: [576, 512, [], \"f52e\", \"M446.53 97.43C439.67 60.23 407.19 32 368 32c-39.23 0-71.72 28.29-78.54 65.54C126.75 112.96-.5 250.12 0 416.98.11 451.9 29.08 480 64 480h304c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-79.49l35.8-48.33c24.14-36.23 10.35-88.28-33.71-106.6-23.89-9.93-51.55-4.65-72.24 10.88l-32.76 24.59c-7.06 5.31-17.09 3.91-22.41-3.19-5.3-7.08-3.88-17.11 3.19-22.41l34.78-26.09c36.84-27.66 88.28-27.62 125.13 0 10.87 8.15 45.87 39.06 40.8 93.21L469.62 480H560c8.84 0 16-7.16 16-16 0-17.67-14.33-32-32-32h-53.63l-98.52-104.68 154.44-86.65A58.16 58.16 0 0 0 576 189.94c0-21.4-11.72-40.95-30.48-51.23-40.56-22.22-98.99-41.28-98.99-41.28zM368 136c-13.26 0-24-10.75-24-24 0-13.26 10.74-24 24-24 13.25 0 24 10.74 24 24 0 13.25-10.75 24-24 24z\"]\n};\nvar faFrown = {\n prefix: 'fas',\n iconName: 'frown',\n icon: [496, 512, [], \"f119\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm170.2 218.2C315.8 367.4 282.9 352 248 352s-67.8 15.4-90.2 42.2c-13.5 16.3-38.1-4.2-24.6-20.5C161.7 339.6 203.6 320 248 320s86.3 19.6 114.7 53.8c13.6 16.2-11 36.7-24.5 20.4z\"]\n};\nvar faFrownOpen = {\n prefix: 'fas',\n iconName: 'frown-open',\n icon: [496, 512, [], \"f57a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm187.3 183.3c-31.2-9.6-59.4-15.3-75.3-15.3s-44.1 5.7-75.3 15.3c-11.5 3.5-22.5-6.3-20.5-18.1 7-40 60.1-61.2 95.8-61.2s88.8 21.3 95.8 61.2c2 11.9-9.1 21.6-20.5 18.1zM328 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faFunnelDollar = {\n prefix: 'fas',\n iconName: 'funnel-dollar',\n icon: [640, 512, [], \"f662\", \"M433.46 165.94l101.2-111.87C554.61 34.12 540.48 0 512.26 0H31.74C3.52 0-10.61 34.12 9.34 54.07L192 256v155.92c0 12.59 5.93 24.44 16 32l79.99 60c20.86 15.64 48.47 6.97 59.22-13.57C310.8 455.38 288 406.35 288 352c0-89.79 62.05-165.17 145.46-186.06zM480 192c-88.37 0-160 71.63-160 160s71.63 160 160 160 160-71.63 160-160-71.63-160-160-160zm16 239.88V448c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V256c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.04 44.44-42.67 45.07z\"]\n};\nvar faFutbol = {\n prefix: 'fas',\n iconName: 'futbol',\n icon: [512, 512, [], \"f1e3\", \"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z\"]\n};\nvar faGamepad = {\n prefix: 'fas',\n iconName: 'gamepad',\n icon: [640, 512, [], \"f11b\", \"M480.07 96H160a160 160 0 1 0 114.24 272h91.52A160 160 0 1 0 480.07 96zM248 268a12 12 0 0 1-12 12h-52v52a12 12 0 0 1-12 12h-24a12 12 0 0 1-12-12v-52H84a12 12 0 0 1-12-12v-24a12 12 0 0 1 12-12h52v-52a12 12 0 0 1 12-12h24a12 12 0 0 1 12 12v52h52a12 12 0 0 1 12 12zm216 76a40 40 0 1 1 40-40 40 40 0 0 1-40 40zm64-96a40 40 0 1 1 40-40 40 40 0 0 1-40 40z\"]\n};\nvar faGasPump = {\n prefix: 'fas',\n iconName: 'gas-pump',\n icon: [512, 512, [], \"f52f\", \"M336 448H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm157.2-340.7l-81-81c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-6.2 6.2-6.2 16.4 0 22.6L416 97.9V160c0 28.1 20.9 51.3 48 55.2V376c0 13.2-10.8 24-24 24s-24-10.8-24-24v-32c0-48.6-39.4-88-88-88h-8V64c0-35.3-28.7-64-64-64H96C60.7 0 32 28.7 32 64v352h288V304h8c22.1 0 40 17.9 40 40v27.8c0 37.7 27 72 64.5 75.9 43 4.3 79.5-29.5 79.5-71.7V152.6c0-17-6.8-33.3-18.8-45.3zM256 192H96V64h160v128z\"]\n};\nvar faGavel = {\n prefix: 'fas',\n iconName: 'gavel',\n icon: [512, 512, [], \"f0e3\", \"M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z\"]\n};\nvar faGem = {\n prefix: 'fas',\n iconName: 'gem',\n icon: [576, 512, [], \"f3a5\", \"M485.5 0L576 160H474.9L405.7 0h79.8zm-128 0l69.2 160H149.3L218.5 0h139zm-267 0h79.8l-69.2 160H0L90.5 0zM0 192h100.7l123 251.7c1.5 3.1-2.7 5.9-5 3.3L0 192zm148.2 0h279.6l-137 318.2c-1 2.4-4.5 2.4-5.5 0L148.2 192zm204.1 251.7l123-251.7H576L357.3 446.9c-2.3 2.7-6.5-.1-5-3.2z\"]\n};\nvar faGenderless = {\n prefix: 'fas',\n iconName: 'genderless',\n icon: [288, 512, [], \"f22d\", \"M144 176c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64C64.5 112 0 176.5 0 256s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z\"]\n};\nvar faGhost = {\n prefix: 'fas',\n iconName: 'ghost',\n icon: [384, 512, [], \"f6e2\", \"M186.1.09C81.01 3.24 0 94.92 0 200.05v263.92c0 14.26 17.23 21.39 27.31 11.31l24.92-18.53c6.66-4.95 16-3.99 21.51 2.21l42.95 48.35c6.25 6.25 16.38 6.25 22.63 0l40.72-45.85c6.37-7.17 17.56-7.17 23.92 0l40.72 45.85c6.25 6.25 16.38 6.25 22.63 0l42.95-48.35c5.51-6.2 14.85-7.17 21.51-2.21l24.92 18.53c10.08 10.08 27.31 2.94 27.31-11.31V192C384 84 294.83-3.17 186.1.09zM128 224c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm128 0c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faGift = {\n prefix: 'fas',\n iconName: 'gift',\n icon: [512, 512, [], \"f06b\", \"M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm256 32h160c17.7 0 32-14.3 32-32V320H288v160zm192-320h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40z\"]\n};\nvar faGifts = {\n prefix: 'fas',\n iconName: 'gifts',\n icon: [640, 512, [], \"f79c\", \"M240.6 194.1c1.9-30.8 17.3-61.2 44-79.8C279.4 103.5 268.7 96 256 96h-29.4l30.7-22c7.2-5.1 8.9-15.1 3.7-22.3l-9.3-13c-5.1-7.2-15.1-8.9-22.3-3.7l-32 22.9 11.5-30.6c3.1-8.3-1.1-17.5-9.4-20.6l-15-5.6c-8.3-3.1-17.5 1.1-20.6 9.4l-19.9 53-19.9-53.1C121 2.1 111.8-2.1 103.5 1l-15 5.6C80.2 9.7 76 19 79.2 27.2l11.5 30.6L58.6 35c-7.2-5.1-17.2-3.5-22.3 3.7l-9.3 13c-5.1 7.2-3.5 17.2 3.7 22.3l30.7 22H32c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h168.9c-5.5-9.5-8.9-20.3-8.9-32V256c0-29.9 20.8-55 48.6-61.9zM224 480c0 17.7 14.3 32 32 32h160V384H224v96zm224 32h160c17.7 0 32-14.3 32-32v-96H448v128zm160-288h-20.4c2.6-7.6 4.4-15.5 4.4-23.8 0-35.5-27-72.2-72.1-72.2-48.1 0-75.9 47.7-87.9 75.3-12.1-27.6-39.9-75.3-87.9-75.3-45.1 0-72.1 36.7-72.1 72.2 0 8.3 1.7 16.2 4.4 23.8H256c-17.7 0-32 14.3-32 32v96h192V224h15.3l.7-.2.7.2H448v128h192v-96c0-17.7-14.3-32-32-32zm-272 0c-2.7-1.4-5.1-3-7.2-4.8-7.3-6.4-8.8-13.8-8.8-19 0-9.7 6.4-24.2 24.1-24.2 18.7 0 35.6 27.4 44.5 48H336zm199.2-4.8c-2.1 1.8-4.5 3.4-7.2 4.8h-52.6c8.8-20.3 25.8-48 44.5-48 17.7 0 24.1 14.5 24.1 24.2 0 5.2-1.5 12.6-8.8 19z\"]\n};\nvar faGlassCheers = {\n prefix: 'fas',\n iconName: 'glass-cheers',\n icon: [640, 512, [], \"f79f\", \"M639.4 433.6c-8.4-20.4-31.8-30.1-52.2-21.6l-22.1 9.2-38.7-101.9c47.9-35 64.8-100.3 34.5-152.8L474.3 16c-8-13.9-25.1-19.7-40-13.6L320 49.8 205.7 2.4c-14.9-6.2-32-.3-40 13.6L79.1 166.5C48.9 219 65.7 284.3 113.6 319.2L74.9 421.1l-22.1-9.2c-20.4-8.5-43.7 1.2-52.2 21.6-1.7 4.1.2 8.8 4.3 10.5l162.3 67.4c4.1 1.7 8.7-.2 10.4-4.3 8.4-20.4-1.2-43.8-21.6-52.3l-22.1-9.2L173.3 342c4.4.5 8.8 1.3 13.1 1.3 51.7 0 99.4-33.1 113.4-85.3l20.2-75.4 20.2 75.4c14 52.2 61.7 85.3 113.4 85.3 4.3 0 8.7-.8 13.1-1.3L506 445.6l-22.1 9.2c-20.4 8.5-30.1 31.9-21.6 52.3 1.7 4.1 6.4 6 10.4 4.3L635.1 444c4-1.7 6-6.3 4.3-10.4zM275.9 162.1l-112.1-46.5 36.5-63.4 94.5 39.2-18.9 70.7zm88.2 0l-18.9-70.7 94.5-39.2 36.5 63.4-112.1 46.5z\"]\n};\nvar faGlassMartini = {\n prefix: 'fas',\n iconName: 'glass-martini',\n icon: [512, 512, [], \"f000\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6z\"]\n};\nvar faGlassMartiniAlt = {\n prefix: 'fas',\n iconName: 'glass-martini-alt',\n icon: [512, 512, [], \"f57b\", \"M502.05 57.6C523.3 36.34 508.25 0 478.2 0H33.8C3.75 0-11.3 36.34 9.95 57.6L224 271.64V464h-56c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h240c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40h-56V271.64L502.05 57.6zM443.77 48l-48 48H116.24l-48-48h375.53z\"]\n};\nvar faGlassWhiskey = {\n prefix: 'fas',\n iconName: 'glass-whiskey',\n icon: [512, 512, [], \"f7a0\", \"M480 32H32C12.5 32-2.4 49.2.3 68.5l56 356.5c4.5 31.5 31.5 54.9 63.4 54.9h273c31.8 0 58.9-23.4 63.4-54.9l55.6-356.5C514.4 49.2 499.5 32 480 32zm-37.4 64l-30 192h-313L69.4 96h373.2z\"]\n};\nvar faGlasses = {\n prefix: 'fas',\n iconName: 'glasses',\n icon: [576, 512, [], \"f530\", \"M574.1 280.37L528.75 98.66c-5.91-23.7-21.59-44.05-43-55.81-21.44-11.73-46.97-14.11-70.19-6.33l-15.25 5.08c-8.39 2.79-12.92 11.86-10.12 20.24l5.06 15.18c2.79 8.38 11.85 12.91 20.23 10.12l13.18-4.39c10.87-3.62 23-3.57 33.16 1.73 10.29 5.37 17.57 14.56 20.37 25.82l38.46 153.82c-22.19-6.81-49.79-12.46-81.2-12.46-34.77 0-73.98 7.02-114.85 26.74h-73.18c-40.87-19.74-80.08-26.75-114.86-26.75-31.42 0-59.02 5.65-81.21 12.46l38.46-153.83c2.79-11.25 10.09-20.45 20.38-25.81 10.16-5.3 22.28-5.35 33.15-1.73l13.17 4.39c8.38 2.79 17.44-1.74 20.23-10.12l5.06-15.18c2.8-8.38-1.73-17.45-10.12-20.24l-15.25-5.08c-23.22-7.78-48.75-5.41-70.19 6.33-21.41 11.77-37.09 32.11-43 55.8L1.9 280.37A64.218 64.218 0 0 0 0 295.86v70.25C0 429.01 51.58 480 115.2 480h37.12c60.28 0 110.37-45.94 114.88-105.37l2.93-38.63h35.75l2.93 38.63C313.31 434.06 363.4 480 423.68 480h37.12c63.62 0 115.2-50.99 115.2-113.88v-70.25c0-5.23-.64-10.43-1.9-15.5zm-370.72 89.42c-1.97 25.91-24.4 46.21-51.06 46.21H115.2C86.97 416 64 393.62 64 366.11v-37.54c18.12-6.49 43.42-12.92 72.58-12.92 23.86 0 47.26 4.33 69.93 12.92l-3.13 41.22zM512 366.12c0 27.51-22.97 49.88-51.2 49.88h-37.12c-26.67 0-49.1-20.3-51.06-46.21l-3.13-41.22c22.67-8.59 46.08-12.92 69.95-12.92 29.12 0 54.43 6.44 72.55 12.93v37.54z\"]\n};\nvar faGlobe = {\n prefix: 'fas',\n iconName: 'globe',\n icon: [496, 512, [], \"f0ac\", \"M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z\"]\n};\nvar faGlobeAfrica = {\n prefix: 'fas',\n iconName: 'globe-africa',\n icon: [496, 512, [], \"f57c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm160 215.5v6.93c0 5.87-3.32 11.24-8.57 13.86l-15.39 7.7a15.485 15.485 0 0 1-15.53-.97l-18.21-12.14a15.52 15.52 0 0 0-13.5-1.81l-2.65.88c-9.7 3.23-13.66 14.79-7.99 23.3l13.24 19.86c2.87 4.31 7.71 6.9 12.89 6.9h8.21c8.56 0 15.5 6.94 15.5 15.5v11.34c0 3.35-1.09 6.62-3.1 9.3l-18.74 24.98c-1.42 1.9-2.39 4.1-2.83 6.43l-4.3 22.83c-.62 3.29-2.29 6.29-4.76 8.56a159.608 159.608 0 0 0-25 29.16l-13.03 19.55a27.756 27.756 0 0 1-23.09 12.36c-10.51 0-20.12-5.94-24.82-15.34a78.902 78.902 0 0 1-8.33-35.29V367.5c0-8.56-6.94-15.5-15.5-15.5h-25.88c-14.49 0-28.38-5.76-38.63-16a54.659 54.659 0 0 1-16-38.63v-14.06c0-17.19 8.1-33.38 21.85-43.7l27.58-20.69a54.663 54.663 0 0 1 32.78-10.93h.89c8.48 0 16.85 1.97 24.43 5.77l14.72 7.36c3.68 1.84 7.93 2.14 11.83.84l47.31-15.77c6.33-2.11 10.6-8.03 10.6-14.7 0-8.56-6.94-15.5-15.5-15.5h-10.09c-4.11 0-8.05-1.63-10.96-4.54l-6.92-6.92a15.493 15.493 0 0 0-10.96-4.54H199.5c-8.56 0-15.5-6.94-15.5-15.5v-4.4c0-7.11 4.84-13.31 11.74-15.04l14.45-3.61c3.74-.94 7-3.23 9.14-6.44l8.08-12.11c2.87-4.31 7.71-6.9 12.89-6.9h24.21c8.56 0 15.5-6.94 15.5-15.5v-21.7C359.23 71.63 422.86 131.02 441.93 208H423.5c-8.56 0-15.5 6.94-15.5 15.5z\"]\n};\nvar faGlobeAmericas = {\n prefix: 'fas',\n iconName: 'globe-americas',\n icon: [496, 512, [], \"f57d\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z\"]\n};\nvar faGlobeAsia = {\n prefix: 'fas',\n iconName: 'globe-asia',\n icon: [496, 512, [], \"f57e\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm-11.34 240.23c-2.89 4.82-8.1 7.77-13.72 7.77h-.31c-4.24 0-8.31 1.69-11.31 4.69l-5.66 5.66c-3.12 3.12-3.12 8.19 0 11.31l5.66 5.66c3 3 4.69 7.07 4.69 11.31V304c0 8.84-7.16 16-16 16h-6.11c-6.06 0-11.6-3.42-14.31-8.85l-22.62-45.23c-2.44-4.88-8.95-5.94-12.81-2.08l-19.47 19.46c-3 3-7.07 4.69-11.31 4.69H50.81C49.12 277.55 48 266.92 48 256c0-110.28 89.72-200 200-200 21.51 0 42.2 3.51 61.63 9.82l-50.16 38.53c-5.11 3.41-4.63 11.06.86 13.81l10.83 5.41c5.42 2.71 8.84 8.25 8.84 14.31V216c0 4.42-3.58 8-8 8h-3.06c-3.03 0-5.8-1.71-7.15-4.42-1.56-3.12-5.96-3.29-7.76-.3l-17.37 28.95zM408 358.43c0 4.24-1.69 8.31-4.69 11.31l-9.57 9.57c-3 3-7.07 4.69-11.31 4.69h-15.16c-4.24 0-8.31-1.69-11.31-4.69l-13.01-13.01a26.767 26.767 0 0 0-25.42-7.04l-21.27 5.32c-1.27.32-2.57.48-3.88.48h-10.34c-4.24 0-8.31-1.69-11.31-4.69l-11.91-11.91a8.008 8.008 0 0 1-2.34-5.66v-10.2c0-3.27 1.99-6.21 5.03-7.43l39.34-15.74c1.98-.79 3.86-1.82 5.59-3.05l23.71-16.89a7.978 7.978 0 0 1 4.64-1.48h12.09c3.23 0 6.15 1.94 7.39 4.93l5.35 12.85a4 4 0 0 0 3.69 2.46h3.8c1.78 0 3.35-1.18 3.84-2.88l4.2-14.47c.5-1.71 2.06-2.88 3.84-2.88h6.06c2.21 0 4 1.79 4 4v12.93c0 2.12.84 4.16 2.34 5.66l11.91 11.91c3 3 4.69 7.07 4.69 11.31v24.6z\"]\n};\nvar faGlobeEurope = {\n prefix: 'fas',\n iconName: 'globe-europe',\n icon: [496, 512, [], \"f7a2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm200 248c0 22.5-3.9 44.2-10.8 64.4h-20.3c-4.3 0-8.4-1.7-11.4-4.8l-32-32.6c-4.5-4.6-4.5-12.1.1-16.7l12.5-12.5v-8.7c0-3-1.2-5.9-3.3-8l-9.4-9.4c-2.1-2.1-5-3.3-8-3.3h-16c-6.2 0-11.3-5.1-11.3-11.3 0-3 1.2-5.9 3.3-8l9.4-9.4c2.1-2.1 5-3.3 8-3.3h32c6.2 0 11.3-5.1 11.3-11.3v-9.4c0-6.2-5.1-11.3-11.3-11.3h-36.7c-8.8 0-16 7.2-16 16v4.5c0 6.9-4.4 13-10.9 15.2l-31.6 10.5c-3.3 1.1-5.5 4.1-5.5 7.6v2.2c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8s-3.6-8-8-8H247c-3 0-5.8 1.7-7.2 4.4l-9.4 18.7c-2.7 5.4-8.2 8.8-14.3 8.8H194c-8.8 0-16-7.2-16-16V199c0-4.2 1.7-8.3 4.7-11.3l20.1-20.1c4.6-4.6 7.2-10.9 7.2-17.5 0-3.4 2.2-6.5 5.5-7.6l40-13.3c1.7-.6 3.2-1.5 4.4-2.7l26.8-26.8c2.1-2.1 3.3-5 3.3-8 0-6.2-5.1-11.3-11.3-11.3H258l-16 16v8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-20c0-2.5 1.2-4.9 3.2-6.4l28.9-21.7c1.9-.1 3.8-.3 5.7-.3C358.3 56 448 145.7 448 256zM130.1 149.1c0-3 1.2-5.9 3.3-8l25.4-25.4c2.1-2.1 5-3.3 8-3.3 6.2 0 11.3 5.1 11.3 11.3v16c0 3-1.2 5.9-3.3 8l-9.4 9.4c-2.1 2.1-5 3.3-8 3.3h-16c-6.2 0-11.3-5.1-11.3-11.3zm128 306.4v-7.1c0-8.8-7.2-16-16-16h-20.2c-10.8 0-26.7-5.3-35.4-11.8l-22.2-16.7c-11.5-8.6-18.2-22.1-18.2-36.4v-23.9c0-16 8.4-30.8 22.1-39l42.9-25.7c7.1-4.2 15.2-6.5 23.4-6.5h31.2c10.9 0 21.4 3.9 29.6 10.9l43.2 37.1h18.3c8.5 0 16.6 3.4 22.6 9.4l17.3 17.3c3.4 3.4 8.1 5.3 12.9 5.3H423c-32.4 58.9-93.8 99.5-164.9 103.1z\"]\n};\nvar faGolfBall = {\n prefix: 'fas',\n iconName: 'golf-ball',\n icon: [416, 512, [], \"f450\", \"M96 416h224c0 17.7-14.3 32-32 32h-16c-17.7 0-32 14.3-32 32v20c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-20c0-17.7-14.3-32-32-32h-16c-17.7 0-32-14.3-32-32zm320-208c0 74.2-39 139.2-97.5 176h-221C39 347.2 0 282.2 0 208 0 93.1 93.1 0 208 0s208 93.1 208 208zm-180.1 43.9c18.3 0 33.1-14.8 33.1-33.1 0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1zm49.1 46.9c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1zm64-64c0-14.4-9.3-26.3-22.1-30.9 9.6 26.8-15.6 51.3-41.9 41.9 4.6 12.8 16.5 22.1 30.9 22.1 18.3 0 33.1-14.9 33.1-33.1z\"]\n};\nvar faGopuram = {\n prefix: 'fas',\n iconName: 'gopuram',\n icon: [512, 512, [], \"f664\", \"M496 352h-16V240c0-8.8-7.2-16-16-16h-16v-80c0-8.8-7.2-16-16-16h-16V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16h-64V16c0-8.8-7.2-16-16-16S96 7.2 96 16v112H80c-8.8 0-16 7.2-16 16v80H48c-8.8 0-16 7.2-16 16v112H16c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16h80V352h32V224h32v-96h32v96h-32v128h-32v160h80v-80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v80h80V352h-32V224h-32v-96h32v96h32v128h32v160h80c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zM232 176c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v48h-48zm56 176h-64v-64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z\"]\n};\nvar faGraduationCap = {\n prefix: 'fas',\n iconName: 'graduation-cap',\n icon: [640, 512, [], \"f19d\", \"M622.34 153.2L343.4 67.5c-15.2-4.67-31.6-4.67-46.79 0L17.66 153.2c-23.54 7.23-23.54 38.36 0 45.59l48.63 14.94c-10.67 13.19-17.23 29.28-17.88 46.9C38.78 266.15 32 276.11 32 288c0 10.78 5.68 19.85 13.86 25.65L20.33 428.53C18.11 438.52 25.71 448 35.94 448h56.11c10.24 0 17.84-9.48 15.62-19.47L82.14 313.65C90.32 307.85 96 298.78 96 288c0-11.57-6.47-21.25-15.66-26.87.76-15.02 8.44-28.3 20.69-36.72L296.6 284.5c9.06 2.78 26.44 6.25 46.79 0l278.95-85.7c23.55-7.24 23.55-38.36 0-45.6zM352.79 315.09c-28.53 8.76-52.84 3.92-65.59 0l-145.02-44.55L128 384c0 35.35 85.96 64 192 64s192-28.65 192-64l-14.18-113.47-145.03 44.56z\"]\n};\nvar faGreaterThan = {\n prefix: 'fas',\n iconName: 'greater-than',\n icon: [384, 512, [], \"f531\", \"M365.52 209.85L59.22 67.01c-16.06-7.49-35.15-.54-42.64 15.52L3.01 111.61c-7.49 16.06-.54 35.15 15.52 42.64L236.96 256.1 18.49 357.99C2.47 365.46-4.46 384.5 3.01 400.52l13.52 29C24 445.54 43.04 452.47 59.06 445l306.47-142.91a32.003 32.003 0 0 0 18.48-29v-34.23c-.01-12.45-7.21-23.76-18.49-29.01z\"]\n};\nvar faGreaterThanEqual = {\n prefix: 'fas',\n iconName: 'greater-than-equal',\n icon: [448, 512, [], \"f532\", \"M55.22 107.69l175.56 68.09-175.44 68.05c-18.39 6.03-27.88 24.39-21.2 41l12.09 30.08c6.68 16.61 26.99 25.19 45.38 19.15L393.02 214.2c13.77-4.52 22.98-16.61 22.98-30.17v-15.96c0-13.56-9.21-25.65-22.98-30.17L91.3 17.92c-18.29-6-38.51 2.53-45.15 19.06L34.12 66.9c-6.64 16.53 2.81 34.79 21.1 40.79zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faGrimace = {\n prefix: 'fas',\n iconName: 'grimace',\n icon: [496, 512, [], \"f57f\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM144 400h-8c-17.7 0-32-14.3-32-32v-8h40v40zm0-56h-40v-8c0-17.7 14.3-32 32-32h8v40zm-8-136c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm72 192h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm64 56h-48v-40h48v40zm0-56h-48v-40h48v40zm-8-104c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm64 128c0 17.7-14.3 32-32 32h-8v-40h40v8zm0-24h-40v-40h8c17.7 0 32 14.3 32 32v8z\"]\n};\nvar faGrin = {\n prefix: 'fas',\n iconName: 'grin',\n icon: [496, 512, [], \"f580\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm80 256c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinAlt = {\n prefix: 'fas',\n iconName: 'grin-alt',\n icon: [496, 512, [], \"f581\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm63.7 128.7c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zm-160 0c7.6-11.4 24.7-11.7 32.7 0 12.4 18.4 15.1 36.9 15.7 55.3-.5 18.4-3.3 36.9-15.7 55.3-7.6 11.4-24.7 11.7-32.7 0-12.4-18.4-15.1-36.9-15.7-55.3.5-18.4 3.3-36.9 15.7-55.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeam = {\n prefix: 'fas',\n iconName: 'grin-beam',\n icon: [496, 512, [], \"f582\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 144c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinBeamSweat = {\n prefix: 'fas',\n iconName: 'grin-beam-sweat',\n icon: [504, 512, [], \"f583\", \"M456 128c26.5 0 48-21 48-47 0-20-28.5-60.4-41.6-77.8-3.2-4.3-9.6-4.3-12.8 0C436.5 20.6 408 61 408 81c0 26 21.5 47 48 47zm0 32c-44.1 0-80-35.4-80-79 0-4.4.3-14.2 8.1-32.2C345 23.1 298.3 8 248 8 111 8 0 119 0 256s111 248 248 248 248-111 248-248c0-35.1-7.4-68.4-20.5-98.6-6.3 1.5-12.7 2.6-19.5 2.6zm-128-8c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinHearts = {\n prefix: 'fas',\n iconName: 'grin-hearts',\n icon: [496, 512, [], \"f584\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM90.4 183.6c6.7-17.6 26.7-26.7 44.9-21.9l7.1 1.9 2-7.1c5-18.1 22.8-30.9 41.5-27.9 21.4 3.4 34.4 24.2 28.8 44.5L195.3 243c-1.2 4.5-5.9 7.2-10.5 6l-70.2-18.2c-20.4-5.4-31.9-27-24.2-47.2zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm133.4-201.3l-70.2 18.2c-4.5 1.2-9.2-1.5-10.5-6L281.3 173c-5.6-20.3 7.4-41.1 28.8-44.5 18.6-3 36.4 9.8 41.5 27.9l2 7.1 7.1-1.9c18.2-4.7 38.2 4.3 44.9 21.9 7.7 20.3-3.8 41.9-24.2 47.2z\"]\n};\nvar faGrinSquint = {\n prefix: 'fas',\n iconName: 'grin-squint',\n icon: [496, 512, [], \"f585\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.9 9.4-21.6 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.2 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinSquintTears = {\n prefix: 'fas',\n iconName: 'grin-squint-tears',\n icon: [512, 512, [], \"f586\", \"M409.6 111.9c22.6-3.2 73.5-12 88.3-26.8 19.2-19.2 18.9-50.6-.7-70.2S446-5 426.9 14.2c-14.8 14.8-23.5 65.7-26.8 88.3-.8 5.5 3.9 10.2 9.5 9.4zM102.4 400.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm311.7-256.5c-33 3.9-48.6-25.1-45.7-45.7 3.4-24 7.4-42.1 11.5-56.5C285.1-13.4 161.8-.5 80.6 80.6-.5 161.7-13.4 285 41.4 379.9c14.4-4.1 32.4-8 56.5-11.5 33.2-3.9 48.6 25.2 45.7 45.7-3.4 24-7.4 42.1-11.5 56.5 94.8 54.8 218.1 41.9 299.3-39.2s94-204.4 39.2-299.3c-14.4 4.1-32.5 8-56.5 11.5zM255.7 106c3.3-13.2 22.4-11.5 23.6 1.8l4.8 52.3 52.3 4.8c13.4 1.2 14.9 20.3 1.8 23.6l-90.5 22.6c-8.9 2.2-16.7-5.9-14.5-14.5l22.5-90.6zm-90.9 230.3L160 284l-52.3-4.8c-13.4-1.2-14.9-20.3-1.8-23.6l90.5-22.6c8.8-2.2 16.7 5.8 14.5 14.5L188.3 338c-3.1 13.2-22.2 11.7-23.5-1.7zm215.7 44.2c-29.3 29.3-75.7 50.4-116.7 50.4-18.9 0-36.6-4.5-51-14.7-9.8-6.9-8.7-21.8 2-27.2 28.3-14.6 63.9-42.4 97.8-76.3s61.7-69.6 76.3-97.8c5.4-10.5 20.2-11.9 27.3-2 32.3 45.3 7.1 124.7-35.7 167.6z\"]\n};\nvar faGrinStars = {\n prefix: 'fas',\n iconName: 'grin-stars',\n icon: [496, 512, [], \"f587\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM94.6 168.9l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.2 1 8.9 8.6 4.3 13.2l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L152 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.6-4.7-1.9-12.3 4.3-13.3zM248 432c-60.6 0-134.5-38.3-143.8-93.3-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3zm157.7-249.9l-25.4 24.6 6 34.9c1 6.2-5.3 11-11 7.9L344 233.3l-31.3 16.3c-5.7 3.1-12-1.7-11-7.9l6-34.9-25.4-24.6c-4.5-4.6-1.9-12.2 4.3-13.2l34.9-5 15.5-31.6c2.9-5.8 11-5.8 13.9 0l15.5 31.6 34.9 5c6.3.9 9 8.5 4.4 13.1z\"]\n};\nvar faGrinTears = {\n prefix: 'fas',\n iconName: 'grin-tears',\n icon: [640, 512, [], \"f588\", \"M102.4 256.1c-22.6 3.2-73.5 12-88.3 26.8-19.1 19.1-18.8 50.6.8 70.2s51 19.9 70.2.7c14.8-14.8 23.5-65.7 26.8-88.3.8-5.5-3.9-10.2-9.5-9.4zm523.4 26.8c-14.8-14.8-65.7-23.5-88.3-26.8-5.5-.8-10.3 3.9-9.5 9.5 3.2 22.6 12 73.5 26.8 88.3 19.2 19.2 50.6 18.9 70.2-.7s20-51.2.8-70.3zm-129.4-12.8c-3.8-26.6 19.1-49.5 45.7-45.7 8.9 1.3 16.8 2.7 24.3 4.1C552.7 104.5 447.7 8 320 8S87.3 104.5 73.6 228.5c7.5-1.4 15.4-2.8 24.3-4.1 33.2-3.9 48.6 25.3 45.7 45.7-11.8 82.3-29.9 100.4-35.8 106.4-.9.9-2 1.6-3 2.5 42.7 74.6 123 125 215.2 125s172.5-50.4 215.2-125.1c-1-.9-2.1-1.5-3-2.5-5.9-5.9-24-24-35.8-106.3zM400 152c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm-160 0c23.8 0 52.7 29.3 56 71.4.7 8.6-10.8 12-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.1-42.1 32-71.4 55.8-71.4zm80 280c-60.6 0-134.5-38.3-143.8-93.3-2-11.7 9.2-21.6 20.7-17.9C227.1 330.5 272 336 320 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-9.3 55-83.2 93.3-143.8 93.3z\"]\n};\nvar faGrinTongue = {\n prefix: 'fas',\n iconName: 'grin-tongue',\n icon: [496, 512, [], \"f589\", \"M248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.6 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-34.9 134.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinTongueSquint = {\n prefix: 'fas',\n iconName: 'grin-tongue-squint',\n icon: [496, 512, [], \"f58a\", \"M293.1 374.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.2-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.4-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-33.8 210.3l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.7 4.7 7.7 15.9 0 20.6zm163 30c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.8-4.7-7.8-15.9 0-20.6l80-48c11.7-6.9 23.9 7.7 15.4 18L343.6 208l33.6 40.3z\"]\n};\nvar faGrinTongueWink = {\n prefix: 'fas',\n iconName: 'grin-tongue-wink',\n icon: [496, 512, [], \"f58b\", \"M344 184c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zM248 8C111 8 0 119 0 256c0 106.3 67 196.7 161 232-5.6-12.2-9-25.7-9-40v-45.5c-24.7-16.2-43.5-38.1-47.8-63.8-2-11.8 9.3-21.5 20.7-17.9C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.5-3.7 22.6 6.1 20.7 17.9-4.3 25.7-23.1 47.6-47.8 63.8V448c0 14.3-3.4 27.8-9 40 94-35.3 161-125.7 161-232C496 119 385 8 248 8zm-56 225l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L112 233c-8.5 7.4-21.6.3-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c1.6 11.1-11.6 18.2-20 10.8zm152 39c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm-50.9 102.6c-14.4-6.5-31.1 2.2-34.6 17.6l-1.8 7.8c-2.1 9.2-15.2 9.2-17.3 0l-1.8-7.8c-3.5-15.4-20.2-24.1-34.6-17.6-.9.4.3-.2-18.9 9.4v63c0 35.2 28 64.5 63.1 64.9 35.7.5 64.9-28.4 64.9-64v-64c-19.5-9.6-18.2-8.9-19-9.3z\"]\n};\nvar faGrinWink = {\n prefix: 'fas',\n iconName: 'grin-wink',\n icon: [496, 512, [], \"f58c\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm168 25l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.6 11-11.5 18.2-20 10.8zm-243.1 87.8C155.1 330.5 200 336 248 336s92.9-5.5 123.1-15.2c11.3-3.7 22.6 6 20.7 17.9-9.2 55-83.2 93.3-143.8 93.3s-134.5-38.3-143.8-93.3c-2-11.9 9.3-21.6 20.7-17.9z\"]\n};\nvar faGripHorizontal = {\n prefix: 'fas',\n iconName: 'grip-horizontal',\n icon: [448, 512, [], \"f58d\", \"M96 288H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM96 96H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm160 0h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGripLines = {\n prefix: 'fas',\n iconName: 'grip-lines',\n icon: [512, 512, [], \"f7a4\", \"M496 288H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-128H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z\"]\n};\nvar faGripLinesVertical = {\n prefix: 'fas',\n iconName: 'grip-lines-vertical',\n icon: [256, 512, [], \"f7a5\", \"M96 496V16c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm128 0V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16z\"]\n};\nvar faGripVertical = {\n prefix: 'fas',\n iconName: 'grip-vertical',\n icon: [320, 512, [], \"f58e\", \"M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z\"]\n};\nvar faGuitar = {\n prefix: 'fas',\n iconName: 'guitar',\n icon: [512, 512, [], \"f7a6\", \"M502.63 39L473 9.37a32 32 0 0 0-45.26 0L381.46 55.7a35.14 35.14 0 0 0-8.53 13.79L360.77 106l-76.26 76.26c-12.16-8.76-25.5-15.74-40.1-19.14-33.45-7.78-67-.88-89.88 22a82.45 82.45 0 0 0-20.24 33.47c-6 18.56-23.21 32.69-42.15 34.46-23.7 2.27-45.73 11.45-62.61 28.44C-16.11 327-7.9 409 47.58 464.45S185 528 230.56 482.52c17-16.88 26.16-38.9 28.45-62.71 1.76-18.85 15.89-36.13 34.43-42.14a82.6 82.6 0 0 0 33.48-20.25c22.87-22.88 29.74-56.36 22-89.75-3.39-14.64-10.37-28-19.16-40.2L406 151.23l36.48-12.16a35.14 35.14 0 0 0 13.79-8.53l46.33-46.32a32 32 0 0 0 .03-45.22zM208 352a48 48 0 1 1 48-48 48 48 0 0 1-48 48z\"]\n};\nvar faHSquare = {\n prefix: 'fas',\n iconName: 'h-square',\n icon: [448, 512, [], \"f0fd\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zm-112 48h-32c-8.837 0-16 7.163-16 16v80H160v-80c0-8.837-7.163-16-16-16h-32c-8.837 0-16 7.163-16 16v224c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-80h128v80c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V144c0-8.837-7.163-16-16-16z\"]\n};\nvar faHamburger = {\n prefix: 'fas',\n iconName: 'hamburger',\n icon: [512, 512, [], \"f805\", \"M464 256H48a48 48 0 0 0 0 96h416a48 48 0 0 0 0-96zm16 128H32a16 16 0 0 0-16 16v16a64 64 0 0 0 64 64h352a64 64 0 0 0 64-64v-16a16 16 0 0 0-16-16zM58.64 224h394.72c34.57 0 54.62-43.9 34.82-75.88C448 83.2 359.55 32.1 256 32c-103.54.1-192 51.2-232.18 116.11C4 180.09 24.07 224 58.64 224zM384 112a16 16 0 1 1-16 16 16 16 0 0 1 16-16zM256 80a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm-128 32a16 16 0 1 1-16 16 16 16 0 0 1 16-16z\"]\n};\nvar faHammer = {\n prefix: 'fas',\n iconName: 'hammer',\n icon: [576, 512, [], \"f6e3\", \"M571.31 193.94l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31-28.9-28.9c5.63-21.31.36-44.9-16.35-61.61l-45.25-45.25c-62.48-62.48-163.79-62.48-226.28 0l90.51 45.25v18.75c0 16.97 6.74 33.25 18.75 45.25l49.14 49.14c16.71 16.71 40.3 21.98 61.61 16.35l28.9 28.9-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l90.51-90.51c6.23-6.24 6.23-16.37-.02-22.62zm-286.72-15.2c-3.7-3.7-6.84-7.79-9.85-11.95L19.64 404.96c-25.57 23.88-26.26 64.19-1.53 88.93s65.05 24.05 88.93-1.53l238.13-255.07c-3.96-2.91-7.9-5.87-11.44-9.41l-49.14-49.14z\"]\n};\nvar faHamsa = {\n prefix: 'fas',\n iconName: 'hamsa',\n icon: [512, 512, [], \"f665\", \"M509.34 307.25C504.28 295.56 492.75 288 480 288h-64V80c0-22-18-40-40-40s-40 18-40 40v134c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V40c0-22-18-40-40-40s-40 18-40 40v174c0 5.52-4.48 10-10 10h-20c-5.52 0-10-4.48-10-10V80c0-22-18-40-40-40S96 58 96 80v208H32c-12.75 0-24.28 7.56-29.34 19.25a31.966 31.966 0 0 0 5.94 34.58l102.69 110.03C146.97 490.08 199.69 512 256 512s109.03-21.92 144.72-60.14L503.4 341.83a31.966 31.966 0 0 0 5.94-34.58zM256 416c-53.02 0-96-64-96-64s42.98-64 96-64 96 64 96 64-42.98 64-96 64zm0-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faHandHolding = {\n prefix: 'fas',\n iconName: 'hand-holding',\n icon: [576, 512, [], \"f4bd\", \"M565.3 328.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingHeart = {\n prefix: 'fas',\n iconName: 'hand-holding-heart',\n icon: [576, 512, [], \"f4be\", \"M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandHoldingMedical = {\n prefix: 'fas',\n iconName: 'hand-holding-medical',\n icon: [576, 512, [], \"e05c\", \"M159.88,175.82h64v64a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16v-64h64a16,16,0,0,0,16-16v-64a16,16,0,0,0-16-16h-64v-64a16,16,0,0,0-16-16h-64a16,16,0,0,0-16,16v64h-64a16,16,0,0,0-16,16v64A16,16,0,0,0,159.88,175.82ZM568.07,336.13a39.91,39.91,0,0,0-55.93-8.47L392.47,415.84H271.86a16,16,0,0,1,0-32H350.1c16,0,30.75-10.87,33.37-26.61a32.06,32.06,0,0,0-31.62-37.38h-160a117.7,117.7,0,0,0-74.12,26.25l-46.5,37.74H15.87a16.11,16.11,0,0,0-16,16v96a16.11,16.11,0,0,0,16,16h347a104.8,104.8,0,0,0,61.7-20.27L559.6,392A40,40,0,0,0,568.07,336.13Z\"]\n};\nvar faHandHoldingUsd = {\n prefix: 'fas',\n iconName: 'hand-holding-usd',\n icon: [576, 512, [], \"f4c0\", \"M271.06,144.3l54.27,14.3a8.59,8.59,0,0,1,6.63,8.1c0,4.6-4.09,8.4-9.12,8.4h-35.6a30,30,0,0,1-11.19-2.2c-5.24-2.2-11.28-1.7-15.3,2l-19,17.5a11.68,11.68,0,0,0-2.25,2.66,11.42,11.42,0,0,0,3.88,15.74,83.77,83.77,0,0,0,34.51,11.5V240c0,8.8,7.83,16,17.37,16h17.37c9.55,0,17.38-7.2,17.38-16V222.4c32.93-3.6,57.84-31,53.5-63-3.15-23-22.46-41.3-46.56-47.7L282.68,97.4a8.59,8.59,0,0,1-6.63-8.1c0-4.6,4.09-8.4,9.12-8.4h35.6A30,30,0,0,1,332,83.1c5.23,2.2,11.28,1.7,15.3-2l19-17.5A11.31,11.31,0,0,0,368.47,61a11.43,11.43,0,0,0-3.84-15.78,83.82,83.82,0,0,0-34.52-11.5V16c0-8.8-7.82-16-17.37-16H295.37C285.82,0,278,7.2,278,16V33.6c-32.89,3.6-57.85,31-53.51,63C227.63,119.6,247,137.9,271.06,144.3ZM565.27,328.1c-11.8-10.7-30.2-10-42.6,0L430.27,402a63.64,63.64,0,0,1-40,14H272a16,16,0,0,1,0-32h78.29c15.9,0,30.71-10.9,33.25-26.6a31.2,31.2,0,0,0,.46-5.46A32,32,0,0,0,352,320H192a117.66,117.66,0,0,0-74.1,26.29L71.4,384H16A16,16,0,0,0,0,400v96a16,16,0,0,0,16,16H372.77a64,64,0,0,0,40-14L564,377a32,32,0,0,0,1.28-48.9Z\"]\n};\nvar faHandHoldingWater = {\n prefix: 'fas',\n iconName: 'hand-holding-water',\n icon: [576, 512, [], \"f4c1\", \"M288 256c53 0 96-42.1 96-94 0-40-57.1-120.7-83.2-155.6-6.4-8.5-19.2-8.5-25.6 0C249.1 41.3 192 122 192 162c0 51.9 43 94 96 94zm277.3 72.1c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"]\n};\nvar faHandLizard = {\n prefix: 'fas',\n iconName: 'hand-lizard',\n icon: [576, 512, [], \"f258\", \"M384 480h192V363.778a95.998 95.998 0 0 0-14.833-51.263L398.127 54.368A48 48 0 0 0 357.544 32H24C10.745 32 0 42.745 0 56v16c0 30.928 25.072 56 56 56h229.981c12.844 0 21.556 13.067 16.615 24.923l-21.41 51.385A32 32 0 0 1 251.648 224H128c-35.346 0-64 28.654-64 64v8c0 13.255 10.745 24 24 24h147.406a47.995 47.995 0 0 1 25.692 7.455l111.748 70.811A24.001 24.001 0 0 1 384 418.539V480z\"]\n};\nvar faHandMiddleFinger = {\n prefix: 'fas',\n iconName: 'hand-middle-finger',\n icon: [512, 512, [], \"f806\", \"M479.93 317.12a37.33 37.33 0 0 0-28.28-36.19L416 272v-49.59c0-11.44-9.69-21.29-23.15-23.54l-38.4-6.4C336.63 189.5 320 200.86 320 216v32a8 8 0 0 1-16 0V50c0-26.28-20.25-49.2-46.52-50A48 48 0 0 0 208 48v200a8 8 0 0 1-16 0v-32c0-15.15-16.63-26.51-34.45-23.54l-30.68 5.12c-18 3-30.87 16.12-30.87 31.38V376a8 8 0 0 1-16 0v-76l-27.36 15A37.34 37.34 0 0 0 32 348.4v73.47a37.31 37.31 0 0 0 10.93 26.39l30.93 30.93A112 112 0 0 0 153.05 512h215A112 112 0 0 0 480 400z\"]\n};\nvar faHandPaper = {\n prefix: 'fas',\n iconName: 'hand-paper',\n icon: [448, 512, [], \"f256\", \"M408.781 128.007C386.356 127.578 368 146.36 368 168.79V256h-8V79.79c0-22.43-18.356-41.212-40.781-40.783C297.488 39.423 280 57.169 280 79v177h-8V40.79C272 18.36 253.644-.422 231.219.007 209.488.423 192 18.169 192 40v216h-8V80.79c0-22.43-18.356-41.212-40.781-40.783C121.488 40.423 104 58.169 104 80v235.992l-31.648-43.519c-12.993-17.866-38.009-21.817-55.877-8.823-17.865 12.994-21.815 38.01-8.822 55.877l125.601 172.705A48 48 0 0 0 172.073 512h197.59c22.274 0 41.622-15.324 46.724-37.006l26.508-112.66a192.011 192.011 0 0 0 5.104-43.975V168c.001-21.831-17.487-39.577-39.218-39.993z\"]\n};\nvar faHandPeace = {\n prefix: 'fas',\n iconName: 'hand-peace',\n icon: [448, 512, [], \"f25b\", \"M408 216c-22.092 0-40 17.909-40 40h-8v-32c0-22.091-17.908-40-40-40s-40 17.909-40 40v32h-8V48c0-26.51-21.49-48-48-48s-48 21.49-48 48v208h-13.572L92.688 78.449C82.994 53.774 55.134 41.63 30.461 51.324 5.787 61.017-6.356 88.877 3.337 113.551l74.765 190.342-31.09 24.872c-15.381 12.306-19.515 33.978-9.741 51.081l64 112A39.998 39.998 0 0 0 136 512h240c18.562 0 34.686-12.77 38.937-30.838l32-136A39.97 39.97 0 0 0 448 336v-80c0-22.091-17.908-40-40-40z\"]\n};\nvar faHandPointDown = {\n prefix: 'fas',\n iconName: 'hand-point-down',\n icon: [384, 512, [], \"f0a7\", \"M91.826 467.2V317.966c-8.248 5.841-16.558 10.57-24.918 14.153C35.098 345.752-.014 322.222 0 288c.008-18.616 10.897-32.203 29.092-40 28.286-12.122 64.329-78.648 77.323-107.534 7.956-17.857 25.479-28.453 43.845-28.464l.001-.002h171.526c11.812 0 21.897 8.596 23.703 20.269 7.25 46.837 38.483 61.76 38.315 123.731-.007 2.724.195 13.254.195 16 0 50.654-22.122 81.574-71.263 72.6-9.297 18.597-39.486 30.738-62.315 16.45-21.177 24.645-53.896 22.639-70.944 6.299V467.2c0 24.15-20.201 44.8-43.826 44.8-23.283 0-43.826-21.35-43.826-44.8zM112 72V24c0-13.255 10.745-24 24-24h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24zm212-24c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointLeft = {\n prefix: 'fas',\n iconName: 'hand-point-left',\n icon: [512, 512, [], \"f0a5\", \"M44.8 155.826h149.234c-5.841-8.248-10.57-16.558-14.153-24.918C166.248 99.098 189.778 63.986 224 64c18.616.008 32.203 10.897 40 29.092 12.122 28.286 78.648 64.329 107.534 77.323 17.857 7.956 28.453 25.479 28.464 43.845l.002.001v171.526c0 11.812-8.596 21.897-20.269 23.703-46.837 7.25-61.76 38.483-123.731 38.315-2.724-.007-13.254.195-16 .195-50.654 0-81.574-22.122-72.6-71.263-18.597-9.297-30.738-39.486-16.45-62.315-24.645-21.177-22.639-53.896-6.299-70.944H44.8c-24.15 0-44.8-20.201-44.8-43.826 0-23.283 21.35-43.826 44.8-43.826zM440 176h48c13.255 0 24 10.745 24 24v192c0 13.255-10.745 24-24 24h-48c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24zm24 212c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z\"]\n};\nvar faHandPointRight = {\n prefix: 'fas',\n iconName: 'hand-point-right',\n icon: [512, 512, [], \"f0a4\", \"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"]\n};\nvar faHandPointUp = {\n prefix: 'fas',\n iconName: 'hand-point-up',\n icon: [384, 512, [], \"f0a6\", \"M135.652 0c23.625 0 43.826 20.65 43.826 44.8v99.851c17.048-16.34 49.766-18.346 70.944 6.299 22.829-14.288 53.017-2.147 62.315 16.45C361.878 158.426 384 189.346 384 240c0 2.746-.203 13.276-.195 16 .168 61.971-31.065 76.894-38.315 123.731C343.683 391.404 333.599 400 321.786 400H150.261l-.001-.002c-18.366-.011-35.889-10.607-43.845-28.464C93.421 342.648 57.377 276.122 29.092 264 10.897 256.203.008 242.616 0 224c-.014-34.222 35.098-57.752 66.908-44.119 8.359 3.583 16.67 8.312 24.918 14.153V44.8c0-23.45 20.543-44.8 43.826-44.8zM136 416h192c13.255 0 24 10.745 24 24v48c0 13.255-10.745 24-24 24H136c-13.255 0-24-10.745-24-24v-48c0-13.255 10.745-24 24-24zm168 28c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z\"]\n};\nvar faHandPointer = {\n prefix: 'fas',\n iconName: 'hand-pointer',\n icon: [448, 512, [], \"f25a\", \"M448 240v96c0 3.084-.356 6.159-1.063 9.162l-32 136C410.686 499.23 394.562 512 376 512H168a40.004 40.004 0 0 1-32.35-16.473l-127.997-176c-12.993-17.866-9.043-42.883 8.822-55.876 17.867-12.994 42.884-9.043 55.877 8.823L104 315.992V40c0-22.091 17.908-40 40-40s40 17.909 40 40v200h8v-40c0-22.091 17.908-40 40-40s40 17.909 40 40v40h8v-24c0-22.091 17.908-40 40-40s40 17.909 40 40v24h8c0-22.091 17.908-40 40-40s40 17.909 40 40zm-256 80h-8v96h8v-96zm88 0h-8v96h8v-96zm88 0h-8v96h8v-96z\"]\n};\nvar faHandRock = {\n prefix: 'fas',\n iconName: 'hand-rock',\n icon: [512, 512, [], \"f255\", \"M464.8 80c-26.9-.4-48.8 21.2-48.8 48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v32h-8V80.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v48h-8V96.8c0-26.3-20.9-48.3-47.2-48.8-26.9-.4-48.8 21.2-48.8 48v136l-8-7.1v-48.1c0-26.3-20.9-48.3-47.2-48.8C21.9 127.6 0 149.2 0 176v66.4c0 27.4 11.7 53.5 32.2 71.8l111.7 99.3c10.2 9.1 16.1 22.2 16.1 35.9v6.7c0 13.3 10.7 24 24 24h240c13.3 0 24-10.7 24-24v-2.9c0-12.8 2.6-25.5 7.5-37.3l49-116.3c5-11.8 7.5-24.5 7.5-37.3V128.8c0-26.3-20.9-48.4-47.2-48.8z\"]\n};\nvar faHandScissors = {\n prefix: 'fas',\n iconName: 'hand-scissors',\n icon: [512, 512, [], \"f257\", \"M216 440c0-22.092 17.909-40 40-40v-8h-32c-22.091 0-40-17.908-40-40s17.909-40 40-40h32v-8H48c-26.51 0-48-21.49-48-48s21.49-48 48-48h208v-13.572l-177.551-69.74c-24.674-9.694-36.818-37.555-27.125-62.228 9.693-24.674 37.554-36.817 62.228-27.124l190.342 74.765 24.872-31.09c12.306-15.381 33.978-19.515 51.081-9.741l112 64A40.002 40.002 0 0 1 512 168v240c0 18.562-12.77 34.686-30.838 38.937l-136 32A39.982 39.982 0 0 1 336 480h-80c-22.091 0-40-17.908-40-40z\"]\n};\nvar faHandSparkles = {\n prefix: 'fas',\n iconName: 'hand-sparkles',\n icon: [640, 512, [], \"e05d\", \"M106.66,170.64l.09,0,49.55-20.65a7.32,7.32,0,0,0,3.68-6h0a7.29,7.29,0,0,0-3.68-6l-49.57-20.67-.07,0L86,67.68a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L3.7,138A7.29,7.29,0,0,0,0,144H0a7.32,7.32,0,0,0,3.68,6L53.27,170.6l.07,0L74,220.26a6.65,6.65,0,0,0,11.92,0l20.69-49.62ZM471.38,467.41l-1-.42-1-.5a38.67,38.67,0,0,1,0-69.14l1-.49,1-.43,37.49-15.63,15.63-37.48.41-1,.47-.95c3.85-7.74,10.58-13.63,18.35-17.34,0-1.33.25-2.69.27-4V144a32,32,0,0,0-64,0v72a8,8,0,0,1-8,8H456a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H360a8,8,0,0,1-8-8V32a32,32,0,0,0-64,0V216a8,8,0,0,1-8,8H264a8,8,0,0,1-8-8V64a32,32,0,0,0-64,0v241l-23.59-32.49a40,40,0,0,0-64.71,47.09L229.3,492.21A48.07,48.07,0,0,0,268.09,512H465.7c19.24,0,35.65-11.73,43.24-28.79l-.07-.17ZM349.79,339.52,320,351.93l-12.42,29.78a4,4,0,0,1-7.15,0L288,351.93l-29.79-12.41a4,4,0,0,1,0-7.16L288,319.94l12.42-29.78a4,4,0,0,1,7.15,0L320,319.94l29.79,12.42a4,4,0,0,1,0,7.16ZM640,431.91a7.28,7.28,0,0,0-3.68-6l-49.57-20.67-.07,0L566,355.63a6.66,6.66,0,0,0-11.92,0l-20.7,49.63-.05,0L483.7,426a7.28,7.28,0,0,0-3.68,6h0a7.29,7.29,0,0,0,3.68,5.95l49.57,20.67.07,0L554,508.21a6.65,6.65,0,0,0,11.92,0l20.69-49.62h0l.09,0,49.55-20.66a7.29,7.29,0,0,0,3.68-5.95h0Z\"]\n};\nvar faHandSpock = {\n prefix: 'fas',\n iconName: 'hand-spock',\n icon: [512, 512, [], \"f259\", \"M510.9005,145.27027,442.604,432.09391A103.99507,103.99507,0,0,1,341.43745,512H214.074a135.96968,135.96968,0,0,1-93.18489-36.95291L12.59072,373.12723a39.992,39.992,0,0,1,54.8122-58.24988l60.59342,57.02528v0a283.24849,283.24849,0,0,0-11.6703-80.46734L73.63726,147.36011a40.00575,40.00575,0,1,1,76.71833-22.7187l37.15458,125.39477a8.33113,8.33113,0,0,0,16.05656-4.4414L153.26183,49.95406A39.99638,39.99638,0,1,1,230.73015,30.0166l56.09491,218.15825a10.42047,10.42047,0,0,0,20.30018-.501L344.80766,63.96966a40.052,40.052,0,0,1,51.30245-30.0893c19.86073,6.2998,30.86262,27.67378,26.67564,48.08487l-33.83869,164.966a7.55172,7.55172,0,0,0,14.74406,3.2666l29.3973-123.45874a39.99414,39.99414,0,1,1,77.81208,18.53121Z\"]\n};\nvar faHands = {\n prefix: 'fas',\n iconName: 'hands',\n icon: [640, 512, [], \"f4c2\", \"M204.8 230.4c-10.6-14.1-30.7-17-44.8-6.4-14.1 10.6-17 30.7-6.4 44.8l38.1 50.8c4.8 6.4 4.1 15.3-1.5 20.9l-12.8 12.8c-6.7 6.7-17.6 6.2-23.6-1.1L64 244.4V96c0-17.7-14.3-32-32-32S0 78.3 0 96v218.4c0 10.9 3.7 21.5 10.5 30l104.1 134.3c5 6.5 8.4 13.9 10.4 21.7 1.8 6.9 8.1 11.6 15.3 11.6H272c8.8 0 16-7.2 16-16V384c0-27.7-9-54.6-25.6-76.8l-57.6-76.8zM608 64c-17.7 0-32 14.3-32 32v148.4l-89.8 107.8c-6 7.2-17 7.7-23.6 1.1l-12.8-12.8c-5.6-5.6-6.3-14.5-1.5-20.9l38.1-50.8c10.6-14.1 7.7-34.2-6.4-44.8-14.1-10.6-34.2-7.7-44.8 6.4l-57.6 76.8C361 329.4 352 356.3 352 384v112c0 8.8 7.2 16 16 16h131.7c7.1 0 13.5-4.7 15.3-11.6 2-7.8 5.4-15.2 10.4-21.7l104.1-134.3c6.8-8.5 10.5-19.1 10.5-30V96c0-17.7-14.3-32-32-32z\"]\n};\nvar faHandsHelping = {\n prefix: 'fas',\n iconName: 'hands-helping',\n icon: [640, 512, [], \"f4c4\", \"M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z\"]\n};\nvar faHandsWash = {\n prefix: 'fas',\n iconName: 'hands-wash',\n icon: [576, 512, [], \"e05e\", \"M496,224a48,48,0,1,0-48-48A48,48,0,0,0,496,224ZM311.47,178.45A56.77,56.77,0,0,1,328,176a56,56,0,0,1,19,3.49l15.35-48.61A24,24,0,0,0,342,99.74c-11.53-1.35-22.21,6.44-25.71,17.51l-20.9,66.17ZM93.65,386.33c.8-.19,1.54-.54,2.35-.71V359.93a156,156,0,0,1,107.06-148l73.7-22.76L310.92,81.05a24,24,0,0,0-20.33-31.11c-11.53-1.34-22.22,6.45-25.72,17.52L231.42,173.88a8,8,0,0,1-15.26-4.83L259.53,31.26A24,24,0,0,0,239.2.15C227.67-1.19,217,6.6,213.49,17.66L165.56,169.37a8,8,0,1,1-15.26-4.82l38.56-122a24,24,0,0,0-20.33-31.11C157,10,146.32,17.83,142.82,28.9l-60,189.85L80.76,168.7A24,24,0,0,0,56.9,144.55c-13.23-.05-24.72,10.54-24.9,23.86V281.14A123.69,123.69,0,0,0,93.65,386.33ZM519.1,336H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,279.84,498.71,272,487.1,272H288l47.09-17.06a24,24,0,0,0-14.18-45.88L213.19,242.31A123.88,123.88,0,0,0,128,360v25.65a79.78,79.78,0,0,1,58,108.63A118.9,118.9,0,0,0,248,512H456a24,24,0,0,0,23.54-28.76C477.35,471.84,466.71,464,455.1,464H360a8,8,0,0,1,0-16H488a24,24,0,0,0,23.54-28.76C509.35,407.84,498.71,400,487.1,400H360a8,8,0,0,1,0-16H520a24,24,0,0,0,23.54-28.76C541.35,343.84,530.71,336,519.1,336ZM416,64a32,32,0,1,0-32-32A32,32,0,0,0,416,64ZM112,416a48,48,0,1,0,48,48A48,48,0,0,0,112,416Z\"]\n};\nvar faHandshake = {\n prefix: 'fas',\n iconName: 'handshake',\n icon: [640, 512, [], \"f2b5\", \"M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z\"]\n};\nvar faHandshakeAltSlash = {\n prefix: 'fas',\n iconName: 'handshake-alt-slash',\n icon: [640, 512, [], \"e05f\", \"M358.59,195.6,504.2,313.8a63.4,63.4,0,0,1,22.21,37.91H624a16.05,16.05,0,0,0,16-16V143.91A16,16,0,0,0,624,128H512L457.41,73.41A32,32,0,0,0,434.8,64H348.91a32,32,0,0,0-21.61,8.41l-88.12,80.68-25.69-19.85L289.09,64H205.3a32,32,0,0,0-22.6,9.41l-20.34,20.3L45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.54,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45L303.4,202.72l32.69-29.92,27-24.7a16,16,0,0,1,21.61,23.61ZM16,128A16.05,16.05,0,0,0,0,144V335.91a16,16,0,0,0,16,16H146.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L23.56,128Z\"]\n};\nvar faHandshakeSlash = {\n prefix: 'fas',\n iconName: 'handshake-slash',\n icon: [640, 512, [], \"e060\", \"M0,128.21V384H64a32,32,0,0,0,32-32V184L23.83,128.21ZM48,320.1a16,16,0,1,1-16,16A16,16,0,0,1,48,320.1Zm80,31.81h18.3l90.5,81.89a64,64,0,0,0,90-9.3l.2-.2,17.91,15.5a37.16,37.16,0,0,0,52.29-5.39l8.8-10.82L128,208.72Zm416-223.7V352.1a32,32,0,0,0,32,32h64V128.21ZM592,352.1a16,16,0,1,1,16-16A16,16,0,0,1,592,352.1ZM303.33,202.67l59.58-54.57a16,16,0,0,1,21.59,23.61L358.41,195.6,504,313.8a73.08,73.08,0,0,1,7.91,7.7V128L457.3,73.41A31.76,31.76,0,0,0,434.7,64H348.8a31.93,31.93,0,0,0-21.6,8.41l-88.07,80.64-25.64-19.81L289.09,64H205.3a32,32,0,0,0-22.6,9.41L162.36,93.72,45.47,3.38A16,16,0,0,0,23,6.19L3.38,31.46A16,16,0,0,0,6.19,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.65-25.27a16,16,0,0,0-2.82-22.45Z\"]\n};\nvar faHanukiah = {\n prefix: 'fas',\n iconName: 'hanukiah',\n icon: [640, 512, [], \"f6e6\", \"M232 160c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm-64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm224 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm64 0c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm88 8c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v120h32V168zm-440-8c-4.42 0-8 3.58-8 8v120h32V168c0-4.42-3.58-8-8-8h-16zm520 0h-32c-8.84 0-16 7.16-16 16v112c0 17.67-14.33 32-32 32H352V128c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v192H96c-17.67 0-32-14.33-32-32V176c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v112c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V176c0-8.84-7.16-16-16-16zm-16-32c13.25 0 24-11.94 24-26.67S608 48 608 48s-24 38.61-24 53.33S594.75 128 608 128zm-576 0c13.25 0 24-11.94 24-26.67S32 48 32 48 8 86.61 8 101.33 18.75 128 32 128zm288-48c13.25 0 24-11.94 24-26.67S320 0 320 0s-24 38.61-24 53.33S306.75 80 320 80zm-208 48c13.25 0 24-11.94 24-26.67S112 48 112 48s-24 38.61-24 53.33S98.75 128 112 128zm64 0c13.25 0 24-11.94 24-26.67S176 48 176 48s-24 38.61-24 53.33S162.75 128 176 128zm64 0c13.25 0 24-11.94 24-26.67S240 48 240 48s-24 38.61-24 53.33S226.75 128 240 128zm160 0c13.25 0 24-11.94 24-26.67S400 48 400 48s-24 38.61-24 53.33S386.75 128 400 128zm64 0c13.25 0 24-11.94 24-26.67S464 48 464 48s-24 38.61-24 53.33S450.75 128 464 128zm64 0c13.25 0 24-11.94 24-26.67S528 48 528 48s-24 38.61-24 53.33S514.75 128 528 128z\"]\n};\nvar faHardHat = {\n prefix: 'fas',\n iconName: 'hard-hat',\n icon: [512, 512, [], \"f807\", \"M480 288c0-80.25-49.28-148.92-119.19-177.62L320 192V80a16 16 0 0 0-16-16h-96a16 16 0 0 0-16 16v112l-40.81-81.62C81.28 139.08 32 207.75 32 288v64h448zm16 96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faHashtag = {\n prefix: 'fas',\n iconName: 'hashtag',\n icon: [448, 512, [], \"f292\", \"M440.667 182.109l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l14.623-81.891C377.123 38.754 371.468 32 363.997 32h-40.632a12 12 0 0 0-11.813 9.891L296.175 128H197.54l14.623-81.891C213.477 38.754 207.822 32 200.35 32h-40.632a12 12 0 0 0-11.813 9.891L132.528 128H53.432a12 12 0 0 0-11.813 9.891l-7.143 40C33.163 185.246 38.818 192 46.289 192h74.81L98.242 320H19.146a12 12 0 0 0-11.813 9.891l-7.143 40C-1.123 377.246 4.532 384 12.003 384h74.81L72.19 465.891C70.877 473.246 76.532 480 84.003 480h40.632a12 12 0 0 0 11.813-9.891L151.826 384h98.634l-14.623 81.891C234.523 473.246 240.178 480 247.65 480h40.632a12 12 0 0 0 11.813-9.891L315.472 384h79.096a12 12 0 0 0 11.813-9.891l7.143-40c1.313-7.355-4.342-14.109-11.813-14.109h-74.81l22.857-128h79.096a12 12 0 0 0 11.813-9.891zM261.889 320h-98.634l22.857-128h98.634l-22.857 128z\"]\n};\nvar faHatCowboy = {\n prefix: 'fas',\n iconName: 'hat-cowboy',\n icon: [640, 512, [], \"f8c0\", \"M490 296.9C480.51 239.51 450.51 64 392.3 64c-14 0-26.49 5.93-37 14a58.21 58.21 0 0 1-70.58 0c-10.51-8-23-14-37-14-58.2 0-88.2 175.47-97.71 232.88C188.81 309.47 243.73 320 320 320s131.23-10.51 170-23.1zm142.9-37.18a16 16 0 0 0-19.75 1.5c-1 .9-101.27 90.78-293.16 90.78-190.82 0-292.22-89.94-293.24-90.84A16 16 0 0 0 1 278.53C1.73 280.55 78.32 480 320 480s318.27-199.45 319-201.47a16 16 0 0 0-6.09-18.81z\"]\n};\nvar faHatCowboySide = {\n prefix: 'fas',\n iconName: 'hat-cowboy-side',\n icon: [640, 512, [], \"f8c1\", \"M260.8 291.06c-28.63-22.94-62-35.06-96.4-35.06C87 256 21.47 318.72 1.43 412.06c-3.55 16.6-.43 33.83 8.57 47.3C18.75 472.47 31.83 480 45.88 480H592c-103.21 0-155-37.07-233.19-104.46zm234.65-18.29L468.4 116.2A64 64 0 0 0 392 64.41L200.85 105a64 64 0 0 0-50.35 55.79L143.61 226c6.9-.83 13.7-2 20.79-2 41.79 0 82 14.55 117.29 42.82l98 84.48C450.76 412.54 494.9 448 592 448a48 48 0 0 0 48-48c0-25.39-29.6-119.33-144.55-127.23z\"]\n};\nvar faHatWizard = {\n prefix: 'fas',\n iconName: 'hat-wizard',\n icon: [512, 512, [], \"f6e8\", \"M496 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-304-64l-64-32 64-32 32-64 32 64 64 32-64 32-16 32h208l-86.41-201.63a63.955 63.955 0 0 1-1.89-45.45L416 0 228.42 107.19a127.989 127.989 0 0 0-53.46 59.15L64 416h144l-16-32zm64-224l16-32 16 32 32 16-32 16-16 32-16-32-32-16 32-16z\"]\n};\nvar faHdd = {\n prefix: 'fas',\n iconName: 'hdd',\n icon: [576, 512, [], \"f0a0\", \"M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z\"]\n};\nvar faHeadSideCough = {\n prefix: 'fas',\n iconName: 'head-side-cough',\n icon: [640, 512, [], \"e061\", \"M616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304ZM552,416a24,24,0,1,0,24,24A24,24,0,0,0,552,416Zm-64-56a24,24,0,1,0,24,24A24,24,0,0,0,488,360ZM616,464a24,24,0,1,0,24,24A24,24,0,0,0,616,464Zm0-104a24,24,0,1,0,24,24A24,24,0,0,0,616,360Zm-64-40a24,24,0,1,0,24,24A24,24,0,0,0,552,320Zm-74.78-45c-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192C86,0,0,86,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320a32,32,0,0,1,0-64h96V320h32A32,32,0,0,0,477.22,275ZM288,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,288,224Z\"]\n};\nvar faHeadSideCoughSlash = {\n prefix: 'fas',\n iconName: 'head-side-cough-slash',\n icon: [640, 512, [], \"e062\", \"M454.11,319.21c19.56-3.81,31.62-25,23.11-44.21-21-47.12-48.5-151.75-73.12-186.75A208.13,208.13,0,0,0,234.1,0H192A190.64,190.64,0,0,0,84.18,33.3L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM313.39,210.45,263.61,172c5.88-7.14,14.43-12,24.36-12a32.06,32.06,0,0,1,32,32C320,199,317.24,205.17,313.39,210.45ZM616,304a24,24,0,1,0-24-24A24,24,0,0,0,616,304Zm-64,64a24,24,0,1,0-24-24A24,24,0,0,0,552,368ZM288,384a32,32,0,0,1,32-32h19.54L20.73,105.59A190.86,190.86,0,0,0,0,192c0,56.75,24.75,107.62,64,142.88V512H288V480h64a64,64,0,0,0,64-64H320A32,32,0,0,1,288,384Zm328-24a24,24,0,1,0,24,24A24,24,0,0,0,616,360Z\"]\n};\nvar faHeadSideMask = {\n prefix: 'fas',\n iconName: 'head-side-mask',\n icon: [512, 512, [], \"e063\", \"M.15,184.42C-2.17,244.21,23,298.06,64,334.88V512H224V316.51L3.67,156.25A182.28,182.28,0,0,0,.15,184.42ZM509.22,275c-21-47.12-48.5-151.75-73.12-186.75A208.11,208.11,0,0,0,266.11,0H200C117,0,42.48,50.57,13.25,123.65L239.21,288H511.76A31.35,31.35,0,0,0,509.22,275ZM320,224a32,32,0,1,1,32-32A32.07,32.07,0,0,1,320,224Zm16,144H496l16-48H256V512H401.88a64,64,0,0,0,60.71-43.76L464,464H336a16,16,0,0,1,0-32H474.67l10.67-32H336a16,16,0,0,1,0-32Z\"]\n};\nvar faHeadSideVirus = {\n prefix: 'fas',\n iconName: 'head-side-virus',\n icon: [512, 512, [], \"e064\", \"M272,240a16,16,0,1,0,16,16A16,16,0,0,0,272,240Zm-64-64a16,16,0,1,0,16,16A16,16,0,0,0,208,176Zm301.2,99c-20.93-47.12-48.43-151.73-73.07-186.75A207.9,207.9,0,0,0,266.09,0H192C86,0,0,86,0,192A191.23,191.23,0,0,0,64,334.81V512H320V448h64a64,64,0,0,0,64-64V320H480A32,32,0,0,0,509.2,275ZM368,240H355.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C290.47,297.09,256,311.37,256,339.88V352a16,16,0,0,1-32,0V339.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H112a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V96a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C313.09,173.53,327.37,208,355.88,208H368a16,16,0,0,1,0,32Z\"]\n};\nvar faHeading = {\n prefix: 'fas',\n iconName: 'heading',\n icon: [512, 512, [], \"f1dc\", \"M448 96v320h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H320a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V288H160v128h32a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32V96H32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16h-32v128h192V96h-32a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h160a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16z\"]\n};\nvar faHeadphones = {\n prefix: 'fas',\n iconName: 'headphones',\n icon: [512, 512, [], \"f025\", \"M256 32C114.52 32 0 146.496 0 288v48a32 32 0 0 0 17.689 28.622l14.383 7.191C34.083 431.903 83.421 480 144 480h24c13.255 0 24-10.745 24-24V280c0-13.255-10.745-24-24-24h-24c-31.342 0-59.671 12.879-80 33.627V288c0-105.869 86.131-192 192-192s192 86.131 192 192v1.627C427.671 268.879 399.342 256 368 256h-24c-13.255 0-24 10.745-24 24v176c0 13.255 10.745 24 24 24h24c60.579 0 109.917-48.098 111.928-108.187l14.382-7.191A32 32 0 0 0 512 336v-48c0-141.479-114.496-256-256-256z\"]\n};\nvar faHeadphonesAlt = {\n prefix: 'fas',\n iconName: 'headphones-alt',\n icon: [512, 512, [], \"f58f\", \"M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z\"]\n};\nvar faHeadset = {\n prefix: 'fas',\n iconName: 'headset',\n icon: [512, 512, [], \"f590\", \"M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z\"]\n};\nvar faHeart = {\n prefix: 'fas',\n iconName: 'heart',\n icon: [512, 512, [], \"f004\", \"M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z\"]\n};\nvar faHeartBroken = {\n prefix: 'fas',\n iconName: 'heart-broken',\n icon: [512, 512, [], \"f7a9\", \"M473.7 73.8l-2.4-2.5c-46-47-118-51.7-169.6-14.8L336 159.9l-96 64 48 128-144-144 96-64-28.6-86.5C159.7 19.6 87 24 40.7 71.4l-2.4 2.4C-10.4 123.6-12.5 202.9 31 256l212.1 218.6c7.1 7.3 18.6 7.3 25.7 0L481 255.9c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHeartbeat = {\n prefix: 'fas',\n iconName: 'heartbeat',\n icon: [512, 512, [], \"f21e\", \"M320.2 243.8l-49.7 99.4c-6 12.1-23.4 11.7-28.9-.6l-56.9-126.3-30 71.7H60.6l182.5 186.5c7.1 7.3 18.6 7.3 25.7 0L451.4 288H342.3l-22.1-44.2zM473.7 73.9l-2.4-2.5c-51.5-52.6-135.8-52.6-187.4 0L256 100l-27.9-28.5c-51.5-52.7-135.9-52.7-187.4 0l-2.4 2.4C-10.4 123.7-12.5 203 31 256h102.4l35.9-86.2c5.4-12.9 23.6-13.2 29.4-.4l58.2 129.3 49-97.9c5.9-11.8 22.7-11.8 28.6 0l27.6 55.2H481c43.5-53 41.4-132.3-7.3-182.1z\"]\n};\nvar faHelicopter = {\n prefix: 'fas',\n iconName: 'helicopter',\n icon: [640, 512, [], \"f533\", \"M304 384h272c17.67 0 32-14.33 32-32 0-123.71-100.29-224-224-224V64h176c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H144c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h176v64H112L68.8 70.4C65.78 66.37 61.03 64 56 64H16.01C5.6 64-2.04 73.78.49 83.88L32 192l160 64 86.4 115.2A31.992 31.992 0 0 0 304 384zm112-188.49C478.55 208.3 528.03 257.44 540.79 320H416V195.51zm219.37 263.3l-22.15-22.2c-6.25-6.26-16.24-6.1-22.64.01-7.09 6.77-13.84 11.25-24.64 11.25H240c-8.84 0-16 7.18-16 16.03v32.06c0 8.85 7.16 16.03 16 16.03h325.94c14.88 0 35.3-.47 68.45-29.52 7.02-6.14 7.57-17.05.98-23.66z\"]\n};\nvar faHighlighter = {\n prefix: 'fas',\n iconName: 'highlighter',\n icon: [544, 512, [], \"f591\", \"M0 479.98L99.92 512l35.45-35.45-67.04-67.04L0 479.98zm124.61-240.01a36.592 36.592 0 0 0-10.79 38.1l13.05 42.83-50.93 50.94 96.23 96.23 50.86-50.86 42.74 13.08c13.73 4.2 28.65-.01 38.15-10.78l35.55-41.64-173.34-173.34-41.52 35.44zm403.31-160.7l-63.2-63.2c-20.49-20.49-53.38-21.52-75.12-2.35L190.55 183.68l169.77 169.78L530.27 154.4c19.18-21.74 18.15-54.63-2.35-75.13z\"]\n};\nvar faHiking = {\n prefix: 'fas',\n iconName: 'hiking',\n icon: [384, 512, [], \"f6ec\", \"M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z\"]\n};\nvar faHippo = {\n prefix: 'fas',\n iconName: 'hippo',\n icon: [640, 512, [], \"f6ed\", \"M581.12 96.2c-27.67-.15-52.5 17.58-76.6 26.62C489.98 88.27 455.83 64 416 64c-11.28 0-21.95 2.3-32 5.88V56c0-13.26-10.75-24-24-24h-16c-13.25 0-24 10.74-24 24v48.98C286.01 79.58 241.24 64 192 64 85.96 64 0 135.64 0 224v240c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16v-70.79C128.35 407.57 166.72 416 208 416s79.65-8.43 112-22.79V464c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V288h128v32c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-32c17.67 0 32-14.33 32-32v-92.02c0-34.09-24.79-67.59-58.88-67.78zM448 176c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHistory = {\n prefix: 'fas',\n iconName: 'history',\n icon: [512, 512, [], \"f1da\", \"M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z\"]\n};\nvar faHockeyPuck = {\n prefix: 'fas',\n iconName: 'hockey-puck',\n icon: [512, 512, [], \"f453\", \"M0 160c0-53 114.6-96 256-96s256 43 256 96-114.6 96-256 96S0 213 0 160zm0 82.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2c-113.4 82.3-398.5 82.4-512 0z\"]\n};\nvar faHollyBerry = {\n prefix: 'fas',\n iconName: 'holly-berry',\n icon: [448, 512, [], \"f7aa\", \"M144 192c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm112-48c0 26.5 21.5 48 48 48s48-21.5 48-48-21.5-48-48-48-48 21.5-48 48zm-32-48c26.5 0 48-21.5 48-48S250.5 0 224 0s-48 21.5-48 48 21.5 48 48 48zm-16.2 139.1c.1-12.4-13.1-20.1-23.8-13.7-34.3 20.3-71.4 32.7-108.7 36.2-9.7.9-15.6 11.3-11.6 20.2 6.2 13.9 11.1 28.6 14.7 43.8 3.6 15.2-5.3 30.6-20.2 35.1-14.9 4.5-30.1 7.6-45.3 9.1-9.7 1-15.7 11.3-11.7 20.2 15 32.8 22.9 69.5 23 107.7.1 14.4 15.2 23.1 27.6 16 33.2-19 68.9-30.5 104.8-33.9 9.7-.9 15.6-11.3 11.6-20.2-6.2-13.9-11.1-28.6-14.7-43.8-3.6-15.2 5.3-30.6 20.2-35.1 14.9-4.5 30.1-7.6 45.3-9.1 9.7-1 15.7-11.3 11.7-20.2-15.5-34.2-23.3-72.5-22.9-112.3zM435 365.6c-15.2-1.6-30.3-4.7-45.3-9.1-14.9-4.5-23.8-19.9-20.2-35.1 3.6-15.2 8.5-29.8 14.7-43.8 4-8.9-1.9-19.3-11.6-20.2-37.3-3.5-74.4-15.9-108.7-36.2-10.7-6.3-23.9 1.4-23.8 13.7 0 1.6-.2 3.2-.2 4.9.2 33.3 7 65.7 19.9 94 5.7 12.4 5.2 26.6-.6 38.9 4.9 1.2 9.9 2.2 14.8 3.7 14.9 4.5 23.8 19.9 20.2 35.1-3.6 15.2-8.5 29.8-14.7 43.8-4 8.9 1.9 19.3 11.6 20.2 35.9 3.4 71.6 14.9 104.8 33.9 12.5 7.1 27.6-1.6 27.6-16 .2-38.2 8-75 23-107.7 4.3-8.7-1.8-19.1-11.5-20.1z\"]\n};\nvar faHome = {\n prefix: 'fas',\n iconName: 'home',\n icon: [576, 512, [], \"f015\", \"M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z\"]\n};\nvar faHorse = {\n prefix: 'fas',\n iconName: 'horse',\n icon: [576, 512, [], \"f6f0\", \"M575.92 76.6c-.01-8.13-3.02-15.87-8.58-21.8-3.78-4.03-8.58-9.12-13.69-14.5 11.06-6.84 19.5-17.49 22.18-30.66C576.85 4.68 572.96 0 567.9 0H447.92c-70.69 0-128 57.31-128 128H160c-28.84 0-54.4 12.98-72 33.11V160c-48.53 0-88 39.47-88 88v56c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-56c0-13.22 6.87-24.39 16.78-31.68-.21 2.58-.78 5.05-.78 7.68 0 27.64 11.84 52.36 30.54 69.88l-25.72 68.6a63.945 63.945 0 0 0-2.16 37.99l24.85 99.41A15.982 15.982 0 0 0 107.02 512h65.96c10.41 0 18.05-9.78 15.52-19.88l-26.31-105.26 23.84-63.59L320 345.6V496c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V318.22c19.74-20.19 32-47.75 32-78.22 0-.22-.07-.42-.08-.64V136.89l16 7.11 18.9 37.7c7.45 14.87 25.05 21.55 40.49 15.37l32.55-13.02a31.997 31.997 0 0 0 20.12-29.74l-.06-77.71zm-64 19.4c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z\"]\n};\nvar faHorseHead = {\n prefix: 'fas',\n iconName: 'horse-head',\n icon: [512, 512, [], \"f7ab\", \"M509.8 332.5l-69.9-164.3c-14.9-41.2-50.4-71-93-79.2 18-10.6 46.3-35.9 34.2-82.3-1.3-5-7.1-7.9-12-6.1L166.9 76.3C35.9 123.4 0 238.9 0 398.8V480c0 17.7 14.3 32 32 32h236.2c23.8 0 39.3-25 28.6-46.3L256 384v-.7c-45.6-3.5-84.6-30.7-104.3-69.6-1.6-3.1-.9-6.9 1.6-9.3l12.1-12.1c3.9-3.9 10.6-2.7 12.9 2.4 14.8 33.7 48.2 57.4 87.4 57.4 17.2 0 33-5.1 46.8-13.2l46 63.9c6 8.4 15.7 13.3 26 13.3h50.3c8.5 0 16.6-3.4 22.6-9.4l45.3-39.8c8.9-9.1 11.7-22.6 7.1-34.4zM328 224c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z\"]\n};\nvar faHospital = {\n prefix: 'fas',\n iconName: 'hospital',\n icon: [448, 512, [], \"f0f8\", \"M448 492v20H0v-20c0-6.627 5.373-12 12-12h20V120c0-13.255 10.745-24 24-24h88V24c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v72h88c13.255 0 24 10.745 24 24v360h20c6.627 0 12 5.373 12 12zM308 192h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-168 64h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12zm104 128h-40c-6.627 0-12 5.373-12 12v84h64v-84c0-6.627-5.373-12-12-12zm64-96h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zm-116 12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40zM182 96h26v26a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V96h26a6 6 0 0 0 6-6V70a6 6 0 0 0-6-6h-26V38a6 6 0 0 0-6-6h-20a6 6 0 0 0-6 6v26h-26a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6z\"]\n};\nvar faHospitalAlt = {\n prefix: 'fas',\n iconName: 'hospital-alt',\n icon: [576, 512, [], \"f47d\", \"M544 96H416V32c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32v368c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16V128c0-17.7-14.3-32-32-32zM160 436c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm160 128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm16-170c0 3.3-2.7 6-6 6h-26v26c0 3.3-2.7 6-6 6h-20c-3.3 0-6-2.7-6-6v-26h-26c-3.3 0-6-2.7-6-6v-20c0-3.3 2.7-6 6-6h26V86c0-3.3 2.7-6 6-6h20c3.3 0 6 2.7 6 6v26h26c3.3 0 6 2.7 6 6v20zm144 298c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40zm0-128c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40z\"]\n};\nvar faHospitalSymbol = {\n prefix: 'fas',\n iconName: 'hospital-symbol',\n icon: [512, 512, [], \"f47e\", \"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm112 376c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-88h-96v88c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V136c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v88h96v-88c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v240z\"]\n};\nvar faHospitalUser = {\n prefix: 'fas',\n iconName: 'hospital-user',\n icon: [640, 512, [], \"f80d\", \"M480 320a96 96 0 1 0-96-96 96 96 0 0 0 96 96zm48 32a22.88 22.88 0 0 0-7.06 1.09 124.76 124.76 0 0 1-81.89 0A22.82 22.82 0 0 0 432 352a112 112 0 0 0-112 112.62c.14 26.26 21.73 47.38 48 47.38h224c26.27 0 47.86-21.12 48-47.38A112 112 0 0 0 528 352zm-198.09 10.45A145.19 145.19 0 0 1 352 344.62V128a32 32 0 0 0-32-32h-32V32a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v64H32a32 32 0 0 0-32 32v368a16 16 0 0 0 16 16h288.31A78.62 78.62 0 0 1 288 464.79a143.06 143.06 0 0 1 41.91-102.34zM144 404a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12H92a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm48-122a6 6 0 0 1-6 6h-20a6 6 0 0 1-6-6v-26h-26a6 6 0 0 1-6-6v-20a6 6 0 0 1 6-6h26V70a6 6 0 0 1 6-6h20a6 6 0 0 1 6 6v26h26a6 6 0 0 1 6 6v20a6 6 0 0 1-6 6h-26zm80 250a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12zm0-128a12 12 0 0 1-12 12h-40a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12h40a12 12 0 0 1 12 12z\"]\n};\nvar faHotTub = {\n prefix: 'fas',\n iconName: 'hot-tub',\n icon: [512, 512, [], \"f593\", \"M414.21 177.65c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C378.96 6.14 372.22 0 364.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zm-108 0c1.02 8.21 7.75 14.35 15.75 14.35h16.12c9.51 0 17.08-8.57 16-18.35-4.34-39.11-22.4-74.53-50.13-97.16-17.37-14.17-28.82-36.75-31.98-62.15C270.96 6.14 264.22 0 256.23 0h-16.12c-9.51 0-17.09 8.57-16 18.35 4.34 39.11 22.4 74.53 50.13 97.16 17.36 14.17 28.82 36.75 31.97 62.14zM480 256H256l-110.93-83.2a63.99 63.99 0 0 0-38.4-12.8H64c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V288c0-17.67-14.33-32-32-32zM128 440c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zm96 0c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8V328c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v112zM64 128c35.35 0 64-28.65 64-64S99.35 0 64 0 0 28.65 0 64s28.65 64 64 64z\"]\n};\nvar faHotdog = {\n prefix: 'fas',\n iconName: 'hotdog',\n icon: [512, 512, [], \"f80f\", \"M488.56 23.44a80 80 0 0 0-113.12 0l-352 352a80 80 0 1 0 113.12 113.12l352-352a80 80 0 0 0 0-113.12zm-49.93 95.19c-19.6 19.59-37.52 22.67-51.93 25.14C373.76 146 364.4 147.6 352 160s-14 21.76-16.23 34.71c-2.48 14.4-5.55 32.33-25.15 51.92s-37.52 22.67-51.92 25.15C245.75 274 236.4 275.6 224 288s-14 21.75-16.23 34.7c-2.47 14.4-5.54 32.33-25.14 51.92s-37.53 22.68-51.93 25.15C117.76 402 108.4 403.6 96 416a16 16 0 0 1-22.63-22.63c19.6-19.59 37.52-22.67 51.92-25.14 13-2.22 22.3-3.82 34.71-16.23s14-21.75 16.22-34.7c2.48-14.4 5.55-32.33 25.15-51.92s37.52-22.67 51.92-25.14c13-2.22 22.3-3.83 34.7-16.23s14-21.76 16.24-34.71c2.47-14.4 5.54-32.33 25.14-51.92s37.52-22.68 51.92-25.15C394.24 110 403.59 108.41 416 96a16 16 0 0 1 22.63 22.63zM31.44 322.18L322.18 31.44l-11.54-11.55c-25-25-63.85-26.66-86.79-3.72L16.17 223.85c-22.94 22.94-21.27 61.79 3.72 86.78zm449.12-132.36L189.82 480.56l11.54 11.55c25 25 63.85 26.66 86.79 3.72l207.68-207.68c22.94-22.94 21.27-61.79-3.72-86.79z\"]\n};\nvar faHotel = {\n prefix: 'fas',\n iconName: 'hotel',\n icon: [576, 512, [], \"f594\", \"M560 64c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h15.98v384H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h240v-80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v80h240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-16V64h16zm-304 44.8c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm0 96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zm-128-96c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4zM179.2 256h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4c0 6.4-6.4 12.8-12.8 12.8zM192 384c0-53.02 42.98-96 96-96s96 42.98 96 96H192zm256-140.8c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4zm0-96c0 6.4-6.4 12.8-12.8 12.8h-38.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h38.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faHourglass = {\n prefix: 'fas',\n iconName: 'hourglass',\n icon: [384, 512, [], \"f254\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64z\"]\n};\nvar faHourglassEnd = {\n prefix: 'fas',\n iconName: 'hourglass-end',\n icon: [384, 512, [], \"f253\", \"M360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64zM192 208c-57.787 0-104-66.518-104-144h208c0 77.945-46.51 144-104 144z\"]\n};\nvar faHourglassHalf = {\n prefix: 'fas',\n iconName: 'hourglass-half',\n icon: [384, 512, [], \"f252\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-75.078 384H99.08c17.059-46.797 52.096-80 92.92-80 40.821 0 75.862 33.196 92.922 80zm.019-256H99.078C91.988 108.548 88 86.748 88 64h208c0 22.805-3.987 44.587-11.059 64z\"]\n};\nvar faHourglassStart = {\n prefix: 'fas',\n iconName: 'hourglass-start',\n icon: [384, 512, [], \"f251\", \"M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z\"]\n};\nvar faHouseDamage = {\n prefix: 'fas',\n iconName: 'house-damage',\n icon: [576, 512, [], \"f6f1\", \"M288 114.96L69.47 307.71c-1.62 1.46-3.69 2.14-5.47 3.35V496c0 8.84 7.16 16 16 16h149.23L192 439.19l104.11-64-60.16-119.22L384 392.75l-104.11 64L319.81 512H496c8.84 0 16-7.16 16-16V311.1c-1.7-1.16-3.72-1.82-5.26-3.2L288 114.96zm282.69 121.32L512 184.45V48c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v51.69L314.75 10.31C307.12 3.45 297.56.01 288 0s-19.1 3.41-26.7 10.27L5.31 236.28c-6.57 5.91-7.12 16.02-1.21 22.6l21.4 23.82c5.9 6.57 16.02 7.12 22.6 1.21L277.42 81.63c6.05-5.33 15.12-5.33 21.17 0L527.91 283.9c6.57 5.9 16.69 5.36 22.6-1.21l21.4-23.82c5.9-6.57 5.36-16.69-1.22-22.59z\"]\n};\nvar faHouseUser = {\n prefix: 'fas',\n iconName: 'house-user',\n icon: [576, 512, [], \"e065\", \"M570.69,236.27,512,184.44V48a16,16,0,0,0-16-16H432a16,16,0,0,0-16,16V99.67L314.78,10.3C308.5,4.61,296.53,0,288,0s-20.46,4.61-26.74,10.3l-256,226A18.27,18.27,0,0,0,0,248.2a18.64,18.64,0,0,0,4.09,10.71L25.5,282.7a21.14,21.14,0,0,0,12,5.3,21.67,21.67,0,0,0,10.69-4.11l15.9-14V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V269.88l15.91,14A21.94,21.94,0,0,0,538.63,288a20.89,20.89,0,0,0,11.87-5.31l21.41-23.81A21.64,21.64,0,0,0,576,248.19,21,21,0,0,0,570.69,236.27ZM288,176a64,64,0,1,1-64,64A64,64,0,0,1,288,176ZM400,448H176a16,16,0,0,1-16-16,96,96,0,0,1,96-96h64a96,96,0,0,1,96,96A16,16,0,0,1,400,448Z\"]\n};\nvar faHryvnia = {\n prefix: 'fas',\n iconName: 'hryvnia',\n icon: [384, 512, [], \"f6f2\", \"M368 240c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-41.86c13.41-28.63 13.74-63.33-4.13-94.05C303.34 49.84 267.1 32 229.96 32h-78.82c-24.32 0-47.86 8.53-66.54 24.09L72.83 65.9c-10.18 8.49-11.56 23.62-3.07 33.8l20.49 24.59c8.49 10.19 23.62 11.56 33.81 3.07l11.73-9.78c4.32-3.6 9.77-5.57 15.39-5.57h83.62c11.69 0 21.2 9.52 21.2 21.2 0 5.91-2.48 11.58-6.81 15.58L219.7 176H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h134.37l-34.67 32H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h41.86c-13.41 28.63-13.74 63.33 4.13 94.05C80.66 462.15 116.9 480 154.04 480h78.82c24.32 0 47.86-8.53 66.54-24.09l11.77-9.81c10.18-8.49 11.56-23.62 3.07-33.8l-20.49-24.59c-8.49-10.19-23.62-11.56-33.81-3.07l-11.75 9.8a23.992 23.992 0 0 1-15.36 5.56H149.2c-11.69 0-21.2-9.52-21.2-21.2 0-5.91 2.48-11.58 6.81-15.58L164.3 336H368c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H233.63l34.67-32H368z\"]\n};\nvar faICursor = {\n prefix: 'fas',\n iconName: 'i-cursor',\n icon: [256, 512, [], \"f246\", \"M256 52.048V12.065C256 5.496 250.726.148 244.158.066 211.621-.344 166.469.011 128 37.959 90.266.736 46.979-.114 11.913.114 5.318.157 0 5.519 0 12.114v39.645c0 6.687 5.458 12.078 12.145 11.998C38.111 63.447 96 67.243 96 112.182V224H60c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h36v112c0 44.932-56.075 48.031-83.95 47.959C5.404 447.942 0 453.306 0 459.952v39.983c0 6.569 5.274 11.917 11.842 11.999 32.537.409 77.689.054 116.158-37.894 37.734 37.223 81.021 38.073 116.087 37.845 6.595-.043 11.913-5.405 11.913-12V460.24c0-6.687-5.458-12.078-12.145-11.998C217.889 448.553 160 444.939 160 400V288h36c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-36V112.182c0-44.932 56.075-48.213 83.95-48.142 6.646.018 12.05-5.346 12.05-11.992z\"]\n};\nvar faIceCream = {\n prefix: 'fas',\n iconName: 'ice-cream',\n icon: [448, 512, [], \"f810\", \"M368 160h-.94a144 144 0 1 0-286.12 0H80a48 48 0 0 0 0 96h288a48 48 0 0 0 0-96zM195.38 493.69a31.52 31.52 0 0 0 57.24 0L352 288H96z\"]\n};\nvar faIcicles = {\n prefix: 'fas',\n iconName: 'icicles',\n icon: [512, 512, [], \"f7ad\", \"M511.4 37.9C515.1 18.2 500 0 480 0H32C10.6 0-4.8 20.7 1.4 41.2l87.1 273.4c2.5 7.2 12.7 7.2 15.1 0L140 190.5l44.2 187.3c1.9 8.3 13.7 8.3 15.6 0l46.5-196.9 34.1 133.4c2.3 7.6 13 7.6 15.3 0l45.8-172.5 66.7 363.8c1.7 8.6 14 8.6 15.7 0l87.5-467.7z\"]\n};\nvar faIcons = {\n prefix: 'fas',\n iconName: 'icons',\n icon: [512, 512, [], \"f86d\", \"M116.65 219.35a15.68 15.68 0 0 0 22.65 0l96.75-99.83c28.15-29 26.5-77.1-4.91-103.88C203.75-7.7 163-3.5 137.86 22.44L128 32.58l-9.85-10.14C93.05-3.5 52.25-7.7 24.86 15.64c-31.41 26.78-33 74.85-5 103.88zm143.92 100.49h-48l-7.08-14.24a27.39 27.39 0 0 0-25.66-17.78h-71.71a27.39 27.39 0 0 0-25.66 17.78l-7 14.24h-48A27.45 27.45 0 0 0 0 347.3v137.25A27.44 27.44 0 0 0 27.43 512h233.14A27.45 27.45 0 0 0 288 484.55V347.3a27.45 27.45 0 0 0-27.43-27.46zM144 468a52 52 0 1 1 52-52 52 52 0 0 1-52 52zm355.4-115.9h-60.58l22.36-50.75c2.1-6.65-3.93-13.21-12.18-13.21h-75.59c-6.3 0-11.66 3.9-12.5 9.1l-16.8 106.93c-1 6.3 4.88 11.89 12.5 11.89h62.31l-24.2 83c-1.89 6.65 4.2 12.9 12.23 12.9a13.26 13.26 0 0 0 10.92-5.25l92.4-138.91c4.88-6.91-1.16-15.7-10.87-15.7zM478.08.33L329.51 23.17C314.87 25.42 304 38.92 304 54.83V161.6a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V99.66l112-17.22v47.18a83.25 83.25 0 0 0-16-1.7c-35.35 0-64 21.48-64 48s28.65 48 64 48c35.2 0 63.73-21.32 64-47.66V32c0-19.48-16-34.42-33.92-31.67z\"]\n};\nvar faIdBadge = {\n prefix: 'fas',\n iconName: 'id-badge',\n icon: [384, 512, [], \"f2c1\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM144 32h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16zm48 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 416 80 407.4 80 396.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faIdCard = {\n prefix: 'fas',\n iconName: 'id-card',\n icon: [576, 512, [], \"f2c2\", \"M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z\"]\n};\nvar faIdCardAlt = {\n prefix: 'fas',\n iconName: 'id-card-alt',\n icon: [576, 512, [], \"f47f\", \"M528 64H384v96H192V64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM288 224c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm93.3 224H194.7c-10.4 0-18.8-10-15.6-19.8 8.3-25.6 32.4-44.2 60.9-44.2h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.8-5.2 19.8-15.6 19.8zM352 32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v96h128V32z\"]\n};\nvar faIgloo = {\n prefix: 'fas',\n iconName: 'igloo',\n icon: [576, 512, [], \"f7ae\", \"M320 33.9c-10.5-1.2-21.2-1.9-32-1.9-99.8 0-187.8 50.8-239.4 128H320V33.9zM96 192H30.3C11.1 230.6 0 274 0 320h96V192zM352 39.4V160h175.4C487.2 99.9 424.8 55.9 352 39.4zM480 320h96c0-46-11.1-89.4-30.3-128H480v128zm-64 64v96h128c17.7 0 32-14.3 32-32v-96H411.5c2.6 10.3 4.5 20.9 4.5 32zm32-192H128v128h49.8c22.2-38.1 63-64 110.2-64s88 25.9 110.2 64H448V192zM0 448c0 17.7 14.3 32 32 32h128v-96c0-11.1 1.9-21.7 4.5-32H0v96zm288-160c-53 0-96 43-96 96v96h192v-96c0-53-43-96-96-96z\"]\n};\nvar faImage = {\n prefix: 'fas',\n iconName: 'image',\n icon: [512, 512, [], \"f03e\", \"M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z\"]\n};\nvar faImages = {\n prefix: 'fas',\n iconName: 'images',\n icon: [576, 512, [], \"f302\", \"M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z\"]\n};\nvar faInbox = {\n prefix: 'fas',\n iconName: 'inbox',\n icon: [576, 512, [], \"f01c\", \"M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z\"]\n};\nvar faIndent = {\n prefix: 'fas',\n iconName: 'indent',\n icon: [448, 512, [], \"f03c\", \"M27.31 363.3l96-96a16 16 0 0 0 0-22.62l-96-96C17.27 138.66 0 145.78 0 160v192c0 14.31 17.33 21.3 27.31 11.3zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faIndustry = {\n prefix: 'fas',\n iconName: 'industry',\n icon: [512, 512, [], \"f275\", \"M475.115 163.781L336 252.309v-68.28c0-18.916-20.931-30.399-36.885-20.248L160 252.309V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56v400c0 13.255 10.745 24 24 24h464c13.255 0 24-10.745 24-24V184.029c0-18.917-20.931-30.399-36.885-20.248z\"]\n};\nvar faInfinity = {\n prefix: 'fas',\n iconName: 'infinity',\n icon: [640, 512, [], \"f534\", \"M471.1 96C405 96 353.3 137.3 320 174.6 286.7 137.3 235 96 168.9 96 75.8 96 0 167.8 0 256s75.8 160 168.9 160c66.1 0 117.8-41.3 151.1-78.6 33.3 37.3 85 78.6 151.1 78.6 93.1 0 168.9-71.8 168.9-160S564.2 96 471.1 96zM168.9 320c-40.2 0-72.9-28.7-72.9-64s32.7-64 72.9-64c38.2 0 73.4 36.1 94 64-20.4 27.6-55.9 64-94 64zm302.2 0c-38.2 0-73.4-36.1-94-64 20.4-27.6 55.9-64 94-64 40.2 0 72.9 28.7 72.9 64s-32.7 64-72.9 64z\"]\n};\nvar faInfo = {\n prefix: 'fas',\n iconName: 'info',\n icon: [192, 512, [], \"f129\", \"M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z\"]\n};\nvar faInfoCircle = {\n prefix: 'fas',\n iconName: 'info-circle',\n icon: [512, 512, [], \"f05a\", \"M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z\"]\n};\nvar faItalic = {\n prefix: 'fas',\n iconName: 'italic',\n icon: [320, 512, [], \"f033\", \"M320 48v32a16 16 0 0 1-16 16h-62.76l-80 320H208a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h62.76l80-320H112a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16z\"]\n};\nvar faJedi = {\n prefix: 'fas',\n iconName: 'jedi',\n icon: [576, 512, [], \"f669\", \"M535.95308,352c-42.64069,94.17188-137.64086,160-247.9848,160q-6.39844,0-12.84377-.29688C171.15558,506.9375,81.26481,442.23438,40.01474,352H79.93668L21.3272,293.40625a264.82522,264.82522,0,0,1-5.10938-39.42187,273.6653,273.6653,0,0,1,.5-29.98438H63.93665L22.546,182.625A269.79782,269.79782,0,0,1,130.51489,20.54688a16.06393,16.06393,0,0,1,9.28127-3,16.36332,16.36332,0,0,1,13.5,7.25,16.02739,16.02739,0,0,1,1.625,15.09374,138.387,138.387,0,0,0-9.84376,51.26563c0,45.10937,21.04691,86.57813,57.71884,113.73437a16.29989,16.29989,0,0,1,1.20313,25.39063c-26.54692,23.98437-41.17194,56.5-41.17194,91.57813,0,60.03124,42.95319,110.28124,99.89079,121.92187l2.5-65.26563L238.062,397a8.33911,8.33911,0,0,1-10-.75,8.025,8.025,0,0,1-1.39063-9.9375l20.125-33.76562-42.06257-8.73438a7.9898,7.9898,0,0,1,0-15.65625l42.06257-8.71875-20.10941-33.73438a7.99122,7.99122,0,0,1,11.35939-10.71874L268.437,295.64062,279.95265,7.67188a7.97138,7.97138,0,0,1,8-7.67188h.04687a8.02064,8.02064,0,0,1,7.95314,7.70312L307.48394,295.625l30.39068-20.67188a8.08327,8.08327,0,0,1,10,.8125,7.99866,7.99866,0,0,1,1.39062,9.90626L329.12461,319.4375l42.07819,8.73438a7.99373,7.99373,0,0,1,0,15.65624l-42.07819,8.71876,20.1094,33.73437a7.97791,7.97791,0,0,1-1.32812,9.92187A8.25739,8.25739,0,0,1,337.87462,397L310.7027,378.53125l2.5,65.34375c48.48446-9.40625,87.57828-48.15625,97.31267-96.5A123.52652,123.52652,0,0,0,371.9528,230.29688a16.30634,16.30634,0,0,1,1.20313-25.42188c36.65631-27.17188,57.6876-68.60938,57.6876-113.73438a138.01689,138.01689,0,0,0-9.85939-51.3125,15.98132,15.98132,0,0,1,1.60937-15.09374,16.36914,16.36914,0,0,1,13.5-7.23438,16.02453,16.02453,0,0,1,9.25,2.98438A271.26947,271.26947,0,0,1,553.25,182.76562L511.99992,224h46.9532C559.3125,229.76562,560,235.45312,560,241.26562a270.092,270.092,0,0,1-5.125,51.85938L495.98427,352Z\"]\n};\nvar faJoint = {\n prefix: 'fas',\n iconName: 'joint',\n icon: [640, 512, [], \"f595\", \"M444.34 181.1c22.38 15.68 35.66 41.16 35.66 68.59V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-43.24-21.01-83.41-56.34-108.06C463.85 125.02 448 99.34 448 70.31V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v66.4c0 43.69 24.56 81.63 60.34 106.7zM194.97 358.98C126.03 370.07 59.69 394.69 0 432c83.65 52.28 180.3 80 278.94 80h88.57L254.79 380.49c-14.74-17.2-37.45-25.11-59.82-21.51zM553.28 87.09c-5.67-3.8-9.28-9.96-9.28-16.78V8c0-4.42-3.58-8-8-8h-48c-4.42 0-8 3.58-8 8v62.31c0 22.02 10.17 43.41 28.64 55.39C550.79 153.04 576 199.54 576 249.69V280c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-30.31c0-65.44-32.41-126.19-86.72-162.6zM360.89 352.05c-34.4.06-86.81.15-88.21.17l117.8 137.43A63.987 63.987 0 0 0 439.07 512h88.45L409.57 374.4a63.955 63.955 0 0 0-48.68-22.35zM616 352H432l117.99 137.65A63.987 63.987 0 0 0 598.58 512H616c13.25 0 24-10.75 24-24V376c0-13.26-10.75-24-24-24z\"]\n};\nvar faJournalWhills = {\n prefix: 'fas',\n iconName: 'journal-whills',\n icon: [448, 512, [], \"f66a\", \"M438.40625,377.59375c-3.20313,12.8125-3.20313,57.60937,0,73.60937Q447.9922,460.78907,448,470.40625v16c0,16-12.79688,25.59375-25.59375,25.59375H96c-54.40625,0-96-41.59375-96-96V96C0,41.59375,41.59375,0,96,0H422.40625C438.40625,0,448,9.59375,448,25.59375v332.8125Q448,372.79688,438.40625,377.59375ZM380.79688,384H96c-16,0-32,12.79688-32,32s12.79688,32,32,32H380.79688ZM128.01562,176.01562c0,.51563.14063.98438.14063,1.5l37.10937,32.46876A7.99954,7.99954,0,0,1,160,224h-.01562a9.17678,9.17678,0,0,1-5.25-1.98438L131.14062,201.375C142.6875,250.95312,186.90625,288,240,288s97.3125-37.04688,108.875-86.625l-23.59375,20.64062a8.02516,8.02516,0,0,1-5.26563,1.96876H320a9.14641,9.14641,0,0,1-6.01562-2.71876A9.26508,9.26508,0,0,1,312,216a9.097,9.097,0,0,1,2.73438-6.01562l37.10937-32.46876c.01563-.53124.15625-1,.15625-1.51562,0-11.04688-2.09375-21.51562-5.06251-31.59375l-21.26562,21.25a8.00467,8.00467,0,0,1-11.32812-11.3125l26.42187-26.40625a111.81517,111.81517,0,0,0-46.35937-49.26562,63.02336,63.02336,0,0,1-14.0625,82.64062A55.83846,55.83846,0,0,1,251.625,254.73438l-1.42188-34.28126,12.67188,8.625a3.967,3.967,0,0,0,2.25.6875,3.98059,3.98059,0,0,0,3.43749-6.03124l-8.53124-14.3125,17.90625-3.71876a4.00647,4.00647,0,0,0,0-7.84374l-17.90625-3.71876,8.53124-14.3125a3.98059,3.98059,0,0,0-3.43749-6.03124,4.726,4.726,0,0,0-2.25.67187L248.6875,184.125,244,71.82812a4.00386,4.00386,0,0,0-8,0l-4.625,110.8125-12-8.15624a4.003,4.003,0,0,0-5.68751,5.35937l8.53126,14.3125L204.3125,197.875a3.99686,3.99686,0,0,0,0,7.82812l17.90625,3.73438-8.53126,14.29688a4.72469,4.72469,0,0,0-.56249,2.04687,4.59547,4.59547,0,0,0,1.25,2.90625,4.01059,4.01059,0,0,0,2.75,1.09375,4.09016,4.09016,0,0,0,2.25-.6875l10.35937-7.04687L228.375,254.76562a55.86414,55.86414,0,0,1-28.71875-93.45312,63.01119,63.01119,0,0,1-14.04688-82.65625,111.93158,111.93158,0,0,0-46.375,49.26563l26.42187,26.42187a7.99917,7.99917,0,0,1-11.3125,11.3125l-21.26563-21.26563C130.09375,154.48438,128,164.95312,128.01562,176.01562Z\"]\n};\nvar faKaaba = {\n prefix: 'fas',\n iconName: 'kaaba',\n icon: [576, 512, [], \"f66b\", \"M554.12 83.51L318.36 4.93a95.962 95.962 0 0 0-60.71 0L21.88 83.51A32.006 32.006 0 0 0 0 113.87v49.01l265.02-79.51c15.03-4.5 30.92-4.5 45.98 0l265 79.51v-49.01c0-13.77-8.81-26-21.88-30.36zm-279.9 30.52L0 196.3v228.38c0 15 10.42 27.98 25.06 31.24l242.12 53.8a95.937 95.937 0 0 0 41.65 0l242.12-53.8c14.64-3.25 25.06-16.24 25.06-31.24V196.29l-274.2-82.26c-9.04-2.72-18.59-2.72-27.59 0zM128 230.11c0 3.61-2.41 6.77-5.89 7.72l-80 21.82C37.02 261.03 32 257.2 32 251.93v-16.58c0-3.61 2.41-6.77 5.89-7.72l80-21.82c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm144-39.28c0 3.61-2.41 6.77-5.89 7.72l-96 26.18c-5.09 1.39-10.11-2.44-10.11-7.72v-16.58c0-3.61 2.41-6.77 5.89-7.72l96-26.18c5.09-1.39 10.11 2.44 10.11 7.72v16.58zm176 22.7c0-5.28 5.02-9.11 10.11-7.72l80 21.82c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-80-21.82a7.997 7.997 0 0 1-5.89-7.72v-16.58zm-144-39.27c0-5.28 5.02-9.11 10.11-7.72l96 26.18c3.48.95 5.89 4.11 5.89 7.72v16.58c0 5.28-5.02 9.11-10.11 7.72l-96-26.18a7.997 7.997 0 0 1-5.89-7.72v-16.58z\"]\n};\nvar faKey = {\n prefix: 'fas',\n iconName: 'key',\n icon: [512, 512, [], \"f084\", \"M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z\"]\n};\nvar faKeyboard = {\n prefix: 'fas',\n iconName: 'keyboard',\n icon: [576, 512, [], \"f11c\", \"M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faKhanda = {\n prefix: 'fas',\n iconName: 'khanda',\n icon: [512, 512, [], \"f66d\", \"M415.81 66c-6.37-3.5-14.37-2.33-19.36 3.02a15.974 15.974 0 0 0-1.91 19.52c16.49 26.16 25.2 56.39 25.2 87.41-.19 53.25-26.77 102.69-71.27 132.41l-76.63 53.35v-20.1l44.05-36.09c3.92-4.2 5-10.09 2.81-15.28L310.85 273c33.84-19.26 56.94-55.25 56.94-96.99 0-40.79-22.02-76.13-54.59-95.71l5.22-11.44c2.34-5.53.93-11.83-3.57-16.04L255.86 0l-58.99 52.81c-4.5 4.21-5.9 10.51-3.57 16.04l5.22 11.44c-32.57 19.58-54.59 54.93-54.59 95.72 0 41.75 23.09 77.73 56.94 96.99l-7.85 17.24c-2.19 5.18-1.1 11.07 2.81 15.28l44.05 36.09v19.9l-76.59-53.33C119.02 278.62 92.44 229.19 92.26 176c0-31.08 8.71-61.31 25.2-87.47 3.87-6.16 2.4-13.77-2.59-19.08-5-5.34-13.68-6.2-20.02-2.7C16.32 109.6-22.3 205.3 13.36 295.99c7.07 17.99 17.89 34.38 30.46 49.06l55.97 65.36c4.87 5.69 13.04 7.24 19.65 3.72l79.35-42.23L228 392.23l-47.08 32.78c-1.67-.37-3.23-1.01-5.01-1.01-13.25 0-23.99 10.74-23.99 24 0 13.25 10.74 24 23.99 24 12.1 0 21.69-9.11 23.33-20.76l40.63-28.28v29.95c-9.39 5.57-15.99 15.38-15.99 27.1 0 17.67 14.32 32 31.98 32s31.98-14.33 31.98-32c0-11.71-6.61-21.52-15.99-27.1v-30.15l40.91 28.48C314.41 462.89 324 472 336.09 472c13.25 0 23.99-10.75 23.99-24 0-13.26-10.74-24-23.99-24-1.78 0-3.34.64-5.01 1.01L284 392.23l29.21-20.34 79.35 42.23c6.61 3.52 14.78 1.97 19.65-3.71l52.51-61.31c18.87-22.02 34-47.5 41.25-75.59 21.62-83.66-16.45-167.27-90.16-207.51zm-95.99 110c0 22.3-11.49 41.92-28.83 53.38l-5.65-12.41c-8.75-24.52-8.75-51.04 0-75.56l7.83-17.18c16.07 11.65 26.65 30.45 26.65 51.77zm-127.93 0c0-21.32 10.58-40.12 26.66-51.76l7.83 17.18c8.75 24.52 8.75 51.03 0 75.56l-5.65 12.41c-17.34-11.46-28.84-31.09-28.84-53.39z\"]\n};\nvar faKiss = {\n prefix: 'fas',\n iconName: 'kiss',\n icon: [496, 512, [], \"f596\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm136 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm24-156c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faKissBeam = {\n prefix: 'fas',\n iconName: 'kiss-beam',\n icon: [496, 512, [], \"f597\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-39 219.9l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5zM304 396c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-6.1-12.2 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.6-3.6-4.8-16.5 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C290.6 368.7 304 383 304 396zm65-168.1l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.5 8.5-10.9 12-15.1 4.5z\"]\n};\nvar faKissWinkHeart = {\n prefix: 'fas',\n iconName: 'kiss-wink-heart',\n icon: [504, 512, [], \"f598\", \"M501.1 402.5c-8-20.8-31.5-31.5-53.1-25.9l-8.4 2.2-2.3-8.4c-5.9-21.4-27-36.5-49-33-25.2 4-40.6 28.6-34 52.6l22.9 82.6c1.5 5.3 7 8.5 12.4 7.1l83-21.5c24.1-6.3 37.7-31.8 28.5-55.7zm-177.6-4c-5.6-20.3-2.3-42 9-59.7 29.7-46.3 98.7-45.5 127.8 4.3 6.4.1 12.6 1.4 18.6 2.9 10.9-27.9 17.1-58.2 17.1-90C496 119 385 8 248 8S0 119 0 256s111 248 248 248c35.4 0 68.9-7.5 99.4-20.9-.3-.7-23.9-84.6-23.9-84.6zM168 240c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm120 156c0 19.2-28.7 41.5-71.5 44-8.5.8-12.1-11.8-3.6-15.4l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-6-2.5-5.7-12.3 0-14.8l17-7.2c13-5.5 20.8-13.5 20.8-21.5s-7.8-16-20.8-21.5l-17-7.2c-8.8-3.7-4.6-16.6 3.6-15.4 42.8 2.5 71.5 24.8 71.5 44 0 13-13.4 27.3-35.2 36C274.6 368.7 288 383 288 396zm16-179c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S400 181 404 206.2c1.7 11.1-11.3 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 217z\"]\n};\nvar faKiwiBird = {\n prefix: 'fas',\n iconName: 'kiwi-bird',\n icon: [576, 512, [], \"f535\", \"M575.81 217.98C572.64 157.41 518.28 112 457.63 112h-9.37c-52.82 0-104.25-16.25-147.74-46.24-41.99-28.96-96.04-41.62-153.21-28.7C129.3 41.12-.08 78.24 0 224c.04 70.95 38.68 132.8 95.99 166.01V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-54.26c15.36 3.96 31.4 6.26 48 6.26 5.44 0 10.68-.73 16-1.18V464c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-59.43c14.24-5.06 27.88-11.39 40.34-19.51C342.07 355.25 393.86 336 448.46 336c25.48 0 16.01-.31 23.05-.78l74.41 136.44c2.86 5.23 8.3 8.34 14.05 8.34 1.31 0 2.64-.16 3.95-.5 7.09-1.8 12.05-8.19 12.05-15.5 0 0 .14-240.24-.16-246.02zM463.97 248c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24zm80 153.25l-39.86-73.08c15.12-5.83 28.73-14.6 39.86-25.98v99.06z\"]\n};\nvar faLandmark = {\n prefix: 'fas',\n iconName: 'landmark',\n icon: [512, 512, [], \"f66f\", \"M501.62 92.11L267.24 2.04a31.958 31.958 0 0 0-22.47 0L10.38 92.11A16.001 16.001 0 0 0 0 107.09V144c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-36.91c0-6.67-4.14-12.64-10.38-14.98zM64 192v160H48c-8.84 0-16 7.16-16 16v48h448v-48c0-8.84-7.16-16-16-16h-16V192h-64v160h-96V192h-64v160h-96V192H64zm432 256H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faLanguage = {\n prefix: 'fas',\n iconName: 'language',\n icon: [640, 512, [], \"f1ab\", \"M152.1 236.2c-3.5-12.1-7.8-33.2-7.8-33.2h-.5s-4.3 21.1-7.8 33.2l-11.1 37.5H163zM616 96H336v320h280c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm-24 120c0 6.6-5.4 12-12 12h-11.4c-6.9 23.6-21.7 47.4-42.7 69.9 8.4 6.4 17.1 12.5 26.1 18 5.5 3.4 7.3 10.5 4.1 16.2l-7.9 13.9c-3.4 5.9-10.9 7.8-16.7 4.3-12.6-7.8-24.5-16.1-35.4-24.9-10.9 8.7-22.7 17.1-35.4 24.9-5.8 3.5-13.3 1.6-16.7-4.3l-7.9-13.9c-3.2-5.6-1.4-12.8 4.2-16.2 9.3-5.7 18-11.7 26.1-18-7.9-8.4-14.9-17-21-25.7-4-5.7-2.2-13.6 3.7-17.1l6.5-3.9 7.3-4.3c5.4-3.2 12.4-1.7 16 3.4 5 7 10.8 14 17.4 20.9 13.5-14.2 23.8-28.9 30-43.2H412c-6.6 0-12-5.4-12-12v-16c0-6.6 5.4-12 12-12h64v-16c0-6.6 5.4-12 12-12h16c6.6 0 12 5.4 12 12v16h64c6.6 0 12 5.4 12 12zM0 120v272c0 13.3 10.7 24 24 24h280V96H24c-13.3 0-24 10.7-24 24zm58.9 216.1L116.4 167c1.7-4.9 6.2-8.1 11.4-8.1h32.5c5.1 0 9.7 3.3 11.4 8.1l57.5 169.1c2.6 7.8-3.1 15.9-11.4 15.9h-22.9a12 12 0 0 1-11.5-8.6l-9.4-31.9h-60.2l-9.1 31.8c-1.5 5.1-6.2 8.7-11.5 8.7H70.3c-8.2 0-14-8.1-11.4-15.9z\"]\n};\nvar faLaptop = {\n prefix: 'fas',\n iconName: 'laptop',\n icon: [640, 512, [], \"f109\", \"M624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopCode = {\n prefix: 'fas',\n iconName: 'laptop-code',\n icon: [640, 512, [], \"f5fc\", \"M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z\"]\n};\nvar faLaptopHouse = {\n prefix: 'fas',\n iconName: 'laptop-house',\n icon: [640, 512, [], \"e066\", \"M272,288H208a16,16,0,0,1-16-16V208a16,16,0,0,1,16-16h64a16,16,0,0,1,16,16v37.12C299.11,232.24,315,224,332.8,224H469.74l6.65-7.53A16.51,16.51,0,0,0,480,207a16.31,16.31,0,0,0-4.75-10.61L416,144V48a16,16,0,0,0-16-16H368a16,16,0,0,0-16,16V87.3L263.5,8.92C258,4,247.45,0,240.05,0s-17.93,4-23.47,8.92L4.78,196.42A16.15,16.15,0,0,0,0,207a16.4,16.4,0,0,0,3.55,9.39L22.34,237.7A16.22,16.22,0,0,0,33,242.48,16.51,16.51,0,0,0,42.34,239L64,219.88V384a32,32,0,0,0,32,32H272ZM629.33,448H592V288c0-17.67-12.89-32-28.8-32H332.8c-15.91,0-28.8,14.33-28.8,32V448H266.67A10.67,10.67,0,0,0,256,458.67v10.66A42.82,42.82,0,0,0,298.6,512H597.4A42.82,42.82,0,0,0,640,469.33V458.67A10.67,10.67,0,0,0,629.33,448ZM544,448H352V304H544Z\"]\n};\nvar faLaptopMedical = {\n prefix: 'fas',\n iconName: 'laptop-medical',\n icon: [640, 512, [], \"f812\", \"M232 224h56v56a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8h-56v-56a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8zM576 48a48.14 48.14 0 0 0-48-48H112a48.14 48.14 0 0 0-48 48v336h512zm-64 272H128V64h384zm112 96H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33-17.47-32.77-32H16a16 16 0 0 0-16 16v16a64.19 64.19 0 0 0 64 64h512a64.19 64.19 0 0 0 64-64v-16a16 16 0 0 0-16-16z\"]\n};\nvar faLaugh = {\n prefix: 'fas',\n iconName: 'laugh',\n icon: [496, 512, [], \"f599\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 152c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm88 272h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18-8.9 71-69.5 126-142.9 126z\"]\n};\nvar faLaughBeam = {\n prefix: 'fas',\n iconName: 'laugh-beam',\n icon: [496, 512, [], \"f59a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm24 199.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.2 7.4-15.8 4.1-15.1-4.5zm-160 0c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughSquint = {\n prefix: 'fas',\n iconName: 'laugh-squint',\n icon: [496, 512, [], \"f59b\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 161.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 180l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM398.9 306C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLaughWink = {\n prefix: 'fas',\n iconName: 'laugh-wink',\n icon: [496, 512, [], \"f59c\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z\"]\n};\nvar faLayerGroup = {\n prefix: 'fas',\n iconName: 'layer-group',\n icon: [512, 512, [], \"f5fd\", \"M12.41 148.02l232.94 105.67c6.8 3.09 14.49 3.09 21.29 0l232.94-105.67c16.55-7.51 16.55-32.52 0-40.03L266.65 2.31a25.607 25.607 0 0 0-21.29 0L12.41 107.98c-16.55 7.51-16.55 32.53 0 40.04zm487.18 88.28l-58.09-26.33-161.64 73.27c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.51 209.97l-58.1 26.33c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 276.3c16.55-7.5 16.55-32.5 0-40zm0 127.8l-57.87-26.23-161.86 73.37c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.29 337.87 12.41 364.1c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 404.1c16.55-7.5 16.55-32.5 0-40z\"]\n};\nvar faLeaf = {\n prefix: 'fas',\n iconName: 'leaf',\n icon: [576, 512, [], \"f06c\", \"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\"]\n};\nvar faLemon = {\n prefix: 'fas',\n iconName: 'lemon',\n icon: [512, 512, [], \"f094\", \"M489.038 22.963C465.944-.13 434.648-5.93 413.947 6.129c-58.906 34.312-181.25-53.077-321.073 86.746S40.441 355.041 6.129 413.945c-12.059 20.702-6.26 51.999 16.833 75.093 23.095 23.095 54.392 28.891 75.095 16.832 58.901-34.31 181.246 53.079 321.068-86.743S471.56 156.96 505.871 98.056c12.059-20.702 6.261-51.999-16.833-75.093zM243.881 95.522c-58.189 14.547-133.808 90.155-148.358 148.358-1.817 7.27-8.342 12.124-15.511 12.124-1.284 0-2.59-.156-3.893-.481-8.572-2.144-13.784-10.83-11.642-19.403C81.901 166.427 166.316 81.93 236.119 64.478c8.575-2.143 17.261 3.069 19.403 11.642s-3.069 17.259-11.641 19.402z\"]\n};\nvar faLessThan = {\n prefix: 'fas',\n iconName: 'less-than',\n icon: [384, 512, [], \"f536\", \"M365.46 357.74L147.04 255.89l218.47-101.88c16.02-7.47 22.95-26.51 15.48-42.53l-13.52-29C360 66.46 340.96 59.53 324.94 67L18.48 209.91a32.014 32.014 0 0 0-18.48 29v34.24c0 12.44 7.21 23.75 18.48 29l306.31 142.83c16.06 7.49 35.15.54 42.64-15.52l13.56-29.08c7.49-16.06.54-35.15-15.53-42.64z\"]\n};\nvar faLessThanEqual = {\n prefix: 'fas',\n iconName: 'less-than-equal',\n icon: [448, 512, [], \"f537\", \"M54.98 214.2l301.41 119.87c18.39 6.03 38.71-2.54 45.38-19.15l12.09-30.08c6.68-16.61-2.82-34.97-21.21-41l-175.44-68.05 175.56-68.09c18.29-6 27.74-24.27 21.1-40.79l-12.03-29.92c-6.64-16.53-26.86-25.06-45.15-19.06L54.98 137.89C41.21 142.41 32 154.5 32 168.07v15.96c0 13.56 9.21 25.65 22.98 30.17zM424 400H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h400c13.25 0 24-10.75 24-24v-48c0-13.26-10.75-24-24-24z\"]\n};\nvar faLevelDownAlt = {\n prefix: 'fas',\n iconName: 'level-down-alt',\n icon: [320, 512, [], \"f3be\", \"M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z\"]\n};\nvar faLevelUpAlt = {\n prefix: 'fas',\n iconName: 'level-up-alt',\n icon: [320, 512, [], \"f3bf\", \"M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z\"]\n};\nvar faLifeRing = {\n prefix: 'fas',\n iconName: 'life-ring',\n icon: [512, 512, [], \"f1cd\", \"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm173.696 119.559l-63.399 63.399c-10.987-18.559-26.67-34.252-45.255-45.255l63.399-63.399a218.396 218.396 0 0 1 45.255 45.255zM256 352c-53.019 0-96-42.981-96-96s42.981-96 96-96 96 42.981 96 96-42.981 96-96 96zM127.559 82.304l63.399 63.399c-18.559 10.987-34.252 26.67-45.255 45.255l-63.399-63.399a218.372 218.372 0 0 1 45.255-45.255zM82.304 384.441l63.399-63.399c10.987 18.559 26.67 34.252 45.255 45.255l-63.399 63.399a218.396 218.396 0 0 1-45.255-45.255zm302.137 45.255l-63.399-63.399c18.559-10.987 34.252-26.67 45.255-45.255l63.399 63.399a218.403 218.403 0 0 1-45.255 45.255z\"]\n};\nvar faLightbulb = {\n prefix: 'fas',\n iconName: 'lightbulb',\n icon: [352, 512, [], \"f0eb\", \"M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faLink = {\n prefix: 'fas',\n iconName: 'link',\n icon: [512, 512, [], \"f0c1\", \"M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z\"]\n};\nvar faLiraSign = {\n prefix: 'fas',\n iconName: 'lira-sign',\n icon: [384, 512, [], \"f195\", \"M371.994 256h-48.019C317.64 256 312 260.912 312 267.246 312 368 230.179 416 144 416V256.781l134.603-29.912A12 12 0 0 0 288 215.155v-40.976c0-7.677-7.109-13.38-14.603-11.714L144 191.219V160.78l134.603-29.912A12 12 0 0 0 288 119.154V78.179c0-7.677-7.109-13.38-14.603-11.714L144 95.219V44c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v68.997L9.397 125.131A12 12 0 0 0 0 136.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 178.558v30.439L9.397 221.131A12 12 0 0 0 0 232.845v40.976c0 7.677 7.109 13.38 14.603 11.714L64 274.558V468c0 6.627 5.373 12 12 12h79.583c134.091 0 223.255-77.834 228.408-211.592.261-6.782-5.211-12.408-11.997-12.408z\"]\n};\nvar faList = {\n prefix: 'fas',\n iconName: 'list',\n icon: [512, 512, [], \"f03a\", \"M80 368H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm0-320H16A16 16 0 0 0 0 64v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16zm0 160H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm416 176H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faListAlt = {\n prefix: 'fas',\n iconName: 'list-alt',\n icon: [512, 512, [], \"f022\", \"M464 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zM128 120c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm0 96c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zm288-136v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12zm0 96v-32c0-6.627-5.373-12-12-12H204c-6.627 0-12 5.373-12 12v32c0 6.627 5.373 12 12 12h200c6.627 0 12-5.373 12-12z\"]\n};\nvar faListOl = {\n prefix: 'fas',\n iconName: 'list-ol',\n icon: [512, 512, [], \"f0cb\", \"M61.77 401l17.5-20.15a19.92 19.92 0 0 0 5.07-14.19v-3.31C84.34 356 80.5 352 73 352H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h22.83a157.41 157.41 0 0 0-11 12.31l-5.61 7c-4 5.07-5.25 10.13-2.8 14.88l1.05 1.93c3 5.76 6.29 7.88 12.25 7.88h4.73c10.33 0 15.94 2.44 15.94 9.09 0 4.72-4.2 8.22-14.36 8.22a41.54 41.54 0 0 1-15.47-3.12c-6.49-3.88-11.74-3.5-15.6 3.12l-5.59 9.31c-3.72 6.13-3.19 11.72 2.63 15.94 7.71 4.69 20.38 9.44 37 9.44 34.16 0 48.5-22.75 48.5-44.12-.03-14.38-9.12-29.76-28.73-34.88zM496 224H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h64a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H64V40a8 8 0 0 0-8-8H32a8 8 0 0 0-7.14 4.42l-8 16A8 8 0 0 0 24 64h8v64H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8zm-3.91 160H80a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H41.32c3.29-10.29 48.34-18.68 48.34-56.44 0-29.06-25-39.56-44.47-39.56-21.36 0-33.8 10-40.46 18.75-4.37 5.59-3 10.84 2.8 15.37l8.58 6.88c5.61 4.56 11 2.47 16.12-2.44a13.44 13.44 0 0 1 9.46-3.84c3.33 0 9.28 1.56 9.28 8.75C51 248.19 0 257.31 0 304.59v4C0 316 5.08 320 12.09 320z\"]\n};\nvar faListUl = {\n prefix: 'fas',\n iconName: 'list-ul',\n icon: [512, 512, [], \"f0ca\", \"M48 48a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm448 16H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faLocationArrow = {\n prefix: 'fas',\n iconName: 'location-arrow',\n icon: [512, 512, [], \"f124\", \"M444.52 3.52L28.74 195.42c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 51.17 70.36 67.17 92.75 19.19l191.9-415.78c15.99-38.39-25.59-79.97-63.97-63.97z\"]\n};\nvar faLock = {\n prefix: 'fas',\n iconName: 'lock',\n icon: [448, 512, [], \"f023\", \"M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z\"]\n};\nvar faLockOpen = {\n prefix: 'fas',\n iconName: 'lock-open',\n icon: [576, 512, [], \"f3c1\", \"M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z\"]\n};\nvar faLongArrowAltDown = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-down',\n icon: [256, 512, [], \"f309\", \"M168 345.941V44c0-6.627-5.373-12-12-12h-56c-6.627 0-12 5.373-12 12v301.941H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.569 9.373 33.941 0l86.059-86.059c15.119-15.119 4.411-40.971-16.971-40.971H168z\"]\n};\nvar faLongArrowAltLeft = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-left',\n icon: [448, 512, [], \"f30a\", \"M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z\"]\n};\nvar faLongArrowAltRight = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-right',\n icon: [448, 512, [], \"f30b\", \"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\"]\n};\nvar faLongArrowAltUp = {\n prefix: 'fas',\n iconName: 'long-arrow-alt-up',\n icon: [256, 512, [], \"f30c\", \"M88 166.059V468c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12V166.059h46.059c21.382 0 32.09-25.851 16.971-40.971l-86.059-86.059c-9.373-9.373-24.569-9.373-33.941 0l-86.059 86.059c-15.119 15.119-4.411 40.971 16.971 40.971H88z\"]\n};\nvar faLowVision = {\n prefix: 'fas',\n iconName: 'low-vision',\n icon: [576, 512, [], \"f2a8\", \"M569.344 231.631C512.96 135.949 407.81 72 288 72c-28.468 0-56.102 3.619-82.451 10.409L152.778 10.24c-7.601-10.858-22.564-13.5-33.423-5.9l-13.114 9.178c-10.86 7.601-13.502 22.566-5.9 33.426l43.131 58.395C89.449 131.73 40.228 174.683 6.682 231.581c-.01.017-.023.033-.034.05-8.765 14.875-8.964 33.528 0 48.739 38.5 65.332 99.742 115.862 172.859 141.349L55.316 244.302A272.194 272.194 0 0 1 83.61 208.39l119.4 170.58h.01l40.63 58.04a330.055 330.055 0 0 0 78.94 1.17l-189.98-271.4a277.628 277.628 0 0 1 38.777-21.563l251.836 356.544c7.601 10.858 22.564 13.499 33.423 5.9l13.114-9.178c10.86-7.601 13.502-22.567 5.9-33.426l-43.12-58.377-.007-.009c57.161-27.978 104.835-72.04 136.81-126.301a47.938 47.938 0 0 0 .001-48.739zM390.026 345.94l-19.066-27.23c24.682-32.567 27.711-76.353 8.8-111.68v.03c0 23.65-19.17 42.82-42.82 42.82-23.828 0-42.82-19.349-42.82-42.82 0-23.65 19.17-42.82 42.82-42.82h.03c-24.75-13.249-53.522-15.643-79.51-7.68l-19.068-27.237C253.758 123.306 270.488 120 288 120c75.162 0 136 60.826 136 136 0 34.504-12.833 65.975-33.974 89.94z\"]\n};\nvar faLuggageCart = {\n prefix: 'fas',\n iconName: 'luggage-cart',\n icon: [640, 512, [], \"f59d\", \"M224 320h32V96h-32c-17.67 0-32 14.33-32 32v160c0 17.67 14.33 32 32 32zm352-32V128c0-17.67-14.33-32-32-32h-32v224h32c17.67 0 32-14.33 32-32zm48 96H128V16c0-8.84-7.16-16-16-16H16C7.16 0 0 7.16 0 16v32c0 8.84 7.16 16 16 16h48v368c0 8.84 7.16 16 16 16h82.94c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16h197.88c-1.79 5.03-2.94 10.36-2.94 16 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.64-1.15-10.97-2.94-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM480 96V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v272h192V96zm-48 0h-96V48h96v48z\"]\n};\nvar faLungs = {\n prefix: 'fas',\n iconName: 'lungs',\n icon: [640, 512, [], \"f604\", \"M636.11 390.15C614.44 308.85 580.07 231 534.1 159.13 511.98 124.56 498.03 96 454.05 96 415.36 96 384 125.42 384 161.71v60.11l-32.88-21.92a15.996 15.996 0 0 1-7.12-13.31V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v170.59c0 5.35-2.67 10.34-7.12 13.31L256 221.82v-60.11C256 125.42 224.64 96 185.95 96c-43.98 0-57.93 28.56-80.05 63.13C59.93 231 25.56 308.85 3.89 390.15 1.3 399.84 0 409.79 0 419.78c0 61.23 62.48 105.44 125.24 88.62l59.5-15.95c42.18-11.3 71.26-47.47 71.26-88.62v-87.49l-85.84 57.23a7.992 7.992 0 0 1-11.09-2.22l-8.88-13.31a7.992 7.992 0 0 1 2.22-11.09L320 235.23l167.59 111.72a7.994 7.994 0 0 1 2.22 11.09l-8.88 13.31a7.994 7.994 0 0 1-11.09 2.22L384 316.34v87.49c0 41.15 29.08 77.31 71.26 88.62l59.5 15.95C577.52 525.22 640 481.01 640 419.78c0-9.99-1.3-19.94-3.89-29.63z\"]\n};\nvar faLungsVirus = {\n prefix: 'fas',\n iconName: 'lungs-virus',\n icon: [640, 512, [], \"e067\", \"M344,150.68V16A16,16,0,0,0,328,0H312a16,16,0,0,0-16,16V150.68a46.45,46.45,0,0,1,48,0ZM195.54,444.46a48.06,48.06,0,0,1,0-67.88l8.58-8.58H192a48,48,0,0,1,0-96h12.12l-8.58-8.57a48,48,0,0,1,60.46-74V161.75C256,125.38,224.62,96,186,96c-44,0-58,28.5-80.12,63.13a819.52,819.52,0,0,0-102,231A113.16,113.16,0,0,0,0,419.75C0,481,62.5,525.26,125.25,508.38l59.5-15.87a98.51,98.51,0,0,0,52.5-34.75,46.49,46.49,0,0,1-41.71-13.3Zm226.29-22.63a16,16,0,0,0,0-22.62l-8.58-8.58C393.09,370.47,407.37,336,435.88,336H448a16,16,0,0,0,0-32H435.88c-28.51,0-42.79-34.47-22.63-54.62l8.58-8.58a16,16,0,0,0-22.63-22.63l-8.57,8.58C370.47,246.91,336,232.63,336,204.12V192a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.58c20.16,20.15,5.88,54.62-22.63,54.62H192a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.58a16,16,0,1,0,22.63,22.62l8.57-8.57C269.53,393.1,304,407.38,304,435.88V448a16,16,0,0,0,32,0V435.88c0-28.5,34.47-42.78,54.63-22.62l8.57,8.57a16,16,0,0,0,22.63,0ZM288,304a16,16,0,1,1,16-16A16,16,0,0,1,288,304Zm64,64a16,16,0,1,1,16-16A16,16,0,0,1,352,368Zm284.12,22.13a819.52,819.52,0,0,0-102-231C512,124.5,498,96,454,96c-38.62,0-70,29.38-70,65.75v27.72a48,48,0,0,1,60.46,74L435.88,272H448a48,48,0,0,1,0,96H435.88l8.58,8.58a47.7,47.7,0,0,1-41.71,81.18,98.51,98.51,0,0,0,52.5,34.75l59.5,15.87C577.5,525.26,640,481,640,419.75A113.16,113.16,0,0,0,636.12,390.13Z\"]\n};\nvar faMagic = {\n prefix: 'fas',\n iconName: 'magic',\n icon: [512, 512, [], \"f0d0\", \"M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z\"]\n};\nvar faMagnet = {\n prefix: 'fas',\n iconName: 'magnet',\n icon: [512, 512, [], \"f076\", \"M164.07 148.1H12a12 12 0 0 1-12-12v-80a36 36 0 0 1 36-36h104a36 36 0 0 1 36 36v80a11.89 11.89 0 0 1-11.93 12zm347.93-12V56a36 36 0 0 0-36-36H372a36 36 0 0 0-36 36v80a12 12 0 0 0 12 12h152a11.89 11.89 0 0 0 12-11.9zm-164 44a12 12 0 0 0-12 12v52c0 128.1-160 127.9-160 0v-52a12 12 0 0 0-12-12H12.1a12 12 0 0 0-12 12.1c.1 21.4.6 40.3 0 53.3 0 150.6 136.17 246.6 256.75 246.6s255-96 255-246.7c-.6-12.8-.2-33 0-53.2a12 12 0 0 0-12-12.1z\"]\n};\nvar faMailBulk = {\n prefix: 'fas',\n iconName: 'mail-bulk',\n icon: [576, 512, [], \"f674\", \"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"]\n};\nvar faMale = {\n prefix: 'fas',\n iconName: 'male',\n icon: [192, 512, [], \"f183\", \"M96 0c35.346 0 64 28.654 64 64s-28.654 64-64 64-64-28.654-64-64S60.654 0 96 0m48 144h-11.36c-22.711 10.443-49.59 10.894-73.28 0H48c-26.51 0-48 21.49-48 48v136c0 13.255 10.745 24 24 24h16v136c0 13.255 10.745 24 24 24h64c13.255 0 24-10.745 24-24V352h16c13.255 0 24-10.745 24-24V192c0-26.51-21.49-48-48-48z\"]\n};\nvar faMap = {\n prefix: 'fas',\n iconName: 'map',\n icon: [576, 512, [], \"f279\", \"M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarked = {\n prefix: 'fas',\n iconName: 'map-marked',\n icon: [576, 512, [], \"f59f\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarkedAlt = {\n prefix: 'fas',\n iconName: 'map-marked-alt',\n icon: [576, 512, [], \"f5a0\", \"M288 0c-69.59 0-126 56.41-126 126 0 56.26 82.35 158.8 113.9 196.02 6.39 7.54 17.82 7.54 24.2 0C331.65 284.8 414 182.26 414 126 414 56.41 357.59 0 288 0zm0 168c-23.2 0-42-18.8-42-42s18.8-42 42-42 42 18.8 42 42-18.8 42-42 42zM20.12 215.95A32.006 32.006 0 0 0 0 245.66v250.32c0 11.32 11.43 19.06 21.94 14.86L160 448V214.92c-8.84-15.98-16.07-31.54-21.25-46.42L20.12 215.95zM288 359.67c-14.07 0-27.38-6.18-36.51-16.96-19.66-23.2-40.57-49.62-59.49-76.72v182l192 64V266c-18.92 27.09-39.82 53.52-59.49 76.72-9.13 10.77-22.44 16.95-36.51 16.95zm266.06-198.51L416 224v288l139.88-55.95A31.996 31.996 0 0 0 576 426.34V176.02c0-11.32-11.43-19.06-21.94-14.86z\"]\n};\nvar faMapMarker = {\n prefix: 'fas',\n iconName: 'map-marker',\n icon: [384, 512, [], \"f041\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z\"]\n};\nvar faMapMarkerAlt = {\n prefix: 'fas',\n iconName: 'map-marker-alt',\n icon: [384, 512, [], \"f3c5\", \"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"]\n};\nvar faMapPin = {\n prefix: 'fas',\n iconName: 'map-pin',\n icon: [288, 512, [], \"f276\", \"M112 316.94v156.69l22.02 33.02c4.75 7.12 15.22 7.12 19.97 0L176 473.63V316.94c-10.39 1.92-21.06 3.06-32 3.06s-21.61-1.14-32-3.06zM144 0C64.47 0 0 64.47 0 144s64.47 144 144 144 144-64.47 144-144S223.53 0 144 0zm0 76c-37.5 0-68 30.5-68 68 0 6.62-5.38 12-12 12s-12-5.38-12-12c0-50.73 41.28-92 92-92 6.62 0 12 5.38 12 12s-5.38 12-12 12z\"]\n};\nvar faMapSigns = {\n prefix: 'fas',\n iconName: 'map-signs',\n icon: [512, 512, [], \"f277\", \"M507.31 84.69L464 41.37c-6-6-14.14-9.37-22.63-9.37H288V16c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v16H56c-13.25 0-24 10.75-24 24v80c0 13.25 10.75 24 24 24h385.37c8.49 0 16.62-3.37 22.63-9.37l43.31-43.31c6.25-6.26 6.25-16.38 0-22.63zM224 496c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V384h-64v112zm232-272H288v-32h-64v32H70.63c-8.49 0-16.62 3.37-22.63 9.37L4.69 276.69c-6.25 6.25-6.25 16.38 0 22.63L48 342.63c6 6 14.14 9.37 22.63 9.37H456c13.25 0 24-10.75 24-24v-80c0-13.25-10.75-24-24-24z\"]\n};\nvar faMarker = {\n prefix: 'fas',\n iconName: 'marker',\n icon: [512, 512, [], \"f5a1\", \"M93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l75.4-75.4-128.02-128.02-75.4 75.4zM485.49 26.51c-35.35-35.35-92.67-35.35-128.02 0l-21.76 21.76-36.56-36.55c-15.62-15.62-40.95-15.62-56.56 0L138.47 115.84c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0l87.15-87.15 19.59 19.59L191.98 192 320 320.02l165.49-165.49c35.35-35.35 35.35-92.66 0-128.02z\"]\n};\nvar faMars = {\n prefix: 'fas',\n iconName: 'mars',\n icon: [384, 512, [], \"f222\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c0-6.6-5.4-12-12-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsDouble = {\n prefix: 'fas',\n iconName: 'mars-double',\n icon: [512, 512, [], \"f227\", \"M340 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C198.5 72.1 172.2 64 144 64 64.5 64 0 128.5 0 208s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.5 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 288c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80zm356-128.1h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7c-18.2-11.4-39-18.9-61.5-21.3-2.1 21.8-8.2 43.3-18.4 63.3 1.1 0 2.2-.1 3.2-.1 44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80c0-1.1 0-2.2.1-3.2-20 10.2-41.5 16.4-63.3 18.4C168.4 455.6 229.6 512 304 512c79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12v-79c0-6.7-5.4-12.1-12-12.1z\"]\n};\nvar faMarsStroke = {\n prefix: 'fas',\n iconName: 'mars-stroke',\n icon: [384, 512, [], \"f229\", \"M372 64h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-17.5 17.5-14.1-14.1c-4.7-4.7-12.3-4.7-17 0L224.5 133c-4.7 4.7-4.7 12.3 0 17l14.1 14.1-18 18c-22.2-14-48.5-22.1-76.7-22.1C64.5 160 0 224.5 0 304s64.5 144 144 144 144-64.5 144-144c0-28.2-8.1-54.5-22.1-76.7l18-18 14.1 14.1c4.7 4.7 12.3 4.7 17 0l28.3-28.3c4.7-4.7 4.7-12.3 0-17L329.2 164l17.5-17.5 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V76c-.1-6.6-5.5-12-12.1-12zM144 384c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faMarsStrokeH = {\n prefix: 'fas',\n iconName: 'mars-stroke-h',\n icon: [480, 512, [], \"f22b\", \"M476.2 247.5l-55.9-55.9c-7.6-7.6-20.5-2.2-20.5 8.5V224H376v-20c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v20h-27.6c-5.8-25.6-18.7-49.9-38.6-69.8C189.6 98 98.4 98 42.2 154.2c-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 19.9-19.9 32.8-44.2 38.6-69.8H312v20c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-20h23.9v23.9c0 10.7 12.9 16 20.5 8.5l55.9-55.9c4.6-4.7 4.6-12.3-.1-17zm-275.6 65.1c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMarsStrokeV = {\n prefix: 'fas',\n iconName: 'mars-stroke-v',\n icon: [288, 512, [], \"f22a\", \"M245.8 234.2c-19.9-19.9-44.2-32.8-69.8-38.6v-25.4h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V81.4h23.9c10.7 0 16-12.9 8.5-20.5L152.5 5.1c-4.7-4.7-12.3-4.7-17 0L79.6 61c-7.6 7.6-2.2 20.5 8.5 20.5H112v24.7H92c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h20v25.4c-25.6 5.8-49.9 18.7-69.8 38.6-56.2 56.2-56.2 147.4 0 203.6 56.2 56.2 147.4 56.2 203.6 0 56.3-56.2 56.3-147.4 0-203.6zm-45.2 158.4c-31.2 31.2-81.9 31.2-113.1 0-31.2-31.2-31.2-81.9 0-113.1 31.2-31.2 81.9-31.2 113.1 0 31.2 31.1 31.2 81.9 0 113.1z\"]\n};\nvar faMask = {\n prefix: 'fas',\n iconName: 'mask',\n icon: [640, 512, [], \"f6fa\", \"M320.67 64c-442.6 0-357.57 384-158.46 384 39.9 0 77.47-20.69 101.42-55.86l25.73-37.79c15.66-22.99 46.97-22.99 62.63 0l25.73 37.79C401.66 427.31 439.23 448 479.13 448c189.86 0 290.63-384-158.46-384zM184 308.36c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05zm272 0c-41.06 0-67.76-25.66-80.08-41.05-5.23-6.53-5.23-16.09 0-22.63 12.32-15.4 39.01-41.05 80.08-41.05s67.76 25.66 80.08 41.05c5.23 6.53 5.23 16.09 0 22.63-12.32 15.4-39.02 41.05-80.08 41.05z\"]\n};\nvar faMedal = {\n prefix: 'fas',\n iconName: 'medal',\n icon: [512, 512, [], \"f5a2\", \"M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z\"]\n};\nvar faMedkit = {\n prefix: 'fas',\n iconName: 'medkit',\n icon: [512, 512, [], \"f0fa\", \"M96 480h320V128h-32V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v48H96v352zm96-384h128v32H192V96zm320 80v256c0 26.51-21.49 48-48 48h-16V128h16c26.51 0 48 21.49 48 48zM64 480H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v352zm288-208v32c0 8.837-7.163 16-16 16h-48v48c0 8.837-7.163 16-16 16h-32c-8.837 0-16-7.163-16-16v-48h-48c-8.837 0-16-7.163-16-16v-32c0-8.837 7.163-16 16-16h48v-48c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v48h48c8.837 0 16 7.163 16 16z\"]\n};\nvar faMeh = {\n prefix: 'fas',\n iconName: 'meh',\n icon: [496, 512, [], \"f11a\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm176 192H152c-21.2 0-21.2-32 0-32h192c21.2 0 21.2 32 0 32zm-16-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehBlank = {\n prefix: 'fas',\n iconName: 'meh-blank',\n icon: [496, 512, [], \"f5a4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 232c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm160 0c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMehRollingEyes = {\n prefix: 'fas',\n iconName: 'meh-rolling-eyes',\n icon: [496, 512, [], \"f5a5\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM88 224c0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64s-64-28.7-64-64zm224 176H184c-21.2 0-21.2-32 0-32h128c21.2 0 21.2 32 0 32zm32-112c-35.3 0-64-28.7-64-64 0-24.3 13.7-45.2 33.6-56-.7 2.6-1.6 5.2-1.6 8 0 17.7 14.3 32 32 32s32-14.3 32-32c0-2.8-.9-5.4-1.6-8 19.9 10.8 33.6 31.7 33.6 56 0 35.3-28.7 64-64 64z\"]\n};\nvar faMemory = {\n prefix: 'fas',\n iconName: 'memory',\n icon: [640, 512, [], \"f538\", \"M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z\"]\n};\nvar faMenorah = {\n prefix: 'fas',\n iconName: 'menorah',\n icon: [640, 512, [], \"f676\", \"M144 128h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm192 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm96 0h-32c-8.84 0-16 7.16-16 16v144h64V144c0-8.84-7.16-16-16-16zm80-32c17.67 0 32-14.33 32-32S608 0 608 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S512 0 512 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S416 0 416 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S320 0 320 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S224 0 224 0s-32 46.33-32 64 14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S128 0 128 0 96 46.33 96 64s14.33 32 32 32zm-96 0c17.67 0 32-14.33 32-32S32 0 32 0 0 46.33 0 64s14.33 32 32 32zm544 192c0 17.67-14.33 32-32 32H352V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v176H96c-17.67 0-32-14.33-32-32V144c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v144c0 53.02 42.98 96 96 96h192v64H112c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16H352v-64h192c53.02 0 96-42.98 96-96V144c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144z\"]\n};\nvar faMercury = {\n prefix: 'fas',\n iconName: 'mercury',\n icon: [288, 512, [], \"f223\", \"M288 208c0-44.2-19.9-83.7-51.2-110.1 2.5-1.8 4.9-3.8 7.2-5.8 24.7-21.2 39.8-48.8 43.2-78.8.9-7.1-4.7-13.3-11.9-13.3h-40.5C229 0 224.1 4.1 223 9.8c-2.4 12.5-9.6 24.3-20.7 33.8C187 56.8 166.3 64 144 64s-43-7.2-58.4-20.4C74.5 34.1 67.4 22.3 64.9 9.8 63.8 4.1 58.9 0 53.2 0H12.7C5.5 0-.1 6.2.8 13.3 4.2 43.4 19.2 71 44 92.2c2.3 2 4.7 3.9 7.2 5.8C19.9 124.3 0 163.8 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faMeteor = {\n prefix: 'fas',\n iconName: 'meteor',\n icon: [512, 512, [], \"f753\", \"M511.328,20.8027c-11.60759,38.70264-34.30724,111.70173-61.30311,187.70077,6.99893,2.09372,13.4042,4,18.60653,5.59368a16.06158,16.06158,0,0,1,9.49854,22.906c-22.106,42.29635-82.69047,152.795-142.47819,214.40356-.99984,1.09373-1.99969,2.5-2.99954,3.49995A194.83046,194.83046,0,1,1,57.085,179.41009c.99985-1,2.40588-2,3.49947-3,61.59994-59.90549,171.97367-120.40473,214.37343-142.4982a16.058,16.058,0,0,1,22.90274,9.49988c1.59351,5.09368,3.49947,11.5936,5.5929,18.59351C379.34818,35.00565,452.43074,12.30281,491.12794.70921A16.18325,16.18325,0,0,1,511.328,20.8027ZM319.951,320.00207A127.98041,127.98041,0,1,0,191.97061,448.00046,127.97573,127.97573,0,0,0,319.951,320.00207Zm-127.98041-31.9996a31.9951,31.9951,0,1,1-31.9951-31.9996A31.959,31.959,0,0,1,191.97061,288.00247Zm31.9951,79.999a15.99755,15.99755,0,1,1-15.99755-15.9998A16.04975,16.04975,0,0,1,223.96571,368.00147Z\"]\n};\nvar faMicrochip = {\n prefix: 'fas',\n iconName: 'microchip',\n icon: [512, 512, [], \"f2db\", \"M416 48v416c0 26.51-21.49 48-48 48H144c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h224c26.51 0 48 21.49 48 48zm96 58v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42V88h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zm0 96v12a6 6 0 0 1-6 6h-18v6a6 6 0 0 1-6 6h-42v-48h42a6 6 0 0 1 6 6v6h18a6 6 0 0 1 6 6zM30 376h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6zm0-96h42v48H30a6 6 0 0 1-6-6v-6H6a6 6 0 0 1-6-6v-12a6 6 0 0 1 6-6h18v-6a6 6 0 0 1 6-6z\"]\n};\nvar faMicrophone = {\n prefix: 'fas',\n iconName: 'microphone',\n icon: [352, 512, [], \"f130\", \"M176 352c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96zm160-160h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneAlt = {\n prefix: 'fas',\n iconName: 'microphone-alt',\n icon: [352, 512, [], \"f3c9\", \"M336 192h-16c-8.84 0-16 7.16-16 16v48c0 74.8-64.49 134.82-140.79 127.38C96.71 376.89 48 317.11 48 250.3V208c0-8.84-7.16-16-16-16H16c-8.84 0-16 7.16-16 16v40.16c0 89.64 63.97 169.55 152 181.69V464H96c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16h-56v-33.77C285.71 418.47 352 344.9 352 256v-48c0-8.84-7.16-16-16-16zM176 352c53.02 0 96-42.98 96-96h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H272c0-53.02-42.98-96-96-96S80 42.98 80 96v160c0 53.02 42.98 96 96 96z\"]\n};\nvar faMicrophoneAltSlash = {\n prefix: 'fas',\n iconName: 'microphone-alt-slash',\n icon: [640, 512, [], \"f539\", \"M633.82 458.1L476.26 336.33C488.74 312.21 496 284.98 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67h-43.67l-41.4-32H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416v-32h-85.33c-5.89 0-10.67-3.58-10.67-8v-16c0-4.42 4.78-8 10.67-8H416c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.78c11.71-1.62 23.1-4.28 33.96-8.08l-50.4-38.96c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicrophoneSlash = {\n prefix: 'fas',\n iconName: 'microphone-slash',\n icon: [640, 512, [], \"f131\", \"M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z\"]\n};\nvar faMicroscope = {\n prefix: 'fas',\n iconName: 'microscope',\n icon: [512, 512, [], \"f610\", \"M160 320h12v16c0 8.84 7.16 16 16 16h40c8.84 0 16-7.16 16-16v-16h12c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32V16c0-8.84-7.16-16-16-16h-64c-8.84 0-16 7.16-16 16v16c-17.67 0-32 14.33-32 32v224c0 17.67 14.33 32 32 32zm304 128h-1.29C493.24 413.99 512 369.2 512 320c0-105.88-86.12-192-192-192v64c70.58 0 128 57.42 128 128s-57.42 128-128 128H48c-26.51 0-48 21.49-48 48 0 8.84 7.16 16 16 16h480c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48zm-360-32h208c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8H104c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8z\"]\n};\nvar faMinus = {\n prefix: 'fas',\n iconName: 'minus',\n icon: [448, 512, [], \"f068\", \"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faMinusCircle = {\n prefix: 'fas',\n iconName: 'minus-circle',\n icon: [512, 512, [], \"f056\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z\"]\n};\nvar faMinusSquare = {\n prefix: 'fas',\n iconName: 'minus-square',\n icon: [448, 512, [], \"f146\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z\"]\n};\nvar faMitten = {\n prefix: 'fas',\n iconName: 'mitten',\n icon: [448, 512, [], \"f7b5\", \"M368 416H48c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm57-209.1c-27.2-22.6-67.5-19-90.1 8.2l-20.9 25-29.6-128.4c-18-77.5-95.4-125.9-172.8-108C34.2 21.6-14.2 98.9 3.7 176.4L51.6 384h309l72.5-87c22.7-27.2 19-67.5-8.1-90.1z\"]\n};\nvar faMobile = {\n prefix: 'fas',\n iconName: 'mobile',\n icon: [320, 512, [], \"f10b\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faMobileAlt = {\n prefix: 'fas',\n iconName: 'mobile-alt',\n icon: [320, 512, [], \"f3cd\", \"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faMoneyBill = {\n prefix: 'fas',\n iconName: 'money-bill',\n icon: [640, 512, [], \"f0d6\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 176c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 48h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillAlt = {\n prefix: 'fas',\n iconName: 'money-bill-alt',\n icon: [640, 512, [], \"f3d1\", \"M352 288h-16v-88c0-4.42-3.58-8-8-8h-13.58c-4.74 0-9.37 1.4-13.31 4.03l-15.33 10.22a7.994 7.994 0 0 0-2.22 11.09l8.88 13.31a7.994 7.994 0 0 0 11.09 2.22l.47-.31V288h-16c-4.42 0-8 3.58-8 8v16c0 4.42 3.58 8 8 8h64c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zM608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM48 400v-64c35.35 0 64 28.65 64 64H48zm0-224v-64h64c0 35.35-28.65 64-64 64zm272 192c-53.02 0-96-50.15-96-112 0-61.86 42.98-112 96-112s96 50.14 96 112c0 61.87-43 112-96 112zm272 32h-64c0-35.35 28.65-64 64-64v64zm0-224c-35.35 0-64-28.65-64-64h64v64z\"]\n};\nvar faMoneyBillWave = {\n prefix: 'fas',\n iconName: 'money-bill-wave',\n icon: [640, 512, [], \"f53a\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM48 132.22c20.12 5.04 41.12 7.57 62.72 8.93C104.84 170.54 79 192.69 48 192.69v-60.47zm0 285v-47.78c34.37 0 62.18 27.27 63.71 61.4-22.53-1.81-43.59-6.31-63.71-13.62zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96zm272 27.78c-17.52-4.39-35.71-6.85-54.32-8.44 5.87-26.08 27.5-45.88 54.32-49.28v57.72zm0-236.11c-30.89-3.91-54.86-29.7-55.81-61.55 19.54 2.17 38.09 6.23 55.81 12.66v48.89z\"]\n};\nvar faMoneyBillWaveAlt = {\n prefix: 'fas',\n iconName: 'money-bill-wave-alt',\n icon: [640, 512, [], \"f53b\", \"M621.16 54.46C582.37 38.19 543.55 32 504.75 32c-123.17-.01-246.33 62.34-369.5 62.34-30.89 0-61.76-3.92-92.65-13.72-3.47-1.1-6.95-1.62-10.35-1.62C15.04 79 0 92.32 0 110.81v317.26c0 12.63 7.23 24.6 18.84 29.46C57.63 473.81 96.45 480 135.25 480c123.17 0 246.34-62.35 369.51-62.35 30.89 0 61.76 3.92 92.65 13.72 3.47 1.1 6.95 1.62 10.35 1.62 17.21 0 32.25-13.32 32.25-31.81V83.93c-.01-12.64-7.24-24.6-18.85-29.47zM320 352c-44.19 0-80-42.99-80-96 0-53.02 35.82-96 80-96s80 42.98 80 96c0 53.03-35.83 96-80 96z\"]\n};\nvar faMoneyCheck = {\n prefix: 'fas',\n iconName: 'money-check',\n icon: [640, 512, [], \"f53c\", \"M0 448c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V128H0v320zm448-208c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-32zm0 120c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H456c-4.42 0-8-3.58-8-8v-16zM64 264c0-4.42 3.58-8 8-8h304c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm0 96c0-4.42 3.58-8 8-8h176c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zM624 32H16C7.16 32 0 39.16 0 48v48h640V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faMoneyCheckAlt = {\n prefix: 'fas',\n iconName: 'money-check-alt',\n icon: [640, 512, [], \"f53d\", \"M608 32H32C14.33 32 0 46.33 0 64v384c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM176 327.88V344c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-16.29c-11.29-.58-22.27-4.52-31.37-11.35-3.9-2.93-4.1-8.77-.57-12.14l11.75-11.21c2.77-2.64 6.89-2.76 10.13-.73 3.87 2.42 8.26 3.72 12.82 3.72h28.11c6.5 0 11.8-5.92 11.8-13.19 0-5.95-3.61-11.19-8.77-12.73l-45-13.5c-18.59-5.58-31.58-23.42-31.58-43.39 0-24.52 19.05-44.44 42.67-45.07V152c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v16.29c11.29.58 22.27 4.51 31.37 11.35 3.9 2.93 4.1 8.77.57 12.14l-11.75 11.21c-2.77 2.64-6.89 2.76-10.13.73-3.87-2.43-8.26-3.72-12.82-3.72h-28.11c-6.5 0-11.8 5.92-11.8 13.19 0 5.95 3.61 11.19 8.77 12.73l45 13.5c18.59 5.58 31.58 23.42 31.58 43.39 0 24.53-19.05 44.44-42.67 45.07zM416 312c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h112c4.42 0 8 3.58 8 8v16zm160 0c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H296c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h272c4.42 0 8 3.58 8 8v16z\"]\n};\nvar faMonument = {\n prefix: 'fas',\n iconName: 'monument',\n icon: [384, 512, [], \"f5a6\", \"M368 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-78.86-347.26a31.97 31.97 0 0 0-9.21-19.44L203.31 4.69c-6.25-6.25-16.38-6.25-22.63 0l-76.6 76.61a31.97 31.97 0 0 0-9.21 19.44L64 416h256l-30.86-315.26zM240 307.2c0 6.4-6.4 12.8-12.8 12.8h-70.4c-6.4 0-12.8-6.4-12.8-12.8v-38.4c0-6.4 6.4-12.8 12.8-12.8h70.4c6.4 0 12.8 6.4 12.8 12.8v38.4z\"]\n};\nvar faMoon = {\n prefix: 'fas',\n iconName: 'moon',\n icon: [512, 512, [], \"f186\", \"M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z\"]\n};\nvar faMortarPestle = {\n prefix: 'fas',\n iconName: 'mortar-pestle',\n icon: [512, 512, [], \"f5a7\", \"M501.54 60.91c17.22-17.22 12.51-46.25-9.27-57.14a35.696 35.696 0 0 0-37.37 3.37L251.09 160h151.37l99.08-99.09zM496 192H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c0 80.98 50.2 150.11 121.13 178.32-12.76 16.87-21.72 36.8-24.95 58.69-1.46 9.92 6.04 18.98 16.07 18.98h223.5c10.03 0 17.53-9.06 16.07-18.98-3.22-21.89-12.18-41.82-24.95-58.69C429.8 406.11 480 336.98 480 256h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z\"]\n};\nvar faMosque = {\n prefix: 'fas',\n iconName: 'mosque',\n icon: [640, 512, [], \"f678\", \"M0 480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V160H0v320zm579.16-192c17.86-17.39 28.84-37.34 28.84-58.91 0-52.86-41.79-93.79-87.92-122.9-41.94-26.47-80.63-57.77-111.96-96.22L400 0l-8.12 9.97c-31.33 38.45-70.01 69.76-111.96 96.22C233.79 135.3 192 176.23 192 229.09c0 21.57 10.98 41.52 28.84 58.91h358.32zM608 320H192c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h32v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h64v-72c0-48 48-72 48-72s48 24 48 72v72h64v-64c0-17.67 14.33-32 32-32s32 14.33 32 32v64h32c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM64 0S0 32 0 96v32h128V96c0-64-64-96-64-96z\"]\n};\nvar faMotorcycle = {\n prefix: 'fas',\n iconName: 'motorcycle',\n icon: [640, 512, [], \"f21c\", \"M512.9 192c-14.9-.1-29.1 2.3-42.4 6.9L437.6 144H520c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24h-45.3c-6.8 0-13.3 2.9-17.8 7.9l-37.5 41.7-22.8-38C392.2 68.4 384.4 64 376 64h-80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h66.4l19.2 32H227.9c-17.7-23.1-44.9-40-99.9-40H72.5C59 104 47.7 115 48 128.5c.2 13 10.9 23.5 24 23.5h56c24.5 0 38.7 10.9 47.8 24.8l-11.3 20.5c-13-3.9-26.9-5.7-41.3-5.2C55.9 194.5 1.6 249.6 0 317c-1.6 72.1 56.3 131 128 131 59.6 0 109.7-40.8 124-96h84.2c13.7 0 24.6-11.4 24-25.1-2.1-47.1 17.5-93.7 56.2-125l12.5 20.8c-27.6 23.7-45.1 58.9-44.8 98.2.5 69.6 57.2 126.5 126.8 127.1 71.6.7 129.8-57.5 129.2-129.1-.7-69.6-57.6-126.4-127.2-126.9zM128 400c-44.1 0-80-35.9-80-80s35.9-80 80-80c4.2 0 8.4.3 12.5 1L99 316.4c-8.8 16 2.8 35.6 21 35.6h81.3c-12.4 28.2-40.6 48-73.3 48zm463.9-75.6c-2.2 40.6-35 73.4-75.5 75.5-46.1 2.5-84.4-34.3-84.4-79.9 0-21.4 8.4-40.8 22.1-55.1l49.4 82.4c4.5 7.6 14.4 10 22 5.5l13.7-8.2c7.6-4.5 10-14.4 5.5-22l-48.6-80.9c5.2-1.1 10.5-1.6 15.9-1.6 45.6-.1 82.3 38.2 79.9 84.3z\"]\n};\nvar faMountain = {\n prefix: 'fas',\n iconName: 'mountain',\n icon: [640, 512, [], \"f6fc\", \"M634.92 462.7l-288-448C341.03 5.54 330.89 0 320 0s-21.03 5.54-26.92 14.7l-288 448a32.001 32.001 0 0 0-1.17 32.64A32.004 32.004 0 0 0 32 512h576c11.71 0 22.48-6.39 28.09-16.67a31.983 31.983 0 0 0-1.17-32.63zM320 91.18L405.39 224H320l-64 64-38.06-38.06L320 91.18z\"]\n};\nvar faMouse = {\n prefix: 'fas',\n iconName: 'mouse',\n icon: [384, 512, [], \"f8cc\", \"M0 352a160 160 0 0 0 160 160h64a160 160 0 0 0 160-160V224H0zM176 0h-16A160 160 0 0 0 0 160v32h176zm48 0h-16v192h176v-32A160 160 0 0 0 224 0z\"]\n};\nvar faMousePointer = {\n prefix: 'fas',\n iconName: 'mouse-pointer',\n icon: [320, 512, [], \"f245\", \"M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z\"]\n};\nvar faMugHot = {\n prefix: 'fas',\n iconName: 'mug-hot',\n icon: [512, 512, [], \"f7b6\", \"M127.1 146.5c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C111.8 5.9 105 0 96.8 0H80.4C70.6 0 63 8.5 64.1 18c3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zm112 0c1.3 7.7 8 13.5 16 13.5h16.5c9.8 0 17.6-8.5 16.3-18-3.8-28.2-16.4-54.2-36.6-74.7-14.4-14.7-23.6-33.3-26.4-53.5C223.8 5.9 217 0 208.8 0h-16.4c-9.8 0-17.5 8.5-16.3 18 3.9 31.9 18 61.3 40.6 84.4 12 12.2 19.7 27.5 22.4 44.1zM400 192H32c-17.7 0-32 14.3-32 32v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.8 0 112-50.2 112-112s-50.2-112-112-112zm0 160h-16v-96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faMusic = {\n prefix: 'fas',\n iconName: 'music',\n icon: [512, 512, [], \"f001\", \"M470.38 1.51L150.41 96A32 32 0 0 0 128 126.51v261.41A139 139 0 0 0 96 384c-53 0-96 28.66-96 64s43 64 96 64 96-28.66 96-64V214.32l256-75v184.61a138.4 138.4 0 0 0-32-3.93c-53 0-96 28.66-96 64s43 64 96 64 96-28.65 96-64V32a32 32 0 0 0-41.62-30.49z\"]\n};\nvar faNetworkWired = {\n prefix: 'fas',\n iconName: 'network-wired',\n icon: [640, 512, [], \"f6ff\", \"M640 264v-16c0-8.84-7.16-16-16-16H344v-40h72c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H224c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h72v40H16c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h104v40H64c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h304v40h-56c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h160c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32h-56v-40h104c8.84 0 16-7.16 16-16zM256 128V64h128v64H256zm-64 320H96v-64h96v64zm352 0h-96v-64h96v64z\"]\n};\nvar faNeuter = {\n prefix: 'fas',\n iconName: 'neuter',\n icon: [288, 512, [], \"f22c\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V468c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V316.4c64.1-14.5 112-71.9 112-140.4zm-144 80c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faNewspaper = {\n prefix: 'fas',\n iconName: 'newspaper',\n icon: [576, 512, [], \"f1ea\", \"M552 64H88c-13.255 0-24 10.745-24 24v8H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h472c26.51 0 48-21.49 48-48V88c0-13.255-10.745-24-24-24zM56 400a8 8 0 0 1-8-8V144h16v248a8 8 0 0 1-8 8zm236-16H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm-208-96H140c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm208 0H348c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h152c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12zm0-96H140c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h360c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12z\"]\n};\nvar faNotEqual = {\n prefix: 'fas',\n iconName: 'not-equal',\n icon: [448, 512, [], \"f53e\", \"M416 208c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32h-23.88l51.87-66.81c5.37-7.02 4.04-17.06-2.97-22.43L415.61 3.3c-7.02-5.38-17.06-4.04-22.44 2.97L311.09 112H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h204.56l-74.53 96H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h55.49l-51.87 66.81c-5.37 7.01-4.04 17.05 2.97 22.43L64 508.7c7.02 5.38 17.06 4.04 22.43-2.97L168.52 400H416c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32H243.05l74.53-96H416z\"]\n};\nvar faNotesMedical = {\n prefix: 'fas',\n iconName: 'notes-medical',\n icon: [384, 512, [], \"f481\", \"M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm96 304c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm0-192c0 4.4-3.6 8-8 8H104c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h176c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faObjectGroup = {\n prefix: 'fas',\n iconName: 'object-group',\n icon: [512, 512, [], \"f247\", \"M480 128V96h20c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v20H64V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v40c0 6.627 5.373 12 12 12h20v320H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-20h384v20c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-20V128zM96 276V140c0-6.627 5.373-12 12-12h168c6.627 0 12 5.373 12 12v136c0 6.627-5.373 12-12 12H108c-6.627 0-12-5.373-12-12zm320 96c0 6.627-5.373 12-12 12H236c-6.627 0-12-5.373-12-12v-52h72c13.255 0 24-10.745 24-24v-72h84c6.627 0 12 5.373 12 12v136z\"]\n};\nvar faObjectUngroup = {\n prefix: 'fas',\n iconName: 'object-ungroup',\n icon: [576, 512, [], \"f248\", \"M64 320v26a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6v-52a6 6 0 0 1 6-6h26V96H6a6 6 0 0 1-6-6V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v26h288V38a6 6 0 0 1 6-6h52a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-26v192h26a6 6 0 0 1 6 6v52a6 6 0 0 1-6 6h-52a6 6 0 0 1-6-6v-26H64zm480-64v-32h26a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-52a6 6 0 0 0-6 6v26H408v72h8c13.255 0 24 10.745 24 24v64c0 13.255-10.745 24-24 24h-64c-13.255 0-24-10.745-24-24v-8H192v72h-26a6 6 0 0 0-6 6v52a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-26h288v26a6 6 0 0 0 6 6h52a6 6 0 0 0 6-6v-52a6 6 0 0 0-6-6h-26V256z\"]\n};\nvar faOilCan = {\n prefix: 'fas',\n iconName: 'oil-can',\n icon: [640, 512, [], \"f613\", \"M629.8 160.31L416 224l-50.49-25.24a64.07 64.07 0 0 0-28.62-6.76H280v-48h56c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16H176c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h56v48h-56L37.72 166.86a31.9 31.9 0 0 0-5.79-.53C14.67 166.33 0 180.36 0 198.34v94.95c0 15.46 11.06 28.72 26.28 31.48L96 337.46V384c0 17.67 14.33 32 32 32h274.63c8.55 0 16.75-3.42 22.76-9.51l212.26-214.75c1.5-1.5 2.34-3.54 2.34-5.66V168c.01-5.31-5.08-9.15-10.19-7.69zM96 288.67l-48-8.73v-62.43l48 8.73v62.43zm453.33 84.66c0 23.56 19.1 42.67 42.67 42.67s42.67-19.1 42.67-42.67S592 288 592 288s-42.67 61.77-42.67 85.33z\"]\n};\nvar faOm = {\n prefix: 'fas',\n iconName: 'om',\n icon: [512, 512, [], \"f679\", \"M360.6 60.94a10.43 10.43 0 0 0 14.76 0l21.57-21.56a10.43 10.43 0 0 0 0-14.76L375.35 3.06c-4.08-4.07-10.68-4.07-14.76 0l-21.57 21.56a10.43 10.43 0 0 0 0 14.76l21.58 21.56zM412.11 192c-26.69 0-51.77 10.39-70.64 29.25l-24.25 24.25c-6.78 6.77-15.78 10.5-25.38 10.5H245c10.54-22.1 14.17-48.11 7.73-75.23-10.1-42.55-46.36-76.11-89.52-83.19-36.15-5.93-70.9 5.04-96.01 28.78-7.36 6.96-6.97 18.85 1.12 24.93l26.15 19.63c5.72 4.3 13.66 4.32 19.2-.21 8.45-6.9 19.02-10.71 30.27-10.71 26.47 0 48.01 21.53 48.01 48s-21.54 48-48.01 48h-31.9c-11.96 0-19.74 12.58-14.39 23.28l16.09 32.17c2.53 5.06 7.6 8.1 13.17 8.55h33.03c35.3 0 64.01 28.7 64.01 64s-28.71 64-64.01 64c-96.02 0-122.35-54.02-145.15-92.03-4.53-7.55-14.77-3.58-14.79 5.22C-.09 416 41.13 512 159.94 512c70.59 0 128.02-57.42 128.02-128 0-23.42-6.78-45.1-17.81-64h21.69c26.69 0 51.77-10.39 70.64-29.25l24.25-24.25c6.78-6.77 15.78-10.5 25.38-10.5 19.78 0 35.88 16.09 35.88 35.88V392c0 13.23-18.77 24-32.01 24-39.4 0-66.67-24.24-81.82-42.89-4.77-5.87-14.2-2.54-14.2 5.02V416s0 64 96.02 64c48.54 0 96.02-39.47 96.02-88V291.88c0-55.08-44.8-99.88-99.89-99.88zm42.18-124.73c-85.55 65.12-169.05 2.75-172.58.05-6.02-4.62-14.44-4.38-20.14.55-5.74 4.92-7.27 13.17-3.66 19.8 1.61 2.95 40.37 72.34 118.8 72.34 79.92 0 98.78-31.36 101.75-37.66 1.02-2.12 1.53-4.47 1.53-6.83V80c0-13.22-15.14-20.69-25.7-12.73z\"]\n};\nvar faOtter = {\n prefix: 'fas',\n iconName: 'otter',\n icon: [640, 512, [], \"f700\", \"M608 32h-32l-13.25-13.25A63.97 63.97 0 0 0 517.49 0H497c-11.14 0-22.08 2.91-31.75 8.43L312 96h-56C149.96 96 64 181.96 64 288v1.61c0 32.75-16 62.14-39.56 84.89-18.19 17.58-28.1 43.68-23.19 71.8 6.76 38.8 42.9 65.7 82.28 65.7H192c17.67 0 32-14.33 32-32s-14.33-32-32-32H80c-8.83 0-16-7.17-16-16s7.17-16 16-16h224c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-64l149.49-80.5L448 416h80c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-28.22l-55.11-110.21L521.14 192H544c53.02 0 96-42.98 96-96V64c0-17.67-14.33-32-32-32zm-96 16c8.84 0 16 7.16 16 16s-7.16 16-16 16-16-7.16-16-16 7.16-16 16-16zm32 96h-34.96L407.2 198.84l-13.77-27.55L512 112h77.05c-6.62 18.58-24.22 32-45.05 32z\"]\n};\nvar faOutdent = {\n prefix: 'fas',\n iconName: 'outdent',\n icon: [448, 512, [], \"f03b\", \"M100.69 363.29c10 10 27.31 2.93 27.31-11.31V160c0-14.32-17.33-21.31-27.31-11.31l-96 96a16 16 0 0 0 0 22.62zM432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm3.17-128H204.83A12.82 12.82 0 0 0 192 300.83v38.34A12.82 12.82 0 0 0 204.83 352h230.34A12.82 12.82 0 0 0 448 339.17v-38.34A12.82 12.82 0 0 0 435.17 288zm0-128H204.83A12.82 12.82 0 0 0 192 172.83v38.34A12.82 12.82 0 0 0 204.83 224h230.34A12.82 12.82 0 0 0 448 211.17v-38.34A12.82 12.82 0 0 0 435.17 160zM432 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faPager = {\n prefix: 'fas',\n iconName: 'pager',\n icon: [512, 512, [], \"f815\", \"M448 64H64a64 64 0 0 0-64 64v256a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V128a64 64 0 0 0-64-64zM160 368H80a16 16 0 0 1-16-16v-16a16 16 0 0 1 16-16h80zm128-16a16 16 0 0 1-16 16h-80v-48h80a16 16 0 0 1 16 16zm160-128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32v-64a32 32 0 0 1 32-32h320a32 32 0 0 1 32 32z\"]\n};\nvar faPaintBrush = {\n prefix: 'fas',\n iconName: 'paint-brush',\n icon: [512, 512, [], \"f1fc\", \"M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z\"]\n};\nvar faPaintRoller = {\n prefix: 'fas',\n iconName: 'paint-roller',\n icon: [512, 512, [], \"f5aa\", \"M416 128V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32h352c17.67 0 32-14.33 32-32zm32-64v128c0 17.67-14.33 32-32 32H256c-35.35 0-64 28.65-64 64v32c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32v-32h160c53.02 0 96-42.98 96-96v-64c0-35.35-28.65-64-64-64z\"]\n};\nvar faPalette = {\n prefix: 'fas',\n iconName: 'palette',\n icon: [512, 512, [], \"f53f\", \"M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPallet = {\n prefix: 'fas',\n iconName: 'pallet',\n icon: [640, 512, [], \"f482\", \"M144 256h352c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H384v128l-64-32-64 32V0H144c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16zm480 128c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v64H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-64h48zm-336 64H128v-64h160v64zm224 0H352v-64h160v64z\"]\n};\nvar faPaperPlane = {\n prefix: 'fas',\n iconName: 'paper-plane',\n icon: [512, 512, [], \"f1d8\", \"M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z\"]\n};\nvar faPaperclip = {\n prefix: 'fas',\n iconName: 'paperclip',\n icon: [448, 512, [], \"f0c6\", \"M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z\"]\n};\nvar faParachuteBox = {\n prefix: 'fas',\n iconName: 'parachute-box',\n icon: [512, 512, [], \"f4cd\", \"M511.9 175c-9.1-75.6-78.4-132.4-158.3-158.7C390 55.7 416 116.9 416 192h28.1L327.5 321.5c-2.5-.6-4.8-1.5-7.5-1.5h-48V192h112C384 76.8 315.1 0 256 0S128 76.8 128 192h112v128h-48c-2.7 0-5 .9-7.5 1.5L67.9 192H96c0-75.1 26-136.3 62.4-175.7C78.5 42.7 9.2 99.5.1 175c-1.1 9.1 6.8 17 16 17h8.7l136.7 151.9c-.7 2.6-1.6 5.2-1.6 8.1v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-2.9-.9-5.4-1.6-8.1L487.1 192h8.7c9.3 0 17.2-7.8 16.1-17z\"]\n};\nvar faParagraph = {\n prefix: 'fas',\n iconName: 'paragraph',\n icon: [448, 512, [], \"f1dd\", \"M448 48v32a16 16 0 0 1-16 16h-48v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V96h-32v368a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V352h-32a160 160 0 0 1 0-320h240a16 16 0 0 1 16 16z\"]\n};\nvar faParking = {\n prefix: 'fas',\n iconName: 'parking',\n icon: [448, 512, [], \"f540\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM240 320h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h96c52.9 0 96 43.1 96 96s-43.1 96-96 96zm0-128h-48v64h48c17.6 0 32-14.4 32-32s-14.4-32-32-32z\"]\n};\nvar faPassport = {\n prefix: 'fas',\n iconName: 'passport',\n icon: [448, 512, [], \"f5ab\", \"M129.62 176h39.09c1.49-27.03 6.54-51.35 14.21-70.41-27.71 13.24-48.02 39.19-53.3 70.41zm0 32c5.29 31.22 25.59 57.17 53.3 70.41-7.68-19.06-12.72-43.38-14.21-70.41h-39.09zM224 286.69c7.69-7.45 20.77-34.42 23.43-78.69h-46.87c2.67 44.26 15.75 71.24 23.44 78.69zM200.57 176h46.87c-2.66-44.26-15.74-71.24-23.43-78.69-7.7 7.45-20.78 34.43-23.44 78.69zm64.51 102.41c27.71-13.24 48.02-39.19 53.3-70.41h-39.09c-1.49 27.03-6.53 51.35-14.21 70.41zM416 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h352c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32zm-80 416H112c-8.8 0-16-7.2-16-16s7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-112-96c-70.69 0-128-57.31-128-128S153.31 64 224 64s128 57.31 128 128-57.31 128-128 128zm41.08-214.41c7.68 19.06 12.72 43.38 14.21 70.41h39.09c-5.28-31.22-25.59-57.17-53.3-70.41z\"]\n};\nvar faPastafarianism = {\n prefix: 'fas',\n iconName: 'pastafarianism',\n icon: [640, 512, [], \"f67b\", \"M624.54 347.67c-32.7-12.52-57.36 4.25-75.37 16.45-17.06 11.53-23.25 14.42-31.41 11.36-8.12-3.09-10.83-9.38-15.89-29.38-3.33-13.15-7.44-29.32-17.95-42.65 2.24-2.91 4.43-5.79 6.38-8.57C500.47 304.45 513.71 312 532 312c33.95 0 50.87-25.78 62.06-42.83 10.59-16.14 15-21.17 21.94-21.17 13.25 0 24-10.75 24-24s-10.75-24-24-24c-33.95 0-50.87 25.78-62.06 42.83-10.6 16.14-15 21.17-21.94 21.17-17.31 0-37.48-61.43-97.26-101.91l17.25-34.5C485.43 125.5 512 97.98 512 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 13.02 3.94 25.1 10.62 35.21l-18.15 36.3c-16.98-4.6-35.6-7.51-56.46-7.51s-39.49 2.91-56.46 7.51l-18.15-36.3C252.06 89.1 256 77.02 256 64c0-35.35-28.65-64-64-64s-64 28.65-64 64c0 33.98 26.56 61.5 60.02 63.6l17.25 34.5C145.68 202.44 125.15 264 108 264c-6.94 0-11.34-5.03-21.94-21.17C74.88 225.78 57.96 200 24 200c-13.25 0-24 10.75-24 24s10.75 24 24 24c6.94 0 11.34 5.03 21.94 21.17C57.13 286.22 74.05 312 108 312c18.29 0 31.53-7.55 41.7-17.11 1.95 2.79 4.14 5.66 6.38 8.57-10.51 13.33-14.62 29.5-17.95 42.65-5.06 20-7.77 26.28-15.89 29.38-8.11 3.06-14.33.17-31.41-11.36-18.03-12.2-42.72-28.92-75.37-16.45-12.39 4.72-18.59 18.58-13.87 30.97 4.72 12.41 18.61 18.61 30.97 13.88 8.16-3.09 14.34-.19 31.39 11.36 13.55 9.16 30.83 20.86 52.42 20.84 7.17 0 14.83-1.28 22.97-4.39 32.66-12.44 39.98-41.33 45.33-62.44 2.21-8.72 3.99-14.49 5.95-18.87 16.62 13.61 36.95 25.88 61.64 34.17-9.96 37-32.18 90.8-60.26 90.8-13.25 0-24 10.75-24 24s10.75 24 24 24c66.74 0 97.05-88.63 107.42-129.14 6.69.6 13.42 1.14 20.58 1.14s13.89-.54 20.58-1.14C350.95 423.37 381.26 512 448 512c13.25 0 24-10.75 24-24s-10.75-24-24-24c-27.94 0-50.21-53.81-60.22-90.81 24.69-8.29 45-20.56 61.62-34.16 1.96 4.38 3.74 10.15 5.95 18.87 5.34 21.11 12.67 50 45.33 62.44 8.14 3.11 15.8 4.39 22.97 4.39 21.59 0 38.87-11.69 52.42-20.84 17.05-11.55 23.28-14.45 31.39-11.36 12.39 4.75 26.27-1.47 30.97-13.88 4.71-12.4-1.49-26.26-13.89-30.98zM448 48c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zm-256 0c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16z\"]\n};\nvar faPaste = {\n prefix: 'fas',\n iconName: 'paste',\n icon: [448, 512, [], \"f0ea\", \"M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z\"]\n};\nvar faPause = {\n prefix: 'fas',\n iconName: 'pause',\n icon: [448, 512, [], \"f04c\", \"M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z\"]\n};\nvar faPauseCircle = {\n prefix: 'fas',\n iconName: 'pause-circle',\n icon: [512, 512, [], \"f28b\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-16 328c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160zm112 0c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faPaw = {\n prefix: 'fas',\n iconName: 'paw',\n icon: [512, 512, [], \"f1b0\", \"M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z\"]\n};\nvar faPeace = {\n prefix: 'fas',\n iconName: 'peace',\n icon: [496, 512, [], \"f67c\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm184 248c0 31.93-8.2 61.97-22.57 88.17L280 240.63V74.97c86.23 15.21 152 90.5 152 181.03zM216 437.03c-33.86-5.97-64.49-21.2-89.29-43.02L216 322.57v114.46zm64-114.46L369.29 394c-24.8 21.82-55.43 37.05-89.29 43.02V322.57zm-64-247.6v165.66L86.57 344.17C72.2 317.97 64 287.93 64 256c0-90.53 65.77-165.82 152-181.03z\"]\n};\nvar faPen = {\n prefix: 'fas',\n iconName: 'pen',\n icon: [512, 512, [], \"f304\", \"M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z\"]\n};\nvar faPenAlt = {\n prefix: 'fas',\n iconName: 'pen-alt',\n icon: [512, 512, [], \"f305\", \"M497.94 74.17l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91zm-246.8-20.53c-15.62-15.62-40.94-15.62-56.56 0L75.8 172.43c-6.25 6.25-6.25 16.38 0 22.62l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l101.82-101.82 22.63 22.62L93.95 290.03A327.038 327.038 0 0 0 .17 485.11l-.03.23c-1.7 15.28 11.21 28.2 26.49 26.51a327.02 327.02 0 0 0 195.34-93.8l196.79-196.79-82.77-82.77-84.85-84.85z\"]\n};\nvar faPenFancy = {\n prefix: 'fas',\n iconName: 'pen-fancy',\n icon: [512, 512, [], \"f5ac\", \"M79.18 282.94a32.005 32.005 0 0 0-20.24 20.24L0 480l4.69 4.69 92.89-92.89c-.66-2.56-1.57-5.03-1.57-7.8 0-17.67 14.33-32 32-32s32 14.33 32 32-14.33 32-32 32c-2.77 0-5.24-.91-7.8-1.57l-92.89 92.89L32 512l176.82-58.94a31.983 31.983 0 0 0 20.24-20.24l33.07-84.07-98.88-98.88-84.07 33.07zM369.25 28.32L186.14 227.81l97.85 97.85 199.49-183.11C568.4 67.48 443.73-55.94 369.25 28.32z\"]\n};\nvar faPenNib = {\n prefix: 'fas',\n iconName: 'pen-nib',\n icon: [512, 512, [], \"f5ad\", \"M136.6 138.79a64.003 64.003 0 0 0-43.31 41.35L0 460l14.69 14.69L164.8 324.58c-2.99-6.26-4.8-13.18-4.8-20.58 0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48c-7.4 0-14.32-1.81-20.58-4.8L37.31 497.31 52 512l279.86-93.29a64.003 64.003 0 0 0 41.35-43.31L416 224 288 96l-151.4 42.79zm361.34-64.62l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.75 18.75-49.15 0-67.91z\"]\n};\nvar faPenSquare = {\n prefix: 'fas',\n iconName: 'pen-square',\n icon: [448, 512, [], \"f14b\", \"M400 480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zM238.1 177.9L102.4 313.6l-6.3 57.1c-.8 7.6 5.6 14.1 13.3 13.3l57.1-6.3L302.2 242c2.3-2.3 2.3-6.1 0-8.5L246.7 178c-2.5-2.4-6.3-2.4-8.6-.1zM345 165.1L314.9 135c-9.4-9.4-24.6-9.4-33.9 0l-23.1 23.1c-2.3 2.3-2.3 6.1 0 8.5l55.5 55.5c2.3 2.3 6.1 2.3 8.5 0L345 199c9.3-9.3 9.3-24.5 0-33.9z\"]\n};\nvar faPencilAlt = {\n prefix: 'fas',\n iconName: 'pencil-alt',\n icon: [512, 512, [], \"f303\", \"M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z\"]\n};\nvar faPencilRuler = {\n prefix: 'fas',\n iconName: 'pencil-ruler',\n icon: [512, 512, [], \"f5ae\", \"M109.46 244.04l134.58-134.56-44.12-44.12-61.68 61.68a7.919 7.919 0 0 1-11.21 0l-11.21-11.21c-3.1-3.1-3.1-8.12 0-11.21l61.68-61.68-33.64-33.65C131.47-3.1 111.39-3.1 99 9.29L9.29 99c-12.38 12.39-12.39 32.47 0 44.86l100.17 100.18zm388.47-116.8c18.76-18.76 18.75-49.17 0-67.93l-45.25-45.25c-18.76-18.76-49.18-18.76-67.95 0l-46.02 46.01 113.2 113.2 46.02-46.03zM316.08 82.71l-297 296.96L.32 487.11c-2.53 14.49 10.09 27.11 24.59 24.56l107.45-18.84L429.28 195.9 316.08 82.71zm186.63 285.43l-33.64-33.64-61.68 61.68c-3.1 3.1-8.12 3.1-11.21 0l-11.21-11.21c-3.09-3.1-3.09-8.12 0-11.21l61.68-61.68-44.14-44.14L267.93 402.5l100.21 100.2c12.39 12.39 32.47 12.39 44.86 0l89.71-89.7c12.39-12.39 12.39-32.47 0-44.86z\"]\n};\nvar faPeopleArrows = {\n prefix: 'fas',\n iconName: 'people-arrows',\n icon: [576, 512, [], \"e068\", \"M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z\"]\n};\nvar faPeopleCarry = {\n prefix: 'fas',\n iconName: 'people-carry',\n icon: [640, 512, [], \"f4ce\", \"M128 96c26.5 0 48-21.5 48-48S154.5 0 128 0 80 21.5 80 48s21.5 48 48 48zm384 0c26.5 0 48-21.5 48-48S538.5 0 512 0s-48 21.5-48 48 21.5 48 48 48zm125.7 372.1l-44-110-41.1 46.4-2 18.2 27.7 69.2c5 12.5 17 20.1 29.7 20.1 4 0 8-.7 11.9-2.3 16.4-6.6 24.4-25.2 17.8-41.6zm-34.2-209.8L585 178.1c-4.6-20-18.6-36.8-37.5-44.9-18.5-8-39-6.7-56.1 3.3-22.7 13.4-39.7 34.5-48.1 59.4L432 229.8 416 240v-96c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16v96l-16.1-10.2-11.3-33.9c-8.3-25-25.4-46-48.1-59.4-17.2-10-37.6-11.3-56.1-3.3-18.9 8.1-32.9 24.9-37.5 44.9l-18.4 80.2c-4.6 20 .7 41.2 14.4 56.7l67.2 75.9 10.1 92.6C130 499.8 143.8 512 160 512c1.2 0 2.3-.1 3.5-.2 17.6-1.9 30.2-17.7 28.3-35.3l-10.1-92.8c-1.5-13-6.9-25.1-15.6-35l-43.3-49 17.6-70.3 6.8 20.4c4.1 12.5 11.9 23.4 24.5 32.6l51.1 32.5c4.6 2.9 12.1 4.6 17.2 5h160c5.1-.4 12.6-2.1 17.2-5l51.1-32.5c12.6-9.2 20.4-20 24.5-32.6l6.8-20.4 17.6 70.3-43.3 49c-8.7 9.9-14.1 22-15.6 35l-10.1 92.8c-1.9 17.6 10.8 33.4 28.3 35.3 1.2.1 2.3.2 3.5.2 16.1 0 30-12.1 31.8-28.5l10.1-92.6 67.2-75.9c13.6-15.5 19-36.7 14.4-56.7zM46.3 358.1l-44 110c-6.6 16.4 1.4 35 17.8 41.6 16.8 6.6 35.1-1.7 41.6-17.8l27.7-69.2-2-18.2-41.1-46.4z\"]\n};\nvar faPepperHot = {\n prefix: 'fas',\n iconName: 'pepper-hot',\n icon: [512, 512, [], \"f816\", \"M330.67 263.12V173.4l-52.75-24.22C219.44 218.76 197.58 400 56 400a56 56 0 0 0 0 112c212.64 0 370.65-122.87 419.18-210.34l-37.05-38.54zm131.09-128.37C493.92 74.91 477.18 26.48 458.62 3a8 8 0 0 0-11.93-.59l-22.9 23a8.06 8.06 0 0 0-.89 10.23c6.86 10.36 17.05 35.1-1.4 72.32A142.85 142.85 0 0 0 364.34 96c-28 0-54 8.54-76.34 22.59l74.67 34.29v78.24h89.09L506.44 288c3.26-12.62 5.56-25.63 5.56-39.31a154 154 0 0 0-50.24-113.94z\"]\n};\nvar faPercent = {\n prefix: 'fas',\n iconName: 'percent',\n icon: [448, 512, [], \"f295\", \"M112 224c61.9 0 112-50.1 112-112S173.9 0 112 0 0 50.1 0 112s50.1 112 112 112zm0-160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm224 224c-61.9 0-112 50.1-112 112s50.1 112 112 112 112-50.1 112-112-50.1-112-112-112zm0 160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zM392.3.2l31.6-.1c19.4-.1 30.9 21.8 19.7 37.8L77.4 501.6a23.95 23.95 0 0 1-19.6 10.2l-33.4.1c-19.5 0-30.9-21.9-19.7-37.8l368-463.7C377.2 4 384.5.2 392.3.2z\"]\n};\nvar faPercentage = {\n prefix: 'fas',\n iconName: 'percentage',\n icon: [384, 512, [], \"f541\", \"M109.25 173.25c24.99-24.99 24.99-65.52 0-90.51-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 25 25 65.52 25 90.51 0zm256 165.49c-24.99-24.99-65.52-24.99-90.51 0-24.99 24.99-24.99 65.52 0 90.51 24.99 24.99 65.52 24.99 90.51 0 25-24.99 25-65.51 0-90.51zm-1.94-231.43l-22.62-22.62c-12.5-12.5-32.76-12.5-45.25 0L20.69 359.44c-12.5 12.5-12.5 32.76 0 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.25 0l274.75-274.75c12.5-12.49 12.5-32.75 0-45.25z\"]\n};\nvar faPersonBooth = {\n prefix: 'fas',\n iconName: 'person-booth',\n icon: [576, 512, [], \"f756\", \"M192 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h-64v176zm32-272h-50.9l-45.2-45.3C115.8 166.6 99.7 160 82.7 160H64c-17.1 0-33.2 6.7-45.3 18.8C6.7 190.9 0 207 0 224.1L.2 320 0 480c0 17.7 14.3 32 31.9 32 17.6 0 32-14.3 32-32l.1-100.7c.9.5 1.6 1.3 2.5 1.7l29.1 43v56c0 17.7 14.3 32 32 32s32-14.3 32-32v-56.5c0-9.9-2.3-19.8-6.7-28.6l-41.2-61.3V253l20.9 20.9c9.1 9.1 21.1 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32zM64 128c26.5 0 48-21.5 48-48S90.5 32 64 32 16 53.5 16 80s21.5 48 48 48zm224-96l31.5 223.1-30.9 154.6c-4.3 21.6 13 38.3 31.4 38.3 15.2 0 28-9.1 32.3-30.4.9 16.9 14.6 30.4 31.7 30.4 17.7 0 32-14.3 32-32 0 17.7 14.3 32 32 32s32-14.3 32-32V0H288v32zm-96 0v160h64V0h-32c-17.7 0-32 14.3-32 32zM544 0h-32v496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V32c0-17.7-14.3-32-32-32z\"]\n};\nvar faPhone = {\n prefix: 'fas',\n iconName: 'phone',\n icon: [512, 512, [], \"f095\", \"M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z\"]\n};\nvar faPhoneAlt = {\n prefix: 'fas',\n iconName: 'phone-alt',\n icon: [512, 512, [], \"f879\", \"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"]\n};\nvar faPhoneSlash = {\n prefix: 'fas',\n iconName: 'phone-slash',\n icon: [640, 512, [], \"f3dd\", \"M268.2 381.4l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48c-10.7 4.6-16.5 16.1-13.9 27.5l24 104c2.5 10.8 12.1 18.6 23.4 18.6 100.7 0 193.7-32.4 269.7-86.9l-80-61.8c-10.9 6.5-22.1 12.7-33.6 18.1zm365.6 76.7L475.1 335.5C537.9 256.4 576 156.9 576 48c0-11.2-7.7-20.9-18.6-23.4l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-12.2 26.1-27.9 50.3-46 72.8L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z\"]\n};\nvar faPhoneSquare = {\n prefix: 'fas',\n iconName: 'phone-square',\n icon: [448, 512, [], \"f098\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM94 416c-7.033 0-13.057-4.873-14.616-11.627l-14.998-65a15 15 0 0 1 8.707-17.16l69.998-29.999a15 15 0 0 1 17.518 4.289l30.997 37.885c48.944-22.963 88.297-62.858 110.781-110.78l-37.886-30.997a15.001 15.001 0 0 1-4.289-17.518l30-69.998a15 15 0 0 1 17.16-8.707l65 14.998A14.997 14.997 0 0 1 384 126c0 160.292-129.945 290-290 290z\"]\n};\nvar faPhoneSquareAlt = {\n prefix: 'fas',\n iconName: 'phone-square-alt',\n icon: [448, 512, [], \"f87b\", \"M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48zm-16.39 307.37l-15 65A15 15 0 0 1 354 416C194 416 64 286.29 64 126a15.7 15.7 0 0 1 11.63-14.61l65-15A18.23 18.23 0 0 1 144 96a16.27 16.27 0 0 1 13.79 9.09l30 70A17.9 17.9 0 0 1 189 181a17 17 0 0 1-5.5 11.61l-37.89 31a231.91 231.91 0 0 0 110.78 110.78l31-37.89A17 17 0 0 1 299 291a17.85 17.85 0 0 1 5.91 1.21l70 30A16.25 16.25 0 0 1 384 336a17.41 17.41 0 0 1-.39 3.37z\"]\n};\nvar faPhoneVolume = {\n prefix: 'fas',\n iconName: 'phone-volume',\n icon: [384, 512, [], \"f2a0\", \"M97.333 506.966c-129.874-129.874-129.681-340.252 0-469.933 5.698-5.698 14.527-6.632 21.263-2.422l64.817 40.513a17.187 17.187 0 0 1 6.849 20.958l-32.408 81.021a17.188 17.188 0 0 1-17.669 10.719l-55.81-5.58c-21.051 58.261-20.612 122.471 0 179.515l55.811-5.581a17.188 17.188 0 0 1 17.669 10.719l32.408 81.022a17.188 17.188 0 0 1-6.849 20.958l-64.817 40.513a17.19 17.19 0 0 1-21.264-2.422zM247.126 95.473c11.832 20.047 11.832 45.008 0 65.055-3.95 6.693-13.108 7.959-18.718 2.581l-5.975-5.726c-3.911-3.748-4.793-9.622-2.261-14.41a32.063 32.063 0 0 0 0-29.945c-2.533-4.788-1.65-10.662 2.261-14.41l5.975-5.726c5.61-5.378 14.768-4.112 18.718 2.581zm91.787-91.187c60.14 71.604 60.092 175.882 0 247.428-4.474 5.327-12.53 5.746-17.552.933l-5.798-5.557c-4.56-4.371-4.977-11.529-.93-16.379 49.687-59.538 49.646-145.933 0-205.422-4.047-4.85-3.631-12.008.93-16.379l5.798-5.557c5.022-4.813 13.078-4.394 17.552.933zm-45.972 44.941c36.05 46.322 36.108 111.149 0 157.546-4.39 5.641-12.697 6.251-17.856 1.304l-5.818-5.579c-4.4-4.219-4.998-11.095-1.285-15.931 26.536-34.564 26.534-82.572 0-117.134-3.713-4.836-3.115-11.711 1.285-15.931l5.818-5.579c5.159-4.947 13.466-4.337 17.856 1.304z\"]\n};\nvar faPhotoVideo = {\n prefix: 'fas',\n iconName: 'photo-video',\n icon: [640, 512, [], \"f87c\", \"M608 0H160a32 32 0 0 0-32 32v96h160V64h192v320h128a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32zM232 103a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm352 208a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9v-30a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm0-104a9 9 0 0 1-9 9h-30a9 9 0 0 1-9-9V73a9 9 0 0 1 9-9h30a9 9 0 0 1 9 9zm-168 57H32a32 32 0 0 0-32 32v288a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM96 224a32 32 0 1 1-32 32 32 32 0 0 1 32-32zm288 224H64v-32l64-64 32 32 128-128 96 96z\"]\n};\nvar faPiggyBank = {\n prefix: 'fas',\n iconName: 'piggy-bank',\n icon: [576, 512, [], \"f4d3\", \"M560 224h-29.5c-8.8-20-21.6-37.7-37.4-52.5L512 96h-32c-29.4 0-55.4 13.5-73 34.3-7.6-1.1-15.1-2.3-23-2.3H256c-77.4 0-141.9 55-156.8 128H56c-14.8 0-26.5-13.5-23.5-28.8C34.7 215.8 45.4 208 57 208h1c3.3 0 6-2.7 6-6v-20c0-3.3-2.7-6-6-6-28.5 0-53.9 20.4-57.5 48.6C-3.9 258.8 22.7 288 56 288h40c0 52.2 25.4 98.1 64 127.3V496c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-48h128v48c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-80.7c11.8-8.9 22.3-19.4 31.3-31.3H560c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16zm-128 64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM256 96h128c5.4 0 10.7.4 15.9.8 0-.3.1-.5.1-.8 0-53-43-96-96-96s-96 43-96 96c0 2.1.5 4.1.6 6.2 15.2-3.9 31-6.2 47.4-6.2z\"]\n};\nvar faPills = {\n prefix: 'fas',\n iconName: 'pills',\n icon: [576, 512, [], \"f484\", \"M112 32C50.1 32 0 82.1 0 144v224c0 61.9 50.1 112 112 112s112-50.1 112-112V144c0-61.9-50.1-112-112-112zm48 224H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48v112zm139.7-29.7c-3.5-3.5-9.4-3.1-12.3.8-45.3 62.5-40.4 150.1 15.9 206.4 56.3 56.3 143.9 61.2 206.4 15.9 4-2.9 4.3-8.8.8-12.3L299.7 226.3zm229.8-19c-56.3-56.3-143.9-61.2-206.4-15.9-4 2.9-4.3 8.8-.8 12.3l210.8 210.8c3.5 3.5 9.4 3.1 12.3-.8 45.3-62.6 40.5-150.1-15.9-206.4z\"]\n};\nvar faPizzaSlice = {\n prefix: 'fas',\n iconName: 'pizza-slice',\n icon: [512, 512, [], \"f818\", \"M158.87.15c-16.16-1.52-31.2 8.42-35.33 24.12l-14.81 56.27c187.62 5.49 314.54 130.61 322.48 317l56.94-15.78c15.72-4.36 25.49-19.68 23.62-35.9C490.89 165.08 340.78 17.32 158.87.15zm-58.47 112L.55 491.64a16.21 16.21 0 0 0 20 19.75l379-105.1c-4.27-174.89-123.08-292.14-299.15-294.1zM128 416a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm48-152a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm104 104a32 32 0 1 1 32-32 32 32 0 0 1-32 32z\"]\n};\nvar faPlaceOfWorship = {\n prefix: 'fas',\n iconName: 'place-of-worship',\n icon: [640, 512, [], \"f67f\", \"M620.61 366.55L512 320v192h112c8.84 0 16-7.16 16-16V395.96a32 32 0 0 0-19.39-29.41zM0 395.96V496c0 8.84 7.16 16 16 16h112V320L19.39 366.55A32 32 0 0 0 0 395.96zm464.46-149.28L416 217.6V102.63c0-8.49-3.37-16.62-9.38-22.63L331.31 4.69c-6.25-6.25-16.38-6.25-22.62 0L233.38 80c-6 6-9.38 14.14-9.38 22.63V217.6l-48.46 29.08A31.997 31.997 0 0 0 160 274.12V512h96v-96c0-35.35 28.66-64 64-64s64 28.65 64 64v96h96V274.12c0-11.24-5.9-21.66-15.54-27.44z\"]\n};\nvar faPlane = {\n prefix: 'fas',\n iconName: 'plane',\n icon: [576, 512, [], \"f072\", \"M480 192H365.71L260.61 8.06A16.014 16.014 0 0 0 246.71 0h-65.5c-10.63 0-18.3 10.17-15.38 20.39L214.86 192H112l-43.2-57.6c-3.02-4.03-7.77-6.4-12.8-6.4H16.01C5.6 128-2.04 137.78.49 147.88L32 256 .49 364.12C-2.04 374.22 5.6 384 16.01 384H56c5.04 0 9.78-2.37 12.8-6.4L112 320h102.86l-49.03 171.6c-2.92 10.22 4.75 20.4 15.38 20.4h65.5c5.74 0 11.04-3.08 13.89-8.06L365.71 320H480c35.35 0 96-28.65 96-64s-60.65-64-96-64z\"]\n};\nvar faPlaneArrival = {\n prefix: 'fas',\n iconName: 'plane-arrival',\n icon: [640, 512, [], \"f5af\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM44.81 205.66l88.74 80a62.607 62.607 0 0 0 25.47 13.93l287.6 78.35c26.48 7.21 54.56 8.72 81 1.36 29.67-8.27 43.44-21.21 47.25-35.71 3.83-14.5-1.73-32.71-23.37-54.96-19.28-19.82-44.35-32.79-70.83-40l-97.51-26.56L282.8 30.22c-1.51-5.81-5.95-10.35-11.66-11.91L206.05.58c-10.56-2.88-20.9 5.32-20.71 16.44l47.92 164.21-102.2-27.84-27.59-67.88c-1.93-4.89-6.01-8.57-11.02-9.93L52.72 64.75c-10.34-2.82-20.53 5-20.72 15.88l.23 101.78c.19 8.91 6.03 17.34 12.58 23.25z\"]\n};\nvar faPlaneDeparture = {\n prefix: 'fas',\n iconName: 'plane-departure',\n icon: [640, 512, [], \"f5b0\", \"M624 448H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h608c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM80.55 341.27c6.28 6.84 15.1 10.72 24.33 10.71l130.54-.18a65.62 65.62 0 0 0 29.64-7.12l290.96-147.65c26.74-13.57 50.71-32.94 67.02-58.31 18.31-28.48 20.3-49.09 13.07-63.65-7.21-14.57-24.74-25.27-58.25-27.45-29.85-1.94-59.54 5.92-86.28 19.48l-98.51 49.99-218.7-82.06a17.799 17.799 0 0 0-18-1.11L90.62 67.29c-10.67 5.41-13.25 19.65-5.17 28.53l156.22 98.1-103.21 52.38-72.35-36.47a17.804 17.804 0 0 0-16.07.02L9.91 230.22c-10.44 5.3-13.19 19.12-5.57 28.08l76.21 82.97z\"]\n};\nvar faPlaneSlash = {\n prefix: 'fas',\n iconName: 'plane-slash',\n icon: [640, 512, [], \"e069\", \"M32.48,147.88,64,256,32.48,364.13A16,16,0,0,0,48,384H88a16,16,0,0,0,12.8-6.41L144,320H246.85l-49,171.59A16,16,0,0,0,213.2,512h65.5a16,16,0,0,0,13.89-8.06l66.6-116.54L34.35,136.34A15.47,15.47,0,0,0,32.48,147.88ZM633.82,458.09,455.14,320H512c35.34,0,96-28.66,96-64s-60.66-64-96-64H397.7L292.61,8.06C290.06,3.61,283.84,0,278.71,0H213.2a16,16,0,0,0-15.38,20.39l36.94,129.29L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09Z\"]\n};\nvar faPlay = {\n prefix: 'fas',\n iconName: 'play',\n icon: [448, 512, [], \"f04b\", \"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"]\n};\nvar faPlayCircle = {\n prefix: 'fas',\n iconName: 'play-circle',\n icon: [512, 512, [], \"f144\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z\"]\n};\nvar faPlug = {\n prefix: 'fas',\n iconName: 'plug',\n icon: [384, 512, [], \"f1e6\", \"M320,32a32,32,0,0,0-64,0v96h64Zm48,128H16A16,16,0,0,0,0,176v32a16,16,0,0,0,16,16H32v32A160.07,160.07,0,0,0,160,412.8V512h64V412.8A160.07,160.07,0,0,0,352,256V224h16a16,16,0,0,0,16-16V176A16,16,0,0,0,368,160ZM128,32a32,32,0,0,0-64,0v96h64Z\"]\n};\nvar faPlus = {\n prefix: 'fas',\n iconName: 'plus',\n icon: [448, 512, [], \"f067\", \"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPlusCircle = {\n prefix: 'fas',\n iconName: 'plus-circle',\n icon: [512, 512, [], \"f055\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPlusSquare = {\n prefix: 'fas',\n iconName: 'plus-square',\n icon: [448, 512, [], \"f0fe\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z\"]\n};\nvar faPodcast = {\n prefix: 'fas',\n iconName: 'podcast',\n icon: [448, 512, [], \"f2ce\", \"M267.429 488.563C262.286 507.573 242.858 512 224 512c-18.857 0-38.286-4.427-43.428-23.437C172.927 460.134 160 388.898 160 355.75c0-35.156 31.142-43.75 64-43.75s64 8.594 64 43.75c0 32.949-12.871 104.179-20.571 132.813zM156.867 288.554c-18.693-18.308-29.958-44.173-28.784-72.599 2.054-49.724 42.395-89.956 92.124-91.881C274.862 121.958 320 165.807 320 220c0 26.827-11.064 51.116-28.866 68.552-2.675 2.62-2.401 6.986.628 9.187 9.312 6.765 16.46 15.343 21.234 25.363 1.741 3.654 6.497 4.66 9.449 1.891 28.826-27.043 46.553-65.783 45.511-108.565-1.855-76.206-63.595-138.208-139.793-140.369C146.869 73.753 80 139.215 80 220c0 41.361 17.532 78.7 45.55 104.989 2.953 2.771 7.711 1.77 9.453-1.887 4.774-10.021 11.923-18.598 21.235-25.363 3.029-2.2 3.304-6.566.629-9.185zM224 0C100.204 0 0 100.185 0 224c0 89.992 52.602 165.647 125.739 201.408 4.333 2.118 9.267-1.544 8.535-6.31-2.382-15.512-4.342-30.946-5.406-44.339-.146-1.836-1.149-3.486-2.678-4.512-47.4-31.806-78.564-86.016-78.187-147.347.592-96.237 79.29-174.648 175.529-174.899C320.793 47.747 400 126.797 400 224c0 61.932-32.158 116.49-80.65 147.867-.999 14.037-3.069 30.588-5.624 47.23-.732 4.767 4.203 8.429 8.535 6.31C395.227 389.727 448 314.187 448 224 448 100.205 347.815 0 224 0zm0 160c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z\"]\n};\nvar faPoll = {\n prefix: 'fas',\n iconName: 'poll',\n icon: [448, 512, [], \"f681\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM160 368c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V240c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v128zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V144c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v224zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-64c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v64z\"]\n};\nvar faPollH = {\n prefix: 'fas',\n iconName: 'poll-h',\n icon: [448, 512, [], \"f682\", \"M448 432V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48zM112 192c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h128c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16H112zm0 96c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32c0 8.84-7.16 16-16 16h-64z\"]\n};\nvar faPoo = {\n prefix: 'fas',\n iconName: 'poo',\n icon: [512, 512, [], \"f2fe\", \"M451.4 369.1C468.7 356 480 335.4 480 312c0-39.8-32.2-72-72-72h-14.1c13.4-11.7 22.1-28.8 22.1-48 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C250.3 14.6 256 30.6 256 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 19.2 8.7 36.3 22.1 48H104c-39.8 0-72 32.2-72 72 0 23.4 11.3 44 28.6 57.1C26.3 374.6 0 404.1 0 440c0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.9-26.3-65.4-60.6-70.9zM192 256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm159.5 139C341 422.9 293 448 256 448s-85-25.1-95.5-53c-2-5.3 2-11 7.8-11h175.4c5.8 0 9.8 5.7 7.8 11zM320 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faPooStorm = {\n prefix: 'fas',\n iconName: 'poo-storm',\n icon: [448, 512, [], \"f75a\", \"M308 336h-57.7l17.3-64.9c2-7.6-3.7-15.1-11.6-15.1h-68c-6 0-11.1 4.5-11.9 10.4l-16 120c-1 7.2 4.6 13.6 11.9 13.6h59.3l-23 97.2c-1.8 7.6 4 14.8 11.7 14.8 4.2 0 8.2-2.2 10.4-6l88-152c4.6-8-1.2-18-10.4-18zm66.4-111.3c5.9-9.6 9.6-20.6 9.6-32.7 0-35.3-28.7-64-64-64h-5.9c3.6-10.1 5.9-20.7 5.9-32 0-53-43-96-96-96-5.2 0-10.2.7-15.1 1.5C218.3 14.6 224 30.6 224 48c0 44.2-35.8 80-80 80h-16c-35.3 0-64 28.7-64 64 0 12.1 3.7 23.1 9.6 32.7C32.6 228 0 262.2 0 304c0 44 36 80 80 80h48.3c.1-.6 0-1.2 0-1.8l16-120c3-21.8 21.7-38.2 43.7-38.2h68c13.8 0 26.5 6.3 34.9 17.2s11.2 24.8 7.6 38.1l-6.6 24.7h16c15.7 0 30.3 8.4 38.1 22 7.8 13.6 7.8 30.5 0 44l-8.1 14h30c44 0 80-36 80-80 .1-41.8-32.5-76-73.5-79.3z\"]\n};\nvar faPoop = {\n prefix: 'fas',\n iconName: 'poop',\n icon: [512, 512, [], \"f619\", \"M451.36 369.14C468.66 355.99 480 335.41 480 312c0-39.77-32.24-72-72-72h-14.07c13.42-11.73 22.07-28.78 22.07-48 0-35.35-28.65-64-64-64h-5.88c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96-5.17 0-10.15.74-15.11 1.52C250.31 14.64 256 30.62 256 48c0 44.18-35.82 80-80 80h-16c-35.35 0-64 28.65-64 64 0 19.22 8.65 36.27 22.07 48H104c-39.76 0-72 32.23-72 72 0 23.41 11.34 43.99 28.64 57.14C26.31 374.62 0 404.12 0 440c0 39.76 32.24 72 72 72h368c39.76 0 72-32.24 72-72 0-35.88-26.31-65.38-60.64-70.86z\"]\n};\nvar faPortrait = {\n prefix: 'fas',\n iconName: 'portrait',\n icon: [384, 512, [], \"f3e0\", \"M336 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM192 128c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H102.4C90 384 80 375.4 80 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z\"]\n};\nvar faPoundSign = {\n prefix: 'fas',\n iconName: 'pound-sign',\n icon: [320, 512, [], \"f154\", \"M308 352h-45.495c-6.627 0-12 5.373-12 12v50.848H128V288h84c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-84v-63.556c0-32.266 24.562-57.086 61.792-57.086 23.658 0 45.878 11.505 57.652 18.849 5.151 3.213 11.888 2.051 15.688-2.685l28.493-35.513c4.233-5.276 3.279-13.005-2.119-17.081C273.124 54.56 236.576 32 187.931 32 106.026 32 48 84.742 48 157.961V224H20c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h28v128H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h296c6.627 0 12-5.373 12-12V364c0-6.627-5.373-12-12-12z\"]\n};\nvar faPowerOff = {\n prefix: 'fas',\n iconName: 'power-off',\n icon: [512, 512, [], \"f011\", \"M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z\"]\n};\nvar faPray = {\n prefix: 'fas',\n iconName: 'pray',\n icon: [384, 512, [], \"f683\", \"M256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-30.63 169.75c14.06 16.72 39 19.09 55.97 5.22l88-72.02c17.09-13.98 19.59-39.19 5.62-56.28-13.97-17.11-39.19-19.59-56.31-5.62l-57.44 47-38.91-46.31c-15.44-18.39-39.22-27.92-64-25.33-24.19 2.48-45.25 16.27-56.37 36.92l-49.37 92.03c-23.4 43.64-8.69 96.37 34.19 123.75L131.56 432H40c-22.09 0-40 17.91-40 40s17.91 40 40 40h208c34.08 0 53.77-42.79 28.28-68.28L166.42 333.86l34.8-64.87 24.15 28.76z\"]\n};\nvar faPrayingHands = {\n prefix: 'fas',\n iconName: 'praying-hands',\n icon: [640, 512, [], \"f684\", \"M272 191.91c-17.6 0-32 14.4-32 32v80c0 8.84-7.16 16-16 16s-16-7.16-16-16v-76.55c0-17.39 4.72-34.47 13.69-49.39l77.75-129.59c9.09-15.16 4.19-34.81-10.97-43.91-14.45-8.67-32.72-4.3-42.3 9.21-.2.23-.62.21-.79.48l-117.26 175.9C117.56 205.9 112 224.31 112 243.29v80.23l-90.12 30.04A31.974 31.974 0 0 0 0 383.91v96c0 10.82 8.52 32 32 32 2.69 0 5.41-.34 8.06-1.03l179.19-46.62C269.16 449.99 304 403.8 304 351.91v-128c0-17.6-14.4-32-32-32zm346.12 161.73L528 323.6v-80.23c0-18.98-5.56-37.39-16.12-53.23L394.62 14.25c-.18-.27-.59-.24-.79-.48-9.58-13.51-27.85-17.88-42.3-9.21-15.16 9.09-20.06 28.75-10.97 43.91l77.75 129.59c8.97 14.92 13.69 32 13.69 49.39V304c0 8.84-7.16 16-16 16s-16-7.16-16-16v-80c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 51.89 34.84 98.08 84.75 112.34l179.19 46.62c2.66.69 5.38 1.03 8.06 1.03 23.48 0 32-21.18 32-32v-96c0-13.77-8.81-25.99-21.88-30.35z\"]\n};\nvar faPrescription = {\n prefix: 'fas',\n iconName: 'prescription',\n icon: [384, 512, [], \"f5b1\", \"M301.26 352l78.06-78.06c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0L256 306.74l-83.96-83.96C219.31 216.8 256 176.89 256 128c0-53.02-42.98-96-96-96H16C7.16 32 0 39.16 0 48v256c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-80h18.75l128 128-78.06 78.06c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0L256 397.25l78.06 78.06c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63L301.26 352zM64 96h96c17.64 0 32 14.36 32 32s-14.36 32-32 32H64V96z\"]\n};\nvar faPrescriptionBottle = {\n prefix: 'fas',\n iconName: 'prescription-bottle',\n icon: [384, 512, [], \"f485\", \"M32 192h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64h120c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v64zM360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24z\"]\n};\nvar faPrescriptionBottleAlt = {\n prefix: 'fas',\n iconName: 'prescription-bottle-alt',\n icon: [384, 512, [], \"f486\", \"M360 0H24C10.8 0 0 10.8 0 24v48c0 13.2 10.8 24 24 24h336c13.2 0 24-10.8 24-24V24c0-13.2-10.8-24-24-24zM32 480c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V128H32v352zm64-184c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48z\"]\n};\nvar faPrint = {\n prefix: 'fas',\n iconName: 'print',\n icon: [512, 512, [], \"f02f\", \"M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faProcedures = {\n prefix: 'fas',\n iconName: 'procedures',\n icon: [640, 512, [], \"f487\", \"M528 224H272c-8.8 0-16 7.2-16 16v144H64V144c0-8.8-7.2-16-16-16H16c-8.8 0-16 7.2-16 16v352c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h512v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-61.9-50.1-112-112-112zM136 96h126.1l27.6 55.2c5.9 11.8 22.7 11.8 28.6 0L368 51.8 390.1 96H512c8.8 0 16-7.2 16-16s-7.2-16-16-16H409.9L382.3 8.8C376.4-3 359.6-3 353.7 8.8L304 108.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H136c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8zm24 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z\"]\n};\nvar faProjectDiagram = {\n prefix: 'fas',\n iconName: 'project-diagram',\n icon: [640, 512, [], \"f542\", \"M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z\"]\n};\nvar faPumpMedical = {\n prefix: 'fas',\n iconName: 'pump-medical',\n icon: [384, 512, [], \"e06a\", \"M235.51,159.82H84.24A64,64,0,0,0,20.51,218L.14,442a64,64,0,0,0,63.74,69.8h192A64,64,0,0,0,319.61,442L299.24,218A64,64,0,0,0,235.51,159.82Zm4.37,173.33a13.35,13.35,0,0,1-13.34,13.34h-40v40a13.33,13.33,0,0,1-13.33,13.33H146.54a13.33,13.33,0,0,1-13.33-13.33v-40h-40a13.34,13.34,0,0,1-13.33-13.34V306.49a13.33,13.33,0,0,1,13.33-13.34h40v-40a13.33,13.33,0,0,1,13.33-13.33h26.67a13.33,13.33,0,0,1,13.33,13.33v40h40a13.34,13.34,0,0,1,13.34,13.34ZM379.19,93.88,335.87,50.56a64,64,0,0,0-45.24-18.74H223.88a32,32,0,0,0-32-32h-64a32,32,0,0,0-32,32v96h128v-32h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.19,93.88Z\"]\n};\nvar faPumpSoap = {\n prefix: 'fas',\n iconName: 'pump-soap',\n icon: [384, 512, [], \"e06b\", \"M235.63,160H84.37a64,64,0,0,0-63.74,58.21L.27,442.21A64,64,0,0,0,64,512H256a64,64,0,0,0,63.74-69.79l-20.36-224A64,64,0,0,0,235.63,160ZM160,416c-33.12,0-60-26.33-60-58.75,0-25,35.7-75.47,52-97.27A10,10,0,0,1,168,260c16.33,21.8,52,72.27,52,97.27C220,389.67,193.12,416,160,416ZM379.31,94.06,336,50.74A64,64,0,0,0,290.75,32H224A32,32,0,0,0,192,0H128A32,32,0,0,0,96,32v96H224V96h66.75l43.31,43.31a16,16,0,0,0,22.63,0l22.62-22.62A16,16,0,0,0,379.31,94.06Z\"]\n};\nvar faPuzzlePiece = {\n prefix: 'fas',\n iconName: 'puzzle-piece',\n icon: [576, 512, [], \"f12e\", \"M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z\"]\n};\nvar faQrcode = {\n prefix: 'fas',\n iconName: 'qrcode',\n icon: [448, 512, [], \"f029\", \"M0 224h192V32H0v192zM64 96h64v64H64V96zm192-64v192h192V32H256zm128 128h-64V96h64v64zM0 480h192V288H0v192zm64-128h64v64H64v-64zm352-64h32v128h-96v-32h-32v96h-64V288h96v32h64v-32zm0 160h32v32h-32v-32zm-64 0h32v32h-32v-32z\"]\n};\nvar faQuestion = {\n prefix: 'fas',\n iconName: 'question',\n icon: [384, 512, [], \"f128\", \"M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z\"]\n};\nvar faQuestionCircle = {\n prefix: 'fas',\n iconName: 'question-circle',\n icon: [512, 512, [], \"f059\", \"M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z\"]\n};\nvar faQuidditch = {\n prefix: 'fas',\n iconName: 'quidditch',\n icon: [640, 512, [], \"f458\", \"M256.5 216.8L343.2 326s-16.6 102.4-76.6 150.1C206.7 523.8 0 510.2 0 510.2s3.8-23.1 11-55.4l94.6-112.2c4-4.7-.9-11.6-6.6-9.5l-60.4 22.1c14.4-41.7 32.7-80 54.6-97.5 59.9-47.8 163.3-40.9 163.3-40.9zm238 135c-44 0-79.8 35.8-79.8 79.9 0 44.1 35.7 79.9 79.8 79.9 44.1 0 79.8-35.8 79.8-79.9 0-44.2-35.8-79.9-79.8-79.9zM636.5 31L616.7 6c-5.5-6.9-15.5-8-22.4-2.6L361.8 181.3l-34.1-43c-5.1-6.4-15.1-5.2-18.6 2.2l-25.3 54.6 86.7 109.2 58.8-12.4c8-1.7 11.4-11.2 6.3-17.6l-34.1-42.9L634 53.5c6.9-5.5 8-15.6 2.5-22.5z\"]\n};\nvar faQuoteLeft = {\n prefix: 'fas',\n iconName: 'quote-left',\n icon: [512, 512, [], \"f10d\", \"M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuoteRight = {\n prefix: 'fas',\n iconName: 'quote-right',\n icon: [512, 512, [], \"f10e\", \"M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faQuran = {\n prefix: 'fas',\n iconName: 'quran',\n icon: [448, 512, [], \"f687\", \"M448 358.4V25.6c0-16-9.6-25.6-25.6-25.6H96C41.6 0 0 41.6 0 96v320c0 54.4 41.6 96 96 96h326.4c12.8 0 25.6-9.6 25.6-25.6v-16c0-6.4-3.2-12.8-9.6-19.2-3.2-16-3.2-60.8 0-73.6 6.4-3.2 9.6-9.6 9.6-19.2zM301.08 145.82c.6-1.21 1.76-1.82 2.92-1.82s2.32.61 2.92 1.82l11.18 22.65 25 3.63c2.67.39 3.74 3.67 1.81 5.56l-18.09 17.63 4.27 24.89c.36 2.11-1.31 3.82-3.21 3.82-.5 0-1.02-.12-1.52-.38L304 211.87l-22.36 11.75c-.5.26-1.02.38-1.52.38-1.9 0-3.57-1.71-3.21-3.82l4.27-24.89-18.09-17.63c-1.94-1.89-.87-5.17 1.81-5.56l24.99-3.63 11.19-22.65zm-57.89-69.01c13.67 0 27.26 2.49 40.38 7.41a6.775 6.775 0 1 1-2.38 13.12c-.67 0-3.09-.21-4.13-.21-52.31 0-94.86 42.55-94.86 94.86 0 52.3 42.55 94.86 94.86 94.86 1.03 0 3.48-.21 4.13-.21 3.93 0 6.8 3.14 6.8 6.78 0 2.98-1.94 5.51-4.62 6.42-13.07 4.87-26.59 7.34-40.19 7.34C179.67 307.19 128 255.51 128 192c0-63.52 51.67-115.19 115.19-115.19zM380.8 448H96c-19.2 0-32-12.8-32-32s16-32 32-32h284.8v64z\"]\n};\nvar faRadiation = {\n prefix: 'fas',\n iconName: 'radiation',\n icon: [496, 512, [], \"f7b9\", \"M328.2 255.8h151.6c9.1 0 16.8-7.7 16.2-16.8-5.1-75.8-44.4-142.2-102.5-184.2-7.4-5.3-17.9-2.9-22.7 4.8L290.4 188c22.6 14.3 37.8 39.2 37.8 67.8zm-37.8 67.7c-12.3 7.7-26.8 12.4-42.4 12.4-15.6 0-30-4.7-42.4-12.4L125.2 452c-4.8 7.7-2.4 18.1 5.6 22.4C165.7 493.2 205.6 504 248 504s82.3-10.8 117.2-29.6c8-4.3 10.4-14.8 5.6-22.4l-80.4-128.5zM248 303.8c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm-231.8-48h151.6c0-28.6 15.2-53.5 37.8-67.7L125.2 59.7c-4.8-7.7-15.3-10.2-22.7-4.8C44.4 96.9 5.1 163.3 0 239.1c-.6 9 7.1 16.7 16.2 16.7z\"]\n};\nvar faRadiationAlt = {\n prefix: 'fas',\n iconName: 'radiation-alt',\n icon: [496, 512, [], \"f7ba\", \"M312 256h79.1c9.2 0 16.9-7.7 16-16.8-4.6-43.6-27-81.8-59.5-107.8-7.6-6.1-18.8-4.5-24 3.8L281.9 202c18 11.2 30.1 31.2 30.1 54zm-97.8 54.1L172.4 377c-4.9 7.8-2.4 18.4 5.8 22.5 21.1 10.4 44.7 16.5 69.8 16.5s48.7-6.1 69.9-16.5c8.2-4.1 10.6-14.7 5.8-22.5l-41.8-66.9c-9.8 6.2-21.4 9.9-33.8 9.9s-24.1-3.7-33.9-9.9zM104.9 256H184c0-22.8 12.1-42.8 30.2-54.1l-41.7-66.8c-5.2-8.3-16.4-9.9-24-3.8-32.6 26-54.9 64.2-59.5 107.8-1.1 9.2 6.7 16.9 15.9 16.9zM248 504c137 0 248-111 248-248S385 8 248 8 0 119 0 256s111 248 248 248zm0-432c101.5 0 184 82.5 184 184s-82.5 184-184 184S64 357.5 64 256 146.5 72 248 72zm0 216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faRainbow = {\n prefix: 'fas',\n iconName: 'rainbow',\n icon: [576, 512, [], \"f75b\", \"M268.3 32.7C115.4 42.9 0 176.9 0 330.2V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C64 186.8 180.9 80.3 317.5 97.9 430.4 112.4 512 214 512 327.8V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-165.3-140-298.6-307.7-287.3zm-5.6 96.9C166 142 96 229.1 96 326.7V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-74.8 64.5-134.8 140.8-127.4 66.5 6.5 115.2 66.2 115.2 133.1V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-114.2-100.2-205.4-217.3-190.4zm6.2 96.3c-45.6 8.9-76.9 51.5-76.9 97.9V464c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-17.6 14.3-32 32-32s32 14.4 32 32v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320c0-59.2-53.8-106-115.1-94.1z\"]\n};\nvar faRandom = {\n prefix: 'fas',\n iconName: 'random',\n icon: [512, 512, [], \"f074\", \"M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z\"]\n};\nvar faReceipt = {\n prefix: 'fas',\n iconName: 'receipt',\n icon: [384, 512, [], \"f543\", \"M358.4 3.2L320 48 265.6 3.2a15.9 15.9 0 0 0-19.2 0L192 48 137.6 3.2a15.9 15.9 0 0 0-19.2 0L64 48 25.6 3.2C15-4.7 0 2.8 0 16v480c0 13.2 15 20.7 25.6 12.8L64 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L192 464l54.4 44.8a15.9 15.9 0 0 0 19.2 0L320 464l38.4 44.8c10.5 7.9 25.6.4 25.6-12.8V16c0-13.2-15-20.7-25.6-12.8zM320 360c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16zm0-96c0 4.4-3.6 8-8 8H72c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h240c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faRecordVinyl = {\n prefix: 'fas',\n iconName: 'record-vinyl',\n icon: [512, 512, [], \"f8d9\", \"M256 152a104 104 0 1 0 104 104 104 104 0 0 0-104-104zm0 128a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm0-272C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 376a128 128 0 1 1 128-128 128 128 0 0 1-128 128z\"]\n};\nvar faRecycle = {\n prefix: 'fas',\n iconName: 'recycle',\n icon: [512, 512, [], \"f1b8\", \"M184.561 261.903c3.232 13.997-12.123 24.635-24.068 17.168l-40.736-25.455-50.867 81.402C55.606 356.273 70.96 384 96.012 384H148c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12H96.115c-75.334 0-121.302-83.048-81.408-146.88l50.822-81.388-40.725-25.448c-12.081-7.547-8.966-25.961 4.879-29.158l110.237-25.45c8.611-1.988 17.201 3.381 19.189 11.99l25.452 110.237zm98.561-182.915l41.289 66.076-40.74 25.457c-12.051 7.528-9 25.953 4.879 29.158l110.237 25.45c8.672 1.999 17.215-3.438 19.189-11.99l25.45-110.237c3.197-13.844-11.99-24.719-24.068-17.168l-40.687 25.424-41.263-66.082c-37.521-60.033-125.209-60.171-162.816 0l-17.963 28.766c-3.51 5.62-1.8 13.021 3.82 16.533l33.919 21.195c5.62 3.512 13.024 1.803 16.536-3.817l17.961-28.743c12.712-20.341 41.973-19.676 54.257-.022zM497.288 301.12l-27.515-44.065c-3.511-5.623-10.916-7.334-16.538-3.821l-33.861 21.159c-5.62 3.512-7.33 10.915-3.818 16.536l27.564 44.112c13.257 21.211-2.057 48.96-27.136 48.96H320V336.02c0-14.213-17.242-21.383-27.313-11.313l-80 79.981c-6.249 6.248-6.249 16.379 0 22.627l80 79.989C302.689 517.308 320 510.3 320 495.989V448h95.88c75.274 0 121.335-82.997 81.408-146.88z\"]\n};\nvar faRedo = {\n prefix: 'fas',\n iconName: 'redo',\n icon: [512, 512, [], \"f01e\", \"M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z\"]\n};\nvar faRedoAlt = {\n prefix: 'fas',\n iconName: 'redo-alt',\n icon: [512, 512, [], \"f2f9\", \"M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z\"]\n};\nvar faRegistered = {\n prefix: 'fas',\n iconName: 'registered',\n icon: [512, 512, [], \"f25d\", \"M285.363 207.475c0 18.6-9.831 28.431-28.431 28.431h-29.876v-56.14h23.378c28.668 0 34.929 8.773 34.929 27.709zM504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM363.411 360.414c-46.729-84.825-43.299-78.636-44.702-80.98 23.432-15.172 37.945-42.979 37.945-74.486 0-54.244-31.5-89.252-105.498-89.252h-70.667c-13.255 0-24 10.745-24 24V372c0 13.255 10.745 24 24 24h22.567c13.255 0 24-10.745 24-24v-71.663h25.556l44.129 82.937a24.001 24.001 0 0 0 21.188 12.727h24.464c18.261-.001 29.829-19.591 21.018-35.587z\"]\n};\nvar faRemoveFormat = {\n prefix: 'fas',\n iconName: 'remove-format',\n icon: [640, 512, [], \"f87d\", \"M336 416h-11.17l9.26-27.77L267 336.4 240.49 416H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm297.82 42.1L377 259.59 426.17 112H544v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16H176a16 16 0 0 0-16 16v43.9L45.46 3.38A16 16 0 0 0 23 6.19L3.37 31.46a16 16 0 0 0 2.81 22.45l588.36 454.72a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zM309.91 207.76L224 141.36V112h117.83z\"]\n};\nvar faReply = {\n prefix: 'fas',\n iconName: 'reply',\n icon: [512, 512, [], \"f3e5\", \"M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z\"]\n};\nvar faReplyAll = {\n prefix: 'fas',\n iconName: 'reply-all',\n icon: [576, 512, [], \"f122\", \"M136.309 189.836L312.313 37.851C327.72 24.546 352 35.348 352 56.015v82.763c129.182 10.231 224 52.212 224 183.548 0 61.441-39.582 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 38.512-123.162-3.922-169.482-112.59-182.015v84.175c0 20.701-24.3 31.453-39.687 18.164L136.309 226.164c-11.071-9.561-11.086-26.753 0-36.328zm-128 36.328L184.313 378.15C199.7 391.439 224 380.687 224 359.986v-15.818l-108.606-93.785A55.96 55.96 0 0 1 96 207.998a55.953 55.953 0 0 1 19.393-42.38L224 71.832V56.015c0-20.667-24.28-31.469-39.687-18.164L8.309 189.836c-11.086 9.575-11.071 26.767 0 36.328z\"]\n};\nvar faRepublican = {\n prefix: 'fas',\n iconName: 'republican',\n icon: [640, 512, [], \"f75e\", \"M544 192c0-88.4-71.6-160-160-160H160C71.6 32 0 103.6 0 192v64h544v-64zm-367.7-21.6l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L128 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L272 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zm144 0l-19.8 19.3 4.7 27.3c.8 4.9-4.3 8.6-8.7 6.3L416 210.4l-24.5 12.9c-4.3 2.3-9.5-1.4-8.7-6.3l4.7-27.3-19.8-19.3c-3.6-3.5-1.6-9.5 3.3-10.2l27.4-4 12.2-24.8c2.2-4.5 8.6-4.4 10.7 0l12.2 24.8 27.4 4c5 .7 6.9 6.7 3.4 10.2zM624 320h-32c-8.8 0-16 7.2-16 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V288H0v176c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-80h192v80c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V352h32v43.3c0 41.8 30 80.1 71.6 84.3 47.8 4.9 88.4-32.7 88.4-79.6v-64c0-8.8-7.2-16-16-16z\"]\n};\nvar faRestroom = {\n prefix: 'fas',\n iconName: 'restroom',\n icon: [640, 512, [], \"f7bd\", \"M128 128c35.3 0 64-28.7 64-64S163.3 0 128 0 64 28.7 64 64s28.7 64 64 64zm384 0c35.3 0 64-28.7 64-64S547.3 0 512 0s-64 28.7-64 64 28.7 64 64 64zm127.3 226.5l-45.6-185.8c-3.3-13.5-15.5-23-29.8-24.2-15 9.7-32.8 15.5-52 15.5-19.2 0-37-5.8-52-15.5-14.3 1.2-26.5 10.7-29.8 24.2l-45.6 185.8C381 369.6 393 384 409.2 384H464v104c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V384h54.8c16.2 0 28.2-14.4 24.5-29.5zM336 0h-32c-8.8 0-16 7.2-16 16v480c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zM180.1 144.4c-15 9.8-32.9 15.6-52.1 15.6-19.2 0-37.1-5.8-52.1-15.6C51.3 146.5 32 166.9 32 192v136c0 13.3 10.7 24 24 24h8v136c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V352h8c13.3 0 24-10.7 24-24V192c0-25.1-19.3-45.5-43.9-47.6z\"]\n};\nvar faRetweet = {\n prefix: 'fas',\n iconName: 'retweet',\n icon: [640, 512, [], \"f079\", \"M629.657 343.598L528.971 444.284c-9.373 9.372-24.568 9.372-33.941 0L394.343 343.598c-9.373-9.373-9.373-24.569 0-33.941l10.823-10.823c9.562-9.562 25.133-9.34 34.419.492L480 342.118V160H292.451a24.005 24.005 0 0 1-16.971-7.029l-16-16C244.361 121.851 255.069 96 276.451 96H520c13.255 0 24 10.745 24 24v222.118l40.416-42.792c9.285-9.831 24.856-10.054 34.419-.492l10.823 10.823c9.372 9.372 9.372 24.569-.001 33.941zm-265.138 15.431A23.999 23.999 0 0 0 347.548 352H160V169.881l40.416 42.792c9.286 9.831 24.856 10.054 34.419.491l10.822-10.822c9.373-9.373 9.373-24.569 0-33.941L144.971 67.716c-9.373-9.373-24.569-9.373-33.941 0L10.343 168.402c-9.373 9.373-9.373 24.569 0 33.941l10.822 10.822c9.562 9.562 25.133 9.34 34.419-.491L96 169.881V392c0 13.255 10.745 24 24 24h243.549c21.382 0 32.09-25.851 16.971-40.971l-16.001-16z\"]\n};\nvar faRibbon = {\n prefix: 'fas',\n iconName: 'ribbon',\n icon: [448, 512, [], \"f4d6\", \"M6.1 444.3c-9.6 10.8-7.5 27.6 4.5 35.7l68.8 27.9c9.9 6.7 23.3 5 31.3-3.8l91.8-101.9-79.2-87.9-117.2 130zm435.8 0s-292-324.6-295.4-330.1c15.4-8.4 40.2-17.9 77.5-17.9s62.1 9.5 77.5 17.9c-3.3 5.6-56 64.6-56 64.6l79.1 87.7 34.2-38c28.7-31.9 33.3-78.6 11.4-115.5l-43.7-73.5c-4.3-7.2-9.9-13.3-16.8-18-40.7-27.6-127.4-29.7-171.4 0-6.9 4.7-12.5 10.8-16.8 18l-43.6 73.2c-1.5 2.5-37.1 62.2 11.5 116L337.5 504c8 8.9 21.4 10.5 31.3 3.8l68.8-27.9c11.9-8 14-24.8 4.3-35.6z\"]\n};\nvar faRing = {\n prefix: 'fas',\n iconName: 'ring',\n icon: [512, 512, [], \"f70b\", \"M256 64C110.06 64 0 125.91 0 208v98.13C0 384.48 114.62 448 256 448s256-63.52 256-141.87V208c0-82.09-110.06-144-256-144zm0 64c106.04 0 192 35.82 192 80 0 9.26-3.97 18.12-10.91 26.39C392.15 208.21 328.23 192 256 192s-136.15 16.21-181.09 42.39C67.97 226.12 64 217.26 64 208c0-44.18 85.96-80 192-80zM120.43 264.64C155.04 249.93 201.64 240 256 240s100.96 9.93 135.57 24.64C356.84 279.07 308.93 288 256 288s-100.84-8.93-135.57-23.36z\"]\n};\nvar faRoad = {\n prefix: 'fas',\n iconName: 'road',\n icon: [576, 512, [], \"f018\", \"M573.19 402.67l-139.79-320C428.43 71.29 417.6 64 405.68 64h-97.59l2.45 23.16c.5 4.72-3.21 8.84-7.96 8.84h-29.16c-4.75 0-8.46-4.12-7.96-8.84L267.91 64h-97.59c-11.93 0-22.76 7.29-27.73 18.67L2.8 402.67C-6.45 423.86 8.31 448 30.54 448h196.84l10.31-97.68c.86-8.14 7.72-14.32 15.91-14.32h68.8c8.19 0 15.05 6.18 15.91 14.32L348.62 448h196.84c22.23 0 36.99-24.14 27.73-45.33zM260.4 135.16a8 8 0 0 1 7.96-7.16h39.29c4.09 0 7.53 3.09 7.96 7.16l4.6 43.58c.75 7.09-4.81 13.26-11.93 13.26h-40.54c-7.13 0-12.68-6.17-11.93-13.26l4.59-43.58zM315.64 304h-55.29c-9.5 0-16.91-8.23-15.91-17.68l5.07-48c.86-8.14 7.72-14.32 15.91-14.32h45.15c8.19 0 15.05 6.18 15.91 14.32l5.07 48c1 9.45-6.41 17.68-15.91 17.68z\"]\n};\nvar faRobot = {\n prefix: 'fas',\n iconName: 'robot',\n icon: [640, 512, [], \"f544\", \"M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z\"]\n};\nvar faRocket = {\n prefix: 'fas',\n iconName: 'rocket',\n icon: [512, 512, [], \"f135\", \"M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z\"]\n};\nvar faRoute = {\n prefix: 'fas',\n iconName: 'route',\n icon: [512, 512, [], \"f4d7\", \"M416 320h-96c-17.6 0-32-14.4-32-32s14.4-32 32-32h96s96-107 96-160-43-96-96-96-96 43-96 96c0 25.5 22.2 63.4 45.3 96H320c-52.9 0-96 43.1-96 96s43.1 96 96 96h96c17.6 0 32 14.4 32 32s-14.4 32-32 32H185.5c-16 24.8-33.8 47.7-47.3 64H416c52.9 0 96-43.1 96-96s-43.1-96-96-96zm0-256c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM96 256c-53 0-96 43-96 96s96 160 96 160 96-107 96-160-43-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faRss = {\n prefix: 'fas',\n iconName: 'rss',\n icon: [448, 512, [], \"f09e\", \"M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z\"]\n};\nvar faRssSquare = {\n prefix: 'fas',\n iconName: 'rss-square',\n icon: [448, 512, [], \"f143\", \"M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM112 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm157.533 0h-34.335c-6.011 0-11.051-4.636-11.442-10.634-5.214-80.05-69.243-143.92-149.123-149.123-5.997-.39-10.633-5.431-10.633-11.441v-34.335c0-6.535 5.468-11.777 11.994-11.425 110.546 5.974 198.997 94.536 204.964 204.964.352 6.526-4.89 11.994-11.425 11.994zm103.027 0h-34.334c-6.161 0-11.175-4.882-11.427-11.038-5.598-136.535-115.204-246.161-251.76-251.76C68.882 152.949 64 147.935 64 141.774V107.44c0-6.454 5.338-11.664 11.787-11.432 167.83 6.025 302.21 141.191 308.205 308.205.232 6.449-4.978 11.787-11.432 11.787z\"]\n};\nvar faRubleSign = {\n prefix: 'fas',\n iconName: 'ruble-sign',\n icon: [384, 512, [], \"f158\", \"M239.36 320C324.48 320 384 260.542 384 175.071S324.48 32 239.36 32H76c-6.627 0-12 5.373-12 12v206.632H12c-6.627 0-12 5.373-12 12V308c0 6.627 5.373 12 12 12h52v32H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v52c0 6.627 5.373 12 12 12h58.56c6.627 0 12-5.373 12-12v-52H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12H146.56v-32h92.8zm-92.8-219.252h78.72c46.72 0 74.88 29.11 74.88 74.323 0 45.832-28.16 75.561-76.16 75.561h-77.44V100.748z\"]\n};\nvar faRuler = {\n prefix: 'fas',\n iconName: 'ruler',\n icon: [640, 512, [], \"f545\", \"M635.7 167.2L556.1 31.7c-8.8-15-28.3-20.1-43.5-11.5l-69 39.1L503.3 161c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L416 75l-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L333.2 122 278 153.3 337.8 255c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-59.7-101.7-55.2 31.3 27.9 47.4c2.2 3.8.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9l-27.9-47.5-55.2 31.3 59.7 101.7c2.2 3.7.9 8.5-2.9 10.7l-13.8 7.8c-3.8 2.2-8.7.9-10.9-2.9L84.9 262.9l-69 39.1C.7 310.7-4.6 329.8 4.2 344.8l79.6 135.6c8.8 15 28.3 20.1 43.5 11.5L624.1 210c15.2-8.6 20.4-27.8 11.6-42.8z\"]\n};\nvar faRulerCombined = {\n prefix: 'fas',\n iconName: 'ruler-combined',\n icon: [512, 512, [], \"f546\", \"M160 288h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56v-64h-56c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h56V96h-56c-4.42 0-8-3.58-8-8V72c0-4.42 3.58-8 8-8h56V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 2.77.91 5.24 1.57 7.8L160 329.38V288zm320 64h-32v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-64v56c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-56h-41.37L24.2 510.43c2.56.66 5.04 1.57 7.8 1.57h448c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerHorizontal = {\n prefix: 'fas',\n iconName: 'ruler-horizontal',\n icon: [576, 512, [], \"f547\", \"M544 128h-48v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8h-16c-4.42 0-8-3.58-8-8v-88h-64v88c0 4.42-3.58 8-8 8H88c-4.42 0-8-3.58-8-8v-88H32c-17.67 0-32 14.33-32 32v192c0 17.67 14.33 32 32 32h512c17.67 0 32-14.33 32-32V160c0-17.67-14.33-32-32-32z\"]\n};\nvar faRulerVertical = {\n prefix: 'fas',\n iconName: 'ruler-vertical',\n icon: [256, 512, [], \"f548\", \"M168 416c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88v-64h-88c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h88V32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v448c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64h-88z\"]\n};\nvar faRunning = {\n prefix: 'fas',\n iconName: 'running',\n icon: [416, 512, [], \"f70c\", \"M272 96c26.51 0 48-21.49 48-48S298.51 0 272 0s-48 21.49-48 48 21.49 48 48 48zM113.69 317.47l-14.8 34.52H32c-17.67 0-32 14.33-32 32s14.33 32 32 32h77.45c19.25 0 36.58-11.44 44.11-29.09l8.79-20.52-10.67-6.3c-17.32-10.23-30.06-25.37-37.99-42.61zM384 223.99h-44.03l-26.06-53.25c-12.5-25.55-35.45-44.23-61.78-50.94l-71.08-21.14c-28.3-6.8-57.77-.55-80.84 17.14l-39.67 30.41c-14.03 10.75-16.69 30.83-5.92 44.86s30.84 16.66 44.86 5.92l39.69-30.41c7.67-5.89 17.44-8 25.27-6.14l14.7 4.37-37.46 87.39c-12.62 29.48-1.31 64.01 26.3 80.31l84.98 50.17-27.47 87.73c-5.28 16.86 4.11 34.81 20.97 40.09 3.19 1 6.41 1.48 9.58 1.48 13.61 0 26.23-8.77 30.52-22.45l31.64-101.06c5.91-20.77-2.89-43.08-21.64-54.39l-61.24-36.14 31.31-78.28 20.27 41.43c8 16.34 24.92 26.89 43.11 26.89H384c17.67 0 32-14.33 32-32s-14.33-31.99-32-31.99z\"]\n};\nvar faRupeeSign = {\n prefix: 'fas',\n iconName: 'rupee-sign',\n icon: [320, 512, [], \"f156\", \"M308 96c6.627 0 12-5.373 12-12V44c0-6.627-5.373-12-12-12H12C5.373 32 0 37.373 0 44v44.748c0 6.627 5.373 12 12 12h85.28c27.308 0 48.261 9.958 60.97 27.252H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h158.757c-6.217 36.086-32.961 58.632-74.757 58.632H12c-6.627 0-12 5.373-12 12v53.012c0 3.349 1.4 6.546 3.861 8.818l165.052 152.356a12.001 12.001 0 0 0 8.139 3.182h82.562c10.924 0 16.166-13.408 8.139-20.818L116.871 319.906c76.499-2.34 131.144-53.395 138.318-127.906H308c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-58.69c-3.486-11.541-8.28-22.246-14.252-32H308z\"]\n};\nvar faSadCry = {\n prefix: 'fas',\n iconName: 'sad-cry',\n icon: [496, 512, [], \"f5b3\", \"M248 8C111 8 0 119 0 256c0 90.1 48.2 168.7 120 212.1V288c0-8.8 7.2-16 16-16s16 7.2 16 16v196.7c29.5 12.4 62 19.3 96 19.3s66.5-6.9 96-19.3V288c0-8.8 7.2-16 16-16s16 7.2 16 16v180.1C447.8 424.7 496 346 496 256 496 119 385 8 248 8zm-65.5 216.5c-14.8-13.2-46.2-13.2-61 0L112 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S208 197 212 222.2c.8 5-1.7 10-6.1 12.4-5.8 3.1-11.2.7-13.7-1.6l-9.7-8.5zM248 416c-26.5 0-48-28.7-48-64s21.5-64 48-64 48 28.7 48 64-21.5 64-48 64zm149.8-181.5c-5.8 3.1-11.2.7-13.7-1.6l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L304 233c-3.8 3.3-9.3 4-13.7 1.6-4.4-2.4-6.9-7.4-6.1-12.4 4-25.2 34.2-42.1 59.9-42.1S400 197 404 222.2c.6 4.9-1.8 9.9-6.2 12.3z\"]\n};\nvar faSadTear = {\n prefix: 'fas',\n iconName: 'sad-tear',\n icon: [496, 512, [], \"f5b4\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zM152 416c-26.5 0-48-21-48-47 0-20 28.5-60.4 41.6-77.8 3.2-4.3 9.6-4.3 12.8 0C171.5 308.6 200 349 200 369c0 26-21.5 47-48 47zm16-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm170.2 154.2C315.8 367.4 282.9 352 248 352c-21.2 0-21.2-32 0-32 44.4 0 86.3 19.6 114.7 53.8 13.8 16.4-11.2 36.5-24.5 20.4z\"]\n};\nvar faSatellite = {\n prefix: 'fas',\n iconName: 'satellite',\n icon: [512, 512, [], \"f7bf\", \"M502.60969,310.04206l-96.70393,96.71625a31.88151,31.88151,0,0,1-45.00765,0L280.572,326.34115l-9.89231,9.90759a190.56343,190.56343,0,0,1-5.40716,168.52287c-4.50077,8.50115-16.39342,9.59505-23.20707,2.79725L134.54715,400.05428l-17.7999,17.79929c.70324,2.60972,1.60965,5.00067,1.60965,7.79793a32.00544,32.00544,0,1,1-32.00544-32.00434c2.79735,0,5.18838.90637,7.7982,1.60959l17.7999-17.79929L4.43129,269.94287c-6.798-6.81342-5.70409-18.6119,2.79735-23.20627a190.58161,190.58161,0,0,1,168.52864-5.407l9.79854-9.79821-80.31053-80.41716a32.002,32.002,0,0,1,0-45.09987L201.96474,9.29814A31.62639,31.62639,0,0,1,224.46868,0a31.99951,31.99951,0,0,1,22.59759,9.29814l80.32615,80.30777,47.805-47.89713a33.6075,33.6075,0,0,1,47.50808,0l47.50807,47.50645a33.63308,33.63308,0,0,1,0,47.50644l-47.805,47.89713L502.71908,265.036A31.78938,31.78938,0,0,1,502.60969,310.04206ZM219.56159,197.433l73.82505-73.82252-68.918-68.9-73.80942,73.80689Zm237.74352,90.106-68.90233-68.9156-73.825,73.82252,68.918,68.9Z\"]\n};\nvar faSatelliteDish = {\n prefix: 'fas',\n iconName: 'satellite-dish',\n icon: [512, 512, [], \"f7c0\", \"M305.44954,462.59c7.39157,7.29792,6.18829,20.09661-3.00038,25.00356-77.713,41.80281-176.72559,29.9105-242.34331-35.7082C-5.49624,386.28227-17.404,287.362,24.41381,209.554c4.89125-9.095,17.68975-10.29834,25.00318-3.00043L166.22872,323.36708l27.39411-27.39452c-.68759-2.60974-1.594-5.00071-1.594-7.81361a32.00407,32.00407,0,1,1,32.00407,32.00455c-2.79723,0-5.20378-.89075-7.79786-1.594l-27.40974,27.41015ZM511.9758,303.06732a16.10336,16.10336,0,0,1-16.002,17.00242H463.86031a15.96956,15.96956,0,0,1-15.89265-15.00213C440.46671,175.5492,336.45348,70.53427,207.03078,63.53328a15.84486,15.84486,0,0,1-15.00191-15.90852V16.02652A16.09389,16.09389,0,0,1,209.031.02425C372.25491,8.61922,503.47472,139.841,511.9758,303.06732Zm-96.01221-.29692a16.21093,16.21093,0,0,1-16.11142,17.29934H367.645a16.06862,16.06862,0,0,1-15.89265-14.70522c-6.90712-77.01094-68.118-138.91037-144.92467-145.22376a15.94,15.94,0,0,1-14.79876-15.89289V112.13393a16.134,16.134,0,0,1,17.29908-16.096C319.45132,104.5391,407.55627,192.64538,415.96359,302.7704Z\"]\n};\nvar faSave = {\n prefix: 'fas',\n iconName: 'save',\n icon: [448, 512, [], \"f0c7\", \"M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z\"]\n};\nvar faSchool = {\n prefix: 'fas',\n iconName: 'school',\n icon: [640, 512, [], \"f549\", \"M0 224v272c0 8.84 7.16 16 16 16h80V192H32c-17.67 0-32 14.33-32 32zm360-48h-24v-40c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v64c0 4.42 3.58 8 8 8h48c4.42 0 8-3.58 8-8v-16c0-4.42-3.58-8-8-8zm137.75-63.96l-160-106.67a32.02 32.02 0 0 0-35.5 0l-160 106.67A32.002 32.002 0 0 0 128 138.66V512h128V368c0-8.84 7.16-16 16-16h96c8.84 0 16 7.16 16 16v144h128V138.67c0-10.7-5.35-20.7-14.25-26.63zM320 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm288-64h-64v320h80c8.84 0 16-7.16 16-16V224c0-17.67-14.33-32-32-32z\"]\n};\nvar faScrewdriver = {\n prefix: 'fas',\n iconName: 'screwdriver',\n icon: [512, 512, [], \"f54a\", \"M448 0L320 96v62.06l-83.03 83.03c6.79 4.25 13.27 9.06 19.07 14.87 5.8 5.8 10.62 12.28 14.87 19.07L353.94 192H416l96-128-64-64zM128 278.59L10.92 395.67c-14.55 14.55-14.55 38.15 0 52.71l52.7 52.7c14.56 14.56 38.15 14.56 52.71 0L233.41 384c29.11-29.11 29.11-76.3 0-105.41s-76.3-29.11-105.41 0z\"]\n};\nvar faScroll = {\n prefix: 'fas',\n iconName: 'scroll',\n icon: [640, 512, [], \"f70e\", \"M48 0C21.53 0 0 21.53 0 48v64c0 8.84 7.16 16 16 16h80V48C96 21.53 74.47 0 48 0zm208 412.57V352h288V96c0-52.94-43.06-96-96-96H111.59C121.74 13.41 128 29.92 128 48v368c0 38.87 34.65 69.65 74.75 63.12C234.22 474 256 444.46 256 412.57zM288 384v32c0 52.93-43.06 96-96 96h336c61.86 0 112-50.14 112-112 0-8.84-7.16-16-16-16H288z\"]\n};\nvar faSdCard = {\n prefix: 'fas',\n iconName: 'sd-card',\n icon: [384, 512, [], \"f7c2\", \"M320 0H128L0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 160h-48V64h48v96zm80 0h-48V64h48v96zm80 0h-48V64h48v96z\"]\n};\nvar faSearch = {\n prefix: 'fas',\n iconName: 'search',\n icon: [512, 512, [], \"f002\", \"M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z\"]\n};\nvar faSearchDollar = {\n prefix: 'fas',\n iconName: 'search-dollar',\n icon: [512, 512, [], \"f688\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm27.11-152.54l-45.01-13.5c-5.16-1.55-8.77-6.78-8.77-12.73 0-7.27 5.3-13.19 11.8-13.19h28.11c4.56 0 8.96 1.29 12.82 3.72 3.24 2.03 7.36 1.91 10.13-.73l11.75-11.21c3.53-3.37 3.33-9.21-.57-12.14-9.1-6.83-20.08-10.77-31.37-11.35V112c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v16.12c-23.63.63-42.68 20.55-42.68 45.07 0 19.97 12.99 37.81 31.58 43.39l45.01 13.5c5.16 1.55 8.77 6.78 8.77 12.73 0 7.27-5.3 13.19-11.8 13.19h-28.1c-4.56 0-8.96-1.29-12.82-3.72-3.24-2.03-7.36-1.91-10.13.73l-11.75 11.21c-3.53 3.37-3.33 9.21.57 12.14 9.1 6.83 20.08 10.77 31.37 11.35V304c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-16.12c23.63-.63 42.68-20.54 42.68-45.07 0-19.97-12.99-37.81-31.59-43.39z\"]\n};\nvar faSearchLocation = {\n prefix: 'fas',\n iconName: 'search-location',\n icon: [512, 512, [], \"f689\", \"M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm.02-239.96c-40.78 0-73.84 33.05-73.84 73.83 0 32.96 48.26 93.05 66.75 114.86a9.24 9.24 0 0 0 14.18 0c18.49-21.81 66.75-81.89 66.75-114.86 0-40.78-33.06-73.83-73.84-73.83zm0 96c-13.26 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faSearchMinus = {\n prefix: 'fas',\n iconName: 'search-minus',\n icon: [512, 512, [], \"f010\", \"M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSearchPlus = {\n prefix: 'fas',\n iconName: 'search-plus',\n icon: [512, 512, [], \"f00e\", \"M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z\"]\n};\nvar faSeedling = {\n prefix: 'fas',\n iconName: 'seedling',\n icon: [512, 512, [], \"f4d8\", \"M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z\"]\n};\nvar faServer = {\n prefix: 'fas',\n iconName: 'server',\n icon: [512, 512, [], \"f233\", \"M480 160H32c-17.673 0-32-14.327-32-32V64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm112 248H32c-17.673 0-32-14.327-32-32v-64c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32v64c0 17.673-14.327 32-32 32zm-48-88c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm-64 0c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24z\"]\n};\nvar faShapes = {\n prefix: 'fas',\n iconName: 'shapes',\n icon: [512, 512, [], \"f61f\", \"M128,256A128,128,0,1,0,256,384,128,128,0,0,0,128,256Zm379-54.86L400.07,18.29a37.26,37.26,0,0,0-64.14,0L229,201.14C214.76,225.52,232.58,256,261.09,256H474.91C503.42,256,521.24,225.52,507,201.14ZM480,288H320a32,32,0,0,0-32,32V480a32,32,0,0,0,32,32H480a32,32,0,0,0,32-32V320A32,32,0,0,0,480,288Z\"]\n};\nvar faShare = {\n prefix: 'fas',\n iconName: 'share',\n icon: [512, 512, [], \"f064\", \"M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z\"]\n};\nvar faShareAlt = {\n prefix: 'fas',\n iconName: 'share-alt',\n icon: [448, 512, [], \"f1e0\", \"M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z\"]\n};\nvar faShareAltSquare = {\n prefix: 'fas',\n iconName: 'share-alt-square',\n icon: [448, 512, [], \"f1e1\", \"M448 80v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48zM304 296c-14.562 0-27.823 5.561-37.783 14.671l-67.958-40.775a56.339 56.339 0 0 0 0-27.793l67.958-40.775C276.177 210.439 289.438 216 304 216c30.928 0 56-25.072 56-56s-25.072-56-56-56-56 25.072-56 56c0 4.797.605 9.453 1.74 13.897l-67.958 40.775C171.823 205.561 158.562 200 144 200c-30.928 0-56 25.072-56 56s25.072 56 56 56c14.562 0 27.823-5.561 37.783-14.671l67.958 40.775a56.088 56.088 0 0 0-1.74 13.897c0 30.928 25.072 56 56 56s56-25.072 56-56C360 321.072 334.928 296 304 296z\"]\n};\nvar faShareSquare = {\n prefix: 'fas',\n iconName: 'share-square',\n icon: [576, 512, [], \"f14d\", \"M568.482 177.448L424.479 313.433C409.3 327.768 384 317.14 384 295.985v-71.963c-144.575.97-205.566 35.113-164.775 171.353 4.483 14.973-12.846 26.567-25.006 17.33C155.252 383.105 120 326.488 120 269.339c0-143.937 117.599-172.5 264-173.312V24.012c0-21.174 25.317-31.768 40.479-17.448l144.003 135.988c10.02 9.463 10.028 25.425 0 34.896zM384 379.128V448H64V128h50.916a11.99 11.99 0 0 0 8.648-3.693c14.953-15.568 32.237-27.89 51.014-37.676C185.708 80.83 181.584 64 169.033 64H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-88.806c0-8.288-8.197-14.066-16.011-11.302a71.83 71.83 0 0 1-34.189 3.377c-7.27-1.046-13.8 4.514-13.8 11.859z\"]\n};\nvar faShekelSign = {\n prefix: 'fas',\n iconName: 'shekel-sign',\n icon: [448, 512, [], \"f20b\", \"M248 168v168c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V168c0-75.11-60.89-136-136-136H24C10.75 32 0 42.74 0 56v408c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112h112c30.93 0 56 25.07 56 56zM432 32h-48c-8.84 0-16 7.16-16 16v296c0 30.93-25.07 56-56 56H200V176c0-8.84-7.16-16-16-16h-48c-8.84 0-16 7.16-16 16v280c0 13.25 10.75 24 24 24h168c75.11 0 136-60.89 136-136V48c0-8.84-7.16-16-16-16z\"]\n};\nvar faShieldAlt = {\n prefix: 'fas',\n iconName: 'shield-alt',\n icon: [512, 512, [], \"f3ed\", \"M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3zM256.1 446.3l-.1-381 175.9 73.3c-3.3 151.4-82.1 261.1-175.8 307.7z\"]\n};\nvar faShieldVirus = {\n prefix: 'fas',\n iconName: 'shield-virus',\n icon: [512, 512, [], \"e06c\", \"M224,192a16,16,0,1,0,16,16A16,16,0,0,0,224,192ZM466.5,83.68l-192-80A57.4,57.4,0,0,0,256.05,0a57.4,57.4,0,0,0-18.46,3.67l-192,80A47.93,47.93,0,0,0,16,128C16,326.5,130.5,463.72,237.5,508.32a48.09,48.09,0,0,0,36.91,0C360.09,472.61,496,349.3,496,128A48,48,0,0,0,466.5,83.68ZM384,256H371.88c-28.51,0-42.79,34.47-22.63,54.63l8.58,8.57a16,16,0,1,1-22.63,22.63l-8.57-8.58C306.47,313.09,272,327.37,272,355.88V368a16,16,0,0,1-32,0V355.88c0-28.51-34.47-42.79-54.63-22.63l-8.57,8.58a16,16,0,0,1-22.63-22.63l8.58-8.57c20.16-20.16,5.88-54.63-22.63-54.63H128a16,16,0,0,1,0-32h12.12c28.51,0,42.79-34.47,22.63-54.63l-8.58-8.57a16,16,0,0,1,22.63-22.63l8.57,8.58c20.16,20.16,54.63,5.88,54.63-22.63V112a16,16,0,0,1,32,0v12.12c0,28.51,34.47,42.79,54.63,22.63l8.57-8.58a16,16,0,0,1,22.63,22.63l-8.58,8.57C329.09,189.53,343.37,224,371.88,224H384a16,16,0,0,1,0,32Zm-96,0a16,16,0,1,0,16,16A16,16,0,0,0,288,256Z\"]\n};\nvar faShip = {\n prefix: 'fas',\n iconName: 'ship',\n icon: [640, 512, [], \"f21a\", \"M496.616 372.639l70.012-70.012c16.899-16.9 9.942-45.771-12.836-53.092L512 236.102V96c0-17.673-14.327-32-32-32h-64V24c0-13.255-10.745-24-24-24H248c-13.255 0-24 10.745-24 24v40h-64c-17.673 0-32 14.327-32 32v140.102l-41.792 13.433c-22.753 7.313-29.754 36.173-12.836 53.092l70.012 70.012C125.828 416.287 85.587 448 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24 61.023 0 107.499-20.61 143.258-59.396C181.677 487.432 216.021 512 256 512h128c39.979 0 74.323-24.568 88.742-59.396C508.495 491.384 554.968 512 616 512c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24-60.817 0-101.542-31.001-119.384-75.361zM192 128h256v87.531l-118.208-37.995a31.995 31.995 0 0 0-19.584 0L192 215.531V128z\"]\n};\nvar faShippingFast = {\n prefix: 'fas',\n iconName: 'shipping-fast',\n icon: [640, 512, [], \"f48b\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H112C85.5 0 64 21.5 64 48v48H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h272c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H40c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h208c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faShoePrints = {\n prefix: 'fas',\n iconName: 'shoe-prints',\n icon: [640, 512, [], \"f54b\", \"M192 160h32V32h-32c-35.35 0-64 28.65-64 64s28.65 64 64 64zM0 416c0 35.35 28.65 64 64 64h32V352H64c-35.35 0-64 28.65-64 64zm337.46-128c-34.91 0-76.16 13.12-104.73 32-24.79 16.38-44.52 32-104.73 32v128l57.53 15.97c26.21 7.28 53.01 13.12 80.31 15.05 32.69 2.31 65.6.67 97.58-6.2C472.9 481.3 512 429.22 512 384c0-64-84.18-96-174.54-96zM491.42 7.19C459.44.32 426.53-1.33 393.84.99c-27.3 1.93-54.1 7.77-80.31 15.04L256 32v128c60.2 0 79.94 15.62 104.73 32 28.57 18.88 69.82 32 104.73 32C555.82 224 640 192 640 128c0-45.22-39.1-97.3-148.58-120.81z\"]\n};\nvar faShoppingBag = {\n prefix: 'fas',\n iconName: 'shopping-bag',\n icon: [448, 512, [], \"f290\", \"M352 160v-32C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128v32H0v272c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V160h-96zm-192-32c0-35.29 28.71-64 64-64s64 28.71 64 64v32H160v-32zm160 120c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm-192 0c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24z\"]\n};\nvar faShoppingBasket = {\n prefix: 'fas',\n iconName: 'shopping-basket',\n icon: [576, 512, [], \"f291\", \"M576 216v16c0 13.255-10.745 24-24 24h-8l-26.113 182.788C514.509 462.435 494.257 480 470.37 480H105.63c-23.887 0-44.139-17.565-47.518-41.212L32 256h-8c-13.255 0-24-10.745-24-24v-16c0-13.255 10.745-24 24-24h67.341l106.78-146.821c10.395-14.292 30.407-17.453 44.701-7.058 14.293 10.395 17.453 30.408 7.058 44.701L170.477 192h235.046L326.12 82.821c-10.395-14.292-7.234-34.306 7.059-44.701 14.291-10.395 34.306-7.235 44.701 7.058L484.659 192H552c13.255 0 24 10.745 24 24zM312 392V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm112 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24zm-224 0V280c0-13.255-10.745-24-24-24s-24 10.745-24 24v112c0 13.255 10.745 24 24 24s24-10.745 24-24z\"]\n};\nvar faShoppingCart = {\n prefix: 'fas',\n iconName: 'shopping-cart',\n icon: [576, 512, [], \"f07a\", \"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"]\n};\nvar faShower = {\n prefix: 'fas',\n iconName: 'shower',\n icon: [512, 512, [], \"f2cc\", \"M304,320a16,16,0,1,0,16,16A16,16,0,0,0,304,320Zm32-96a16,16,0,1,0,16,16A16,16,0,0,0,336,224Zm32,64a16,16,0,1,0-16-16A16,16,0,0,0,368,288Zm-32,32a16,16,0,1,0-16-16A16,16,0,0,0,336,320Zm-32-64a16,16,0,1,0,16,16A16,16,0,0,0,304,256Zm128-32a16,16,0,1,0-16-16A16,16,0,0,0,432,224Zm-48,16a16,16,0,1,0,16-16A16,16,0,0,0,384,240Zm-16-48a16,16,0,1,0,16,16A16,16,0,0,0,368,192Zm96,32a16,16,0,1,0,16,16A16,16,0,0,0,464,224Zm32-32a16,16,0,1,0,16,16A16,16,0,0,0,496,192Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,432,256Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,400,288Zm-64,64a16,16,0,1,0,16,16A16,16,0,0,0,336,352Zm-32,32a16,16,0,1,0,16,16A16,16,0,0,0,304,384Zm64-64a16,16,0,1,0,16,16A16,16,0,0,0,368,320Zm21.65-218.35-11.3-11.31a16,16,0,0,0-22.63,0L350.05,96A111.19,111.19,0,0,0,272,64c-19.24,0-37.08,5.3-52.9,13.85l-10-10A121.72,121.72,0,0,0,123.44,32C55.49,31.5,0,92.91,0,160.85V464a16,16,0,0,0,16,16H48a16,16,0,0,0,16-16V158.4c0-30.15,21-58.2,51-61.93a58.38,58.38,0,0,1,48.93,16.67l10,10C165.3,138.92,160,156.76,160,176a111.23,111.23,0,0,0,32,78.05l-5.66,5.67a16,16,0,0,0,0,22.62l11.3,11.31a16,16,0,0,0,22.63,0L389.65,124.28A16,16,0,0,0,389.65,101.65Z\"]\n};\nvar faShuttleVan = {\n prefix: 'fas',\n iconName: 'shuttle-van',\n icon: [640, 512, [], \"f5b6\", \"M628.88 210.65L494.39 49.27A48.01 48.01 0 0 0 457.52 32H32C14.33 32 0 46.33 0 64v288c0 17.67 14.33 32 32 32h32c0 53.02 42.98 96 96 96s96-42.98 96-96h128c0 53.02 42.98 96 96 96s96-42.98 96-96h32c17.67 0 32-14.33 32-32V241.38c0-11.23-3.94-22.1-11.12-30.73zM64 192V96h96v96H64zm96 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm160-240h-96V96h96v96zm160 240c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-96-240V96h66.02l80 96H384z\"]\n};\nvar faSign = {\n prefix: 'fas',\n iconName: 'sign',\n icon: [512, 512, [], \"f4d9\", \"M496 64H128V16c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v48H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h48v368c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V128h368c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM160 384h320V160H160v224z\"]\n};\nvar faSignInAlt = {\n prefix: 'fas',\n iconName: 'sign-in-alt',\n icon: [512, 512, [], \"f2f6\", \"M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z\"]\n};\nvar faSignLanguage = {\n prefix: 'fas',\n iconName: 'sign-language',\n icon: [448, 512, [], \"f2a7\", \"M91.434 483.987c-.307-16.018 13.109-29.129 29.13-29.129h62.293v-5.714H56.993c-16.021 0-29.437-13.111-29.13-29.129C28.16 404.491 40.835 392 56.428 392h126.429v-5.714H29.136c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h154.286v-5.714H57.707c-16.021 0-29.437-13.111-29.13-29.129.297-15.522 12.973-28.013 28.566-28.013h168.566l-31.085-22.606c-12.762-9.281-15.583-27.149-6.302-39.912 9.281-12.761 27.15-15.582 39.912-6.302l123.361 89.715a34.287 34.287 0 0 1 14.12 27.728v141.136c0 15.91-10.946 29.73-26.433 33.374l-80.471 18.934a137.16 137.16 0 0 1-31.411 3.646H120c-15.593-.001-28.269-12.492-28.566-28.014zm73.249-225.701h36.423l-11.187-8.136c-18.579-13.511-20.313-40.887-3.17-56.536l-13.004-16.7c-9.843-12.641-28.43-15.171-40.88-5.088-12.065 9.771-14.133 27.447-4.553 39.75l36.371 46.71zm283.298-2.103l-5.003-152.452c-.518-15.771-13.722-28.136-29.493-27.619-15.773.518-28.137 13.722-27.619 29.493l1.262 38.415L283.565 11.019c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l76.889 98.745-4.509 3.511-94.79-121.734c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l94.443 121.288-4.509 3.511-77.675-99.754c-9.58-12.303-27.223-14.63-39.653-5.328-12.827 9.599-14.929 28.24-5.086 40.881l52.053 66.849c12.497-8.257 29.055-8.285 41.69.904l123.36 89.714c10.904 7.93 17.415 20.715 17.415 34.198v16.999l61.064-47.549a34.285 34.285 0 0 0 13.202-28.177z\"]\n};\nvar faSignOutAlt = {\n prefix: 'fas',\n iconName: 'sign-out-alt',\n icon: [512, 512, [], \"f2f5\", \"M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z\"]\n};\nvar faSignal = {\n prefix: 'fas',\n iconName: 'signal',\n icon: [640, 512, [], \"f012\", \"M216 288h-48c-8.84 0-16 7.16-16 16v192c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V304c0-8.84-7.16-16-16-16zM88 384H40c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16zm256-192h-48c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm128-96h-48c-8.84 0-16 7.16-16 16v384c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112c0-8.84-7.16-16-16-16zM600 0h-48c-8.84 0-16 7.16-16 16v480c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z\"]\n};\nvar faSignature = {\n prefix: 'fas',\n iconName: 'signature',\n icon: [640, 512, [], \"f5b7\", \"M623.2 192c-51.8 3.5-125.7 54.7-163.1 71.5-29.1 13.1-54.2 24.4-76.1 24.4-22.6 0-26-16.2-21.3-51.9 1.1-8 11.7-79.2-42.7-76.1-25.1 1.5-64.3 24.8-169.5 126L192 182.2c30.4-75.9-53.2-151.5-129.7-102.8L7.4 116.3C0 121-2.2 130.9 2.5 138.4l17.2 27c4.7 7.5 14.6 9.7 22.1 4.9l58-38.9c18.4-11.7 40.7 7.2 32.7 27.1L34.3 404.1C27.5 421 37 448 64 448c8.3 0 16.5-3.2 22.6-9.4 42.2-42.2 154.7-150.7 211.2-195.8-2.2 28.5-2.1 58.9 20.6 83.8 15.3 16.8 37.3 25.3 65.5 25.3 35.6 0 68-14.6 102.3-30 33-14.8 99-62.6 138.4-65.8 8.5-.7 15.2-7.3 15.2-15.8v-32.1c.2-9.1-7.5-16.8-16.6-16.2z\"]\n};\nvar faSimCard = {\n prefix: 'fas',\n iconName: 'sim-card',\n icon: [384, 512, [], \"f7c4\", \"M0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128L256 0H64C28.7 0 0 28.7 0 64zm224 192h-64v-64h64v64zm96 0h-64v-64h32c17.7 0 32 14.3 32 32v32zm-64 128h64v32c0 17.7-14.3 32-32 32h-32v-64zm-96 0h64v64h-64v-64zm-96 0h64v64H96c-17.7 0-32-14.3-32-32v-32zm0-96h256v64H64v-64zm0-64c0-17.7 14.3-32 32-32h32v64H64v-32z\"]\n};\nvar faSink = {\n prefix: 'fas',\n iconName: 'sink',\n icon: [512, 512, [], \"e06d\", \"M32,416a96,96,0,0,0,96,96H384a96,96,0,0,0,96-96V384H32ZM496,288H400V256h64a16,16,0,0,0,16-16V224a16,16,0,0,0-16-16H384a32,32,0,0,0-32,32v48H288V96a32,32,0,0,1,64,0v16a16,16,0,0,0,16,16h32a16,16,0,0,0,16-16V96A96.16,96.16,0,0,0,300.87,1.86C255.29,10.71,224,53.36,224,99.79V288H160V240a32,32,0,0,0-32-32H48a16,16,0,0,0-16,16v16a16,16,0,0,0,16,16h64v32H16A16,16,0,0,0,0,304v32a16,16,0,0,0,16,16H496a16,16,0,0,0,16-16V304A16,16,0,0,0,496,288Z\"]\n};\nvar faSitemap = {\n prefix: 'fas',\n iconName: 'sitemap',\n icon: [640, 512, [], \"f0e8\", \"M128 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm-24-80h192v48h48v-48h192v48h48v-57.59c0-21.17-17.23-38.41-38.41-38.41H344v-64h40c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h40v64H94.41C73.23 224 56 241.23 56 262.41V320h48v-48zm264 80h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zm240 0h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z\"]\n};\nvar faSkating = {\n prefix: 'fas',\n iconName: 'skating',\n icon: [448, 512, [], \"f7c5\", \"M400 0c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48zm0 448c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c26.5 0 48-21.5 48-48 0-8.8-7.2-16-16-16zm-282.2 8.6c-6.2 6.2-16.4 6.3-22.6 0l-67.9-67.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l67.9 67.9c9.4 9.4 21.7 14 34 14s24.6-4.7 33.9-14c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.3-22.7 0zm56.1-179.8l-93.7 93.7c-12.5 12.5-12.5 32.8 0 45.2 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4l91.9-91.9-30.2-30.2c-5-5-9.4-10.7-13.2-16.8zM128 160h105.5l-20.1 17.2c-13.5 11.5-21.6 28.4-22.3 46.1-.7 17.8 6.1 35.2 18.7 47.7l78.2 78.2V432c0 17.7 14.3 32 32 32s32-14.3 32-32v-89.4c0-12.6-5.1-25-14.1-33.9l-61-61c.5-.4 1.2-.6 1.7-1.1l82.3-82.3c11.5-11.5 14.9-28.6 8.7-43.6-6.2-15-20.7-24.7-37-24.7H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z\"]\n};\nvar faSkiing = {\n prefix: 'fas',\n iconName: 'skiing',\n icon: [512, 512, [], \"f7c9\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm73 356.1c-9.4-9.4-24.6-9.4-33.9 0-12.1 12.1-30.5 15.4-45.1 8.7l-135.8-70.2 49.2-73.8c12.7-19 10.2-44.5-6-60.6L293 215.7l-107-53.1c-2.9 19.9 3.4 40 17.7 54.4l75.1 75.2-45.9 68.8L35 258.7c-11.7-6-26.2-1.5-32.3 10.3-6.1 11.8-1.5 26.3 10.3 32.3l391.9 202.5c11.9 5.5 24.5 8.1 37.1 8.1 23.2 0 46-9 63-26 9.3-9.3 9.3-24.5 0-33.8zM120 91.6l-11.5 22.5c14.4 7.3 31.2 4.9 42.8-4.8l47.2 23.4c-.1.1-.1.2-.2.3l114.5 56.8 32.4-13 6.4 19.1c4 12.1 12.6 22 24 27.7l58.1 29c15.9 7.9 35 1.5 42.9-14.3 7.9-15.8 1.5-35-14.3-42.9l-52.1-26.1-17.1-51.2c-8.1-24.2-40.9-56.6-84.5-39.2l-81.2 32.5-62.5-31c.3-14.5-7.2-28.6-20.9-35.6l-11.1 21.7h-.2l-34.4-7c-1.8-.4-3.7.2-5 1.7-1.9 2.2-1.7 5.5.5 7.4l26.2 23z\"]\n};\nvar faSkiingNordic = {\n prefix: 'fas',\n iconName: 'skiing-nordic',\n icon: [576, 512, [], \"f7ca\", \"M336 96c26.5 0 48-21.5 48-48S362.5 0 336 0s-48 21.5-48 48 21.5 48 48 48zm216 320c-13.2 0-24 10.7-24 24 0 13.2-10.8 24-24 24h-69.5L460 285.6c11.7-4.7 20.1-16.2 20.1-29.6 0-17.7-14.3-32-32-32h-44L378 170.8c-12.5-25.5-35.5-44.2-61.8-50.9L245 98.7c-28.3-6.8-57.8-.5-80.8 17.1l-39.7 30.4c-14 10.7-16.7 30.8-5.9 44.9.7.9 1.7 1.3 2.4 2.1L66.9 464H24c-13.2 0-24 10.7-24 24s10.8 24 24 24h480c39.7 0 72-32.3 72-72 0-13.2-10.8-24-24-24zm-260.5 48h-96.9l43.1-91-22-13c-12.1-7.2-21.9-16.9-29.5-27.8L123.7 464H99.5l52.3-261.4c4.1-1 8.1-2.9 11.7-5.6l39.7-30.4c7.7-5.9 17.4-8 25.3-6.1l14.7 4.4-37.5 87.4c-12.6 29.5-1.3 64 26.3 80.3l85 50.2-25.5 81.2zm110.6 0h-43.6l23.6-75.5c5.9-20.8-2.9-43.1-21.6-54.4L299.3 298l31.3-78.3 20.3 41.4c8 16.3 24.9 26.9 43.1 26.9h33.3l-25.2 176z\"]\n};\nvar faSkull = {\n prefix: 'fas',\n iconName: 'skull',\n icon: [512, 512, [], \"f54c\", \"M256 0C114.6 0 0 100.3 0 224c0 70.1 36.9 132.6 94.5 173.7 9.6 6.9 15.2 18.1 13.5 29.9l-9.4 66.2c-1.4 9.6 6 18.2 15.7 18.2H192v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h64v-56c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v56h77.7c9.7 0 17.1-8.6 15.7-18.2l-9.4-66.2c-1.7-11.7 3.8-23 13.5-29.9C475.1 356.6 512 294.1 512 224 512 100.3 397.4 0 256 0zm-96 320c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm192 0c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z\"]\n};\nvar faSkullCrossbones = {\n prefix: 'fas',\n iconName: 'skull-crossbones',\n icon: [448, 512, [], \"f714\", \"M439.15 453.06L297.17 384l141.99-69.06c7.9-3.95 11.11-13.56 7.15-21.46L432 264.85c-3.95-7.9-13.56-11.11-21.47-7.16L224 348.41 37.47 257.69c-7.9-3.95-17.51-.75-21.47 7.16L1.69 293.48c-3.95 7.9-.75 17.51 7.15 21.46L150.83 384 8.85 453.06c-7.9 3.95-11.11 13.56-7.15 21.47l14.31 28.63c3.95 7.9 13.56 11.11 21.47 7.15L224 419.59l186.53 90.72c7.9 3.95 17.51.75 21.47-7.15l14.31-28.63c3.95-7.91.74-17.52-7.16-21.47zM150 237.28l-5.48 25.87c-2.67 12.62 5.42 24.85 16.45 24.85h126.08c11.03 0 19.12-12.23 16.45-24.85l-5.5-25.87c41.78-22.41 70-62.75 70-109.28C368 57.31 303.53 0 224 0S80 57.31 80 128c0 46.53 28.22 86.87 70 109.28zM280 112c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32zm-112 0c17.65 0 32 14.35 32 32s-14.35 32-32 32-32-14.35-32-32 14.35-32 32-32z\"]\n};\nvar faSlash = {\n prefix: 'fas',\n iconName: 'slash',\n icon: [640, 512, [], \"f715\", \"M594.53 508.63L6.18 53.9c-6.97-5.42-8.23-15.47-2.81-22.45L23.01 6.18C28.43-.8 38.49-2.06 45.47 3.37L633.82 458.1c6.97 5.42 8.23 15.47 2.81 22.45l-19.64 25.27c-5.42 6.98-15.48 8.23-22.46 2.81z\"]\n};\nvar faSleigh = {\n prefix: 'fas',\n iconName: 'sleigh',\n icon: [640, 512, [], \"f7cc\", \"M612.7 350.7l-9.3-7.4c-6.9-5.5-17-4.4-22.5 2.5l-10 12.5c-5.5 6.9-4.4 17 2.5 22.5l9.3 7.4c5.9 4.7 9.2 11.7 9.2 19.2 0 13.6-11 24.6-24.6 24.6H48c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h516c39 0 73.7-29.3 75.9-68.3 1.4-23.8-8.7-46.3-27.2-61zM32 224c0 59.6 40.9 109.2 96 123.5V400h64v-48h192v48h64v-48c53 0 96-43 96-96v-96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96v64c0 35.3-28.7 64-64 64h-20.7c-65.8 0-125.9-37.2-155.3-96-29.4-58.8-89.6-96-155.3-96H32C14.3 32 0 46.3 0 64s14.3 32 32 32v128z\"]\n};\nvar faSlidersH = {\n prefix: 'fas',\n iconName: 'sliders-h',\n icon: [512, 512, [], \"f1de\", \"M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z\"]\n};\nvar faSmile = {\n prefix: 'fas',\n iconName: 'smile',\n icon: [496, 512, [], \"f118\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z\"]\n};\nvar faSmileBeam = {\n prefix: 'fas',\n iconName: 'smile-beam',\n icon: [496, 512, [], \"f5b8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM112 223.4c3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.7 8.6-10.8 11.9-14.9 4.5l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.3 7.4-15.8 4-15.1-4.5zm250.8 122.8C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.3 24.6 20.5zm6.2-118.3l-9.5-17c-7.7-13.7-19.2-21.6-31.5-21.6s-23.8 7.9-31.5 21.6l-9.5 17c-4.1 7.3-15.6 4-14.9-4.5 3.3-42.1 32.2-71.4 56-71.4s52.7 29.3 56 71.4c.6 8.6-11 11.9-15.1 4.5z\"]\n};\nvar faSmileWink = {\n prefix: 'fas',\n iconName: 'smile-wink',\n icon: [496, 512, [], \"f4da\", \"M0 256c0 137 111 248 248 248s248-111 248-248S385 8 248 8 0 119 0 256zm200-48c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32zm158.5 16.5c-14.8-13.2-46.2-13.2-61 0L288 233c-8.3 7.4-21.6.4-19.8-10.8 4-25.2 34.2-42.1 59.9-42.1S384 197 388 222.2c1.7 11.1-11.4 18.3-19.8 10.8l-9.7-8.5zM157.8 325.8C180.2 352.7 213 368 248 368s67.8-15.4 90.2-42.2c13.6-16.2 38.1 4.2 24.6 20.5C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.5-16.3 11.2-36.7 24.6-20.4z\"]\n};\nvar faSmog = {\n prefix: 'fas',\n iconName: 'smog',\n icon: [640, 512, [], \"f75f\", \"M624 368H80c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h544c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm-480 96H16c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm416 0H224c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h336c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zM144 288h156.1c22.5 19.7 51.6 32 83.9 32s61.3-12.3 83.9-32H528c61.9 0 112-50.1 112-112S589.9 64 528 64c-18 0-34.7 4.6-49.7 12.1C454 31 406.8 0 352 0c-41 0-77.8 17.3-104 44.8C221.8 17.3 185 0 144 0 64.5 0 0 64.5 0 144s64.5 144 144 144z\"]\n};\nvar faSmoking = {\n prefix: 'fas',\n iconName: 'smoking',\n icon: [640, 512, [], \"f48d\", \"M632 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8zM553.3 87.1c-5.7-3.8-9.3-10-9.3-16.8V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v62.3c0 22 10.2 43.4 28.6 55.4 42.2 27.3 67.4 73.8 67.4 124V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-65.5-32.4-126.2-86.7-162.6zM432 352H48c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h384c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16zm-32 112H224v-64h176v64zm87.7-322.4C463.8 125 448 99.3 448 70.3V8c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v66.4c0 43.7 24.6 81.6 60.3 106.7 22.4 15.7 35.7 41.2 35.7 68.6V280c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-30.3c0-43.3-21-83.4-56.3-108.1zM536 352h-48c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V360c0-4.4-3.6-8-8-8z\"]\n};\nvar faSmokingBan = {\n prefix: 'fas',\n iconName: 'smoking-ban',\n icon: [512, 512, [], \"f54d\", \"M96 304c0 8.8 7.2 16 16 16h117.5l-96-96H112c-8.8 0-16 7.2-16 16v64zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 448c-105.9 0-192-86.1-192-192 0-41.4 13.3-79.7 35.7-111.1l267.4 267.4C335.7 434.7 297.4 448 256 448zm45.2-192H384v32h-50.8l-32-32zm111.1 111.1L365.2 320H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.2L144.9 99.7C176.3 77.3 214.6 64 256 64c105.9 0 192 86.1 192 192 0 41.4-13.3 79.7-35.7 111.1zM320.6 128c-15.6 0-28.6-11.2-31.4-25.9-.7-3.6-4-6.1-7.7-6.1h-16.2c-5 0-8.7 4.5-8 9.4 4.6 30.9 31.2 54.6 63.3 54.6 15.6 0 28.6 11.2 31.4 25.9.7 3.6 4 6.1 7.7 6.1h16.2c5 0 8.7-4.5 8-9.4-4.6-30.9-31.2-54.6-63.3-54.6z\"]\n};\nvar faSms = {\n prefix: 'fas',\n iconName: 'sms',\n icon: [512, 512, [], \"f7cd\", \"M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7 1.3 3 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32zM128.2 304H116c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H156c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-19 38.6-42.4 38.6zm191.8-8c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-68.2l-24.8 55.8c-2.9 5.9-11.4 5.9-14.3 0L224 227.8V296c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V192c0-8.8 7.2-16 16-16h16c6.1 0 11.6 3.4 14.3 8.8l17.7 35.4 17.7-35.4c2.7-5.4 8.3-8.8 14.3-8.8h16c8.8 0 16 7.2 16 16v104zm48.3 8H356c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h12.3c6 0 10.4-3.5 10.4-6.6 0-1.3-.8-2.7-2.1-3.8l-21.9-18.8c-8.5-7.2-13.3-17.5-13.3-28.1 0-21.3 19-38.6 42.4-38.6H396c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8h-12.3c-6 0-10.4 3.5-10.4 6.6 0 1.3.8 2.7 2.1 3.8l21.9 18.8c8.5 7.2 13.3 17.5 13.3 28.1.1 21.3-18.9 38.6-42.3 38.6z\"]\n};\nvar faSnowboarding = {\n prefix: 'fas',\n iconName: 'snowboarding',\n icon: [512, 512, [], \"f7ce\", \"M432 96c26.5 0 48-21.5 48-48S458.5 0 432 0s-48 21.5-48 48 21.5 48 48 48zm28.8 153.6c5.8 4.3 12.5 6.4 19.2 6.4 9.7 0 19.3-4.4 25.6-12.8 10.6-14.1 7.8-34.2-6.4-44.8l-111.4-83.5c-13.8-10.3-29.1-18.4-45.4-23.8l-63.7-21.2-26.1-52.1C244.7 2 225.5-4.4 209.7 3.5c-15.8 7.9-22.2 27.1-14.3 42.9l29.1 58.1c5.7 11.4 15.6 19.9 27.7 24l16.4 5.5-41.2 20.6c-21.8 10.9-35.4 32.8-35.4 57.2v53.1l-74.1 24.7c-16.8 5.6-25.8 23.7-20.2 40.5 1.7 5.2 4.9 9.4 8.7 12.9l-38.7-14.1c-9.7-3.5-17.4-10.6-21.8-20-5.6-12-19.9-17.2-31.9-11.6s-17.2 19.9-11.6 31.9c9.8 21 27.1 36.9 48.9 44.8l364.8 132.7c9.7 3.5 19.7 5.3 29.7 5.3 12.5 0 24.9-2.7 36.5-8.2 12-5.6 17.2-19.9 11.6-31.9S474 454.7 462 460.3c-9.3 4.4-19.8 4.8-29.5 1.3l-90.8-33.1c8.7-4.1 15.6-11.8 17.8-21.9l21.9-102c3.9-18.2-3.2-37.2-18.1-48.4l-52-39 66-30.5 83.5 62.9zm-144.4 51.7l-19.7 92c-1.5 7.1-.1 13.9 2.8 20l-169.4-61.6c2.7-.2 5.4-.4 8-1.3l85-28.4c19.6-6.5 32.8-24.8 32.8-45.5V256l60.5 45.3z\"]\n};\nvar faSnowflake = {\n prefix: 'fas',\n iconName: 'snowflake',\n icon: [448, 512, [], \"f2dc\", \"M440.3 345.2l-33.8-19.5 26-7c8.2-2.2 13.1-10.7 10.9-18.9l-4-14.9c-2.2-8.2-10.7-13.1-18.9-10.9l-70.8 19-63.9-37 63.8-36.9 70.8 19c8.2 2.2 16.7-2.7 18.9-10.9l4-14.9c2.2-8.2-2.7-16.7-10.9-18.9l-26-7 33.8-19.5c7.4-4.3 9.9-13.7 5.7-21.1L430.4 119c-4.3-7.4-13.7-9.9-21.1-5.7l-33.8 19.5 7-26c2.2-8.2-2.7-16.7-10.9-18.9l-14.9-4c-8.2-2.2-16.7 2.7-18.9 10.9l-19 70.8-62.8 36.2v-77.5l53.7-53.7c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0L256 56.4V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v40.4l-19.7-19.7c-6.2-6.2-16.4-6.2-22.6 0L138.3 48c-6.3 6.2-6.3 16.4 0 22.6l53.7 53.7v77.5l-62.8-36.2-19-70.8c-2.2-8.2-10.7-13.1-18.9-10.9l-14.9 4c-8.2 2.2-13.1 10.7-10.9 18.9l7 26-33.8-19.5c-7.4-4.3-16.8-1.7-21.1 5.7L2.1 145.7c-4.3 7.4-1.7 16.8 5.7 21.1l33.8 19.5-26 7c-8.3 2.2-13.2 10.7-11 19l4 14.9c2.2 8.2 10.7 13.1 18.9 10.9l70.8-19 63.8 36.9-63.8 36.9-70.8-19c-8.2-2.2-16.7 2.7-18.9 10.9l-4 14.9c-2.2 8.2 2.7 16.7 10.9 18.9l26 7-33.8 19.6c-7.4 4.3-9.9 13.7-5.7 21.1l15.5 26.8c4.3 7.4 13.7 9.9 21.1 5.7l33.8-19.5-7 26c-2.2 8.2 2.7 16.7 10.9 18.9l14.9 4c8.2 2.2 16.7-2.7 18.9-10.9l19-70.8 62.8-36.2v77.5l-53.7 53.7c-6.3 6.2-6.3 16.4 0 22.6l11.3 11.3c6.2 6.2 16.4 6.2 22.6 0l19.7-19.7V496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-40.4l19.7 19.7c6.2 6.2 16.4 6.2 22.6 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6L256 387.7v-77.5l62.8 36.2 19 70.8c2.2 8.2 10.7 13.1 18.9 10.9l14.9-4c8.2-2.2 13.1-10.7 10.9-18.9l-7-26 33.8 19.5c7.4 4.3 16.8 1.7 21.1-5.7l15.5-26.8c4.3-7.3 1.8-16.8-5.6-21z\"]\n};\nvar faSnowman = {\n prefix: 'fas',\n iconName: 'snowman',\n icon: [512, 512, [], \"f7d0\", \"M510.9 152.3l-5.9-14.5c-3.3-8-12.6-11.9-20.8-8.7L456 140.6v-29c0-8.6-7.2-15.6-16-15.6h-16c-8.8 0-16 7-16 15.6v46.9c0 .5.3 1 .3 1.5l-56.4 23c-5.9-10-13.3-18.9-22-26.6 13.6-16.6 22-37.4 22-60.5 0-53-43-96-96-96s-96 43-96 96c0 23.1 8.5 43.9 22 60.5-8.7 7.7-16 16.6-22 26.6l-56.4-23c.1-.5.3-1 .3-1.5v-46.9C104 103 96.8 96 88 96H72c-8.8 0-16 7-16 15.6v29l-28.1-11.5c-8.2-3.2-17.5.7-20.8 8.7l-5.9 14.5c-3.3 8 .7 17.1 8.9 20.3l135.2 55.2c-.4 4-1.2 8-1.2 12.2 0 10.1 1.7 19.6 4.2 28.9C120.9 296.4 104 334.2 104 376c0 54 28.4 100.9 70.8 127.8 9.3 5.9 20.3 8.2 31.3 8.2h99.2c13.3 0 26.3-4.1 37.2-11.7 46.5-32.3 74.4-89.4 62.9-152.6-5.5-30.2-20.5-57.6-41.6-79 2.5-9.2 4.2-18.7 4.2-28.7 0-4.2-.8-8.1-1.2-12.2L502 172.6c8.1-3.1 12.1-12.2 8.9-20.3zM224 96c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm32 272c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-64c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm0-88s-16-23.2-16-32 7.2-16 16-16 16 7.2 16 16-16 32-16 32zm32-56c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faSnowplow = {\n prefix: 'fas',\n iconName: 'snowplow',\n icon: [640, 512, [], \"f7d2\", \"M120 376c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24zm238.6 49.4c-14.5-14.5-22.6-34.1-22.6-54.6V269.2c0-20.5 8.1-40.1 22.6-54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6l-22.6-22.6c-6.2-6.2-16.4-6.2-22.6 0l-36.7 36.7c-26.5 26.5-41.4 62.4-41.4 99.9V288h-64v-50.9c0-8.7-1.8-17.2-5.2-25.2L364.5 29.1C356.9 11.4 339.6 0 320.3 0H176c-26.5 0-48 21.5-48 48v112h-16c-26.5 0-48 21.5-48 48v91.2C26.3 317.2 0 355.4 0 400c0 61.9 50.1 112 112 112h256c61.9 0 112-50.1 112-112 0-17.3-4.2-33.4-11.2-48H512v18.7c0 37.5 14.9 73.4 41.4 99.9l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7zM192 64h117.8l68.6 160H256l-64-64V64zm176 384H112c-26.5 0-48-21.5-48-48s21.5-48 48-48h256c26.5 0 48 21.5 48 48s-21.5 48-48 48z\"]\n};\nvar faSoap = {\n prefix: 'fas',\n iconName: 'soap',\n icon: [512, 512, [], \"e06e\", \"M416,192a95.42,95.42,0,0,1-30.94,70.21A95.8,95.8,0,0,1,352,448H160a96,96,0,0,1,0-192h88.91A95.3,95.3,0,0,1,224,192H96A96,96,0,0,0,0,288V416a96,96,0,0,0,96,96H416a96,96,0,0,0,96-96V288A96,96,0,0,0,416,192Zm-96,64a64,64,0,1,0-64-64A64,64,0,0,0,320,256ZM208,96a48,48,0,1,0-48-48A48,48,0,0,0,208,96ZM384,64a32,32,0,1,0-32-32A32,32,0,0,0,384,64ZM160,288a64,64,0,0,0,0,128H352a64,64,0,0,0,0-128Z\"]\n};\nvar faSocks = {\n prefix: 'fas',\n iconName: 'socks',\n icon: [512, 512, [], \"f696\", \"M214.66 311.01L288 256V96H128v176l-86.65 64.61c-39.4 29.56-53.86 84.42-29.21 127.06C30.39 495.25 63.27 512 96.08 512c20.03 0 40.25-6.25 57.52-19.2l21.86-16.39c-29.85-55.38-13.54-125.84 39.2-165.4zM288 32c0-11.05 3.07-21.3 8.02-30.38C293.4.92 290.85 0 288 0H160c-17.67 0-32 14.33-32 32v32h160V32zM480 0H352c-17.67 0-32 14.33-32 32v32h192V32c0-17.67-14.33-32-32-32zM320 272l-86.13 64.61c-39.4 29.56-53.86 84.42-29.21 127.06 18.25 31.58 50.61 48.33 83.42 48.33 20.03 0 40.25-6.25 57.52-19.2l115.2-86.4A127.997 127.997 0 0 0 512 304V96H320v176z\"]\n};\nvar faSolarPanel = {\n prefix: 'fas',\n iconName: 'solar-panel',\n icon: [640, 512, [], \"f5ba\", \"M431.98 448.01l-47.97.05V416h-128v32.21l-47.98.05c-8.82.01-15.97 7.16-15.98 15.99l-.05 31.73c-.01 8.85 7.17 16.03 16.02 16.02l223.96-.26c8.82-.01 15.97-7.16 15.98-15.98l.04-31.73c.01-8.85-7.17-16.03-16.02-16.02zM585.2 26.74C582.58 11.31 568.99 0 553.06 0H86.93C71 0 57.41 11.31 54.79 26.74-3.32 369.16.04 348.08.03 352c-.03 17.32 14.29 32 32.6 32h574.74c18.23 0 32.51-14.56 32.59-31.79.02-4.08 3.35 16.95-54.76-325.47zM259.83 64h120.33l9.77 96H250.06l9.77-96zm-75.17 256H71.09L90.1 208h105.97l-11.41 112zm16.29-160H98.24l16.29-96h96.19l-9.77 96zm32.82 160l11.4-112h149.65l11.4 112H233.77zm195.5-256h96.19l16.29 96H439.04l-9.77-96zm26.06 256l-11.4-112H549.9l19.01 112H455.33z\"]\n};\nvar faSort = {\n prefix: 'fas',\n iconName: 'sort',\n icon: [320, 512, [], \"f0dc\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z\"]\n};\nvar faSortAlphaDown = {\n prefix: 'fas',\n iconName: 'sort-alpha-down',\n icon: [448, 512, [], \"f15d\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm240-64H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaDownAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-down-alt',\n icon: [448, 512, [], \"f881\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm112-128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAlphaUp = {\n prefix: 'fas',\n iconName: 'sort-alpha-up',\n icon: [448, 512, [], \"f15e\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm400 128H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z\"]\n};\nvar faSortAlphaUpAlt = {\n prefix: 'fas',\n iconName: 'sort-alpha-up-alt',\n icon: [448, 512, [], \"f882\", \"M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm272 64h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 65.63V48a16 16 0 0 0-16-16H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 190.37V208a16 16 0 0 0 16 16zm159.06 234.62l-59.27-160A16 16 0 0 0 372.72 288h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 480h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 480H432a16 16 0 0 0 15.06-21.38zM335.61 400L352 352l16.39 48z\"]\n};\nvar faSortAmountDown = {\n prefix: 'fas',\n iconName: 'sort-amount-down',\n icon: [512, 512, [], \"f160\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-128-64h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm256-192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountDownAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-down-alt',\n icon: [512, 512, [], \"f884\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm-64 0h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.37 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortAmountUp = {\n prefix: 'fas',\n iconName: 'sort-amount-up',\n icon: [512, 512, [], \"f161\", \"M304 416h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.77 160 16 160zm416 0H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-64 128H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM496 32H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faSortAmountUpAlt = {\n prefix: 'fas',\n iconName: 'sort-amount-up-alt',\n icon: [512, 512, [], \"f885\", \"M240 96h64a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-64a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm0 128h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm256 192H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h256a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-256-64h192a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H240a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zM16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.39-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160z\"]\n};\nvar faSortDown = {\n prefix: 'fas',\n iconName: 'sort-down',\n icon: [320, 512, [], \"f0dd\", \"M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z\"]\n};\nvar faSortNumericDown = {\n prefix: 'fas',\n iconName: 'sort-numeric-down',\n icon: [448, 512, [], \"f162\", \"M304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zm26.15 162.91a79 79 0 0 0-55 54.17c-14.25 51.05 21.21 97.77 68.85 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zm-176-4h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z\"]\n};\nvar faSortNumericDownAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-down-alt',\n icon: [448, 512, [], \"f886\", \"M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm224 64h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortNumericUp = {\n prefix: 'fas',\n iconName: 'sort-numeric-up',\n icon: [448, 512, [], \"f163\", \"M330.17 258.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zM304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zM107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31z\"]\n};\nvar faSortNumericUpAlt = {\n prefix: 'fas',\n iconName: 'sort-numeric-up-alt',\n icon: [448, 512, [], \"f887\", \"M107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31zM400 416h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 352h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM330.17 34.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.77 86.25-61.61 86.25-132V112c-.02-51.21-48.4-91.34-101.85-77.09zM352 132a20 20 0 1 1 20-20 20 20 0 0 1-20 20z\"]\n};\nvar faSortUp = {\n prefix: 'fas',\n iconName: 'sort-up',\n icon: [320, 512, [], \"f0de\", \"M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z\"]\n};\nvar faSpa = {\n prefix: 'fas',\n iconName: 'spa',\n icon: [576, 512, [], \"f5bb\", \"M568.25 192c-29.04.13-135.01 6.16-213.84 83-33.12 29.63-53.36 63.3-66.41 94.86-13.05-31.56-33.29-65.23-66.41-94.86-78.83-76.84-184.8-82.87-213.84-83-4.41-.02-7.79 3.4-7.75 7.82.23 27.92 7.14 126.14 88.77 199.3C172.79 480.94 256 480 288 480s115.19.95 199.23-80.88c81.64-73.17 88.54-171.38 88.77-199.3.04-4.42-3.34-7.84-7.75-7.82zM287.98 302.6c12.82-18.85 27.6-35.78 44.09-50.52 19.09-18.61 39.58-33.3 60.26-45.18-16.44-70.5-51.72-133.05-96.73-172.22-4.11-3.58-11.02-3.58-15.14 0-44.99 39.14-80.27 101.63-96.74 172.07 20.37 11.7 40.5 26.14 59.22 44.39a282.768 282.768 0 0 1 45.04 51.46z\"]\n};\nvar faSpaceShuttle = {\n prefix: 'fas',\n iconName: 'space-shuttle',\n icon: [640, 512, [], \"f197\", \"M592.604 208.244C559.735 192.836 515.777 184 472 184H186.327c-4.952-6.555-10.585-11.978-16.72-16H376C229.157 137.747 219.403 32 96.003 32H96v128H80V32c-26.51 0-48 28.654-48 64v64c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v16c-23.197 0-32 10.032-32 24v40c0 13.983 8.819 24 32 24v64c0 35.346 21.49 64 48 64V352h16v128h.003c123.4 0 133.154-105.747 279.997-136H169.606c6.135-4.022 11.768-9.445 16.72-16H472c43.777 0 87.735-8.836 120.604-24.244C622.282 289.845 640 271.992 640 256s-17.718-33.845-47.396-47.756zM488 296a8 8 0 0 1-8-8v-64a8 8 0 0 1 8-8c31.909 0 31.942 80 0 80z\"]\n};\nvar faSpellCheck = {\n prefix: 'fas',\n iconName: 'spell-check',\n icon: [576, 512, [], \"f891\", \"M272 256h91.36c43.2 0 82-32.2 84.51-75.34a79.82 79.82 0 0 0-25.26-63.07 79.81 79.81 0 0 0 9.06-44.91C427.9 30.57 389.3 0 347 0h-75a16 16 0 0 0-16 16v224a16 16 0 0 0 16 16zm40-200h40a24 24 0 0 1 0 48h-40zm0 96h56a24 24 0 0 1 0 48h-56zM155.12 22.25A32 32 0 0 0 124.64 0H99.36a32 32 0 0 0-30.48 22.25L.59 235.73A16 16 0 0 0 16 256h24.93a16 16 0 0 0 15.42-11.73L68.29 208h87.42l11.94 36.27A16 16 0 0 0 183.07 256H208a16 16 0 0 0 15.42-20.27zM89.37 144L112 75.3l22.63 68.7zm482 132.48l-45.21-45.3a15.88 15.88 0 0 0-22.59 0l-151.5 151.5-55.41-55.5a15.88 15.88 0 0 0-22.59 0l-45.3 45.3a16 16 0 0 0 0 22.59l112 112.21a15.89 15.89 0 0 0 22.6 0l208-208.21a16 16 0 0 0-.02-22.59z\"]\n};\nvar faSpider = {\n prefix: 'fas',\n iconName: 'spider',\n icon: [576, 512, [], \"f717\", \"M151.17 167.35L177.1 176h4.67l5.22-26.12c.72-3.58 1.8-7.58 3.21-11.79l-20.29-40.58 23.8-71.39c2.79-8.38-1.73-17.44-10.12-20.24L168.42.82c-8.38-2.8-17.45 1.73-20.24 10.12l-25.89 77.68a32.04 32.04 0 0 0 1.73 24.43l27.15 54.3zm422.14 182.03l-52.75-79.12a32.002 32.002 0 0 0-26.62-14.25H416l68.99-24.36a32.03 32.03 0 0 0 16.51-12.61l53.6-80.41c4.9-7.35 2.91-17.29-4.44-22.19l-13.31-8.88c-7.35-4.9-17.29-2.91-22.19 4.44l-50.56 75.83L404.1 208H368l-10.37-51.85C355.44 145.18 340.26 96 288 96c-52.26 0-67.44 49.18-69.63 60.15L208 208h-36.1l-60.49-20.17L60.84 112c-4.9-7.35-14.83-9.34-22.19-4.44l-13.31 8.88c-7.35 4.9-9.34 14.83-4.44 22.19l53.6 80.41a32.03 32.03 0 0 0 16.51 12.61L160 256H82.06a32.02 32.02 0 0 0-26.63 14.25L2.69 349.38c-4.9 7.35-2.92 17.29 4.44 22.19l13.31 8.88c7.35 4.9 17.29 2.91 22.19-4.44l48-72h47.06l-60.83 97.33A31.988 31.988 0 0 0 72 418.3V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-73.11l74.08-118.53c-1.01 14.05-2.08 28.11-2.08 42.21C192 399.64 232.76 448 288 448s96-48.36 96-101.43c0-14.1-1.08-28.16-2.08-42.21L456 422.89V496c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-77.71c0-6-1.69-11.88-4.86-16.96L438.31 304h47.06l48 72c4.9 7.35 14.84 9.34 22.19 4.44l13.31-8.88c7.36-4.9 9.34-14.83 4.44-22.18zM406.09 97.51l-20.29 40.58c1.41 4.21 2.49 8.21 3.21 11.79l5.22 26.12h4.67l25.93-8.65 27.15-54.3a31.995 31.995 0 0 0 1.73-24.43l-25.89-77.68C425.03 2.56 415.96-1.98 407.58.82l-15.17 5.06c-8.38 2.8-12.91 11.86-10.12 20.24l23.8 71.39z\"]\n};\nvar faSpinner = {\n prefix: 'fas',\n iconName: 'spinner',\n icon: [512, 512, [], \"f110\", \"M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z\"]\n};\nvar faSplotch = {\n prefix: 'fas',\n iconName: 'splotch',\n icon: [512, 512, [], \"f5bc\", \"M472.29 195.89l-67.06-22.95c-19.28-6.6-33.54-20.92-38.14-38.3L351.1 74.19c-11.58-43.77-76.57-57.13-109.98-22.62l-46.14 47.67c-13.26 13.71-33.54 20.93-54.2 19.31l-71.88-5.62c-52.05-4.07-86.93 44.88-59.03 82.83l38.54 52.42c11.08 15.07 12.82 33.86 4.64 50.24L24.62 355.4c-20.59 41.25 22.84 84.87 73.49 73.81l69.96-15.28c20.11-4.39 41.45 0 57.07 11.73l54.32 40.83c39.32 29.56 101.04 7.57 104.45-37.22l4.7-61.86c1.35-17.79 12.8-33.86 30.63-42.99l62-31.74c44.88-22.96 39.59-80.17-8.95-96.79z\"]\n};\nvar faSprayCan = {\n prefix: 'fas',\n iconName: 'spray-can',\n icon: [512, 512, [], \"f5bd\", \"M224 32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v96h128V32zm256 96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-256 32H96c-53.02 0-96 42.98-96 96v224c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V256c0-53.02-42.98-96-96-96zm-64 256c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zM480 96c17.67 0 32-14.33 32-32s-14.33-32-32-32-32 14.33-32 32 14.33 32 32 32zm-96 32c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm-96-96c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 0c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32zm96 192c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar faSquare = {\n prefix: 'fas',\n iconName: 'square',\n icon: [448, 512, [], \"f0c8\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faSquareFull = {\n prefix: 'fas',\n iconName: 'square-full',\n icon: [512, 512, [], \"f45c\", \"M512 512H0V0h512v512z\"]\n};\nvar faSquareRootAlt = {\n prefix: 'fas',\n iconName: 'square-root-alt',\n icon: [576, 512, [], \"f698\", \"M571.31 251.31l-22.62-22.62c-6.25-6.25-16.38-6.25-22.63 0L480 274.75l-46.06-46.06c-6.25-6.25-16.38-6.25-22.63 0l-22.62 22.62c-6.25 6.25-6.25 16.38 0 22.63L434.75 320l-46.06 46.06c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L480 365.25l46.06 46.06c6.25 6.25 16.38 6.25 22.63 0l22.62-22.62c6.25-6.25 6.25-16.38 0-22.63L525.25 320l46.06-46.06c6.25-6.25 6.25-16.38 0-22.63zM552 0H307.65c-14.54 0-27.26 9.8-30.95 23.87l-84.79 322.8-58.41-106.1A32.008 32.008 0 0 0 105.47 224H24c-13.25 0-24 10.74-24 24v48c0 13.25 10.75 24 24 24h43.62l88.88 163.73C168.99 503.5 186.3 512 204.94 512c17.27 0 44.44-9 54.28-41.48L357.03 96H552c13.25 0 24-10.75 24-24V24c0-13.26-10.75-24-24-24z\"]\n};\nvar faStamp = {\n prefix: 'fas',\n iconName: 'stamp',\n icon: [512, 512, [], \"f5bf\", \"M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z\"]\n};\nvar faStar = {\n prefix: 'fas',\n iconName: 'star',\n icon: [576, 512, [], \"f005\", \"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"]\n};\nvar faStarAndCrescent = {\n prefix: 'fas',\n iconName: 'star-and-crescent',\n icon: [512, 512, [], \"f699\", \"M340.47 466.36c-1.45 0-6.89.46-9.18.46-116.25 0-210.82-94.57-210.82-210.82S215.04 45.18 331.29 45.18c2.32 0 7.7.46 9.18.46 7.13 0 13.33-5.03 14.75-12.07 1.46-7.25-2.55-14.49-9.47-17.09C316.58 5.54 286.39 0 256 0 114.84 0 0 114.84 0 256s114.84 256 256 256c30.23 0 60.28-5.49 89.32-16.32 5.96-2.02 10.28-7.64 10.28-14.26 0-8.09-6.39-15.06-15.13-15.06zm162.99-252.5l-76.38-11.1-34.16-69.21c-1.83-3.7-5.38-5.55-8.93-5.55s-7.1 1.85-8.93 5.55l-34.16 69.21-76.38 11.1c-8.17 1.18-11.43 11.22-5.52 16.99l55.27 53.87-13.05 76.07c-1.11 6.44 4.01 11.66 9.81 11.66 1.53 0 3.11-.36 4.64-1.17L384 335.37l68.31 35.91c1.53.8 3.11 1.17 4.64 1.17 5.8 0 10.92-5.23 9.81-11.66l-13.05-76.07 55.27-53.87c5.91-5.77 2.65-15.81-5.52-16.99z\"]\n};\nvar faStarHalf = {\n prefix: 'fas',\n iconName: 'star-half',\n icon: [576, 512, [], \"f089\", \"M288 0c-11.4 0-22.8 5.9-28.7 17.8L194 150.2 47.9 171.4c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.1 23 46 46.4 33.7L288 439.6V0z\"]\n};\nvar faStarHalfAlt = {\n prefix: 'fas',\n iconName: 'star-half-alt',\n icon: [536, 512, [], \"f5c0\", \"M508.55 171.51L362.18 150.2 296.77 17.81C290.89 5.98 279.42 0 267.95 0c-11.4 0-22.79 5.9-28.69 17.81l-65.43 132.38-146.38 21.29c-26.25 3.8-36.77 36.09-17.74 54.59l105.89 103-25.06 145.48C86.98 495.33 103.57 512 122.15 512c4.93 0 10-1.17 14.87-3.75l130.95-68.68 130.94 68.7c4.86 2.55 9.92 3.71 14.83 3.71 18.6 0 35.22-16.61 31.66-37.4l-25.03-145.49 105.91-102.98c19.04-18.5 8.52-50.8-17.73-54.6zm-121.74 123.2l-18.12 17.62 4.28 24.88 19.52 113.45-102.13-53.59-22.38-11.74.03-317.19 51.03 103.29 11.18 22.63 25.01 3.64 114.23 16.63-82.65 80.38z\"]\n};\nvar faStarOfDavid = {\n prefix: 'fas',\n iconName: 'star-of-david',\n icon: [464, 512, [], \"f69a\", \"M405.68 256l53.21-89.39C473.3 142.4 455.48 112 426.88 112H319.96l-55.95-93.98C256.86 6.01 244.43 0 232 0s-24.86 6.01-32.01 18.02L144.04 112H37.11c-28.6 0-46.42 30.4-32.01 54.61L58.32 256 5.1 345.39C-9.31 369.6 8.51 400 37.11 400h106.93l55.95 93.98C207.14 505.99 219.57 512 232 512s24.86-6.01 32.01-18.02L319.96 400h106.93c28.6 0 46.42-30.4 32.01-54.61L405.68 256zm-12.78-88l-19.8 33.26L353.3 168h39.6zm-52.39 88l-52.39 88H175.88l-52.39-88 52.38-88h112.25l52.39 88zM232 73.72L254.79 112h-45.57L232 73.72zM71.1 168h39.6l-19.8 33.26L71.1 168zm0 176l19.8-33.26L110.7 344H71.1zM232 438.28L209.21 400h45.57L232 438.28zM353.29 344l19.8-33.26L392.9 344h-39.61z\"]\n};\nvar faStarOfLife = {\n prefix: 'fas',\n iconName: 'star-of-life',\n icon: [480, 512, [], \"f621\", \"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"]\n};\nvar faStepBackward = {\n prefix: 'fas',\n iconName: 'step-backward',\n icon: [448, 512, [], \"f048\", \"M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z\"]\n};\nvar faStepForward = {\n prefix: 'fas',\n iconName: 'step-forward',\n icon: [448, 512, [], \"f051\", \"M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z\"]\n};\nvar faStethoscope = {\n prefix: 'fas',\n iconName: 'stethoscope',\n icon: [512, 512, [], \"f0f1\", \"M447.1 112c-34.2.5-62.3 28.4-63 62.6-.5 24.3 12.5 45.6 32 56.8V344c0 57.3-50.2 104-112 104-60 0-109.2-44.1-111.9-99.2C265 333.8 320 269.2 320 192V36.6c0-11.4-8.1-21.3-19.3-23.5L237.8.5c-13-2.6-25.6 5.8-28.2 18.8L206.4 35c-2.6 13 5.8 25.6 18.8 28.2l30.7 6.1v121.4c0 52.9-42.2 96.7-95.1 97.2-53.4.5-96.9-42.7-96.9-96V69.4l30.7-6.1c13-2.6 21.4-15.2 18.8-28.2l-3.1-15.7C107.7 6.4 95.1-2 82.1.6L19.3 13C8.1 15.3 0 25.1 0 36.6V192c0 77.3 55.1 142 128.1 156.8C130.7 439.2 208.6 512 304 512c97 0 176-75.4 176-168V231.4c19.1-11.1 32-31.7 32-55.4 0-35.7-29.2-64.5-64.9-64zm.9 80c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z\"]\n};\nvar faStickyNote = {\n prefix: 'fas',\n iconName: 'sticky-note',\n icon: [448, 512, [], \"f249\", \"M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z\"]\n};\nvar faStop = {\n prefix: 'fas',\n iconName: 'stop',\n icon: [448, 512, [], \"f04d\", \"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"]\n};\nvar faStopCircle = {\n prefix: 'fas',\n iconName: 'stop-circle',\n icon: [512, 512, [], \"f28d\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z\"]\n};\nvar faStopwatch = {\n prefix: 'fas',\n iconName: 'stopwatch',\n icon: [448, 512, [], \"f2f2\", \"M432 304c0 114.9-93.1 208-208 208S16 418.9 16 304c0-104 76.3-190.2 176-205.5V64h-28c-6.6 0-12-5.4-12-12V12c0-6.6 5.4-12 12-12h120c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-28v34.5c37.5 5.8 71.7 21.6 99.7 44.6l27.5-27.5c4.7-4.7 12.3-4.7 17 0l28.3 28.3c4.7 4.7 4.7 12.3 0 17l-29.4 29.4-.6.6C419.7 223.3 432 262.2 432 304zm-176 36V188.5c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12V340c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z\"]\n};\nvar faStopwatch20 = {\n prefix: 'fas',\n iconName: 'stopwatch-20',\n icon: [448, 512, [], \"e06f\", \"M398.5,190.91l.59-.61,26.59-26.58a16,16,0,0,0,0-22.63L403,118.41a16,16,0,0,0-22.63,0l-24.68,24.68A206.68,206.68,0,0,0,256,98.5V64h32a16,16,0,0,0,16-16V16A16,16,0,0,0,288,0H160a16.05,16.05,0,0,0-16,16V48a16.05,16.05,0,0,0,16,16h32V98.5A207.92,207.92,0,0,0,16.09,297.57C12.64,411.5,106.76,510.22,220.72,512,337.13,513.77,432,420,432,304A206,206,0,0,0,398.5,190.91ZM204.37,377.55a8.2,8.2,0,0,1,8.32,8.07v22.31a8.2,8.2,0,0,1-8.32,8.07H121.52a16.46,16.46,0,0,1-16.61-17.62c2.78-35.22,14.67-57.41,38.45-91.37,20.42-29.19,27.1-37.32,27.1-62.34,0-16.92-1.79-24.27-12.21-24.27-9.39,0-12.69,7.4-12.69,22.68v5.23a8.2,8.2,0,0,1-8.33,8.07h-24.9a8.2,8.2,0,0,1-8.33-8.07v-4.07c0-27.3,8.48-60.24,56.43-60.24,43,0,55.57,25.85,55.57,61,0,35.58-12.44,51.21-34.35,81.31-11.56,15-24.61,35.57-26.41,51.2ZM344,352.32c0,35.16-12.3,63.68-57.23,63.68C243.19,416,232,386.48,232,352.55V247.22c0-40.73,19.58-63.22,56.2-63.22C325,184,344,206.64,344,245.3ZM287.87,221.73c-9.41,0-13.23,7.5-13.23,20V357.68c0,13.11,3.59,20.59,13.23,20.59s13-8,13-21.27V241.06C300.89,229.79,297.88,221.73,287.87,221.73Z\"]\n};\nvar faStore = {\n prefix: 'fas',\n iconName: 'store',\n icon: [616, 512, [], \"f54e\", \"M602 118.6L537.1 15C531.3 5.7 521 0 510 0H106C95 0 84.7 5.7 78.9 15L14 118.6c-33.5 53.5-3.8 127.9 58.8 136.4 4.5.6 9.1.9 13.7.9 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18 20.1 44.3 33.1 73.8 33.1 29.6 0 55.8-13 73.8-33.1 18.1 20.1 44.3 33.1 73.8 33.1 4.7 0 9.2-.3 13.7-.9 62.8-8.4 92.6-82.8 59-136.4zM529.5 288c-10 0-19.9-1.5-29.5-3.8V384H116v-99.8c-9.6 2.2-19.5 3.8-29.5 3.8-6 0-12.1-.4-18-1.2-5.6-.8-11.1-2.1-16.4-3.6V480c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V283.2c-5.4 1.6-10.8 2.9-16.4 3.6-6.1.8-12.1 1.2-18.2 1.2z\"]\n};\nvar faStoreAlt = {\n prefix: 'fas',\n iconName: 'store-alt',\n icon: [640, 512, [], \"f54f\", \"M320 384H128V224H64v256c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V224h-64v160zm314.6-241.8l-85.3-128c-6-8.9-16-14.2-26.7-14.2H117.4c-10.7 0-20.7 5.3-26.6 14.2l-85.3 128c-14.2 21.3 1 49.8 26.6 49.8H608c25.5 0 40.7-28.5 26.6-49.8zM512 496c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h-64v272z\"]\n};\nvar faStoreAltSlash = {\n prefix: 'fas',\n iconName: 'store-alt-slash',\n icon: [640, 512, [], \"e070\", \"M17.89,123.62,5.51,142.2c-14.2,21.3,1,49.8,26.59,49.8h74.26ZM576,413.42V224H512V364L384,265V224H330.92l-41.4-32H608c25.5,0,40.7-28.5,26.59-49.8l-85.29-128A32.18,32.18,0,0,0,522.6,0H117.42A31.87,31.87,0,0,0,90.81,14.2l-10.66,16L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.81l19.64-25.26a16,16,0,0,0-2.81-22.45ZM320,384H128V224H64V480a32,32,0,0,0,32,32H352a32,32,0,0,0,32-32V406.59l-64-49.47Z\"]\n};\nvar faStoreSlash = {\n prefix: 'fas',\n iconName: 'store-slash',\n icon: [640, 512, [], \"e071\", \"M121.51,384V284.2a119.43,119.43,0,0,1-28,3.8,123.46,123.46,0,0,1-17.1-1.2,114.88,114.88,0,0,1-15.58-3.6V480c0,17.7,13.59,32,30.4,32H505.75L348.42,384Zm-28-128.09c25.1,0,47.29-10.72,64-27.24L24,120.05c-30.52,53.39-2.45,126.53,56.49,135A95.68,95.68,0,0,0,93.48,255.91ZM602.13,458.09,547.2,413.41V283.2a93.5,93.5,0,0,1-15.57,3.6,127.31,127.31,0,0,1-17.29,1.2,114.89,114.89,0,0,1-28-3.8v79.68L348.52,251.77a88.06,88.06,0,0,0,25.41,4.14c28.11,0,53-13,70.11-33.11,17.19,20.11,42.08,33.11,70.11,33.11a94.31,94.31,0,0,0,13-.91c59.66-8.41,88-82.8,56.06-136.4L521.55,15A30.1,30.1,0,0,0,495.81,0H112A30.11,30.11,0,0,0,86.27,15L76.88,30.78,43.19,3.38A14.68,14.68,0,0,0,21.86,6.19L3.2,31.45A16.58,16.58,0,0,0,5.87,53.91L564.81,508.63a14.69,14.69,0,0,0,21.33-2.82l18.66-25.26A16.58,16.58,0,0,0,602.13,458.09Z\"]\n};\nvar faStream = {\n prefix: 'fas',\n iconName: 'stream',\n icon: [512, 512, [], \"f550\", \"M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z\"]\n};\nvar faStreetView = {\n prefix: 'fas',\n iconName: 'street-view',\n icon: [512, 512, [], \"f21d\", \"M367.9 329.76c-4.62 5.3-9.78 10.1-15.9 13.65v22.94c66.52 9.34 112 28.05 112 49.65 0 30.93-93.12 56-208 56S48 446.93 48 416c0-21.6 45.48-40.3 112-49.65v-22.94c-6.12-3.55-11.28-8.35-15.9-13.65C58.87 345.34 0 378.05 0 416c0 53.02 114.62 96 256 96s256-42.98 256-96c0-37.95-58.87-70.66-144.1-86.24zM256 128c35.35 0 64-28.65 64-64S291.35 0 256 0s-64 28.65-64 64 28.65 64 64 64zm-64 192v96c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-96c17.67 0 32-14.33 32-32v-96c0-26.51-21.49-48-48-48h-11.8c-11.07 5.03-23.26 8-36.2 8s-25.13-2.97-36.2-8H208c-26.51 0-48 21.49-48 48v96c0 17.67 14.33 32 32 32z\"]\n};\nvar faStrikethrough = {\n prefix: 'fas',\n iconName: 'strikethrough',\n icon: [512, 512, [], \"f0cc\", \"M496 224H293.9l-87.17-26.83A43.55 43.55 0 0 1 219.55 112h66.79A49.89 49.89 0 0 1 331 139.58a16 16 0 0 0 21.46 7.15l42.94-21.47a16 16 0 0 0 7.16-21.46l-.53-1A128 128 0 0 0 287.51 32h-68a123.68 123.68 0 0 0-123 135.64c2 20.89 10.1 39.83 21.78 56.36H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm-180.24 96A43 43 0 0 1 336 356.45 43.59 43.59 0 0 1 292.45 400h-66.79A49.89 49.89 0 0 1 181 372.42a16 16 0 0 0-21.46-7.15l-42.94 21.47a16 16 0 0 0-7.16 21.46l.53 1A128 128 0 0 0 224.49 480h68a123.68 123.68 0 0 0 123-135.64 114.25 114.25 0 0 0-5.34-24.36z\"]\n};\nvar faStroopwafel = {\n prefix: 'fas',\n iconName: 'stroopwafel',\n icon: [512, 512, [], \"f551\", \"M188.12 210.74L142.86 256l45.25 45.25L233.37 256l-45.25-45.26zm113.13-22.62L256 142.86l-45.25 45.25L256 233.37l45.25-45.25zm-90.5 135.76L256 369.14l45.26-45.26L256 278.63l-45.25 45.25zM256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm186.68 295.6l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-28.29-28.29-45.25 45.25 33.94 33.94 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-33.94-33.94-45.26 45.26 28.29 28.29c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0L256 414.39l-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l28.29-28.29-45.25-45.26-33.94 33.94 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 33.94-33.94-45.25-45.25-28.29 28.29c-3.12 3.12-8.19 3.12-11.31 0L69.32 295.6c-3.12-3.12-3.12-8.19 0-11.31L97.61 256l-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l28.29 28.29 45.25-45.26-33.94-33.94-16.97 16.97c-3.12 3.12-8.19 3.12-11.31 0l-11.31-11.31c-3.12-3.12-3.12-8.19 0-11.31l16.97-16.97-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 33.94 33.94 45.26-45.25-28.29-28.29c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0L256 97.61l28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-28.29 28.29 45.26 45.25 33.94-33.94-16.97-16.97c-3.12-3.12-3.12-8.19 0-11.31l11.31-11.31c3.12-3.12 8.19-3.12 11.31 0l16.97 16.97 16.97-16.97c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31l-16.97 16.97 16.97 16.97c3.12 3.12 3.12 8.19 0 11.31l-11.31 11.31c-3.12 3.12-8.19 3.12-11.31 0l-16.97-16.97-33.94 33.94 45.25 45.26 28.29-28.29c3.12-3.12 8.19-3.12 11.31 0l11.31 11.31c3.12 3.12 3.12 8.19 0 11.31L414.39 256l28.29 28.28a8.015 8.015 0 0 1 0 11.32zM278.63 256l45.26 45.25L369.14 256l-45.25-45.26L278.63 256z\"]\n};\nvar faSubscript = {\n prefix: 'fas',\n iconName: 'subscript',\n icon: [512, 512, [], \"f12c\", \"M496 448h-16V304a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 352h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSubway = {\n prefix: 'fas',\n iconName: 'subway',\n icon: [448, 512, [], \"f239\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zM200 232V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm200 0V120c0-13.255-10.745-24-24-24H272c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h104c13.255 0 24-10.745 24-24zm-48 56c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm-256 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faSuitcase = {\n prefix: 'fas',\n iconName: 'suitcase',\n icon: [512, 512, [], \"f0f2\", \"M128 480h256V80c0-26.5-21.5-48-48-48H176c-26.5 0-48 21.5-48 48v400zm64-384h128v32H192V96zm320 80v256c0 26.5-21.5 48-48 48h-48V128h48c26.5 0 48 21.5 48 48zM96 480H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h48v352z\"]\n};\nvar faSuitcaseRolling = {\n prefix: 'fas',\n iconName: 'suitcase-rolling',\n icon: [384, 512, [], \"f5c1\", \"M336 160H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h16v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h128v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16h16c26.51 0 48-21.49 48-48V208c0-26.51-21.49-48-48-48zm-16 216c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zm0-96c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h240c4.42 0 8 3.58 8 8v16zM144 48h96v80h48V48c0-26.51-21.49-48-48-48h-96c-26.51 0-48 21.49-48 48v80h48V48z\"]\n};\nvar faSun = {\n prefix: 'fas',\n iconName: 'sun',\n icon: [512, 512, [], \"f185\", \"M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z\"]\n};\nvar faSuperscript = {\n prefix: 'fas',\n iconName: 'superscript',\n icon: [512, 512, [], \"f12b\", \"M496 160h-16V16a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 400 64h16v96h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM336 64h-67a16 16 0 0 0-13.14 6.87l-79.9 115-79.9-115A16 16 0 0 0 83 64H16A16 16 0 0 0 0 80v48a16 16 0 0 0 16 16h33.48l77.81 112-77.81 112H16a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h67a16 16 0 0 0 13.14-6.87l79.9-115 79.9 115A16 16 0 0 0 269 448h67a16 16 0 0 0 16-16v-48a16 16 0 0 0-16-16h-33.48l-77.81-112 77.81-112H336a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16z\"]\n};\nvar faSurprise = {\n prefix: 'fas',\n iconName: 'surprise',\n icon: [496, 512, [], \"f5c2\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zM136 208c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm112 208c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64zm80-176c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faSwatchbook = {\n prefix: 'fas',\n iconName: 'swatchbook',\n icon: [512, 512, [], \"f5c3\", \"M434.66,167.71h0L344.5,77.36a31.83,31.83,0,0,0-45-.07h0l-.07.07L224,152.88V424L434.66,212.9A32,32,0,0,0,434.66,167.71ZM480,320H373.09L186.68,506.51c-2.06,2.07-4.5,3.58-6.68,5.49H480a32,32,0,0,0,32-32V352A32,32,0,0,0,480,320ZM192,32A32,32,0,0,0,160,0H32A32,32,0,0,0,0,32V416a96,96,0,0,0,192,0ZM96,440a24,24,0,1,1,24-24A24,24,0,0,1,96,440Zm32-184H64V192h64Zm0-128H64V64h64Z\"]\n};\nvar faSwimmer = {\n prefix: 'fas',\n iconName: 'swimmer',\n icon: [640, 512, [], \"f5c4\", \"M189.61 310.58c3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c16.02-14.77 34.5-22.58 53.46-22.58h16.3c18.96 0 37.45 7.81 53.46 22.58 3.54 3.26 15.27 9.42 34.39 9.42s30.86-6.16 34.39-9.42c14.86-13.71 31.88-21.12 49.39-22.16l-112.84-80.6 18-12.86c3.64-2.58 8.28-3.52 12.62-2.61l100.35 21.53c25.91 5.53 51.44-10.97 57-36.88 5.55-25.92-10.95-51.44-36.88-57L437.68 98.47c-30.73-6.58-63.02.12-88.56 18.38l-80.02 57.17c-10.38 7.39-19.36 16.44-26.72 26.94L173.75 299c5.47 3.23 10.82 6.93 15.86 11.58zM624 352h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 343.58 442.04 352 416 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 343.58 250.04 352 224 352s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 343.58 58.04 352 32 352H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-512-96c44.18 0 80-35.82 80-80s-35.82-80-80-80-80 35.82-80 80 35.82 80 80 80z\"]\n};\nvar faSwimmingPool = {\n prefix: 'fas',\n iconName: 'swimming-pool',\n icon: [640, 512, [], \"f5c5\", \"M624 416h-16c-26.04 0-45.8-8.42-56.09-17.9-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C461.8 407.58 442.04 416 416 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C269.8 407.58 250.04 416 224 416s-45.8-8.42-56.09-17.9c-8.9-8.21-19.66-14.1-31.77-14.1h-16.3c-12.11 0-22.87 5.89-31.77 14.1C77.8 407.58 58.04 416 32 416H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16c38.62 0 72.72-12.19 96-31.84 23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84s72.72-12.19 96-31.84c23.28 19.66 57.38 31.84 96 31.84h16c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-400-32v-96h192v96c19.12 0 30.86-6.16 34.39-9.42 9.17-8.46 19.2-14.34 29.61-18.07V128c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v96H224v-96c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-16c0-52.94-43.06-96-96-96s-96 43.06-96 96v228.5c10.41 3.73 20.44 9.62 29.61 18.07 3.53 3.27 15.27 9.43 34.39 9.43z\"]\n};\nvar faSynagogue = {\n prefix: 'fas',\n iconName: 'synagogue',\n icon: [640, 512, [], \"f69b\", \"M70 196.51L6.67 268.29A26.643 26.643 0 0 0 0 285.93V512h128V239.58l-38-43.07c-5.31-6.01-14.69-6.01-20 0zm563.33 71.78L570 196.51c-5.31-6.02-14.69-6.02-20 0l-38 43.07V512h128V285.93c0-6.5-2.37-12.77-6.67-17.64zM339.99 7.01c-11.69-9.35-28.29-9.35-39.98 0l-128 102.4A32.005 32.005 0 0 0 160 134.4V512h96v-92.57c0-31.88 21.78-61.43 53.25-66.55C349.34 346.35 384 377.13 384 416v96h96V134.4c0-9.72-4.42-18.92-12.01-24.99l-128-102.4zm52.07 215.55c1.98 3.15-.29 7.24-4 7.24h-38.94L324 269.79c-1.85 2.95-6.15 2.95-8 0l-25.12-39.98h-38.94c-3.72 0-5.98-4.09-4-7.24l19.2-30.56-19.2-30.56c-1.98-3.15.29-7.24 4-7.24h38.94l25.12-40c1.85-2.95 6.15-2.95 8 0l25.12 39.98h38.95c3.71 0 5.98 4.09 4 7.24L372.87 192l19.19 30.56z\"]\n};\nvar faSync = {\n prefix: 'fas',\n iconName: 'sync',\n icon: [512, 512, [], \"f021\", \"M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z\"]\n};\nvar faSyncAlt = {\n prefix: 'fas',\n iconName: 'sync-alt',\n icon: [512, 512, [], \"f2f1\", \"M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z\"]\n};\nvar faSyringe = {\n prefix: 'fas',\n iconName: 'syringe',\n icon: [512, 512, [], \"f48e\", \"M201.5 174.8l55.7 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-55.7-55.8-45.3 45.3 55.8 55.8c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L111 265.2l-26.4 26.4c-17.3 17.3-25.6 41.1-23 65.4l7.1 63.6L2.3 487c-3.1 3.1-3.1 8.2 0 11.3l11.3 11.3c3.1 3.1 8.2 3.1 11.3 0l66.3-66.3 63.6 7.1c23.9 2.6 47.9-5.4 65.4-23l181.9-181.9-135.7-135.7-64.9 65zm308.2-93.3L430.5 2.3c-3.1-3.1-8.2-3.1-11.3 0l-11.3 11.3c-3.1 3.1-3.1 8.2 0 11.3l28.3 28.3-45.3 45.3-56.6-56.6-17-17c-3.1-3.1-8.2-3.1-11.3 0l-33.9 33.9c-3.1 3.1-3.1 8.2 0 11.3l17 17L424.8 223l17 17c3.1 3.1 8.2 3.1 11.3 0l33.9-34c3.1-3.1 3.1-8.2 0-11.3l-73.5-73.5 45.3-45.3 28.3 28.3c3.1 3.1 8.2 3.1 11.3 0l11.3-11.3c3.1-3.2 3.1-8.2 0-11.4z\"]\n};\nvar faTable = {\n prefix: 'fas',\n iconName: 'table',\n icon: [512, 512, [], \"f0ce\", \"M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z\"]\n};\nvar faTableTennis = {\n prefix: 'fas',\n iconName: 'table-tennis',\n icon: [512, 512, [], \"f45d\", \"M496.2 296.5C527.7 218.7 512 126.2 449 63.1 365.1-21 229-21 145.1 63.1l-56 56.1 211.5 211.5c46.1-62.1 131.5-77.4 195.6-34.2zm-217.9 79.7L57.9 155.9c-27.3 45.3-21.7 105 17.3 144.1l34.5 34.6L6.7 424c-8.6 7.5-9.1 20.7-1 28.8l53.4 53.5c8 8.1 21.2 7.6 28.7-1L177.1 402l35.7 35.7c19.7 19.7 44.6 30.5 70.3 33.3-7.1-17-11-35.6-11-55.1-.1-13.8 2.5-27 6.2-39.7zM416 320c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z\"]\n};\nvar faTablet = {\n prefix: 'fas',\n iconName: 'tablet',\n icon: [448, 512, [], \"f10a\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z\"]\n};\nvar faTabletAlt = {\n prefix: 'fas',\n iconName: 'tablet-alt',\n icon: [448, 512, [], \"f3fa\", \"M400 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM224 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm176-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h328c6.6 0 12 5.4 12 12v312z\"]\n};\nvar faTablets = {\n prefix: 'fas',\n iconName: 'tablets',\n icon: [640, 512, [], \"f490\", \"M160 192C78.9 192 12.5 250.5.1 326.7c-.8 4.8 3.3 9.3 8.3 9.3h303.3c5 0 9.1-4.5 8.3-9.3C307.5 250.5 241.1 192 160 192zm151.6 176H8.4c-5 0-9.1 4.5-8.3 9.3C12.5 453.5 78.9 512 160 512s147.5-58.5 159.9-134.7c.8-4.8-3.3-9.3-8.3-9.3zM593.4 46.6c-56.5-56.5-144.2-61.4-206.9-16-4 2.9-4.3 8.9-.8 12.3L597 254.3c3.5 3.5 9.5 3.2 12.3-.8 45.5-62.7 40.6-150.4-15.9-206.9zM363 65.7c-3.5-3.5-9.5-3.2-12.3.8-45.4 62.7-40.5 150.4 15.9 206.9 56.5 56.5 144.2 61.4 206.9 15.9 4-2.9 4.3-8.9.8-12.3L363 65.7z\"]\n};\nvar faTachometerAlt = {\n prefix: 'fas',\n iconName: 'tachometer-alt',\n icon: [576, 512, [], \"f3fd\", \"M288 32C128.94 32 0 160.94 0 320c0 52.8 14.25 102.26 39.06 144.8 5.61 9.62 16.3 15.2 27.44 15.2h443c11.14 0 21.83-5.58 27.44-15.2C561.75 422.26 576 372.8 576 320c0-159.06-128.94-288-288-288zm0 64c14.71 0 26.58 10.13 30.32 23.65-1.11 2.26-2.64 4.23-3.45 6.67l-9.22 27.67c-5.13 3.49-10.97 6.01-17.64 6.01-17.67 0-32-14.33-32-32S270.33 96 288 96zM96 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm48-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm246.77-72.41l-61.33 184C343.13 347.33 352 364.54 352 384c0 11.72-3.38 22.55-8.88 32H232.88c-5.5-9.45-8.88-20.28-8.88-32 0-33.94 26.5-61.43 59.9-63.59l61.34-184.01c4.17-12.56 17.73-19.45 30.36-15.17 12.57 4.19 19.35 17.79 15.17 30.36zm14.66 57.2l15.52-46.55c3.47-1.29 7.13-2.23 11.05-2.23 17.67 0 32 14.33 32 32s-14.33 32-32 32c-11.38-.01-20.89-6.28-26.57-15.22zM480 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTag = {\n prefix: 'fas',\n iconName: 'tag',\n icon: [512, 512, [], \"f02b\", \"M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z\"]\n};\nvar faTags = {\n prefix: 'fas',\n iconName: 'tags',\n icon: [640, 512, [], \"f02c\", \"M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z\"]\n};\nvar faTape = {\n prefix: 'fas',\n iconName: 'tape',\n icon: [640, 512, [], \"f4db\", \"M224 192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm400 224H380.6c41.5-40.7 67.4-97.3 67.4-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h400c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400-64c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z\"]\n};\nvar faTasks = {\n prefix: 'fas',\n iconName: 'tasks',\n icon: [512, 512, [], \"f0ae\", \"M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faTaxi = {\n prefix: 'fas',\n iconName: 'taxi',\n icon: [512, 512, [], \"f1ba\", \"M462 241.64l-22-84.84c-9.6-35.2-41.6-60.8-76.8-60.8H352V64c0-17.67-14.33-32-32-32H192c-17.67 0-32 14.33-32 32v32h-11.2c-35.2 0-67.2 25.6-76.8 60.8l-22 84.84C21.41 248.04 0 273.47 0 304v48c0 23.63 12.95 44.04 32 55.12V448c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-32h256v32c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32v-40.88c19.05-11.09 32-31.5 32-55.12v-48c0-30.53-21.41-55.96-50-62.36zM96 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm20.55-112l17.2-66.36c2.23-8.16 9.59-13.64 15.06-13.64h214.4c5.47 0 12.83 5.48 14.85 12.86L395.45 240h-278.9zM416 352c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faTeeth = {\n prefix: 'fas',\n iconName: 'teeth',\n icon: [640, 512, [], \"f62e\", \"M544 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96V96c0-53.02-42.98-96-96-96zM160 368c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm144 120c0 30.93-25.07 56-56 56s-56-25.07-56-56v-56c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v56zm0-120c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-88c0-30.93 25.07-56 56-56s56 25.07 56 56v88zm128 128c0 26.51-21.49 48-48 48s-48-21.49-48-48v-64c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v64zm0-128c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-64c0-26.51 21.49-48 48-48s48 21.49 48 48v64z\"]\n};\nvar faTeethOpen = {\n prefix: 'fas',\n iconName: 'teeth-open',\n icon: [640, 512, [], \"f62f\", \"M544 0H96C42.98 0 0 42.98 0 96v64c0 35.35 28.66 64 64 64h512c35.34 0 64-28.65 64-64V96c0-53.02-42.98-96-96-96zM160 176c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm144 0c0 8.84-7.16 16-16 16h-80c-8.84 0-16-7.16-16-16v-56c0-30.93 25.07-56 56-56s56 25.07 56 56v56zm128 0c0 8.84-7.16 16-16 16h-64c-8.84 0-16-7.16-16-16v-32c0-26.51 21.49-48 48-48s48 21.49 48 48v32zm0 144H64c-35.34 0-64 28.65-64 64v32c0 53.02 42.98 96 96 96h448c53.02 0 96-42.98 96-96v-32c0-35.35-28.66-64-64-64zm-416 80c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32zm144-8c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm144 0c0 30.93-25.07 56-56 56s-56-25.07-56-56v-24c0-8.84 7.16-16 16-16h80c8.84 0 16 7.16 16 16v24zm128 8c0 26.51-21.49 48-48 48s-48-21.49-48-48v-32c0-8.84 7.16-16 16-16h64c8.84 0 16 7.16 16 16v32z\"]\n};\nvar faTemperatureHigh = {\n prefix: 'fas',\n iconName: 'temperature-high',\n icon: [512, 512, [], \"f769\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTemperatureLow = {\n prefix: 'fas',\n iconName: 'temperature-low',\n icon: [512, 512, [], \"f76b\", \"M416 0c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm-160-16C256 50.1 205.9 0 144 0S32 50.1 32 112v166.5C12.3 303.2 0 334 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-34-12.3-64.9-32-89.5V112zM144 448c-44.1 0-80-35.9-80-80 0-25.5 12.2-48.9 32-63.8V112c0-26.5 21.5-48 48-48s48 21.5 48 48v192.2c19.8 14.8 32 38.3 32 63.8 0 44.1-35.9 80-80 80zm16-125.1V304c0-8.8-7.2-16-16-16s-16 7.2-16 16v18.9c-18.6 6.6-32 24.2-32 45.1 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.5-32-45.1z\"]\n};\nvar faTenge = {\n prefix: 'fas',\n iconName: 'tenge',\n icon: [384, 512, [], \"f7d7\", \"M372 160H12c-6.6 0-12 5.4-12 12v56c0 6.6 5.4 12 12 12h140v228c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12V240h140c6.6 0 12-5.4 12-12v-56c0-6.6-5.4-12-12-12zm0-128H12C5.4 32 0 37.4 0 44v56c0 6.6 5.4 12 12 12h360c6.6 0 12-5.4 12-12V44c0-6.6-5.4-12-12-12z\"]\n};\nvar faTerminal = {\n prefix: 'fas',\n iconName: 'terminal',\n icon: [640, 512, [], \"f120\", \"M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z\"]\n};\nvar faTextHeight = {\n prefix: 'fas',\n iconName: 'text-height',\n icon: [576, 512, [], \"f034\", \"M304 32H16A16 16 0 0 0 0 48v96a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32h56v304H80a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-40V112h56v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm256 336h-48V144h48c14.31 0 21.33-17.31 11.31-27.31l-80-80a16 16 0 0 0-22.62 0l-80 80C379.36 126 384.36 144 400 144h48v224h-48c-14.31 0-21.32 17.31-11.31 27.31l80 80a16 16 0 0 0 22.62 0l80-80C580.64 386 575.64 368 560 368z\"]\n};\nvar faTextWidth = {\n prefix: 'fas',\n iconName: 'text-width',\n icon: [448, 512, [], \"f035\", \"M432 32H16A16 16 0 0 0 0 48v80a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h120v112h-24a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-24V112h120v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zm-68.69 260.69C354 283.36 336 288.36 336 304v48H112v-48c0-14.31-17.31-21.32-27.31-11.31l-80 80a16 16 0 0 0 0 22.62l80 80C94 484.64 112 479.64 112 464v-48h224v48c0 14.31 17.31 21.33 27.31 11.31l80-80a16 16 0 0 0 0-22.62z\"]\n};\nvar faTh = {\n prefix: 'fas',\n iconName: 'th',\n icon: [512, 512, [], \"f00a\", \"M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z\"]\n};\nvar faThLarge = {\n prefix: 'fas',\n iconName: 'th-large',\n icon: [512, 512, [], \"f009\", \"M296 32h192c13.255 0 24 10.745 24 24v160c0 13.255-10.745 24-24 24H296c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24zm-80 0H24C10.745 32 0 42.745 0 56v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zM0 296v160c0 13.255 10.745 24 24 24h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm296 184h192c13.255 0 24-10.745 24-24V296c0-13.255-10.745-24-24-24H296c-13.255 0-24 10.745-24 24v160c0 13.255 10.745 24 24 24z\"]\n};\nvar faThList = {\n prefix: 'fas',\n iconName: 'th-list',\n icon: [512, 512, [], \"f00b\", \"M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z\"]\n};\nvar faTheaterMasks = {\n prefix: 'fas',\n iconName: 'theater-masks',\n icon: [640, 512, [], \"f630\", \"M206.86 245.15c-35.88 10.45-59.95 41.2-57.53 74.1 11.4-12.72 28.81-23.7 49.9-30.92l7.63-43.18zM95.81 295L64.08 115.49c-.29-1.62.28-2.62.24-2.65 57.76-32.06 123.12-49.01 189.01-49.01 1.61 0 3.23.17 4.85.19 13.95-13.47 31.73-22.83 51.59-26 18.89-3.02 38.05-4.55 57.18-5.32-9.99-13.95-24.48-24.23-41.77-27C301.27 1.89 277.24 0 253.32 0 176.66 0 101.02 19.42 33.2 57.06 9.03 70.48-3.92 98.48 1.05 126.58l31.73 179.51c14.23 80.52 136.33 142.08 204.45 142.08 3.59 0 6.75-.46 10.01-.8-13.52-17.08-28.94-40.48-39.5-67.58-47.61-12.98-106.06-51.62-111.93-84.79zm97.55-137.46c-.73-4.12-2.23-7.87-4.07-11.4-8.25 8.91-20.67 15.75-35.32 18.32-14.65 2.58-28.67.4-39.48-5.17-.52 3.94-.64 7.98.09 12.1 3.84 21.7 24.58 36.19 46.34 32.37 21.75-3.82 36.28-24.52 32.44-46.22zM606.8 120.9c-88.98-49.38-191.43-67.41-291.98-51.35-27.31 4.36-49.08 26.26-54.04 54.36l-31.73 179.51c-15.39 87.05 95.28 196.27 158.31 207.35 63.03 11.09 204.47-53.79 219.86-140.84l31.73-179.51c4.97-28.11-7.98-56.11-32.15-69.52zm-273.24 96.8c3.84-21.7 24.58-36.19 46.34-32.36 21.76 3.83 36.28 24.52 32.45 46.22-.73 4.12-2.23 7.87-4.07 11.4-8.25-8.91-20.67-15.75-35.32-18.32-14.65-2.58-28.67-.4-39.48 5.17-.53-3.95-.65-7.99.08-12.11zm70.47 198.76c-55.68-9.79-93.52-59.27-89.04-112.9 20.6 25.54 56.21 46.17 99.49 53.78 43.28 7.61 83.82.37 111.93-16.6-14.18 51.94-66.71 85.51-122.38 75.72zm130.3-151.34c-8.25-8.91-20.68-15.75-35.33-18.32-14.65-2.58-28.67-.4-39.48 5.17-.52-3.94-.64-7.98.09-12.1 3.84-21.7 24.58-36.19 46.34-32.37 21.75 3.83 36.28 24.52 32.45 46.22-.73 4.13-2.23 7.88-4.07 11.4z\"]\n};\nvar faThermometer = {\n prefix: 'fas',\n iconName: 'thermometer',\n icon: [512, 512, [], \"f491\", \"M476.8 20.4c-37.5-30.7-95.5-26.3-131.9 10.2l-45.7 46 50.5 50.5c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.4-50.5-45.1 45.4 50.3 50.4c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L209 167.4l-45.1 45.4L214 263c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-50.1-50.2L96 281.1V382L7 471c-9.4 9.4-9.4 24.6 0 33.9 9.4 9.4 24.6 9.4 33.9 0l89-89h99.9L484 162.6c34.9-34.9 42.2-101.5-7.2-142.2z\"]\n};\nvar faThermometerEmpty = {\n prefix: 'fas',\n iconName: 'thermometer-empty',\n icon: [256, 512, [], \"f2cb\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerFull = {\n prefix: 'fas',\n iconName: 'thermometer-full',\n icon: [256, 512, [], \"f2c7\", \"M224 96c0-53.019-42.981-96-96-96S32 42.981 32 96v203.347C12.225 321.756.166 351.136.002 383.333c-.359 70.303 56.787 128.176 127.089 128.664.299.002.61.003.909.003 70.698 0 128-57.304 128-128 0-32.459-12.088-62.09-32-84.653V96zm-96 368l-.576-.002c-43.86-.304-79.647-36.544-79.423-80.42.173-33.98 19.266-51.652 31.999-66.08V96c0-26.467 21.533-48 48-48s48 21.533 48 48v221.498c12.63 14.312 32 32.164 32 66.502 0 44.112-35.888 80-80 80zm64-80c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V96c0-17.673 14.327-32 32-32s32 14.327 32 32v232.583c19.124 11.068 32 31.732 32 55.417z\"]\n};\nvar faThermometerHalf = {\n prefix: 'fas',\n iconName: 'thermometer-half',\n icon: [256, 512, [], \"f2c9\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V224c0-17.673 14.327-32 32-32s32 14.327 32 32v104.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerQuarter = {\n prefix: 'fas',\n iconName: 'thermometer-quarter',\n icon: [256, 512, [], \"f2ca\", \"M192 384c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-23.685 12.876-44.349 32-55.417V288c0-17.673 14.327-32 32-32s32 14.327 32 32v40.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThermometerThreeQuarters = {\n prefix: 'fas',\n iconName: 'thermometer-three-quarters',\n icon: [256, 512, [], \"f2c8\", \"M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z\"]\n};\nvar faThumbsDown = {\n prefix: 'fas',\n iconName: 'thumbs-down',\n icon: [512, 512, [], \"f165\", \"M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z\"]\n};\nvar faThumbsUp = {\n prefix: 'fas',\n iconName: 'thumbs-up',\n icon: [512, 512, [], \"f164\", \"M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z\"]\n};\nvar faThumbtack = {\n prefix: 'fas',\n iconName: 'thumbtack',\n icon: [384, 512, [], \"f08d\", \"M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z\"]\n};\nvar faTicketAlt = {\n prefix: 'fas',\n iconName: 'ticket-alt',\n icon: [576, 512, [], \"f3ff\", \"M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z\"]\n};\nvar faTimes = {\n prefix: 'fas',\n iconName: 'times',\n icon: [352, 512, [], \"f00d\", \"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\"]\n};\nvar faTimesCircle = {\n prefix: 'fas',\n iconName: 'times-circle',\n icon: [512, 512, [], \"f057\", \"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z\"]\n};\nvar faTint = {\n prefix: 'fas',\n iconName: 'tint',\n icon: [352, 512, [], \"f043\", \"M205.22 22.09c-7.94-28.78-49.44-30.12-58.44 0C100.01 179.85 0 222.72 0 333.91 0 432.35 78.72 512 176 512s176-79.65 176-178.09c0-111.75-99.79-153.34-146.78-311.82zM176 448c-61.75 0-112-50.25-112-112 0-8.84 7.16-16 16-16s16 7.16 16 16c0 44.11 35.89 80 80 80 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"]\n};\nvar faTintSlash = {\n prefix: 'fas',\n iconName: 'tint-slash',\n icon: [640, 512, [], \"f5c7\", \"M633.82 458.1L494.97 350.78c.52-5.57 1.03-11.16 1.03-16.87 0-111.76-99.79-153.34-146.78-311.82-7.94-28.78-49.44-30.12-58.44 0-15.52 52.34-36.87 91.96-58.49 125.68L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM144 333.91C144 432.35 222.72 512 320 512c44.71 0 85.37-16.96 116.4-44.7L162.72 255.78c-11.41 23.5-18.72 48.35-18.72 78.13z\"]\n};\nvar faTired = {\n prefix: 'fas',\n iconName: 'tired',\n icon: [496, 512, [], \"f5c8\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm33.8 189.7l80-48c11.6-6.9 24 7.7 15.4 18L343.6 208l33.6 40.3c8.7 10.4-3.9 24.8-15.4 18l-80-48c-7.7-4.7-7.7-15.9 0-20.6zm-163-30c-8.6-10.3 3.8-24.9 15.4-18l80 48c7.8 4.7 7.8 15.9 0 20.6l-80 48c-11.5 6.8-24-7.6-15.4-18l33.6-40.3-33.6-40.3zM248 288c51.9 0 115.3 43.8 123.2 106.7 1.7 13.6-8 24.6-17.7 20.4-25.9-11.1-64.4-17.4-105.5-17.4s-79.6 6.3-105.5 17.4c-9.8 4.2-19.4-7-17.7-20.4C132.7 331.8 196.1 288 248 288z\"]\n};\nvar faToggleOff = {\n prefix: 'fas',\n iconName: 'toggle-off',\n icon: [576, 512, [], \"f204\", \"M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z\"]\n};\nvar faToggleOn = {\n prefix: 'fas',\n iconName: 'toggle-on',\n icon: [576, 512, [], \"f205\", \"M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z\"]\n};\nvar faToilet = {\n prefix: 'fas',\n iconName: 'toilet',\n icon: [384, 512, [], \"f7d8\", \"M368 48c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16H16C7.2 0 0 7.2 0 16v16c0 8.8 7.2 16 16 16h16v156.7C11.8 214.8 0 226.9 0 240c0 67.2 34.6 126.2 86.8 160.5l-21.4 70.2C59.1 491.2 74.5 512 96 512h192c21.5 0 36.9-20.8 30.6-41.3l-21.4-70.2C349.4 366.2 384 307.2 384 240c0-13.1-11.8-25.2-32-35.3V48h16zM80 72c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H88c-4.4 0-8-3.6-8-8V72zm112 200c-77.1 0-139.6-14.3-139.6-32s62.5-32 139.6-32 139.6 14.3 139.6 32-62.5 32-139.6 32z\"]\n};\nvar faToiletPaper = {\n prefix: 'fas',\n iconName: 'toilet-paper',\n icon: [576, 512, [], \"f71e\", \"M128 0C74.98 0 32 85.96 32 192v172.07c0 41.12-9.8 62.77-31.17 126.87C-2.62 501.3 5.09 512 16.01 512h280.92c13.77 0 26-8.81 30.36-21.88 12.83-38.48 24.71-72.4 24.71-126.05V192c0-83.6 23.67-153.52 60.44-192H128zM96 224c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm64 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zM480 0c-53.02 0-96 85.96-96 192s42.98 192 96 192 96-85.96 96-192S533.02 0 480 0zm0 256c-17.67 0-32-28.65-32-64s14.33-64 32-64 32 28.65 32 64-14.33 64-32 64z\"]\n};\nvar faToiletPaperSlash = {\n prefix: 'fas',\n iconName: 'toilet-paper-slash',\n icon: [640, 512, [], \"e072\", \"M64,192V364.13c0,41.12-9.75,62.75-31.12,126.87A16,16,0,0,0,48,512H328.86a31.87,31.87,0,0,0,30.38-21.87c9.31-27.83,18-53.35,22.18-85.55l-316-244.25C64.53,170.66,64,181.19,64,192ZM633.82,458.09l-102-78.81C575.28,360.91,608,284.32,608,192,608,86,565,0,512,0s-96,86-96,192c0,42,7,80.4,18.43,112L384,265V192c0-83.62,23.63-153.5,60.5-192H160c-23.33,0-44.63,16.83-61.26,44.53L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.45A16,16,0,0,0,6.18,53.91L594.54,508.63A16,16,0,0,0,617,505.81l19.64-25.26A16,16,0,0,0,633.82,458.09ZM512,256c-17.63,0-32-28.62-32-64s14.37-64,32-64,32,28.63,32,64S529.62,256,512,256Z\"]\n};\nvar faToolbox = {\n prefix: 'fas',\n iconName: 'toolbox',\n icon: [512, 512, [], \"f552\", \"M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z\"]\n};\nvar faTools = {\n prefix: 'fas',\n iconName: 'tools',\n icon: [512, 512, [], \"f7d9\", \"M501.1 395.7L384 278.6c-23.1-23.1-57.6-27.6-85.4-13.9L192 158.1V96L64 0 0 64l96 128h62.1l106.6 106.6c-13.6 27.8-9.2 62.3 13.9 85.4l117.1 117.1c14.6 14.6 38.2 14.6 52.7 0l52.7-52.7c14.5-14.6 14.5-38.2 0-52.7zM331.7 225c28.3 0 54.9 11 74.9 31l19.4 19.4c15.8-6.9 30.8-16.5 43.8-29.5 37.1-37.1 49.7-89.3 37.9-136.7-2.2-9-13.5-12.1-20.1-5.5l-74.4 74.4-67.9-11.3L334 98.9l74.4-74.4c6.6-6.6 3.4-17.9-5.7-20.2-47.4-11.7-99.6.9-136.6 37.9-28.5 28.5-41.9 66.1-41.2 103.6l82.1 82.1c8.1-1.9 16.5-2.9 24.7-2.9zm-103.9 82l-56.7-56.7L18.7 402.8c-25 25-25 65.5 0 90.5s65.5 25 90.5 0l123.6-123.6c-7.6-19.9-9.9-41.6-5-62.7zM64 472c-13.2 0-24-10.8-24-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13.2-10.7 24-24 24z\"]\n};\nvar faTooth = {\n prefix: 'fas',\n iconName: 'tooth',\n icon: [448, 512, [], \"f5c9\", \"M443.98 96.25c-11.01-45.22-47.11-82.06-92.01-93.72-32.19-8.36-63 5.1-89.14 24.33-3.25 2.39-6.96 3.73-10.5 5.48l28.32 18.21c7.42 4.77 9.58 14.67 4.8 22.11-4.46 6.95-14.27 9.86-22.11 4.8L162.83 12.84c-20.7-10.85-43.38-16.4-66.81-10.31-44.9 11.67-81 48.5-92.01 93.72-10.13 41.62-.42 80.81 21.5 110.43 23.36 31.57 32.68 68.66 36.29 107.35 4.4 47.16 10.33 94.16 20.94 140.32l7.8 33.95c3.19 13.87 15.49 23.7 29.67 23.7 13.97 0 26.15-9.55 29.54-23.16l34.47-138.42c4.56-18.32 20.96-31.16 39.76-31.16s35.2 12.85 39.76 31.16l34.47 138.42c3.39 13.61 15.57 23.16 29.54 23.16 14.18 0 26.48-9.83 29.67-23.7l7.8-33.95c10.61-46.15 16.53-93.16 20.94-140.32 3.61-38.7 12.93-75.78 36.29-107.35 21.95-29.61 31.66-68.8 21.53-110.43z\"]\n};\nvar faTorah = {\n prefix: 'fas',\n iconName: 'torah',\n icon: [640, 512, [], \"f6a0\", \"M320.05 366.48l17.72-29.64h-35.46zm99.21-166H382.4l18.46 30.82zM48 0C21.49 0 0 14.33 0 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32C96 14.33 74.51 0 48 0zm172.74 311.5h36.85l-18.46-30.82zm161.71 0h36.86l-18.45-30.8zM128 464h384V48H128zm66.77-278.13a21.22 21.22 0 0 1 18.48-10.71h59.45l29.13-48.71a21.13 21.13 0 0 1 18.22-10.37A20.76 20.76 0 0 1 338 126.29l29.25 48.86h59.52a21.12 21.12 0 0 1 18.1 32L415.63 256 445 305a20.69 20.69 0 0 1 .24 21.12 21.25 21.25 0 0 1-18.48 10.72h-59.47l-29.13 48.7a21.13 21.13 0 0 1-18.16 10.4 20.79 20.79 0 0 1-18-10.22l-29.25-48.88h-59.5a21.11 21.11 0 0 1-18.1-32L224.36 256 195 207a20.7 20.7 0 0 1-.23-21.13zM592 0c-26.51 0-48 14.33-48 32v448c0 17.67 21.49 32 48 32s48-14.33 48-32V32c0-17.67-21.49-32-48-32zM320 145.53l-17.78 29.62h35.46zm-62.45 55h-36.81l18.44 30.8zm29.58 111h65.79L386.09 256l-33.23-55.52h-65.79L253.9 256z\"]\n};\nvar faToriiGate = {\n prefix: 'fas',\n iconName: 'torii-gate',\n icon: [512, 512, [], \"f6a1\", \"M376.45 32h-240.9A303.17 303.17 0 0 1 0 0v96c0 17.67 14.33 32 32 32h32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h48v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h256v240c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V256h48c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16h-48v-64h32c17.67 0 32-14.33 32-32V0a303.17 303.17 0 0 1-135.55 32zM128 128h96v64h-96v-64zm256 64h-96v-64h96v64z\"]\n};\nvar faTractor = {\n prefix: 'fas',\n iconName: 'tractor',\n icon: [640, 512, [], \"f722\", \"M528 336c-48.6 0-88 39.4-88 88s39.4 88 88 88 88-39.4 88-88-39.4-88-88-88zm0 112c-13.23 0-24-10.77-24-24s10.77-24 24-24 24 10.77 24 24-10.77 24-24 24zm80-288h-64v-40.2c0-14.12 4.7-27.76 13.15-38.84 4.42-5.8 3.55-14.06-1.32-19.49L534.2 37.3c-6.66-7.45-18.32-6.92-24.7.78C490.58 60.9 480 89.81 480 119.8V160H377.67L321.58 29.14A47.914 47.914 0 0 0 277.45 0H144c-26.47 0-48 21.53-48 48v146.52c-8.63-6.73-20.96-6.46-28.89 1.47L36 227.1c-8.59 8.59-8.59 22.52 0 31.11l5.06 5.06c-4.99 9.26-8.96 18.82-11.91 28.72H22c-12.15 0-22 9.85-22 22v44c0 12.15 9.85 22 22 22h7.14c2.96 9.91 6.92 19.46 11.91 28.73l-5.06 5.06c-8.59 8.59-8.59 22.52 0 31.11L67.1 476c8.59 8.59 22.52 8.59 31.11 0l5.06-5.06c9.26 4.99 18.82 8.96 28.72 11.91V490c0 12.15 9.85 22 22 22h44c12.15 0 22-9.85 22-22v-7.14c9.9-2.95 19.46-6.92 28.72-11.91l5.06 5.06c8.59 8.59 22.52 8.59 31.11 0l31.11-31.11c8.59-8.59 8.59-22.52 0-31.11l-5.06-5.06c4.99-9.26 8.96-18.82 11.91-28.72H330c12.15 0 22-9.85 22-22v-6h80.54c21.91-28.99 56.32-48 95.46-48 18.64 0 36.07 4.61 51.8 12.2l50.82-50.82c6-6 9.37-14.14 9.37-22.63V192c.01-17.67-14.32-32-31.99-32zM176 416c-44.18 0-80-35.82-80-80s35.82-80 80-80 80 35.82 80 80-35.82 80-80 80zm22-256h-38V64h106.89l41.15 96H198z\"]\n};\nvar faTrademark = {\n prefix: 'fas',\n iconName: 'trademark',\n icon: [640, 512, [], \"f25c\", \"M260.6 96H12c-6.6 0-12 5.4-12 12v43.1c0 6.6 5.4 12 12 12h85.1V404c0 6.6 5.4 12 12 12h54.3c6.6 0 12-5.4 12-12V163.1h85.1c6.6 0 12-5.4 12-12V108c.1-6.6-5.3-12-11.9-12zM640 403l-24-296c-.5-6.2-5.7-11-12-11h-65.4c-5.1 0-9.7 3.3-11.3 8.1l-43.8 127.1c-7.2 20.6-16.1 52.8-16.1 52.8h-.9s-8.9-32.2-16.1-52.8l-43.8-127.1c-1.7-4.8-6.2-8.1-11.3-8.1h-65.4c-6.2 0-11.4 4.8-12 11l-24.4 296c-.6 7 4.9 13 12 13H360c6.3 0 11.5-4.9 12-11.2l9.1-132.9c1.8-24.2 0-53.7 0-53.7h.9s10.7 33.6 17.9 53.7l30.7 84.7c1.7 4.7 6.2 7.9 11.3 7.9h50.3c5.1 0 9.6-3.2 11.3-7.9l30.7-84.7c7.2-20.1 17.9-53.7 17.9-53.7h.9s-1.8 29.5 0 53.7l9.1 132.9c.4 6.3 5.7 11.2 12 11.2H628c7 0 12.5-6 12-13z\"]\n};\nvar faTrafficLight = {\n prefix: 'fas',\n iconName: 'traffic-light',\n icon: [384, 512, [], \"f637\", \"M384 192h-64v-37.88c37.2-13.22 64-48.38 64-90.12h-64V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v32H0c0 41.74 26.8 76.9 64 90.12V192H0c0 41.74 26.8 76.9 64 90.12V320H0c0 42.84 28.25 78.69 66.99 91.05C79.42 468.72 130.6 512 192 512s112.58-43.28 125.01-100.95C355.75 398.69 384 362.84 384 320h-64v-37.88c37.2-13.22 64-48.38 64-90.12zM192 416c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm0-128c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTrailer = {\n prefix: 'fas',\n iconName: 'trailer',\n icon: [640, 512, [], \"e041\", \"M624,320H544V80a16,16,0,0,0-16-16H16A16,16,0,0,0,0,80V368a16,16,0,0,0,16,16H65.61c7.83-54.21,54-96,110.39-96s102.56,41.79,110.39,96H624a16,16,0,0,0,16-16V336A16,16,0,0,0,624,320ZM96,243.68a176.29,176.29,0,0,0-32,20.71V136a8,8,0,0,1,8-8H88a8,8,0,0,1,8,8Zm96-18.54c-5.31-.49-10.57-1.14-16-1.14s-10.69.65-16,1.14V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,39.25a176.29,176.29,0,0,0-32-20.71V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8ZM384,320H352V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm96,0H448V136a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8Zm-304,0a80,80,0,1,0,80,80A80,80,0,0,0,176,320Zm0,112a32,32,0,1,1,32-32A32,32,0,0,1,176,432Z\"]\n};\nvar faTrain = {\n prefix: 'fas',\n iconName: 'train',\n icon: [448, 512, [], \"f238\", \"M448 96v256c0 51.815-61.624 96-130.022 96l62.98 49.721C386.905 502.417 383.562 512 376 512H72c-7.578 0-10.892-9.594-4.957-14.279L130.022 448C61.82 448 0 403.954 0 352V96C0 42.981 64 0 128 0h192c65 0 128 42.981 128 96zm-48 136V120c0-13.255-10.745-24-24-24H72c-13.255 0-24 10.745-24 24v112c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24zm-176 64c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56z\"]\n};\nvar faTram = {\n prefix: 'fas',\n iconName: 'tram',\n icon: [512, 512, [], \"f7da\", \"M288 64c17.7 0 32-14.3 32-32S305.7 0 288 0s-32 14.3-32 32 14.3 32 32 32zm223.5-12.1c-2.3-8.6-11-13.6-19.6-11.3l-480 128c-8.5 2.3-13.6 11-11.3 19.6C2.5 195.3 8.9 200 16 200c1.4 0 2.8-.2 4.1-.5L240 140.8V224H64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H272v-91.7l228.1-60.8c8.6-2.3 13.6-11.1 11.4-19.6zM176 384H80v-96h96v96zm160-96h96v96h-96v-96zm-32 0v96h-96v-96h96zM192 96c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z\"]\n};\nvar faTransgender = {\n prefix: 'fas',\n iconName: 'transgender',\n icon: [384, 512, [], \"f224\", \"M372 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C198.5 104.1 172.2 96 144 96 64.5 96 0 160.5 0 240c0 68.5 47.9 125.9 112 140.4V408H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM144 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTransgenderAlt = {\n prefix: 'fas',\n iconName: 'transgender-alt',\n icon: [480, 512, [], \"f225\", \"M468 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-80.7 80.7C294.5 104.1 268.2 96 240 96c-28.2 0-54.5 8.1-76.7 22.1l-16.5-16.5 19.8-19.8c4.7-4.7 4.7-12.3 0-17l-28.3-28.3c-4.7-4.7-12.3-4.7-17 0l-19.8 19.8-19-19 16.9-16.9C107.1 12.9 101.7 0 91 0H12C5.4 0 0 5.4 0 12v79c0 10.7 12.9 16 20.5 8.5l16.9-16.9 19 19-19.8 19.8c-4.7 4.7-4.7 12.3 0 17l28.3 28.3c4.7 4.7 12.3 4.7 17 0l19.8-19.8 16.5 16.5C104.1 185.5 96 211.8 96 240c0 68.5 47.9 125.9 112 140.4V408h-36c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v28c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-28h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-27.6c64.1-14.6 112-71.9 112-140.4 0-28.2-8.1-54.5-22.1-76.7l80.7-80.7 16.9 16.9c7.6 7.6 20.5 2.2 20.5-8.5V12c0-6.6-5.4-12-12-12zM240 320c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faTrash = {\n prefix: 'fas',\n iconName: 'trash',\n icon: [448, 512, [], \"f1f8\", \"M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z\"]\n};\nvar faTrashAlt = {\n prefix: 'fas',\n iconName: 'trash-alt',\n icon: [448, 512, [], \"f2ed\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestore = {\n prefix: 'fas',\n iconName: 'trash-restore',\n icon: [448, 512, [], \"f829\", \"M53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32zm70.11-175.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTrashRestoreAlt = {\n prefix: 'fas',\n iconName: 'trash-restore-alt',\n icon: [448, 512, [], \"f82a\", \"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm91.31-172.8l89.38-94.26a15.41 15.41 0 0 1 22.62 0l89.38 94.26c10.08 10.62 2.94 28.8-11.32 28.8H256v112a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16V320h-57.37c-14.26 0-21.4-18.18-11.32-28.8zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z\"]\n};\nvar faTree = {\n prefix: 'fas',\n iconName: 'tree',\n icon: [384, 512, [], \"f1bb\", \"M378.31 378.49L298.42 288h30.63c9.01 0 16.98-5 20.78-13.06 3.8-8.04 2.55-17.26-3.28-24.05L268.42 160h28.89c9.1 0 17.3-5.35 20.86-13.61 3.52-8.13 1.86-17.59-4.24-24.08L203.66 4.83c-6.03-6.45-17.28-6.45-23.32 0L70.06 122.31c-6.1 6.49-7.75 15.95-4.24 24.08C69.38 154.65 77.59 160 86.69 160h28.89l-78.14 90.91c-5.81 6.78-7.06 15.99-3.27 24.04C37.97 283 45.93 288 54.95 288h30.63L5.69 378.49c-6 6.79-7.36 16.09-3.56 24.26 3.75 8.05 12 13.25 21.01 13.25H160v24.45l-30.29 48.4c-5.32 10.64 2.42 23.16 14.31 23.16h95.96c11.89 0 19.63-12.52 14.31-23.16L224 440.45V416h136.86c9.01 0 17.26-5.2 21.01-13.25 3.8-8.17 2.44-17.47-3.56-24.26z\"]\n};\nvar faTrophy = {\n prefix: 'fas',\n iconName: 'trophy',\n icon: [576, 512, [], \"f091\", \"M552 64H448V24c0-13.3-10.7-24-24-24H152c-13.3 0-24 10.7-24 24v40H24C10.7 64 0 74.7 0 88v56c0 35.7 22.5 72.4 61.9 100.7 31.5 22.7 69.8 37.1 110 41.7C203.3 338.5 240 360 240 360v72h-48c-35.3 0-64 20.7-64 56v12c0 6.6 5.4 12 12 12h296c6.6 0 12-5.4 12-12v-12c0-35.3-28.7-56-64-56h-48v-72s36.7-21.5 68.1-73.6c40.3-4.6 78.6-19 110-41.7 39.3-28.3 61.9-65 61.9-100.7V88c0-13.3-10.7-24-24-24zM99.3 192.8C74.9 175.2 64 155.6 64 144v-16h64.2c1 32.6 5.8 61.2 12.8 86.2-15.1-5.2-29.2-12.4-41.7-21.4zM512 144c0 16.1-17.7 36.1-35.3 48.8-12.5 9-26.7 16.2-41.8 21.4 7-25 11.8-53.6 12.8-86.2H512v16z\"]\n};\nvar faTruck = {\n prefix: 'fas',\n iconName: 'truck',\n icon: [640, 512, [], \"f0d1\", \"M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z\"]\n};\nvar faTruckLoading = {\n prefix: 'fas',\n iconName: 'truck-loading',\n icon: [640, 512, [], \"f4de\", \"M50.2 375.6c2.3 8.5 11.1 13.6 19.6 11.3l216.4-58c8.5-2.3 13.6-11.1 11.3-19.6l-49.7-185.5c-2.3-8.5-11.1-13.6-19.6-11.3L151 133.3l24.8 92.7-61.8 16.5-24.8-92.7-77.3 20.7C3.4 172.8-1.7 181.6.6 190.1l49.6 185.5zM384 0c-17.7 0-32 14.3-32 32v323.6L5.9 450c-4.3 1.2-6.8 5.6-5.6 9.8l12.6 46.3c1.2 4.3 5.6 6.8 9.8 5.6l393.7-107.4C418.8 464.1 467.6 512 528 512c61.9 0 112-50.1 112-112V0H384zm144 448c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z\"]\n};\nvar faTruckMonster = {\n prefix: 'fas',\n iconName: 'truck-monster',\n icon: [640, 512, [], \"f63b\", \"M624 224h-16v-64c0-17.67-14.33-32-32-32h-73.6L419.22 24.02A64.025 64.025 0 0 0 369.24 0H256c-17.67 0-32 14.33-32 32v96H48c-8.84 0-16 7.16-16 16v80H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h16.72c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64h65.45c29.21-38.65 75.1-64 127.28-64s98.07 25.35 127.28 64H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zm-336-96V64h81.24l51.2 64H288zm304 224h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 512 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67A110.85 110.85 0 0 0 373.2 352H368c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32c-.02-8.84-7.18-16-16.02-16zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm-208-80h-5.2c-2.2-7.33-5.07-14.28-8.65-20.89l3.67-3.67c6.25-6.25 6.25-16.38 0-22.63l-22.63-22.63c-6.25-6.25-16.38-6.25-22.63 0l-3.67 3.67A110.85 110.85 0 0 0 192 277.2V272c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v5.2c-7.33 2.2-14.28 5.07-20.89 8.65l-3.67-3.67c-6.25-6.25-16.38-6.25-22.63 0L58.18 304.8c-6.25 6.25-6.25 16.38 0 22.63l3.67 3.67a110.85 110.85 0 0 0-8.65 20.89H48c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h5.2c2.2 7.33 5.07 14.28 8.65 20.89l-3.67 3.67c-6.25 6.25-6.25 16.38 0 22.63l22.63 22.63c6.25 6.25 16.38 6.25 22.63 0l3.67-3.67c6.61 3.57 13.57 6.45 20.9 8.65v5.2c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-5.2c7.33-2.2 14.28-5.07 20.9-8.65l3.67 3.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.25-6.25 6.25-16.38 0-22.63l-3.67-3.67a110.85 110.85 0 0 0 8.65-20.89h5.2c8.84 0 16-7.16 16-16v-32C288 359.16 280.84 352 272 352zm-112 80c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48z\"]\n};\nvar faTruckMoving = {\n prefix: 'fas',\n iconName: 'truck-moving',\n icon: [640, 512, [], \"f4df\", \"M621.3 237.3l-58.5-58.5c-12-12-28.3-18.7-45.3-18.7H480V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v336c0 44.2 35.8 80 80 80 26.3 0 49.4-12.9 64-32.4 14.6 19.6 37.7 32.4 64 32.4 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1.1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H624c8.8 0 16-7.2 16-16v-85.5c0-17-6.7-33.2-18.7-45.2zM80 432c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm128 0c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm272-224h37.5c4.3 0 8.3 1.7 11.3 4.7l43.3 43.3H480v-48zm48 224c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z\"]\n};\nvar faTruckPickup = {\n prefix: 'fas',\n iconName: 'truck-pickup',\n icon: [640, 512, [], \"f63c\", \"M624 288h-16v-64c0-17.67-14.33-32-32-32h-48L419.22 56.02A64.025 64.025 0 0 0 369.24 32H256c-17.67 0-32 14.33-32 32v128H64c-17.67 0-32 14.33-32 32v64H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h49.61c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16h67.23c-.76 5.27-1.61 10.52-1.61 16 0 61.86 50.14 112 112 112s112-50.14 112-112c0-5.48-.85-10.73-1.61-16H624c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM288 96h81.24l76.8 96H288V96zM176 416c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48zm288 0c-26.47 0-48-21.53-48-48s21.53-48 48-48 48 21.53 48 48-21.53 48-48 48z\"]\n};\nvar faTshirt = {\n prefix: 'fas',\n iconName: 'tshirt',\n icon: [640, 512, [], \"f553\", \"M631.2 96.5L436.5 0C416.4 27.8 371.9 47.2 320 47.2S223.6 27.8 203.5 0L8.8 96.5c-7.9 4-11.1 13.6-7.2 21.5l57.2 114.5c4 7.9 13.6 11.1 21.5 7.2l56.6-27.7c10.6-5.2 23 2.5 23 14.4V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V226.3c0-11.8 12.4-19.6 23-14.4l56.6 27.7c7.9 4 17.5.8 21.5-7.2L638.3 118c4-7.9.8-17.6-7.1-21.5z\"]\n};\nvar faTty = {\n prefix: 'fas',\n iconName: 'tty',\n icon: [512, 512, [], \"f1e4\", \"M5.37 103.822c138.532-138.532 362.936-138.326 501.262 0 6.078 6.078 7.074 15.496 2.583 22.681l-43.214 69.138a18.332 18.332 0 0 1-22.356 7.305l-86.422-34.569a18.335 18.335 0 0 1-11.434-18.846L351.741 90c-62.145-22.454-130.636-21.986-191.483 0l5.953 59.532a18.331 18.331 0 0 1-11.434 18.846l-86.423 34.568a18.334 18.334 0 0 1-22.356-7.305L2.787 126.502a18.333 18.333 0 0 1 2.583-22.68zM96 308v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H92c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zM96 500v-40c0-6.627-5.373-12-12-12H44c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H140c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z\"]\n};\nvar faTv = {\n prefix: 'fas',\n iconName: 'tv',\n icon: [640, 512, [], \"f26c\", \"M592 0H48A48 48 0 0 0 0 48v320a48 48 0 0 0 48 48h240v32H112a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H352v-32h240a48 48 0 0 0 48-48V48a48 48 0 0 0-48-48zm-16 352H64V64h512z\"]\n};\nvar faUmbrella = {\n prefix: 'fas',\n iconName: 'umbrella',\n icon: [576, 512, [], \"f0e9\", \"M575.7 280.8C547.1 144.5 437.3 62.6 320 49.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v17.9C138.3 62.6 29.5 144.5.3 280.8c-2.2 10.1 8.5 21.3 18.7 11.4 52-55 107.7-52.4 158.6 37 5.3 9.5 14.9 8.6 19.7 0 20.2-35.4 44.9-73.2 90.7-73.2 58.5 0 88.2 68.8 90.7 73.2 4.8 8.6 14.4 9.5 19.7 0 51-89.5 107.1-91.4 158.6-37 10.3 10 20.9-1.3 18.7-11.4zM256 301.7V432c0 8.8-7.2 16-16 16-7.8 0-13.2-5.3-15.1-10.7-5.9-16.7-24.1-25.4-40.8-19.5-16.7 5.9-25.4 24.2-19.5 40.8 11.2 31.9 41.6 53.3 75.4 53.3 44.1 0 80-35.9 80-80V301.6c-9.1-7.9-19.8-13.6-32-13.6-12.3.1-22.4 4.8-32 13.7z\"]\n};\nvar faUmbrellaBeach = {\n prefix: 'fas',\n iconName: 'umbrella-beach',\n icon: [640, 512, [], \"f5ca\", \"M115.38 136.9l102.11 37.18c35.19-81.54 86.21-144.29 139-173.7-95.88-4.89-188.78 36.96-248.53 111.8-6.69 8.4-2.66 21.05 7.42 24.72zm132.25 48.16l238.48 86.83c35.76-121.38 18.7-231.66-42.63-253.98-7.4-2.7-15.13-4-23.09-4-58.02.01-128.27 69.17-172.76 171.15zM521.48 60.5c6.22 16.3 10.83 34.6 13.2 55.19 5.74 49.89-1.42 108.23-18.95 166.98l102.62 37.36c10.09 3.67 21.31-3.43 21.57-14.17 2.32-95.69-41.91-187.44-118.44-245.36zM560 447.98H321.06L386 269.5l-60.14-21.9-72.9 200.37H16c-8.84 0-16 7.16-16 16.01v32.01C0 504.83 7.16 512 16 512h544c8.84 0 16-7.17 16-16.01v-32.01c0-8.84-7.16-16-16-16z\"]\n};\nvar faUnderline = {\n prefix: 'fas',\n iconName: 'underline',\n icon: [448, 512, [], \"f0cd\", \"M32 64h32v160c0 88.22 71.78 160 160 160s160-71.78 160-160V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H272a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32v160a80 80 0 0 1-160 0V64h32a16 16 0 0 0 16-16V16a16 16 0 0 0-16-16H32a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16zm400 384H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z\"]\n};\nvar faUndo = {\n prefix: 'fas',\n iconName: 'undo',\n icon: [512, 512, [], \"f0e2\", \"M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z\"]\n};\nvar faUndoAlt = {\n prefix: 'fas',\n iconName: 'undo-alt',\n icon: [512, 512, [], \"f2ea\", \"M255.545 8c-66.269.119-126.438 26.233-170.86 68.685L48.971 40.971C33.851 25.851 8 36.559 8 57.941V192c0 13.255 10.745 24 24 24h134.059c21.382 0 32.09-25.851 16.971-40.971l-41.75-41.75c30.864-28.899 70.801-44.907 113.23-45.273 92.398-.798 170.283 73.977 169.484 169.442C423.236 348.009 349.816 424 256 424c-41.127 0-79.997-14.678-110.63-41.556-4.743-4.161-11.906-3.908-16.368.553L89.34 422.659c-4.872 4.872-4.631 12.815.482 17.433C133.798 479.813 192.074 504 256 504c136.966 0 247.999-111.033 248-247.998C504.001 119.193 392.354 7.755 255.545 8z\"]\n};\nvar faUniversalAccess = {\n prefix: 'fas',\n iconName: 'universal-access',\n icon: [512, 512, [], \"f29a\", \"M256 48c114.953 0 208 93.029 208 208 0 114.953-93.029 208-208 208-114.953 0-208-93.029-208-208 0-114.953 93.029-208 208-208m0-40C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 56C149.961 64 64 149.961 64 256s85.961 192 192 192 192-85.961 192-192S362.039 64 256 64zm0 44c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zm117.741 98.023c-28.712 6.779-55.511 12.748-82.14 15.807.851 101.023 12.306 123.052 25.037 155.621 3.617 9.26-.957 19.698-10.217 23.315-9.261 3.617-19.699-.957-23.316-10.217-8.705-22.308-17.086-40.636-22.261-78.549h-9.686c-5.167 37.851-13.534 56.208-22.262 78.549-3.615 9.255-14.05 13.836-23.315 10.217-9.26-3.617-13.834-14.056-10.217-23.315 12.713-32.541 24.185-54.541 25.037-155.621-26.629-3.058-53.428-9.027-82.141-15.807-8.6-2.031-13.926-10.648-11.895-19.249s10.647-13.926 19.249-11.895c96.686 22.829 124.283 22.783 220.775 0 8.599-2.03 17.218 3.294 19.249 11.895 2.029 8.601-3.297 17.219-11.897 19.249z\"]\n};\nvar faUniversity = {\n prefix: 'fas',\n iconName: 'university',\n icon: [512, 512, [], \"f19c\", \"M496 128v16a8 8 0 0 1-8 8h-24v12c0 6.627-5.373 12-12 12H60c-6.627 0-12-5.373-12-12v-12H24a8 8 0 0 1-8-8v-16a8 8 0 0 1 4.941-7.392l232-88a7.996 7.996 0 0 1 6.118 0l232 88A8 8 0 0 1 496 128zm-24 304H40c-13.255 0-24 10.745-24 24v16a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8v-16c0-13.255-10.745-24-24-24zM96 192v192H60c-6.627 0-12 5.373-12 12v20h416v-20c0-6.627-5.373-12-12-12h-36V192h-64v192h-64V192h-64v192h-64V192H96z\"]\n};\nvar faUnlink = {\n prefix: 'fas',\n iconName: 'unlink',\n icon: [512, 512, [], \"f127\", \"M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z\"]\n};\nvar faUnlock = {\n prefix: 'fas',\n iconName: 'unlock',\n icon: [448, 512, [], \"f09c\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z\"]\n};\nvar faUnlockAlt = {\n prefix: 'fas',\n iconName: 'unlock-alt',\n icon: [448, 512, [], \"f13e\", \"M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z\"]\n};\nvar faUpload = {\n prefix: 'fas',\n iconName: 'upload',\n icon: [512, 512, [], \"f093\", \"M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"]\n};\nvar faUser = {\n prefix: 'fas',\n iconName: 'user',\n icon: [448, 512, [], \"f007\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserAlt = {\n prefix: 'fas',\n iconName: 'user-alt',\n icon: [512, 512, [], \"f406\", \"M256 288c79.5 0 144-64.5 144-144S335.5 0 256 0 112 64.5 112 144s64.5 144 144 144zm128 32h-55.1c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16H128C57.3 320 0 377.3 0 448v16c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-16c0-70.7-57.3-128-128-128z\"]\n};\nvar faUserAltSlash = {\n prefix: 'fas',\n iconName: 'user-alt-slash',\n icon: [640, 512, [], \"f4fa\", \"M633.8 458.1L389.6 269.3C433.8 244.7 464 198.1 464 144 464 64.5 399.5 0 320 0c-67.1 0-123 46.1-139 108.2L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM198.4 320C124.2 320 64 380.2 64 454.4v9.6c0 26.5 21.5 48 48 48h382.2L245.8 320h-47.4z\"]\n};\nvar faUserAstronaut = {\n prefix: 'fas',\n iconName: 'user-astronaut',\n icon: [448, 512, [], \"f4fb\", \"M64 224h13.5c24.7 56.5 80.9 96 146.5 96s121.8-39.5 146.5-96H384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-13.5C345.8 39.5 289.6 0 224 0S102.2 39.5 77.5 96H64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm40-88c0-22.1 21.5-40 48-40h144c26.5 0 48 17.9 48 40v24c0 53-43 96-96 96h-48c-53 0-96-43-96-96v-24zm72 72l12-36 36-12-36-12-12-36-12 36-36 12 36 12 12 36zm151.6 113.4C297.7 340.7 262.2 352 224 352s-73.7-11.3-103.6-30.6C52.9 328.5 0 385 0 454.4v9.6c0 26.5 21.5 48 48 48h80v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h80c26.5 0 48-21.5 48-48v-9.6c0-69.4-52.9-125.9-120.4-133zM272 448c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-96 0c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16z\"]\n};\nvar faUserCheck = {\n prefix: 'fas',\n iconName: 'user-check',\n icon: [640, 512, [], \"f4fc\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z\"]\n};\nvar faUserCircle = {\n prefix: 'fas',\n iconName: 'user-circle',\n icon: [496, 512, [], \"f2bd\", \"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z\"]\n};\nvar faUserClock = {\n prefix: 'fas',\n iconName: 'user-clock',\n icon: [640, 512, [], \"f4fd\", \"M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z\"]\n};\nvar faUserCog = {\n prefix: 'fas',\n iconName: 'user-cog',\n icon: [640, 512, [], \"f4fe\", \"M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z\"]\n};\nvar faUserEdit = {\n prefix: 'fas',\n iconName: 'user-edit',\n icon: [640, 512, [], \"f4ff\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z\"]\n};\nvar faUserFriends = {\n prefix: 'fas',\n iconName: 'user-friends',\n icon: [640, 512, [], \"f500\", \"M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z\"]\n};\nvar faUserGraduate = {\n prefix: 'fas',\n iconName: 'user-graduate',\n icon: [448, 512, [], \"f501\", \"M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8zM13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3 0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57 0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6z\"]\n};\nvar faUserInjured = {\n prefix: 'fas',\n iconName: 'user-injured',\n icon: [448, 512, [], \"f728\", \"M277.37 11.98C261.08 4.47 243.11 0 224 0c-53.69 0-99.5 33.13-118.51 80h81.19l90.69-68.02zM342.51 80c-7.9-19.47-20.67-36.2-36.49-49.52L239.99 80h102.52zM224 256c70.69 0 128-57.31 128-128 0-5.48-.95-10.7-1.61-16H97.61c-.67 5.3-1.61 10.52-1.61 16 0 70.69 57.31 128 128 128zM80 299.7V512h128.26l-98.45-221.52A132.835 132.835 0 0 0 80 299.7zM0 464c0 26.51 21.49 48 48 48V320.24C18.88 344.89 0 381.26 0 422.4V464zm256-48h-55.38l42.67 96H256c26.47 0 48-21.53 48-48s-21.53-48-48-48zm57.6-128h-16.71c-22.24 10.18-46.88 16-72.89 16s-50.65-5.82-72.89-16h-7.37l42.67 96H256c44.11 0 80 35.89 80 80 0 18.08-6.26 34.59-16.41 48H400c26.51 0 48-21.49 48-48v-41.6c0-74.23-60.17-134.4-134.4-134.4z\"]\n};\nvar faUserLock = {\n prefix: 'fas',\n iconName: 'user-lock',\n icon: [640, 512, [], \"f502\", \"M224 256A128 128 0 1 0 96 128a128 128 0 0 0 128 128zm96 64a63.08 63.08 0 0 1 8.1-30.5c-4.8-.5-9.5-1.5-14.5-1.5h-16.7a174.08 174.08 0 0 1-145.8 0h-16.7A134.43 134.43 0 0 0 0 422.4V464a48 48 0 0 0 48 48h280.9a63.54 63.54 0 0 1-8.9-32zm288-32h-32v-80a80 80 0 0 0-160 0v80h-32a32 32 0 0 0-32 32v160a32 32 0 0 0 32 32h224a32 32 0 0 0 32-32V320a32 32 0 0 0-32-32zM496 432a32 32 0 1 1 32-32 32 32 0 0 1-32 32zm32-144h-64v-80a32 32 0 0 1 64 0z\"]\n};\nvar faUserMd = {\n prefix: 'fas',\n iconName: 'user-md',\n icon: [448, 512, [], \"f0f0\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zM104 424c0 13.3 10.7 24 24 24s24-10.7 24-24-10.7-24-24-24-24 10.7-24 24zm216-135.4v49c36.5 7.4 64 39.8 64 78.4v41.7c0 7.6-5.4 14.2-12.9 15.7l-32.2 6.4c-4.3.9-8.5-1.9-9.4-6.3l-3.1-15.7c-.9-4.3 1.9-8.6 6.3-9.4l19.3-3.9V416c0-62.8-96-65.1-96 1.9v26.7l19.3 3.9c4.3.9 7.1 5.1 6.3 9.4l-3.1 15.7c-.9 4.3-5.1 7.1-9.4 6.3l-31.2-4.2c-7.9-1.1-13.8-7.8-13.8-15.9V416c0-38.6 27.5-70.9 64-78.4v-45.2c-2.2.7-4.4 1.1-6.6 1.9-18 6.3-37.3 9.8-57.4 9.8s-39.4-3.5-57.4-9.8c-7.4-2.6-14.9-4.2-22.6-5.2v81.6c23.1 6.9 40 28.1 40 53.4 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.3 16.9-46.5 40-53.4v-80.4C48.5 301 0 355.8 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-72-56.8-130.3-128-133.8z\"]\n};\nvar faUserMinus = {\n prefix: 'fas',\n iconName: 'user-minus',\n icon: [640, 512, [], \"f503\", \"M624 208H432c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserNinja = {\n prefix: 'fas',\n iconName: 'user-ninja',\n icon: [448, 512, [], \"f504\", \"M325.4 289.2L224 390.6 122.6 289.2C54 295.3 0 352.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-70.2-54-127.1-122.6-133.2zM32 192c27.3 0 51.8-11.5 69.2-29.7 15.1 53.9 64 93.7 122.8 93.7 70.7 0 128-57.3 128-128S294.7 0 224 0c-50.4 0-93.6 29.4-114.5 71.8C92.1 47.8 64 32 32 32c0 33.4 17.1 62.8 43.1 80-26 17.2-43.1 46.6-43.1 80zm144-96h96c17.7 0 32 14.3 32 32H144c0-17.7 14.3-32 32-32z\"]\n};\nvar faUserNurse = {\n prefix: 'fas',\n iconName: 'user-nurse',\n icon: [448, 512, [], \"f82f\", \"M319.41,320,224,415.39,128.59,320C57.1,323.1,0,381.6,0,453.79A58.21,58.21,0,0,0,58.21,512H389.79A58.21,58.21,0,0,0,448,453.79C448,381.6,390.9,323.1,319.41,320ZM224,304A128,128,0,0,0,352,176V65.82a32,32,0,0,0-20.76-30L246.47,4.07a64,64,0,0,0-44.94,0L116.76,35.86A32,32,0,0,0,96,65.82V176A128,128,0,0,0,224,304ZM184,71.67a5,5,0,0,1,5-5h21.67V45a5,5,0,0,1,5-5h16.66a5,5,0,0,1,5,5V66.67H259a5,5,0,0,1,5,5V88.33a5,5,0,0,1-5,5H237.33V115a5,5,0,0,1-5,5H215.67a5,5,0,0,1-5-5V93.33H189a5,5,0,0,1-5-5ZM144,160H304v16a80,80,0,0,1-160,0Z\"]\n};\nvar faUserPlus = {\n prefix: 'fas',\n iconName: 'user-plus',\n icon: [640, 512, [], \"f234\", \"M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUserSecret = {\n prefix: 'fas',\n iconName: 'user-secret',\n icon: [448, 512, [], \"f21b\", \"M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z\"]\n};\nvar faUserShield = {\n prefix: 'fas',\n iconName: 'user-shield',\n icon: [640, 512, [], \"f505\", \"M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z\"]\n};\nvar faUserSlash = {\n prefix: 'fas',\n iconName: 'user-slash',\n icon: [640, 512, [], \"f506\", \"M633.8 458.1L362.3 248.3C412.1 230.7 448 183.8 448 128 448 57.3 390.7 0 320 0c-67.1 0-121.5 51.8-126.9 117.4L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3zM96 422.4V464c0 26.5 21.5 48 48 48h350.2L207.4 290.3C144.2 301.3 96 356 96 422.4z\"]\n};\nvar faUserTag = {\n prefix: 'fas',\n iconName: 'user-tag',\n icon: [640, 512, [], \"f507\", \"M630.6 364.9l-90.3-90.2c-12-12-28.3-18.7-45.3-18.7h-79.3c-17.7 0-32 14.3-32 32v79.2c0 17 6.7 33.2 18.7 45.2l90.3 90.2c12.5 12.5 32.8 12.5 45.3 0l92.5-92.5c12.6-12.5 12.6-32.7.1-45.2zm-182.8-21c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24c0 13.2-10.7 24-24 24zm-223.8-88c70.7 0 128-57.3 128-128C352 57.3 294.7 0 224 0S96 57.3 96 128c0 70.6 57.3 127.9 128 127.9zm127.8 111.2V294c-12.2-3.6-24.9-6.2-38.2-6.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 287.9 0 348.1 0 422.3v41.6c0 26.5 21.5 48 48 48h352c15.5 0 29.1-7.5 37.9-18.9l-58-58c-18.1-18.1-28.1-42.2-28.1-67.9z\"]\n};\nvar faUserTie = {\n prefix: 'fas',\n iconName: 'user-tie',\n icon: [448, 512, [], \"f508\", \"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6L272 480l-32-136 32-56h-96l32 56-32 136-47.8-191.4C56.9 292 0 350.3 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-72.1-56.9-130.4-128.2-133.8z\"]\n};\nvar faUserTimes = {\n prefix: 'fas',\n iconName: 'user-times',\n icon: [640, 512, [], \"f235\", \"M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z\"]\n};\nvar faUsers = {\n prefix: 'fas',\n iconName: 'users',\n icon: [640, 512, [], \"f0c0\", \"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersCog = {\n prefix: 'fas',\n iconName: 'users-cog',\n icon: [640, 512, [], \"f509\", \"M610.5 341.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 368.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm224 32c1.9 0 3.7-.5 5.6-.6 8.3-21.7 20.5-42.1 36.3-59.2 7.4-8 17.9-12.6 28.9-12.6 6.9 0 13.7 1.8 19.6 5.3l7.9 4.6c.8-.5 1.6-.9 2.4-1.4 7-14.6 11.2-30.8 11.2-48 0-61.9-50.1-112-112-112S208 82.1 208 144c0 61.9 50.1 112 112 112zm105.2 194.5c-2.3-1.2-4.6-2.6-6.8-3.9-8.2 4.8-15.3 9.8-27.5 9.8-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-10.7-34.5 24.9-49.7 25.8-50.3-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-3.8-2.2-7-5-9.8-8.1-3.3.2-6.5.6-9.8.6-24.6 0-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h255.4c-3.7-6-6.2-12.8-6.2-20.3v-9.2zM173.1 274.6C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\"]\n};\nvar faUsersSlash = {\n prefix: 'fas',\n iconName: 'users-slash',\n icon: [640, 512, [], \"e073\", \"M132.65,212.32,36.21,137.78A63.4,63.4,0,0,0,32,160a63.84,63.84,0,0,0,100.65,52.32Zm40.44,62.28A63.79,63.79,0,0,0,128,256H64A64.06,64.06,0,0,0,0,320v32a32,32,0,0,0,32,32H97.91A146.62,146.62,0,0,1,173.09,274.6ZM544,224a64,64,0,1,0-64-64A64.06,64.06,0,0,0,544,224ZM500.56,355.11a114.24,114.24,0,0,0-84.47-65.28L361,247.23c41.46-16.3,71-55.92,71-103.23A111.93,111.93,0,0,0,320,32c-57.14,0-103.69,42.83-110.6,98.08L45.46,3.38A16,16,0,0,0,23,6.19L3.37,31.46A16,16,0,0,0,6.18,53.91L594.53,508.63A16,16,0,0,0,617,505.82l19.64-25.27a16,16,0,0,0-2.81-22.45ZM128,403.21V432a48,48,0,0,0,48,48H464a47.45,47.45,0,0,0,12.57-1.87L232,289.13C173.74,294.83,128,343.42,128,403.21ZM576,256H512a63.79,63.79,0,0,0-45.09,18.6A146.29,146.29,0,0,1,542,384h66a32,32,0,0,0,32-32V320A64.06,64.06,0,0,0,576,256Z\"]\n};\nvar faUtensilSpoon = {\n prefix: 'fas',\n iconName: 'utensil-spoon',\n icon: [512, 512, [], \"f2e5\", \"M480.1 31.9c-55-55.1-164.9-34.5-227.8 28.5-49.3 49.3-55.1 110-28.8 160.4L9 413.2c-11.6 10.5-12.1 28.5-1 39.5L59.3 504c11 11 29.1 10.5 39.5-1.1l192.4-214.4c50.4 26.3 111.1 20.5 160.4-28.8 63-62.9 83.6-172.8 28.5-227.8z\"]\n};\nvar faUtensils = {\n prefix: 'fas',\n iconName: 'utensils',\n icon: [416, 512, [], \"f2e7\", \"M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z\"]\n};\nvar faVectorSquare = {\n prefix: 'fas',\n iconName: 'vector-square',\n icon: [512, 512, [], \"f5cb\", \"M512 128V32c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32H160c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v96c0 17.67 14.33 32 32 32v192c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32h192c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32V160c17.67 0 32-14.33 32-32zm-96-64h32v32h-32V64zM64 64h32v32H64V64zm32 384H64v-32h32v32zm352 0h-32v-32h32v32zm-32-96h-32c-17.67 0-32 14.33-32 32v32H160v-32c0-17.67-14.33-32-32-32H96V160h32c17.67 0 32-14.33 32-32V96h192v32c0 17.67 14.33 32 32 32h32v192z\"]\n};\nvar faVenus = {\n prefix: 'fas',\n iconName: 'venus',\n icon: [288, 512, [], \"f221\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80z\"]\n};\nvar faVenusDouble = {\n prefix: 'fas',\n iconName: 'venus-double',\n icon: [512, 512, [], \"f226\", \"M288 176c0-79.5-64.5-144-144-144S0 96.5 0 176c0 68.5 47.9 125.9 112 140.4V368H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.5 112-71.9 112-140.4zm-224 0c0-44.1 35.9-80 80-80s80 35.9 80 80-35.9 80-80 80-80-35.9-80-80zm336 140.4V368h36c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-36v36c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-36h-36c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h36v-51.6c-21.2-4.8-40.6-14.3-57.2-27.3 14-16.7 25-36 32.1-57.1 14.5 14.8 34.7 24 57.1 24 44.1 0 80-35.9 80-80s-35.9-80-80-80c-22.3 0-42.6 9.2-57.1 24-7.1-21.1-18-40.4-32.1-57.1C303.4 43.6 334.3 32 368 32c79.5 0 144 64.5 144 144 0 68.5-47.9 125.9-112 140.4z\"]\n};\nvar faVenusMars = {\n prefix: 'fas',\n iconName: 'venus-mars',\n icon: [576, 512, [], \"f228\", \"M564 0h-79c-10.7 0-16 12.9-8.5 20.5l16.9 16.9-48.7 48.7C422.5 72.1 396.2 64 368 64c-33.7 0-64.6 11.6-89.2 30.9 14 16.7 25 36 32.1 57.1 14.5-14.8 34.7-24 57.1-24 44.1 0 80 35.9 80 80s-35.9 80-80 80c-22.3 0-42.6-9.2-57.1-24-7.1 21.1-18 40.4-32.1 57.1 24.5 19.4 55.5 30.9 89.2 30.9 79.5 0 144-64.5 144-144 0-28.2-8.1-54.5-22.1-76.7l48.7-48.7 16.9 16.9c2.4 2.4 5.4 3.5 8.4 3.5 6.2 0 12.1-4.8 12.1-12V12c0-6.6-5.4-12-12-12zM144 64C64.5 64 0 128.5 0 208c0 68.5 47.9 125.9 112 140.4V400H76c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h36v36c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12v-36h36c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-36v-51.6c64.1-14.6 112-71.9 112-140.4 0-79.5-64.5-144-144-144zm0 224c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z\"]\n};\nvar faVest = {\n prefix: 'fas',\n iconName: 'vest',\n icon: [448, 512, [], \"e085\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a24.021,24.021,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A24.021,24.021,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.564A151.518,151.518,0,0,0,224,86.234a151.55,151.55,0,0,0,73.812-19.672L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM131.312,371.312l-48,48a16,16,0,0,1-22.624-22.624l48-48a16,16,0,0,1,22.624,22.624Zm256,48a15.992,15.992,0,0,1-22.624,0l-48-48a16,16,0,0,1,22.624-22.624l48,48A15.993,15.993,0,0,1,387.312,419.312Z\"]\n};\nvar faVestPatches = {\n prefix: 'fas',\n iconName: 'vest-patches',\n icon: [448, 512, [], \"e086\", \"M437.252,239.877,384,160V32A32,32,0,0,0,352,0H320a23.982,23.982,0,0,0-13.312,4.031l-25,16.672a103.794,103.794,0,0,1-115.376,0l-25-16.672A23.982,23.982,0,0,0,128,0H96A32,32,0,0,0,64,32V160L10.748,239.877A64,64,0,0,0,0,275.377V480a32,32,0,0,0,32,32H192V288a31.987,31.987,0,0,1,1.643-10.119L207.135,237.4,150.188,66.561A151.579,151.579,0,0,0,224,86.234a151.565,151.565,0,0,0,73.811-19.668L224,288V512H416a32,32,0,0,0,32-32V275.377A64,64,0,0,0,437.252,239.877ZM63.5,272.484a12.01,12.01,0,0,1,17-16.968l15.5,15.5,15.5-15.5a12.01,12.01,0,0,1,17,16.968L112.984,288,128.5,303.516a12.01,12.01,0,0,1-17,16.968L96,304.984l-15.5,15.5a12.01,12.01,0,0,1-17-16.968L79.016,288ZM96,456a40,40,0,1,1,40-40A40,40,0,0,1,96,456ZM359.227,335.785,310.7,336a6.671,6.671,0,0,1-6.7-6.7l.215-48.574A24.987,24.987,0,0,1,331.43,256.1c12.789,1.162,22.129,12.619,22.056,25.419l-.037,5.057,5.051-.037c12.826-.035,24.236,9.275,25.4,22.076A24.948,24.948,0,0,1,359.227,335.785Z\"]\n};\nvar faVial = {\n prefix: 'fas',\n iconName: 'vial',\n icon: [480, 512, [], \"f492\", \"M477.7 186.1L309.5 18.3c-3.1-3.1-8.2-3.1-11.3 0l-34 33.9c-3.1 3.1-3.1 8.2 0 11.3l11.2 11.1L33 316.5c-38.8 38.7-45.1 102-9.4 143.5 20.6 24 49.5 36 78.4 35.9 26.4 0 52.8-10 72.9-30.1l246.3-245.7 11.2 11.1c3.1 3.1 8.2 3.1 11.3 0l34-33.9c3.1-3 3.1-8.1 0-11.2zM318 256H161l148-147.7 78.5 78.3L318 256z\"]\n};\nvar faVials = {\n prefix: 'fas',\n iconName: 'vials',\n icon: [640, 512, [], \"f493\", \"M72 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64zm480 384H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM360 64h24v240c0 44.1 35.9 80 80 80s80-35.9 80-80V64h24c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8H360c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm72 0h64v96h-64V64z\"]\n};\nvar faVideo = {\n prefix: 'fas',\n iconName: 'video',\n icon: [576, 512, [], \"f03d\", \"M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z\"]\n};\nvar faVideoSlash = {\n prefix: 'fas',\n iconName: 'video-slash',\n icon: [640, 512, [], \"f4e2\", \"M633.8 458.1l-55-42.5c15.4-1.4 29.2-13.7 29.2-31.1v-257c0-25.5-29.1-40.4-50.4-25.8L448 177.3v137.2l-32-24.7v-178c0-26.4-21.4-47.8-47.8-47.8H123.9L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4L42.7 82 416 370.6l178.5 138c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.5-6.9 4.2-17-2.8-22.4zM32 400.2c0 26.4 21.4 47.8 47.8 47.8h288.4c11.2 0 21.4-4 29.6-10.5L32 154.7v245.5z\"]\n};\nvar faVihara = {\n prefix: 'fas',\n iconName: 'vihara',\n icon: [640, 512, [], \"f6a7\", \"M632.88 400.71L544 352v-64l55.16-17.69c11.79-5.9 11.79-22.72 0-28.62L480 192v-64l27.31-16.3c7.72-7.72 5.61-20.74-4.16-25.62L320 0 136.85 86.07c-9.77 4.88-11.88 17.9-4.16 25.62L160 128v64L40.84 241.69c-11.79 5.9-11.79 22.72 0 28.62L96 288v64L7.12 400.71c-5.42 3.62-7.7 9.63-7 15.29.62 5.01 3.57 9.75 8.72 12.33L64 448v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h160v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48l55.15-19.67c5.16-2.58 8.1-7.32 8.72-12.33.71-5.67-1.57-11.68-6.99-15.29zM224 128h192v64H224v-64zm-64 224v-64h320v64H160z\"]\n};\nvar faVirus = {\n prefix: 'fas',\n iconName: 'virus',\n icon: [512, 512, [], \"e074\", \"M483.55,227.55H462c-50.68,0-76.07-61.27-40.23-97.11L437,115.19A28.44,28.44,0,0,0,396.8,75L381.56,90.22c-35.84,35.83-97.11,10.45-97.11-40.23V28.44a28.45,28.45,0,0,0-56.9,0V50c0,50.68-61.27,76.06-97.11,40.23L115.2,75A28.44,28.44,0,0,0,75,115.19l15.25,15.25c35.84,35.84,10.45,97.11-40.23,97.11H28.45a28.45,28.45,0,1,0,0,56.89H50c50.68,0,76.07,61.28,40.23,97.12L75,396.8A28.45,28.45,0,0,0,115.2,437l15.24-15.25c35.84-35.84,97.11-10.45,97.11,40.23v21.54a28.45,28.45,0,0,0,56.9,0V462c0-50.68,61.27-76.07,97.11-40.23L396.8,437A28.45,28.45,0,0,0,437,396.8l-15.25-15.24c-35.84-35.84-10.45-97.12,40.23-97.12h21.54a28.45,28.45,0,1,0,0-56.89ZM224,272a48,48,0,1,1,48-48A48,48,0,0,1,224,272Zm80,56a24,24,0,1,1,24-24A24,24,0,0,1,304,328Z\"]\n};\nvar faVirusSlash = {\n prefix: 'fas',\n iconName: 'virus-slash',\n icon: [640, 512, [], \"e075\", \"M114,227.6H92.4C76.7,227.6,64,240.3,64,256s12.7,28.4,28.4,28.4H114c50.7,0,76.1,61.3,40.2,97.1L139,396.8 c-11.5,10.7-12.2,28.7-1.6,40.2s28.7,12.2,40.2,1.6c0.5-0.5,1.1-1,1.6-1.6l15.2-15.2c35.8-35.8,97.1-10.5,97.1,40.2v21.5 c0,15.7,12.8,28.4,28.5,28.4c15.7,0,28.4-12.7,28.4-28.4V462c0-26.6,17-45.9,38.2-53.4l-244.5-189 C133.7,224.7,123.9,227.5,114,227.6z M617,505.8l19.6-25.3c5.4-7,4.2-17-2.8-22.5L470.6,332c4.2-25.4,24.9-47.5,55.4-47.5h21.5 c15.7,0,28.4-12.7,28.4-28.4s-12.7-28.4-28.4-28.4H526c-50.7,0-76.1-61.3-40.2-97.1l15.2-15.3c10.7-11.5,10-29.5-1.6-40.2 c-10.9-10.1-27.7-10.1-38.6,0l-15.2,15.2c-35.8,35.8-97.1,10.5-97.1-40.2V28.5C348.4,12.7,335.7,0,320,0 c-15.7,0-28.4,12.7-28.4,28.4V50c0,50.7-61.3,76.1-97.1,40.2L179.2,75c-11.1-11.1-29.4-10.6-40.5,0.5L45.5,3.4 c-7-5.4-17-4.2-22.5,2.8L3.4,31.5c-5.4,7-4.2,17,2.8,22.5l588.4,454.7C601.5,514.1,611.6,512.8,617,505.8z M335.4,227.5l-62.9-48.6 c4.9-1.8,10.2-2.8,15.4-2.9c26.5,0,48,21.5,48,48C336,225.2,335.5,226.3,335.4,227.5z\"]\n};\nvar faViruses = {\n prefix: 'fas',\n iconName: 'viruses',\n icon: [640, 512, [], \"e076\", \"M624,352H611.88c-28.51,0-42.79-34.47-22.63-54.63l8.58-8.57a16,16,0,1,0-22.63-22.63l-8.57,8.58C546.47,294.91,512,280.63,512,252.12V240a16,16,0,0,0-32,0v12.12c0,28.51-34.47,42.79-54.63,22.63l-8.57-8.58a16,16,0,0,0-22.63,22.63l8.58,8.57c20.16,20.16,5.88,54.63-22.63,54.63H368a16,16,0,0,0,0,32h12.12c28.51,0,42.79,34.47,22.63,54.63l-8.58,8.57a16,16,0,1,0,22.63,22.63l8.57-8.58c20.16-20.16,54.63-5.88,54.63,22.63V496a16,16,0,0,0,32,0V483.88c0-28.51,34.47-42.79,54.63-22.63l8.57,8.58a16,16,0,1,0,22.63-22.63l-8.58-8.57C569.09,418.47,583.37,384,611.88,384H624a16,16,0,0,0,0-32ZM480,384a32,32,0,1,1,32-32A32,32,0,0,1,480,384ZM346.51,213.33h16.16a21.33,21.33,0,0,0,0-42.66H346.51c-38,0-57.05-46-30.17-72.84l11.43-11.44A21.33,21.33,0,0,0,297.6,56.23L286.17,67.66c-26.88,26.88-72.84,7.85-72.84-30.17V21.33a21.33,21.33,0,0,0-42.66,0V37.49c0,38-46,57.05-72.84,30.17L86.4,56.23A21.33,21.33,0,0,0,56.23,86.39L67.66,97.83c26.88,26.88,7.85,72.84-30.17,72.84H21.33a21.33,21.33,0,0,0,0,42.66H37.49c38,0,57.05,46,30.17,72.84L56.23,297.6A21.33,21.33,0,1,0,86.4,327.77l11.43-11.43c26.88-26.88,72.84-7.85,72.84,30.17v16.16a21.33,21.33,0,0,0,42.66,0V346.51c0-38,46-57.05,72.84-30.17l11.43,11.43a21.33,21.33,0,0,0,30.17-30.17l-11.43-11.43C289.46,259.29,308.49,213.33,346.51,213.33ZM160,192a32,32,0,1,1,32-32A32,32,0,0,1,160,192Zm80,32a16,16,0,1,1,16-16A16,16,0,0,1,240,224Z\"]\n};\nvar faVoicemail = {\n prefix: 'fas',\n iconName: 'voicemail',\n icon: [640, 512, [], \"f897\", \"M496 128a144 144 0 0 0-119.74 224H263.74A144 144 0 1 0 144 416h352a144 144 0 0 0 0-288zM64 272a80 80 0 1 1 80 80 80 80 0 0 1-80-80zm432 80a80 80 0 1 1 80-80 80 80 0 0 1-80 80z\"]\n};\nvar faVolleyballBall = {\n prefix: 'fas',\n iconName: 'volleyball-ball',\n icon: [512, 512, [], \"f45f\", \"M231.39 243.48a285.56 285.56 0 0 0-22.7-105.7c-90.8 42.4-157.5 122.4-180.3 216.8a249 249 0 0 0 56.9 81.1 333.87 333.87 0 0 1 146.1-192.2zm-36.9-134.4a284.23 284.23 0 0 0-57.4-70.7c-91 49.8-144.8 152.9-125 262.2 33.4-83.1 98.4-152 182.4-191.5zm187.6 165.1c8.6-99.8-27.3-197.5-97.5-264.4-14.7-1.7-51.6-5.5-98.9 8.5A333.87 333.87 0 0 1 279.19 241a285 285 0 0 0 102.9 33.18zm-124.7 9.5a286.33 286.33 0 0 0-80.2 72.6c82 57.3 184.5 75.1 277.5 47.8a247.15 247.15 0 0 0 42.2-89.9 336.1 336.1 0 0 1-80.9 10.4c-54.6-.1-108.9-14.1-158.6-40.9zm-98.3 99.7c-15.2 26-25.7 54.4-32.1 84.2a247.07 247.07 0 0 0 289-22.1c-112.9 16.1-203.3-24.8-256.9-62.1zm180.3-360.6c55.3 70.4 82.5 161.2 74.6 253.6a286.59 286.59 0 0 0 89.7-14.2c0-2 .3-4 .3-6 0-107.8-68.7-199.1-164.6-233.4z\"]\n};\nvar faVolumeDown = {\n prefix: 'fas',\n iconName: 'volume-down',\n icon: [384, 512, [], \"f027\", \"M215.03 72.04L126.06 161H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V89.02c0-21.47-25.96-31.98-40.97-16.98zm123.2 108.08c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 229.28 336 242.62 336 257c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.87z\"]\n};\nvar faVolumeMute = {\n prefix: 'fas',\n iconName: 'volume-mute',\n icon: [512, 512, [], \"f6a9\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zM461.64 256l45.64-45.64c6.3-6.3 6.3-16.52 0-22.82l-22.82-22.82c-6.3-6.3-16.52-6.3-22.82 0L416 210.36l-45.64-45.64c-6.3-6.3-16.52-6.3-22.82 0l-22.82 22.82c-6.3 6.3-6.3 16.52 0 22.82L370.36 256l-45.63 45.63c-6.3 6.3-6.3 16.52 0 22.82l22.82 22.82c6.3 6.3 16.52 6.3 22.82 0L416 301.64l45.64 45.64c6.3 6.3 16.52 6.3 22.82 0l22.82-22.82c6.3-6.3 6.3-16.52 0-22.82L461.64 256z\"]\n};\nvar faVolumeOff = {\n prefix: 'fas',\n iconName: 'volume-off',\n icon: [256, 512, [], \"f026\", \"M215 71l-89 89H24a24 24 0 0 0-24 24v144a24 24 0 0 0 24 24h102.06L215 441c15 15 41 4.47 41-17V88c0-21.47-26-32-41-17z\"]\n};\nvar faVolumeUp = {\n prefix: 'fas',\n iconName: 'volume-up',\n icon: [576, 512, [], \"f028\", \"M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zm233.32-51.08c-11.17-7.33-26.18-4.24-33.51 6.95-7.34 11.17-4.22 26.18 6.95 33.51 66.27 43.49 105.82 116.6 105.82 195.58 0 78.98-39.55 152.09-105.82 195.58-11.17 7.32-14.29 22.34-6.95 33.5 7.04 10.71 21.93 14.56 33.51 6.95C528.27 439.58 576 351.33 576 256S528.27 72.43 448.35 19.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.54 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z\"]\n};\nvar faVoteYea = {\n prefix: 'fas',\n iconName: 'vote-yea',\n icon: [640, 512, [], \"f772\", \"M608 320h-64v64h22.4c5.3 0 9.6 3.6 9.6 8v16c0 4.4-4.3 8-9.6 8H73.6c-5.3 0-9.6-3.6-9.6-8v-16c0-4.4 4.3-8 9.6-8H96v-64H32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32zm-96 64V64.3c0-17.9-14.5-32.3-32.3-32.3H160.4C142.5 32 128 46.5 128 64.3V384h384zM211.2 202l25.5-25.3c4.2-4.2 11-4.2 15.2.1l41.3 41.6 95.2-94.4c4.2-4.2 11-4.2 15.2.1l25.3 25.5c4.2 4.2 4.2 11-.1 15.2L300.5 292c-4.2 4.2-11 4.2-15.2-.1l-74.1-74.7c-4.3-4.2-4.2-11 0-15.2z\"]\n};\nvar faVrCardboard = {\n prefix: 'fas',\n iconName: 'vr-cardboard',\n icon: [640, 512, [], \"f729\", \"M608 64H32C14.33 64 0 78.33 0 96v320c0 17.67 14.33 32 32 32h160.22c25.19 0 48.03-14.77 58.36-37.74l27.74-61.64C286.21 331.08 302.35 320 320 320s33.79 11.08 41.68 28.62l27.74 61.64C399.75 433.23 422.6 448 447.78 448H608c17.67 0 32-14.33 32-32V96c0-17.67-14.33-32-32-32zM160 304c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64zm320 0c-35.35 0-64-28.65-64-64s28.65-64 64-64 64 28.65 64 64-28.65 64-64 64z\"]\n};\nvar faWalking = {\n prefix: 'fas',\n iconName: 'walking',\n icon: [320, 512, [], \"f554\", \"M208 96c26.5 0 48-21.5 48-48S234.5 0 208 0s-48 21.5-48 48 21.5 48 48 48zm94.5 149.1l-23.3-11.8-9.7-29.4c-14.7-44.6-55.7-75.8-102.2-75.9-36-.1-55.9 10.1-93.3 25.2-21.6 8.7-39.3 25.2-49.7 46.2L17.6 213c-7.8 15.8-1.5 35 14.2 42.9 15.6 7.9 34.6 1.5 42.5-14.3L81 228c3.5-7 9.3-12.5 16.5-15.4l26.8-10.8-15.2 60.7c-5.2 20.8.4 42.9 14.9 58.8l59.9 65.4c7.2 7.9 12.3 17.4 14.9 27.7l18.3 73.3c4.3 17.1 21.7 27.6 38.8 23.3 17.1-4.3 27.6-21.7 23.3-38.8l-22.2-89c-2.6-10.3-7.7-19.9-14.9-27.7l-45.5-49.7 17.2-68.7 5.5 16.5c5.3 16.1 16.7 29.4 31.7 37l23.3 11.8c15.6 7.9 34.6 1.5 42.5-14.3 7.7-15.7 1.4-35.1-14.3-43zM73.6 385.8c-3.2 8.1-8 15.4-14.2 21.5l-50 50.1c-12.5 12.5-12.5 32.8 0 45.3s32.7 12.5 45.2 0l59.4-59.4c6.1-6.1 10.9-13.4 14.2-21.5l13.5-33.8c-55.3-60.3-38.7-41.8-47.4-53.7l-20.7 51.5z\"]\n};\nvar faWallet = {\n prefix: 'fas',\n iconName: 'wallet',\n icon: [512, 512, [], \"f555\", \"M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\"]\n};\nvar faWarehouse = {\n prefix: 'fas',\n iconName: 'warehouse',\n icon: [640, 512, [], \"f494\", \"M504 352H136.4c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 96H136.1c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0-192H136.6c-4.4 0-8 3.6-8 8l-.1 48c0 4.4 3.6 8 8 8H504c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm106.5-139L338.4 3.7a48.15 48.15 0 0 0-36.9 0L29.5 117C11.7 124.5 0 141.9 0 161.3V504c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V256c0-17.6 14.6-32 32.6-32h382.8c18 0 32.6 14.4 32.6 32v248c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V161.3c0-19.4-11.7-36.8-29.5-44.3z\"]\n};\nvar faWater = {\n prefix: 'fas',\n iconName: 'water',\n icon: [576, 512, [], \"f773\", \"M562.1 383.9c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144c-21.5-2.4-42.1-10.5-57.9-22.9-14.1-11.1-34.2-11.3-48.2 0-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3zm0-144C540.6 93.4 520 85.4 504.2 73 490.1 61.9 470 61.7 456 73c-37.9 30.4-107.2 30.4-145.7-1.5-13.5-11.2-33-9.1-46.7 1.8-38 30.1-106.9 30-145.2-1.7-13.5-11.2-33.3-8.9-47.1 2-15.5 12.2-36 20.1-57.7 22.4-7.9.8-13.6 7.8-13.6 15.7v32.2c0 9.1 7.6 16.8 16.7 16 28.8-2.5 56.1-11.4 79.4-25.9 56.5 34.6 137 34.1 192 0 56.5 34.6 137 34.1 192 0 23.3 14.2 50.9 23.3 79.1 25.8 9.1.8 16.7-6.9 16.7-16v-31.6c.1-8-5.7-15.4-13.8-16.3z\"]\n};\nvar faWaveSquare = {\n prefix: 'fas',\n iconName: 'wave-square',\n icon: [640, 512, [], \"f83e\", \"M476 480H324a36 36 0 0 1-36-36V96h-96v156a36 36 0 0 1-36 36H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h112V68a36 36 0 0 1 36-36h152a36 36 0 0 1 36 36v348h96V260a36 36 0 0 1 36-36h140a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H512v156a36 36 0 0 1-36 36z\"]\n};\nvar faWeight = {\n prefix: 'fas',\n iconName: 'weight',\n icon: [512, 512, [], \"f496\", \"M448 64h-25.98C438.44 92.28 448 125.01 448 160c0 105.87-86.13 192-192 192S64 265.87 64 160c0-34.99 9.56-67.72 25.98-96H64C28.71 64 0 92.71 0 128v320c0 35.29 28.71 64 64 64h384c35.29 0 64-28.71 64-64V128c0-35.29-28.71-64-64-64zM256 320c88.37 0 160-71.63 160-160S344.37 0 256 0 96 71.63 96 160s71.63 160 160 160zm-.3-151.94l33.58-78.36c3.5-8.17 12.94-11.92 21.03-8.41 8.12 3.48 11.88 12.89 8.41 21l-33.67 78.55C291.73 188 296 197.45 296 208c0 22.09-17.91 40-40 40s-40-17.91-40-40c0-21.98 17.76-39.77 39.7-39.94z\"]\n};\nvar faWeightHanging = {\n prefix: 'fas',\n iconName: 'weight-hanging',\n icon: [512, 512, [], \"f5cd\", \"M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c3.57-10.05 5.88-20.72 5.88-32 0-53.02-42.98-96-96-96s-96 42.98-96 96c0 11.28 2.3 21.95 5.88 32h-60.25c-14.43 0-27.08 10.54-30.87 25.72L1.72 445.86C-6.61 479.17 16.38 512 48.03 512h415.95c31.64 0 54.63-32.83 46.3-66.14zM256 128c-17.64 0-32-14.36-32-32s14.36-32 32-32 32 14.36 32 32-14.36 32-32 32z\"]\n};\nvar faWheelchair = {\n prefix: 'fas',\n iconName: 'wheelchair',\n icon: [512, 512, [], \"f193\", \"M496.101 385.669l14.227 28.663c3.929 7.915.697 17.516-7.218 21.445l-65.465 32.886c-16.049 7.967-35.556 1.194-43.189-15.055L331.679 320H192c-15.925 0-29.426-11.71-31.679-27.475C126.433 55.308 128.38 70.044 128 64c0-36.358 30.318-65.635 67.052-63.929 33.271 1.545 60.048 28.905 60.925 62.201.868 32.933-23.152 60.423-54.608 65.039l4.67 32.69H336c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H215.182l4.572 32H352a32 32 0 0 1 28.962 18.392L438.477 396.8l36.178-18.349c7.915-3.929 17.517-.697 21.446 7.218zM311.358 352h-24.506c-7.788 54.204-54.528 96-110.852 96-61.757 0-112-50.243-112-112 0-41.505 22.694-77.809 56.324-97.156-3.712-25.965-6.844-47.86-9.488-66.333C45.956 198.464 0 261.963 0 336c0 97.047 78.953 176 176 176 71.87 0 133.806-43.308 161.11-105.192L311.358 352z\"]\n};\nvar faWifi = {\n prefix: 'fas',\n iconName: 'wifi',\n icon: [640, 512, [], \"f1eb\", \"M634.91 154.88C457.74-8.99 182.19-8.93 5.09 154.88c-6.66 6.16-6.79 16.59-.35 22.98l34.24 33.97c6.14 6.1 16.02 6.23 22.4.38 145.92-133.68 371.3-133.71 517.25 0 6.38 5.85 16.26 5.71 22.4-.38l34.24-33.97c6.43-6.39 6.3-16.82-.36-22.98zM320 352c-35.35 0-64 28.65-64 64s28.65 64 64 64 64-28.65 64-64-28.65-64-64-64zm202.67-83.59c-115.26-101.93-290.21-101.82-405.34 0-6.9 6.1-7.12 16.69-.57 23.15l34.44 33.99c6 5.92 15.66 6.32 22.05.8 83.95-72.57 209.74-72.41 293.49 0 6.39 5.52 16.05 5.13 22.05-.8l34.44-33.99c6.56-6.46 6.33-17.06-.56-23.15z\"]\n};\nvar faWind = {\n prefix: 'fas',\n iconName: 'wind',\n icon: [512, 512, [], \"f72e\", \"M156.7 256H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h142.2c15.9 0 30.8 10.9 33.4 26.6 3.3 20-12.1 37.4-31.6 37.4-14.1 0-26.1-9.2-30.4-21.9-2.1-6.3-8.6-10.1-15.2-10.1H81.6c-9.8 0-17.7 8.8-15.9 18.4 8.6 44.1 47.6 77.6 94.2 77.6 57.1 0 102.7-50.1 95.2-108.6C249 291 205.4 256 156.7 256zM16 224h336c59.7 0 106.8-54.8 93.8-116.7-7.6-36.2-36.9-65.5-73.1-73.1-55.4-11.6-105.1 24.9-114.9 75.5-1.9 9.6 6.1 18.3 15.8 18.3h32.8c6.7 0 13.1-3.8 15.2-10.1C325.9 105.2 337.9 96 352 96c19.4 0 34.9 17.4 31.6 37.4-2.6 15.7-17.4 26.6-33.4 26.6H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16zm384 32H243.7c19.3 16.6 33.2 38.8 39.8 64H400c26.5 0 48 21.5 48 48s-21.5 48-48 48c-17.9 0-33.3-9.9-41.6-24.4-2.9-5-8.7-7.6-14.5-7.6h-33.8c-10.9 0-19 10.8-15.3 21.1 17.8 50.6 70.5 84.8 129.4 72.3 41.2-8.7 75.1-41.6 84.7-82.7C526 321.5 470.5 256 400 256z\"]\n};\nvar faWindowClose = {\n prefix: 'fas',\n iconName: 'window-close',\n icon: [512, 512, [], \"f410\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6 0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6 0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1 66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8 12.6 0 17.4L313.3 256l67.1 66.5z\"]\n};\nvar faWindowMaximize = {\n prefix: 'fas',\n iconName: 'window-maximize',\n icon: [512, 512, [], \"f2d0\", \"M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16 160H64v-84c0-6.6 5.4-12 12-12h360c6.6 0 12 5.4 12 12v84z\"]\n};\nvar faWindowMinimize = {\n prefix: 'fas',\n iconName: 'window-minimize',\n icon: [512, 512, [], \"f2d1\", \"M464 352H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48z\"]\n};\nvar faWindowRestore = {\n prefix: 'fas',\n iconName: 'window-restore',\n icon: [512, 512, [], \"f2d2\", \"M512 48v288c0 26.5-21.5 48-48 48h-48V176c0-44.1-35.9-80-80-80H128V48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zM384 176v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48zm-68 28c0-6.6-5.4-12-12-12H76c-6.6 0-12 5.4-12 12v52h252v-52z\"]\n};\nvar faWineBottle = {\n prefix: 'fas',\n iconName: 'wine-bottle',\n icon: [512, 512, [], \"f72f\", \"M507.31 72.57L439.43 4.69c-6.25-6.25-16.38-6.25-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l-76.67 76.67c-46.58-19.7-102.4-10.73-140.37 27.23L18.75 312.23c-24.99 24.99-24.99 65.52 0 90.51l90.51 90.51c24.99 24.99 65.52 24.99 90.51 0l158.39-158.39c37.96-37.96 46.93-93.79 27.23-140.37l76.67-76.67c6.25 6.25 16.38 6.25 22.63 0l22.63-22.63c6.24-6.24 6.24-16.37-.01-22.62zM179.22 423.29l-90.51-90.51 122.04-122.04 90.51 90.51-122.04 122.04z\"]\n};\nvar faWineGlass = {\n prefix: 'fas',\n iconName: 'wine-glass',\n icon: [288, 512, [], \"f4e3\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40z\"]\n};\nvar faWineGlassAlt = {\n prefix: 'fas',\n iconName: 'wine-glass-alt',\n icon: [288, 512, [], \"f5ce\", \"M216 464h-40V346.81c68.47-15.89 118.05-79.91 111.4-154.16l-15.95-178.1C270.71 6.31 263.9 0 255.74 0H32.26c-8.15 0-14.97 6.31-15.7 14.55L.6 192.66C-6.05 266.91 43.53 330.93 112 346.82V464H72c-22.09 0-40 17.91-40 40 0 4.42 3.58 8 8 8h208c4.42 0 8-3.58 8-8 0-22.09-17.91-40-40-40zM61.75 48h164.5l7.17 80H54.58l7.17-80z\"]\n};\nvar faWonSign = {\n prefix: 'fas',\n iconName: 'won-sign',\n icon: [576, 512, [], \"f159\", \"M564 192c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-48l18.6-80.6c1.7-7.5-4-14.7-11.7-14.7h-46.1c-5.7 0-10.6 4-11.7 9.5L450.7 128H340.8l-19.7-86c-1.3-5.5-6.1-9.3-11.7-9.3h-44c-5.6 0-10.4 3.8-11.7 9.3l-20 86H125l-17.5-85.7c-1.1-5.6-6.1-9.6-11.8-9.6H53.6c-7.7 0-13.4 7.1-11.7 14.6L60 128H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h62.3l7.2 32H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h83.9l40.9 182.6c1.2 5.5 6.1 9.4 11.7 9.4h56.8c5.6 0 10.4-3.9 11.7-9.3L259.3 288h55.1l42.4 182.7c1.3 5.4 6.1 9.3 11.7 9.3h56.8c5.6 0 10.4-3.9 11.7-9.3L479.1 288H564c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-70.1l7.4-32zM183.8 342c-6.2 25.8-6.8 47.2-7.3 47.2h-1.1s-1.7-22-6.8-47.2l-11-54h38.8zm27.5-118h-66.8l-6.5-32h80.8zm62.9 0l2-8.6c1.9-8 3.5-16 4.8-23.4h11.8c1.3 7.4 2.9 15.4 4.8 23.4l2 8.6zm130.9 118c-5.1 25.2-6.8 47.2-6.8 47.2h-1.1c-.6 0-1.1-21.4-7.3-47.2l-12.4-54h39.1zm25.2-118h-67.4l-7.3-32h81.6z\"]\n};\nvar faWrench = {\n prefix: 'fas',\n iconName: 'wrench',\n icon: [512, 512, [], \"f0ad\", \"M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z\"]\n};\nvar faXRay = {\n prefix: 'fas',\n iconName: 'x-ray',\n icon: [640, 512, [], \"f497\", \"M240 384c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm160 32c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16zM624 0H16C7.2 0 0 7.2 0 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16V16c0-8.8-7.2-16-16-16zm0 448h-48V96H64v352H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h608c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM480 248c0 4.4-3.6 8-8 8H336v32h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48v-16h-64v16c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48h64v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-32H168c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h136v-32H200c-4.4 0-8-3.6-8-8v-16c0-4.4 3.6-8 8-8h104v-24c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8v24h104c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H336v32h136c4.4 0 8 3.6 8 8v16z\"]\n};\nvar faYenSign = {\n prefix: 'fas',\n iconName: 'yen-sign',\n icon: [384, 512, [], \"f157\", \"M351.2 32h-65.3c-4.6 0-8.8 2.6-10.8 6.7l-55.4 113.2c-14.5 34.7-27.1 71.9-27.1 71.9h-1.3s-12.6-37.2-27.1-71.9L108.8 38.7c-2-4.1-6.2-6.7-10.8-6.7H32.8c-9.1 0-14.8 9.7-10.6 17.6L102.3 200H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h88.2l19.8 37.2V320H44c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h108v92c0 6.6 5.4 12 12 12h56c6.6 0 12-5.4 12-12v-92h108c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12H232v-26.8l19.8-37.2H340c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12h-58.3l80.1-150.4c4.3-7.9-1.5-17.6-10.6-17.6z\"]\n};\nvar faYinYang = {\n prefix: 'fas',\n iconName: 'yin-yang',\n icon: [496, 512, [], \"f6ad\", \"M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 376c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-128c-53.02 0-96 42.98-96 96s42.98 96 96 96c-106.04 0-192-85.96-192-192S141.96 64 248 64c53.02 0 96 42.98 96 96s-42.98 96-96 96zm0-128c-17.67 0-32 14.33-32 32s14.33 32 32 32 32-14.33 32-32-14.33-32-32-32z\"]\n};\nvar _iconsCache = {\n faAd: faAd,\n faAddressBook: faAddressBook,\n faAddressCard: faAddressCard,\n faAdjust: faAdjust,\n faAirFreshener: faAirFreshener,\n faAlignCenter: faAlignCenter,\n faAlignJustify: faAlignJustify,\n faAlignLeft: faAlignLeft,\n faAlignRight: faAlignRight,\n faAllergies: faAllergies,\n faAmbulance: faAmbulance,\n faAmericanSignLanguageInterpreting: faAmericanSignLanguageInterpreting,\n faAnchor: faAnchor,\n faAngleDoubleDown: faAngleDoubleDown,\n faAngleDoubleLeft: faAngleDoubleLeft,\n faAngleDoubleRight: faAngleDoubleRight,\n faAngleDoubleUp: faAngleDoubleUp,\n faAngleDown: faAngleDown,\n faAngleLeft: faAngleLeft,\n faAngleRight: faAngleRight,\n faAngleUp: faAngleUp,\n faAngry: faAngry,\n faAnkh: faAnkh,\n faAppleAlt: faAppleAlt,\n faArchive: faArchive,\n faArchway: faArchway,\n faArrowAltCircleDown: faArrowAltCircleDown,\n faArrowAltCircleLeft: faArrowAltCircleLeft,\n faArrowAltCircleRight: faArrowAltCircleRight,\n faArrowAltCircleUp: faArrowAltCircleUp,\n faArrowCircleDown: faArrowCircleDown,\n faArrowCircleLeft: faArrowCircleLeft,\n faArrowCircleRight: faArrowCircleRight,\n faArrowCircleUp: faArrowCircleUp,\n faArrowDown: faArrowDown,\n faArrowLeft: faArrowLeft,\n faArrowRight: faArrowRight,\n faArrowUp: faArrowUp,\n faArrowsAlt: faArrowsAlt,\n faArrowsAltH: faArrowsAltH,\n faArrowsAltV: faArrowsAltV,\n faAssistiveListeningSystems: faAssistiveListeningSystems,\n faAsterisk: faAsterisk,\n faAt: faAt,\n faAtlas: faAtlas,\n faAtom: faAtom,\n faAudioDescription: faAudioDescription,\n faAward: faAward,\n faBaby: faBaby,\n faBabyCarriage: faBabyCarriage,\n faBackspace: faBackspace,\n faBackward: faBackward,\n faBacon: faBacon,\n faBacteria: faBacteria,\n faBacterium: faBacterium,\n faBahai: faBahai,\n faBalanceScale: faBalanceScale,\n faBalanceScaleLeft: faBalanceScaleLeft,\n faBalanceScaleRight: faBalanceScaleRight,\n faBan: faBan,\n faBandAid: faBandAid,\n faBarcode: faBarcode,\n faBars: faBars,\n faBaseballBall: faBaseballBall,\n faBasketballBall: faBasketballBall,\n faBath: faBath,\n faBatteryEmpty: faBatteryEmpty,\n faBatteryFull: faBatteryFull,\n faBatteryHalf: faBatteryHalf,\n faBatteryQuarter: faBatteryQuarter,\n faBatteryThreeQuarters: faBatteryThreeQuarters,\n faBed: faBed,\n faBeer: faBeer,\n faBell: faBell,\n faBellSlash: faBellSlash,\n faBezierCurve: faBezierCurve,\n faBible: faBible,\n faBicycle: faBicycle,\n faBiking: faBiking,\n faBinoculars: faBinoculars,\n faBiohazard: faBiohazard,\n faBirthdayCake: faBirthdayCake,\n faBlender: faBlender,\n faBlenderPhone: faBlenderPhone,\n faBlind: faBlind,\n faBlog: faBlog,\n faBold: faBold,\n faBolt: faBolt,\n faBomb: faBomb,\n faBone: faBone,\n faBong: faBong,\n faBook: faBook,\n faBookDead: faBookDead,\n faBookMedical: faBookMedical,\n faBookOpen: faBookOpen,\n faBookReader: faBookReader,\n faBookmark: faBookmark,\n faBorderAll: faBorderAll,\n faBorderNone: faBorderNone,\n faBorderStyle: faBorderStyle,\n faBowlingBall: faBowlingBall,\n faBox: faBox,\n faBoxOpen: faBoxOpen,\n faBoxTissue: faBoxTissue,\n faBoxes: faBoxes,\n faBraille: faBraille,\n faBrain: faBrain,\n faBreadSlice: faBreadSlice,\n faBriefcase: faBriefcase,\n faBriefcaseMedical: faBriefcaseMedical,\n faBroadcastTower: faBroadcastTower,\n faBroom: faBroom,\n faBrush: faBrush,\n faBug: faBug,\n faBuilding: faBuilding,\n faBullhorn: faBullhorn,\n faBullseye: faBullseye,\n faBurn: faBurn,\n faBus: faBus,\n faBusAlt: faBusAlt,\n faBusinessTime: faBusinessTime,\n faCalculator: faCalculator,\n faCalendar: faCalendar,\n faCalendarAlt: faCalendarAlt,\n faCalendarCheck: faCalendarCheck,\n faCalendarDay: faCalendarDay,\n faCalendarMinus: faCalendarMinus,\n faCalendarPlus: faCalendarPlus,\n faCalendarTimes: faCalendarTimes,\n faCalendarWeek: faCalendarWeek,\n faCamera: faCamera,\n faCameraRetro: faCameraRetro,\n faCampground: faCampground,\n faCandyCane: faCandyCane,\n faCannabis: faCannabis,\n faCapsules: faCapsules,\n faCar: faCar,\n faCarAlt: faCarAlt,\n faCarBattery: faCarBattery,\n faCarCrash: faCarCrash,\n faCarSide: faCarSide,\n faCaravan: faCaravan,\n faCaretDown: faCaretDown,\n faCaretLeft: faCaretLeft,\n faCaretRight: faCaretRight,\n faCaretSquareDown: faCaretSquareDown,\n faCaretSquareLeft: faCaretSquareLeft,\n faCaretSquareRight: faCaretSquareRight,\n faCaretSquareUp: faCaretSquareUp,\n faCaretUp: faCaretUp,\n faCarrot: faCarrot,\n faCartArrowDown: faCartArrowDown,\n faCartPlus: faCartPlus,\n faCashRegister: faCashRegister,\n faCat: faCat,\n faCertificate: faCertificate,\n faChair: faChair,\n faChalkboard: faChalkboard,\n faChalkboardTeacher: faChalkboardTeacher,\n faChargingStation: faChargingStation,\n faChartArea: faChartArea,\n faChartBar: faChartBar,\n faChartLine: faChartLine,\n faChartPie: faChartPie,\n faCheck: faCheck,\n faCheckCircle: faCheckCircle,\n faCheckDouble: faCheckDouble,\n faCheckSquare: faCheckSquare,\n faCheese: faCheese,\n faChess: faChess,\n faChessBishop: faChessBishop,\n faChessBoard: faChessBoard,\n faChessKing: faChessKing,\n faChessKnight: faChessKnight,\n faChessPawn: faChessPawn,\n faChessQueen: faChessQueen,\n faChessRook: faChessRook,\n faChevronCircleDown: faChevronCircleDown,\n faChevronCircleLeft: faChevronCircleLeft,\n faChevronCircleRight: faChevronCircleRight,\n faChevronCircleUp: faChevronCircleUp,\n faChevronDown: faChevronDown,\n faChevronLeft: faChevronLeft,\n faChevronRight: faChevronRight,\n faChevronUp: faChevronUp,\n faChild: faChild,\n faChurch: faChurch,\n faCircle: faCircle,\n faCircleNotch: faCircleNotch,\n faCity: faCity,\n faClinicMedical: faClinicMedical,\n faClipboard: faClipboard,\n faClipboardCheck: faClipboardCheck,\n faClipboardList: faClipboardList,\n faClock: faClock,\n faClone: faClone,\n faClosedCaptioning: faClosedCaptioning,\n faCloud: faCloud,\n faCloudDownloadAlt: faCloudDownloadAlt,\n faCloudMeatball: faCloudMeatball,\n faCloudMoon: faCloudMoon,\n faCloudMoonRain: faCloudMoonRain,\n faCloudRain: faCloudRain,\n faCloudShowersHeavy: faCloudShowersHeavy,\n faCloudSun: faCloudSun,\n faCloudSunRain: faCloudSunRain,\n faCloudUploadAlt: faCloudUploadAlt,\n faCocktail: faCocktail,\n faCode: faCode,\n faCodeBranch: faCodeBranch,\n faCoffee: faCoffee,\n faCog: faCog,\n faCogs: faCogs,\n faCoins: faCoins,\n faColumns: faColumns,\n faComment: faComment,\n faCommentAlt: faCommentAlt,\n faCommentDollar: faCommentDollar,\n faCommentDots: faCommentDots,\n faCommentMedical: faCommentMedical,\n faCommentSlash: faCommentSlash,\n faComments: faComments,\n faCommentsDollar: faCommentsDollar,\n faCompactDisc: faCompactDisc,\n faCompass: faCompass,\n faCompress: faCompress,\n faCompressAlt: faCompressAlt,\n faCompressArrowsAlt: faCompressArrowsAlt,\n faConciergeBell: faConciergeBell,\n faCookie: faCookie,\n faCookieBite: faCookieBite,\n faCopy: faCopy,\n faCopyright: faCopyright,\n faCouch: faCouch,\n faCreditCard: faCreditCard,\n faCrop: faCrop,\n faCropAlt: faCropAlt,\n faCross: faCross,\n faCrosshairs: faCrosshairs,\n faCrow: faCrow,\n faCrown: faCrown,\n faCrutch: faCrutch,\n faCube: faCube,\n faCubes: faCubes,\n faCut: faCut,\n faDatabase: faDatabase,\n faDeaf: faDeaf,\n faDemocrat: faDemocrat,\n faDesktop: faDesktop,\n faDharmachakra: faDharmachakra,\n faDiagnoses: faDiagnoses,\n faDice: faDice,\n faDiceD20: faDiceD20,\n faDiceD6: faDiceD6,\n faDiceFive: faDiceFive,\n faDiceFour: faDiceFour,\n faDiceOne: faDiceOne,\n faDiceSix: faDiceSix,\n faDiceThree: faDiceThree,\n faDiceTwo: faDiceTwo,\n faDigitalTachograph: faDigitalTachograph,\n faDirections: faDirections,\n faDisease: faDisease,\n faDivide: faDivide,\n faDizzy: faDizzy,\n faDna: faDna,\n faDog: faDog,\n faDollarSign: faDollarSign,\n faDolly: faDolly,\n faDollyFlatbed: faDollyFlatbed,\n faDonate: faDonate,\n faDoorClosed: faDoorClosed,\n faDoorOpen: faDoorOpen,\n faDotCircle: faDotCircle,\n faDove: faDove,\n faDownload: faDownload,\n faDraftingCompass: faDraftingCompass,\n faDragon: faDragon,\n faDrawPolygon: faDrawPolygon,\n faDrum: faDrum,\n faDrumSteelpan: faDrumSteelpan,\n faDrumstickBite: faDrumstickBite,\n faDumbbell: faDumbbell,\n faDumpster: faDumpster,\n faDumpsterFire: faDumpsterFire,\n faDungeon: faDungeon,\n faEdit: faEdit,\n faEgg: faEgg,\n faEject: faEject,\n faEllipsisH: faEllipsisH,\n faEllipsisV: faEllipsisV,\n faEnvelope: faEnvelope,\n faEnvelopeOpen: faEnvelopeOpen,\n faEnvelopeOpenText: faEnvelopeOpenText,\n faEnvelopeSquare: faEnvelopeSquare,\n faEquals: faEquals,\n faEraser: faEraser,\n faEthernet: faEthernet,\n faEuroSign: faEuroSign,\n faExchangeAlt: faExchangeAlt,\n faExclamation: faExclamation,\n faExclamationCircle: faExclamationCircle,\n faExclamationTriangle: faExclamationTriangle,\n faExpand: faExpand,\n faExpandAlt: faExpandAlt,\n faExpandArrowsAlt: faExpandArrowsAlt,\n faExternalLinkAlt: faExternalLinkAlt,\n faExternalLinkSquareAlt: faExternalLinkSquareAlt,\n faEye: faEye,\n faEyeDropper: faEyeDropper,\n faEyeSlash: faEyeSlash,\n faFan: faFan,\n faFastBackward: faFastBackward,\n faFastForward: faFastForward,\n faFaucet: faFaucet,\n faFax: faFax,\n faFeather: faFeather,\n faFeatherAlt: faFeatherAlt,\n faFemale: faFemale,\n faFighterJet: faFighterJet,\n faFile: faFile,\n faFileAlt: faFileAlt,\n faFileArchive: faFileArchive,\n faFileAudio: faFileAudio,\n faFileCode: faFileCode,\n faFileContract: faFileContract,\n faFileCsv: faFileCsv,\n faFileDownload: faFileDownload,\n faFileExcel: faFileExcel,\n faFileExport: faFileExport,\n faFileImage: faFileImage,\n faFileImport: faFileImport,\n faFileInvoice: faFileInvoice,\n faFileInvoiceDollar: faFileInvoiceDollar,\n faFileMedical: faFileMedical,\n faFileMedicalAlt: faFileMedicalAlt,\n faFilePdf: faFilePdf,\n faFilePowerpoint: faFilePowerpoint,\n faFilePrescription: faFilePrescription,\n faFileSignature: faFileSignature,\n faFileUpload: faFileUpload,\n faFileVideo: faFileVideo,\n faFileWord: faFileWord,\n faFill: faFill,\n faFillDrip: faFillDrip,\n faFilm: faFilm,\n faFilter: faFilter,\n faFingerprint: faFingerprint,\n faFire: faFire,\n faFireAlt: faFireAlt,\n faFireExtinguisher: faFireExtinguisher,\n faFirstAid: faFirstAid,\n faFish: faFish,\n faFistRaised: faFistRaised,\n faFlag: faFlag,\n faFlagCheckered: faFlagCheckered,\n faFlagUsa: faFlagUsa,\n faFlask: faFlask,\n faFlushed: faFlushed,\n faFolder: faFolder,\n faFolderMinus: faFolderMinus,\n faFolderOpen: faFolderOpen,\n faFolderPlus: faFolderPlus,\n faFont: faFont,\n faFontAwesomeLogoFull: faFontAwesomeLogoFull,\n faFootballBall: faFootballBall,\n faForward: faForward,\n faFrog: faFrog,\n faFrown: faFrown,\n faFrownOpen: faFrownOpen,\n faFunnelDollar: faFunnelDollar,\n faFutbol: faFutbol,\n faGamepad: faGamepad,\n faGasPump: faGasPump,\n faGavel: faGavel,\n faGem: faGem,\n faGenderless: faGenderless,\n faGhost: faGhost,\n faGift: faGift,\n faGifts: faGifts,\n faGlassCheers: faGlassCheers,\n faGlassMartini: faGlassMartini,\n faGlassMartiniAlt: faGlassMartiniAlt,\n faGlassWhiskey: faGlassWhiskey,\n faGlasses: faGlasses,\n faGlobe: faGlobe,\n faGlobeAfrica: faGlobeAfrica,\n faGlobeAmericas: faGlobeAmericas,\n faGlobeAsia: faGlobeAsia,\n faGlobeEurope: faGlobeEurope,\n faGolfBall: faGolfBall,\n faGopuram: faGopuram,\n faGraduationCap: faGraduationCap,\n faGreaterThan: faGreaterThan,\n faGreaterThanEqual: faGreaterThanEqual,\n faGrimace: faGrimace,\n faGrin: faGrin,\n faGrinAlt: faGrinAlt,\n faGrinBeam: faGrinBeam,\n faGrinBeamSweat: faGrinBeamSweat,\n faGrinHearts: faGrinHearts,\n faGrinSquint: faGrinSquint,\n faGrinSquintTears: faGrinSquintTears,\n faGrinStars: faGrinStars,\n faGrinTears: faGrinTears,\n faGrinTongue: faGrinTongue,\n faGrinTongueSquint: faGrinTongueSquint,\n faGrinTongueWink: faGrinTongueWink,\n faGrinWink: faGrinWink,\n faGripHorizontal: faGripHorizontal,\n faGripLines: faGripLines,\n faGripLinesVertical: faGripLinesVertical,\n faGripVertical: faGripVertical,\n faGuitar: faGuitar,\n faHSquare: faHSquare,\n faHamburger: faHamburger,\n faHammer: faHammer,\n faHamsa: faHamsa,\n faHandHolding: faHandHolding,\n faHandHoldingHeart: faHandHoldingHeart,\n faHandHoldingMedical: faHandHoldingMedical,\n faHandHoldingUsd: faHandHoldingUsd,\n faHandHoldingWater: faHandHoldingWater,\n faHandLizard: faHandLizard,\n faHandMiddleFinger: faHandMiddleFinger,\n faHandPaper: faHandPaper,\n faHandPeace: faHandPeace,\n faHandPointDown: faHandPointDown,\n faHandPointLeft: faHandPointLeft,\n faHandPointRight: faHandPointRight,\n faHandPointUp: faHandPointUp,\n faHandPointer: faHandPointer,\n faHandRock: faHandRock,\n faHandScissors: faHandScissors,\n faHandSparkles: faHandSparkles,\n faHandSpock: faHandSpock,\n faHands: faHands,\n faHandsHelping: faHandsHelping,\n faHandsWash: faHandsWash,\n faHandshake: faHandshake,\n faHandshakeAltSlash: faHandshakeAltSlash,\n faHandshakeSlash: faHandshakeSlash,\n faHanukiah: faHanukiah,\n faHardHat: faHardHat,\n faHashtag: faHashtag,\n faHatCowboy: faHatCowboy,\n faHatCowboySide: faHatCowboySide,\n faHatWizard: faHatWizard,\n faHdd: faHdd,\n faHeadSideCough: faHeadSideCough,\n faHeadSideCoughSlash: faHeadSideCoughSlash,\n faHeadSideMask: faHeadSideMask,\n faHeadSideVirus: faHeadSideVirus,\n faHeading: faHeading,\n faHeadphones: faHeadphones,\n faHeadphonesAlt: faHeadphonesAlt,\n faHeadset: faHeadset,\n faHeart: faHeart,\n faHeartBroken: faHeartBroken,\n faHeartbeat: faHeartbeat,\n faHelicopter: faHelicopter,\n faHighlighter: faHighlighter,\n faHiking: faHiking,\n faHippo: faHippo,\n faHistory: faHistory,\n faHockeyPuck: faHockeyPuck,\n faHollyBerry: faHollyBerry,\n faHome: faHome,\n faHorse: faHorse,\n faHorseHead: faHorseHead,\n faHospital: faHospital,\n faHospitalAlt: faHospitalAlt,\n faHospitalSymbol: faHospitalSymbol,\n faHospitalUser: faHospitalUser,\n faHotTub: faHotTub,\n faHotdog: faHotdog,\n faHotel: faHotel,\n faHourglass: faHourglass,\n faHourglassEnd: faHourglassEnd,\n faHourglassHalf: faHourglassHalf,\n faHourglassStart: faHourglassStart,\n faHouseDamage: faHouseDamage,\n faHouseUser: faHouseUser,\n faHryvnia: faHryvnia,\n faICursor: faICursor,\n faIceCream: faIceCream,\n faIcicles: faIcicles,\n faIcons: faIcons,\n faIdBadge: faIdBadge,\n faIdCard: faIdCard,\n faIdCardAlt: faIdCardAlt,\n faIgloo: faIgloo,\n faImage: faImage,\n faImages: faImages,\n faInbox: faInbox,\n faIndent: faIndent,\n faIndustry: faIndustry,\n faInfinity: faInfinity,\n faInfo: faInfo,\n faInfoCircle: faInfoCircle,\n faItalic: faItalic,\n faJedi: faJedi,\n faJoint: faJoint,\n faJournalWhills: faJournalWhills,\n faKaaba: faKaaba,\n faKey: faKey,\n faKeyboard: faKeyboard,\n faKhanda: faKhanda,\n faKiss: faKiss,\n faKissBeam: faKissBeam,\n faKissWinkHeart: faKissWinkHeart,\n faKiwiBird: faKiwiBird,\n faLandmark: faLandmark,\n faLanguage: faLanguage,\n faLaptop: faLaptop,\n faLaptopCode: faLaptopCode,\n faLaptopHouse: faLaptopHouse,\n faLaptopMedical: faLaptopMedical,\n faLaugh: faLaugh,\n faLaughBeam: faLaughBeam,\n faLaughSquint: faLaughSquint,\n faLaughWink: faLaughWink,\n faLayerGroup: faLayerGroup,\n faLeaf: faLeaf,\n faLemon: faLemon,\n faLessThan: faLessThan,\n faLessThanEqual: faLessThanEqual,\n faLevelDownAlt: faLevelDownAlt,\n faLevelUpAlt: faLevelUpAlt,\n faLifeRing: faLifeRing,\n faLightbulb: faLightbulb,\n faLink: faLink,\n faLiraSign: faLiraSign,\n faList: faList,\n faListAlt: faListAlt,\n faListOl: faListOl,\n faListUl: faListUl,\n faLocationArrow: faLocationArrow,\n faLock: faLock,\n faLockOpen: faLockOpen,\n faLongArrowAltDown: faLongArrowAltDown,\n faLongArrowAltLeft: faLongArrowAltLeft,\n faLongArrowAltRight: faLongArrowAltRight,\n faLongArrowAltUp: faLongArrowAltUp,\n faLowVision: faLowVision,\n faLuggageCart: faLuggageCart,\n faLungs: faLungs,\n faLungsVirus: faLungsVirus,\n faMagic: faMagic,\n faMagnet: faMagnet,\n faMailBulk: faMailBulk,\n faMale: faMale,\n faMap: faMap,\n faMapMarked: faMapMarked,\n faMapMarkedAlt: faMapMarkedAlt,\n faMapMarker: faMapMarker,\n faMapMarkerAlt: faMapMarkerAlt,\n faMapPin: faMapPin,\n faMapSigns: faMapSigns,\n faMarker: faMarker,\n faMars: faMars,\n faMarsDouble: faMarsDouble,\n faMarsStroke: faMarsStroke,\n faMarsStrokeH: faMarsStrokeH,\n faMarsStrokeV: faMarsStrokeV,\n faMask: faMask,\n faMedal: faMedal,\n faMedkit: faMedkit,\n faMeh: faMeh,\n faMehBlank: faMehBlank,\n faMehRollingEyes: faMehRollingEyes,\n faMemory: faMemory,\n faMenorah: faMenorah,\n faMercury: faMercury,\n faMeteor: faMeteor,\n faMicrochip: faMicrochip,\n faMicrophone: faMicrophone,\n faMicrophoneAlt: faMicrophoneAlt,\n faMicrophoneAltSlash: faMicrophoneAltSlash,\n faMicrophoneSlash: faMicrophoneSlash,\n faMicroscope: faMicroscope,\n faMinus: faMinus,\n faMinusCircle: faMinusCircle,\n faMinusSquare: faMinusSquare,\n faMitten: faMitten,\n faMobile: faMobile,\n faMobileAlt: faMobileAlt,\n faMoneyBill: faMoneyBill,\n faMoneyBillAlt: faMoneyBillAlt,\n faMoneyBillWave: faMoneyBillWave,\n faMoneyBillWaveAlt: faMoneyBillWaveAlt,\n faMoneyCheck: faMoneyCheck,\n faMoneyCheckAlt: faMoneyCheckAlt,\n faMonument: faMonument,\n faMoon: faMoon,\n faMortarPestle: faMortarPestle,\n faMosque: faMosque,\n faMotorcycle: faMotorcycle,\n faMountain: faMountain,\n faMouse: faMouse,\n faMousePointer: faMousePointer,\n faMugHot: faMugHot,\n faMusic: faMusic,\n faNetworkWired: faNetworkWired,\n faNeuter: faNeuter,\n faNewspaper: faNewspaper,\n faNotEqual: faNotEqual,\n faNotesMedical: faNotesMedical,\n faObjectGroup: faObjectGroup,\n faObjectUngroup: faObjectUngroup,\n faOilCan: faOilCan,\n faOm: faOm,\n faOtter: faOtter,\n faOutdent: faOutdent,\n faPager: faPager,\n faPaintBrush: faPaintBrush,\n faPaintRoller: faPaintRoller,\n faPalette: faPalette,\n faPallet: faPallet,\n faPaperPlane: faPaperPlane,\n faPaperclip: faPaperclip,\n faParachuteBox: faParachuteBox,\n faParagraph: faParagraph,\n faParking: faParking,\n faPassport: faPassport,\n faPastafarianism: faPastafarianism,\n faPaste: faPaste,\n faPause: faPause,\n faPauseCircle: faPauseCircle,\n faPaw: faPaw,\n faPeace: faPeace,\n faPen: faPen,\n faPenAlt: faPenAlt,\n faPenFancy: faPenFancy,\n faPenNib: faPenNib,\n faPenSquare: faPenSquare,\n faPencilAlt: faPencilAlt,\n faPencilRuler: faPencilRuler,\n faPeopleArrows: faPeopleArrows,\n faPeopleCarry: faPeopleCarry,\n faPepperHot: faPepperHot,\n faPercent: faPercent,\n faPercentage: faPercentage,\n faPersonBooth: faPersonBooth,\n faPhone: faPhone,\n faPhoneAlt: faPhoneAlt,\n faPhoneSlash: faPhoneSlash,\n faPhoneSquare: faPhoneSquare,\n faPhoneSquareAlt: faPhoneSquareAlt,\n faPhoneVolume: faPhoneVolume,\n faPhotoVideo: faPhotoVideo,\n faPiggyBank: faPiggyBank,\n faPills: faPills,\n faPizzaSlice: faPizzaSlice,\n faPlaceOfWorship: faPlaceOfWorship,\n faPlane: faPlane,\n faPlaneArrival: faPlaneArrival,\n faPlaneDeparture: faPlaneDeparture,\n faPlaneSlash: faPlaneSlash,\n faPlay: faPlay,\n faPlayCircle: faPlayCircle,\n faPlug: faPlug,\n faPlus: faPlus,\n faPlusCircle: faPlusCircle,\n faPlusSquare: faPlusSquare,\n faPodcast: faPodcast,\n faPoll: faPoll,\n faPollH: faPollH,\n faPoo: faPoo,\n faPooStorm: faPooStorm,\n faPoop: faPoop,\n faPortrait: faPortrait,\n faPoundSign: faPoundSign,\n faPowerOff: faPowerOff,\n faPray: faPray,\n faPrayingHands: faPrayingHands,\n faPrescription: faPrescription,\n faPrescriptionBottle: faPrescriptionBottle,\n faPrescriptionBottleAlt: faPrescriptionBottleAlt,\n faPrint: faPrint,\n faProcedures: faProcedures,\n faProjectDiagram: faProjectDiagram,\n faPumpMedical: faPumpMedical,\n faPumpSoap: faPumpSoap,\n faPuzzlePiece: faPuzzlePiece,\n faQrcode: faQrcode,\n faQuestion: faQuestion,\n faQuestionCircle: faQuestionCircle,\n faQuidditch: faQuidditch,\n faQuoteLeft: faQuoteLeft,\n faQuoteRight: faQuoteRight,\n faQuran: faQuran,\n faRadiation: faRadiation,\n faRadiationAlt: faRadiationAlt,\n faRainbow: faRainbow,\n faRandom: faRandom,\n faReceipt: faReceipt,\n faRecordVinyl: faRecordVinyl,\n faRecycle: faRecycle,\n faRedo: faRedo,\n faRedoAlt: faRedoAlt,\n faRegistered: faRegistered,\n faRemoveFormat: faRemoveFormat,\n faReply: faReply,\n faReplyAll: faReplyAll,\n faRepublican: faRepublican,\n faRestroom: faRestroom,\n faRetweet: faRetweet,\n faRibbon: faRibbon,\n faRing: faRing,\n faRoad: faRoad,\n faRobot: faRobot,\n faRocket: faRocket,\n faRoute: faRoute,\n faRss: faRss,\n faRssSquare: faRssSquare,\n faRubleSign: faRubleSign,\n faRuler: faRuler,\n faRulerCombined: faRulerCombined,\n faRulerHorizontal: faRulerHorizontal,\n faRulerVertical: faRulerVertical,\n faRunning: faRunning,\n faRupeeSign: faRupeeSign,\n faSadCry: faSadCry,\n faSadTear: faSadTear,\n faSatellite: faSatellite,\n faSatelliteDish: faSatelliteDish,\n faSave: faSave,\n faSchool: faSchool,\n faScrewdriver: faScrewdriver,\n faScroll: faScroll,\n faSdCard: faSdCard,\n faSearch: faSearch,\n faSearchDollar: faSearchDollar,\n faSearchLocation: faSearchLocation,\n faSearchMinus: faSearchMinus,\n faSearchPlus: faSearchPlus,\n faSeedling: faSeedling,\n faServer: faServer,\n faShapes: faShapes,\n faShare: faShare,\n faShareAlt: faShareAlt,\n faShareAltSquare: faShareAltSquare,\n faShareSquare: faShareSquare,\n faShekelSign: faShekelSign,\n faShieldAlt: faShieldAlt,\n faShieldVirus: faShieldVirus,\n faShip: faShip,\n faShippingFast: faShippingFast,\n faShoePrints: faShoePrints,\n faShoppingBag: faShoppingBag,\n faShoppingBasket: faShoppingBasket,\n faShoppingCart: faShoppingCart,\n faShower: faShower,\n faShuttleVan: faShuttleVan,\n faSign: faSign,\n faSignInAlt: faSignInAlt,\n faSignLanguage: faSignLanguage,\n faSignOutAlt: faSignOutAlt,\n faSignal: faSignal,\n faSignature: faSignature,\n faSimCard: faSimCard,\n faSink: faSink,\n faSitemap: faSitemap,\n faSkating: faSkating,\n faSkiing: faSkiing,\n faSkiingNordic: faSkiingNordic,\n faSkull: faSkull,\n faSkullCrossbones: faSkullCrossbones,\n faSlash: faSlash,\n faSleigh: faSleigh,\n faSlidersH: faSlidersH,\n faSmile: faSmile,\n faSmileBeam: faSmileBeam,\n faSmileWink: faSmileWink,\n faSmog: faSmog,\n faSmoking: faSmoking,\n faSmokingBan: faSmokingBan,\n faSms: faSms,\n faSnowboarding: faSnowboarding,\n faSnowflake: faSnowflake,\n faSnowman: faSnowman,\n faSnowplow: faSnowplow,\n faSoap: faSoap,\n faSocks: faSocks,\n faSolarPanel: faSolarPanel,\n faSort: faSort,\n faSortAlphaDown: faSortAlphaDown,\n faSortAlphaDownAlt: faSortAlphaDownAlt,\n faSortAlphaUp: faSortAlphaUp,\n faSortAlphaUpAlt: faSortAlphaUpAlt,\n faSortAmountDown: faSortAmountDown,\n faSortAmountDownAlt: faSortAmountDownAlt,\n faSortAmountUp: faSortAmountUp,\n faSortAmountUpAlt: faSortAmountUpAlt,\n faSortDown: faSortDown,\n faSortNumericDown: faSortNumericDown,\n faSortNumericDownAlt: faSortNumericDownAlt,\n faSortNumericUp: faSortNumericUp,\n faSortNumericUpAlt: faSortNumericUpAlt,\n faSortUp: faSortUp,\n faSpa: faSpa,\n faSpaceShuttle: faSpaceShuttle,\n faSpellCheck: faSpellCheck,\n faSpider: faSpider,\n faSpinner: faSpinner,\n faSplotch: faSplotch,\n faSprayCan: faSprayCan,\n faSquare: faSquare,\n faSquareFull: faSquareFull,\n faSquareRootAlt: faSquareRootAlt,\n faStamp: faStamp,\n faStar: faStar,\n faStarAndCrescent: faStarAndCrescent,\n faStarHalf: faStarHalf,\n faStarHalfAlt: faStarHalfAlt,\n faStarOfDavid: faStarOfDavid,\n faStarOfLife: faStarOfLife,\n faStepBackward: faStepBackward,\n faStepForward: faStepForward,\n faStethoscope: faStethoscope,\n faStickyNote: faStickyNote,\n faStop: faStop,\n faStopCircle: faStopCircle,\n faStopwatch: faStopwatch,\n faStopwatch20: faStopwatch20,\n faStore: faStore,\n faStoreAlt: faStoreAlt,\n faStoreAltSlash: faStoreAltSlash,\n faStoreSlash: faStoreSlash,\n faStream: faStream,\n faStreetView: faStreetView,\n faStrikethrough: faStrikethrough,\n faStroopwafel: faStroopwafel,\n faSubscript: faSubscript,\n faSubway: faSubway,\n faSuitcase: faSuitcase,\n faSuitcaseRolling: faSuitcaseRolling,\n faSun: faSun,\n faSuperscript: faSuperscript,\n faSurprise: faSurprise,\n faSwatchbook: faSwatchbook,\n faSwimmer: faSwimmer,\n faSwimmingPool: faSwimmingPool,\n faSynagogue: faSynagogue,\n faSync: faSync,\n faSyncAlt: faSyncAlt,\n faSyringe: faSyringe,\n faTable: faTable,\n faTableTennis: faTableTennis,\n faTablet: faTablet,\n faTabletAlt: faTabletAlt,\n faTablets: faTablets,\n faTachometerAlt: faTachometerAlt,\n faTag: faTag,\n faTags: faTags,\n faTape: faTape,\n faTasks: faTasks,\n faTaxi: faTaxi,\n faTeeth: faTeeth,\n faTeethOpen: faTeethOpen,\n faTemperatureHigh: faTemperatureHigh,\n faTemperatureLow: faTemperatureLow,\n faTenge: faTenge,\n faTerminal: faTerminal,\n faTextHeight: faTextHeight,\n faTextWidth: faTextWidth,\n faTh: faTh,\n faThLarge: faThLarge,\n faThList: faThList,\n faTheaterMasks: faTheaterMasks,\n faThermometer: faThermometer,\n faThermometerEmpty: faThermometerEmpty,\n faThermometerFull: faThermometerFull,\n faThermometerHalf: faThermometerHalf,\n faThermometerQuarter: faThermometerQuarter,\n faThermometerThreeQuarters: faThermometerThreeQuarters,\n faThumbsDown: faThumbsDown,\n faThumbsUp: faThumbsUp,\n faThumbtack: faThumbtack,\n faTicketAlt: faTicketAlt,\n faTimes: faTimes,\n faTimesCircle: faTimesCircle,\n faTint: faTint,\n faTintSlash: faTintSlash,\n faTired: faTired,\n faToggleOff: faToggleOff,\n faToggleOn: faToggleOn,\n faToilet: faToilet,\n faToiletPaper: faToiletPaper,\n faToiletPaperSlash: faToiletPaperSlash,\n faToolbox: faToolbox,\n faTools: faTools,\n faTooth: faTooth,\n faTorah: faTorah,\n faToriiGate: faToriiGate,\n faTractor: faTractor,\n faTrademark: faTrademark,\n faTrafficLight: faTrafficLight,\n faTrailer: faTrailer,\n faTrain: faTrain,\n faTram: faTram,\n faTransgender: faTransgender,\n faTransgenderAlt: faTransgenderAlt,\n faTrash: faTrash,\n faTrashAlt: faTrashAlt,\n faTrashRestore: faTrashRestore,\n faTrashRestoreAlt: faTrashRestoreAlt,\n faTree: faTree,\n faTrophy: faTrophy,\n faTruck: faTruck,\n faTruckLoading: faTruckLoading,\n faTruckMonster: faTruckMonster,\n faTruckMoving: faTruckMoving,\n faTruckPickup: faTruckPickup,\n faTshirt: faTshirt,\n faTty: faTty,\n faTv: faTv,\n faUmbrella: faUmbrella,\n faUmbrellaBeach: faUmbrellaBeach,\n faUnderline: faUnderline,\n faUndo: faUndo,\n faUndoAlt: faUndoAlt,\n faUniversalAccess: faUniversalAccess,\n faUniversity: faUniversity,\n faUnlink: faUnlink,\n faUnlock: faUnlock,\n faUnlockAlt: faUnlockAlt,\n faUpload: faUpload,\n faUser: faUser,\n faUserAlt: faUserAlt,\n faUserAltSlash: faUserAltSlash,\n faUserAstronaut: faUserAstronaut,\n faUserCheck: faUserCheck,\n faUserCircle: faUserCircle,\n faUserClock: faUserClock,\n faUserCog: faUserCog,\n faUserEdit: faUserEdit,\n faUserFriends: faUserFriends,\n faUserGraduate: faUserGraduate,\n faUserInjured: faUserInjured,\n faUserLock: faUserLock,\n faUserMd: faUserMd,\n faUserMinus: faUserMinus,\n faUserNinja: faUserNinja,\n faUserNurse: faUserNurse,\n faUserPlus: faUserPlus,\n faUserSecret: faUserSecret,\n faUserShield: faUserShield,\n faUserSlash: faUserSlash,\n faUserTag: faUserTag,\n faUserTie: faUserTie,\n faUserTimes: faUserTimes,\n faUsers: faUsers,\n faUsersCog: faUsersCog,\n faUsersSlash: faUsersSlash,\n faUtensilSpoon: faUtensilSpoon,\n faUtensils: faUtensils,\n faVectorSquare: faVectorSquare,\n faVenus: faVenus,\n faVenusDouble: faVenusDouble,\n faVenusMars: faVenusMars,\n faVest: faVest,\n faVestPatches: faVestPatches,\n faVial: faVial,\n faVials: faVials,\n faVideo: faVideo,\n faVideoSlash: faVideoSlash,\n faVihara: faVihara,\n faVirus: faVirus,\n faVirusSlash: faVirusSlash,\n faViruses: faViruses,\n faVoicemail: faVoicemail,\n faVolleyballBall: faVolleyballBall,\n faVolumeDown: faVolumeDown,\n faVolumeMute: faVolumeMute,\n faVolumeOff: faVolumeOff,\n faVolumeUp: faVolumeUp,\n faVoteYea: faVoteYea,\n faVrCardboard: faVrCardboard,\n faWalking: faWalking,\n faWallet: faWallet,\n faWarehouse: faWarehouse,\n faWater: faWater,\n faWaveSquare: faWaveSquare,\n faWeight: faWeight,\n faWeightHanging: faWeightHanging,\n faWheelchair: faWheelchair,\n faWifi: faWifi,\n faWind: faWind,\n faWindowClose: faWindowClose,\n faWindowMaximize: faWindowMaximize,\n faWindowMinimize: faWindowMinimize,\n faWindowRestore: faWindowRestore,\n faWineBottle: faWineBottle,\n faWineGlass: faWineGlass,\n faWineGlassAlt: faWineGlassAlt,\n faWonSign: faWonSign,\n faWrench: faWrench,\n faXRay: faXRay,\n faYenSign: faYenSign,\n faYinYang: faYinYang\n};\n\nexport { _iconsCache as fas, prefix, faAd, faAddressBook, faAddressCard, faAdjust, faAirFreshener, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faAnkh, faAppleAlt, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAtom, faAudioDescription, faAward, faBaby, faBabyCarriage, faBackspace, faBackward, faBacon, faBacteria, faBacterium, faBahai, faBalanceScale, faBalanceScaleLeft, faBalanceScaleRight, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBible, faBicycle, faBiking, faBinoculars, faBiohazard, faBirthdayCake, faBlender, faBlenderPhone, faBlind, faBlog, faBold, faBolt, faBomb, faBone, faBong, faBook, faBookDead, faBookMedical, faBookOpen, faBookReader, faBookmark, faBorderAll, faBorderNone, faBorderStyle, faBowlingBall, faBox, faBoxOpen, faBoxTissue, faBoxes, faBraille, faBrain, faBreadSlice, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faBusinessTime, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarDay, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCalendarWeek, faCamera, faCameraRetro, faCampground, faCandyCane, faCannabis, faCapsules, faCar, faCarAlt, faCarBattery, faCarCrash, faCarSide, faCaravan, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCarrot, faCartArrowDown, faCartPlus, faCashRegister, faCat, faCertificate, faChair, faChalkboard, faChalkboardTeacher, faChargingStation, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faCheese, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faCity, faClinicMedical, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudMeatball, faCloudMoon, faCloudMoonRain, faCloudRain, faCloudShowersHeavy, faCloudSun, faCloudSunRain, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDollar, faCommentDots, faCommentMedical, faCommentSlash, faComments, faCommentsDollar, faCompactDisc, faCompass, faCompress, faCompressAlt, faCompressArrowsAlt, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCross, faCrosshairs, faCrow, faCrown, faCrutch, faCube, faCubes, faCut, faDatabase, faDeaf, faDemocrat, faDesktop, faDharmachakra, faDiagnoses, faDice, faDiceD20, faDiceD6, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDirections, faDisease, faDivide, faDizzy, faDna, faDog, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDragon, faDrawPolygon, faDrum, faDrumSteelpan, faDrumstickBite, faDumbbell, faDumpster, faDumpsterFire, faDungeon, faEdit, faEgg, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeOpenText, faEnvelopeSquare, faEquals, faEraser, faEthernet, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandAlt, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFan, faFastBackward, faFastForward, faFaucet, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileCsv, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireAlt, faFireExtinguisher, faFirstAid, faFish, faFistRaised, faFlag, faFlagCheckered, faFlagUsa, faFlask, faFlushed, faFolder, faFolderMinus, faFolderOpen, faFolderPlus, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFunnelDollar, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGhost, faGift, faGifts, faGlassCheers, faGlassMartini, faGlassMartiniAlt, faGlassWhiskey, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGlobeEurope, faGolfBall, faGopuram, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripLines, faGripLinesVertical, faGripVertical, faGuitar, faHSquare, faHamburger, faHammer, faHamsa, faHandHolding, faHandHoldingHeart, faHandHoldingMedical, faHandHoldingUsd, faHandHoldingWater, faHandLizard, faHandMiddleFinger, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSparkles, faHandSpock, faHands, faHandsHelping, faHandsWash, faHandshake, faHandshakeAltSlash, faHandshakeSlash, faHanukiah, faHardHat, faHashtag, faHatCowboy, faHatCowboySide, faHatWizard, faHdd, faHeadSideCough, faHeadSideCoughSlash, faHeadSideMask, faHeadSideVirus, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartBroken, faHeartbeat, faHelicopter, faHighlighter, faHiking, faHippo, faHistory, faHockeyPuck, faHollyBerry, faHome, faHorse, faHorseHead, faHospital, faHospitalAlt, faHospitalSymbol, faHospitalUser, faHotTub, faHotdog, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faHouseDamage, faHouseUser, faHryvnia, faICursor, faIceCream, faIcicles, faIcons, faIdBadge, faIdCard, faIdCardAlt, faIgloo, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJedi, faJoint, faJournalWhills, faKaaba, faKey, faKeyboard, faKhanda, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLandmark, faLanguage, faLaptop, faLaptopCode, faLaptopHouse, faLaptopMedical, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLayerGroup, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faLungs, faLungsVirus, faMagic, faMagnet, faMailBulk, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMask, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMenorah, faMercury, faMeteor, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMicroscope, faMinus, faMinusCircle, faMinusSquare, faMitten, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMosque, faMotorcycle, faMountain, faMouse, faMousePointer, faMugHot, faMusic, faNetworkWired, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOilCan, faOm, faOtter, faOutdent, faPager, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPastafarianism, faPaste, faPause, faPauseCircle, faPaw, faPeace, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleArrows, faPeopleCarry, faPepperHot, faPercent, faPercentage, faPersonBooth, faPhone, faPhoneAlt, faPhoneSlash, faPhoneSquare, faPhoneSquareAlt, faPhoneVolume, faPhotoVideo, faPiggyBank, faPills, faPizzaSlice, faPlaceOfWorship, faPlane, faPlaneArrival, faPlaneDeparture, faPlaneSlash, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoll, faPollH, faPoo, faPooStorm, faPoop, faPortrait, faPoundSign, faPowerOff, faPray, faPrayingHands, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPumpMedical, faPumpSoap, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faQuran, faRadiation, faRadiationAlt, faRainbow, faRandom, faReceipt, faRecordVinyl, faRecycle, faRedo, faRedoAlt, faRegistered, faRemoveFormat, faReply, faReplyAll, faRepublican, faRestroom, faRetweet, faRibbon, faRing, faRoad, faRobot, faRocket, faRoute, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRunning, faRupeeSign, faSadCry, faSadTear, faSatellite, faSatelliteDish, faSave, faSchool, faScrewdriver, faScroll, faSdCard, faSearch, faSearchDollar, faSearchLocation, faSearchMinus, faSearchPlus, faSeedling, faServer, faShapes, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShieldVirus, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSimCard, faSink, faSitemap, faSkating, faSkiing, faSkiingNordic, faSkull, faSkullCrossbones, faSlash, faSleigh, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmog, faSmoking, faSmokingBan, faSms, faSnowboarding, faSnowflake, faSnowman, faSnowplow, faSoap, faSocks, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaDownAlt, faSortAlphaUp, faSortAlphaUpAlt, faSortAmountDown, faSortAmountDownAlt, faSortAmountUp, faSortAmountUpAlt, faSortDown, faSortNumericDown, faSortNumericDownAlt, faSortNumericUp, faSortNumericUpAlt, faSortUp, faSpa, faSpaceShuttle, faSpellCheck, faSpider, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faSquareRootAlt, faStamp, faStar, faStarAndCrescent, faStarHalf, faStarHalfAlt, faStarOfDavid, faStarOfLife, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStopwatch20, faStore, faStoreAlt, faStoreAltSlash, faStoreSlash, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSynagogue, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTeeth, faTeethOpen, faTemperatureHigh, faTemperatureLow, faTenge, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faTheaterMasks, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToilet, faToiletPaper, faToiletPaperSlash, faToolbox, faTools, faTooth, faTorah, faToriiGate, faTractor, faTrademark, faTrafficLight, faTrailer, faTrain, faTram, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTrashRestore, faTrashRestoreAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMonster, faTruckMoving, faTruckPickup, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserInjured, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserNurse, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUsersSlash, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVest, faVestPatches, faVial, faVials, faVideo, faVideoSlash, faVihara, faVirus, faVirusSlash, faViruses, faVoicemail, faVolleyballBall, faVolumeDown, faVolumeMute, faVolumeOff, faVolumeUp, faVoteYea, faVrCardboard, faWalking, faWallet, faWarehouse, faWater, faWaveSquare, faWeight, faWeightHanging, faWheelchair, faWifi, faWind, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineBottle, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign, faYinYang };\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport {\n modulePropsDecoder,\n parseIntOr,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type EventsHistoryProps = {\n type: ItemType.AUTO_SLA_GRAPH;\n maxTime: number | null;\n legendColor: string;\n html: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function eventsHistoryPropsDecoder(\n data: AnyObject\n): EventsHistoryProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.AUTO_SLA_GRAPH,\n maxTime: parseIntOr(data.maxTime, null),\n legendColor: data.legendColor,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class EventsHistory extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"events-history\";\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const aux = document.createElement(\"div\");\n aux.innerHTML = this.props.html;\n const scripts = aux.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n\n var flotText = element.getElementsByClassName(\n \"noresizevc\"\n ) as HTMLCollectionOf;\n flotText[0].style.color = this.props.legendColor;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type DonutGraphProps = {\n type: ItemType.DONUT_GRAPH;\n html: string;\n legendBackgroundColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the donut graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function donutGraphPropsDecoder(\n data: AnyObject\n): DonutGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.DONUT_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n legendBackgroundColor: stringIsEmpty(data.legendBackgroundColor)\n ? \"#000000\"\n : data.legendBackgroundColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class DonutGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"donut-graph\";\n element.innerHTML = this.props.html;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n setTimeout(() => {\n if (scripts[i].src.length === 0) eval(scripts[i].innerHTML.trim());\n }, 0);\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const aux = document.createElement(\"div\");\n aux.innerHTML = this.props.html;\n const scripts = aux.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type ModuleGraphProps = {\n type: ItemType.MODULE_GRAPH;\n html: string;\n backgroundType: \"white\" | \"black\" | \"transparent\";\n graphType: \"line\" | \"area\";\n period: number | null;\n customGraphId: number | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param backgroundType Raw value.\n */\nconst parseBackgroundType = (\n backgroundType: unknown\n): ModuleGraphProps[\"backgroundType\"] => {\n switch (backgroundType) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundType;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param graphType Raw value.\n */\nconst parseGraphType = (graphType: unknown): ModuleGraphProps[\"graphType\"] => {\n switch (graphType) {\n case \"line\":\n case \"area\":\n return graphType;\n default:\n return \"line\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the module graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function moduleGraphPropsDecoder(\n data: AnyObject\n): ModuleGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.MODULE_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundType: parseBackgroundType(data.backgroundType),\n period: parseIntOr(data.period, null),\n graphType: parseGraphType(data.graphType),\n customGraphId: parseIntOr(data.customGraphId, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class ModuleGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n element.innerHTML = this.props.html;\n element.className = \"module-graph\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.props.html;\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n decodeBase64,\n stringIsEmpty,\n parseIntOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BasicChartProps = {\n type: ItemType.BASIC_CHART;\n html: string;\n period: number | null;\n value: number | null;\n status: string;\n moduleNameColor: string;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the basic chart props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function basicChartPropsDecoder(\n data: AnyObject\n): BasicChartProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BASIC_CHART,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n period: parseIntOr(data.period, null),\n value: parseFloat(data.value),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n moduleNameColor: stringIsEmpty(data.moduleNameColor)\n ? \"#3f3f3f\"\n : data.moduleNameColor,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BasicChart extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.className = \"basic-chart\";\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n setTimeout(() => {\n try {\n eval(scripts[i].innerHTML.trim());\n } catch (ignored) {} // eslint-disable-line no-empty\n }, 0);\n }\n }\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n const header = document.createElement(\"div\");\n header.className = \"basic-chart-header\";\n\n const moduleName = document.createElement(\"h2\");\n moduleName.className = \"basic-chart-header-name\";\n moduleName.textContent = this.props.moduleName;\n moduleName.style.color = `${this.props.moduleNameColor}`;\n header.appendChild(moduleName);\n\n let value = \"\";\n if (this.props.value !== null) {\n value = this.number_format(this.props.value, false, \"\", 2, 1000);\n }\n\n const moduleValue = document.createElement(\"h2\");\n moduleValue.className = \"basic-chart-header-value\";\n moduleValue.textContent = `${value}`;\n moduleValue.style.color = this.props.status;\n header.appendChild(moduleValue);\n\n element.innerHTML = this.props.html;\n element.insertBefore(header, element.firstChild);\n\n // Remove the overview graph.\n const legendP = element.getElementsByTagName(\"p\");\n for (let i = 0; i < legendP.length; i++) {\n legendP[i].style.margin = \"0px\";\n }\n\n // Remove the overview graph.\n const overviewGraphs = element.getElementsByClassName(\"overview_graph\");\n for (let i = 0; i < overviewGraphs.length; i++) {\n overviewGraphs[i].remove();\n }\n\n // Hack to execute the JS after the HTML is added to the DOM.\n const scripts = element.getElementsByTagName(\"script\");\n for (let i = 0; i < scripts.length; i++) {\n if (scripts[i].src.length === 0) {\n eval(scripts[i].innerHTML.trim());\n }\n }\n }\n\n protected number_format(\n number: number,\n force_integer: boolean,\n unit: string,\n short_data: number,\n divisor: number\n ) {\n divisor = typeof divisor !== \"undefined\" ? divisor : 1000;\n var decimals = 2;\n\n // Set maximum decimal precision to 99 in case short_data is not set.\n if (!short_data) {\n short_data = 99;\n }\n\n if (force_integer) {\n if (Math.round(number) != number) {\n return \"\";\n }\n } else {\n short_data++;\n const aux_decimals = this.pad(\"1\", short_data, 0);\n number =\n Math.round(number * Number.parseInt(aux_decimals)) /\n Number.parseInt(aux_decimals);\n }\n\n var shorts = [\"\", \"K\", \"M\", \"G\", \"T\", \"P\", \"E\", \"Z\", \"Y\"];\n var pos = 0;\n\n while (Math.abs(number) >= divisor) {\n // As long as the number can be divided by 1000 or 1024.\n pos++;\n number = number / divisor;\n }\n\n if (divisor) {\n number = Math.round(number * decimals) / decimals;\n } else {\n number = Math.round(number * decimals);\n }\n\n if (isNaN(number)) {\n number = 0;\n }\n\n return number + \" \" + shorts[pos] + unit;\n }\n\n protected pad(input: string, length: number, padding: number): string {\n var str = input + \"\";\n return length <= str.length\n ? str\n : this.pad(str + padding, length, padding);\n }\n}\n","module.exports = \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARpJREFUeNqUU8ENwjAMTCsGyAiwAIIN2hdfmACYgLIACBYAJgA26JcXbABigo7QEbhDFxSFEIlIp7Sxz/Y5jjGJtb30B0TKJ4uQCmwLYByYauC8Gj1r/zAPyEdsV6AFhnDOCH4DDXCkD2C/KhCZWUuQHr8kMQiDwWfyqQAGEmchmedA5f5lI7HA+cyXsAY2kcxT2YwXhFIO7jyXHpZ2CktWmb2Imj3QpaRcZBc51FxJWhiYTWa1tmPSyyZsretBo2zW/LeKdwCV3kQGJzWhlNWCe3O3cGZXf1TRBmSrGziEg3TXZ6kmxTKTvFPj337+KJfa7xqs2Bu5SvvcJckiGSo9JqOrMspoNStLv8Is0ajCdRrrxmAxaS8BBgA1e3UUTVCKKgAAAABJRU5ErkJggg==\"","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject\n} from \"../lib/types\";\n\nimport {\n modulePropsDecoder,\n linkedVCPropsDecoder,\n notEmptyStringOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type StaticGraphProps = {\n type: ItemType.STATIC_GRAPH;\n imageSrc: string; // URL?\n showLastValueTooltip: \"default\" | \"enabled\" | \"disabled\";\n statusImageSrc: string | null; // URL?\n lastValue: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param showLastValueTooltip Raw value.\n */\nconst parseShowLastValueTooltip = (\n showLastValueTooltip: unknown\n): StaticGraphProps[\"showLastValueTooltip\"] => {\n switch (showLastValueTooltip) {\n case \"default\":\n case \"enabled\":\n case \"disabled\":\n return showLastValueTooltip;\n default:\n return \"default\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function staticGraphPropsDecoder(\n data: AnyObject\n): StaticGraphProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.STATIC_GRAPH,\n imageSrc: data.imageSrc,\n showLastValueTooltip: parseShowLastValueTooltip(data.showLastValueTooltip),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n lastValue: notEmptyStringOr(data.lastValue, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class StaticGraph extends Item {\n protected createDomElement(): HTMLElement {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n const element = document.createElement(\"div\");\n element.className = \"static-graph\";\n element.setAttribute(\"ondragstart\", \"return false;\");\n element.setAttribute(\"draggable\", \"false\");\n element.style.backgroundImage = `url(${imgSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Show last value in a tooltip.\n if (\n this.props.lastValue !== null &&\n this.props.showLastValueTooltip !== \"disabled\"\n ) {\n element.className = \"static-graph image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\"data-title\", this.props.lastValue);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n const imgSrc = this.props.statusImageSrc || this.props.imageSrc;\n element.style.backgroundImage = `url(${imgSrc})`;\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type IconProps = {\n type: ItemType.ICON;\n image: string;\n imageSrc: string; // URL?\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the icon props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function iconPropsDecoder(data: AnyObject): IconProps | never {\n if (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) {\n throw new TypeError(\"invalid image src.\");\n }\n\n if (typeof data.image !== \"string\" || data.image.length === 0) {\n throw new TypeError(\"invalid image.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ICON,\n image: data.image,\n imageSrc: data.imageSrc,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Icon extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"icon \" + this.props.image;\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n element.style.backgroundImage = `url(${this.props.imageSrc})`;\n }\n}\n","import {\n WithModuleProps,\n LinkedVisualConsoleProps,\n AnyObject,\n WithAgentProps\n} from \"../lib/types\";\nimport { modulePropsDecoder, linkedVCPropsDecoder, t } from \"../lib\";\nimport Item, { itemBasePropsDecoder, ItemType, ItemProps } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport { faTrashAlt, faPlusCircle } from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ColorCloudProps = {\n type: ItemType.COLOR_CLOUD;\n color: string;\n defaultColor: string;\n colorRanges: {\n color: string;\n fromValue: number;\n toValue: number;\n }[];\n // TODO: Add the rest of the color cloud values?\n} & ItemProps &\n WithAgentProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the static graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function colorCloudPropsDecoder(\n data: AnyObject\n): ColorCloudProps | never {\n // TODO: Validate the color.\n if (typeof data.color !== \"string\" || data.color.length === 0) {\n throw new TypeError(\"invalid color.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.COLOR_CLOUD,\n color: data.color,\n defaultColor: data.defaultColor,\n colorRanges: data.colorRanges,\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\n/**\n * Class to add item to the Color cloud item form\n * This item consists of a label and a color type input color.\n * Element default color is stored in the color property\n */\nclass ColorInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group\";\n\n const colorLabel = document.createElement(\"label\");\n colorLabel.textContent = t(\"Default color\");\n\n generalDiv.appendChild(colorLabel);\n\n const ColorInput = document.createElement(\"input\");\n ColorInput.type = \"color\";\n ColorInput.required = true;\n\n ColorInput.value = `${this.currentData.defaultColor ||\n this.initialData.defaultColor ||\n \"#000000\"}`;\n\n ColorInput.addEventListener(\"change\", e => {\n this.updateData({\n defaultColor: (e.target as HTMLInputElement).value\n });\n });\n\n generalDiv.appendChild(ColorInput);\n\n return generalDiv;\n }\n}\n\ntype ColorRanges = ColorCloudProps[\"colorRanges\"];\ntype ColorRange = ColorRanges[0];\n\nclass RangesInputGroup extends InputGroup> {\n protected createContent(): HTMLElement | HTMLElement[] {\n const generalDiv = document.createElement(\"div\");\n generalDiv.className = \"div-input-group div-ranges-input-group\";\n\n const rangesLabel = this.createLabel(\"Ranges\");\n\n generalDiv.appendChild(rangesLabel);\n\n const rangesControlsContainer = document.createElement(\"div\");\n const createdRangesContainer = document.createElement(\"div\");\n\n generalDiv.appendChild(createdRangesContainer);\n generalDiv.appendChild(rangesControlsContainer);\n\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n\n let buildRanges: (ranges: ColorRanges) => void;\n\n const handleRangeUpdatePartial = (index: number) => (\n range: ColorRange\n ): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n this.updateData({\n colorRanges: [\n ...colorRanges.slice(0, index),\n range,\n ...colorRanges.slice(index + 1)\n ]\n });\n };\n\n const handleDelete = (index: number) => () => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [\n ...colorRanges.slice(0, index),\n ...colorRanges.slice(index + 1)\n ];\n\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n const handleCreate = (range: ColorRange): void => {\n const colorRanges =\n this.currentData.colorRanges || this.initialData.colorRanges || [];\n const newRanges = [...colorRanges, range];\n this.updateData({ colorRanges: newRanges });\n buildRanges(newRanges);\n };\n\n buildRanges = ranges => {\n createdRangesContainer.innerHTML = \"\";\n ranges.forEach((colorRange, index) =>\n createdRangesContainer.appendChild(\n this.rangeContainer(\n colorRange,\n handleRangeUpdatePartial(index),\n handleDelete(index)\n )\n )\n );\n };\n\n buildRanges(colorRanges);\n\n rangesControlsContainer.appendChild(\n this.initialRangeContainer(handleCreate)\n );\n\n return generalDiv;\n }\n\n private initialRangeContainer(onCreate: (range: ColorRange) => void) {\n // TODO: Document\n const initialState = { color: \"#ffffff\" };\n\n let state: Partial = { ...initialState };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n };\n\n // User defined type guard.\n // Docs: https://www.typescriptlang.org/docs/handbook/advanced-types.html#user-defined-type-guards\n const isValid = (range: Partial): range is ColorRange =>\n typeof range.color !== \"undefined\" &&\n typeof range.toValue !== \"undefined\" &&\n typeof range.fromValue !== \"undefined\";\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(null, handleFromValue);\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(null, handleToValue);\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n initialState.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const createBtn = document.createElement(\"a\");\n createBtn.appendChild(\n fontAwesomeIcon(faPlusCircle, t(\"Create color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n\n const handleCreate = () => {\n if (isValid(state)) onCreate(state);\n state = initialState;\n rangesInputFromValue.value = `${state.fromValue || \"\"}`;\n rangesInputToValue.value = `${state.toValue || \"\"}`;\n rangesInputColor.value = `${state.color}`;\n };\n\n createBtn.addEventListener(\"click\", handleCreate);\n\n rangesContainer.appendChild(createBtn);\n\n return rangesContainer;\n }\n\n private rangeContainer(\n colorRange: ColorRange,\n onUpdate: (range: ColorRange) => void,\n onDelete: () => void\n ): HTMLDivElement {\n // TODO: Document\n const state = { ...colorRange };\n\n const handleFromValue = (value: ColorRange[\"fromValue\"]): void => {\n state.fromValue = value;\n onUpdate({ ...state });\n };\n const handleToValue = (value: ColorRange[\"toValue\"]): void => {\n state.toValue = value;\n onUpdate({ ...state });\n };\n const handleColor = (value: ColorRange[\"color\"]): void => {\n state.color = value;\n onUpdate({ ...state });\n };\n\n const rangesContainer = document.createElement(\"div\");\n\n // Div From value.\n const rangesContainerFromValue = document.createElement(\"div\");\n const rangesLabelFromValue = this.createLabel(\"From Value\");\n const rangesInputFromValue = this.createInputNumber(\n colorRange.fromValue,\n handleFromValue\n );\n rangesContainerFromValue.appendChild(rangesLabelFromValue);\n rangesContainerFromValue.appendChild(rangesInputFromValue);\n rangesContainer.appendChild(rangesContainerFromValue);\n\n // Div To Value.\n const rangesDivContainerToValue = document.createElement(\"div\");\n const rangesLabelToValue = this.createLabel(\"To Value\");\n const rangesInputToValue = this.createInputNumber(\n colorRange.toValue,\n handleToValue\n );\n rangesContainerFromValue.appendChild(rangesLabelToValue);\n rangesContainerFromValue.appendChild(rangesInputToValue);\n rangesContainer.appendChild(rangesDivContainerToValue);\n\n // Div Color.\n const rangesDivContainerColor = document.createElement(\"div\");\n const rangesLabelColor = this.createLabel(\"Color\");\n const rangesInputColor = this.createInputColor(\n colorRange.color,\n handleColor\n );\n rangesContainerFromValue.appendChild(rangesLabelColor);\n rangesContainerFromValue.appendChild(rangesInputColor);\n rangesContainer.appendChild(rangesDivContainerColor);\n\n // Button delete.\n const deleteBtn = document.createElement(\"a\");\n deleteBtn.appendChild(\n fontAwesomeIcon(faTrashAlt, t(\"Delete color range\"), {\n size: \"small\",\n color: \"#565656\"\n })\n );\n deleteBtn.addEventListener(\"click\", onDelete);\n\n rangesContainer.appendChild(deleteBtn);\n\n return rangesContainer;\n }\n\n private createLabel(text: string): HTMLLabelElement {\n const label = document.createElement(\"label\");\n label.textContent = t(text);\n return label;\n }\n\n private createInputNumber(\n value: number | null,\n onUpdate: (value: number) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"number\";\n if (value !== null) input.value = `${value}`;\n input.addEventListener(\"change\", e => {\n const value = parseInt((e.target as HTMLInputElement).value);\n if (!isNaN(value)) onUpdate(value);\n });\n\n return input;\n }\n\n private createInputColor(\n value: string | null,\n onUpdate: (value: string) => void\n ): HTMLInputElement {\n const input = document.createElement(\"input\");\n input.type = \"color\";\n if (value !== null) input.value = value;\n input.addEventListener(\"change\", e =>\n onUpdate((e.target as HTMLInputElement).value)\n );\n\n return input;\n }\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class ColorCloud extends Item {\n protected createDomElement(): HTMLElement {\n const container: HTMLDivElement = document.createElement(\"div\");\n container.className = \"color-cloud\";\n\n // Add the SVG.\n container.append(this.createSvgElement());\n\n return container;\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width);\n }\n\n public createSvgElement(): SVGSVGElement {\n const gradientId = `grad_${this.props.id}`;\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Defs.\n const defs = document.createElementNS(svgNS, \"defs\");\n // Radial gradient.\n const radialGradient = document.createElementNS(svgNS, \"radialGradient\");\n radialGradient.setAttribute(\"id\", gradientId);\n radialGradient.setAttribute(\"cx\", \"50%\");\n radialGradient.setAttribute(\"cy\", \"50%\");\n radialGradient.setAttribute(\"r\", \"50%\");\n radialGradient.setAttribute(\"fx\", \"50%\");\n radialGradient.setAttribute(\"fy\", \"50%\");\n // Stops.\n const stop0 = document.createElementNS(svgNS, \"stop\");\n stop0.setAttribute(\"offset\", \"0%\");\n stop0.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0.9`\n );\n const stop100 = document.createElementNS(svgNS, \"stop\");\n stop100.setAttribute(\"offset\", \"100%\");\n stop100.setAttribute(\n \"style\",\n `stop-color:${this.props.color};stop-opacity:0`\n );\n // Circle.\n const circle = document.createElementNS(svgNS, \"circle\");\n circle.setAttribute(\"fill\", `url(#${gradientId})`);\n circle.setAttribute(\"cx\", \"50%\");\n circle.setAttribute(\"cy\", \"50%\");\n circle.setAttribute(\"r\", \"50%\");\n\n // Append elements.\n radialGradient.append(stop0, stop100);\n defs.append(radialGradient);\n svg.append(defs, circle);\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n return svg;\n }\n\n /**\n * @override function to add or remove inputsGroups those that are not necessary.\n * Add to:\n * ColorInputGroup\n * RangesInputGroup\n */\n public getFormContainer(): FormContainer {\n return ColorCloud.getFormContainer(this.props);\n }\n\n public static getFormContainer(\n props: Partial\n ): FormContainer {\n const formContainer = super.getFormContainer(props);\n formContainer.removeInputGroup(\"label\");\n\n formContainer.addInputGroup(new ColorInputGroup(\"color-cloud\", props), 3);\n formContainer.addInputGroup(new RangesInputGroup(\"ranges-cloud\", props), 4);\n\n return formContainer;\n }\n}\n","import { AnyObject, Position, Size, ItemMeta } from \"../lib/types\";\nimport {\n parseIntOr,\n notEmptyStringOr,\n debounce,\n addMovementListener\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport TypedEvent, { Listener, Disposable } from \"../lib/TypedEvent\";\n\nexport interface LineProps extends ItemProps {\n // Overrided properties.\n type: number;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n startPosition: Position;\n endPosition: Position;\n lineWidth: number;\n color: string | null;\n viewportOffsetX: number;\n viewportOffsetY: number;\n labelEnd: string;\n labelStart: string;\n linkedEnd: number | null;\n linkedStart: number | null;\n labelEndWidth: number;\n labelEndHeight: number;\n labelStartWidth: number;\n labelStartHeight: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function linePropsDecoder(data: AnyObject): LineProps | never {\n const props: LineProps = {\n ...itemBasePropsDecoder({ ...data, width: 1, height: 1 }), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LINE_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Initialize Position & Size.\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n // Custom properties.\n startPosition: {\n x: parseIntOr(data.startX, 0),\n y: parseIntOr(data.startY, 0)\n },\n endPosition: {\n x: parseIntOr(data.endX, 0),\n y: parseIntOr(data.endY, 0)\n },\n lineWidth: parseIntOr(data.lineWidth || data.borderWidth, 1),\n color: notEmptyStringOr(data.borderColor || data.color, null),\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n linkedEnd: data.linkedEnd,\n linkedStart: data.linkedStart,\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n\n /*\n * We need to enhance the props with the extracted size and position\n * of the box cause there are missing at the props update. A better\n * solution would be overriding the props setter to do it there, but\n * the language doesn't allow it while targetting ES5.\n * TODO: We need to figure out a more consistent solution.\n */\n\n return {\n ...props,\n // Enhance the props extracting the box size and position.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n ...Line.extractBoxSizeAndPosition(props.startPosition, props.endPosition)\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface LineMovedEvent {\n item: Line;\n startPosition: LineProps[\"startPosition\"];\n endPosition: LineProps[\"endPosition\"];\n}\n\nexport default class Line extends Item {\n protected circleRadius = 8;\n // To control if the line movement is enabled.\n protected moveMode: boolean = false;\n // To control if the line is moving.\n protected isMoving: boolean = false;\n\n // Event manager for moved events.\n public readonly lineMovedEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n protected readonly lineMovedEventDisposables: Disposable[] = [];\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedStartPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const startPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeStartPositionMovement: Function | null = null;\n\n /**\n * Start the movement funtionality for the start position.\n * @param element Element to move inside its container.\n */\n protected initStartPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeStartPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n const startPosition = { x, y };\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n startPosition\n };\n\n // Run the end function.\n this.debouncedStartPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement fun\n */\n private stopStartPositionMovementListener(): void {\n if (this.removeStartPositionMovement) {\n this.removeStartPositionMovement();\n this.removeStartPositionMovement = null;\n }\n }\n\n // This function will only run the 2nd arg function after the time\n // of the first arg have passed after its last execution.\n protected debouncedEndPositionMovementSave = debounce(\n 500, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n // This property will store the function\n // to clean the movement listener.\n protected removeEndPositionMovement: Function | null = null;\n\n /**\n * End the movement funtionality for the end position.\n * @param element Element to move inside its container.\n */\n protected initEndPositionMovementListener(\n element: HTMLElement,\n container: HTMLElement\n ): void {\n this.removeEndPositionMovement = addMovementListener(\n element,\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n // Calculate the center of the circle.\n x += this.circleRadius - this.props.viewportOffsetX / 2;\n y += this.circleRadius - this.props.viewportOffsetY / 2;\n\n this.isMoving = true;\n this.props = {\n ...this.props,\n endPosition: { x, y }\n };\n\n // Run the end function.\n this.debouncedEndPositionMovementSave(x, y);\n },\n container\n );\n }\n /**\n * Stop the movement function.\n */\n private stopEndPositionMovementListener(): void {\n if (this.removeEndPositionMovement) {\n this.removeEndPositionMovement();\n this.removeEndPositionMovement = null;\n }\n }\n\n /**\n * @override\n */\n public constructor(props: LineProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props,\n ...Line.extractBoxSizeAndPosition(\n props.startPosition,\n props.endPosition\n )\n },\n {\n ...meta\n },\n true\n );\n\n this.moveMode = meta.editMode;\n this.init();\n\n super.resizeElement(\n Math.max(props.width, props.viewportOffsetX),\n Math.max(props.height, props.viewportOffsetY)\n );\n }\n\n /**\n * Classic and protected version of the setter of the `props` property.\n * Useful to override it from children classes.\n * @param newProps\n * @override Item.setProps\n */\n public setProps(newProps: LineProps) {\n super.setProps({\n ...newProps,\n ...Line.extractBoxSizeAndPosition(\n newProps.startPosition,\n newProps.endPosition\n )\n });\n }\n\n /**\n * Classic and protected version of the setter of the `meta` property.\n * Useful to override it from children classes.\n * @param newMetadata\n * @override Item.setMeta\n */\n public setMeta(newMetadata: ItemMeta) {\n this.moveMode = newMetadata.editMode;\n super.setMeta({\n ...newMetadata,\n lineMode: true\n });\n }\n\n /**\n * @override\n * To create the item's DOM representation.\n * @return Item.\n */\n protected createDomElement(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"line\";\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness,\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const line = document.createElementNS(svgNS, \"line\");\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n\n svg.append(line);\n element.append(svg);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n if (element.parentElement != null) {\n element.parentElement.style.cursor = \"default\";\n }\n\n let {\n x, // Box x\n y, // Box y\n width, // Box width\n height, // Box height\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color // Line color\n } = this.props;\n\n width = width + viewportOffsetX;\n height = height + viewportOffsetY;\n\n const x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n const svgs = element.getElementsByTagName(\"svg\");\n\n if (svgs.length > 0) {\n const svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n svg.setAttribute(\"width\", `${width + lineWidth}`);\n svg.setAttribute(\"height\", `${height + lineWidth}`);\n\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n\n if (lines.length > 0) {\n const line = lines.item(0);\n\n if (line != null) {\n line.setAttribute(\"x1\", `${x1}`);\n line.setAttribute(\"y1\", `${y1}`);\n line.setAttribute(\"x2\", `${x2}`);\n line.setAttribute(\"y2\", `${y2}`);\n line.setAttribute(\"stroke\", color || \"black\");\n line.setAttribute(\"stroke-width\", `${lineWidth}`);\n }\n }\n }\n }\n\n if (this.moveMode) {\n let startCircle: HTMLElement = document.createElement(\"div\");\n let endCircle: HTMLElement = document.createElement(\"div\");\n\n if (this.isMoving) {\n const circlesStart = element.getElementsByClassName(\n \"visual-console-item-line-circle-start\"\n );\n if (circlesStart.length > 0) {\n const circle = circlesStart.item(0) as HTMLElement;\n if (circle) startCircle = circle;\n }\n const circlesEnd = element.getElementsByClassName(\n \"visual-console-item-line-circle-end\"\n );\n if (circlesEnd.length > 0) {\n const circle = circlesEnd.item(0) as HTMLElement;\n if (circle) endCircle = circle;\n }\n }\n\n startCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-start\"\n );\n startCircle.style.width = `${this.circleRadius * 2}px`;\n startCircle.style.height = `${this.circleRadius * 2}px`;\n startCircle.style.borderRadius = \"50%\";\n startCircle.style.backgroundColor = `${color}`;\n startCircle.style.position = \"absolute\";\n startCircle.style.left = `${x1 - this.circleRadius}px`;\n startCircle.style.top = `${y1 - this.circleRadius}px`;\n startCircle.style.cursor = `move`;\n\n endCircle.classList.add(\n \"visual-console-item-line-circle\",\n \"visual-console-item-line-circle-end\"\n );\n endCircle.style.width = `${this.circleRadius * 2}px`;\n endCircle.style.height = `${this.circleRadius * 2}px`;\n endCircle.style.borderRadius = \"50%\";\n endCircle.style.backgroundColor = `${color}`;\n endCircle.style.position = \"absolute\";\n endCircle.style.left = `${x2 - this.circleRadius}px`;\n endCircle.style.top = `${y2 - this.circleRadius}px`;\n endCircle.style.cursor = `move`;\n\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n\n element.parentElement.appendChild(startCircle);\n element.parentElement.appendChild(endCircle);\n }\n\n // Init the movement listeners.\n this.initStartPositionMovementListener(\n startCircle,\n this.elementRef.parentElement as HTMLElement\n );\n this.initEndPositionMovementListener(\n endCircle,\n this.elementRef.parentElement as HTMLElement\n );\n } else if (!this.moveMode) {\n this.stopStartPositionMovementListener();\n // Remove circles.\n if (element.parentElement !== null) {\n const circles = element.parentElement.getElementsByClassName(\n \"visual-console-item-line-circle\"\n );\n\n while (circles.length > 0) {\n const circle = circles.item(0);\n if (circle) circle.remove();\n }\n }\n } else {\n this.stopStartPositionMovementListener();\n }\n }\n\n /**\n * Extract the size and position of the box from\n * the start and the finish of the line.\n * @param props Item properties.\n */\n public static extractBoxSizeAndPosition(\n startPosition: Position,\n endPosition: Position\n ): Size & Position {\n return {\n width: Math.abs(startPosition.x - endPosition.x),\n height: Math.abs(startPosition.y - endPosition.y),\n x: Math.min(startPosition.x, endPosition.x),\n y: Math.min(startPosition.y, endPosition.y)\n };\n }\n\n /**\n * Update the position into the properties and move the DOM container.\n * @param x Horizontal axis position.\n * @param y Vertical axis position.\n * @override item function\n */\n public move(x: number, y: number): void {\n super.moveElement(x, y);\n const startIsLeft =\n this.props.startPosition.x - this.props.endPosition.x <= 0;\n const startIsTop =\n this.props.startPosition.y - this.props.endPosition.y <= 0;\n\n const start = {\n x: startIsLeft ? x : this.props.width + x,\n y: startIsTop ? y : this.props.height + y\n };\n\n const end = {\n x: startIsLeft ? this.props.width + x : x,\n y: startIsTop ? this.props.height + y : y\n };\n\n this.props = {\n ...this.props,\n startPosition: start,\n endPosition: end\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override Item.remove\n */\n public remove(): void {\n // Clear the item's event listeners.\n this.stopStartPositionMovementListener();\n // Call the parent's .remove()\n super.remove();\n }\n\n /**\n * To add an event handler to the movement of visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n *\n * @override Item.onMoved\n */\n public onLineMovementFinished(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.lineMovedEventDisposables.push(disposable);\n\n return disposable;\n }\n}\n","import { AnyObject, Position, ItemMeta } from \"../lib/types\";\nimport { debounce, notEmptyStringOr, parseIntOr } from \"../lib\";\nimport { ItemType } from \"../Item\";\nimport Line, { LineProps, linePropsDecoder } from \"./Line\";\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport interface NetworkLinkProps extends LineProps {\n // Overrided properties.\n type: number;\n labelStart: string;\n labelEnd: string;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function networkLinkPropsDecoder(\n data: AnyObject\n): NetworkLinkProps | never {\n return {\n ...linePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.NETWORK_LINK,\n viewportOffsetX: 0,\n viewportOffsetY: 0,\n labelEnd: notEmptyStringOr(data.labelEnd, \"\"),\n labelEndWidth: parseIntOr(data.labelEndWidth, 0),\n labelEndHeight: parseIntOr(data.labelEndHeight, 0),\n labelStart: notEmptyStringOr(data.labelStart, \"\"),\n labelStartWidth: parseIntOr(data.labelStartWidth, 0),\n labelStartHeight: parseIntOr(data.labelStartHeight, 0)\n };\n}\n\nexport default class NetworkLink extends Line {\n /**\n * @override\n */\n public constructor(props: NetworkLinkProps, meta: ItemMeta) {\n /*\n * We need to override the constructor cause we need to obtain the\n * box size and position from the start and finish points of the line.\n */\n super(\n {\n ...props\n },\n {\n ...meta\n }\n );\n\n this.render();\n }\n\n /**\n * @override\n */\n protected debouncedStartPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n\n const startPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n startPosition,\n endPosition: this.props.endPosition\n });\n }\n );\n\n protected debouncedEndPositionMovementSave = debounce(\n 50, // ms.\n (x: Position[\"x\"], y: Position[\"y\"]) => {\n this.isMoving = false;\n const endPosition = { x, y };\n\n // Re-Paint after move.\n this.render();\n\n // Emit the movement event.\n this.lineMovedEventManager.emit({\n item: this,\n endPosition,\n startPosition: this.props.startPosition\n });\n }\n );\n\n protected updateDomElement(element: HTMLElement): void {\n super.updateDomElement(element);\n\n let {\n x, // Box x\n y, // Box y\n lineWidth, // Line thickness\n viewportOffsetX, // viewport width,\n viewportOffsetY, // viewport heigth,\n startPosition, // Line start position\n endPosition, // Line end position\n color, // Line color\n labelEnd,\n labelStart,\n labelEndWidth,\n labelEndHeight,\n labelStartWidth,\n labelStartHeight\n } = this.props;\n\n const svgs = element.getElementsByTagName(\"svg\");\n let line;\n let svg;\n\n if (svgs.length > 0) {\n svg = svgs.item(0);\n\n if (svg != null) {\n // Set SVG size.\n const lines = svg.getElementsByTagNameNS(svgNS, \"line\");\n let groups = svg.getElementsByTagNameNS(svgNS, \"g\");\n while (groups.length > 0) {\n groups[0].remove();\n }\n\n if (lines.length > 0) {\n line = lines.item(0);\n }\n }\n } else {\n // No line or svg, no more actions are required.\n return;\n }\n\n if (svg == null || line == null) {\n // No more actionas are required.\n return;\n }\n\n // Font size and text adjustments.\n const fontsize = 10;\n const adjustment = 25;\n\n const lineX1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n const lineX2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n const lineY2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n let x1 = startPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y1 = startPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n let x2 = endPosition.x - x + lineWidth / 2 + viewportOffsetX / 2;\n let y2 = endPosition.y - y + lineWidth / 2 + viewportOffsetY / 2;\n\n // Calculate angle (rotation).\n let rad = Math.atan2(lineY2 - lineY1, lineX2 - lineX1);\n let g = (rad * 180) / Math.PI;\n\n // Calculate effective 'text' box sizes.\n const fontheight = 25;\n if (labelStartWidth <= 0) {\n let lines = labelStart.split(\"
    \");\n labelStartWidth = 0;\n lines.forEach(l => {\n if (l.length > labelStartWidth) {\n labelStartWidth = l.length * fontsize;\n }\n });\n if (labelStartHeight <= 0) {\n labelStartHeight = lines.length * fontheight;\n }\n }\n\n if (labelEndWidth <= 0) {\n let lines = labelEnd.split(\"
    \");\n labelEndWidth = 0;\n lines.forEach(l => {\n if (l.length > labelEndWidth) {\n labelEndWidth = l.length * fontsize;\n }\n });\n if (labelEndHeight <= 0) {\n labelEndHeight = lines.length * fontheight;\n }\n }\n\n if (x1 < x2) {\n // x1 on left of x2.\n x1 += adjustment;\n x2 -= adjustment + labelEndWidth;\n }\n\n if (x1 > x2) {\n // x1 on right of x2.\n x1 -= adjustment + labelStartWidth;\n x2 += adjustment;\n }\n\n if (y1 < y2) {\n // y1 on y2.\n y1 += adjustment;\n y2 -= adjustment + labelEndHeight;\n }\n\n if (y1 > y2) {\n // y1 under y2.\n y1 -= adjustment + labelStartHeight;\n y2 += adjustment;\n }\n\n if (typeof color == \"undefined\") {\n color = \"#000\";\n }\n\n // Clean.\n if (element.parentElement !== null) {\n const labels = element.parentElement.getElementsByClassName(\n \"vc-item-nl-label\"\n );\n while (labels.length > 0) {\n const label = labels.item(0);\n if (label) label.remove();\n }\n\n const arrows = element.parentElement.getElementsByClassName(\n \"vc-item-nl-arrow\"\n );\n while (arrows.length > 0) {\n const arrow = arrows.item(0);\n if (arrow) arrow.remove();\n }\n }\n\n let arrowSize = lineWidth * 2;\n\n let arrowPosX = lineX1 + (lineX2 - lineX1) / 2 - arrowSize;\n let arrowPosY = lineY1 + (lineY2 - lineY1) / 2 - arrowSize;\n\n let arrowStart: HTMLElement = document.createElement(\"div\");\n arrowStart.classList.add(\"vc-item-nl-arrow\");\n arrowStart.style.position = \"absolute\";\n arrowStart.style.border = `${arrowSize}px solid transparent`;\n arrowStart.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowStart.style.left = `${arrowPosX}px`;\n arrowStart.style.top = `${arrowPosY}px`;\n arrowStart.style.transform = `rotate(${90 + g}deg)`;\n\n let arrowEnd: HTMLElement = document.createElement(\"div\");\n arrowEnd.classList.add(\"vc-item-nl-arrow\");\n arrowEnd.style.position = \"absolute\";\n arrowEnd.style.border = `${arrowSize}px solid transparent`;\n arrowEnd.style.borderBottom = `${arrowSize}px solid ${color}`;\n arrowEnd.style.left = `${arrowPosX}px`;\n arrowEnd.style.top = `${arrowPosY}px`;\n arrowEnd.style.transform = `rotate(${270 + g}deg)`;\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(arrowStart);\n element.parentElement.appendChild(arrowEnd);\n }\n\n if (labelStart != \"\") {\n let htmlLabelStart: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelStart.innerHTML = labelStart;\n htmlLabelStart.style.position = \"absolute\";\n htmlLabelStart.style.left = `${x1}px`;\n htmlLabelStart.style.top = `${y1}px`;\n htmlLabelStart.style.width = `${labelStartWidth}px`;\n htmlLabelStart.style.border = `2px solid ${color}`;\n\n htmlLabelStart.classList.add(\"vc-item-nl-label\", \"label-start\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelStart);\n }\n }\n\n if (labelEnd != \"\") {\n let htmlLabelEnd: HTMLElement = document.createElement(\"div\");\n\n try {\n htmlLabelEnd.innerHTML = labelEnd;\n htmlLabelEnd.style.position = \"absolute\";\n htmlLabelEnd.style.left = `${x2}px`;\n htmlLabelEnd.style.top = `${y2}px`;\n htmlLabelEnd.style.width = `${labelEndWidth}px`;\n htmlLabelEnd.style.border = `2px solid ${color}`;\n\n htmlLabelEnd.classList.add(\"vc-item-nl-label\", \"label-end\");\n } catch (error) {\n console.error(error);\n }\n\n if (element.parentElement !== null) {\n element.parentElement.appendChild(htmlLabelEnd);\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n stringIsEmpty,\n decodeBase64,\n parseBoolean,\n t\n} from \"../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../Item\";\n\nexport type GroupProps = {\n type: ItemType.GROUP_ITEM;\n groupId: number;\n imageSrc: string | null; // URL?\n statusImageSrc: string | null;\n showStatistics: boolean;\n html?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\nfunction extractHtml(data: AnyObject): string | null {\n if (!stringIsEmpty(data.html)) return data.html;\n if (!stringIsEmpty(data.encodedHtml)) return decodeBase64(data.encodedHtml);\n return null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the group props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function groupPropsDecoder(data: AnyObject): GroupProps | never {\n if (\n (typeof data.imageSrc !== \"string\" || data.imageSrc.length === 0) &&\n data.encodedHtml === null\n ) {\n throw new TypeError(\"invalid image src.\");\n }\n if (parseIntOr(data.groupId, null) === null) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n const showStatistics = parseBoolean(data.showStatistics);\n const html = showStatistics ? extractHtml(data) : null;\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.GROUP_ITEM,\n groupId: parseInt(data.groupId),\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n showStatistics,\n html,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\nexport default class Group extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"group\";\n\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (!this.props.showStatistics && this.props.statusImageSrc !== null) {\n // Icon with status.\n element.style.backgroundImage = `url(${this.props.statusImageSrc})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n element.innerHTML = \"\";\n } else if (this.props.showStatistics && this.props.html != null) {\n // Stats table.\n element.style.backgroundImage = \"none\";\n element.innerHTML = this.props.html;\n }\n }\n}\n","import \"./styles.css\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n Size,\n ItemMeta\n} from \"../../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n parseBoolean,\n prefixedCssRules,\n notEmptyStringOr,\n humanDate,\n humanTime,\n t\n} from \"../../lib\";\nimport Item, { ItemProps, itemBasePropsDecoder, ItemType } from \"../../Item\";\n\nexport type ClockProps = {\n type: ItemType.CLOCK;\n clockType: \"analogic\" | \"digital\";\n clockFormat: \"datetime\" | \"time\";\n clockTimezone: string;\n clockTimezoneOffset: number; // Offset of the timezone to UTC in seconds.\n showClockTimezone: boolean;\n color?: string | null;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockType Raw value.\n */\nconst parseClockType = (clockType: unknown): ClockProps[\"clockType\"] => {\n switch (clockType) {\n case \"analogic\":\n case \"digital\":\n return clockType;\n default:\n return \"analogic\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param clockFormat Raw value.\n */\nconst parseClockFormat = (clockFormat: unknown): ClockProps[\"clockFormat\"] => {\n switch (clockFormat) {\n case \"datetime\":\n case \"time\":\n return clockFormat;\n default:\n return \"datetime\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the clock props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function clockPropsDecoder(data: AnyObject): ClockProps | never {\n if (\n typeof data.clockTimezone !== \"string\" ||\n data.clockTimezone.length === 0\n ) {\n throw new TypeError(\"invalid timezone.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.CLOCK,\n clockType: parseClockType(data.clockType),\n clockFormat: parseClockFormat(data.clockFormat),\n clockTimezone: data.clockTimezone,\n clockTimezoneOffset: parseIntOr(data.clockTimezoneOffset, 0),\n showClockTimezone: parseBoolean(data.showClockTimezone),\n color: notEmptyStringOr(data.color, null),\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Clock extends Item {\n public static readonly TICK_INTERVAL = 1000; // In ms.\n private intervalRef: number | null = null;\n\n public constructor(props: ClockProps, meta: ItemMeta) {\n // Call the superclass constructor.\n super(props, meta);\n\n /* The item is already loaded and inserted into the DOM.\n * The class properties are now initialized.\n * Now you can modify the item, add event handlers, timers, etc.\n */\n\n /* The use of the arrow function is important here. startTick will\n * use the function passed as an argument to call the global setInterval\n * function. The interval, timeout or event functions, among other, are\n * called into another execution loop and using a different context.\n * The arrow functions, unlike the classic functions, doesn't create\n * their own context (this), so their context at execution time will be\n * use the current context at the declaration time.\n * http://es6-features.org/#Lexicalthis\n */\n this.startTick(\n () => {\n // Replace the old element with the updated date.\n this.childElementRef.innerHTML = this.createClock().innerHTML;\n },\n /* The analogic clock doesn't need to tick,\n * but it will be refreshed every 20 seconds\n * to avoid a desync caused by page freezes.\n */\n this.props.clockType === \"analogic\" ? 20000 : Clock.TICK_INTERVAL\n );\n }\n\n /**\n * Wrap a window.clearInterval call.\n */\n private stopTick(): void {\n if (this.intervalRef !== null) {\n window.clearInterval(this.intervalRef);\n this.intervalRef = null;\n }\n }\n\n /**\n * Wrap a window.setInterval call.\n * @param handler Function to be called every time the interval\n * timer is reached.\n * @param interval Number in milliseconds for the interval timer.\n */\n private startTick(\n handler: TimerHandler,\n interval: number = Clock.TICK_INTERVAL\n ): void {\n this.stopTick();\n this.intervalRef = window.setInterval(handler, interval);\n }\n\n /**\n * Create a element which contains the DOM representation of the item.\n * @return DOM Element.\n * @override\n */\n protected createDomElement(): HTMLElement | never {\n return this.createClock();\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n this.props.width,\n this.props.height\n );\n\n if (this.props.clockType === \"digital\") {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(this.props.width, this.props.height);\n }\n element.classList.replace(\"analogic-clock\", \"digital-clock\");\n } else {\n if (this.meta.isBeingResized === false) {\n super.resizeElement(newWidth, newHeight);\n }\n element.classList.replace(\"digital-clock\", \"analogic-clock\");\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n * @override\n */\n public remove(): void {\n // Clear the interval.\n this.stopTick();\n // Call to the parent clean function.\n super.remove();\n }\n\n /**\n * @override Item.resizeElement\n * Resize the DOM content container.\n * @param width\n * @param height\n */\n protected resizeElement(width: number, height: number): void {\n // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n const { width: newWidth, height: newHeight } = this.getElementSize(\n width,\n height\n );\n\n // Re-render the item to force it calculate a new font size.\n if (this.props.clockType === \"digital\") {\n super.resizeElement(width, height);\n // Replace the old element with the updated date.\n //this.childElementRef.innerHTML = this.createClock().innerHTML;\n } else {\n super.resizeElement(newWidth, newHeight);\n }\n }\n\n /**\n * Create a element which contains a representation of a clock.\n * It choose between the clock types.\n * @return DOM Element.\n * @throws Error.\n */\n private createClock(): HTMLElement | never {\n switch (this.props.clockType) {\n case \"analogic\":\n return this.createAnalogicClock();\n case \"digital\":\n return this.createDigitalClock();\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n\n /**\n * Create a element which contains a representation of an analogic clock.\n * @return DOM Element.\n */\n private createAnalogicClock(): HTMLElement {\n const svgNS = \"http://www.w3.org/2000/svg\";\n const colors = {\n watchFace: \"#FFFFF0\",\n watchFaceBorder: \"#242124\",\n mark: \"#242124\",\n handDark: \"#242124\",\n handLight: \"#525252\",\n secondHand: \"#DC143C\"\n };\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 20; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * width) / 100;\n\n const div = document.createElement(\"div\");\n div.className = \"analogic-clock\";\n div.style.width = `${width}px`;\n div.style.height = `${height}px`;\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n // Clock face.\n const clockFace = document.createElementNS(svgNS, \"g\");\n clockFace.setAttribute(\"class\", \"clockface\");\n const clockFaceBackground = document.createElementNS(svgNS, \"circle\");\n clockFaceBackground.setAttribute(\"cx\", \"50\");\n clockFaceBackground.setAttribute(\"cy\", \"50\");\n clockFaceBackground.setAttribute(\"r\", \"48\");\n clockFaceBackground.setAttribute(\"fill\", colors.watchFace);\n clockFaceBackground.setAttribute(\"stroke\", colors.watchFaceBorder);\n clockFaceBackground.setAttribute(\"stroke-width\", \"2\");\n clockFaceBackground.setAttribute(\"stroke-linecap\", \"round\");\n // Insert the clockface background into the clockface group.\n clockFace.append(clockFaceBackground);\n\n // Timezone complication.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const timezoneComplication = document.createElementNS(svgNS, \"text\");\n timezoneComplication.setAttribute(\"text-anchor\", \"middle\");\n timezoneComplication.setAttribute(\"font-size\", \"8\");\n timezoneComplication.setAttribute(\n \"transform\",\n \"translate(30 50) rotate(90)\" // Rotate to counter the clock rotation.\n );\n timezoneComplication.setAttribute(\"fill\", colors.mark);\n timezoneComplication.textContent = city;\n clockFace.append(timezoneComplication);\n }\n\n // Marks group.\n const marksGroup = document.createElementNS(svgNS, \"g\");\n marksGroup.setAttribute(\"class\", \"marks\");\n // Build the 12 hours mark.\n const mainMarkGroup = document.createElementNS(svgNS, \"g\");\n mainMarkGroup.setAttribute(\"class\", \"mark\");\n mainMarkGroup.setAttribute(\"transform\", \"translate(50 50)\");\n const mark1a = document.createElementNS(svgNS, \"line\");\n mark1a.setAttribute(\"x1\", \"36\");\n mark1a.setAttribute(\"y1\", \"0\");\n mark1a.setAttribute(\"x2\", \"46\");\n mark1a.setAttribute(\"y2\", \"0\");\n mark1a.setAttribute(\"stroke\", colors.mark);\n mark1a.setAttribute(\"stroke-width\", \"5\");\n const mark1b = document.createElementNS(svgNS, \"line\");\n mark1b.setAttribute(\"x1\", \"36\");\n mark1b.setAttribute(\"y1\", \"0\");\n mark1b.setAttribute(\"x2\", \"46\");\n mark1b.setAttribute(\"y2\", \"0\");\n mark1b.setAttribute(\"stroke\", colors.watchFace);\n mark1b.setAttribute(\"stroke-width\", \"1\");\n // Insert the 12 mark lines into their group.\n mainMarkGroup.append(mark1a, mark1b);\n // Insert the main mark into the marks group.\n marksGroup.append(mainMarkGroup);\n // Build the rest of the marks.\n for (let i = 1; i < 60; i++) {\n const mark = document.createElementNS(svgNS, \"line\");\n mark.setAttribute(\"y1\", \"0\");\n mark.setAttribute(\"y2\", \"0\");\n mark.setAttribute(\"stroke\", colors.mark);\n mark.setAttribute(\"transform\", `translate(50 50) rotate(${i * 6})`);\n\n if (i % 5 === 0) {\n mark.setAttribute(\"x1\", \"38\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", i % 15 === 0 ? \"2\" : \"1\");\n } else {\n mark.setAttribute(\"x1\", \"42\");\n mark.setAttribute(\"x2\", \"46\");\n mark.setAttribute(\"stroke-width\", \"0.5\");\n }\n\n // Insert the mark into the marks group.\n marksGroup.append(mark);\n }\n\n /* Clock hands */\n\n // Hour hand.\n const hourHand = document.createElementNS(svgNS, \"g\");\n hourHand.setAttribute(\"class\", \"hour-hand\");\n hourHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const hourHandA = document.createElementNS(svgNS, \"line\");\n hourHandA.setAttribute(\"class\", \"hour-hand-a\");\n hourHandA.setAttribute(\"x1\", \"0\");\n hourHandA.setAttribute(\"y1\", \"0\");\n hourHandA.setAttribute(\"x2\", \"30\");\n hourHandA.setAttribute(\"y2\", \"0\");\n hourHandA.setAttribute(\"stroke\", colors.handLight);\n hourHandA.setAttribute(\"stroke-width\", \"4\");\n hourHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const hourHandB = document.createElementNS(svgNS, \"line\");\n hourHandB.setAttribute(\"class\", \"hour-hand-b\");\n hourHandB.setAttribute(\"x1\", \"0\");\n hourHandB.setAttribute(\"y1\", \"0\");\n hourHandB.setAttribute(\"x2\", \"29.9\");\n hourHandB.setAttribute(\"y2\", \"0\");\n hourHandB.setAttribute(\"stroke\", colors.handDark);\n hourHandB.setAttribute(\"stroke-width\", \"3.1\");\n hourHandB.setAttribute(\"stroke-linecap\", \"round\");\n // Append the elements to finish the hour hand.\n hourHand.append(hourHandA, hourHandB);\n\n // Minute hand.\n const minuteHand = document.createElementNS(svgNS, \"g\");\n minuteHand.setAttribute(\"class\", \"minute-hand\");\n minuteHand.setAttribute(\"transform\", \"translate(50 50)\");\n // This will go back and will act like a border.\n const minuteHandA = document.createElementNS(svgNS, \"line\");\n minuteHandA.setAttribute(\"class\", \"minute-hand-a\");\n minuteHandA.setAttribute(\"x1\", \"0\");\n minuteHandA.setAttribute(\"y1\", \"0\");\n minuteHandA.setAttribute(\"x2\", \"40\");\n minuteHandA.setAttribute(\"y2\", \"0\");\n minuteHandA.setAttribute(\"stroke\", colors.handLight);\n minuteHandA.setAttribute(\"stroke-width\", \"2\");\n minuteHandA.setAttribute(\"stroke-linecap\", \"round\");\n // This will go in front of the previous line.\n const minuteHandB = document.createElementNS(svgNS, \"line\");\n minuteHandB.setAttribute(\"class\", \"minute-hand-b\");\n minuteHandB.setAttribute(\"x1\", \"0\");\n minuteHandB.setAttribute(\"y1\", \"0\");\n minuteHandB.setAttribute(\"x2\", \"39.9\");\n minuteHandB.setAttribute(\"y2\", \"0\");\n minuteHandB.setAttribute(\"stroke\", colors.handDark);\n minuteHandB.setAttribute(\"stroke-width\", \"1.5\");\n minuteHandB.setAttribute(\"stroke-linecap\", \"round\");\n const minuteHandPin = document.createElementNS(svgNS, \"circle\");\n minuteHandPin.setAttribute(\"r\", \"3\");\n minuteHandPin.setAttribute(\"fill\", colors.handDark);\n // Append the elements to finish the minute hand.\n minuteHand.append(minuteHandA, minuteHandB, minuteHandPin);\n\n // Second hand.\n const secondHand = document.createElementNS(svgNS, \"g\");\n secondHand.setAttribute(\"class\", \"second-hand\");\n secondHand.setAttribute(\"transform\", \"translate(50 50)\");\n const secondHandBar = document.createElementNS(svgNS, \"line\");\n secondHandBar.setAttribute(\"x1\", \"0\");\n secondHandBar.setAttribute(\"y1\", \"0\");\n secondHandBar.setAttribute(\"x2\", \"46\");\n secondHandBar.setAttribute(\"y2\", \"0\");\n secondHandBar.setAttribute(\"stroke\", colors.secondHand);\n secondHandBar.setAttribute(\"stroke-width\", \"1\");\n secondHandBar.setAttribute(\"stroke-linecap\", \"round\");\n const secondHandPin = document.createElementNS(svgNS, \"circle\");\n secondHandPin.setAttribute(\"r\", \"2\");\n secondHandPin.setAttribute(\"fill\", colors.secondHand);\n // Append the elements to finish the second hand.\n secondHand.append(secondHandBar, secondHandPin);\n\n // Pin.\n const pin = document.createElementNS(svgNS, \"circle\");\n pin.setAttribute(\"cx\", \"50\");\n pin.setAttribute(\"cy\", \"50\");\n pin.setAttribute(\"r\", \"0.3\");\n pin.setAttribute(\"fill\", colors.handDark);\n\n // Get the hand angles.\n const date = this.getOriginDate();\n const seconds = date.getSeconds();\n const minutes = date.getMinutes();\n const hours = date.getHours();\n const secAngle = (360 / 60) * seconds;\n const minuteAngle = (360 / 60) * minutes + (360 / 60) * (seconds / 60);\n const hourAngle = (360 / 12) * hours + (360 / 12) * (minutes / 60);\n // Set the clock time by moving the hands.\n hourHand.setAttribute(\"transform\", `translate(50 50) rotate(${hourAngle})`);\n minuteHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${minuteAngle})`\n );\n secondHand.setAttribute(\n \"transform\",\n `translate(50 50) rotate(${secAngle})`\n );\n\n // Build the clock\n svg.append(clockFace, marksGroup, hourHand, minuteHand, secondHand, pin);\n // Rotate the clock to its normal position.\n svg.setAttribute(\"transform\", \"rotate(-90)\");\n\n /* Add the animation declaration to the container.\n * Since the animation keyframes need to know the\n * start angle, this angle is dynamic (current time),\n * and we can't edit keyframes through javascript\n * safely and with backwards compatibility, we need\n * to inject it.\n */\n div.innerHTML = `\n \n `;\n // Add the clock to the container\n div.append(svg);\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n div.append(dateElem);\n }\n\n return div;\n }\n\n /**\n * Create a element which contains a representation of a digital clock.\n * @return DOM Element.\n */\n private createDigitalClock(): HTMLElement {\n const element: HTMLDivElement = document.createElement(\"div\");\n element.className = \"digital-clock\";\n\n const { width, height } = this.getElementSize(); // Destructuring assigment: http://es6-features.org/#ObjectMatchingShorthandNotation\n let modified = width;\n if (height < width) {\n modified = height;\n }\n\n // Calculate font size to adapt the font to the item size.\n const baseTimeFontSize = 35; // Per 100px of width.\n const dateFontSizeMultiplier = 0.5;\n const tzFontSizeMultiplier = 6 / this.props.clockTimezone.length;\n const timeFontSize = (baseTimeFontSize * modified) / 100;\n const dateFontSize =\n (baseTimeFontSize * dateFontSizeMultiplier * modified) / 100;\n const tzFontSize = Math.min(\n (baseTimeFontSize * tzFontSizeMultiplier * modified) / 100,\n (width / 100) * 10\n );\n\n // Date calculated using the original timezone.\n const date = this.getOriginDate();\n\n // Date.\n if (this.props.clockFormat === \"datetime\") {\n const dateElem: HTMLSpanElement = document.createElement(\"span\");\n dateElem.className = \"date\";\n dateElem.textContent = humanDate(date, \"default\");\n dateElem.style.fontSize = `${dateFontSize}px`;\n if (this.props.color) dateElem.style.color = this.props.color;\n element.append(dateElem);\n }\n\n // Time.\n const timeElem: HTMLSpanElement = document.createElement(\"span\");\n timeElem.className = \"time\";\n timeElem.textContent = humanTime(date);\n timeElem.style.fontSize = `${timeFontSize}px`;\n if (this.props.color) timeElem.style.color = this.props.color;\n element.append(timeElem);\n\n // City name.\n const city = this.getHumanTimezone();\n if (city.length > 0) {\n const tzElem: HTMLSpanElement = document.createElement(\"span\");\n tzElem.className = \"timezone\";\n tzElem.textContent = city;\n tzElem.style.fontSize = `${tzFontSize}px`;\n if (this.props.color) tzElem.style.color = this.props.color;\n element.append(tzElem);\n }\n\n return element;\n }\n\n /**\n * Generate the current date using the timezone offset stored into the properties.\n * @return The current date.\n */\n private getOriginDate(initialDate: Date | null = null): Date {\n const d = initialDate ? initialDate : new Date();\n const targetTZOffset = this.props.clockTimezoneOffset * 1000; // In ms.\n const localTZOffset = d.getTimezoneOffset() * 60 * 1000; // In ms.\n const utimestamp = d.getTime() + targetTZOffset + localTZOffset;\n\n return new Date(utimestamp);\n }\n\n /**\n * Extract a human readable city name from the timezone text.\n * @param timezone Timezone text.\n */\n public getHumanTimezone(timezone: string = this.props.clockTimezone): string {\n const [, city = \"\"] = timezone.split(\"/\");\n return city.replace(\"_\", \" \");\n }\n\n /**\n * Generate a element size using the current size and the default values.\n * @return The size.\n */\n private getElementSize(\n width: number = this.props.width,\n height: number = this.props.height\n ): Size {\n switch (this.props.clockType) {\n case \"analogic\": {\n let diameter = 100; // Default value.\n\n if (width > 0 && height > 0) {\n diameter = Math.min(width, height);\n } else if (width > 0) {\n diameter = width;\n } else if (height > 0) {\n diameter = height;\n }\n\n let extraHeigth = 0;\n if (this.props.clockFormat === \"datetime\") {\n extraHeigth = height / 8;\n }\n\n return {\n width: diameter,\n height: diameter + extraHeigth\n };\n }\n case \"digital\": {\n if (width > 0 && height > 0) {\n // The proportion of the clock should be (width = height / 2) aproximately.\n height = width / 2 < height ? width / 2 : height;\n } else if (width > 0) {\n height = width / 2;\n } else if (height > 0) {\n // The proportion of the clock should be (height * 2 = width) aproximately.\n width = height * 2;\n } else {\n width = 100; // Default value.\n height = 50; // Default value.\n }\n\n return {\n width,\n height\n };\n }\n default:\n throw new Error(\"invalid clock type.\");\n }\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport { parseIntOr, notEmptyStringOr, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\ninterface BoxProps extends ItemProps {\n // Overrided properties.\n readonly type: ItemType.BOX_ITEM;\n label: null;\n isLinkEnabled: false;\n parentId: null;\n aclGroupId: null;\n // Custom properties.\n borderWidth: number;\n borderColor: string | null;\n fillColor: string | null;\n fillTransparent: boolean | null;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the item props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function boxPropsDecoder(data: AnyObject): BoxProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BOX_ITEM,\n label: null,\n isLinkEnabled: false,\n parentId: null,\n aclGroupId: null,\n // Custom properties.\n borderWidth: parseIntOr(data.borderWidth, 0),\n borderColor: notEmptyStringOr(data.borderColor, null),\n fillColor: notEmptyStringOr(data.fillColor, null),\n fillTransparent: data.fillTransparent\n };\n}\n\nexport default class Box extends Item {\n protected createDomElement(): HTMLElement {\n const box: HTMLDivElement = document.createElement(\"div\");\n box.className = \"box\";\n // To prevent this item to expand beyond its parent.\n box.style.boxSizing = \"border-box\";\n\n if (this.props.fillTransparent) {\n box.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n box.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n box.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n box.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n box.style.borderColor = this.props.borderColor;\n }\n }\n\n return box;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.fillTransparent) {\n element.style.backgroundColor = \"transparent\";\n } else {\n if (this.props.fillColor) {\n element.style.backgroundColor = this.props.fillColor;\n }\n }\n\n // Border.\n if (this.props.borderWidth > 0) {\n element.style.borderStyle = \"solid\";\n // Control the max width to prevent this item to expand beyond its parent.\n const maxBorderWidth = Math.min(this.props.width, this.props.height) / 2;\n const borderWidth = Math.min(this.props.borderWidth, maxBorderWidth);\n element.style.borderWidth = `${borderWidth}px`;\n\n if (this.props.borderColor) {\n element.style.borderColor = this.props.borderColor;\n }\n }\n }\n}\n","import { LinkedVisualConsoleProps, AnyObject } from \"../lib/types\";\nimport { linkedVCPropsDecoder } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type LabelProps = {\n type: ItemType.LABEL;\n} & ItemProps &\n LinkedVisualConsoleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the label props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function labelPropsDecoder(data: AnyObject): LabelProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.LABEL,\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Label extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"label\";\n element.innerHTML = this.getLabelWithMacrosReplaced();\n\n return element;\n }\n\n /**\n * @override Item.createLabelDomElement\n * Create a new label for the visual console item.\n * @return Item label.\n */\n public createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","import {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n parseIntOr,\n modulePropsDecoder,\n replaceMacros\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type SimpleValueProps = {\n type: ItemType.SIMPLE_VALUE;\n valueType: \"string\" | \"image\";\n value: string;\n} & (\n | {\n processValue: \"none\";\n }\n | {\n processValue: \"avg\" | \"max\" | \"min\";\n period: number;\n }\n) &\n ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw value type.\n * @param valueType Raw value.\n */\nconst parseValueType = (valueType: unknown): SimpleValueProps[\"valueType\"] => {\n switch (valueType) {\n case \"string\":\n case \"image\":\n return valueType;\n default:\n return \"string\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw process value.\n * @param processValue Raw value.\n */\nconst parseProcessValue = (\n processValue: unknown\n): SimpleValueProps[\"processValue\"] => {\n switch (processValue) {\n case \"none\":\n case \"avg\":\n case \"max\":\n case \"min\":\n return processValue;\n default:\n return \"none\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the simple value props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function simpleValuePropsDecoder(\n data: AnyObject\n): SimpleValueProps | never {\n if (typeof data.value !== \"string\" || data.value.length === 0) {\n throw new TypeError(\"invalid value\");\n }\n\n const processValue = parseProcessValue(data.processValue);\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SIMPLE_VALUE,\n valueType: parseValueType(data.valueType),\n value: data.value,\n ...(processValue === \"none\"\n ? { processValue }\n : { processValue, period: parseIntOr(data.period, 0) }), // Object spread. It will merge the properties of the two objects.\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class SimpleValue extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"simple-value\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n if (this.props.valueType === \"image\") {\n const img = document.createElement(\"img\");\n img.src = this.props.value;\n element.append(img);\n } else {\n // Add the value to the label and show it.\n let text = this.props.value;\n let label = this.getLabelWithMacrosReplaced();\n if (label.length > 0) {\n text = replaceMacros([{ macro: /\\(?_VALUE_\\)?/i, value: text }], label);\n }\n\n element.innerHTML = text;\n }\n\n return element;\n }\n\n /**\n * Generate a element size\n * using the current size and the default values.\n * @return The size.\n */ protected createLabelDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"visual-console-item-label\";\n // Always return an empty label.\n return element;\n }\n}\n","var pi = Math.PI,\n tau = 2 * pi,\n epsilon = 1e-6,\n tauEpsilon = tau - epsilon;\n\nfunction Path() {\n this._x0 = this._y0 = // start of current subpath\n this._x1 = this._y1 = null; // end of current subpath\n this._ = \"\";\n}\n\nfunction path() {\n return new Path;\n}\n\nPath.prototype = path.prototype = {\n constructor: Path,\n moveTo: function(x, y) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y);\n },\n closePath: function() {\n if (this._x1 !== null) {\n this._x1 = this._x0, this._y1 = this._y0;\n this._ += \"Z\";\n }\n },\n lineTo: function(x, y) {\n this._ += \"L\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n quadraticCurveTo: function(x1, y1, x, y) {\n this._ += \"Q\" + (+x1) + \",\" + (+y1) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n bezierCurveTo: function(x1, y1, x2, y2, x, y) {\n this._ += \"C\" + (+x1) + \",\" + (+y1) + \",\" + (+x2) + \",\" + (+y2) + \",\" + (this._x1 = +x) + \",\" + (this._y1 = +y);\n },\n arcTo: function(x1, y1, x2, y2, r) {\n x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r;\n var x0 = this._x1,\n y0 = this._y1,\n x21 = x2 - x1,\n y21 = y2 - y1,\n x01 = x0 - x1,\n y01 = y0 - y1,\n l01_2 = x01 * x01 + y01 * y01;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x1,y1).\n if (this._x1 === null) {\n this._ += \"M\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.\n else if (!(l01_2 > epsilon));\n\n // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?\n // Equivalently, is (x1,y1) coincident with (x2,y2)?\n // Or, is the radius zero? Line to (x1,y1).\n else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) {\n this._ += \"L\" + (this._x1 = x1) + \",\" + (this._y1 = y1);\n }\n\n // Otherwise, draw an arc!\n else {\n var x20 = x2 - x0,\n y20 = y2 - y0,\n l21_2 = x21 * x21 + y21 * y21,\n l20_2 = x20 * x20 + y20 * y20,\n l21 = Math.sqrt(l21_2),\n l01 = Math.sqrt(l01_2),\n l = r * Math.tan((pi - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2),\n t01 = l / l01,\n t21 = l / l21;\n\n // If the start tangent is not coincident with (x0,y0), line to.\n if (Math.abs(t01 - 1) > epsilon) {\n this._ += \"L\" + (x1 + t01 * x01) + \",\" + (y1 + t01 * y01);\n }\n\n this._ += \"A\" + r + \",\" + r + \",0,0,\" + (+(y01 * x20 > x01 * y20)) + \",\" + (this._x1 = x1 + t21 * x21) + \",\" + (this._y1 = y1 + t21 * y21);\n }\n },\n arc: function(x, y, r, a0, a1, ccw) {\n x = +x, y = +y, r = +r, ccw = !!ccw;\n var dx = r * Math.cos(a0),\n dy = r * Math.sin(a0),\n x0 = x + dx,\n y0 = y + dy,\n cw = 1 ^ ccw,\n da = ccw ? a0 - a1 : a1 - a0;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(\"negative radius: \" + r);\n\n // Is this path empty? Move to (x0,y0).\n if (this._x1 === null) {\n this._ += \"M\" + x0 + \",\" + y0;\n }\n\n // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0).\n else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) {\n this._ += \"L\" + x0 + \",\" + y0;\n }\n\n // Is this arc empty? We’re done.\n if (!r) return;\n\n // Does the angle go the wrong way? Flip the direction.\n if (da < 0) da = da % tau + tau;\n\n // Is this a complete circle? Draw two arcs to complete the circle.\n if (da > tauEpsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (x - dx) + \",\" + (y - dy) + \"A\" + r + \",\" + r + \",0,1,\" + cw + \",\" + (this._x1 = x0) + \",\" + (this._y1 = y0);\n }\n\n // Is this arc non-empty? Draw an arc!\n else if (da > epsilon) {\n this._ += \"A\" + r + \",\" + r + \",0,\" + (+(da >= pi)) + \",\" + cw + \",\" + (this._x1 = x + r * Math.cos(a1)) + \",\" + (this._y1 = y + r * Math.sin(a1));\n }\n },\n rect: function(x, y, w, h) {\n this._ += \"M\" + (this._x0 = this._x1 = +x) + \",\" + (this._y0 = this._y1 = +y) + \"h\" + (+w) + \"v\" + (+h) + \"h\" + (-w) + \"Z\";\n },\n toString: function() {\n return this._;\n }\n};\n\nexport default path;\n","export default function(x) {\n return function constant() {\n return x;\n };\n}\n","export var abs = Math.abs;\nexport var atan2 = Math.atan2;\nexport var cos = Math.cos;\nexport var max = Math.max;\nexport var min = Math.min;\nexport var sin = Math.sin;\nexport var sqrt = Math.sqrt;\n\nexport var epsilon = 1e-12;\nexport var pi = Math.PI;\nexport var halfPi = pi / 2;\nexport var tau = 2 * pi;\n\nexport function acos(x) {\n return x > 1 ? 0 : x < -1 ? pi : Math.acos(x);\n}\n\nexport function asin(x) {\n return x >= 1 ? halfPi : x <= -1 ? -halfPi : Math.asin(x);\n}\n","import {path} from \"d3-path\";\nimport constant from \"./constant.js\";\nimport {abs, acos, asin, atan2, cos, epsilon, halfPi, max, min, pi, sin, sqrt, tau} from \"./math.js\";\n\nfunction arcInnerRadius(d) {\n return d.innerRadius;\n}\n\nfunction arcOuterRadius(d) {\n return d.outerRadius;\n}\n\nfunction arcStartAngle(d) {\n return d.startAngle;\n}\n\nfunction arcEndAngle(d) {\n return d.endAngle;\n}\n\nfunction arcPadAngle(d) {\n return d && d.padAngle; // Note: optional!\n}\n\nfunction intersect(x0, y0, x1, y1, x2, y2, x3, y3) {\n var x10 = x1 - x0, y10 = y1 - y0,\n x32 = x3 - x2, y32 = y3 - y2,\n t = y32 * x10 - x32 * y10;\n if (t * t < epsilon) return;\n t = (x32 * (y0 - y2) - y32 * (x0 - x2)) / t;\n return [x0 + t * x10, y0 + t * y10];\n}\n\n// Compute perpendicular offset line of length rc.\n// http://mathworld.wolfram.com/Circle-LineIntersection.html\nfunction cornerTangents(x0, y0, x1, y1, r1, rc, cw) {\n var x01 = x0 - x1,\n y01 = y0 - y1,\n lo = (cw ? rc : -rc) / sqrt(x01 * x01 + y01 * y01),\n ox = lo * y01,\n oy = -lo * x01,\n x11 = x0 + ox,\n y11 = y0 + oy,\n x10 = x1 + ox,\n y10 = y1 + oy,\n x00 = (x11 + x10) / 2,\n y00 = (y11 + y10) / 2,\n dx = x10 - x11,\n dy = y10 - y11,\n d2 = dx * dx + dy * dy,\n r = r1 - rc,\n D = x11 * y10 - x10 * y11,\n d = (dy < 0 ? -1 : 1) * sqrt(max(0, r * r * d2 - D * D)),\n cx0 = (D * dy - dx * d) / d2,\n cy0 = (-D * dx - dy * d) / d2,\n cx1 = (D * dy + dx * d) / d2,\n cy1 = (-D * dx + dy * d) / d2,\n dx0 = cx0 - x00,\n dy0 = cy0 - y00,\n dx1 = cx1 - x00,\n dy1 = cy1 - y00;\n\n // Pick the closer of the two intersection points.\n // TODO Is there a faster way to determine which intersection to use?\n if (dx0 * dx0 + dy0 * dy0 > dx1 * dx1 + dy1 * dy1) cx0 = cx1, cy0 = cy1;\n\n return {\n cx: cx0,\n cy: cy0,\n x01: -ox,\n y01: -oy,\n x11: cx0 * (r1 / r - 1),\n y11: cy0 * (r1 / r - 1)\n };\n}\n\nexport default function() {\n var innerRadius = arcInnerRadius,\n outerRadius = arcOuterRadius,\n cornerRadius = constant(0),\n padRadius = null,\n startAngle = arcStartAngle,\n endAngle = arcEndAngle,\n padAngle = arcPadAngle,\n context = null;\n\n function arc() {\n var buffer,\n r,\n r0 = +innerRadius.apply(this, arguments),\n r1 = +outerRadius.apply(this, arguments),\n a0 = startAngle.apply(this, arguments) - halfPi,\n a1 = endAngle.apply(this, arguments) - halfPi,\n da = abs(a1 - a0),\n cw = a1 > a0;\n\n if (!context) context = buffer = path();\n\n // Ensure that the outer radius is always larger than the inner radius.\n if (r1 < r0) r = r1, r1 = r0, r0 = r;\n\n // Is it a point?\n if (!(r1 > epsilon)) context.moveTo(0, 0);\n\n // Or is it a circle or annulus?\n else if (da > tau - epsilon) {\n context.moveTo(r1 * cos(a0), r1 * sin(a0));\n context.arc(0, 0, r1, a0, a1, !cw);\n if (r0 > epsilon) {\n context.moveTo(r0 * cos(a1), r0 * sin(a1));\n context.arc(0, 0, r0, a1, a0, cw);\n }\n }\n\n // Or is it a circular or annular sector?\n else {\n var a01 = a0,\n a11 = a1,\n a00 = a0,\n a10 = a1,\n da0 = da,\n da1 = da,\n ap = padAngle.apply(this, arguments) / 2,\n rp = (ap > epsilon) && (padRadius ? +padRadius.apply(this, arguments) : sqrt(r0 * r0 + r1 * r1)),\n rc = min(abs(r1 - r0) / 2, +cornerRadius.apply(this, arguments)),\n rc0 = rc,\n rc1 = rc,\n t0,\n t1;\n\n // Apply padding? Note that since r1 ≥ r0, da1 ≥ da0.\n if (rp > epsilon) {\n var p0 = asin(rp / r0 * sin(ap)),\n p1 = asin(rp / r1 * sin(ap));\n if ((da0 -= p0 * 2) > epsilon) p0 *= (cw ? 1 : -1), a00 += p0, a10 -= p0;\n else da0 = 0, a00 = a10 = (a0 + a1) / 2;\n if ((da1 -= p1 * 2) > epsilon) p1 *= (cw ? 1 : -1), a01 += p1, a11 -= p1;\n else da1 = 0, a01 = a11 = (a0 + a1) / 2;\n }\n\n var x01 = r1 * cos(a01),\n y01 = r1 * sin(a01),\n x10 = r0 * cos(a10),\n y10 = r0 * sin(a10);\n\n // Apply rounded corners?\n if (rc > epsilon) {\n var x11 = r1 * cos(a11),\n y11 = r1 * sin(a11),\n x00 = r0 * cos(a00),\n y00 = r0 * sin(a00),\n oc;\n\n // Restrict the corner radius according to the sector angle.\n if (da < pi && (oc = intersect(x01, y01, x00, y00, x11, y11, x10, y10))) {\n var ax = x01 - oc[0],\n ay = y01 - oc[1],\n bx = x11 - oc[0],\n by = y11 - oc[1],\n kc = 1 / sin(acos((ax * bx + ay * by) / (sqrt(ax * ax + ay * ay) * sqrt(bx * bx + by * by))) / 2),\n lc = sqrt(oc[0] * oc[0] + oc[1] * oc[1]);\n rc0 = min(rc, (r0 - lc) / (kc - 1));\n rc1 = min(rc, (r1 - lc) / (kc + 1));\n }\n }\n\n // Is the sector collapsed to a line?\n if (!(da1 > epsilon)) context.moveTo(x01, y01);\n\n // Does the sector’s outer ring have rounded corners?\n else if (rc1 > epsilon) {\n t0 = cornerTangents(x00, y00, x01, y01, r1, rc1, cw);\n t1 = cornerTangents(x11, y11, x10, y10, r1, rc1, cw);\n\n context.moveTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc1 < rc) context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r1, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), !cw);\n context.arc(t1.cx, t1.cy, rc1, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the outer ring just a circular arc?\n else context.moveTo(x01, y01), context.arc(0, 0, r1, a01, a11, !cw);\n\n // Is there no inner ring, and it’s a circular sector?\n // Or perhaps it’s an annular sector collapsed due to padding?\n if (!(r0 > epsilon) || !(da0 > epsilon)) context.lineTo(x10, y10);\n\n // Does the sector’s inner ring (or point) have rounded corners?\n else if (rc0 > epsilon) {\n t0 = cornerTangents(x10, y10, x11, y11, r0, -rc0, cw);\n t1 = cornerTangents(x01, y01, x00, y00, r0, -rc0, cw);\n\n context.lineTo(t0.cx + t0.x01, t0.cy + t0.y01);\n\n // Have the corners merged?\n if (rc0 < rc) context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw);\n\n // Otherwise, draw the two corners and the ring.\n else {\n context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw);\n context.arc(0, 0, r0, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), cw);\n context.arc(t1.cx, t1.cy, rc0, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw);\n }\n }\n\n // Or is the inner ring just a circular arc?\n else context.arc(0, 0, r0, a10, a00, cw);\n }\n\n context.closePath();\n\n if (buffer) return context = null, buffer + \"\" || null;\n }\n\n arc.centroid = function() {\n var r = (+innerRadius.apply(this, arguments) + +outerRadius.apply(this, arguments)) / 2,\n a = (+startAngle.apply(this, arguments) + +endAngle.apply(this, arguments)) / 2 - pi / 2;\n return [cos(a) * r, sin(a) * r];\n };\n\n arc.innerRadius = function(_) {\n return arguments.length ? (innerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : innerRadius;\n };\n\n arc.outerRadius = function(_) {\n return arguments.length ? (outerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : outerRadius;\n };\n\n arc.cornerRadius = function(_) {\n return arguments.length ? (cornerRadius = typeof _ === \"function\" ? _ : constant(+_), arc) : cornerRadius;\n };\n\n arc.padRadius = function(_) {\n return arguments.length ? (padRadius = _ == null ? null : typeof _ === \"function\" ? _ : constant(+_), arc) : padRadius;\n };\n\n arc.startAngle = function(_) {\n return arguments.length ? (startAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : startAngle;\n };\n\n arc.endAngle = function(_) {\n return arguments.length ? (endAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : endAngle;\n };\n\n arc.padAngle = function(_) {\n return arguments.length ? (padAngle = typeof _ === \"function\" ? _ : constant(+_), arc) : padAngle;\n };\n\n arc.context = function(_) {\n return arguments.length ? ((context = _ == null ? null : _), arc) : context;\n };\n\n return arc;\n}\n","import { arc as arcFactory } from \"d3-shape\";\n\nimport {\n LinkedVisualConsoleProps,\n AnyObject,\n WithModuleProps\n} from \"../lib/types\";\nimport {\n linkedVCPropsDecoder,\n modulePropsDecoder,\n notEmptyStringOr,\n parseIntOr,\n parseFloatOr\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type PercentileProps = {\n type: ItemType.PERCENTILE_BAR;\n percentileType:\n | \"progress-bar\"\n | \"bubble\"\n | \"circular-progress-bar\"\n | \"circular-progress-bar-alt\";\n valueType: \"percent\" | \"value\";\n minValue: number | null;\n maxValue: number | null;\n color: string | null;\n labelColor: string | null;\n value: number | null;\n unit: string | null;\n} & ItemProps &\n WithModuleProps &\n LinkedVisualConsoleProps;\n\n/**\n * Extract a valid enum value from a raw type value.\n * @param type Raw value.\n */\nfunction extractPercentileType(\n type: unknown\n): PercentileProps[\"percentileType\"] {\n switch (type) {\n case \"progress-bar\":\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n return type;\n default:\n case ItemType.PERCENTILE_BAR:\n return \"progress-bar\";\n case ItemType.PERCENTILE_BUBBLE:\n return \"bubble\";\n case ItemType.CIRCULAR_PROGRESS_BAR:\n return \"circular-progress-bar\";\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return \"circular-progress-bar-alt\";\n }\n}\n\n/**\n * Extract a valid enum value from a raw value type value.\n * @param type Raw value.\n */\nfunction extractValueType(valueType: unknown): PercentileProps[\"valueType\"] {\n switch (valueType) {\n case \"percent\":\n case \"value\":\n return valueType;\n default:\n return \"percent\";\n }\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the percentile props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function percentilePropsDecoder(\n data: AnyObject\n): PercentileProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.PERCENTILE_BAR,\n percentileType: extractPercentileType(data.percentileType || data.type),\n valueType: extractValueType(data.valueType),\n minValue: parseIntOr(data.minValue, null),\n maxValue: parseIntOr(data.maxValue, null),\n color: notEmptyStringOr(data.color, null),\n labelColor: notEmptyStringOr(data.labelColor, null),\n value: parseFloatOr(data.value, null),\n unit: notEmptyStringOr(data.unit, null),\n ...modulePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n ...linkedVCPropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nconst svgNS = \"http://www.w3.org/2000/svg\";\n\nexport default class Percentile extends Item {\n protected createDomElement(): HTMLElement {\n const colors = {\n background: \"#000000\",\n progress: this.props.color || \"#F0F0F0\",\n text: this.props.labelColor || \"#444444\"\n };\n // Progress.\n const progress = this.getProgress();\n // Main element.\n const element = document.createElement(\"div\");\n\n var formatValue;\n if (this.props.value != null) {\n if (Intl) {\n formatValue = Intl.NumberFormat(\"en-EN\").format(this.props.value);\n } else {\n formatValue = this.props.value;\n }\n }\n\n // SVG container.\n const svg = document.createElementNS(svgNS, \"svg\");\n\n switch (this.props.percentileType) {\n case \"progress-bar\":\n {\n const backgroundRect = document.createElementNS(svgNS, \"rect\");\n backgroundRect.setAttribute(\"fill\", colors.background);\n backgroundRect.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundRect.setAttribute(\"width\", \"100%\");\n backgroundRect.setAttribute(\"height\", \"100%\");\n backgroundRect.setAttribute(\"rx\", \"5\");\n backgroundRect.setAttribute(\"ry\", \"5\");\n const progressRect = document.createElementNS(svgNS, \"rect\");\n progressRect.setAttribute(\"fill\", colors.progress);\n progressRect.setAttribute(\"fill-opacity\", \"1\");\n progressRect.setAttribute(\"width\", `${progress}%`);\n progressRect.setAttribute(\"height\", \"100%\");\n progressRect.setAttribute(\"rx\", \"5\");\n progressRect.setAttribute(\"ry\", \"5\");\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"15\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\n \"transform\",\n `translate(${this.props.width / 2}, 17.5)`\n );\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\") {\n text.style.fontSize = \"6pt\";\n\n text.textContent = this.props.unit\n ? `${formatValue} ${this.props.unit}`\n : `${formatValue}`;\n } else {\n text.textContent = `${progress}%`;\n }\n\n svg.setAttribute(\"width\", \"100%\");\n svg.setAttribute(\"height\", \"100%\");\n svg.append(backgroundRect, progressRect, text);\n }\n break;\n case \"bubble\":\n case \"circular-progress-bar\":\n case \"circular-progress-bar-alt\":\n {\n // Auto resize SVG using the view box magic: https://css-tricks.com/scale-svg/\n svg.setAttribute(\"viewBox\", \"0 0 100 100\");\n\n if (this.props.percentileType === \"bubble\") {\n // Create and append the circles.\n const backgroundCircle = document.createElementNS(svgNS, \"circle\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"r\", \"50\");\n const progressCircle = document.createElementNS(svgNS, \"circle\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\"r\", `${progress / 2}`);\n\n svg.append(backgroundCircle, progressCircle);\n } else {\n // Create and append the circles.\n const arcProps = {\n innerRadius:\n this.props.percentileType === \"circular-progress-bar\" ? 30 : 0,\n outerRadius: 50,\n startAngle: 0,\n endAngle: Math.PI * 2\n };\n const arc = arcFactory();\n\n const backgroundCircle = document.createElementNS(svgNS, \"path\");\n backgroundCircle.setAttribute(\"transform\", \"translate(50 50)\");\n backgroundCircle.setAttribute(\"fill\", colors.background);\n backgroundCircle.setAttribute(\"fill-opacity\", \"0.5\");\n backgroundCircle.setAttribute(\"d\", `${arc(arcProps)}`);\n const progressCircle = document.createElementNS(svgNS, \"path\");\n progressCircle.setAttribute(\"transform\", \"translate(50 50)\");\n progressCircle.setAttribute(\"fill\", colors.progress);\n progressCircle.setAttribute(\"fill-opacity\", \"1\");\n progressCircle.setAttribute(\n \"d\",\n `${arc({\n ...arcProps,\n endAngle: arcProps.endAngle * (progress / 100)\n })}`\n );\n\n svg.append(backgroundCircle, progressCircle);\n }\n\n // Create and append the text.\n const text = document.createElementNS(svgNS, \"text\");\n text.setAttribute(\"text-anchor\", \"middle\");\n text.setAttribute(\"alignment-baseline\", \"middle\");\n text.setAttribute(\"font-size\", \"16\");\n text.setAttribute(\"font-family\", \"lato\");\n text.setAttribute(\"font-weight\", \"bold\");\n text.setAttribute(\"fill\", colors.text);\n\n if (this.props.valueType === \"value\" && this.props.value != null) {\n // Show value and unit in 1 (no unit) or 2 lines.\n if (this.props.unit && this.props.unit.length > 0) {\n const value = document.createElementNS(svgNS, \"tspan\");\n value.setAttribute(\"x\", \"0\");\n value.setAttribute(\"dy\", \"1em\");\n value.textContent = `${formatValue}`;\n value.style.fontSize = \"8pt\";\n const unit = document.createElementNS(svgNS, \"tspan\");\n unit.setAttribute(\"x\", \"0\");\n unit.setAttribute(\"dy\", \"1em\");\n unit.textContent = `${this.props.unit}`;\n unit.style.fontSize = \"8pt\";\n text.append(value, unit);\n text.setAttribute(\"transform\", \"translate(50 33)\");\n } else {\n text.textContent = `${formatValue}`;\n text.style.fontSize = \"8pt\";\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n } else {\n // Percentage.\n text.textContent = `${progress}%`;\n text.setAttribute(\"transform\", \"translate(50 50)\");\n }\n\n svg.append(text);\n }\n break;\n }\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n svg.setAttribute(\"opacity\", \"0.2\");\n }\n\n if (svg !== null) element.append(svg);\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.meta.isBeingResized === false) {\n this.resizeElement(this.props.width, this.props.height);\n }\n element.innerHTML = this.createDomElement().innerHTML;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected resizeElement(width: number, height: number): void {\n if (this.props.percentileType === \"progress-bar\") {\n super.resizeElement(width, 35);\n } else {\n super.resizeElement(width, width);\n }\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(width, width);\n let height = this.props.maxValue || 0;\n if (this.props.percentileType === \"progress-bar\") {\n height = 35;\n }\n super.setProps({\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n });\n }\n\n private getProgress(): number {\n const minValue = this.props.minValue || 0;\n const maxValue = this.props.maxValue || 100;\n const value = this.props.value == null ? 0 : this.props.value;\n\n if (value <= minValue) return 0;\n else if (value >= maxValue) return 100;\n else return Math.trunc(((value - minValue) / (maxValue - minValue)) * 100);\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\nimport { modulePropsDecoder, decodeBase64, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type BarsGraphProps = {\n type: ItemType.BARS_GRAPH;\n html: string;\n backgroundColor: \"white\" | \"black\" | \"transparent\";\n typeGraph: \"horizontal\" | \"vertical\";\n gridColor: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param BarsGraphProps Raw value.\n */\nconst parseBarsGraphProps = (\n backgroundColor: unknown\n): BarsGraphProps[\"backgroundColor\"] => {\n switch (backgroundColor) {\n case \"white\":\n case \"black\":\n case \"transparent\":\n return backgroundColor;\n default:\n return \"transparent\";\n }\n};\n\n/**\n * Extract a valid enum value from a raw unknown value.\n * @param typeGraph Raw value.\n */\nconst parseTypeGraph = (typeGraph: unknown): BarsGraphProps[\"typeGraph\"] => {\n switch (typeGraph) {\n case \"horizontal\":\n case \"vertical\":\n return typeGraph;\n default:\n return \"vertical\";\n }\n};\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the bars graph props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function barsGraphPropsDecoder(data: AnyObject): BarsGraphProps | never {\n if (stringIsEmpty(data.html) && stringIsEmpty(data.encodedHtml)) {\n throw new TypeError(\"missing html content.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.BARS_GRAPH,\n html: !stringIsEmpty(data.html)\n ? data.html\n : decodeBase64(data.encodedHtml),\n backgroundColor: parseBarsGraphProps(data.backgroundColor),\n typeGraph: parseTypeGraph(data.typeGraph),\n gridColor: stringIsEmpty(data.gridColor) ? \"#000000\" : data.gridColor,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class BarsGraph extends Item {\n protected createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"bars-graph\";\n element.style.backgroundImage = `url(${this.props.html})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = `${this.props.width}px ${this.props.height}px`;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.style.backgroundImage = `url(${this.props.html})`;\n element.style.backgroundRepeat = \"no-repeat\";\n element.style.backgroundSize = `${this.props.width}px ${this.props.height}px`;\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n }\n}\n","import { AnyObject } from \"../lib/types\";\nimport {\n stringIsEmpty,\n notEmptyStringOr,\n decodeBase64,\n parseIntOr,\n t\n} from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\nimport { FormContainer, InputGroup } from \"../Form\";\nimport fontAwesomeIcon from \"../lib/FontAwesomeIcon\";\nimport {\n faCircleNotch,\n faExclamationCircle\n} from \"@fortawesome/free-solid-svg-icons\";\n\nexport type ServiceProps = {\n type: ItemType.SERVICE;\n serviceId: number;\n imageSrc: string | null;\n statusImageSrc: string | null;\n encodedTitle: string | null;\n} & ItemProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the service props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function servicePropsDecoder(data: AnyObject): ServiceProps | never {\n if (data.imageSrc !== null) {\n if (\n typeof data.statusImageSrc !== \"string\" ||\n data.imageSrc.statusImageSrc === 0\n ) {\n throw new TypeError(\"invalid status image src.\");\n }\n } else {\n if (stringIsEmpty(data.encodedTitle)) {\n throw new TypeError(\"missing encode tittle content.\");\n }\n }\n\n if (parseIntOr(data.serviceId, null) === null) {\n throw new TypeError(\"invalid service id.\");\n }\n\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.SERVICE,\n serviceId: data.serviceId,\n imageSrc: notEmptyStringOr(data.imageSrc, null),\n statusImageSrc: notEmptyStringOr(data.statusImageSrc, null),\n encodedTitle: notEmptyStringOr(data.encodedTitle, null)\n };\n}\n\nexport default class Service extends Item {\n public createDomElement(): HTMLElement {\n const element = document.createElement(\"div\");\n element.className = \"service\";\n\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n\n return element;\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n protected updateDomElement(element: HTMLElement): void {\n if (this.props.statusImageSrc !== null) {\n element.style.background = `url(${this.props.statusImageSrc}) no-repeat`;\n element.style.backgroundSize = \"contain\";\n element.style.backgroundPosition = \"center\";\n if (this.props.encodedTitle !== null) {\n element.className = \"service image forced_title\";\n element.setAttribute(\"data-use_title_for_force_title\", \"1\");\n element.setAttribute(\n \"data-title\",\n decodeBase64(this.props.encodedTitle)\n );\n }\n element.innerHTML = \"\";\n } else if (this.props.encodedTitle !== null) {\n element.innerHTML = decodeBase64(this.props.encodedTitle);\n }\n }\n}\n","import { AnyObject, WithModuleProps } from \"../lib/types\";\n\nimport { modulePropsDecoder, parseIntOr, stringIsEmpty, t } from \"../lib\";\nimport Item, { ItemType, ItemProps, itemBasePropsDecoder } from \"../Item\";\n\nexport type OdometerProps = {\n type: ItemType.ODOMETER;\n value: number;\n status: string;\n title: string | null;\n titleModule: string;\n titleColor: string;\n odometerType: string;\n thresholds: string | any;\n minMaxValue: string;\n} & ItemProps &\n WithModuleProps;\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the events history props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function odometerPropsDecoder(data: AnyObject): OdometerProps | never {\n return {\n ...itemBasePropsDecoder(data), // Object spread. It will merge the properties of the two objects.\n type: ItemType.ODOMETER,\n value: parseIntOr(data.value, 0),\n status: stringIsEmpty(data.status) ? \"#B2B2B2\" : data.status,\n titleColor: stringIsEmpty(data.titleColor) ? \"#3f3f3f\" : data.titleColor,\n title: stringIsEmpty(data.title) ? \"\" : data.title,\n titleModule: stringIsEmpty(data.titleModule) ? \"\" : data.titleModule,\n thresholds: stringIsEmpty(data.thresholds) ? \"\" : data.thresholds,\n minMaxValue: stringIsEmpty(data.minMaxValue) ? \"\" : data.minMaxValue,\n odometerType: stringIsEmpty(data.odometerType)\n ? \"percent\"\n : data.odometerType,\n ...modulePropsDecoder(data) // Object spread. It will merge the properties of the two objects.\n };\n}\n\nexport default class Odometer extends Item {\n protected createDomElement(): HTMLElement {\n let lineWarning = \"\";\n let lineWarning2 = \"\";\n let lineCritical = \"\";\n let lineCritical2 = \"\";\n\n if (this.props.thresholds !== \"\") {\n const thresholds = JSON.parse(this.props.thresholds);\n\n if (thresholds !== null) {\n if (thresholds.min_warning != 0 || thresholds.max_warning != 0) {\n lineWarning = this.getCoords(\n thresholds.min_warning,\n this.props.width / 2\n );\n if (thresholds.max_warning == 0) {\n lineWarning2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineWarning2 = this.getCoords(\n thresholds.max_warning,\n this.props.width / 2\n );\n }\n }\n\n if (thresholds.min_critical != 0 || thresholds.max_critical != 0) {\n lineCritical = this.getCoords(\n thresholds.min_critical,\n this.props.width / 2\n );\n if (thresholds.max_critical == 0) {\n lineCritical2 = this.getCoords(100, this.props.width / 2);\n } else {\n lineCritical2 = this.getCoords(\n thresholds.max_critical,\n this.props.width / 2\n );\n }\n }\n }\n }\n\n let percent = \"\";\n let number;\n // Float\n if (\n Number(this.props.value) === this.props.value &&\n this.props.value % 1 !== 0\n ) {\n number = this.props.value.toFixed(1);\n } else {\n if (this.props.minMaxValue === \"\") {\n percent = \" %\";\n } else {\n percent = this.getSubfix(this.props.value);\n }\n number = new Intl.NumberFormat(\"es\", {\n maximumSignificantDigits: 4,\n maximumFractionDigits: 3\n }).format(this.props.value);\n }\n\n var numb = number.match(/\\d*\\.\\d/);\n if (numb !== null) {\n number = numb[0];\n }\n\n const rotate = this.getRotate(this.props.value);\n\n let backgroundColor = document.getElementById(\n \"visual-console-container\"\n ) as HTMLElement;\n\n if (backgroundColor === null) {\n backgroundColor = document.getElementById(\n `visual-console-container-${this.props.cellId}`\n ) as HTMLElement;\n }\n\n if (backgroundColor.style.backgroundColor == \"\") {\n backgroundColor.style.backgroundColor = \"#fff\";\n }\n\n const anchoB = this.props.width * 0.7;\n\n const element = document.createElement(\"div\");\n element.className = \"odometer\";\n\n if (\n this.props.agentDisabled === true ||\n this.props.moduleDisabled === true\n ) {\n element.style.opacity = \"0.2\";\n }\n\n // Odometer container.\n const odometerContainer = document.createElement(\"div\");\n odometerContainer.className = \"odometer-container\";\n\n // Central semicircle.\n const odometerA = document.createElement(\"div\");\n odometerA.className = \"odometer-a\";\n odometerA.style.backgroundColor = `${backgroundColor.style.backgroundColor}`;\n\n // Semicircle rotating with the value.\n const odometerB = document.createElement(\"div\");\n odometerB.className = \"odometer-b\";\n odometerB.id = `odometerB-${this.props.id}`;\n odometerB.style.backgroundColor = `${this.props.status}`;\n\n // Dark semicircle.\n const odometerC = document.createElement(\"div\");\n odometerC.className = \"odometer-c\";\n\n // Green outer semicircle.\n const gaugeE = document.createElement(\"div\");\n gaugeE.className = \"odometer-d\";\n\n const SVG_NS = \"http://www.w3.org/2000/svg\";\n // Portion of threshold warning\n if (lineWarning != \"\") {\n const svgWarning = document.createElementNS(SVG_NS, \"svg\");\n svgWarning.setAttributeNS(null, \"width\", \"100%\");\n svgWarning.setAttributeNS(null, \"height\", \"100%\");\n svgWarning.setAttributeNS(null, \"style\", \"position:absolute;z-index:1\");\n const pathWarning = document.createElementNS(SVG_NS, \"path\");\n pathWarning.setAttributeNS(null, \"id\", `svgWarning-${this.props.id}`);\n pathWarning.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineWarning}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineWarning2}Z`\n );\n pathWarning.setAttributeNS(null, \"class\", \"svg_warning\");\n svgWarning.appendChild(pathWarning);\n odometerContainer.appendChild(svgWarning);\n }\n\n // Portion of threshold critical\n if (lineCritical != \"\") {\n const svgCritical = document.createElementNS(SVG_NS, \"svg\");\n svgCritical.setAttributeNS(null, \"width\", \"100%\");\n svgCritical.setAttributeNS(null, \"height\", \"100%\");\n svgCritical.setAttributeNS(null, \"style\", \"position:absolute;z-index:2\");\n const pathCritical = document.createElementNS(SVG_NS, \"path\");\n pathCritical.setAttributeNS(null, \"id\", `svgCritical-${this.props.id}`);\n pathCritical.setAttributeNS(\n null,\n \"d\",\n `M${this.props.width / 2},${this.props.width / 2}L${lineCritical}A${this\n .props.width / 2},${this.props.width / 2},0,0,1,${lineCritical2}Z`\n );\n pathCritical.setAttributeNS(null, \"fill\", \"#E63C52\");\n svgCritical.appendChild(pathCritical);\n odometerContainer.appendChild(svgCritical);\n }\n\n // Text.\n const h1 = document.createElement(\"h1\");\n h1.innerText = number + percent;\n h1.style.fontSize = `${anchoB * 0.17}px`;\n h1.style.color = `${this.props.status}`;\n h1.style.lineHeight = \"0\";\n\n const h2 = document.createElement(\"h2\");\n if (this.props.title == \"\") {\n h2.textContent = this.truncateTitle(this.props.moduleName);\n } else {\n h2.textContent = this.truncateTitle(this.props.title);\n }\n h2.title = this.props.titleModule;\n h2.setAttribute(\"title\", this.props.titleModule);\n\n h2.style.fontSize = `${anchoB * 0.06}px`;\n h2.style.color = `${this.props.titleColor}`;\n h2.style.lineHeight = \"0\";\n\n let script = document.createElement(\"script\");\n script.type = \"text/javascript\";\n script.onload = function() {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n };\n\n if (typeof this.props.metaconsoleId !== \"undefined\") {\n script.src = \"./../../include/javascript/pandora_alerts.js\";\n } else {\n script.src = \"./include/javascript/pandora_alerts.js\";\n }\n\n odometerA.appendChild(h1);\n odometerA.appendChild(h2);\n odometerContainer.appendChild(odometerB);\n odometerContainer.appendChild(odometerC);\n odometerContainer.appendChild(gaugeE);\n odometerContainer.appendChild(odometerA);\n odometerContainer.appendChild(script);\n element.appendChild(odometerContainer);\n\n return element;\n }\n\n protected updateDomElement(element: HTMLElement): void {\n element.innerHTML = this.createDomElement().innerHTML;\n\n let rotate = this.getRotate(this.props.value);\n\n const svgWarning = document.getElementById(`svgWarning-${this.props.id}`);\n if (svgWarning != null) {\n svgWarning.style.display = \"none\";\n }\n\n const svgCritical = document.getElementById(`svgCritical-${this.props.id}`);\n if (svgCritical != null) {\n svgCritical.style.display = \"none\";\n }\n\n setTimeout(() => {\n if (svgWarning != null) {\n svgWarning.style.display = \"block\";\n }\n\n if (svgCritical != null) {\n svgCritical.style.display = \"block\";\n }\n\n var odometerB = document.getElementById(`odometerB-${this.props.id}`);\n if (odometerB) {\n odometerB.style.transform = `rotate(${rotate}turn)`;\n }\n }, 500);\n }\n\n protected resizeElement(width: number): void {\n super.resizeElement(width, width / 2);\n }\n\n /**\n * To update the content element.\n * @override Item.updateDomElement\n */\n public resize(width: number): void {\n this.resizeElement(this.props.width);\n }\n\n private getRotate(value: number): number {\n let rotate = 0;\n if (this.props.minMaxValue === \"\") {\n rotate = value / 2 / 100;\n } else {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === value) {\n rotate = 0;\n } else if (minMax[\"max\"] === value) {\n rotate = 0.5;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n const valueMax = minMax[\"max\"] - value;\n rotate = (100 - (valueMax * 100) / limit) / 100 / 2;\n }\n }\n\n return rotate;\n }\n\n private getSubfix(value: number): string {\n let subfix = \"\";\n const length = (value + \"\").length;\n if (length > 3 && length <= 6) {\n subfix = \" K\";\n } else if (length > 6 && length <= 9) {\n subfix = \" M\";\n } else if (length > 9 && length <= 12) {\n subfix = \" G\";\n } else if (length > 12 && length <= 15) {\n subfix = \" T\";\n }\n\n return subfix;\n }\n\n private getCoords(percent: number, radio: number): string {\n if (this.props.minMaxValue === \"\") {\n percent = percent;\n } else {\n const minMax = JSON.parse(this.props.minMaxValue);\n if (minMax[\"min\"] === percent) {\n percent = 0;\n } else if (minMax[\"max\"] === percent || percent === 100) {\n percent = 100;\n } else {\n const limit = minMax[\"max\"] - minMax[\"min\"];\n let valueMax = minMax[\"max\"] - percent;\n percent = 100 - (valueMax * 100) / limit;\n }\n }\n\n percent = 180 - percent * 1.8;\n const x = radio + Math.cos((percent * Math.PI) / 180) * radio;\n const y = radio - Math.sin((percent * Math.PI) / 180) * radio;\n return `${x},${y}`;\n }\n\n private truncateTitle(title: any): string {\n if (title != null && title.length > 22) {\n const halfLength = title.length / 2;\n const diff = halfLength - 9;\n const stringBefore = title.substr(0, halfLength - diff);\n const stringAfter = title.substr(halfLength + diff);\n\n return `${stringBefore}...${stringAfter}`;\n } else {\n return title;\n }\n }\n}\n","import { AnyObject, Size, Position, WithModuleProps } from \"./lib/types\";\nimport {\n parseBoolean,\n sizePropsDecoder,\n parseIntOr,\n notEmptyStringOr,\n itemMetaDecoder,\n t,\n ellipsize,\n debounce\n} from \"./lib\";\nimport Item, {\n ItemType,\n ItemProps,\n ItemClickEvent,\n ItemRemoveEvent,\n ItemMovedEvent,\n ItemResizedEvent,\n ItemSelectionChangedEvent\n} from \"./Item\";\nimport StaticGraph, { staticGraphPropsDecoder } from \"./items/StaticGraph\";\nimport Icon, { iconPropsDecoder } from \"./items/Icon\";\nimport ColorCloud, { colorCloudPropsDecoder } from \"./items/ColorCloud\";\nimport NetworkLink, { networkLinkPropsDecoder } from \"./items/NetworkLink\";\nimport Group, { groupPropsDecoder } from \"./items/Group\";\nimport Clock, { clockPropsDecoder } from \"./items/Clock\";\nimport Box, { boxPropsDecoder } from \"./items/Box\";\nimport Line, { linePropsDecoder, LineMovedEvent } from \"./items/Line\";\nimport Label, { labelPropsDecoder } from \"./items/Label\";\nimport SimpleValue, { simpleValuePropsDecoder } from \"./items/SimpleValue\";\nimport EventsHistory, {\n eventsHistoryPropsDecoder\n} from \"./items/EventsHistory\";\nimport Percentile, { percentilePropsDecoder } from \"./items/Percentile\";\nimport TypedEvent, { Disposable, Listener } from \"./lib/TypedEvent\";\nimport DonutGraph, { donutGraphPropsDecoder } from \"./items/DonutGraph\";\nimport BarsGraph, { barsGraphPropsDecoder } from \"./items/BarsGraph\";\nimport ModuleGraph, { moduleGraphPropsDecoder } from \"./items/ModuleGraph\";\nimport Service, { servicePropsDecoder } from \"./items/Service\";\nimport Odometer, { odometerPropsDecoder } from \"./items/Odometer\";\nimport BasicChart, { basicChartPropsDecoder } from \"./items/BasicChart\";\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction itemInstanceFrom(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n const meta = itemMetaDecoder(data);\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return new StaticGraph(staticGraphPropsDecoder(data), meta);\n case ItemType.MODULE_GRAPH:\n return new ModuleGraph(moduleGraphPropsDecoder(data), meta);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return new SimpleValue(simpleValuePropsDecoder(data), meta);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return new Percentile(percentilePropsDecoder(data), meta);\n case ItemType.LABEL:\n return new Label(labelPropsDecoder(data), meta);\n case ItemType.ICON:\n return new Icon(iconPropsDecoder(data), meta);\n case ItemType.SERVICE:\n return new Service(servicePropsDecoder(data), meta);\n case ItemType.GROUP_ITEM:\n return new Group(groupPropsDecoder(data), meta);\n case ItemType.BOX_ITEM:\n return new Box(boxPropsDecoder(data), meta);\n case ItemType.LINE_ITEM:\n return new Line(linePropsDecoder(data), meta);\n case ItemType.AUTO_SLA_GRAPH:\n return new EventsHistory(eventsHistoryPropsDecoder(data), meta);\n case ItemType.DONUT_GRAPH:\n return new DonutGraph(donutGraphPropsDecoder(data), meta);\n case ItemType.BARS_GRAPH:\n return new BarsGraph(barsGraphPropsDecoder(data), meta);\n case ItemType.CLOCK:\n return new Clock(clockPropsDecoder(data), meta);\n case ItemType.COLOR_CLOUD:\n return new ColorCloud(colorCloudPropsDecoder(data), meta);\n case ItemType.NETWORK_LINK:\n return new NetworkLink(networkLinkPropsDecoder(data), meta);\n case ItemType.ODOMETER:\n return new Odometer(odometerPropsDecoder(data), meta);\n case ItemType.BASIC_CHART:\n return new BasicChart(basicChartPropsDecoder(data), meta);\n default:\n throw new TypeError(\"item not found\");\n }\n}\n\n// TODO: Document.\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type\nfunction decodeProps(data: AnyObject) {\n const type = parseIntOr(data.type, null);\n if (type == null) throw new TypeError(\"missing item type.\");\n\n switch (type as ItemType) {\n case ItemType.STATIC_GRAPH:\n return staticGraphPropsDecoder(data);\n case ItemType.MODULE_GRAPH:\n return moduleGraphPropsDecoder(data);\n case ItemType.SIMPLE_VALUE:\n case ItemType.SIMPLE_VALUE_MAX:\n case ItemType.SIMPLE_VALUE_MIN:\n case ItemType.SIMPLE_VALUE_AVG:\n return simpleValuePropsDecoder(data);\n case ItemType.PERCENTILE_BAR:\n case ItemType.PERCENTILE_BUBBLE:\n case ItemType.CIRCULAR_PROGRESS_BAR:\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n return percentilePropsDecoder(data);\n case ItemType.LABEL:\n return labelPropsDecoder(data);\n case ItemType.ICON:\n return iconPropsDecoder(data);\n case ItemType.SERVICE:\n return servicePropsDecoder(data);\n case ItemType.GROUP_ITEM:\n return groupPropsDecoder(data);\n case ItemType.BOX_ITEM:\n return boxPropsDecoder(data);\n case ItemType.LINE_ITEM:\n return linePropsDecoder(data);\n case ItemType.AUTO_SLA_GRAPH:\n return eventsHistoryPropsDecoder(data);\n case ItemType.DONUT_GRAPH:\n return donutGraphPropsDecoder(data);\n case ItemType.BARS_GRAPH:\n return barsGraphPropsDecoder(data);\n case ItemType.CLOCK:\n return clockPropsDecoder(data);\n case ItemType.COLOR_CLOUD:\n return colorCloudPropsDecoder(data);\n case ItemType.NETWORK_LINK:\n return networkLinkPropsDecoder(data);\n case ItemType.ODOMETER:\n return odometerPropsDecoder(data);\n case ItemType.BASIC_CHART:\n return basicChartPropsDecoder(data);\n default:\n throw new TypeError(\"decoder not found\");\n }\n}\n\n// Base properties.\nexport interface VisualConsoleProps extends Size {\n readonly id: number;\n name: string;\n groupId: number;\n backgroundURL: string | null; // URL?\n backgroundColor: string | null;\n isFavorite: boolean;\n relationLineWidth: number;\n maintenanceMode: MaintenanceModeInterface | null;\n}\n\nexport interface MaintenanceModeInterface {\n user: string;\n timestamp: number;\n}\n\n/**\n * Build a valid typed object from a raw object.\n * This will allow us to ensure the type safety.\n *\n * @param data Raw object.\n * @return An object representing the Visual Console props.\n * @throws Will throw a TypeError if some property\n * is missing from the raw object or have an invalid type.\n */\nexport function visualConsolePropsDecoder(\n data: AnyObject\n): VisualConsoleProps | never {\n // Object destructuring: http://es6-features.org/#ObjectMatchingShorthandNotation\n const {\n id,\n name,\n groupId,\n backgroundURL,\n backgroundColor,\n isFavorite,\n relationLineWidth,\n maintenanceMode\n } = data;\n\n if (id == null || isNaN(parseInt(id))) {\n throw new TypeError(\"invalid Id.\");\n }\n if (typeof name !== \"string\" || name.length === 0) {\n throw new TypeError(\"invalid name.\");\n }\n if (groupId == null || isNaN(parseInt(groupId))) {\n throw new TypeError(\"invalid group Id.\");\n }\n\n return {\n id: parseInt(id),\n name,\n groupId: parseInt(groupId),\n backgroundURL: notEmptyStringOr(backgroundURL, null),\n backgroundColor: notEmptyStringOr(backgroundColor, null),\n isFavorite: parseBoolean(isFavorite),\n relationLineWidth: parseIntOr(relationLineWidth, 0),\n maintenanceMode: maintenanceMode,\n ...sizePropsDecoder(data)\n };\n}\n\nexport default class VisualConsole {\n // Reference to the DOM element which will contain the items.\n private readonly containerRef: HTMLElement;\n // Properties.\n private _props: VisualConsoleProps;\n // Visual Console Item instances by their Id.\n private elementsById: {\n [key: number]: Item;\n } = {};\n // Visual Console Item Ids.\n private elementIds: ItemProps[\"id\"][] = [];\n // Dictionary which store the created lines.\n private relations: {\n [key: string]: Line;\n } = {};\n\n // Dictionary which store the related items (by ID).\n private lineLinks: {\n [key: number]: { [key: number]: { [key: string]: number } };\n } = {};\n\n private lines: {\n [key: number]: { [key: string]: number };\n } = {};\n\n // Event manager for click events.\n private readonly clickEventManager = new TypedEvent();\n // Event manager for double click events.\n private readonly dblClickEventManager = new TypedEvent();\n // Event manager for move events.\n private readonly movedEventManager = new TypedEvent();\n // Event manager for line move events.\n private readonly lineMovedEventManager = new TypedEvent();\n // Event manager for resize events.\n private readonly resizedEventManager = new TypedEvent();\n // Event manager for remove events.\n private readonly selectionChangedEventManager = new TypedEvent<\n ItemSelectionChangedEvent\n >();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n /**\n * React to a click on an element.\n * @param e Event object.\n */\n private handleElementClick: (e: ItemClickEvent) => void = e => {\n this.clickEventManager.emit(e);\n // console.log(`Clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a double click on an element.\n * @param e Event object.\n */\n private handleElementDblClick: (e: ItemClickEvent) => void = e => {\n this.dblClickEventManager.emit(e);\n // console.log(`Double clicked element #${e.data.id}`, e);\n };\n\n /**\n * React to a movement on an element.\n * @param e Event object.\n */\n private handleElementMovement: (e: ItemMovedEvent) => void = e => {\n // Move their relation lines.\n const itemId = e.item.props.id;\n const relations = this.getItemRelations(itemId);\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(e.newPosition, e.item)\n };\n }\n });\n\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, false);\n\n // console.log(`Moved element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a movement finished on an element.\n * @param e Event object.\n */\n private handleElementMovementFinished: (e: ItemMovedEvent) => void = e => {\n this.movedEventManager.emit(e);\n // Move lines conneted with this item.\n this.updateLinesConnected(e.item.props, e.newPosition, true);\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Verifies if x,y are inside item coordinates.\n * @param x Coordinate X\n * @param y Coordinate Y\n * @param item ItemProps instance.\n */\n private coordinatesInItem(x: number, y: number, props: ItemProps) {\n if (\n props.type == ItemType.LINE_ITEM ||\n props.type == ItemType.NETWORK_LINK\n ) {\n return false;\n }\n\n if (\n x > props.x &&\n x < props.x + props.width &&\n y > props.y &&\n y < props.y + props.height\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * React to a line movement.\n * @param e Event object.\n */\n private handleLineElementMovementFinished: (\n e: LineMovedEvent\n ) => void = e => {\n // Update links.\n this.refreshLink(e.item);\n\n // Build line relationships between items and lines.\n this.lineMovedEventManager.emit(e);\n\n // console.log(`Movement finished for element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a resizement on an element.\n * @param e Event object.\n */\n private handleElementResizement: (e: ItemResizedEvent) => void = e => {\n // Move their relation lines.\n const item = e.item;\n const props = item.props;\n const itemId = props.id;\n const relations = this.getItemRelations(itemId);\n\n const position = {\n x: props.x,\n y: props.y\n };\n\n const meta = this.elementsById[itemId].meta;\n\n this.elementsById[itemId].meta = {\n ...meta,\n isUpdating: true\n };\n\n relations.forEach(relation => {\n if (relation.parentId === itemId) {\n // Move the line start.\n relation.line.props = {\n ...relation.line.props,\n startPosition: this.getVisualCenter(position, item)\n };\n } else if (relation.childId === itemId) {\n // Move the line end.\n relation.line.props = {\n ...relation.line.props,\n endPosition: this.getVisualCenter(position, item)\n };\n }\n });\n\n // console.log(`Resized element #${e.item.props.id}`, e);\n };\n\n /**\n * React to a finished resizement on an element.\n * @param e Event object.\n */\n private handleElementResizementFinished: (\n e: ItemResizedEvent\n ) => void = e => {\n this.resizedEventManager.emit(e);\n // console.log(`Resize fonished for element #${e.item.props.id}`, e);\n };\n\n /**\n * Clear some element references.\n * @param e Event object.\n */\n private handleElementRemove: (e: ItemRemoveEvent) => void = e => {\n // Remove the element from the list and its relations.\n this.elementIds = this.elementIds.filter(id => id !== e.item.props.id);\n delete this.elementsById[e.item.props.id];\n this.clearRelations(e.item.props.id);\n };\n\n /**\n * React to element selection change\n * @param e Event object.\n */\n private handleElementSelectionChanged: (\n e: ItemSelectionChangedEvent\n ) => void = e => {\n if (this.elements.filter(item => item.meta.isSelected == true).length > 0) {\n e.selected = true;\n } else {\n e.selected = false;\n }\n this.selectionChangedEventManager.emit(e);\n };\n\n // TODO: Document\n private handleContainerClick: (e: MouseEvent) => void = () => {\n this.unSelectItems();\n };\n\n /**\n * Refresh link for given line.\n *\n * @param line Line.\n */\n protected refreshLink(l: Line) {\n let line: number = l.props.id;\n let itemAtStart = 0;\n let itemAtEnd = 0;\n\n try {\n for (let i in this.elementsById) {\n if (\n this.coordinatesInItem(\n l.props.startPosition.x,\n l.props.startPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtStart = parseInt(i);\n }\n\n if (\n this.coordinatesInItem(\n l.props.endPosition.x,\n l.props.endPosition.y,\n this.elementsById[i].props\n )\n ) {\n // Start position at element i.\n itemAtEnd = parseInt(i);\n }\n }\n\n if (this.lineLinks == null) {\n this.lineLinks = {};\n }\n\n if (this.lines == null) {\n this.lines = {};\n }\n\n if (itemAtStart == line) {\n itemAtStart = 0;\n }\n\n if (itemAtEnd == line) {\n itemAtEnd = 0;\n }\n\n // Initialize line if not registered.\n if (this.lines[line] == null) {\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n }\n\n // Register 'start' side of the line.\n if (itemAtStart > 0) {\n // Initialize.\n if (this.lineLinks[itemAtStart] == null) {\n this.lineLinks[itemAtStart] = {};\n }\n\n // Assign.\n this.lineLinks[itemAtStart][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Register line if not exists prviously.\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"start\"] > 0) {\n this.lineLinks[this.lines[line][\"start\"]][line][\"start\"] = 0;\n this.lines[line][\"start\"] = 0;\n }\n }\n\n if (itemAtEnd > 0) {\n if (this.lineLinks[itemAtEnd] == null) {\n this.lineLinks[itemAtEnd] = {};\n }\n\n this.lineLinks[itemAtEnd][line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n } else {\n // Clean previous line relationship.\n if (this.lines[line][\"end\"] > 0) {\n this.lineLinks[this.lines[line][\"end\"]][line][\"end\"] = 0;\n this.lines[line][\"end\"] = 0;\n }\n }\n\n this.lines[line] = {\n start: itemAtStart,\n end: itemAtEnd\n };\n\n // Cleanup.\n for (let i in this.lineLinks) {\n if (this.lineLinks[i][line]) {\n if (\n this.lineLinks[i][line].start == 0 &&\n this.lineLinks[i][line].end == 0\n ) {\n // Object not connected to a line.\n delete this.lineLinks[i][line];\n\n if (Object.keys(this.lineLinks[i]).length === 0) {\n delete this.lineLinks[i];\n }\n }\n }\n }\n } catch (error) {\n console.error(error);\n }\n }\n\n /**\n * Updates lines connected to this item.\n *\n * @param item Item moved.\n * @param newPosition New location for item.\n * @param oldPosition Old location for item.\n * @param save Save to ajax or not.\n */\n protected updateLinesConnected(item: ItemProps, to: Position, save: boolean) {\n if (this.lineLinks[item.id] == null) {\n return;\n }\n\n Object.keys(this.lineLinks[item.id]).forEach(i => {\n let lineId = parseInt(i);\n const found = this.elementIds.indexOf(lineId);\n if (found === -1) {\n return;\n }\n let line = this.elementsById[lineId] as Line;\n if (line.props) {\n let startX = line.props.startPosition.x;\n let startY = line.props.startPosition.y;\n let endX = line.props.endPosition.x;\n let endY = line.props.endPosition.y;\n\n if (item.id == this.lineLinks[item.id][lineId][\"start\"]) {\n startX = to.x + item.width / 2;\n startY = to.y + item.height / 2;\n }\n\n if (item.id == this.lineLinks[item.id][lineId][\"end\"]) {\n endX = to.x + item.width / 2;\n endY = to.y + item.height / 2;\n }\n\n // Update line movement.\n this.updateElement({\n ...line.props,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n\n if (save) {\n let debouncedLinePositionSave = debounce(\n 500,\n (options: AnyObject) => {\n this.lineMovedEventManager.emit({\n item: options.line,\n startPosition: {\n x: options.startX,\n y: options.startY\n },\n endPosition: {\n x: options.endX,\n y: options.endY\n }\n });\n }\n );\n\n // Save line positon.\n debouncedLinePositionSave({\n line: line,\n startX: startX,\n startY: startY,\n endX: endX,\n endY: endY\n });\n }\n }\n });\n\n // Update parents...\n this.buildRelations(item.id, to.x + item.width / 2, to.y + item.height / 2);\n }\n\n public constructor(\n container: HTMLElement,\n props: AnyObject,\n items: AnyObject[]\n ) {\n this.containerRef = container;\n this._props = visualConsolePropsDecoder(props);\n\n // Force the first render.\n this.render();\n\n // Sort by id ASC\n items = items.sort(function(a, b) {\n if (a.id == null || b.id == null) return 0;\n else if (a.id > b.id) return 1;\n else return -1;\n });\n\n // Initialize the items.\n items.forEach(item => this.addElement(item, this));\n\n // Create lines.\n this.buildRelations();\n\n // Re-attach all connected lines if any.\n this.elements.forEach(item => {\n if (item instanceof Line) {\n this.refreshLink(item);\n }\n });\n\n this.containerRef.addEventListener(\"click\", this.handleContainerClick);\n }\n\n /**\n * Public accessor of the `elements` property.\n * @return Properties.\n */\n public get elements(): Item[] {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n return this.elementIds\n .map(id => this.elementsById[id])\n .filter(_ => _ != null) as Item[];\n }\n\n /**\n * To create a new element add it to the DOM.\n * @param item. Raw representation of the item's data.\n */\n public addElement(item: AnyObject, context: this = this) {\n try {\n const itemInstance = itemInstanceFrom(item);\n // Add the item to the list.\n context.elementsById[itemInstance.props.id] = itemInstance;\n context.elementIds.push(itemInstance.props.id);\n // Item event handlers.\n itemInstance.onRemove(context.handleElementRemove);\n itemInstance.onSelectionChanged(context.handleElementSelectionChanged);\n itemInstance.onClick(context.handleElementClick);\n itemInstance.onDblClick(context.handleElementDblClick);\n\n // TODO:Continue\n if (itemInstance instanceof Line) {\n itemInstance.onLineMovementFinished(\n context.handleLineElementMovementFinished\n );\n this.refreshLink(itemInstance);\n } else {\n itemInstance.onMoved(context.handleElementMovement);\n itemInstance.onMovementFinished(context.handleElementMovementFinished);\n itemInstance.onResized(context.handleElementResizement);\n itemInstance.onResizeFinished(context.handleElementResizementFinished);\n }\n\n // Add the item to the DOM.\n context.containerRef.append(itemInstance.elementRef);\n return itemInstance;\n } catch (error) {\n console.error(\"Error creating a new element:\", error.message);\n }\n return;\n }\n\n /**\n * Public setter of the `elements` property.\n * @param items.\n */\n public updateElements(items: AnyObject[]): void {\n // Ensure the type cause Typescript doesn't know the filter removes null items.\n const itemIds = items\n .map(item => item.id || null)\n .filter(id => id != null) as number[];\n // Get the elements we should delete.\n const deletedIds = this.elementIds.filter(id => itemIds.indexOf(id) < 0);\n // Delete the elements.\n deletedIds.forEach(id => {\n if (this.elementsById[id] != null) {\n this.elementsById[id].remove();\n delete this.elementsById[id];\n }\n });\n // Replace the element ids.\n this.elementIds = itemIds;\n\n // Initialize the items.\n items.forEach(item => {\n if (item.id) {\n if (this.elementsById[item.id] == null) {\n // New item.\n this.addElement(item);\n } else {\n // Update item.\n try {\n this.elementsById[item.id].props = decodeProps(item);\n } catch (error) {\n console.error(\"Error updating an element:\", error.message);\n }\n }\n }\n });\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public setter of the `element` property.\n * @param item.\n */\n public updateElement(item: AnyObject): void {\n // Update item.\n try {\n this.elementsById[item.id].props = {\n ...decodeProps(item)\n };\n } catch (error) {\n console.error(\"Error updating element:\", error.message);\n }\n\n // Re-build relations.\n this.buildRelations();\n }\n\n /**\n * Public accessor of the `props` property.\n * @return Properties.\n */\n public get props(): VisualConsoleProps {\n return { ...this._props }; // Return a copy.\n }\n\n /**\n * Public setter of the `props` property.\n * If the new props are different enough than the\n * stored props, a render would be fired.\n * @param newProps\n */\n public set props(newProps: VisualConsoleProps) {\n const prevProps = this.props;\n // Update the internal props.\n this._props = newProps;\n\n // From this point, things which rely on this.props can access to the changes.\n\n // Re-render.\n this.render(prevProps);\n }\n\n /**\n * Recreate or update the HTMLElement which represents the Visual Console into the DOM.\n * @param prevProps If exists it will be used to only DOM updates instead of a full replace.\n */\n public render(prevProps: VisualConsoleProps | null = null): void {\n if (prevProps) {\n if (prevProps.backgroundURL !== this.props.backgroundURL) {\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n }\n if (this.props.backgroundColor != null)\n if (prevProps.backgroundColor !== this.props.backgroundColor) {\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n }\n if (this.sizeChanged(prevProps, this.props)) {\n this.resizeElement(this.props.width, this.props.height);\n }\n } else {\n if (this.props.backgroundURL)\n this.containerRef.style.backgroundImage =\n this.props.backgroundURL !== null\n ? `url(${this.props.backgroundURL})`\n : \"\";\n\n if (this.props.backgroundColor)\n this.containerRef.style.backgroundColor = this.props.backgroundColor;\n this.resizeElement(this.props.width, this.props.height);\n }\n }\n\n /**\n * Compare the previous and the new size and return\n * a boolean value in case the size changed.\n * @param prevSize\n * @param newSize\n * @return Whether the size changed or not.\n */\n public sizeChanged(prevSize: Size, newSize: Size): boolean {\n return (\n prevSize.width !== newSize.width || prevSize.height !== newSize.height\n );\n }\n\n /**\n * Resize the DOM container.\n * @param width\n * @param height\n */\n public resizeElement(width: number, height: number): void {\n this.containerRef.style.width = `${width}px`;\n this.containerRef.style.height = `${height}px`;\n }\n\n /**\n * Update the size into the properties and resize the DOM container.\n * @param width\n * @param height\n */\n public resize(width: number, height: number): void {\n this.props = {\n ...this.props, // Object spread: http://es6-features.org/#SpreadOperator\n width,\n height\n };\n }\n\n /**\n * To remove the event listeners and the elements from the DOM.\n */\n public remove(): void {\n this.disposables.forEach(d => d.dispose()); // Arrow function.\n this.elements.forEach(e => e.remove()); // Arrow function.\n this.elementsById = {};\n this.elementIds = [];\n // Clear relations.\n this.clearRelations();\n // Remove the click event listener.\n this.containerRef.removeEventListener(\"click\", this.handleContainerClick);\n // Clean container.\n this.containerRef.innerHTML = \"\";\n }\n\n /**\n * Create line elements which connect the elements with their parents.\n *\n * When itemId is being moved, overwrite position of the 'parent' or 'child'\n * endpoints of the line, using X and Y values.\n */\n public buildRelations(itemId?: number, x?: number, y?: number): void {\n // Clear relations.\n this.clearRelations();\n // Add relations.\n this.elements.forEach(item => {\n if (item.props.parentId !== null) {\n const parent = this.elementsById[item.props.parentId];\n const child = this.elementsById[item.props.id];\n\n if (parent && child) {\n if (itemId != undefined) {\n if (item.props.parentId == itemId) {\n // Update parent line position.\n this.addRelationLine(parent, child, x, y);\n } else if (item.props.id == itemId) {\n // Update child line position.\n this.addRelationLine(parent, child, undefined, undefined, x, y);\n } else {\n this.addRelationLine(parent, child);\n }\n } else {\n // No movements default behaviour.\n this.addRelationLine(parent, child);\n }\n }\n }\n });\n }\n\n /**\n * @param itemId Optional identifier of a parent or child item.\n * Remove the line elements which connect the elements with their parents.\n */\n private clearRelations(itemId?: number): void {\n if (itemId != null) {\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n } else {\n for (let key in this.relations) {\n this.relations[key].remove();\n delete this.relations[key];\n }\n }\n }\n\n /**\n * Retrieve the line element which represent the relation between items.\n * @param parentId Identifier of the parent item.\n * @param childId Itentifier of the child item.\n * @return The line element or nothing.\n */\n private getRelationLine(parentId: number, childId: number): Line | null {\n const identifier = `${parentId}|${childId}`;\n return this.relations[identifier] || null;\n }\n\n // TODO: Document.\n private getItemRelations(\n itemId: number\n ): {\n parentId: number;\n childId: number;\n line: Line;\n }[] {\n const itemRelations = [];\n\n for (let key in this.relations) {\n const ids = key.split(\"|\");\n const parentId = Number.parseInt(ids[0]);\n const childId = Number.parseInt(ids[1]);\n\n if (itemId === parentId || itemId === childId) {\n itemRelations.push({\n parentId,\n childId,\n line: this.relations[key]\n });\n }\n }\n\n return itemRelations;\n }\n\n /**\n * Retrieve the visual center of the item. It's ussually the center of the\n * content, like the label doesn't exist.\n * @param position Initial position.\n * @param element Element we want to use.\n */\n private getVisualCenter(\n position: Position,\n element: Item\n ): Position {\n let x = position.x + element.elementRef.clientWidth / 2;\n let y = position.y + element.elementRef.clientHeight / 2;\n if (\n typeof element.props.label !== \"undefined\" ||\n element.props.label !== \"\" ||\n element.props.label !== null\n ) {\n switch (element.props.labelPosition) {\n case \"up\":\n y =\n position.y +\n (element.elementRef.clientHeight +\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"down\":\n y =\n position.y +\n (element.elementRef.clientHeight -\n element.labelElementRef.clientHeight) /\n 2;\n break;\n case \"right\":\n x =\n position.x +\n (element.elementRef.clientWidth -\n element.labelElementRef.clientWidth) /\n 2;\n break;\n case \"left\":\n x =\n position.x +\n (element.elementRef.clientWidth +\n element.labelElementRef.clientWidth) /\n 2;\n break;\n }\n }\n return { x, y };\n }\n\n /**\n * Add a new line item to represent a relation between the items.\n * @param parent Parent item.\n * @param child Child item.\n * @return Whether the line was added or not.\n */\n private addRelationLine(\n parent: Item,\n child: Item,\n parentX?: number,\n parentY?: number,\n childX?: number,\n childY?: number\n ): Line {\n const identifier = `${parent.props.id}|${child.props.id}`;\n if (this.relations[identifier] != null) {\n this.relations[identifier].remove();\n }\n\n // Get the items center.\n let { x: startX, y: startY } = this.getVisualCenter(parent.props, parent);\n let { x: endX, y: endY } = this.getVisualCenter(child.props, child);\n\n // Overwrite positions if needed (while moving it!).\n if (parentX != null) {\n startX = parentX;\n }\n\n if (parentY != null) {\n startY = parentY;\n }\n\n if (childX != null) {\n endX = childX;\n }\n\n if (childY != null) {\n endY = childY;\n }\n\n // Line inherits child element status.\n const line = new Line(\n linePropsDecoder({\n id: 0,\n type: ItemType.LINE_ITEM,\n startX,\n startY,\n endX,\n endY,\n width: 0,\n height: 0,\n lineWidth: this.props.relationLineWidth,\n color: notEmptyStringOr(child.props.colorStatus, \"#CCC\")\n }),\n itemMetaDecoder({\n receivedAt: new Date()\n })\n );\n // Save a reference to the line item.\n this.relations[identifier] = line;\n\n // Add the line to the DOM.\n line.elementRef.style.zIndex = \"0\";\n this.containerRef.append(line.elementRef);\n\n return line;\n }\n\n /**\n * Add an event handler to the click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is clicked.\n */\n public onItemClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.clickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the double click of the linked visual console elements.\n * @param listener Function which is going to be executed when a linked console is double clicked.\n */\n public onItemDblClick(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.dblClickEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.movedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the movement of the visual console line elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onLineMoved(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.lineMovedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the resizement of the visual console elements.\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemResized(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.resizedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Add an event handler to the elements selection change of the visual console .\n * @param listener Function which is going to be executed when a linked console is moved.\n */\n public onItemSelectionChanged(\n listener: Listener\n ): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.selectionChangedEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n\n /**\n * Enable the edition mode.\n */\n public enableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: true };\n });\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Disable the edition mode.\n */\n public disableEditMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, editMode: false };\n });\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Enable the maintenance mode.\n */\n public enableMaintenanceMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, maintenanceMode: true };\n });\n this.containerRef.classList.add(\"is-maintenance\");\n this.containerRef.classList.remove(\"is-editing\");\n }\n\n /**\n * Disable the maintenance mode.\n */\n public disableMaintenanceMode(): void {\n this.elements.forEach(item => {\n item.meta = { ...item.meta, maintenanceMode: false };\n });\n this.containerRef.classList.remove(\"is-maintenance\");\n this.containerRef.classList.add(\"is-editing\");\n }\n\n /**\n * Select an item.\n * @param itemId Item Id.\n * @param unique To remove the selection of other items or not.\n */\n public selectItem(itemId: number, unique: boolean = false): void {\n if (unique) {\n this.elementIds.forEach(currentItemId => {\n const meta = this.elementsById[currentItemId].meta;\n\n if (currentItemId !== itemId && meta.isSelected) {\n this.elementsById[currentItemId].unSelectItem();\n } else if (currentItemId === itemId && !meta.isSelected) {\n this.elementsById[currentItemId].selectItem();\n }\n });\n } else if (this.elementsById[itemId]) {\n this.elementsById[itemId].selectItem();\n }\n }\n\n /**\n * Unselect an item.\n * @param itemId Item Id.\n */\n public unSelectItem(itemId: number): void {\n if (this.elementsById[itemId]) {\n const meta = this.elementsById[itemId].meta;\n\n if (meta.isSelected) {\n this.elementsById[itemId].unSelectItem();\n }\n }\n }\n\n /**\n * Unselect all items.\n */\n public unSelectItems(): void {\n this.elementIds.forEach(itemId => {\n if (this.elementsById[itemId]) {\n this.elementsById[itemId].unSelectItem();\n }\n });\n }\n\n // TODO: Document.\n public static items = {\n [ItemType.STATIC_GRAPH]: StaticGraph,\n [ItemType.MODULE_GRAPH]: ModuleGraph,\n [ItemType.SIMPLE_VALUE]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MAX]: SimpleValue,\n [ItemType.SIMPLE_VALUE_MIN]: SimpleValue,\n [ItemType.SIMPLE_VALUE_AVG]: SimpleValue,\n [ItemType.PERCENTILE_BAR]: Percentile,\n [ItemType.PERCENTILE_BUBBLE]: Percentile,\n [ItemType.CIRCULAR_PROGRESS_BAR]: Percentile,\n [ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR]: Percentile,\n [ItemType.LABEL]: Label,\n [ItemType.ICON]: Icon,\n [ItemType.SERVICE]: Service,\n [ItemType.GROUP_ITEM]: Group,\n [ItemType.BOX_ITEM]: Box,\n [ItemType.LINE_ITEM]: Line,\n [ItemType.AUTO_SLA_GRAPH]: EventsHistory,\n [ItemType.DONUT_GRAPH]: DonutGraph,\n [ItemType.BARS_GRAPH]: BarsGraph,\n [ItemType.CLOCK]: Clock,\n [ItemType.COLOR_CLOUD]: ColorCloud,\n [ItemType.NETWORK_LINK]: NetworkLink,\n [ItemType.ODOMETER]: Odometer,\n [ItemType.BASIC_CHART]: BasicChart\n };\n\n /**\n * Relying type item and srcimg and agent and module\n * name convert name item representative.\n *\n * @param item Instance item from extract name.\n *\n * @return Name item.\n */\n public static itemDescriptiveName(item: Item): string {\n let text: string;\n switch (item.props.type) {\n case ItemType.STATIC_GRAPH:\n text = `${t(\"Static graph\")} - ${(item as StaticGraph).props.imageSrc}`;\n break;\n case ItemType.MODULE_GRAPH:\n text = t(\"Module graph\");\n break;\n case ItemType.CLOCK:\n text = t(\"Clock\");\n break;\n case ItemType.BARS_GRAPH:\n text = t(\"Bars graph\");\n break;\n case ItemType.AUTO_SLA_GRAPH:\n text = t(\"Event history graph\");\n break;\n case ItemType.PERCENTILE_BAR:\n text = t(\"Percentile bar\");\n break;\n case ItemType.CIRCULAR_PROGRESS_BAR:\n text = t(\"Circular progress bar\");\n break;\n case ItemType.CIRCULAR_INTERIOR_PROGRESS_BAR:\n text = t(\"Circular progress bar (interior)\");\n break;\n case ItemType.SIMPLE_VALUE:\n text = t(\"Simple Value\");\n break;\n case ItemType.LABEL:\n text = t(\"Label\");\n break;\n case ItemType.GROUP_ITEM:\n text = t(\"Group\");\n break;\n case ItemType.COLOR_CLOUD:\n text = t(\"Color cloud\");\n break;\n case ItemType.ICON:\n text = `${t(\"Icon\")} - ${(item as Icon).props.imageSrc}`;\n break;\n case ItemType.ODOMETER:\n text = t(\"Odometer\");\n break;\n case ItemType.BASIC_CHART:\n text = t(\"BasicChart\");\n break;\n default:\n text = t(\"Item\");\n break;\n }\n\n const linkedAgentAndModuleProps = item.props as Partial;\n if (\n linkedAgentAndModuleProps.agentAlias != null &&\n linkedAgentAndModuleProps.moduleName != null\n ) {\n text += ` (${ellipsize(\n linkedAgentAndModuleProps.agentAlias,\n 18\n )} - ${ellipsize(linkedAgentAndModuleProps.moduleName, 25)})`;\n } else if (linkedAgentAndModuleProps.agentAlias != null) {\n text += ` (${ellipsize(linkedAgentAndModuleProps.agentAlias, 25)})`;\n }\n\n return text;\n }\n}\n","import TypedEvent, { Disposable, Listener } from \"./TypedEvent\";\n\ninterface Cancellable {\n cancel(): void;\n}\n\ntype AsyncTaskStatus = \"waiting\" | \"started\" | \"cancelled\" | \"finished\";\ntype AsyncTaskInitiator = (done: () => void) => Cancellable;\n\n/**\n * Defines an async task which can be started and cancelled.\n * It's possible to observe the status changes of the task.\n */\nclass AsyncTask {\n private readonly taskInitiator: AsyncTaskInitiator;\n private cancellable: Cancellable = { cancel: () => {} };\n private _status: AsyncTaskStatus = \"waiting\";\n\n // Event manager for status change events.\n private readonly statusChangeEventManager = new TypedEvent();\n // List of references to clean the event listeners.\n private readonly disposables: Disposable[] = [];\n\n public constructor(taskInitiator: AsyncTaskInitiator) {\n this.taskInitiator = taskInitiator;\n }\n\n /**\n * Public setter of the `status` property.\n * @param status.\n */\n public set status(status: AsyncTaskStatus) {\n this._status = status;\n this.statusChangeEventManager.emit(status);\n }\n\n /**\n * Public accessor of the `status` property.\n * @return status.\n */\n public get status() {\n return this._status;\n }\n\n /**\n * Start the async task.\n */\n public init(): void {\n this.cancellable = this.taskInitiator(() => {\n this.status = \"finished\";\n });\n this.status = \"started\";\n }\n\n /**\n * Cancel the async task.\n */\n public cancel(): void {\n this.cancellable.cancel();\n this.status = \"cancelled\";\n }\n\n /**\n * Add an event handler to the status change.\n * @param listener Function which is going to be executed when the status changes.\n */\n public onStatusChange(listener: Listener): Disposable {\n /*\n * The '.on' function returns a function which will clean the event\n * listener when executed. We store all the 'dispose' functions to\n * call them when the item should be cleared.\n */\n const disposable = this.statusChangeEventManager.on(listener);\n this.disposables.push(disposable);\n\n return disposable;\n }\n}\n\n/**\n * Wrap an async task into another which will execute that task indefinitely\n * every time the tash finnish and the chosen period ends.\n * Will last until cancellation.\n *\n * @param task Async task to execute.\n * @param period Time in milliseconds to wait until the next async esecution.\n *\n * @return A new async task.\n */\nfunction asyncPeriodic(task: AsyncTask, period: number): AsyncTask {\n return new AsyncTask(() => {\n let ref: number | null = null;\n\n task.onStatusChange(status => {\n if (status === \"finished\") {\n ref = window.setTimeout(() => {\n task.init();\n }, period);\n }\n });\n\n task.init();\n\n return {\n cancel: () => {\n if (ref) clearTimeout(ref);\n task.cancel();\n }\n };\n });\n}\n\n/**\n * Manages a list of async tasks.\n */\nexport default class AsyncTaskManager {\n private tasks: { [identifier: string]: AsyncTask } = {};\n\n /**\n * Adds an async task to the manager.\n *\n * @param identifier Unique identifier.\n * @param taskInitiator Function to initialize the async task.\n * Should return a structure to cancel the task.\n * @param period Optional period to repeat the task indefinitely.\n */\n public add(\n identifier: string,\n taskInitiator: AsyncTaskInitiator,\n period: number = 0\n ): AsyncTask {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n\n const asyncTask =\n period > 0\n ? asyncPeriodic(new AsyncTask(taskInitiator), period)\n : new AsyncTask(taskInitiator);\n\n this.tasks[identifier] = asyncTask;\n\n return this.tasks[identifier];\n }\n\n /**\n * Starts an async task.\n *\n * @param identifier Unique identifier.\n */\n public init(identifier: string) {\n if (\n this.tasks[identifier] &&\n (this.tasks[identifier].status === \"waiting\" ||\n this.tasks[identifier].status === \"cancelled\" ||\n this.tasks[identifier].status === \"finished\")\n ) {\n this.tasks[identifier].init();\n }\n }\n\n /**\n * Cancel a running async task.\n *\n * @param identifier Unique identifier.\n */\n public cancel(identifier: string) {\n if (this.tasks[identifier] && this.tasks[identifier].status === \"started\") {\n this.tasks[identifier].cancel();\n }\n }\n}\n","/*\n * Useful resources.\n * http://es6-features.org/\n * http://exploringjs.com/es6\n * https://www.typescriptlang.org/\n */\n\nimport \"./main.css\"; // CSS import.\nimport VisualConsole from \"./VisualConsole\";\nimport * as Form from \"./Form\";\nimport AsyncTaskManager from \"./lib/AsyncTaskManager\";\n\n// Export the VisualConsole class to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole = VisualConsole;\n\n// Export the VisualConsole's Form classes to the global object.\n// eslint-disable-next-line\n(window as any).VisualConsole.Form = Form;\n\n// Export the AsyncTaskManager class to the global object.\n// eslint-disable-next-line\n(window as any).AsyncTaskManager = AsyncTaskManager;\n"],"sourceRoot":""} \ No newline at end of file diff --git a/pandora_console/index.php b/pandora_console/index.php index d3fda4f24d..b3e9d76b11 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -546,6 +546,7 @@ if (isset($config['id_user']) === false) { if ((!isset($double_auth_success) || !$double_auth_success) && is_double_auth_enabled($nick_in_db) + && (bool) $config['double_auth_enabled'] === true ) { // Store this values in the session to know if the user login // was correct. diff --git a/pandora_console/install.php b/pandora_console/install.php index dd63ef5f09..0047ad1376 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    '.__('No').''; } else { @@ -1068,7 +1068,7 @@ class Events $filters['id_agent'] = $this->id_agent; } - $filters['group_rep'] = 1; + $filters['group_rep'] = EVENT_GROUP_REP_EVENTS; if (isset($this->limit) === true && $this->limit !== -1 diff --git a/pandora_console/mobile/operation/visualmap.php b/pandora_console/mobile/operation/visualmap.php index 5ec1f6f25b..237d2772ff 100644 --- a/pandora_console/mobile/operation/visualmap.php +++ b/pandora_console/mobile/operation/visualmap.php @@ -358,6 +358,7 @@ class Visualmap 'uniq' => $uniq, 'mobile' => true, 'vcId' => $visualConsoleId, + 'id_user' => $config['id_user'], 'mobile_view_orientation_vc' => (bool) !$config['mobile_view_orientation_vc'], ] ); diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index cf7c6b9a54..e95f16b355 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -84,7 +84,7 @@ ui_require_javascript_file('pandora_events'); $default_filter = [ 'status' => EVENT_NO_VALIDATED, 'event_view_hr' => $config['event_view_hr'], - 'group_rep' => 1, + 'group_rep' => EVENT_GROUP_REP_EVENTS, 'tag_with' => [], 'tag_without' => [], 'history' => false, @@ -360,6 +360,10 @@ if (is_ajax() === true) { $order['field'] = 'agent_name'; break; + case 'if(te.ack_utimestamp > 0, from_unixtime(te.ack_utimestamp),"") as ack_utimestamp': + $order['field'] = 'ack_utimestamp'; + break; + default: $order['field'] = $field; break; @@ -1445,7 +1449,7 @@ if ($pure) { ).''; // If the user has administrator permission display manage tab. - if ($event_w || $event_m) { + if ($event_w === true || $event_m === true) { // Manage events. $manage_events['active'] = false; $manage_events['text'] = ''.html_print_image( @@ -1665,9 +1669,10 @@ $inputs[] = $in; // Duplicates group { events | agents }. $data = html_print_select( [ - 0 => __('All events'), - 1 => __('Group events'), - 2 => __('Group agents'), + EVENT_GROUP_REP_ALL => __('All events'), + EVENT_GROUP_REP_EVENTS => __('Group events'), + EVENT_GROUP_REP_AGENTS => __('Group agents'), + EVENT_GROUP_REP_EXTRAIDS => __('Group extra id'), ], 'group_rep', $group_rep, @@ -1771,7 +1776,7 @@ $buttons[] = [ 'onclick' => '', ]; -if ($event_w || $event_m) { +if ($event_w === true || $event_m === true) { $buttons[] = [ 'id' => 'save-filter', 'class' => 'float-left margin-right-2 sub wand', @@ -2300,12 +2305,14 @@ try { $active_filters_div .= '
    '; $active_filters_div .= '
    '.__('Duplicated').'
    '; $active_filters_div .= '
    '; - if ($group_rep == 0) { + if ($group_rep == EVENT_GROUP_REP_ALL) { $active_filters_div .= __('All events.'); - } else if ($group_rep == 1) { + } else if ($group_rep == EVENT_GROUP_REP_EVENTS) { $active_filters_div .= __('Group events'); - } else if ($group_rep == 2) { + } else if ($group_rep == EVENT_GROUP_REP_AGENTS) { $active_filters_div .= __('Group agents.'); + } else if ($group_rep == EVENT_GROUP_REP_EXTRAIDS) { + $active_filters_div .= __('Group extra id.'); } $active_filters_div .= '
    '; @@ -2395,6 +2402,16 @@ if (is_user_admin($config['id_user'])) { ); } +$array_events_actions = []; +if ($event_w === true && $readonly === false) { + $array_events_actions['in_progress_selected'] = __('In progress selected'); + $array_events_actions['validate_selected'] = __('Validate selected'); +} + +if ($event_m === true && $readonly === false) { + $array_events_actions['delete_selected'] = __('Delete selected'); +} + foreach ($event_responses as $val) { $array_events_actions[$val['id']] = $val['name']; } diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index fb303dd3fa..326eecf73f 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -410,7 +410,7 @@ if ($access_console_node === true) { $user_event_filter = [ 'status' => EVENT_NO_VALIDATED, 'event_view_hr' => $config['event_view_hr'], - 'group_rep' => 1, + 'group_rep' => EVENT_GROUP_REP_EVENTS, 'tag_with' => [], 'tag_without' => [], 'history' => false, diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index a42fe2e8bc..cabbea8593 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -211,7 +211,7 @@ if (isset($_GET['modified']) && !$view_mode) { $user_info = $upd_info; } else { if (!$error_msg) { - $error_msg = __('Error updating passwords: '); + $error_msg = __('Error updating passwords: ').($config['auth_error'] ?? ''); } $user_auth_error = $config['auth_error']; @@ -425,7 +425,7 @@ $timezone .= html_print_timezone_select('timezone', $user_info['timezone']).''; if (($config['2FA_all_users'] == '' && !$double_auth_enabled) || ($config['2FA_all_users'] != '' && !$double_auth_enabled) @@ -437,9 +437,6 @@ if ($config['double_auth_enabled'] || ($config['double_auth_enabled'] == '' && $ // Dialog. $double_authentication .= ''; -} - -if ($double_auth_enabled && $config['double_auth_enabled']) { $double_authentication .= html_print_button(__('Show information'), 'show_info', false, 'javascript:show_double_auth_info();', '', true); } @@ -1166,7 +1163,7 @@ function show_double_auth_activation () { resizable: true, draggable: true, modal: true, - title: "", + title: "", overlay: { opacity: 0.5, background: "black" @@ -1242,7 +1239,7 @@ function show_double_auth_deactivation () { resizable: true, draggable: true, modal: true, - title: "", + title: "", overlay: { opacity: 0.5, background: "black" diff --git a/pandora_console/operation/visual_console/public_view.php b/pandora_console/operation/visual_console/public_view.php index 173fa76083..10ea78fa3b 100644 --- a/pandora_console/operation/visual_console/public_view.php +++ b/pandora_console/operation/visual_console/public_view.php @@ -281,6 +281,12 @@ $visualConsoleItems = VisualConsole::getItemsFromDB( "" ); + if(props.maintenanceMode != null) { + if(props.maintenanceMode.user !== '') { + visualConsoleManager.visualConsole.enableMaintenanceMode(); + } + } + var controls = document.getElementById('vc-controls'); autoHideElement(controls, 1000); diff --git a/pandora_console/operation/visual_console/view.php b/pandora_console/operation/visual_console/view.php index 9611c99dbb..d4a5991339 100644 --- a/pandora_console/operation/visual_console/view.php +++ b/pandora_console/operation/visual_console/view.php @@ -33,7 +33,6 @@ global $config; check_login(); require_once $config['homedir'].'/vendor/autoload.php'; -// TODO: include file functions. require_once $config['homedir'].'/include/functions_visual_map.php'; @@ -103,6 +102,9 @@ $aclRead = (bool) check_acl_restricted_all($config['id_user'], $groupId, 'VR') $aclWrite = (bool) check_acl_restricted_all($config['id_user'], $groupId, 'VW'); $aclManage = (bool) check_acl_restricted_all($config['id_user'], $groupId, 'VM'); +// Maintenance Mode. +$maintenanceMode = $visualConsoleData['maintenanceMode']; + if ($aclRead === false && $aclWrite === false && $aclManage === false) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, @@ -398,18 +400,54 @@ if ($pure === false) { echo '
    '; if ($aclWrite === true || $aclManage === true) { - if (!is_metaconsole()) { - echo '
    '.html_print_image( + echo '
    '; + if (is_metaconsole() === false) { + echo ''; } - echo html_print_checkbox_switch('edit-mode', 1, false, true); + $disabled_edit_mode = false; + if ($aclManage === true) { + $value_maintenance_mode = true; + if ($maintenanceMode === null) { + $value_maintenance_mode = false; + } else { + if ($maintenanceMode['user'] !== $config['id_user']) { + $disabled_edit_mode = true; + } + } + + echo '
    '; + echo html_print_label( + __('Maintenance'), + 'maintenance-mode', + true + ); + echo html_print_checkbox_switch( + 'maintenance-mode', + 1, + $value_maintenance_mode, + true + ); + echo '
    '; + } + + echo '
    '; + echo html_print_label(__('Edit'), 'edit-mode', true); + echo html_print_checkbox_switch('edit-mode', 1, false, true, $disabled_edit_mode); + echo '
    '; + echo '
    '; } echo '
    '; @@ -661,6 +699,18 @@ ui_require_css_file('form'); window.history.replaceState({}, document.title, href); } } + + if(newProps.maintenanceMode != null) { + $('input[name=maintenance-mode]').prop('checked', true); + if(newProps.maintenanceMode.user !== '') { + $('input[name=edit-mode]').prop('disabled', true); + } else { + $('input[name=edit-mode]').prop('disabled', false); + } + } else { + $('input[name=maintenance-mode]').prop('checked', false); + $('input[name=edit-mode]').prop('disabled', false); + } } // Add the datetime when the item was received. @@ -676,26 +726,88 @@ ui_require_css_file('form'); items, baseUrl, , - handleUpdate + handleUpdate, + false, + undefined, + '', ); + if(props.maintenanceMode != null) { + if(props.maintenanceMode.user !== '') { + visualConsoleManager.visualConsole.enableMaintenanceMode(); + } + } + // Enable/disable the edition mode. $('input[name=edit-mode]').change(function(event) { + var maintenanceMode = visualConsoleManager.visualConsole.props.maintenanceMode; if ($(this).prop('checked')) { visualConsoleManager.visualConsole.enableEditMode(); visualConsoleManager.changeUpdateInterval(0); - $('#force_check').hide(); $('#edit-controls').css('visibility', ''); } else { visualConsoleManager.visualConsole.disableEditMode(); visualConsoleManager.visualConsole.unSelectItems(); visualConsoleManager.changeUpdateInterval(); // To ms. $('#edit-controls').css('visibility', 'hidden'); - $('#force_check').show(); } + + resetInterval(); + }); + + // Enable/disable the maintenance mode. + $('input[name=maintenance-mode]').click(function(event) { + event.preventDefault(); + const idVisualConsole = ''; + const mode = ($(this).prop('checked') === true) ? 1 : 0; + + var maintenanceMode = visualConsoleManager.visualConsole.props.maintenanceMode; + var msg = ''; + if(maintenanceMode == null) { + msg = ''; + msg += '?'; + } else if (maintenanceMode.user === '') { + msg += ''; + msg += '?'; + } else { + msg = ''; + msg += ' ' + '' + maintenanceMode.timestamp + ''; + msg += ' ' + ''; + msg += ' ' + maintenanceMode.user; + msg += '. ' + ''; + msg += '?'; + } + + confirmDialog({ + title: '', + message: msg, + onAccept: function() { + $.ajax({ + type: "POST", + url: "ajax.php", + dataType: "json", + data: { + page: "include/ajax/visual_console.ajax", + update_maintanance_mode: true, + idVisualConsole: idVisualConsole, + mode: mode + }, + success: function (data) { + if(data.result) { + $('input[name=maintenance-mode]').prop('checked', mode); + $('input[name=maintenance-mode]').trigger('change'); + resetInterval(); + } + }, + error: function (err) { + console.error(err); + } + }); + } + }); }); ); + visualConsoleManager.forceUpdateVisualConsole(); } /** diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec index 8791c52dff..ccc8073004 100644 --- a/pandora_console/pandora_console.redhat.spec +++ b/pandora_console/pandora_console.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_console %define version 7.0NG.765 -%define release 221021 +%define release 221102 # User and Group under which Apache is running %define httpd_name httpd diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec index 5d13a36ffb..0d41b19d06 100644 --- a/pandora_console/pandora_console.rhel7.spec +++ b/pandora_console/pandora_console.rhel7.spec @@ -3,7 +3,7 @@ # %define name pandorafms_console %define version 7.0NG.765 -%define release 221021 +%define release 221102 # User and Group under which Apache is running %define httpd_name httpd diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec index 407a16c9bc..f2f984fb12 100644 --- a/pandora_console/pandora_console.spec +++ b/pandora_console/pandora_console.spec @@ -3,7 +3,7 @@ # %define name pandorafms_console %define version 7.0NG.765 -%define release 221021 +%define release 221102 %define httpd_name httpd # User and Group under which Apache is running %define httpd_name apache2 diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 85e110e0e1..ba0dcde7da 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -766,7 +766,7 @@ CREATE TABLE IF NOT EXISTS `tgrupo` ( CREATE TABLE IF NOT EXISTS `tcredential_store` ( `identifier` VARCHAR(100) NOT NULL, `id_group` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0, - `product` ENUM('CUSTOM', 'AWS', 'AZURE', 'GOOGLE', 'SAP') DEFAULT 'CUSTOM', + `product` ENUM('CUSTOM', 'AWS', 'AZURE', 'GOOGLE', 'SAP', 'WMI', 'SNMP') DEFAULT 'CUSTOM', `username` TEXT, `password` TEXT, `extra_1` TEXT, @@ -876,6 +876,7 @@ CREATE TABLE IF NOT EXISTS `trecon_task` ( `summary` TEXT, `type` INT NOT NULL DEFAULT 0, `subnet_csv` TINYINT UNSIGNED DEFAULT 0, + `snmp_skip_non_enabled_ifs` TINYINT UNSIGNED DEFAULT 1, PRIMARY KEY (`id_rt`), KEY `recon_task_daemon` (`id_recon_server`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; @@ -1681,6 +1682,7 @@ CREATE TABLE IF NOT EXISTS `tlayout` ( `background_color` VARCHAR(50) NOT NULL DEFAULT '#FFF', `is_favourite` INT UNSIGNED NOT NULL DEFAULT 0, `auto_adjust` INT UNSIGNED NOT NULL DEFAULT 0, + `maintenance_mode` TEXT, PRIMARY KEY(`id`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index bf115e1eba..36ac119769 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -1335,18 +1335,18 @@ UPDATE `tnotification_source` SET `enabled`=1 WHERE `description` = 'System -- INSERT INTO `tlayout` VALUES - (1, 'Demo visual console', 0, 'fondo.jpg', 1080, 1920, 'white', 0, 0), - (2,'Demo visual console 2',0,'fondo-keep-alive.jpg',1080,1920,'#FFF',0, 0), - (3,'Worldmap',0,'map_world.jpg',1080,1920,'white',0, 0), - (4,'Europe',0,'map_europe_1.jpg',1080,1920,'white',0, 0), - (5,'USA',0,'map_USA.jpg',1080,1920,'white',0, 0), - (6,'Spain',0,'map_spain.jpg',1080,1920,'white',0, 0), - (7,'Madrid',0,'map_madrid.jpg',1080,1920,'white',0, 0), - (8,'Germany',0,'map_germany_1.jpg',1080,1920,'white',0, 0), - (9,'France',0,'map_france.jpg',1080,1920,'white',0, 0), - (10,'Catalonia',0,'map_catalonia.jpg',1080,1920,'white',0, 0), - (11,'Basque Country',0,'map_basque-country.jpg',1080,1920,'white',0, 0), - (12,'Andalusia',0,'map_andalusia.jpg',1080,1920,'white',0, 0) + (1, 'Demo visual console', 0, 'fondo.jpg', 1080, 1920, 'white', 0, 0, null), + (2,'Demo visual console 2',0,'fondo-keep-alive.jpg',1080,1920,'#FFF',0, 0, null), + (3,'Worldmap',0,'map_world.jpg',1080,1920,'white',0, 0, null), + (4,'Europe',0,'map_europe_1.jpg',1080,1920,'white',0, 0, null), + (5,'USA',0,'map_USA.jpg',1080,1920,'white',0, 0, null), + (6,'Spain',0,'map_spain.jpg',1080,1920,'white',0, 0, null), + (7,'Madrid',0,'map_madrid.jpg',1080,1920,'white',0, 0, null), + (8,'Germany',0,'map_germany_1.jpg',1080,1920,'white',0, 0, null), + (9,'France',0,'map_france.jpg',1080,1920,'white',0, 0, null), + (10,'Catalonia',0,'map_catalonia.jpg',1080,1920,'white',0, 0, null), + (11,'Basque Country',0,'map_basque-country.jpg',1080,1920,'white',0, 0, null), + (12,'Andalusia',0,'map_andalusia.jpg',1080,1920,'white',0, 0, null) ; -- diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control index c43a723d23..e234bebfb3 100644 --- a/pandora_server/DEBIAN/control +++ b/pandora_server/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-server -Version: 7.0NG.765-221021 +Version: 7.0NG.765-221102 Architecture: all Priority: optional Section: admin diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh index 90a561094c..dae3c16648 100644 --- a/pandora_server/DEBIAN/make_deb_package.sh +++ b/pandora_server/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.765-221021" +pandora_version="7.0NG.765-221102" package_cpan=0 package_pandora=1 diff --git a/pandora_server/NetBSD/tentacle_server b/pandora_server/NetBSD/tentacle_server index d945a134e8..4458237003 100755 --- a/pandora_server/NetBSD/tentacle_server +++ b/pandora_server/NetBSD/tentacle_server @@ -5,7 +5,7 @@ # Tentacle have IANA assigned port tpc/41121 as official port. ########################################################################## # Copyright (c) 2007-2008 Ramon Novoa -# Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2005-2022 Artica Soluciones Tecnologicas S.L # # tentacle_server.pl Tentacle Server. See https://pandorafms.com/docs/ for # protocol description. @@ -1740,6 +1740,19 @@ sub callback_stop { Win32::Daemon::StopService(); } + +################################################################################ +## SUB check_ssleay_version +## Print a message if the installed version of Net::SSLeay may leak memory. +################################################################################ +sub check_ssleay_version { + eval { + require Net::SSLeay; + return unless defined($Net::SSLeay::VERSION) && $Net::SSLeay::VERSION =~ m/^(\d+)\.(\d+)/ && $1 <= 1 && $2 < 88; + print_log ("Net::SSLeay version $Net::SSLeay::VERSION detected. Versions prior to 1.88 may leak memory. To upgrade it see: https://metacpan.org/pod/Net::SSLeay"); + }; +} + ################################################################################ # Main ################################################################################ @@ -1753,12 +1766,20 @@ if ($> == 0 && $^O ne 'MSWin32') { # Parse command line options parse_options (); +# Try to open the log file. +if (defined($log_file)) { + open(my $fh, ">>", $log_file) || die("Error opening the log file '$log_file': $!.\n"); + close($fh); +} + # Check command line arguments if ($#ARGV != -1) { print_help (); exit 1; } +check_ssleay_version() if $t_ssl == 1; + # Show IPv6 status if ($SOCKET_MODULE eq 'IO::Socket::INET') { print_log ("IO::Socket::INET6 is not found. IPv6 is disabled."); diff --git a/pandora_server/bin/tentacle_server b/pandora_server/bin/tentacle_server index feb8ecf9af..4458237003 100755 --- a/pandora_server/bin/tentacle_server +++ b/pandora_server/bin/tentacle_server @@ -5,7 +5,7 @@ # Tentacle have IANA assigned port tpc/41121 as official port. ########################################################################## # Copyright (c) 2007-2008 Ramon Novoa -# Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2005-2022 Artica Soluciones Tecnologicas S.L # # tentacle_server.pl Tentacle Server. See https://pandorafms.com/docs/ for # protocol description. @@ -1766,6 +1766,12 @@ if ($> == 0 && $^O ne 'MSWin32') { # Parse command line options parse_options (); +# Try to open the log file. +if (defined($log_file)) { + open(my $fh, ">>", $log_file) || die("Error opening the log file '$log_file': $!.\n"); + close($fh); +} + # Check command line arguments if ($#ARGV != -1) { print_help (); diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm index 7d8a1ae579..5597de4df6 100644 --- a/pandora_server/lib/PandoraFMS/Config.pm +++ b/pandora_server/lib/PandoraFMS/Config.pm @@ -46,7 +46,7 @@ our @EXPORT = qw( # version: Defines actual version of Pandora Server for this module only my $pandora_version = "7.0NG.765"; -my $pandora_build = "221021"; +my $pandora_build = "221102"; our $VERSION = $pandora_version." ".$pandora_build; # Setup hash diff --git a/pandora_server/lib/PandoraFMS/DB.pm b/pandora_server/lib/PandoraFMS/DB.pm index 9aae480433..7c0716776d 100644 --- a/pandora_server/lib/PandoraFMS/DB.pm +++ b/pandora_server/lib/PandoraFMS/DB.pm @@ -113,6 +113,10 @@ our @EXPORT = qw( get_agentmodule_status_str get_agentmodule_data set_ssl_opts + db_synch_insert + db_synch_update + db_synch_delete + db_synch $RDBMS $RDBMS_QUOTE $RDBMS_QUOTE_STRING @@ -1672,6 +1676,78 @@ sub set_ssl_opts($) { } } +######################################################################## +## Synch insert query with nodes. +######################################################################## +sub db_synch_insert ($$$$$@) { + my ($dbh, $pa_config, $table, $query, $result, @values) = @_; + + my $substr = "\"\%s\""; + $query =~ s/\?/$substr/g; + my $query_string = sprintf($query, @values); + + db_synch($dbh, $pa_config, 'INSERT INTO', $table, $query_string, $result); +} + +######################################################################## +## Synch update query with nodes. +######################################################################## +sub db_synch_update ($$$$$@) { + my ($dbh, $pa_config, $table, $query, $result, @values) = @_; + + my $substr = "\"\%s\""; + $query =~ s/\?/$substr/g; + my $query_string = sprintf($query, @values); + + db_synch($dbh, $pa_config, 'UPDATE', $table, $query_string, $result); +} + +######################################################################## +## Synch delete query with nodes. +######################################################################## +sub db_synch_delete ($$$$@) { + my ($dbh, $pa_config, $table, $result, @parameters) = @_; + + #Build query string. + my $query = $dbh->{Statement}; + + my $substr = "\"\%s\""; + $query =~ s/\?/$substr/g; + + my $query_string = sprintf($query, @parameters); + + db_synch($dbh, $pa_config, 'DELETE FROM', $table, $query_string, $result); +} + +######################################################################## +## Synch queries with nodes. +######################################################################## +sub db_synch ($$$$$$) { + my ($dbh, $pa_config, $type, $table, $query, $result) = @_; + my @nodes = get_db_rows($dbh, 'SELECT * FROM tmetaconsole_setup'); + foreach my $node (@nodes) { + eval { + local $SIG{__DIE__}; + my @values_queue = ( + safe_input($query), + $node->{'id'}, + time(), + $type, + $table, + '', + $result + ); + + my $query_queue = 'INSERT INTO tsync_queue (`sql`, `target`, `utimestamp`, `operation`, `table`, `error`, `result`) VALUES (?, ?, ?, ?, ?, ?, ?)'; + db_insert ($dbh, 'id', $query_queue, @values_queue); + }; + if ($@) { + logger($pa_config, "Error add sync_queue: $@", 10); + return; + } + } +} + # End of function declaration # End of defined Code diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 0d9660b733..e6c42fab34 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -273,6 +273,7 @@ sub data_consumer ($$) { snmp_security_level => $task->{'snmp_security_level'}, snmp_timeout => $task->{'snmp_timeout'}, snmp_version => $task->{'snmp_version'}, + snmp_skip_non_enabled_ifs => $task->{'snmp_skip_non_enabled_ifs'}, subnets => \@subnets, task_id => $task->{'id_rt'}, vlan_cache_enabled => $task->{'vlan_enabled'}, @@ -723,9 +724,12 @@ sub PandoraFMS::Recon::Base::create_interface_modules($$) { foreach my $if_index (@output) { next unless ($if_index =~ /^[0-9]+$/); - # Check the status of the interface. - my $if_status = $self->snmp_get_value($device, "$PandoraFMS::Recon::Base::IFOPERSTATUS.$if_index"); - next unless $if_status == 1; + if ($self->{'task_data'}{'snmp_skip_non_enabled_ifs'} == 1) { + # Check the status of the interface. + my $if_status = $self->snmp_get_value($device, "$PandoraFMS::Recon::Base::IFOPERSTATUS.$if_index"); + + next unless $if_status == 1; + } # Fill the module description with the IP and MAC addresses. my $mac = $self->get_if_mac($device, $if_index); diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm index 49bad52416..7f48666961 100644 --- a/pandora_server/lib/PandoraFMS/PluginTools.pm +++ b/pandora_server/lib/PandoraFMS/PluginTools.pm @@ -34,7 +34,7 @@ our @ISA = qw(Exporter); # version: Defines actual version of Pandora Server for this module only my $pandora_version = "7.0NG.765"; -my $pandora_build = "221021"; +my $pandora_build = "221102"; our $VERSION = $pandora_version." ".$pandora_build; our %EXPORT_TAGS = ( 'all' => [ qw() ] ); diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index 00f778e9e4..21a9c720f7 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -215,6 +215,7 @@ sub new { snmp_security_level => '', snmp_timeout => 2, snmp_version => 1, + snmp_skip_non_enabled_ifs => 1, subnets => [], autoconfiguration_enabled => 0, @@ -312,6 +313,7 @@ sub new { $self->{'snmp_privacy_method'} = ''; $self->{'snmp_privacy_pass'} = ''; $self->{'snmp_security_level'} = ''; + $self->{'snmp_skip_non_enabled_ifs'} = ''; } return $self; diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 4f7a118b77..58c1224e83 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.765 -%define release 221021 +%define release 221102 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index f9b690f41c..ec4c7d1869 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.765 -%define release 221021 +%define release 221102 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index dd87c2a4d4..ad5cc260f1 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.765" -PI_BUILD="221021" +PI_BUILD="221102" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 2ba7f416aa..8720e1d4cb 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.765 Build 221021"; +my $version = "7.0NG.765 Build 221102"; # Pandora server configuration my %conf; @@ -344,7 +344,7 @@ sub pandora_purgedb ($$$) { log_message ('!', "Cannot execute " . $conf->{'_netflow_nfexpire'} . ", skipping."); } else { - `yes 2>/dev/null | $conf->{'_netflow_nfexpire'} -e "$conf->{'_netflow_path'}" -t $conf->{'_netflow_max_lifetime'}d`; + `yes 2>/dev/null | $conf->{'_netflow_nfexpire'} -r "$conf->{'_netflow_path'}" -t $conf->{'_netflow_max_lifetime'}d`; } } else { @@ -631,6 +631,7 @@ sub pandora_load_config_pdb ($) { $conf->{'_event_purge'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'event_purge'"); $conf->{'_trap_purge'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'trap_purge'"); + $conf->{'_trap_history_purge'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'trap_purge'"); $conf->{'_audit_purge'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'audit_purge'"); $conf->{'_string_purge'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'string_purge'"); $conf->{'_gis_purge'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'gis_purge'"); @@ -641,6 +642,7 @@ sub pandora_load_config_pdb ($) { $conf->{'_step_compact'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'step_compact'"); $conf->{'_history_db_enabled'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_enabled'"); $conf->{'_history_event_enabled'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_event_enabled'"); + $conf->{'_history_trap_enabled'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_trap_enabled'"); $conf->{'_history_db_host'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_host'"); $conf->{'_history_db_port'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_port'"); $conf->{'_history_db_name'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_name'"); @@ -650,6 +652,7 @@ sub pandora_load_config_pdb ($) { $conf->{'_history_db_adv'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_adv'"); $conf->{'_history_db_string_days'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_string_days'"); $conf->{'_history_event_days'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_event_days'"); + $conf->{'_history_trap_days'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_trap_days'"); $conf->{'_history_db_step'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_step'"); $conf->{'_history_db_delay'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'history_db_delay'"); $conf->{'_days_delete_unknown'} = get_db_value ($dbh, "SELECT value FROM tconfig WHERE token = 'days_delete_unknown'"); @@ -897,18 +900,11 @@ sub pandora_checkdb_consistency { log_message ('CHECKDB', "Checking database consistency (Missing status)."); - my @modules = get_db_rows ($dbh, 'SELECT * FROM tagente_modulo'); + my @modules = get_db_rows ($dbh, 'SELECT m.id_agente, m.id_agente_modulo, e.id_agente_estado FROM tagente_modulo AS m LEFT JOIN tagente_estado AS e ON m.id_agente_modulo = e.id_agente_modulo WHERE e.id_agente_estado IS NULL'); foreach my $module (@modules) { my $id_agente_modulo = $module->{'id_agente_modulo'}; my $id_agente = $module->{'id_agente'}; - # check if exist in tagente_estado and create if not - my $count = get_db_value ($dbh, - 'SELECT COUNT(*) - FROM tagente_estado - WHERE id_agente_modulo = ?', $id_agente_modulo); - next if (defined ($count) && $count > 0); - db_do ($dbh, 'INSERT INTO tagente_estado (id_agente_modulo, datos, timestamp, estado, id_agente, last_try, utimestamp, current_interval, running_by, last_execution_try) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', $id_agente_modulo, 0, '1970-01-01 00:00:00', 1, $id_agente, '1970-01-01 00:00:00', 0, 0, 0, 0); log_message ('CHECKDB', @@ -923,17 +919,10 @@ sub pandora_checkdb_consistency { # tagente_modulo, if there is any, delete it #------------------------------------------------------------------- - @modules = get_db_rows ($dbh, 'SELECT * FROM tagente_estado'); + @modules = get_db_rows ($dbh, 'SELECT e.id_agente_modulo, m.id_agente FROM tagente_estado AS e LEFT JOIN tagente_modulo AS m ON e.id_agente_modulo = m.id_agente_modulo WHERE m.id_agente IS NULL'); foreach my $module (@modules) { my $id_agente_modulo = $module->{'id_agente_modulo'}; - # check if exist in tagente_estado and create if not - my $count = get_db_value ($dbh, - 'SELECT COUNT(*) - FROM tagente_modulo - WHERE id_agente_modulo = ?', $id_agente_modulo); - next if (defined ($count) && $count > 0); - db_do ($dbh, 'DELETE FROM tagente_estado WHERE id_agente_modulo = ?', $id_agente_modulo); @@ -1133,6 +1122,26 @@ sub pandoradb_history ($$) { log_message ('', "\n"); } + # Delete old traps. + if ($conf->{'_trap_history_purge'} > 0) { + log_message ('PURGE', "Deleting traps older than " . $conf->{'_trap_history_purge'} . " days from ttrap (history).", ''); + + my $trap_limit = strftime ("%Y-%m-%d %H:%M:%S", localtime(time() - 86400 * $conf->{'_trap_history_purge'})); + + my $traps_to_delete = get_db_value ($dbh, "SELECT COUNT(*) FROM ttrap WHERE timestamp < ?", $trap_limit); + while($traps_to_delete > 0) { + db_delete_limit($dbh, 'ttrap', "timestamp < ?", $BIG_OPERATION_STEP, $trap_limit); + $traps_to_delete = $traps_to_delete - $BIG_OPERATION_STEP; + + # Mark the progress. + log_message ('', "."); + + # Do not overload the MySQL server. + usleep (10000); + } + log_message ('', "\n"); + } + # Update tconfig with last time of database maintance time (now) db_do ($dbh, "DELETE FROM tconfig WHERE token = 'db_maintance'"); db_do ($dbh, "INSERT INTO tconfig (token, value) VALUES ('db_maintance', '".time()."')"); @@ -1163,6 +1172,9 @@ sub pandoradb_main { if (defined($conf{'_history_event_enabled'}) && $conf->{'_history_event_enabled'} ne "" && $conf->{'_history_event_enabled'} == 1) { undef ($history_dbh) unless defined (enterprise_hook ('pandora_history_event', [$dbh, $history_dbh, $conf->{'_history_event_days'}, $conf->{'_history_db_step'}, $conf->{'_history_db_delay'}])); } + if (defined($conf{'_history_trap_enabled'}) && $conf->{'_history_trap_enabled'} ne "" && $conf->{'_history_trap_enabled'} == 1) { + undef ($history_dbh) unless defined (enterprise_hook ('pandora_history_trap', [$dbh, $history_dbh, $conf->{'_history_trap_days'}, $conf->{'_history_db_step'}, $conf->{'_history_db_delay'}])); + } } # Only active database should be compacted. Disabled for historical database. @@ -1270,13 +1282,20 @@ if ($conf{'_force'} == 0 && pandora_is_master(\%conf) == 0) { exit 1; } -# Set the lock name for pandora_db. -my $lock_name = $conf{'dbname'}; +# Get a lock on the main database. +my $db_lock = db_get_lock ($dbh, $conf{'dbname'} . '_pandora_db', $LOCK_TIMEOUT, 1); +if ($db_lock == 0) { + log_message ('', " [*] Another instance of DB Tool seems to be running on the main database.\n\n"); + exit 1; +} -# Release the database lock in forced mode. -if ($conf{'_force'} == 1) { - log_message ('', " [*] Releasing database lock.\n\n"); - db_release_pandora_lock($dbh, $lock_name, $LOCK_TIMEOUT); +# Get a lock on the history database. +if (defined($history_dbh)) { + my $history_lock = db_get_lock ($history_dbh, $conf{'_history_db_name'} . '_pandora_db', $LOCK_TIMEOUT, 1); + if ($history_lock == 0) { + log_message ('', " [*] Another instance of DB Tool seems to be running on the history database.\n\n"); + exit 1; + } } # Get a lock merging. @@ -1293,13 +1312,6 @@ if ($lock_merge_events == 0) { exit 1; } -# Get a lock on dbname. -my $lock = db_get_pandora_lock ($dbh, $lock_name, $LOCK_TIMEOUT); -if ($lock == 0) { - log_message ('', " [*] Another instance of DB Tool seems to be running.\n\n"); - exit 1; -} - # Main pandoradb_main(\%conf, $dbh, $h_conf, $history_dbh); @@ -1336,9 +1348,6 @@ if (scalar(@types) != 0) { db_do($dbh, "UPDATE talert_commands SET fields_values='[\"\", \"\", \"\",\"\",\"" . $query_string . "\",\"\",\"\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\",\"_integria_type_custom_field_\"]' WHERE name=\"Integria IMS Ticket\""); } -# Release the lock -db_release_pandora_lock ($dbh, $lock_name); - # Cleanup and exit db_disconnect ($history_dbh) if defined ($history_dbh); db_disconnect ($dbh); diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 31c8238c9a..4e56b04456 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.765 Build 221021"; +my $version = "7.0NG.765 Build 221102"; # save program name for logging my $progname = basename($0); @@ -539,8 +539,27 @@ sub pandora_add_profile_to_user ($$$;$) { $group_id = 0 unless defined($group_id); - db_do ($dbh, 'INSERT INTO tusuario_perfil (id_usuario, id_perfil, id_grupo) - VALUES (?, ?, ?)', safe_input($user_id), $profile_id, $group_id); + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; + exit; + } + + my $query = 'INSERT INTO tusuario_perfil (id_usuario, id_perfil, id_grupo) VALUES (?, ?, ?)'; + my @values = ( + safe_input($user_id), + $profile_id, + $group_id + ); + + my $res = db_do ($dbh, $query, @values); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_insert($dbh, $conf, 'tusuario_perfil', $query, $res, @values); + } + + return $res; } @@ -568,13 +587,29 @@ sub cli_create_snmp_trap ($$) { sub pandora_create_user ($$$$$) { my ($dbh, $name, $password, $is_admin, $comments) = @_; - if(is_metaconsole($conf) != 1 && pandora_get_tconfig_token ($dbh, 'centralized_management', '')) { + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; exit; } + + my $query = 'INSERT INTO tusuario (id_user, fullname, password, comments, is_admin) VALUES (?, ?, ?, ?, ?)'; + my @values = ( + safe_input($name), + safe_input($name), + $password, + decode_entities($comments), + $is_admin ? '1' : '0' + ); - return db_insert ($dbh, 'id_user', 'INSERT INTO tusuario (id_user, fullname, password, is_admin, comments) - VALUES (?, ?, ?, ?, ?)', safe_input($name), safe_input($name), $password, $is_admin ? '1' : '0', decode_entities($comments)); + my $res = db_insert($dbh, 'id_user', $query, @values); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_insert($dbh, $conf, 'tusuario', $query, $res, @values); + } + + return $res; } ########################################################################## @@ -583,17 +618,27 @@ sub pandora_create_user ($$$$$) { sub pandora_delete_user ($$) { my ($dbh, $name) = @_; - if(is_metaconsole($conf) != 1 && pandora_get_tconfig_token ($dbh, 'centralized_management', '')) { + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { print_log "[ERROR] This node is configured with centralized mode. To delete a user go to metaconsole. \n\n"; exit; } # Delete user profiles - db_do ($dbh, 'DELETE FROM tusuario_perfil WHERE id_usuario = ?', $name); + my $result_profile = db_do ($dbh, 'DELETE FROM tusuario_perfil WHERE id_usuario = ?', $name); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_delete($dbh, $conf, 'tusuario_perfil', $result_profile, $name); + } # Delete the user my $return = db_do ($dbh, 'DELETE FROM tusuario WHERE id_user = ?', $name); + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_delete($dbh, $conf, 'tusuario', $return, $name); + } + if($return eq '0E0') { return -1; } @@ -623,25 +668,79 @@ else { ## Assign a profile to the given user/group. ########################################################################## sub pandora_create_user_profile ($$$$) { - my ($dbh, $user_id, $profile_id, $group_id) = @_; - - return db_insert ($dbh, 'id_up', 'INSERT INTO tusuario_perfil (id_usuario, id_perfil, id_grupo) VALUES (?, ?, ?)', $user_id, $profile_id, $group_id); + my ($dbh, $user_id, $profile_id, $group_id) = @_; + + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; + exit; + } + + my $query = 'INSERT INTO tusuario_perfil (id_usuario, id_perfil, id_grupo) VALUES (?, ?, ?)'; + my @values = ( + safe_input($user_id), + $profile_id, + $group_id + ); + + my $res = db_insert ($dbh, 'id_up', $query, @values); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_insert($dbh, $conf, 'tusuario_perfil', $query, $res, @values); + } + + return $res; } ########################################################################## ## Create profile. ########################################################################## sub pandora_create_profile ($$$$$$$$$$$$$$$$$$$$$$) { - my ($dbh, $profile_name, $agent_view, + my ($dbh, $profile_name, $agent_view, $agent_edit, $agent_disable, $alert_edit, $alert_management, $user_management, $db_management, $event_view, $event_edit, $event_management, $report_view, $report_edit, $report_management, $map_view, $map_edit, $map_management, $vconsole_view, $vconsole_edit, $vconsole_management, $pandora_management) = @_; + + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); - return db_insert ($dbh, 'id_up', 'INSERT INTO tperfil (name,agent_view,agent_edit,agent_disable,alert_edit,alert_management,user_management,db_management,event_view,event_edit,event_management,report_view,report_edit,report_management,map_view,map_edit,map_management,vconsole_view,vconsole_edit,vconsole_management,pandora_management) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);', - safe_input($profile_name), $agent_view, - $agent_edit, $agent_disable, $alert_edit, $alert_management, $user_management, $db_management, - $event_view, $event_edit, $event_management, $report_view, $report_edit, $report_management, - $map_view, $map_edit, $map_management, $vconsole_view, $vconsole_edit, $vconsole_management, $pandora_management); + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; + exit; + } + + my $query = 'INSERT INTO tperfil (name,agent_view,agent_edit,agent_disable,alert_edit,alert_management,user_management,db_management,event_view,event_edit,event_management,report_view,report_edit,report_management,map_view,map_edit,map_management,vconsole_view,vconsole_edit,vconsole_management,pandora_management) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);'; + my @values = ( + safe_input($profile_name), + $agent_view, + $agent_edit, + $agent_disable, + $alert_edit, + $alert_management, + $user_management, + $db_management, + $event_view, + $event_edit, + $event_management, + $report_view, + $report_edit, + $report_management, + $map_view, + $map_edit, + $map_management, + $vconsole_view, + $vconsole_edit, + $vconsole_management, + $pandora_management + ); + + my $res = db_insert ($dbh, 'id_perfil', $query, @values); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_insert($dbh, $conf, 'tperfil', $query, $res, @values); + } + + return $res; } ########################################################################## @@ -653,11 +752,33 @@ sub pandora_update_profile ($$$$$$$$$$$$$$$$$$$$$$) { $event_view, $event_edit, $event_management, $report_view, $report_edit, $report_management, $map_view, $map_edit, $map_management, $vconsole_view, $vconsole_edit, $vconsole_management, $pandora_management) = @_; - return db_update ($dbh, 'UPDATE tperfil SET agent_view = ?, agent_edit = ?, agent_disable = ?, alert_edit = ?, alert_management = ?, user_management = ?, db_management = ?, event_view = ?, event_edit = ?, event_management = ?, report_view = ?, report_edit = ?, report_management = ?, map_view = ?, map_edit = ?, map_management = ?, vconsole_view = ?, vconsole_edit = ?, vconsole_management = ?, pandora_management = ? WHERE name=?;', - $agent_view, - $agent_edit, $agent_disable, $alert_edit, $alert_management, $user_management, $db_management, - $event_view, $event_edit, $event_management, $report_view, $report_edit, $report_management, - $map_view, $map_edit, $map_management, $vconsole_view, $vconsole_edit, $vconsole_management, $pandora_management, safe_input($profile_name)); + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; + exit; + } + + my @parameters = ( + $agent_view, $agent_edit, $agent_disable, + $alert_edit, $alert_management, + $user_management, $db_management, + $event_view, $event_edit, $event_management, + $report_view, $report_edit, $report_management, + $map_view, $map_edit, $map_management, + $vconsole_view, $vconsole_edit, $vconsole_management, + $pandora_management, safe_input($profile_name) + ); + + my $query = 'UPDATE tperfil SET agent_view = ?, agent_edit = ?, agent_disable = ?, alert_edit = ?, alert_management = ?, user_management = ?, db_management = ?, event_view = ?, event_edit = ?, event_management = ?, report_view = ?, report_edit = ?, report_management = ?, map_view = ?, map_edit = ?, map_management = ?, vconsole_view = ?, vconsole_edit = ?, vconsole_management = ?, pandora_management = ? WHERE name=?;'; + + my $result = db_update ($dbh, $query, @parameters); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_update($dbh, $conf, 'tperfil', $query, $result, @parameters); + } + + return $result; } ########################################################################## @@ -665,8 +786,28 @@ sub pandora_update_profile ($$$$$$$$$$$$$$$$$$$$$$) { ########################################################################## sub pandora_delete_user_profile ($$$$) { my ($dbh, $user_id, $profile_id, $group_id) = @_; + + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To delete a user go to metaconsole. \n\n"; + exit; + } + + my @parameters = ( + $user_id, + $profile_id, + $group_id + ); + + # Delete the user + my $return = db_do ($dbh, 'DELETE FROM tusuario_perfil WHERE id_usuario=? AND id_perfil=? AND id_grupo=?', @parameters); + + if(is_metaconsole($conf) == 1 && $centralized) { + db_synch_delete($dbh, $conf, 'tusuario_perfil', $return, @parameters); + } - return db_do ($dbh, 'DELETE FROM tusuario_perfil WHERE id_usuario=? AND id_perfil=? AND id_grupo=?', $user_id, $profile_id, $group_id); + return $return; } ########################################################################## @@ -816,9 +957,18 @@ sub pandora_validate_event_id ($$$) { ########################################################################## sub pandora_update_user_from_hash ($$$$) { my ($parameters, $where_column, $where_value, $dbh) = @_; + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + my $result = db_process_update($dbh, 'tusuario', $parameters, {$where_column => $where_value}); + if(is_metaconsole($conf) == 1 && $centralized) { + my @values = ( + values %$parameters, + $where_value + ); - my $user_id = db_process_update($dbh, 'tusuario', $parameters, {$where_column => $where_value}); - return $user_id; + db_synch_update($dbh, $conf, 'tusuario', $dbh->{Statement}, $result, @values); + } + + return $result; } ########################################################################## @@ -6235,8 +6385,10 @@ sub cli_disable_double_auth () { sub cli_user_enable () { my $user_id = @ARGV[2]; - if(is_metaconsole($conf) != 1 && pandora_get_tconfig_token ($dbh, 'centralized_management', '')) { - print_log "[ERROR] This node is configured with centralized mode. To enable a user go to metaconsole. \n\n"; + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; exit; } @@ -6253,9 +6405,14 @@ sub cli_user_enable () { $user_id = safe_input($user_id); - db_do ($dbh, "UPDATE tusuario SET disabled = '0' WHERE id_user = '$user_id'"); - - exit; + my $result = db_do ($dbh, "UPDATE tusuario SET disabled = '0' WHERE id_user = '$user_id'"); + + if(is_metaconsole($conf) == 1 && $centralized) { + my @values; + db_synch_update($dbh, $conf, 'tusuario', $dbh->{Statement}, $result, @values); + } + + exit; } ############################################################################### @@ -6265,8 +6422,10 @@ sub cli_user_enable () { sub cli_user_disable () { my $user_id = @ARGV[2]; - if(is_metaconsole($conf) != 1 && pandora_get_tconfig_token ($dbh, 'centralized_management', '')) { - print_log "[ERROR] This node is configured with centralized mode. To disable a user go to metaconsole. \n\n"; + my $centralized = pandora_get_tconfig_token ($dbh, 'centralized_management', ''); + + if(is_metaconsole($conf) != 1 && $centralized) { + print_log "[ERROR] This node is configured with centralized mode. To create a user go to metaconsole. \n\n"; exit; } @@ -6283,9 +6442,14 @@ sub cli_user_disable () { $user_id = safe_input($user_id); - db_do ($dbh, "UPDATE tusuario SET disabled = '1' WHERE id_user = '$user_id'"); + my $result = db_do ($dbh, "UPDATE tusuario SET disabled = '1' WHERE id_user = '$user_id'"); + + if(is_metaconsole($conf) == 1 && $centralized) { + my @values; + db_synch_update($dbh, $conf, 'tusuario', $dbh->{Statement}, $result, @values); + } - exit; + exit; } ############################################################################### diff --git a/pandora_server/util/tentacle_serverd b/pandora_server/util/tentacle_serverd index 0c0f35ff97..80e8364946 100755 --- a/pandora_server/util/tentacle_serverd +++ b/pandora_server/util/tentacle_serverd @@ -119,7 +119,6 @@ case "$1" in rc_status -v else echo "Tentacle Server could not be started." - echo "Verify that Tentacle port is not used." rc_failed 7 # program not running fi diff --git a/tentacle/NetBSD/tentacle_server b/tentacle/NetBSD/tentacle_server deleted file mode 100755 index d945a134e8..0000000000 --- a/tentacle/NetBSD/tentacle_server +++ /dev/null @@ -1,1869 +0,0 @@ -#!/usr/bin/perl -########################################################################## -# Tentacle Server -# See https://pandorafms.com/docs/ for protocol description. -# Tentacle have IANA assigned port tpc/41121 as official port. -########################################################################## -# Copyright (c) 2007-2008 Ramon Novoa -# Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L -# -# tentacle_server.pl Tentacle Server. See https://pandorafms.com/docs/ for -# protocol description. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -########################################################################## - -package tentacle::server; -=head1 NAME - -tentacle_server - Tentacle Server - -=head1 VERSION - -Version 0.6.1 - -=head1 USAGE - -tentacle_server B<< -s F >> [I] - -=head1 DESCRIPTION - -B is a server for B, a B file transfer protocol that aims to be: - -=over - -=item * Secure by design. - -=item * Easy to use. - -=item * Versatile and cross-platform. - -=back - -Tentacle was created to replace more complex tools like SCP and FTP for simple file transfer/retrieval, and switch from authentication mechanisms like .netrc, interactive logins and SSH keys to X.509 certificates. Simple password authentication over a SSL secured connection is supported too. - -The client and server (B) are designed to be run from the command line or called from a shell script, and B. - -=cut - -use strict; -use warnings; -use Getopt::Std; -use IO::Select; -use IO::Compress::Zip qw(zip $ZipError); -use IO::Uncompress::Unzip qw(unzip $UnzipError); -use threads; -use Thread::Semaphore; -use POSIX ":sys_wait_h"; -use Time::HiRes qw(usleep); -use Scalar::Util qw(refaddr); -use POSIX qw(strftime); - -# Constants for Win32 services. -use constant WIN32_SERVICE_STOPPED => 0x01; -use constant WIN32_SERVICE_RUNNING => 0x04; - -my $t_libwrap_installed = eval { require Authen::Libwrap } ? 1 : 0; - -if ($t_libwrap_installed) { - Authen::Libwrap->import( qw( hosts_ctl STRING_UNKNOWN ) ); -} - -# Log errors, 1 enabled, 0 disabled -my $t_log = 0; - -# Log information, 1 enabled, 0 enabled -my $t_log_hard = 0; - -my $SOCKET_MODULE; -if ($^O eq 'MSWin32') { - # Only support INET on windows - require IO::Socket::INET; - $SOCKET_MODULE = 'IO::Socket::INET'; -} else { - $SOCKET_MODULE = - eval { require IO::Socket::INET6 } ? 'IO::Socket::INET6' - : eval { require IO::Socket::INET } ? 'IO::Socket::INET' - : die $@; -} - -# Service name for Win32. -my $SERVICE_NAME="Tentacle Server"; - -# Service parameters. -my $SERVICE_PARAMS=join(' ', @ARGV); - -# Program version -our $VERSION = '0.6.2'; - -# IPv4 address to listen on -my @t_addresses = ('0', '0.0.0.0'); - -# Block size for socket read/write operations in bytes -my $t_block_size = 1024; - -# Client socket -my $t_client_socket; - -# Run as daemon, 1 true, 0 false -my $t_daemon = 0; - -# Storage directory -my $t_directory = ''; - -# Filters -my @t_filters; - -# Enable (1) or disable (0) insecure mode -my $t_insecure = 0; - -# String containing quoted invalid file name characters -my $t_invalid_chars = '\?\[\]\/\\\=\+\<\>\:\;\'\,\*\~'; - -# Maximum number of simultaneous connections -my $t_max_conn = 10; - -# Maximum file size allowed by the server in bytes -my $t_max_size = 2000000; - -# File overwrite, 1 enabled, 0 disabled -my $t_overwrite = 0; - -# Port to listen on -my $t_port = 41121; - -# Server password -my $t_pwd = ''; - -# Do not output error messages, 1 enabled, 0 disabled -my $t_quiet = 0; - -# Number of retries for socket read/write operations -my $t_retries = 3; - -# Select handler -my $t_select; - -# Semaphore -my $t_sem :shared; - -# Server socket -my @t_server_sockets; - -# Server select handler -my $t_server_select; - -# Use SSL, 1 true, 0 false -my $t_ssl = 0; - -# SSL ca certificate file -my $t_ssl_ca = ''; - -# SSL certificate file -my $t_ssl_cert = ''; - -# SSL private key file -my $t_ssl_key = ''; - -# SSL private key password -my $t_ssl_pwd = ''; - -# Timeout for socket read/write operations in seconds -my $t_timeout = 1; - -# Address to proxy client requests to -my $t_proxy_ip = undef; - -# Port to proxy client requests to -my $t_proxy_port = 41121; - -# Proxy socket -my $t_proxy_socket; - -# Proxy selected handler -my $t_proxy_select; - -# Use libwrap, 1 true, 0 false -my $t_use_libwrap = 0; - -# Program name for libwrap -my $t_program_name = $0; -$t_program_name =~ s/.*\///g; - -# Log file -my $log_file = undef; - -################################################################################ -## SUB print_help -## Print help screen. -################################################################################ -sub print_help { - $" = ','; - - print ("Usage: $0 -s [options]\n\n"); - print ("Tentacle server v$VERSION. See https://pandorafms.com/docs/ for protocol description.\n\n"); - print ("Options:\n"); - print ("\t-a ip_addresses\tIP addresses to listen on (default @t_addresses).\n"); - print ("\t \t(Multiple addresses separated by comma can be defined.)\n"); - print ("\t-c number\tMaximum number of simultaneous connections (default $t_max_conn).\n"); - print ("\t-d\t\tRun as daemon.\n"); - print ("\t-e cert\t\tOpenSSL certificate file. Enables SSL.\n"); - print ("\t-f ca_cert\tVerify that the peer certificate is signed by a ca.\n"); - print ("\t-F config_file\tConfiguration file full path.\n"); - print ("\t-h\t\tShow help.\n"); - print ("\t-I\t\tEnable insecure operations (file listing and moving).\n"); - print ("\t-i\t\tFilters.\n"); - print ("\t-k key\t\tOpenSSL private key file.\n"); - print ("\t-l log_file\t\tFile to write logs.\n"); - print ("\t-m size\t\tMaximum file size in bytes (default ${t_max_size}b).\n"); - print ("\t-o\t\tEnable file overwrite.\n"); - print ("\t-p port\t\tPort to listen on (default $t_port).\n"); - print ("\t-q\t\tQuiet. Do now print error messages.\n"); - print ("\t-r number\tNumber of retries for network opertions (default $t_retries).\n"); - print ("\t-S (install|uninstall|run) Manage the win32 service.\n"); - print ("\t-t time\t\tTime-out for network operations in seconds (default ${t_timeout}s).\n"); - print ("\t-v\t\tBe verbose (display errors).\n"); - print ("\t-V\t\tBe verbose on hard way (display errors and other info).\n"); - print ("\t-w\t\tPrompt for OpenSSL private key password.\n"); - print ("\t-x pwd\t\tServer password.\n"); - print ("\t-b ip_address\tProxy requests to the given address.\n"); - print ("\t-g port\t\tProxy requests to the given port.\n"); - print ("\t-T\t\tEnable tcpwrappers support.\n"); - print ("\t \t\t(To use this option, 'Authen::Libwrap' should be installed.)\n\n"); -} - -################################################################################ -## SUB daemonize -## Turn the current process into a daemon. -################################################################################ -sub daemonize { - my $pid; - - require POSIX; - - chdir ('/') || error ("Cannot chdir to /: $!."); - umask 0; - - open (STDIN, '/dev/null') || error ("Cannot read /dev/null: $!."); - - # Do not be verbose when running as a daemon - open (STDOUT, '>/dev/null') || error ("Cannot write to /dev/null: $!."); - open (STDERR, '>/dev/null') || error ("Cannot write to /dev/null: $!."); - - # Fork - $pid = fork (); - if (! defined ($pid)) { - error ("Cannot fork: $!."); - } - - # Parent - if ($pid != 0) { - exit; - } - - # Child - POSIX::setsid () || error ("Cannot start a new session: $!."); -} - -################################################################################ -## SUB parse_options -## Parse command line options and initialize global variables. -################################################################################ -sub parse_options { - my %opts; - my $CONF = {}; - my $token_value; - my $tmp; - my @t_addresses_tmp; - - # Get options - if (getopts ('a:b:c:de:f:F:g:hIi:k:l:m:op:qr:s:S:t:TvVwx:', \%opts) == 0 || defined ($opts{'h'})) { - print_help (); - exit 1; - } - - # The Win32 service must be installed/uninstalled without checking other parameters. - if (defined ($opts{'S'})) { - my $service_action = $opts{'S'}; - if ($^O ne 'MSWin32') { - error ("Windows services are only available on Win32."); - } else { - eval "use Win32::Daemon"; - die($@) if ($@); - - if ($service_action eq 'install') { - install_service(); - } elsif ($service_action eq 'uninstall') { - uninstall_service(); - } - } - } - - # Configuration file - if (defined($opts{'F'})) { - parse_config_file($opts{'F'}, $CONF); - } - - # Address - $token_value = get_config_value($opts{'a'}, $CONF->{'addresses'}); - if (defined ($token_value)) { - @t_addresses = (); - @t_addresses_tmp = split(/,/, $token_value); - - foreach my $t_address (@t_addresses_tmp) { - $t_address =~ s/^ *(.*?) *$/$1/; - if (($t_address ne '0') && - ($t_address !~ /^[a-zA-Z\.]+$/ && ($t_address !~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ - || $1 < 0 || $1 > 255 || $2 < 0 || $2 > 255 - || $3 < 0 || $3 > 255 || $4 < 0 || $4 > 255)) && - ($t_address !~ /^[0-9a-f:]+$/o)) { - error ("Address $t_address is not valid."); - } - push @t_addresses, $t_address; - } - } - - # Maximum simultaneous connections - $token_value = get_config_value($opts{'c'}, $CONF->{'max_connections'}); - if (defined ($token_value)) { - $t_max_conn = $token_value; - if ($t_max_conn !~ /^\d+$/ || $t_max_conn < 1) { - error ("Invalid number of maximum simultaneous connections."); - } - } - - # Run as daemon - $token_value = get_config_value($opts{'d'}, $CONF->{'daemon'}, 1); - if (defined ($token_value)) { - if ($^ eq 'MSWin32') { - error ("-d flag not available for this OS."); - } - - $t_daemon = 1; - } - - # Enable SSL - $token_value = get_config_value($opts{'e'}, $CONF->{'ssl_cert'}); - if (defined ($token_value)) { - - require IO::Socket::SSL; - - $t_ssl_cert = $token_value; - if (! -f $t_ssl_cert) { - error ("File $t_ssl_cert does not exist."); - } - - $t_ssl = 1; - } - - # Verify peer certificate - $token_value = get_config_value($opts{'f'}, $CONF->{'ssl_ca'}); - if (defined ($token_value)) { - $t_ssl_ca = $token_value; - if (! -f $t_ssl_ca) { - error ("File $t_ssl_ca does not exist."); - } - } - - # Insecure mode - $token_value = get_config_value($opts{'I'}, $CONF->{'insecure'}, 1); - if (defined ($token_value)) { - $t_insecure = 1; - } - - # Filters (regexp:dir;regexp:dir...) - $token_value = get_config_value($opts{'i'}, $CONF->{'filters'}); - if (defined ($token_value)) { - my @filters = split (';', $token_value); - foreach my $filter (@filters) { - my ($regexp, $dir) = split (':', $filter); - next unless defined ($regexp) && defined ($dir); - - # Remove any trailing / - my $char = chop ($dir); - $dir .= $char if ($char) ne '/'; - - push(@t_filters, [$regexp, $dir]); - } - } - - # SSL private key file - $token_value = get_config_value($opts{'k'}, $CONF->{'ssl_key'}); - if (defined ($token_value)) { - $t_ssl_key = $token_value; - if (! -f $t_ssl_key) { - error ("File $t_ssl_key does not exist."); - } - } - - # Maximum file size - $token_value = get_config_value($opts{'m'}, $CONF->{'max_size'}); - if (defined ($token_value)) { - $t_max_size = $token_value; - if ($t_max_size !~ /^\d+$/ || $t_max_size < 1) { - error ("Invalid maximum file size."); - } - } - - # File overwrite - $token_value = get_config_value($opts{'o'}, $CONF->{'overwrite'}, 1); - if (defined ($token_value)) { - $t_overwrite = 1; - } - - # Port - $token_value = get_config_value($opts{'p'}, $CONF->{'port'}); - if (defined ($token_value)) { - $t_port = $token_value; - if ($t_port !~ /^\d+$/ || $t_port < 1 || $t_port > 65535) { - error ("Port $t_port is not valid."); - } - } - - # Quiet mode - $token_value = get_config_value($opts{'q'}, $CONF->{'quiet'}, 1); - if (defined ($token_value)) { - $t_quiet = 1; - } - - # Retries - $token_value = get_config_value($opts{'r'}, $CONF->{'retries'}); - if (defined ($token_value)) { - $t_retries = $token_value; - if ($t_retries !~ /^\d+$/ || $t_retries < 1) { - error ("Invalid number of retries for network operations."); - } - } - - # Storage directory - $token_value = get_config_value($opts{'s'}, $CONF->{'directory'}); - if (defined ($token_value)) { - - $t_directory = $token_value; - - # Check that directory exists - if (! -d $t_directory) { - error ("Directory $t_directory does not exist."); - } - - # Check directory permissions - if (! -w $t_directory) { - error ("Cannot write to directory $t_directory."); - } - - # Remove the trailing / if present - $tmp = chop ($t_directory); - if ($tmp ne '/') { - $t_directory .= $tmp; - } - } - else { - $token_value = get_config_value($opts{'b'}, $CONF->{'proxy_ip'}); - if (! defined($token_value)) { - print_help (); - exit 1; - } - } - - # Timeout - $token_value = get_config_value($opts{'t'}, $CONF->{'timeout'}); - if (defined ($token_value)) { - $t_timeout = $token_value; - if ($t_timeout !~ /^\d+$/ || $t_timeout < 1) { - error ("Invalid timeout for network operations."); - } - } - - # Read verbose from config file - if (defined($CONF->{'verbose'})) { - if ($CONF->{'verbose'} eq "1") { - $t_log = 1; - } elsif ($CONF->{'verbose'} eq "2") { - $t_log = 1; - $t_log_hard = 1; - } - } - # Be verbose - if (defined ($opts{'v'})) { - $t_log = 1; - $t_log_hard = 0; - } - # Be verbose hard - if (defined ($opts{'V'})) { - $t_log = 1; - $t_log_hard = 1; - } - - # SSL private key password - $token_value = get_config_value($opts{'w'}, $CONF->{'ssl_password'}, 1); - if (defined ($token_value)) { - $t_ssl_pwd = ask_passwd ("Enter private key file password: ", "Enter private key file password again for confirmation: "); - } - - # Server password - $token_value = get_config_value($opts{'x'}, $CONF->{'password'}); - if (defined ($token_value)) { - $t_pwd = $token_value; - } - - #Proxy IP address - $token_value = get_config_value($opts{'b'}, $CONF->{'proxy_ip'}); - if (defined ($token_value)) { - $t_proxy_ip = $token_value; - if ($t_proxy_ip !~ /^[a-zA-Z\.]+$/ && ($t_proxy_ip !~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ - || $1 < 0 || $1 > 255 || $2 < 0 || $2 > 255 - || $3 < 0 || $3 > 255 || $4 < 0 || $4 > 255) && - $t_proxy_ip !~ /^[0-9a-f:]+$/o) { - error ("Proxy address $t_proxy_ip is not valid."); - } - } - - # Proxy Port - $token_value = get_config_value($opts{'g'}, $CONF->{'proxy_port'}); - if (defined ($token_value)) { - $t_proxy_port = $token_value; - if ($t_proxy_port !~ /^\d+$/ || $t_proxy_port < 1 || $t_proxy_port > 65535) { - error ("Proxy port $t_port is not valid."); - } - } - - # TCP wrappers support - $token_value = get_config_value($opts{'T'}, $CONF->{'use_libwrap'}, 1); - if (defined ($token_value)) { - if ($t_libwrap_installed) { - $t_use_libwrap = 1; - } else { - error ("Authen::Libwrap is not installed."); - } - } - - # Win32 service management - if (defined ($opts{'S'})) { - my $service_action = $opts{'S'}; - if ($^O ne 'MSWin32') { - error ("Windows services are only available on Win32."); - } else { - eval "use Win32::Daemon"; - die($@) if ($@); - - if ($service_action eq 'run') { - Win32::Daemon::RegisterCallbacks({ - start => \&callback_start, - running => \&callback_running, - stop => \&callback_stop, - }); - Win32::Daemon::StartService(); - exit 0; - } else { - error("Unknown action: $service_action"); - } - } - } - - # Get the config file - $token_value = get_config_value($opts{'l'}, $CONF->{'log_file'}); - if (defined ($token_value)) { - $log_file = $token_value; - } - - # No command lines config values - - # Get the block size - if (defined ($CONF->{'block_size'})) { - if ($t_port !~ /^\d+$/ || $t_port < 1) { - error ("Invalid block size: " . $CONF->{'block_size'} . "."); - } - $t_block_size = $CONF->{'block_size'}; - } - - # Configuration file invalid chars - if (defined ($CONF->{'invalid_chars'})) { - $t_invalid_chars = $CONF->{'invalid_chars'}; - } -} - -################################################################################ -## SUB parse_config_file -## Get all options from a config file. -################################################################################ -sub parse_config_file { - my ($config_file, $CONF) = @_; - - # File should be writable - if (! -r $config_file) { - print "Configuration file $config_file is not readable.\n"; - return; - } - - # Open the file - my $FH; - if (! open ($FH, "< $config_file")) { - print "Cannot open configuration file $config_file.\n"; - return; - } - - # Read the file and only get the well formed lines - while (<$FH>) { - my $buffer_line = $_; - if ($buffer_line =~ /^[a-zA-Z]/){ # begins with letters - if ($buffer_line =~ m/([\w\-\_\.]+)\s+(.*)/){ - $CONF->{$1} = $2 unless $2 eq ""; - } - } - } - - close ($FH); - return; -} - -################################################################################ -## SUB parse_config_file -## Search in command line options and config hash from configuration file -## to get a value (command line is a priority) -################################################################################ -sub get_config_value { - my ($cmd_value, $conf_value, $bool) = @_; - $bool = 0 unless defined($bool); - - return $cmd_value if defined($cmd_value); - # The boolean type value is 1 or undef (0 should be translated like undefP) - if ($bool && defined($conf_value)) { - return undef if ($conf_value ne "1"); - } - return $conf_value; -} - -################################################################################ -## SUB start_proxy -## Open the proxy server socket. -################################################################################ -sub start_proxy { - - # Connect to server - $t_proxy_socket = $SOCKET_MODULE->new ( - PeerAddr => $t_proxy_ip, - PeerPort => $t_proxy_port, - ); - - if (! defined ($t_proxy_socket)) { - error ("Cannot connect to $t_proxy_ip on port $t_proxy_port: $!."); - } - - # Create proxy selector - $t_proxy_select = IO::Select->new (); - $t_proxy_select->add ($t_proxy_socket); - -} - -################################################################################ -## SUB start_server -## Open the server socket. -################################################################################ -sub start_server { - - my $t_server_socket; - - foreach my $t_address (@t_addresses) { - - $t_server_socket = $SOCKET_MODULE->new ( - Listen => $t_max_conn, - LocalAddr => $t_address, - LocalPort => $t_port, - Proto => 'tcp', - ReuseAddr => 1, - ); - - if (! defined ($t_server_socket)) { - print_log ("Cannot open socket for address $t_address on port $t_port: $!."); - next; - } - - print_log ("Server listening on $t_address port $t_port (press to stop)"); - - # Say message if tentacle proxy is enable - if (defined ($t_proxy_ip)) { - print_log ("Proxy Mode enable, data will be sent to $t_proxy_ip port $t_proxy_port"); - } - - push @t_server_sockets, $t_server_socket; - } - - if (!@t_server_sockets) { - error ("Cannot open socket for all addresses on port $t_port: $!."); - } - - $t_server_select = IO::Select->new(); - foreach my $t_server_socket (@t_server_sockets){ - $t_server_select->add($t_server_socket); - } -} - -################################################################################ -## SUB send_data_proxy -## Send data to proxy socket. -################################################################################ -sub send_data_proxy { - my $data = $_[0]; - my $block_size; - my $retries = 0; - my $size; - my $total = 0; - my $written; - - $size = length ($data); - - while (1) { - - # Try to write data to the socket - if ($t_proxy_select->can_write ($t_timeout)) { - - $block_size = ($size - $total) > $t_block_size ? $t_block_size : ($size - $total); - $written = syswrite ($t_proxy_socket, $data, $size - $total, $total); - - # Write error - if (! defined ($written)) { - error ("Connection error from " . $t_proxy_socket->sockhost () . ": $!."); - } - - # EOF - if ($written == 0) { - error ("Connection from " . $t_proxy_socket->sockhost () . " unexpectedly closed."); - } - - $total += $written; - - # Check if all data was written - if ($total == $size) { - return; - } - } - # Retry - else { - $retries++; - if ($retries > $t_retries) { - error ("Connection from " . $t_proxy_socket->sockhost () . " timed out."); - } - } - } -} - -################################################################################ -## SUB close_proxy -## Close the proxy socket. -################################################################################ -sub close_proxy { - $t_proxy_socket->shutdown (2); - $t_proxy_socket->close (); -} - -################################################################################ -## SUB stop_server -## Close the server socket. -################################################################################ -sub stop_server { - - foreach my $t_server_socket (@t_server_sockets) { - $t_server_socket->shutdown (2); - $t_server_socket->close (); - } - print_log ("Server going down"); - - exit 0; -} - -################################################################################ -## SUB start_ssl -## Convert the client socket to an IO::Socket::SSL socket. -################################################################################ -sub start_ssl { - my $err; - - if ($t_ssl_ca eq '') { - IO::Socket::SSL->start_SSL ( - $t_client_socket, - SSL_cert_file => $t_ssl_cert, - SSL_key_file => $t_ssl_key, - SSL_passwd_cb => sub {return $t_ssl_pwd}, - SSL_server => 1, - # Verify peer - SSL_verify_mode => 0x01, - ); - } - else { - IO::Socket::SSL->start_SSL ( - $t_client_socket, - SSL_ca_file => $t_ssl_ca, - SSL_cert_file => $t_ssl_cert, - SSL_key_file => $t_ssl_key, - SSL_passwd_cb => sub {return $t_ssl_pwd}, - SSL_server => 1, - # Fail verification if no peer certificate exists - SSL_verify_mode => 0x03, - ); - } - - $err = IO::Socket::SSL::errstr (); - if ($err ne '') { - error ($err); - } - - print_log ("SSL started for " . $t_client_socket->sockhost ()); -} - -################################################################################ -## SUB accept_connections -## Manage incoming connections. -################################################################################ -sub accept_connections { - my $pid; - my $t_server_socket; - - # Ignore SIGPIPE - $SIG{PIPE} = 'IGNORE'; - - # Start server - start_server (); - - # Initialize semaphore - $t_sem = Thread::Semaphore->new ($t_max_conn); - - while (1) { - my @ready = $t_server_select->can_read; - foreach $t_server_socket (@ready) { - - # Accept connection - $t_client_socket = $t_server_socket->accept (); - - if (! defined ($t_client_socket)) { - next if ($! ne ''); # EINTR - error ("accept: $!."); - } - - print_info ("Client connected from " . $t_client_socket->peerhost ()); - - if ($t_use_libwrap && (! hosts_ctl($t_program_name, $t_client_socket))) { - print_log ("Connection from " . $t_client_socket->peerhost() . " is closed by tcpwrappers."); - $t_client_socket->shutdown (2); - $t_client_socket->close(); - } - else { - - # Create a new thread and serve the client - $t_sem->down(); - my $thr = threads->create(\&serve_client); - if (! defined ($thr)) { - error ("Error creating thread: $!."); - } - $thr->detach(); - $t_client_socket->close (); - } - } - - usleep (1000); - } -} - -################################################################################ -## SUB serve_client -## Serve a connected client. -################################################################################ -sub serve_client() { - - eval { - # Add client socket to select queue - $t_select = IO::Select->new (); - $t_select->add ($t_client_socket); - - # Start SSL - if ($t_ssl == 1) { - start_ssl (); - } - - # Authenticate client - if ($t_pwd ne '') { - auth_pwd (); - } - - # Check if proxy mode is enable - if (defined ($t_proxy_ip)) { - serve_proxy_connection (); - } else { - serve_connection (); - } - }; - - $t_client_socket->shutdown (2); - $t_client_socket->close (); - $t_sem->up(); -} - -################################################################################ -## SUB serve_proxy_connection -## Actuate as a proxy between its client and other tentacle server. -################################################################################ -sub serve_proxy_connection { - - # We are a proxy! Start a connection to the Tentacle Server. - start_proxy(); - - # Forward data between the client and the server. - eval { - my $select = IO::Select->new (); - $select->add($t_proxy_socket); - $select->add($t_client_socket); - while (my @ready = $select->can_read()) { - foreach my $socket (@ready) { - if (refaddr($socket) == refaddr($t_client_socket)) { - my ($read, $data) = recv_data($t_block_size); - return unless defined($data); - send_data_proxy($data); - } - else { - my ($read, $data) = recv_data_proxy($t_block_size); - return unless defined($data); - send_data($data); - } - } - } - }; - - # Close the connection to the Tentacle Server. - close_proxy(); -} - -################################################################################ -## SUB serve_connection -## Read and process commands from the client. -################################################################################ -sub serve_connection { - my $command; - - # Read commands - while ($command = recv_command ($t_block_size)) { - - # Client wants to send a file - if ($command =~ /^SEND <(.*)> SIZE (\d+)$/) { - print_info ("Request to send file '$1' size ${2}b from " . $t_client_socket->sockhost ()); - recv_file ($1, $2); - } - # Client wants to receive a file - elsif ($command =~ /^RECV <(.*)>$/) { - print_info ("Request to receive file '$1' from " . $t_client_socket->sockhost ()); - send_file ($1); - } - elsif ($command =~ /^ZSEND <(.*)> SIZE (\d+)$/) { - print_info ("Request to send compressed file '$1' size ${2}b from " . $t_client_socket->sockhost ()); - zrecv_file ($1, $2); - } - # Client wants to receive a file - elsif ($command =~ /^ZRECV <(.*)>$/) { - print_info ("Request to receive compressed file '$1' from " . $t_client_socket->sockhost ()); - zsend_file ($1); - } - # Quit - elsif ($command =~ /^QUIT$/) { - print_info ("Connection closed from " . $t_client_socket->sockhost ()); - last; - } - # File listing. - elsif ($command =~ /^LS <(.*)>$/) { - if ($t_insecure == 0) { - print_info ("Insecure mode disabled. Rejected request to list files matched by filter $1 from " . $t_client_socket->sockhost ()); - last; - } - - print_info ("Request to list files matched by filter $1 from " . $t_client_socket->sockhost ()); - send_file_list ($1); - } - # Client wants to move a file - elsif ($command =~ /^MV <(.*)>$/) { - if ($t_insecure == 0) { - print_info ("Insecure mode disabled. Rejected request to move file $1 from " . $t_client_socket->sockhost ()); - last; - } - - print_info ("Request to move file '$1' from " . $t_client_socket->sockhost ()); - move_file ($1); - } - # Unknown command - else { - print_log ("Unknown command '$command' from " . $t_client_socket->sockhost ()); - last; - } - } -} - -################################################################################ -## SUB auth_pwd -## Authenticate client with server password. -################################################################################ -sub auth_pwd { - my $client_digest; - my $command; - my $pwd_digest; - - require Digest::MD5; - - # Wait for password - $command = recv_command ($t_block_size); - if ($command !~ /^PASS (.*)$/) { - error ("Client " . $t_client_socket->sockhost () . " did not authenticate."); - } - - $client_digest = $1; - $pwd_digest = Digest::MD5::md5 ($t_pwd); - $pwd_digest = Digest::MD5::md5_hex ($pwd_digest); - - if ($client_digest ne $pwd_digest) { - error ("Invalid password from " . $t_client_socket->sockhost () . "."); - } - - print_log ("Client " . $t_client_socket->sockhost () . " authenticated"); - send_data ("PASS OK\n"); -} - -################################################################################ -## SUB recv_file -## Receive a file of size $_[1] and save it in $t_directory as $_[0]. -################################################################################ -sub recv_file { - my $base_name = $_[0]; - my $data = ''; - my $file; - my $size = $_[1]; - - # Check file name - if ($base_name =~ /[$t_invalid_chars]/) { - print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " has an invalid file name"); - send_data ("SEND ERR (invalid file name)\n"); - return; - } - - # Check file size, empty files are not allowed - if ($size < 1 || $size > $t_max_size) { - print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " is too big"); - send_data ("SEND ERR (file is too big)\n"); - return; - } - - # Apply filters - $file = "$t_directory/" . apply_filters ($base_name) . $base_name; - - # Check if file exists - if (-f $file && $t_overwrite == 0) { - print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " already exists"); - send_data ("SEND ERR (file already exists)\n"); - return; - } - - send_data ("SEND OK\n"); - - # Receive file - $data = recv_data_block ($size); - - # Write it to disk - open (FILE, "> $file") || error ("Cannot open file '$file' for writing."); - binmode (FILE); - print (FILE $data); - close (FILE); - - send_data ("SEND OK\n"); - print_info ("Received file '$base_name' size ${size}b from " . $t_client_socket->sockhost ()); -} - -################################################################################ -## SUB zrecv_file -## Receive a compressed file of size $_[1] and save it in $t_directory as $_[0]. -################################################################################ -sub zrecv_file { - my $base_name = $_[0]; - my $data = ''; - my $file; - my $size = $_[1]; - my $zdata = ''; - - # Check file name - if ($base_name =~ /[$t_invalid_chars]/) { - print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " has an invalid file name"); - send_data ("ZSEND ERR (invalid file name)\n"); - return; - } - - # Check file size, empty files are not allowed - if ($size < 1 || $size > $t_max_size) { - print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " is too big"); - send_data ("ZSEND ERR (file is too big)\n"); - return; - } - - # Apply filters - $file = "$t_directory/" . apply_filters ($base_name) . $base_name; - - # Check if file exists - if (-f $file && $t_overwrite == 0) { - print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " already exists"); - send_data ("ZSEND ERR (file already exists)\n"); - return; - } - - send_data ("ZSEND OK\n"); - - # Receive file - $zdata = recv_data_block ($size); - if (!unzip(\$zdata => \$data)) { - print_log ("Uncompress error: $UnzipError"); - send_data ("ZSEND ERR\n"); - return; - } - - # Write it to disk - open (FILE, "> $file") || error ("Cannot open file '$file' for writing."); - binmode (FILE); - print (FILE $data); - close (FILE); - - send_data ("ZSEND OK\n"); - print_info ("Received compressed file '$base_name' size ${size}b from " . $t_client_socket->sockhost ()); -} - -################################################################################ -## SUB send_file -## Send a file to the client -################################################################################ -sub send_file { - my $base_name = $_[0]; - my $data = ''; - my $file; - my $response; - my $size; - - # Check file name - if ($base_name =~ /[$t_invalid_chars]/) { - print_log ("Requested file '$base_name' from " . $t_client_socket->sockhost () . " has an invalid file name"); - send_data ("RECV ERR (file has an invalid file name)\n"); - return; - } - - # Apply filters - $file = "$t_directory/" . apply_filters ($base_name) . $base_name; - - # Check if file exists - if (! -f $file) { - print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " does not exist"); - send_data ("RECV ERR (file does not exist)\n"); - return; - } - - $size = -s $file; - send_data ("RECV SIZE $size\n"); - - # Wait for client response - $response = recv_command ($t_block_size); - if ($response ne "RECV OK") { - print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " not sent"); - return; - } - - # Send the file - open (FILE, $file) || error ("Cannot open file '$file' for reading."); - binmode (FILE); - { - local $/ = undef; - $data = ; - } - - send_data ($data); - close (FILE); - - print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " sent"); -} - -################################################################################ -## SUB zsend_file -## Send a file to the client -################################################################################ -sub zsend_file { - my $base_name = $_[0]; - my $data = ''; - my $file; - my $response; - my $size; - - # Check file name - if ($base_name =~ /[$t_invalid_chars]/) { - print_log ("Requested compressed file '$base_name' from " . $t_client_socket->sockhost () . " has an invalid file name"); - send_data ("ZRECV ERR (file has an invalid file name)\n"); - return; - } - - # Apply filters - $file = "$t_directory/" . apply_filters ($base_name) . $base_name; - - # Check if file exists - if (! -f $file) { - print_log ("Requested compressed '$file' from " . $t_client_socket->sockhost () . " does not exist"); - send_data ("ZRECV ERR (file does not exist)\n"); - return; - } - - # Read the file and compress its contents - if (! zip($file => \$data)) { - send_data ("QUIT\n"); - error ("Compression error: $ZipError"); - return; - } - - $size = length($data); - send_data ("ZRECV SIZE $size\n"); - - # Wait for client response - $response = recv_command ($t_block_size); - if ($response ne "ZRECV OK") { - print_log ("Requested compressed '$file' from " . $t_client_socket->sockhost () . " not sent"); - return; - } - - # Send the file - send_data ($data); - - print_log ("Requested compressed '$file' from " . $t_client_socket->sockhost () . " sent"); -} - -################################################################################ -# Common functions -################################################################################ - -################################################################################ -## SUB print_log -## Print log messages. -################################################################################ -sub print_log($) { - - my ($msg) = @_; - - return unless ($t_log == 1); - - my $fh = *STDOUT; - if (defined($log_file)) { - open($fh, ">>", $log_file) || die("Starting log failed: $!.\n"); - } - - print ($fh strftime ("%Y-%m-%d %H:%M:%S", localtime()) . "[log]$msg.\n"); - - close ($fh) if (defined($log_file)); - -} - -################################################################################ -## SUB print_log -## Print log messages. -################################################################################ -sub print_info($) { - - my ($msg) = @_; - - return unless ($t_log_hard == 1); - - my $fh = *STDOUT; - if (defined($log_file)) { - open($fh, ">>", $log_file) || die("Starting log failed: $!.\n"); - } - - print ($fh strftime ("%Y-%m-%d %H:%M:%S", localtime()) . "[info]$msg.\n"); - - close ($fh) if (defined($log_file)); - -} - -################################################################################ -## SUB error -## Print an error and exit the program. -################################################################################ -sub error { - - my ($msg) = @_; - - return unless ($t_quiet == 0); - - my $fh = *STDERR; - if (defined($log_file)) { - open($fh, ">>", $log_file) || die("$!\n"); - } - - print ($fh strftime ("%Y-%m-%d %H:%M:%S", localtime()) . "[err]$msg\n"); - - close ($fh) if (defined($log_file)); - - die("\n"); -} - -################################################################################ -## SUB move_file -## Send a file to the client and delete it -################################################################################ -sub move_file { - my $base_name = $_[0]; - my $data = ''; - my $file; - my $response; - my $size; - - # Check file name - if ($base_name =~ /[$t_invalid_chars]/) { - print_log ("Requested file '$base_name' from " . $t_client_socket->sockhost () . " has an invalid file name"); - send_data ("MV ERR\n"); - return; - } - - # Apply filters - $file = "$t_directory/" . apply_filters ($base_name) . $base_name; - - # Check if file exists - if (! -f $file) { - print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " does not exist"); - send_data ("MV ERR\n"); - return; - } - - $size = -s $file; - send_data ("MV SIZE $size\n"); - - # Wait for client response - $response = recv_command ($t_block_size); - if ($response ne "MV OK") { - print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " not sent"); - return; - } - - # Send the file - open (FILE, $file) || error ("Cannot open file '$file' for reading."); - binmode (FILE); - - while ($data = ) { - send_data ($data); - } - - close (FILE); - unlink($file); - - print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " sent and deleted"); -} - -################################################################################ -## SUB send_file_list -## Send a list of files to the client after applying the given filter. -################################################################################ -sub send_file_list { - my $filter = $_[0]; - my $data = ''; - my $dir; - my $dh; - my $response; - my $size; - - # Check file name - if ($filter =~ /[$t_invalid_chars]/) { - print_log ("Invalid file listing filter '$filter' from " . $t_client_socket->sockhost ()); - send_data ("LS ERR\n"); - return; - } - - # Apply filters - $dir = "$t_directory/" . apply_filters ($filter); - - # Open the directory. - if (! opendir ($dh, $dir)) { - print_log ("Error opening directory $dir as requested from " . $t_client_socket->sockhost () . ": $!"); - send_data ("LS ERR\n"); - return; - } - - # List files. - while (my $file = readdir ($dh)) { - next if ($file =~ /[$t_invalid_chars]/); # Only list files valid for Tentacle. - $data .= "$file\n"; - } - closedir $dh; - - $size = length ($data); - send_data ("LS SIZE $size\n"); - - # Wait for client response - $response = recv_command ($t_block_size); - if ($response ne "LS OK") { - print_log ("Requested directory listing from " . $t_client_socket->sockhost () . " not sent"); - return; - } - - send_data ($data); - - print_log ("Requested directory listing from " . $t_client_socket->sockhost () . " sent"); -} - -################################################################################ -## SUB recv_data_proxy -## Recv data from proxy socket. -################################################################################ -sub recv_data_proxy { - my $data; - my $read; - my $retries = 0; - my $size = $_[0]; - - while (1) { - - # Try to read data from the socket - if ($t_proxy_select->can_read ($t_timeout)) { - - # Read at most $size bytes - $read = sysread ($t_proxy_socket, $data, $size); - - # Read error - if (! defined ($read)) { - error ("Read error from " . $t_proxy_socket->sockhost () . ": $!."); - } - - # EOF - if ($read == 0) { - error ("Connection from " . $t_proxy_socket->sockhost () . " unexpectedly closed."); - } - - return ($read, $data); - } - - # Retry - $retries++; - - # But check for error conditions first - if ($retries > $t_retries) { - error ("Connection from " . $t_proxy_socket->sockhost () . " timed out."); - } - } -} -################################################################################ -## SUB recv_data -## Read data from the client socket. Returns the number of bytes read and the -## string of bytes as a two element array. -################################################################################ -sub recv_data { - my $data; - my $read; - my $retries = 0; - my $size = $_[0]; - - while (1) { - - # Try to read data from the socket - if ($t_select->can_read ($t_timeout)) { - - # Read at most $size bytes - $read = sysread ($t_client_socket, $data, $size); - - # Read error - if (! defined ($read)) { - error ("Read error from " . $t_client_socket->sockhost () . ": $!."); - } - - # EOF - if ($read == 0) { - error ("Connection from " . $t_client_socket->sockhost () . " unexpectedly closed."); - } - - return ($read, $data); - } - - # Retry - $retries++; - - # But check for error conditions first - if ($retries > $t_retries) { - error ("Connection from " . $t_client_socket->sockhost () . " timed out."); - } - } -} - -################################################################################ -## SUB send_data -## Write data to the client socket. -################################################################################ -sub send_data { - my $data = $_[0]; - my $block_size; - my $retries = 0; - my $size; - my $total = 0; - my $written; - - $size = length ($data); - - while (1) { - - # Try to write data to the socket - if ($t_select->can_write ($t_timeout)) { - - $block_size = ($size - $total) > $t_block_size ? $t_block_size : ($size - $total); - $written = syswrite ($t_client_socket, $data, $block_size, $total); - - # Write error - if (! defined ($written)) { - error ("Connection error from " . $t_client_socket->sockhost () . ": $!."); - } - - # EOF - if ($written == 0) { - error ("Connection from " . $t_client_socket->sockhost () . " unexpectedly closed."); - } - - $total += $written; - - # Check if all data was written - if ($total == $size) { - return; - } - } - # Retry - else { - $retries++; - if ($retries > $t_retries) { - error ("Connection from " . $t_client_socket->sockhost () . " timed out."); - } - } - } -} - -################################################################################ -## SUB recv_command -## Read a command from the client, ended by a new line character. -################################################################################ -sub recv_command { - my $buffer; - my $char; - my $command = ''; - my $read; - my $total = 0; - - while (1) { - - ($read, $buffer) = recv_data ($t_block_size); - $command .= $buffer; - $total += $read; - - # Check if the command is complete - $char = chop ($command); - if ($char eq "\n") { - return $command; - } - - $command .= $char; - - # Avoid overflow - if ($total > $t_block_size) { - error ("Received too much data from " . $t_client_socket->sockhost () . "."); - } - } -} - -################################################################################ -## SUB recv_data_block -## Read $_[0] bytes of data from the client. -################################################################################ -sub recv_data_block { - my $buffer = ''; - my $data = ''; - my $read; - my $size = $_[0]; - my $total = 0; - - while (1) { - - ($read, $buffer) = recv_data ($size - $total); - $data .= $buffer; - $total += $read; - - # Check if all data has been read - if ($total == $size) { - return $data; - } - } -} - -################################################################################ -## SUB ask_passwd -## Asks the user for a password. -################################################################################ -sub ask_passwd { - my $msg1 = $_[0]; - my $msg2 = $_[1]; - my $pwd1; - my $pwd2; - - require Term::ReadKey; - - # Disable keyboard echo - Term::ReadKey::ReadMode('noecho'); - - # Promt for password - print ($msg1); - $pwd1 = Term::ReadKey::ReadLine(0); - print ("\n$msg2"); - $pwd2 = Term::ReadKey::ReadLine(0); - print ("\n"); - - # Restore original settings - Term::ReadKey::ReadMode('restore'); - - if ($pwd1 ne $pwd2) { - print ("Error: passwords do not match.\n"); - exit 1; - } - - # Remove the trailing new line character - chop $pwd1; - - return $pwd1; -} - -################################################################################ -## SUB apply_filters -## Applies filters to the given file. -################################################################################ -sub apply_filters ($) { - my ($file_name) = @_; - - foreach my $filter (@t_filters) { - my ($regexp, $dir) = @{$filter}; - if ($file_name =~ /$regexp/) { - print_log ("File '$file_name' matches filter '$regexp' (changing to directory '$dir')"); - return $dir . '/'; - } - } - - return ''; -} - -################################################################################ -## SUB install_service -## Install the Windows service. -################################################################################ -sub install_service() { - - my $service_path = $0; - my $service_params = $SERVICE_PARAMS; - - # Change the service parameter from 'install' to 'run'. - $service_params =~ s/\-S\s+\S+/\-S run/; - - my %service_hash = ( - machine => '', - name => 'TENTACLESRV', - display => $SERVICE_NAME, - path => $service_path, - user => '', - pwd => '', - description => 'Tentacle Server http://sourceforge.net/projects/tentacled/', - parameters => $service_params - ); - - if (Win32::Daemon::CreateService(\%service_hash)) { - print "Successfully added.\n"; - exit 0; - } else { - print "Failed to add service: " . Win32::FormatMessage(Win32::Daemon::GetLastError()) . "\n"; - exit 1; - } -} - -################################################################################ -## SUB uninstall_service -## Install the Windows service. -################################################################################ -sub uninstall_service() { - if (Win32::Daemon::DeleteService('', 'TENTACLESRV')) { - print "Successfully deleted.\n"; - exit 0; - } else { - print "Failed to delete service: " . Win32::FormatMessage(Win32::Daemon::GetLastError()) . "\n"; - exit 1; - } -} - -################################################################################ -## SUB callback_running -## Windows service callback function for the running event. -################################################################################ -sub callback_running { - - if (Win32::Daemon::State() == WIN32_SERVICE_RUNNING) { - } -} - -################################################################################ -## SUB callback_start -## Windows service callback function for the start event. -################################################################################ -sub callback_start { - - # Accept_connections (); - my $thr = threads->create(\&accept_connections); - if (!defined($thr)) { - Win32::Daemon::State(WIN32_SERVICE_STOPPED); - Win32::Daemon::StopService(); - return; - } - $thr->detach(); - - Win32::Daemon::State(WIN32_SERVICE_RUNNING); -} - -################################################################################ -## SUB callback_stop -## Windows service callback function for the stop event. -################################################################################ -sub callback_stop { - - foreach my $t_server_socket (@t_server_sockets) { - $t_server_socket->shutdown (2); - $t_server_socket->close (); - } - - Win32::Daemon::State(WIN32_SERVICE_STOPPED); - Win32::Daemon::StopService(); -} - -################################################################################ -# Main -################################################################################ - -# Never run as root -if ($> == 0 && $^O ne 'MSWin32') { - print ("Error: for safety reasons $0 cannot be run with root privileges.\n"); - exit 1; -} - -# Parse command line options -parse_options (); - -# Check command line arguments -if ($#ARGV != -1) { - print_help (); - exit 1; -} - -# Show IPv6 status -if ($SOCKET_MODULE eq 'IO::Socket::INET') { - print_log ("IO::Socket::INET6 is not found. IPv6 is disabled."); -} - -# Run as daemon? -if ($t_daemon == 1 && $^O ne 'MSWin32') { - daemonize (); -} - -# Handle ctr-c -if ($^O eq 'MSWin32') { - no warnings; - $SIG{INT2} = \&stop_server; - use warnings; -} -else { - $SIG{INT} = \&stop_server; -} - -# Accept connections -accept_connections(); - -__END__ - -=head1 REQUIRED ARGUMENTES - -=over - -=item B<< -s F >> Root directory to store the files received by the server - -=back - -=head1 OPTIONS - -=over - -=item I<-a ip_address> Address to B on (default I<0.0.0.0>). - -=item I<-c number> B number of simultaneous B (default I<10>). - -=item I<-d> Run as B. - -=item I<-e cert> B file. Enables SSL. - -=item I<-f ca_cert> Verify that the peer certificate is signed by a B. - -=item I<-h> Show B. - -=item I<-i> B. - -=item I<-k key> B file. - -=item I<-m size> B in bytes (default I<2000000b>). - -=item I<-o> Enable file B. - -=item I<-p port> B on (default I<41121>). - -=item I<-q> B. Do now print error messages. - -=item I<-r number> B for network opertions (default I<3>). - -=item I<-t time> B for network operations in B (default I<1s>). - -=item I<-v> Be B. - -=item I<-w> Prompt for B. - -=item I<-x> pwd B. - -=back - -=head1 EXIT STATUS - -=over - -=item 0 on Success - -=item 1 on Error - -=back - -=head1 CONFIGURATION - -Tentacle doesn't use any configurationf files, all the configuration is done by the options passed when it's started. - -=head1 DEPENDENCIES - -L, L, L, L, L - - -=head1 LICENSE - -This is released under the GNU Lesser General Public License. - -=head1 SEE ALSO - -L, L, L, L, L - -Protocol description and more info at: L<< https://pandorafms.com/docs/index.php?title=Pandora:Documentation_en:Tentacle >> - -=head1 COPYRIGHT - -Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L - -=cut - diff --git a/tentacle/tentacle_server b/tentacle/tentacle_server index 8eb5aa3203..4458237003 100755 --- a/tentacle/tentacle_server +++ b/tentacle/tentacle_server @@ -5,7 +5,7 @@ # Tentacle have IANA assigned port tpc/41121 as official port. ########################################################################## # Copyright (c) 2007-2008 Ramon Novoa -# Copyright (c) 2005-2021 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2005-2022 Artica Soluciones Tecnologicas S.L # # tentacle_server.pl Tentacle Server. See https://pandorafms.com/docs/ for # protocol description. @@ -230,7 +230,6 @@ sub print_help { print ("\t-p port\t\tPort to listen on (default $t_port).\n"); print ("\t-q\t\tQuiet. Do now print error messages.\n"); print ("\t-r number\tNumber of retries for network opertions (default $t_retries).\n"); - print ("\t-s Storage directory\n"); print ("\t-S (install|uninstall|run) Manage the win32 service.\n"); print ("\t-t time\t\tTime-out for network operations in seconds (default ${t_timeout}s).\n"); print ("\t-v\t\tBe verbose (display errors).\n"); @@ -1767,6 +1766,12 @@ if ($> == 0 && $^O ne 'MSWin32') { # Parse command line options parse_options (); +# Try to open the log file. +if (defined($log_file)) { + open(my $fh, ">>", $log_file) || die("Error opening the log file '$log_file': $!.\n"); + close($fh); +} + # Check command line arguments if ($#ARGV != -1) { print_help (); diff --git a/tentacle/util/tentacle_serverd b/tentacle/util/tentacle_serverd index 0c0f35ff97..80e8364946 100755 --- a/tentacle/util/tentacle_serverd +++ b/tentacle/util/tentacle_serverd @@ -119,7 +119,6 @@ case "$1" in rc_status -v else echo "Tentacle Server could not be started." - echo "Verify that Tentacle port is not used." rc_failed 7 # program not running fi diff --git a/visual_console_client/src/Item.ts b/visual_console_client/src/Item.ts index ba3d774e39..3d32e8d61e 100644 --- a/visual_console_client/src/Item.ts +++ b/visual_console_client/src/Item.ts @@ -591,6 +591,9 @@ abstract class VisualConsoleItem { }); // Metadata state. + if (this.meta.maintenanceMode) { + box.classList.add("is-maintenance"); + } if (this.meta.editMode) { box.classList.add("is-editing"); } @@ -877,8 +880,12 @@ abstract class VisualConsoleItem { } // Change metadata related things. - if (!prevMeta || prevMeta.editMode !== this.meta.editMode) { - if (this.meta.editMode) { + if ( + !prevMeta || + prevMeta.editMode !== this.meta.editMode || + prevMeta.maintenanceMode !== this.meta.maintenanceMode + ) { + if (this.meta.editMode && this.meta.maintenanceMode === false) { this.elementRef.classList.add("is-editing"); } else { this.elementRef.classList.remove("is-editing"); diff --git a/visual_console_client/src/VisualConsole.ts b/visual_console_client/src/VisualConsole.ts index f5b2dfa054..22a8bd1f54 100644 --- a/visual_console_client/src/VisualConsole.ts +++ b/visual_console_client/src/VisualConsole.ts @@ -159,6 +159,12 @@ export interface VisualConsoleProps extends Size { backgroundColor: string | null; isFavorite: boolean; relationLineWidth: number; + maintenanceMode: MaintenanceModeInterface | null; +} + +export interface MaintenanceModeInterface { + user: string; + timestamp: number; } /** @@ -181,7 +187,8 @@ export function visualConsolePropsDecoder( backgroundURL, backgroundColor, isFavorite, - relationLineWidth + relationLineWidth, + maintenanceMode } = data; if (id == null || isNaN(parseInt(id))) { @@ -202,6 +209,7 @@ export function visualConsolePropsDecoder( backgroundColor: notEmptyStringOr(backgroundColor, null), isFavorite: parseBoolean(isFavorite), relationLineWidth: parseIntOr(relationLineWidth, 0), + maintenanceMode: maintenanceMode, ...sizePropsDecoder(data) }; } @@ -1222,6 +1230,28 @@ export default class VisualConsole { this.containerRef.classList.remove("is-editing"); } + /** + * Enable the maintenance mode. + */ + public enableMaintenanceMode(): void { + this.elements.forEach(item => { + item.meta = { ...item.meta, maintenanceMode: true }; + }); + this.containerRef.classList.add("is-maintenance"); + this.containerRef.classList.remove("is-editing"); + } + + /** + * Disable the maintenance mode. + */ + public disableMaintenanceMode(): void { + this.elements.forEach(item => { + item.meta = { ...item.meta, maintenanceMode: false }; + }); + this.containerRef.classList.remove("is-maintenance"); + this.containerRef.classList.add("is-editing"); + } + /** * Select an item. * @param itemId Item Id. diff --git a/visual_console_client/src/lib/index.ts b/visual_console_client/src/lib/index.ts index 9f24e6b14b..09d752c8fa 100644 --- a/visual_console_client/src/lib/index.ts +++ b/visual_console_client/src/lib/index.ts @@ -275,6 +275,7 @@ export function itemMetaDecoder(data: UnknownObject): ItemMeta | never { receivedAt, error, editMode: parseBoolean(data.editMode), + maintenanceMode: parseBoolean(data.maintenanceMode), isFromCache: parseBoolean(data.isFromCache), isFetching: false, isUpdating: false, diff --git a/visual_console_client/src/lib/maintenanceMode.png b/visual_console_client/src/lib/maintenanceMode.png new file mode 100644 index 0000000000..5598e26ade Binary files /dev/null and b/visual_console_client/src/lib/maintenanceMode.png differ diff --git a/visual_console_client/src/lib/spec.ts b/visual_console_client/src/lib/spec.ts index 7d052ceb1f..2ff09173d5 100644 --- a/visual_console_client/src/lib/spec.ts +++ b/visual_console_client/src/lib/spec.ts @@ -133,6 +133,7 @@ describe("itemMetaDecoder function", () => { isFetching: false, isUpdating: false, editMode: false, + maintenanceMode: false, isBeingMoved: false, isBeingResized: false, isSelected: false, @@ -154,6 +155,7 @@ describe("itemMetaDecoder function", () => { isFetching: false, isUpdating: false, editMode: true, + maintenanceMode: false, isBeingMoved: false, isBeingResized: false, isSelected: false, diff --git a/visual_console_client/src/lib/types.ts b/visual_console_client/src/lib/types.ts index 6b3a88659b..f433156943 100644 --- a/visual_console_client/src/lib/types.ts +++ b/visual_console_client/src/lib/types.ts @@ -61,5 +61,6 @@ export interface ItemMeta { isBeingMoved: boolean; isBeingResized: boolean; editMode: boolean; + maintenanceMode: boolean; lineMode: boolean; } diff --git a/visual_console_client/src/main.css b/visual_console_client/src/main.css index cdafdf0f1b..aae750bb7b 100644 --- a/visual_console_client/src/main.css +++ b/visual_console_client/src/main.css @@ -7,6 +7,14 @@ margin-top: 5px; } +.is-maintenance { + background-image: url(./lib/maintenanceMode.png) !important; +} + +.is-maintenance :nth-child(1) { + display: none; +} + .visual-console-item { position: absolute; display: flex;