// @codingStandardsIgnoreStart /* Plugin Name: UpdraftPlus - Backup/Restore Plugin URI: https://updraftplus.com Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules. Author: TeamUpdraft, DavidAnderson Version: 1.26.1 Donate link: https://david.dw-perspective.org.uk/donate License: GPLv3 or later Text Domain: updraftplus Domain Path: /languages Author URI: https://updraftplus.com */ // @codingStandardsIgnoreEnd /* Portions copyright 2011-25 David Anderson Portions copyright 2010 Paul Kehrer Other portions copyright as indicated by authors in the relevant files This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. 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 St, Fifth Floor, Boston, MA 02110-1301 USA */ if (!defined('ABSPATH')) die('No direct access allowed'); if ((isset($updraftplus) && is_object($updraftplus) && is_a($updraftplus, 'UpdraftPlus')) || function_exists('updraftplus_modify_cron_schedules')) return; // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable -- There is a possibility that the $updraftplus variable is already defined from previous process. define('UPDRAFTPLUS_DIR', dirname(__FILE__)); define('UPDRAFTPLUS_URL', plugins_url('', __FILE__)); define('UPDRAFTPLUS_PLUGIN_SLUG', plugin_basename(__FILE__)); define('UPDRAFT_DEFAULT_OTHERS_EXCLUDE', 'upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log'); define('UPDRAFT_DEFAULT_UPLOADS_EXCLUDE', 'backup*,*backups,backwpup*,wp-clone,snapshots,wp-staging'); // The following can go in your wp-config.php // Tables whose data can be skipped without significant loss, if (and only if) the attempt to back them up fails (e.g. bwps_log, from WordPress Better Security, is log data; but individual entries can be huge and cause out-of-memory fatal errors on low-resource environments). Comma-separate the table names (without the WordPress table prefix). if (!defined('UPDRAFTPLUS_DATA_OPTIONAL_TABLES')) define('UPDRAFTPLUS_DATA_OPTIONAL_TABLES', 'bwps_log,statpress,slim_stats,redirection_logs,Counterize,Counterize_Referers,Counterize_UserAgents,wbz404_logs,wbz404_redirects,tts_trafficstats,tts_referrer_stats,wponlinebackup_generations,svisitor_stat,simple_feed_stats,itsec_log,relevanssi_log,blc_instances,wysija_email_user_stat,woocommerce_sessions,et_bloom_stats,redirection_404,lbakut_activity_log,stream_meta,wfFileMods,wffilemods,wfBlockedIPLog,wfblockediplog,page_visit_history,strack_st'); if (!defined('UPDRAFTPLUS_ZIP_EXECUTABLE')) define('UPDRAFTPLUS_ZIP_EXECUTABLE', "/usr/bin/zip,/bin/zip,/usr/local/bin/zip,/usr/sfw/bin/zip,/usr/xdg4/bin/zip,/opt/bin/zip"); if (!defined('UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE')) define('UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE', updraftplus_build_mysqldump_list()); // If any individual file size is greater than this, then a warning is given if (!defined('UPDRAFTPLUS_WARN_FILE_SIZE')) define('UPDRAFTPLUS_WARN_FILE_SIZE', 1024*1024*250); // On a test on a Pentium laptop, 100,000 rows needed ~ 1 minute to write out - so 150,000 is around the CPanel default of 90 seconds execution time. if (!defined('UPDRAFTPLUS_WARN_DB_ROWS')) define('UPDRAFTPLUS_WARN_DB_ROWS', 150000); // The smallest value (in megabytes) that the "split zip files at" setting is allowed to be set to if (!defined('UPDRAFTPLUS_SPLIT_MIN')) define('UPDRAFTPLUS_SPLIT_MIN', 25); // The maximum number of files to batch at one time when writing to the backup archive. You'd only be likely to want to raise (not lower) this. if (!defined('UPDRAFTPLUS_MAXBATCHFILES')) define('UPDRAFTPLUS_MAXBATCHFILES', 1000); // If any individual email attachment is greater than this, then a warning is given (and then removed if the email actually succeeds) if (!defined('UPDRAFTPLUS_WARN_EMAIL_SIZE')) define('UPDRAFTPLUS_WARN_EMAIL_SIZE', 20*1048576); // Filetypes that should be stored inside the zip without any attempt at further compression. By default, we mark several extensions that refer to filetypes that are already compressed as not needing further compression - which saves time/resources. This option only applies to zip engines that support varying the compression method. Specify in lower-case, and upper-case variants (and for some zip engines, all variants) will automatically be included. if (!defined('UPDRAFTPLUS_ZIP_NOCOMPRESS')) define('UPDRAFTPLUS_ZIP_NOCOMPRESS', '.jpg,.jpeg,.png,.gif,.zip,.gz,.bz2,.xz,.rar,.mp3,.mp4,.mpeg,.avi,.mov'); // This is passed to set_time_limit() at various points, to try to maximise run-time. (UD resumes if it gets killed, but more in one stretch always helps). The effect of this varies according to the hosting setup - it can't necessarily always be controlled. if (!defined('UPDRAFTPLUS_SET_TIME_LIMIT')) define('UPDRAFTPLUS_SET_TIME_LIMIT', 900); // Options to pass to the zip binary (if that method happens to be used). By default, we mark the extensions specified in UPDRAFTPLUS_ZIP_NOCOMPRESS for non-compression via the -n flag if (!defined('UPDRAFTPLUS_BINZIP_OPTS')) { $zip_nocompress = array_map('trim', explode(',', UPDRAFTPLUS_ZIP_NOCOMPRESS)); $zip_binzip_opts = ''; foreach ($zip_nocompress as $ext) { if (empty($zip_binzip_opts)) { $zip_binzip_opts = "-n $ext:".strtoupper($ext); } else { $zip_binzip_opts .= ':'.$ext.':'.strtoupper($ext); } } define('UPDRAFTPLUS_BINZIP_OPTS', $zip_binzip_opts); } /** * A wrapper for (require|include)(_once)? that will first check for existence, and direct the user what to do (since the traditional PHP error messages aren't clear enough for all users) * * @param String $path the file path to check * @param String $method the method to load the file */ function updraft_try_include_file($path, $method = 'include') { $file_to_include = UPDRAFTPLUS_DIR.'/'.$path; if (!file_exists($file_to_include)) { // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped,WordPress.PHP.DevelopmentFunctions.error_log_trigger_error -- Error message to be printed when it is caught. trigger_error( sprintf( /* translators: %s: File along with full path. */ __('The expected file %s is missing from your UpdraftPlus installation.', 'updraftplus').' '. __('Most likely, WordPress did not correctly unpack the plugin when installing it.', 'updraftplus').' '.__('You should de-install and then re-install the plugin (your settings and data will be retained).', 'updraftplus'), $file_to_include ), E_USER_WARNING ); // phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped,WordPress.PHP.DevelopmentFunctions.error_log_trigger_error } if ('include' === $method) { include($file_to_include); } elseif ('include_once' === $method) { include_once($file_to_include); } elseif ('require' === $method) { require($file_to_include); // phpcs:ignore PEAR.Files.IncludingFile.UseInclude -- File required intentionally. } else { require_once($file_to_include); } } // Load add-ons and files that may or may not be present, depending on where the plugin was distributed if (is_file(UPDRAFTPLUS_DIR.'/autoload.php')) updraft_try_include_file('autoload.php', 'require_once'); /** * Get cron schedules list of our own * DEVELOPER NOTES: Intervals should be presented in chronological order of time because we also use this list for ordering purpose especially when merging WP default intervals to ours * * @return Boolean The list of our own schedules */ function updraftplus_list_cron_schedules() { global $wp_current_filter; // To prevent "_load_textdomain_just_in_time was called incorrectly" warning if (((function_exists('doing_action') && !doing_action('after_setup_theme')) || !in_array('after_setup_theme', $wp_current_filter, true)) && !did_action('after_setup_theme')) { $every_particular_hour_label = 'Every %s hours'; $every_hour = 'Every hour'; } else { /* translators: %s: Number of Hours. */ $every_particular_hour_label = __('Every %s hours', 'updraftplus'); $every_hour = __('Every hour', 'updraftplus'); } return array( 'everyhour' => array( 'interval' => 3600, 'display' => apply_filters('updraftplus_cron_schedule_description', $every_hour, 'everyhour'), ), 'every2hours' => array( 'interval' => 7200, 'display' => apply_filters('updraftplus_cron_schedule_description', sprintf($every_particular_hour_label, '2'), 'every2hours'), ), 'every4hours' => array( 'interval' => 14400, 'display' => apply_filters('updraftplus_cron_schedule_description', sprintf($every_particular_hour_label, '4'), 'every4hours'), ), 'every8hours' => array( 'interval' => 28800, 'display' => apply_filters('updraftplus_cron_schedule_description', sprintf($every_particular_hour_label, '8'), 'every8hours'), ), 'twicedaily' => array( 'interval' => 43200, 'display' => apply_filters('updraftplus_cron_schedule_description', sprintf($every_particular_hour_label, '12'), 'twicedaily'), ), 'daily' => array( 'interval' => 86400, 'display' => apply_filters('updraftplus_cron_schedule_description', __('Daily'), 'daily'), ), 'weekly' => array( 'interval' => 604800, 'display' => apply_filters('updraftplus_cron_schedule_description', __('Weekly'), 'weekly'), ), 'fortnightly' => array( 'interval' => 1209600, 'display' => apply_filters('updraftplus_cron_schedule_description', __('Fortnightly'), 'fortnightly'), ), 'monthly' => array( 'interval' => 2592000, 'display' => apply_filters('updraftplus_cron_schedule_description', __('Monthly'), 'monthly'), ), ); } if (!function_exists('updraftplus_modify_cron_schedules')) : /** * wp-cron only has hourly, daily and twicedaily, so we need to add some of our own * * @param array $schedules an array of schedule types * @return array cron schedules which contains schedules of our own */ function updraftplus_modify_cron_schedules($schedules) { return array_merge($schedules, updraftplus_list_cron_schedules()); } endif; // http://codex.wordpress.org/Plugin_API/Filter_Reference/cron_schedules. Raised priority because some plugins wrongly over-write all prior schedule changes (including BackupBuddy!) add_filter('cron_schedules', 'updraftplus_modify_cron_schedules', 30); // The checks here before loading are for performance only - unless one of those conditions is met, then none of the hooks will ever be used if (!is_admin() && (!defined('DOING_CRON') || !DOING_CRON) && (!defined('XMLRPC_REQUEST') || !XMLRPC_REQUEST) && empty($_SERVER['SHELL']) && empty($_POST['udrpc_message']) && empty($_GET['udcentral_action']) && (defined('UPDRAFTPLUS_THIS_IS_CLONE') && '1' != UPDRAFTPLUS_THIS_IS_CLONE) && empty($_GET['uc_auto_login']) && (empty($_SERVER['REQUEST_METHOD']) || 'OPTIONS' != $_SERVER['REQUEST_METHOD']) && (!defined('WP_CLI') || !WP_CLI)) { // phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.NonceVerification.Recommended -- False positive: nonce verification not required here. // There is no good way to work out if the cron event is likely to be called under the ALTERNATE_WP_CRON system, other than re-running the calculation // If ALTERNATE_WP_CRON is not active (and a few other things), then we are done if (!defined('ALTERNATE_WP_CRON') || !ALTERNATE_WP_CRON || !empty($_POST) || defined('DOING_AJAX') || isset($_GET['doing_wp_cron'])) return; // phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.NonceVerification.Recommended -- False positive: nonce verification not required here. // The check below is the one used by spawn_cron() to decide whether cron events should be run $gmt_time = microtime(true); $lock = get_transient('doing_cron'); if ($lock > $gmt_time + 10 * 60) $lock = 0; if ((defined('WP_CRON_LOCK_TIMEOUT') && $lock + WP_CRON_LOCK_TIMEOUT > $gmt_time) || (!defined('WP_CRON_LOCK_TIMEOUT') && $lock + 60 > $gmt_time)) return; if (function_exists('_get_cron_array')) { $crons = _get_cron_array(); } else { $crons = get_option('cron'); } if (!is_array($crons)) return; $keys = array_keys($crons); if (isset($keys[0]) && $keys[0] > $gmt_time) return; // If we got this far, then cron is going to be fired, so we do want to load all our hooks } $updraftplus_have_addons = 0; if (is_dir(UPDRAFTPLUS_DIR.'/addons') && $dir_handle = opendir(UPDRAFTPLUS_DIR.'/addons')) { while (false !== ($e = readdir($dir_handle))) { if (is_file(UPDRAFTPLUS_DIR.'/addons/'.$e) && preg_match('/\.php$/', $e)) { // We used to have 1024 bytes here - but this meant that if someone's site was hacked and a lot of code added at the top, and if they were running a too-low PHP version, then they might just see the symptom rather than the cause - and raise the support request with us. $header = file_get_contents(UPDRAFTPLUS_DIR.'/addons/'.$e, false, null, 0, 16384); $phprequires = preg_match("/RequiresPHP: (\d[\d\.]+)/", $header, $matches) ? $matches[1] : false; $phpinclude = preg_match("/IncludePHP: (\S+)/", $header, $matches) ? $matches[1] : false; if (false === $phprequires || version_compare(PHP_VERSION, $phprequires, '>=')) { $updraftplus_have_addons++; if ($phpinclude) updraft_try_include_file(''.$phpinclude, 'include_once'); updraft_try_include_file('addons/'.$e, 'include_once'); } unset($header); } } @closedir($dir_handle);// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged -- Silenced to suppress errors that may arise because of the function. } if (is_file(UPDRAFTPLUS_DIR.'/udaddons/updraftplus-addons.php')) updraft_try_include_file('udaddons/updraftplus-addons.php', 'require_once'); if (!file_exists(UPDRAFTPLUS_DIR.'/class-updraftplus.php') || !file_exists(UPDRAFTPLUS_DIR.'/options.php')) { /** * Warn if they've not got the whole plugin - can happen if WP crashes (e.g. out of disk space) when upgrading the plugin */ function updraftplus_incomplete_install_warning() { echo '

'.esc_html(__('Error', 'updraftplus')).': '.esc_html(__('You do not have UpdraftPlus completely installed - please de-install and install it again.', 'updraftplus').' '.__('Most likely, WordPress malfunctioned when copying the plugin files.', 'updraftplus')).' '.esc_html__('Go here for more information.', 'updraftplus').'

'; } add_action('all_admin_notices', 'updraftplus_incomplete_install_warning'); } else { updraft_try_include_file('class-updraftplus.php', 'include_once'); $updraftplus = new UpdraftPlus(); $GLOBALS['updraftplus'] = $updraftplus; $updraftplus->have_addons = $updraftplus_have_addons; if (!$updraftplus->memory_check(192)) { // Experience appears to show that the memory limit is only likely to be hit (unless it is very low) by single files that are larger than available memory (when compressed) // Add sanity checks - found someone who'd set WP_MAX_MEMORY_LIMIT to 256K ! if (!$updraftplus->memory_check($updraftplus->memory_check_current(WP_MAX_MEMORY_LIMIT))) { $new = absint($updraftplus->memory_check_current(WP_MAX_MEMORY_LIMIT)); if ($new>32 && $new<100000) { @ini_set('memory_limit', $new.'M');// phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged,Squiz.PHP.DiscouragedFunctions.Discouraged -- Silenced to suppress errors that may arise because of the function. Safely using discouraged function ini_set(). } } } // Blocking updates during restore; placed here so that it still runs e.g. under WP-CLI $updraftplus->block_updates_during_restore_progress(); } // Ubuntu bug - https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1315888 if (!function_exists('gzopen') && function_exists('gzopen64')) { function gzopen($filename, $mode, $use_include_path = 0) { return gzopen64($filename, $mode, $use_include_path); } } /** * For finding mysqldump. Added to include Windows locations. */ function updraftplus_build_mysqldump_list() { if ('win' == strtolower(substr(PHP_OS, 0, 3)) && function_exists('glob')) { $drives = array('C', 'D', 'E'); if (!empty($_SERVER['DOCUMENT_ROOT'])) { // Get the drive that this is running on $current_drive = strtoupper(substr($_SERVER['DOCUMENT_ROOT'], 0, 1)); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Sanitization not needed as we are extracting only first letter and using it. if (!in_array($current_drive, $drives)) array_unshift($drives, $current_drive); } $directories = array(); foreach ($drives as $drive_letter) { $dir = glob("$drive_letter:\\{Program Files\\MySQL\\{,MySQL*,etc}{,\\bin,\\?},mysqldump}\\mysqldump*", GLOB_BRACE); if (is_array($dir)) $directories = array_merge($directories, $dir); } $drive_string = implode(',', $directories); return $drive_string; } else { return "/usr/bin/mysqldump,/bin/mysqldump,/usr/local/bin/mysqldump,/usr/sfw/bin/mysqldump,/usr/xdg4/bin/mysqldump,/opt/bin/mysqldump"; } } // Do this even if the missing files detection above fired, as the "missing files" detection above has a greater chance of showing the user useful info if (!class_exists('UpdraftPlus_Options')) updraft_try_include_file('options.php', 'require_once'); /*! elementor - v3.12.2 - 23-04-2023 */ @import "//fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"; @import "//fonts.googleapis.com/css2?family=DM%20Sans&display=swap"; @import "//fonts.googleapis.com/css2?family=Source%20Serif%20Pro&display=swap"; :root { --color-box-shadow-color: rgba(0, 0, 0, 0.05); } .eps-theme-dark { --color-box-shadow-color: rgba(0, 0, 0, 0.1); } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } @media screen and (min-width: 480px) { .text-start-sm { text-align: start; } } @media screen and (min-width: 480px) { .text-center-sm { text-align: center; } } @media screen and (min-width: 480px) { .text-end-sm { text-align: end; } } @media screen and (min-width: 768px) { .text-start-md { text-align: start; } } @media screen and (min-width: 768px) { .text-center-md { text-align: center; } } @media screen and (min-width: 768px) { .text-end-md { text-align: end; } } @media screen and (min-width: 1025px) { .text-start-lg { text-align: start; } } @media screen and (min-width: 1025px) { .text-center-lg { text-align: center; } } @media screen and (min-width: 1025px) { .text-end-lg { text-align: end; } } @media screen and (min-width: 1440px) { .text-start-xl { text-align: start; } } @media screen and (min-width: 1440px) { .text-center-xl { text-align: center; } } @media screen and (min-width: 1440px) { .text-end-xl { text-align: end; } } @media screen and (min-width: 1600px) { .text-start-xxl { text-align: start; } } @media screen and (min-width: 1600px) { .text-center-xxl { text-align: center; } } @media screen and (min-width: 1600px) { .text-end-xxl { text-align: end; } } @keyframes eps-animation-pop { from { transform: scale(0.75); opacity: 0; } to { transform: scale(1); opacity: 1; } } /** TODO: The molecules, atoms and such generics should be at top level, so the styles will be not depended on the order. EG: '../../../app/assets/styles/generic'. Auto-import is designed for CSS that not dependent on the loading order. */ .eps-button { display: inline-flex; --button-line-height: 16px; --button-padding-y: 0.5em; --button-padding-x: 1.5em; --button-primary-background-color: #F3BAFD; --button-primary-hover-background-color: #F5D0FE; --button-primary-active-background-color: #F3BAFD; --button-primary-color: #0C0D0E; --button-secondary-background-color: #69727D; --button-secondary-hover-background-color: #525961; --button-secondary-active-background-color: #3a3f46; --button-secondary-color: #ffffff; --button-danger-background-color: #DC2626; --button-danger-hover-background-color: #b21d1d; --button-danger-active-background-color: #861616; --button-danger-color: #ffffff; --button-cta-background-color: #524CFF; --button-cta-hover-background-color: #2119ff; --button-cta-active-background-color: #0800e5; --button-cta-color: #ffffff; --button-brand-background-color: #524CFF; --button-brand-hover-background-color: #2119ff; --button-brand-active-background-color: #0800e5; --button-brand-color: #ffffff; --button-link-background-color: #515962; --button-link-hover-background-color: #3a4046; --button-link-active-background-color: #23262a; --button-link-color: #ffffff; --button-disabled-background-color: #D5D8DC; --button-disabled-hover-background-color: #b9bec5; --button-disabled-active-background-color: #9da4ae; --button-disabled-color: #ffffff; color: var(--button-background-color, currentColor); font-size: var(--button-font-size, inherit); font-weight: 500; line-height: var(--button-line-height); transition: var(--e-a-transition-hover); cursor: pointer; } .eps-button:active { --button-background-color: var(--button-active-background-color, transparent); } .eps-button:hover { --button-background-color: var(--button-hover-background-color); } .eps-theme-dark .eps-button { --button-primary-background-color: #F3BAFD; --button-primary-color: #0C0D0E; --button-primary-hover-background-color: #EB8EFB; --button-primary-active-background-color: #F3BAFD; --button-secondary-background-color: #BABFC5; --button-secondary-color: #fff; --button-secondary-hover-background-color: #9ea5ae; --button-secondary-active-background-color: #838c96; --button-cta-background-color: #524CFF; --button-cta-hover-background-color: #2119ff; --button-cta-active-background-color: #0800e5; --button-cta-color: #fff; --button-brand-hover-background-color: #2119ff; --button-brand-active-background-color: #0800e5; --button-brand-color: #fff; --button-brand-background-color: #524CFF; --button-link-background-color: #515962; --button-link-hover-background-color: #3a4046; --button-link-active-background-color: #23262a; --button-link-color: #ffffff; --button-disabled-background-color: #69727D; --button-disabled-hover-background-color: #525961; --button-disabled-active-background-color: #3a3f46; --button-disabled-color: #fff; } .eps-button--contained { color: var(--button-color); padding: var(--button-padding-y) var(--button-padding-x); background-color: var(--button-background-color, transparent); border: 1px solid var(--button-background-color); } .eps-button--contained:hover { color: var(--button-color); } .eps-button--outlined { display: block; padding: var(--button-padding-y) var(--button-padding-x); border: 1px solid var(--button-background-color); } .eps-button--contained, .eps-button--outlined { border-radius: 0.1875rem; } .eps-button--underlined { text-decoration: underline; } .eps-button--sm { --button-font-size: 0.75rem; --button-line-height: 14px; } .eps-button--lg { --button-font-size: 0.9375rem; --button-line-height: 18px; } .eps-button--primary { --button-color: var(--button-primary-color); --button-background-color: var(--button-primary-background-color); --button-hover-background-color: var(--button-primary-hover-background-color); --button-active-background-color: var(--button-primary-active-background-color); } .eps-button--secondary { --button-color: var(--button-secondary-color); --button-background-color: var(--button-secondary-background-color); --button-hover-background-color: var(--button-secondary-hover-background-color); --button-active-background-color: var(--button-secondary-active-background-color); } .eps-button--danger { --button-color: var(--button-danger-color); --button-background-color: var(--button-danger-background-color); --button-hover-background-color: var(--button-danger-hover-background-color); --button-active-background-color: var(--button-danger-active-background-color); } .eps-button--cta { --button-color: var(--button-brand-color); --button-background-color: var(--button-cta-background-color); --button-hover-background-color: var(--button-cta-hover-background-color); --button-active-background-color: var(--button-cta-active-background-color); } .eps-button--brand { --button-color: var(--button-cta-color); --button-background-color: var(--button-cta-background-color); --button-hover-background-color: var(--button-cta-hover-background-color); --button-active-background-color: var(--button-cta-active-background-color); } .eps-button--link { --button-color: var(--button-link-color); --button-background-color: var(--button-link-background-color); --button-hover-background-color: var(--button-link-hover-background-color); --button-active-background-color: var(--button-link-active-background-color); } .eps-button--disabled, .eps-button[disabled] { --button-color: var(--button-disabled-color); --button-background-color: var(--button-disabled-background-color); --button-hover-background-color: var(--button-disabled-hover-background-color); --button-active-background-color: var(--button-disabled-active-background-color); cursor: default; } :root { --app-background-color: #ffffff; --app-box-shadow-color: rgba(var(--box-shadow-color, rgba(0, 0, 0, 0.15)), 0.2); --app-header-color: #1A1C1E; --app-logo-color: #ffffff; --app-logo-background-color: #0C0D0E; --app-title-color: #0C0D0E; --app-header-buttons-separator-color: #9DA5AE; --app-header-buttons-color: #515962; --app-header-buttons-color-hover: #0C0D0E; --app-lightbox-background-color: rgba(0, 0, 0, 0.8); } .eps-theme-dark { --app-background-color: #1A1C1E; --app-box-shadow-color: rgba(var(--box-shadow-color, rgba(0, 0, 0, 0.15)), 0.2); --app-header-color: #D5D8DC; --app-logo-color: #0C0D0E; --app-logo-background-color: #ffffff; --app-title-color: #fff; --app-header-buttons-separator-color: #818A96; --app-header-buttons-color: #BABFC5; --app-header-buttons-color-hover: #9DA5AE; --app-lightbox-background-color: rgba(0, 0, 0, 0.8); } :root { --text-muted: #BABFC5; --disabled: #D5D8DC; --light: #ffffff; --dark: #000000; --cta: #524CFF; --brand: #524CFF; --accent: #F3BAFD; --primary: #524CFF; --primary-bg: #FAE8FF; --secondary: #515962; --info: #2563EB; --info-bg: #F0F7FF; --danger: #DC2626; --danger-bg: #FEF1F4; --success: #0A875A; --success-bg: #F2FDF5; --warning: #F59E0B; --warning-bg: #FFFBEB; --body-color: #515962; --body-bg: #ffffff; --link-color: #515962; --link-hover-color: #2e3338; --hr-color: #E6E8EA; --box-shadow-color: theme-colors(dark); --display-1-color: #515962; --display-2-color: #515962; --display-3-color: #515962; --display-4-color: #515962; --h1-color: #515962; --h2-color: #515962; --h3-color: #515962; --h4-color: #515962; --h5-color: #515962; --h6-color: #515962; --text-base-color: #515962; --text-xl-color: #515962; --text-lg-color: #515962; --text-sm-color: #515962; --text-xs-color: #515962; --text-xxs-color: #515962; --gray-900: #0C0D0E; --gray-800: #1A1C1E; --gray-750: #222325; --gray-725: #2F3032; --gray-700: #3A3F45; --gray-600: #515962; --gray-500: #69727D; --gray-400: #818A96; --gray-300: #9DA5AE; --gray-200: #BABFC5; --gray-100: #D5D8DC; --gray-75: #E6E8EA; --gray-50: #F1F2F3; --gray-25: #F9FAFA; } .eps-theme-dark { --text-muted: #818A96; --disabled: #69727D; --light: #fff; --dark: #000; --accent: #524CFF; --cta: #524CFF; --brand: #524CFF; --success: #39b54a; --success-bg: #032317; --info: #0077CC; --info-bg: #0A1A3D; --warning: #fcb92c; --warning-bg: #311808; --danger: #F84343; --danger-bg: #390A0A; --body-color: #BABFC5; --body-bg: #1A1C1E; --link-color: #0077CC; --link-hover-color: #2e3338; --hr-color: #2F3032; --box-shadow-color: rgba(0, 0, 0, 0.15); --display-1-color: #BABFC5; --display-2-color: #BABFC5; --display-3-color: #BABFC5; --display-4-color: #BABFC5; --h1-color: #BABFC5; --h2-color: #BABFC5; --h3-color: #BABFC5; --h4-color: #BABFC5; --h5-color: #BABFC5; --h6-color: #BABFC5; --text-base-color: #BABFC5; --text-xl-color: #BABFC5; --text-lg-color: #BABFC5; --text-sm-color: #BABFC5; --text-xs-color: #BABFC5; --text-xxs-color: #BABFC5; --gray-900: #0C0D0E; --gray-800: #1A1C1E; --gray-750: #222325; --gray-725: #2F3032; --gray-700: #3A3F45; --gray-600: #515962; --gray-500: #69727D; --gray-400: #818A96; --gray-300: #9DA5AE; --gray-200: #BABFC5; --gray-100: #D5D8DC; --gray-75: #E6E8EA; --gray-50: #F1F2F3; --gray-25: #F9FAFA; } *, *::before, *::after { box-sizing: border-box; } html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } body { margin: 0; font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; font-size: 0.875rem; font-weight: 400; line-height: 1.5; color: var(--body-color); background-color: var(--body-bg); } [tabindex="-1"]:focus:not(:focus-visible) { outline: 0 !important; } h1, h2, h3, h4, h5, h6 { font-size: 100%; margin: 0; padding: 0; line-height: inherit; font-weight: normal; } p { margin-top: 0; } b, strong { font-weight: 700; } small { font-size: 80%; } a { --eps-link-color: $eps-link-color; color: var(--eps-link-color); background-color: transparent; } a, a:active, a:hover, a:focus { text-decoration: none; } a:focus, a:hover { --eps-link-color: $eps-link-hover-color; text-decoration: none; } a:not([href]) { color: inherit; text-decoration: none; } a:not([href]):hover { color: inherit; text-decoration: none; } pre, code, kbd, samp { font-family: monospace; font-size: 1em; } figure { margin: 0 0 0; } img { vertical-align: middle; border-style: none; } svg { overflow: hidden; vertical-align: middle; } button { border-radius: 0; } button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; } input, button, select, optgroup, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; } button, input { overflow: visible; } button, select { text-transform: none; } [role=button] { cursor: pointer; } select { word-wrap: normal; } button, [type=button], [type=reset], [type=submit] { -webkit-appearance: button; -moz-appearance: button; appearance: button; } button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) { cursor: pointer; } input[type=radio], input[type=checkbox] { box-sizing: border-box; padding: 0; } textarea { overflow: auto; resize: vertical; } [hidden] { display: none !important; } hr { border: 0 none; border-bottom: 1px solid var(--hr-color); } .eps-display-1 { font-size: 1.85rem; color: var(--display-1-color); margin-top: 0.5rem; margin-bottom: 0.5rem; } .eps-display-2 { font-size: 1.85rem; color: var(--display-2-color); margin-top: 0.5rem; margin-bottom: 0.5rem; } .eps-display-3 { font-size: 1.85rem; color: var(--display-3-color); margin-top: 0; margin-bottom: 1.25rem; } .eps-display-4 { font-size: 1.85rem; color: var(--display-4-color); margin-top: 0.5rem; margin-bottom: 0.5rem; } h1, .eps-h1 { font-size: 1.625rem; line-height: 1; color: var(--h1-color); margin-bottom: 1.25rem; font-weight: 500; } h2, .eps-h2 { font-size: 1.25rem; line-height: 1.2; color: var(--h2-color); margin-top: 0; margin-bottom: 1.25rem; font-weight: 500; } h3, .eps-h3 { font-size: 1rem; line-height: 1.2; color: var(--h3-color); margin-top: 0; margin-bottom: 0.5rem; font-weight: 500; } h4, .eps-h4 { font-size: 0.9375rem; color: var(--h4-color); margin-top: 0; margin-bottom: 0.5rem; } h5, .eps-h5 { font-size: 0.875rem; color: var(--h5-color); margin-top: 0; margin-bottom: 0.5rem; } h6, .eps-h6 { font-size: 0.875rem; color: var(--h-6-color); margin-top: 0; margin-bottom: 0.5rem; font-weight: 700; } .eps-text-xxs { font-size: 0.75rem; line-height: 1.2; color: var(--text-xxs-color); font-weight: 400; } .eps-text-xs { font-size: 0.75rem; line-height: 1.5; color: var(--text-xs-color); font-weight: 400; } .eps-text { font-size: 0.875rem; line-height: 1.5; color: var(--text-base-color); font-weight: 400; } .eps-text-sm { font-size: 0.8125rem; line-height: 1.5; color: var(--text-sm-color); font-weight: 400; } .eps-text-lg { font-size: 0.9375rem; line-height: 1.5; color: var(--text-lg-color); font-weight: 400; } .eps-text-xl { font-size: 1rem; line-height: 1.5; color: var(--text-xl-color); font-weight: 400; } .video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; } .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .eps-separator { margin-bottom: 2.75rem; } .eps-theme-dark { --e-app-back-button-color: #BABFC5; } .back-button, .e-app-back-button { --button-background-color: var(--e-app-back-button-color, #69727D); margin-bottom: 1.5rem; } .back-button .eps-icon, .e-app-back-button .eps-icon { -webkit-margin-end: 0.3125rem; margin-inline-end: 0.3125rem; } .eps-theme-dark { --input-border-color: --hr-color; } .eps-input { border: 1px solid var(--hr-color); border-radius: 0.1875rem; background: transparent; color: inherit; height: 1.875rem; padding: 0 0.3125rem; } .eps-input--block { width: 100%; } .eps-app { display: flex; height: 100vh; flex-direction: column; color: var(--body-color); background-color: var(--app-background-color); position: absolute; border-radius: 0; box-shadow: 2px 8px 23px 3px var(--color-box-shadow-color); overflow: hidden; font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; width: 100%; max-width: 100%; } .eps-app__lightbox { display: flex; align-items: center; justify-content: center; position: fixed; height: 100%; width: 100%; background-color: var(--app-lightbox-background-color); z-index: 1040; bottom: 0; left: 0; } .eps-app__header { flex-shrink: 0; font-size: 0.9375rem; border-bottom: var(--e-a-border); position: relative; z-index: 3; height: 3.125rem; padding: 0 1rem; } .eps-app__header-buttons { display: flex; align-items: center; flex-direction: row-reverse; font-size: 1.125rem; } .eps-app__header-btn { -webkit-padding-start: 1rem; padding-inline-start: 1rem; font-size: 1.125rem; line-height: 1.25rem; } .eps-app__header-btn:hover { color: var(--app-header-buttons-color-hover); } .eps-app__header-btn:first-child { -webkit-border-start: 1px solid var(--app-header-buttons-separator-color); border-inline-start: 1px solid var(--app-header-buttons-separator-color); } .eps-app__header-btn:not(:first-child) { -webkit-padding-end: 1rem; padding-inline-end: 1rem; } .eps-app__logo-title-wrapper { display: flex; align-items: center; } .eps-app__logo { display: block; width: 1.75rem; height: 1.75rem; line-height: 1.75rem; text-align: center; font-size: calc(0.4 * 1.75rem); border-radius: 50%; color: var(--app-logo-color); background-color: var(--app-logo-background-color); } .eps-app__logo:not(:last-child) { -webkit-margin-end: 0.625rem; margin-inline-end: 0.625rem; } .eps-app__title { color: var(--app-title-color); font-size: 0.9375rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0; } .eps-app__main { display: flex; overflow: hidden; flex-grow: 1; } .eps-app__sidebar { background-color: var(--app-sidebar-background-color); padding-top: 1.25rem; width: 30%; max-width: 17.1875rem; -webkit-border-end: var(--e-a-border); border-inline-end: var(--e-a-border); flex-grow: 0; overflow-y: auto; z-index: 4; } .eps-app__content { flex-grow: 1; position: relative; padding: 2.75rem; height: 100%; overflow-y: auto; } .e-app-upload-file__input { display: none; } .e-app-drop-zone { --e-app-drop-zone-text-color: #69727D; --e-app-drop-zone-secondary-text-color: #515962; } .e-app-drop-zone__icon { margin-bottom: 2.75rem; font-size: 60px; } .e-app-drop-zone__text { color: var(--e-app-drop-zone-text-color); } .e-app-drop-zone__secondary-text { color: var(--e-app-drop-zone-secondary-text-color); } .eps-theme-dark .e-app-drop-zone { --e-app-drop-zone-text-color: #BABFC5; --e-app-drop-zone-secondary-text-color: #D5D8DC; } :root { --info-toggle-color: #9DA5AE; --info-toggle-hover-color: #69727D; } .eps-theme-dark { --placeholder-filter: invert(0.8) sepia(1) saturate(0.2) hue-rotate(180deg) contrast(1.25) brightness(1.2); --info-toggle-color: #818A96; --info-toggle-hover-color: #BABFC5; } .e-site-part .eps-card__image { filter: var(--placeholder-filter, none); } .e-site-part__info-toggle { color: var(--info-toggle-color); } .e-site-part__info-toggle:hover { --info-toggle-color: var(--info-toggle-hover-color); } .e-site-editor__header { margin-bottom: 2.75rem; border-bottom: 1px solid var(--hr-color); } :root { --e-elementor-loader-color: #ffffff; --e-elementor-loader-wrapper-color: #F9FAFA; --e-elementor-loader-box-color: #E6E8EA; } .eps-theme-dark { --e-elementor-loader-color: #1A1C1E; --e-elementor-loader-wrapper-color: #222325; --e-elementor-loader-box-color: #3A3F45; } .elementor-loading { background-color: var(--e-elementor-loader-color); height: 100vh; } .elementor-loader-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; display: flex; flex-wrap: wrap; justify-content: center; } .elementor-loader { border-radius: 50%; padding: 40px; height: 150px; width: 150px; background-color: var(--e-elementor-loader-wrapper-color); box-sizing: border-box; box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.02); } .elementor-loader-boxes { height: 100%; width: 100%; position: relative; } .elementor-loader-box { position: absolute; background-color: var(--e-elementor-loader-box-color); animation: load 1.8s linear infinite; } .elementor-loader-box:nth-of-type(1) { width: 20%; height: 100%; left: 0; top: 0; } .elementor-loader-box:not(:nth-of-type(1)) { right: 0; height: 20%; width: 60%; } .elementor-loader-box:nth-of-type(2) { top: 0; animation-delay: calc( 1.8s / 4 * -1 ); } .elementor-loader-box:nth-of-type(3) { top: 40%; animation-delay: calc( 1.8s / 4 * -2 ); } .elementor-loader-box:nth-of-type(4) { bottom: 0; animation-delay: calc( 1.8s / 4 * -3 ); } .elementor-loading-title { color: #9DA5AE; text-align: center; text-transform: uppercase; margin-top: 30px; letter-spacing: 7px; text-indent: 7px; font-size: 10px; width: 100%; } @keyframes load { 0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; } } .eps-menu__title { margin-top: 2.75rem; margin-bottom: 1rem; } .e-app-import { --e-app-import-back-to-library-color: #69727D; padding-bottom: 1.25rem; } .e-app-import__drop-zone { margin-top: 1.25rem; } .e-app-import__back-to-library { color: var(--e-app-import-back-to-library-color); margin-bottom: 1.5rem; } .e-app-import__back-to-library > i { -webkit-margin-end: 0.5rem; margin-inline-end: 0.5rem; } .eps-theme-dark .e-app-import { --e-app-import-back-to-library-color: #BABFC5; } .e-site-editor__promotion-overlay__link { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; flex-direction: column; text-decoration: none; } .e-site-editor__promotion-overlay__icon { font-size: 1.25rem; color: #ffffff; margin-bottom: 1rem; } .e-app-import-export-wizard-step { --e-app-import-export-wizard-step-icon-color: #818A96; --e-app-import-export-wizard-step-text-color: #69727D; --e-app-import-export-wizard-step-bottom-text-color: #69727D; height: 100%; position: relative; text-align: center; } .e-app-import-export-wizard-step__media-container { height: 140px; margin: 5.5rem 0 2.75rem; } .e-app-import-export-wizard-step__icon { color: var(--e-app-import-export-wizard-step-icon-color); font-size: 50px; } .e-app-import-export-wizard-step__icon.eicon-loading { font-size: 1.85rem; } .e-app-import-export-wizard-step__heading { margin-bottom: 1.5rem; } .e-app-import-export-wizard-step__description, .e-app-import-export-wizard-step__info { color: var(--e-app-import-export-wizard-step-text-color); } .e-app-import-export-wizard-step__info { margin-top: 1.5rem; } .e-app-import-export-wizard-step__content { text-align: initial; margin-bottom: 1.25rem; } .e-app-import-export-wizard-step__notice { display: block; position: sticky; top: 100%; /* Will prevent text overlapping when window height is too short. */ color: var(--e-app-import-export-wizard-step-bottom-text-color); font-style: italic; margin-bottom: 0; } .eps-theme-dark .e-app-import-export-wizard-step { --e-app-import-export-wizard-step-icon-color: #818A96; --e-app-import-export-wizard-step-text-color: #BABFC5; --e-app-import-export-wizard-step-bottom-text-color: #BABFC5; } .e-app-import-export-page-header { --e-app-import-export-page-header-heading-color: #515962; --e-app-import-export-page-header-description-color: #69727D; margin-bottom: 2.75rem; } .e-app-import-export-page-header__content-wrapper { max-width: 645px; } .e-app-import-export-page-header__heading { color: var(--e-app-import-export-page-header-heading-color); } .e-app-import-export-page-header__description { color: var(--e-app-import-export-page-header-description-color); margin-top: 1.25rem; } .eps-theme-dark .e-app-import-export-page-header { --e-app-import-export-page-header-heading-color: #D5D8DC; --e-app-import-export-page-header-description-color: #D5D8DC; } .e-app-export-kit-content { --e-app-export-kit-content-title-color: #3A3F45; --e-app-export-kit-content-description-color: #515962; --e-app-export-kit-content-sm-notice-color: #BABFC5; } .e-app-export-kit-content__checkbox { flex-shrink: 0; -webkit-margin-end: 0.75rem; margin-inline-end: 0.75rem; } .e-app-export-kit-content__title { color: var(--e-app-export-kit-content-title-color); } .e-app-export-kit-content__description { color: var(--e-app-export-kit-content-description-color); -webkit-margin-end: 1.25rem; margin-inline-end: 1.25rem; } .e-app-export-kit-content__notice { margin-top: 1rem; } .e-app-export-kit-content__small-notice { font-style: italic; color: var(--e-app-export-kit-content-sm-notice-color); } .eps-theme-dark .e-app-export-kit-content { --e-app-export-kit-content-title-color: #D5D8DC; --e-app-export-kit-content-description-color: #BABFC5; --e-app-export-kit-content-sm-notice-color: #818A96; } .e-app-wizard-footer { --e-app-wizard-footer-border-color: #E6E8EA; padding: 0.5rem; } .e-app-wizard-footer__separator { border-top: 1px solid var(--e-app-wizard-footer-border-color); } .eps-theme-dark .e-app-wizard-footer { --e-app-wizard-footer-border-color: #2F3032; } .e-app-export-templates-features__locked { --e-app-export-templates-features-locked-color: #69727D; color: var(--e-app-export-templates-features-locked-color); } .eps-theme-dark .e-app-export-templates-features__locked { --e-app-export-templates-features-locked-color: #9DA5AE; } :root { --color-box-shadow-color: rgba(0, 0, 0, 0.05); } .eps-theme-dark { --color-box-shadow-color: rgba(0, 0, 0, 0.1); } :root { --card-background-color-hover: #ffffff; --card-border: 1px solid #D5D8DC; --card-header-footer-border: 1px solid var(--e-a-border-color); --card-header-footer-active-border: 2px solid #BABFC5; --card-headline-color: #515962; --card-figure-background-color: #BABFC5; --card-image-overlay-background-color: rgba(0, 0, 0, 0.2); } .eps-theme-dark { --card-background-color-hover: #222325; --card-border: 1px solid #2F3032; --card-header-footer-border: 1px solid #2F3032; --card-header-footer-active-border: 1px solid #1A1C1E; --card-headline-color: #D5D8DC; --card-figure-background-color: #3A3F45; --card-image-overlay-background-color: rgba(58, 63, 69, 0.5); } .eps-card { border: var(--card-border); border-radius: 0.1875rem; transition: 0.3s; font-size: 0.75rem; /* todo: TBD: Optionally remove headline styling in favor of a global atom depending on variation needs */ } .eps-card__header { padding: 0.625rem; border-bottom: var(--card-header-footer-border); min-height: 2.5rem; display: flex; align-items: center; } .eps-card__header--padding { padding: var(--eps-card-header-padding); } .eps-card__headline { color: var(--card-headline-color); margin-bottom: 0; font-weight: 500; flex-grow: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .eps-card__body { padding: 0.625rem 0.625rem; } .eps-card__body--padding { padding: var(--eps-card-body-padding); } .eps-card__figure { background-color: var(--card-figure-background-color); position: relative; padding-bottom: var(--card-image-aspect-ratio, 95.6%); overflow: hidden; height: 0; } .eps-card__image { width: 100%; -o-object-fit: contain; object-fit: contain; -o-object-position: top; object-position: top; position: absolute; top: 0; left: 0; } .eps-card__image-overlay { position: absolute; top: 0; background-color: var(--card-image-overlay-background-color); z-index: 1; width: 100%; height: 100%; opacity: 0; transition: 0.3s; } .eps-card__image-overlay:hover { opacity: 1; } .eps-card__footer { padding: 0.625rem; border-top: var(--card-header-footer-border); font-size: 0.6875rem; } .eps-card__footer--padding { padding: var(--eps-card-footer-padding); } :root { --menu-item-color: #515962; --menu-item-color-hover: #3A3F45; --menu-item-color-active: #0C0D0E; --menu-item-background-color-hover: #F9FAFA; --menu-item-background-color-active: #E6E8EA; --menu-item-action-button-color: #9DA5AE; } .eps-theme-dark { --menu-item-color: #D5D8DC; --menu-item-color-hover: #BABFC5; --menu-item-color-active: #9DA5AE; --menu-item-background-color-hover: #222325; --menu-item-background-color-active: #2F3032; --menu-item-action-button-color: #818A96; } .eps-menu-item { display: flex; align-items: center; position: relative; transition: 0.3s; --action-button-opacity: 0; } .eps-menu-item::before { content: ""; display: block; position: absolute; top: 0; inset-inline-start: 0; height: 100%; width: var(--menu-item-pointer-width); background-color: #0C0D0E; } .eps-menu-item:hover:not(.eps-menu-item--active) { background-color: var(--menu-item-background-color-hover); --action-button-opacity: 1; --menu-item-color: var(--menu-item-color-hover); --eps-link-color: var(--menu-item-color-hover); } .eps-menu-item--active { background-color: var(--menu-item-background-color-active); --menu-item-color: var(--menu-item-color-active); --eps-link-color: var(--menu-item-color-active); } .eps-menu-item__link { padding: 0.5rem 1.875rem; min-height: 2.75rem; font-size: 0.75rem; line-height: 1.2; flex-grow: 1; display: flex; align-items: center; color: var(--menu-item-color); --eps-link-color: var(--menu-item-color); } .eps-menu-item__link:not(:last-child) { -webkit-padding-end: 0; padding-inline-end: 0; } .eps-menu-item__link .eps-icon { font-size: 1.125rem; -webkit-margin-end: 0.75rem; margin-inline-end: 0.75rem; } .eps-menu-item__action-button { opacity: var(--action-button-opacity); padding: 0.625rem; transition: 0.3s; -webkit-margin-end: 1.25rem; margin-inline-end: 1.25rem; } .eps-menu-item--active { --menu-item-pointer-width: 0.3125rem; } .eps-grid-container { display: flex; flex-wrap: wrap; width: 100%; } .eps-grid-container--no-wrap { flex-wrap: nowrap; } .eps-grid-container--wrap-reverse { flex-wrap: wrap-reverse; } .eps-grid-container--spacing { --grid-row-gutter: calc(-1 * calc(var(--grid-spacing-gutter) * (0.625rem / 10))); width: var(--grid-spacing-width); margin: var(--grid-row-gutter); } .eps-grid-container--spacing > .eps-grid-item { padding: var(--grid-spacing-gutter); } .eps-grid--direction-row { flex-direction: row; } .eps-grid--direction-row-reverse { flex-direction: row-reverse; } .eps-grid--direction-column { flex-direction: column; } .eps-grid--direction-column-reverse { flex-direction: column-reverse; } .eps-grid--justify-stretch { justify-content: stretch; } .eps-grid--justify-start { justify-content: flex-start; } .eps-grid--justify-center { justify-content: center; } .eps-grid--justify-end { justify-content: flex-end; } .eps-grid--justify-space-between { justify-content: space-between; } .eps-grid--justify-space-around { justify-content: space-around; } .eps-grid--justify-space-evenly { justify-content: space-evenly; } .eps-grid--align-content-stretch { align-content: stretch; } .eps-grid--align-content-start { align-content: flex-start; } .eps-grid--align-content-center { align-content: center; } .eps-grid--align-content-end { align-content: flex-end; } .eps-grid--align-content-space-between { align-content: space-between; } .eps-grid--align-items-start { align-items: flex-start; } .eps-grid--align-items-center { align-items: center; } .eps-grid--align-items-end { align-items: flex-end; } .eps-grid--align-items-baseline { align-items: baseline; } .eps-grid--align-items-stretch { align-items: stretch; } .eps-grid-item--zero-min-width { min-width: 0; } @media screen and (min-width: 480px) { .eps-grid-item-sm { flex-grow: 1; max-width: 100%; flex-basis: 0; } } @media screen and (min-width: 768px) { .eps-grid-item-md { flex-grow: 1; max-width: 100%; flex-basis: 0; } } @media screen and (min-width: 1025px) { .eps-grid-item-lg { flex-grow: 1; max-width: 100%; flex-basis: 0; } } @media screen and (min-width: 1440px) { .eps-grid-item-xl { flex-grow: 1; max-width: 100%; flex-basis: 0; } } @media screen and (min-width: 1600px) { .eps-grid-item-xxl { flex-grow: 1; max-width: 100%; flex-basis: 0; } } .eps-grid-item-xs-1 { flex-grow: 0; max-width: calc( 1 / 12 * 100% ); flex-basis: calc( 1 / 12 * 100% ); } .eps-grid-item-xs-2 { flex-grow: 0; max-width: calc( 2 / 12 * 100% ); flex-basis: calc( 2 / 12 * 100% ); } .eps-grid-item-xs-3 { flex-grow: 0; max-width: calc( 3 / 12 * 100% ); flex-basis: calc( 3 / 12 * 100% ); } .eps-grid-item-xs-4 { flex-grow: 0; max-width: calc( 4 / 12 * 100% ); flex-basis: calc( 4 / 12 * 100% ); } .eps-grid-item-xs-5 { flex-grow: 0; max-width: calc( 5 / 12 * 100% ); flex-basis: calc( 5 / 12 * 100% ); } .eps-grid-item-xs-6 { flex-grow: 0; max-width: calc( 6 / 12 * 100% ); flex-basis: calc( 6 / 12 * 100% ); } .eps-grid-item-xs-7 { flex-grow: 0; max-width: calc( 7 / 12 * 100% ); flex-basis: calc( 7 / 12 * 100% ); } .eps-grid-item-xs-8 { flex-grow: 0; max-width: calc( 8 / 12 * 100% ); flex-basis: calc( 8 / 12 * 100% ); } .eps-grid-item-xs-9 { flex-grow: 0; max-width: calc( 9 / 12 * 100% ); flex-basis: calc( 9 / 12 * 100% ); } .eps-grid-item-xs-10 { flex-grow: 0; max-width: calc( 10 / 12 * 100% ); flex-basis: calc( 10 / 12 * 100% ); } .eps-grid-item-xs-11 { flex-grow: 0; max-width: calc( 11 / 12 * 100% ); flex-basis: calc( 11 / 12 * 100% ); } .eps-grid-item-xs-12 { flex-grow: 0; max-width: calc( 12 / 12 * 100% ); flex-basis: calc( 12 / 12 * 100% ); } @media screen and (min-width: 480px) { .eps-grid-item-sm-1 { flex-grow: 0; max-width: calc( 1 / 12 * 100% ); flex-basis: calc( 1 / 12 * 100% ); } .eps-grid-item-sm-2 { flex-grow: 0; max-width: calc( 2 / 12 * 100% ); flex-basis: calc( 2 / 12 * 100% ); } .eps-grid-item-sm-3 { flex-grow: 0; max-width: calc( 3 / 12 * 100% ); flex-basis: calc( 3 / 12 * 100% ); } .eps-grid-item-sm-4 { flex-grow: 0; max-width: calc( 4 / 12 * 100% ); flex-basis: calc( 4 / 12 * 100% ); } .eps-grid-item-sm-5 { flex-grow: 0; max-width: calc( 5 / 12 * 100% ); flex-basis: calc( 5 / 12 * 100% ); } .eps-grid-item-sm-6 { flex-grow: 0; max-width: calc( 6 / 12 * 100% ); flex-basis: calc( 6 / 12 * 100% ); } .eps-grid-item-sm-7 { flex-grow: 0; max-width: calc( 7 / 12 * 100% ); flex-basis: calc( 7 / 12 * 100% ); } .eps-grid-item-sm-8 { flex-grow: 0; max-width: calc( 8 / 12 * 100% ); flex-basis: calc( 8 / 12 * 100% ); } .eps-grid-item-sm-9 { flex-grow: 0; max-width: calc( 9 / 12 * 100% ); flex-basis: calc( 9 / 12 * 100% ); } .eps-grid-item-sm-10 { flex-grow: 0; max-width: calc( 10 / 12 * 100% ); flex-basis: calc( 10 / 12 * 100% ); } .eps-grid-item-sm-11 { flex-grow: 0; max-width: calc( 11 / 12 * 100% ); flex-basis: calc( 11 / 12 * 100% ); } .eps-grid-item-sm-12 { flex-grow: 0; max-width: calc( 12 / 12 * 100% ); flex-basis: calc( 12 / 12 * 100% ); } } @media screen and (min-width: 768px) { .eps-grid-item-md-1 { flex-grow: 0; max-width: calc( 1 / 12 * 100% ); flex-basis: calc( 1 / 12 * 100% ); } .eps-grid-item-md-2 { flex-grow: 0; max-width: calc( 2 / 12 * 100% ); flex-basis: calc( 2 / 12 * 100% ); } .eps-grid-item-md-3 { flex-grow: 0; max-width: calc( 3 / 12 * 100% ); flex-basis: calc( 3 / 12 * 100% ); } .eps-grid-item-md-4 { flex-grow: 0; max-width: calc( 4 / 12 * 100% ); flex-basis: calc( 4 / 12 * 100% ); } .eps-grid-item-md-5 { flex-grow: 0; max-width: calc( 5 / 12 * 100% ); flex-basis: calc( 5 / 12 * 100% ); } .eps-grid-item-md-6 { flex-grow: 0; max-width: calc( 6 / 12 * 100% ); flex-basis: calc( 6 / 12 * 100% ); } .eps-grid-item-md-7 { flex-grow: 0; max-width: calc( 7 / 12 * 100% ); flex-basis: calc( 7 / 12 * 100% ); } .eps-grid-item-md-8 { flex-grow: 0; max-width: calc( 8 / 12 * 100% ); flex-basis: calc( 8 / 12 * 100% ); } .eps-grid-item-md-9 { flex-grow: 0; max-width: calc( 9 / 12 * 100% ); flex-basis: calc( 9 / 12 * 100% ); } .eps-grid-item-md-10 { flex-grow: 0; max-width: calc( 10 / 12 * 100% ); flex-basis: calc( 10 / 12 * 100% ); } .eps-grid-item-md-11 { flex-grow: 0; max-width: calc( 11 / 12 * 100% ); flex-basis: calc( 11 / 12 * 100% ); } .eps-grid-item-md-12 { flex-grow: 0; max-width: calc( 12 / 12 * 100% ); flex-basis: calc( 12 / 12 * 100% ); } } @media screen and (min-width: 1025px) { .eps-grid-item-lg-1 { flex-grow: 0; max-width: calc( 1 / 12 * 100% ); flex-basis: calc( 1 / 12 * 100% ); } .eps-grid-item-lg-2 { flex-grow: 0; max-width: calc( 2 / 12 * 100% ); flex-basis: calc( 2 / 12 * 100% ); } .eps-grid-item-lg-3 { flex-grow: 0; max-width: calc( 3 / 12 * 100% ); flex-basis: calc( 3 / 12 * 100% ); } .eps-grid-item-lg-4 { flex-grow: 0; max-width: calc( 4 / 12 * 100% ); flex-basis: calc( 4 / 12 * 100% ); } .eps-grid-item-lg-5 { flex-grow: 0; max-width: calc( 5 / 12 * 100% ); flex-basis: calc( 5 / 12 * 100% ); } .eps-grid-item-lg-6 { flex-grow: 0; max-width: calc( 6 / 12 * 100% ); flex-basis: calc( 6 / 12 * 100% ); } .eps-grid-item-lg-7 { flex-grow: 0; max-width: calc( 7 / 12 * 100% ); flex-basis: calc( 7 / 12 * 100% ); } .eps-grid-item-lg-8 { flex-grow: 0; max-width: calc( 8 / 12 * 100% ); flex-basis: calc( 8 / 12 * 100% ); } .eps-grid-item-lg-9 { flex-grow: 0; max-width: calc( 9 / 12 * 100% ); flex-basis: calc( 9 / 12 * 100% ); } .eps-grid-item-lg-10 { flex-grow: 0; max-width: calc( 10 / 12 * 100% ); flex-basis: calc( 10 / 12 * 100% ); } .eps-grid-item-lg-11 { flex-grow: 0; max-width: calc( 11 / 12 * 100% ); flex-basis: calc( 11 / 12 * 100% ); } .eps-grid-item-lg-12 { flex-grow: 0; max-width: calc( 12 / 12 * 100% ); flex-basis: calc( 12 / 12 * 100% ); } } @media screen and (min-width: 1440px) { .eps-grid-item-xl-1 { flex-grow: 0; max-width: calc( 1 / 12 * 100% ); flex-basis: calc( 1 / 12 * 100% ); } .eps-grid-item-xl-2 { flex-grow: 0; max-width: calc( 2 / 12 * 100% ); flex-basis: calc( 2 / 12 * 100% ); } .eps-grid-item-xl-3 { flex-grow: 0; max-width: calc( 3 / 12 * 100% ); flex-basis: calc( 3 / 12 * 100% ); } .eps-grid-item-xl-4 { flex-grow: 0; max-width: calc( 4 / 12 * 100% ); flex-basis: calc( 4 / 12 * 100% ); } .eps-grid-item-xl-5 { flex-grow: 0; max-width: calc( 5 / 12 * 100% ); flex-basis: calc( 5 / 12 * 100% ); } .eps-grid-item-xl-6 { flex-grow: 0; max-width: calc( 6 / 12 * 100% ); flex-basis: calc( 6 / 12 * 100% ); } .eps-grid-item-xl-7 { flex-grow: 0; max-width: calc( 7 / 12 * 100% ); flex-basis: calc( 7 / 12 * 100% ); } .eps-grid-item-xl-8 { flex-grow: 0; max-width: calc( 8 / 12 * 100% ); flex-basis: calc( 8 / 12 * 100% ); } .eps-grid-item-xl-9 { flex-grow: 0; max-width: calc( 9 / 12 * 100% ); flex-basis: calc( 9 / 12 * 100% ); } .eps-grid-item-xl-10 { flex-grow: 0; max-width: calc( 10 / 12 * 100% ); flex-basis: calc( 10 / 12 * 100% ); } .eps-grid-item-xl-11 { flex-grow: 0; max-width: calc( 11 / 12 * 100% ); flex-basis: calc( 11 / 12 * 100% ); } .eps-grid-item-xl-12 { flex-grow: 0; max-width: calc( 12 / 12 * 100% ); flex-basis: calc( 12 / 12 * 100% ); } } @media screen and (min-width: 1600px) { .eps-grid-item-xxl-1 { flex-grow: 0; max-width: calc( 1 / 12 * 100% ); flex-basis: calc( 1 / 12 * 100% ); } .eps-grid-item-xxl-2 { flex-grow: 0; max-width: calc( 2 / 12 * 100% ); flex-basis: calc( 2 / 12 * 100% ); } .eps-grid-item-xxl-3 { flex-grow: 0; max-width: calc( 3 / 12 * 100% ); flex-basis: calc( 3 / 12 * 100% ); } .eps-grid-item-xxl-4 { flex-grow: 0; max-width: calc( 4 / 12 * 100% ); flex-basis: calc( 4 / 12 * 100% ); } .eps-grid-item-xxl-5 { flex-grow: 0; max-width: calc( 5 / 12 * 100% ); flex-basis: calc( 5 / 12 * 100% ); } .eps-grid-item-xxl-6 { flex-grow: 0; max-width: calc( 6 / 12 * 100% ); flex-basis: calc( 6 / 12 * 100% ); } .eps-grid-item-xxl-7 { flex-grow: 0; max-width: calc( 7 / 12 * 100% ); flex-basis: calc( 7 / 12 * 100% ); } .eps-grid-item-xxl-8 { flex-grow: 0; max-width: calc( 8 / 12 * 100% ); flex-basis: calc( 8 / 12 * 100% ); } .eps-grid-item-xxl-9 { flex-grow: 0; max-width: calc( 9 / 12 * 100% ); flex-basis: calc( 9 / 12 * 100% ); } .eps-grid-item-xxl-10 { flex-grow: 0; max-width: calc( 10 / 12 * 100% ); flex-basis: calc( 10 / 12 * 100% ); } .eps-grid-item-xxl-11 { flex-grow: 0; max-width: calc( 11 / 12 * 100% ); flex-basis: calc( 11 / 12 * 100% ); } .eps-grid-item-xxl-12 { flex-grow: 0; max-width: calc( 12 / 12 * 100% ); flex-basis: calc( 12 / 12 * 100% ); } } :root { --menu-title-color: #515962; } .eps-theme-dark { --menu-title-color: #515962; } .eps-menu ul { list-style: none; padding: 0; margin: 0; } .eps-menu ul li { display: flex; } .eps-menu__title { padding: 0.5rem 1.875rem; font-size: 0.6875rem; line-height: 1.2; text-transform: uppercase; font-weight: normal; color: var(--menu-title-color); } :root { --eps-modal-background-color: #ffffff; --eps-modal-header-background-color: #2563EB; --eps-tip-background-color: #F0F7FF; } .eps-theme-dark { --eps-modal-background-color: #0C0D0E; --eps-modal-header-background-color: #0077CC; --eps-tip-background-color: #0A1A3D; } /** ---------------------------------------------------------------- EPS Modal ---------------------------------------------------------------- */ .eps-modal { max-width: 43.75rem; background: var(--eps-modal-background-color); border-radius: 0.1875rem; animation: eps-animation-pop 0.15s cubic-bezier(0.57, 0.53, 0.71, 1.47) forwards; } .eps-modal__overlay { background: rgba(0, 0, 0, 0.5); position: fixed; display: flex; top: 0; left: 0; width: 100%; height: 100%; align-items: center; justify-content: center; z-index: 1030; } .eps-modal__header { font-size: 0.875rem; background: var(--eps-modal-header-background-color); height: 2.75rem; padding: 0.625rem 1rem; border-radius: 0.1875rem; } .eps-modal__header, .eps-modal__header .title { color: #ffffff; } .eps-modal__icon { -webkit-margin-end: 0.625rem; margin-inline-end: 0.625rem; } .eps-modal__body { padding: 1.875rem; } .eps-modal__tip, .eps-modal .eps-tip { padding: 0.5rem; -webkit-padding-start: 0.75rem; padding-inline-start: 0.75rem; -webkit-border-start: 3px solid #2563EB; border-inline-start: 3px solid #2563EB; background-color: var(--eps-tip-background-color); } .eps-modal__tip:not(:last-child), .eps-modal .eps-tip:not(:last-child) { margin-bottom: 1.875rem; } .eps-modal__tip:not(:first-child), .eps-modal .eps-tip:not(:first-child) { margin-top: 1.875rem; } .eps-modal__section:not(:first-child) { margin-top: 1.875rem; } .eps-modal__close-wrapper { -webkit-padding-start: 1rem; padding-inline-start: 1rem; -webkit-border-start: solid 1px #ffffff; border-inline-start: solid 1px #ffffff; } .eps-add-new-button { display: inline-flex; --eps-add-new-button-size: 1.5rem; line-height: var(--eps-add-new-button-size); cursor: pointer; } .eps-add-new-button .eps-icon { background-color: #F3BAFD; color: #0C0D0E; width: var(--eps-add-new-button-size); height: var(--eps-add-new-button-size); border-radius: 100%; font-size: calc(var(--eps-add-new-button-size) * 0.75); text-align: center; line-height: var(--eps-add-new-button-size); } .eps-add-new-button span:not(.sr-only) { -webkit-margin-start: 0.625rem; margin-inline-start: 0.625rem; font-weight: 500; } .eps-add-new-button--sm { --eps-add-new-button-size: 1rem; } :root { --select2-selection-background-color: #ffffff; --select2-selection-color: #515962; --select2-selection-border-color: #9DA5AE; --select2-selection-opened-focused-border-color: #BABFC5; --select2-single-selection-rendered-color: #515962; --select2-default-single-selection-background-color: #ffffff; --select2-default-single-selection-border-color: #9DA5AE; --select2-default-multiple-selection-background-color: #ffffff; --select2-default-multiple-selection-choice-background-color: #BABFC5; --select2-default-multiple-selection-choice-color: #515962; --select2-default-multiple-selection-choice-border-color: #BABFC5; --select2-default-multiple-selection-choice-remove-color: #69727D; --select2-default-multiple-selection-choice-remove-hover-color: #515962; --select2-default-results-selected-option-background-color: #ffffff; --select2-default-results-selected-option-color: #515962; --select2-default-results-highlighted-option-background-color: #5897fb; --select2-default-results-highlighted-option-color: #ffffff; --select2-results-selected-option-background-color: #5897fb; --select2-results-selected-option-color: #ffffff; --select2-dropdown-background-color: #ffffff; --select2-dropdown-border-color: #9DA5AE; } .eps-theme-dark { --select2-selection-background-color: #3A3F45; --select2-selection-color: #D5D8DC; --select2-selection-border-color: #818A96; --select2-selection-opened-focused-border-color: #9DA5AE; --select2-single-selection-rendered-color: #D5D8DC; --select2-default-single-selection-background-color: #3A3F45; --select2-default-single-selection-border-color: #69727D; --select2-default-multiple-selection-background-color: #3A3F45; --select2-default-multiple-selection-choice-background-color: #69727D; --select2-default-multiple-selection-choice-color: #D5D8DC; --select2-default-multiple-selection-choice-border-color: #69727D; --select2-default-multiple-selection-choice-remove-color: #BABFC5; --select2-default-multiple-selection-choice-remove-hover-color: #D5D8DC; --select2-default-results-selected-option-background-color: #3A3F45; --select2-default-results-selected-option-color: #D5D8DC; --select2-default-results-highlighted-option-background-color: #69727D; --select2-default-results-highlighted-option-color: #D5D8DC; --select2-results-selected-option-background-color: #69727D; --select2-results-selected-option-color: #D5D8DC; --select2-dropdown-background-color: #3A3F45; --select2-dropdown-border-color: #818A96; } .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--single, .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--multiple { background-color: var(--select2-selection-background-color); color: var(--select2-selection-color); border-color: var(--select2-selection-border-color); } .select2-container.select2-container--open .select2-selection--single, .select2-container.select2-container--open .select2-selection--multiple, .select2-container.select2-container--focus .select2-selection--single, .select2-container.select2-container--focus .select2-selection--multiple { border-color: var(--select2-selection-opened-focused-border-color); } .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--select2-single-selection-rendered-color); } .select2-container--default .select2-selection--single { background-color: var(--select2-default-single-selection-background-color); border-color: var(--select2-default-single-selection-border-color); } .select2-container--default .select2-selection--multiple { background-color: var(--select2-default-multiple-selection-background-color); } .select2-container--default .select2-selection--multiple .select2-selection__choice { background-color: var(--select2-default-multiple-selection-choice-background-color); color: var(--select2-default-multiple-selection-choice-color); border-color: var(--select2-default-multiple-selection-choice-border-color); } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { color: var(--select2-default-multiple-selection-choice-remove-color); } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { color: var(--select2-default-multiple-selection-choice-remove-hover-color); } .select2-container--default .select2-results__option[aria-selected] { background-color: var(--select2-default-results-selected-option-background-color); color: var(--select2-default-results-selected-option-color); } .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: var(--select2-default-results-highlighted-option-background-color); color: var(--select2-default-results-highlighted-option-color); } .select2-container .select2-results__option[aria-selected=true] { background-color: var(--select2-results-selected-option-background-color); color: var(--select2-results-selected-option-color); } .select2-container .select2-dropdown { background-color: var(--select2-dropdown-background-color); border-color: var(--select2-dropdown-border-color); } .eps-notice { --eps-box-notice-background-color: #F1F2F3; padding: 0.625rem 1rem; } .eps-notice-semantic { -webkit-border-start: 3px solid var(--eps-notice-semantic-color); border-inline-start: 3px solid var(--eps-notice-semantic-color); background-color: var(--eps-notice-semantic-bg); } .eps-notice-semantic .eps-notice__icon { color: var(--eps-notice-semantic-color); font-size: 1rem; -webkit-margin-end: 0.75rem; margin-inline-end: 0.75rem; } .eps-notice--warning { --eps-notice-semantic-color: #F59E0B; --eps-notice-semantic-bg: #FFFBEB; } .eps-notice--danger { --eps-notice-semantic-color: #DC2626; --eps-notice-semantic-bg: #FEF1F4; } .eps-notice--info { --eps-notice-semantic-color: #2563EB; --eps-notice-semantic-bg: #F0F7FF; } .eps-notice__text { margin: 0; padding: 0; } .eps-notice__button-container { flex-shrink: 0; margin-left: 1.25rem; width: auto; } .eps-theme-dark .eps-notice { --eps-box-notice-background-color: #515962; } .eps-theme-dark .eps-notice--warning { --eps-notice-semantic-bg: #311808; } .eps-theme-dark .eps-notice--danger { --eps-notice-semantic-bg: #390A0A; } .eps-theme-dark .eps-notice--info { --eps-notice-semantic-bg: #0A1A3D; } .eps-list { --eps-list-item-separated-border-color: #BABFC5; padding: 0; margin: 0; border-radius: 0.1875rem; border: 1px solid var(--e-a-border-color); list-style-type: none; } .eps-list--padding { padding: var(--eps-list-padding); } .eps-list__item { padding: 0; } .eps-list__item--padding { padding: var(--eps-list-item-padding); } .eps-list--separated .eps-list__item:not(:last-child) { border-bottom: 1px solid var(--eps-list-item-separated-border-color); } .eps-theme-dark .eps-list { --eps-list-item-separated-border-color: #3A3F45; } :root { --popover-background-color: #ffffff; --popover-item-color: #515962; --popover-item-hover-color: #3A3F45; --popover-item-danger-hover-color: #DC2626; --popover-item-background-color: #ffffff; --popover-box-shadow-color: rgba(0, 0, 0, 0.15); --popover-box-shadow-size: 0px 1px 20px; --popover-arrow-color: #ffffff; } .eps-theme-dark { --popover-background-color: #1A1C1E; --popover-item-color: #ffffff; --popover-item-hover-color: #D5D8DC; --popover-item-danger-hover-color: #F84343; --popover-item-background-color: #1A1C1E; --popover-box-shadow-color: rgba(0, 0, 0, 0.15); --popover-box-shadow-size: 0px 1px 20px; --popover-arrow-color: #1A1C1E; } .eps-popover { padding: 10px 0; background-color: var(--popover-background-color); box-shadow: var(--popover-box-shadow-size) var(--popover-box-shadow-color); list-style: none; display: flex; flex-direction: column; min-width: 120px; border-radius: 0.1875rem; position: absolute; z-index: 1050; margin-top: 9px; transform: translateX(-50%); left: 0.25rem; } .eps-popover__background { position: fixed; top: 0; bottom: 0; left: 0; right: 0; z-index: 1030; } .eps-popover__container { position: relative; } .eps-popover::before { content: ""; display: block; position: absolute; width: 16px; height: 9px; margin: 0 0.1875rem 9px; top: -9px; left: 50%; transform: translateX(-50%); border-color: transparent; border-style: solid; border-width: 0 calc(16px / 2) 9px calc(16px / 2); border-bottom-color: var(--popover-arrow-color); } .eps-popover__item { padding: 0.3125rem 1rem; background-color: var(--popover-item-background-color); color: var(--popover-item-color); font-size: 0.6875rem; font-weight: 500; line-height: 0.8125rem; width: 100%; align-items: center; cursor: pointer; } .eps-popover__item:hover { color: var(--popover-item-hover-color); } .eps-popover__item--danger:hover { color: var(--popover-item-danger-hover-color); } .eps-popover__item .eps-icon { font-size: inherit; -webkit-margin-end: 0.3125rem; margin-inline-end: 0.3125rem; } .eps-css-grid { display: grid; grid-template-columns: repeat(var(--eps-grid-columns, auto-fill), minmax(var(--eps-grid-col-min-width, 1fr), var(--eps-grid-col-max-width, 1fr))); grid-gap: var(--eps-grid-spacing); } .eps-box { --eps-box-color: #1A1C1E; --eps-box-input-color: #1A1C1E; padding: 0; border-radius: 0.1875rem; color: var(--eps-box-color); } .eps-box--padding { padding: var(--eps-box-padding); } .eps-box > input { width: 100%; outline: 0; border: 0; background-color: transparent; color: var(--eps-box-input-color); } .eps-theme-dark .eps-box { --eps-box-color: #D5D8DC; --eps-box-input-color: #D5D8DC; } :root { --checkbox-border-color: #9DA5AE; --checkbox-hover-border-color: #8f98a2; --checkbox-active-border-color: #abb2ba; --checkbox-background-color: #ffffff; --checkbox-checked-background-color: #515962; --checkbox-checked-hover-background-color: #454c54; --checkbox-checked-active-background-color: #5d6670; --checkbox-checked-disabled-background-color: #D5D8DC; --checkbox-indicator-color: #ffffff; --checkbox-error-background-color: #DC2626; } .eps-theme-dark { --checkbox-background-color: transparent; } .eps-checkbox { -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0.1875rem; width: 15px; height: 15px; outline: 0; background-color: var(--checkbox-background-color); display: inline-flex; justify-content: center; align-items: center; border: 1px solid var(--checkbox-border-color); } .eps-checkbox::after { display: inline-block; margin-bottom: calc(0.25 / 2 * 100%); content: " "; width: 3px; height: 6px; transform: rotate(45deg); } .eps-checkbox:hover { --checkbox-border-color: var(--checkbox-hover-border-color); } .eps-checkbox:active { --checkbox-border-color: var(--checkbox-active-border-color); } .eps-checkbox:checked { --checkbox-background-color: var(--checkbox-checked-background-color); --checkbox-border-color: var(--checkbox-checked-background-color); } .eps-checkbox:checked::after { border: solid #ffffff; border-width: 0 1px 1px 0; } .eps-checkbox:checked:hover { --checkbox-background-color: var(--checkbox-checked-hover-background-color); --checkbox-border-color: var(--checkbox-checked-hover-background-color); } .eps-checkbox:checked:active { --checkbox-background-color: var(--checkbox-checked-active-background-color); --checkbox-border-color: var(--checkbox-checked-active-background-color); } .eps-checkbox:checked:disabled { --checkbox-background-color: var(--checkbox-checked-disabled-background-color); --checkbox-border-color: var(--checkbox-checked-disabled-background-color); } .eps-checkbox--rounded { border-radius: 50%; } .eps-checkbox--indeterminate { --checkbox-background-color: var(--checkbox-checked-background-color); --checkbox-border-color: var(--checkbox-checked-background-color); } .eps-checkbox--indeterminate::after { display: inline-block; margin-bottom: 0; content: " "; width: 7px; height: 0; transform: rotate(0deg); border-top: 1px solid #ffffff; } .eps-checkbox--error::before, .eps-checkbox--error::after, .eps-checkbox--error:checked::before, .eps-checkbox--error:checked::after { display: inline-block; margin-bottom: 0; content: " "; width: 7px; height: 0; border: solid #ffffff; border-width: 1px 0 0 0; position: absolute; } .eps-checkbox--error::before, .eps-checkbox--error:checked::before { transform: rotate(45deg); } .eps-checkbox--error::after, .eps-checkbox--error:checked::after { transform: rotate(-45deg); } .eps-checkbox--error, .eps-checkbox--error:hover, .eps-checkbox--error:checked, .eps-checkbox--error:checked:hover { --checkbox-background-color: var(--checkbox-error-background-color); --checkbox-border-color: var(--checkbox-error-background-color); } :root { --e-app-drag-drop-background-color: #ffffff; --e-app-drag-drop-outline-color: #E6E8EA; } .eps-theme-dark { --e-app-drag-drop-background-color: #222325; --e-app-drag-drop-outline-color: #2F3032; } .e-app-drag-drop { background-color: var(--e-app-drag-drop-background-color); outline: 2px dashed var(--e-app-drag-drop-outline-color); outline-offset: -0.75rem; margin-bottom: 1.5rem; padding: 4.125rem; text-align: center; } .e-app-drag-drop--drag-over { outline-color: #2563EB; } .eps-dialog { border-radius: 3px; width: 375px; } .eps-dialog__close-button { position: absolute; top: -2.75rem; right: -2.75rem; margin-top: 0.625rem; margin-right: 0.625rem; z-index: 1040; font-size: 1.25rem; color: #ffffff; } .eps-dialog__content { padding: 1.5rem 1.875rem 1rem; font-size: 0.75rem; } .eps-dialog__title, .eps-dialog__text { text-align: center; } .eps-dialog__buttons { display: flex; } .eps-dialog__button { flex: 1; border-top: 1px solid var(--hr-color); line-height: 2.75rem; text-align: center; justify-content: center; } .eps-dialog__button:last-child:not(:first-child) { -webkit-border-start: 1px solid var(--hr-color); border-inline-start: 1px solid var(--hr-color); } .e-app__popover { display: none; position: absolute; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); border-radius: 6px; padding: 20px; width: -moz-fit-content; width: fit-content; z-index: 999; background-color: var(--e-a-bg-default); } .e-app__popover:before { content: ""; position: absolute; top: -16px; right: var(--popover-arrow-offset-end, 22px); border: 8px solid transparent; border-bottom-color: #fff; } .eps-inline-link { color: var(--eps-inline-link-color); background-color: initial; border: 0; padding: 0; } .eps-inline-link--color-primary { --eps-inline-link-color: #0A875A; } .eps-inline-link--color-secondary { --eps-inline-link-color: #818A96; } .eps-inline-link--color-danger { --eps-inline-link-color: #DC2626; } .eps-inline-link--color-cta { --eps-inline-link-color: #524CFF; } .eps-inline-link--color-link { --eps-inline-link-color: #515962; } .eps-inline-link--color-disabled { --eps-inline-link-color: #D5D8DC; } .eps-inline-link--underline-hover:hover, .eps-inline-link--underline-always, .eps-inline-link--underline-always:hover { text-decoration: underline; } .eps-inline-link--italic { font-style: italic; } .eps-inline-link, .eps-inline-link:focus { outline: none; } .eps-text-field { --eps-text-field-color: #515962; --eps-text-field-background-color: transparent; --eps-text-field-placeholder-color: #69727D; --eps-text-field-outlined-border-color: #9DA5AE; --eps-text-field-outlined-focus-border-color: #515962; width: 100%; color: var(--eps-text-field-color); background-color: var(--eps-text-field-background-color); border: 0; margin-bottom: 5px; outline: none; font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; font-size: 0.875rem; font-weight: 400; line-height: 1.5; } .eps-text-field--outlined { border-radius: 0.1875rem; border: 1px solid var(--eps-text-field-outlined-border-color); padding: 0.625rem; } .eps-text-field--outlined:focus { border-color: var(--eps-text-field-outlined-focus-border-color); } .eps-text-field::-moz-placeholder { color: var(--eps-text-field-placeholder-color); font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; font-size: 0.875rem; font-weight: 400; line-height: 1.5; } .eps-text-field::placeholder { color: var(--eps-text-field-placeholder-color); font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; font-size: 0.875rem; font-weight: 400; line-height: 1.5; } .eps-theme-dark .eps-text-field { --eps-text-field-color: #BABFC5; --eps-text-field-background-color: transparent; --eps-text-field-placeholder-color: #9DA5AE; --eps-text-field-outlined-border-color: #3A3F45; --eps-text-field-outlined-focus-border-color: #9DA5AE; } .eps-theme-dark--outlined { border-color: var(--eps-text-field-outlined-border-color); } .eps-theme-dark--outlined:focus { border-color: var(--eps-text-field-outlined-focus-border-color); } .e-app-import-export-content-layout { display: flex; justify-content: center; height: 100%; } .e-app-import-export-content-layout__container { flex-basis: 1075px; } .e-app-export-complete__kit-content-title { margin: 2.75rem 0 0.625rem; } .e-app-export-kit-content { --e-app-export-kit-content-title-color: #3A3F45; --e-app-export-kit-content-description-color: #515962; --e-app-export-kit-content-sm-notice-color: #BABFC5; } .e-app-export-kit-content__checkbox { flex-shrink: 0; -webkit-margin-end: 0.75rem; margin-inline-end: 0.75rem; } .e-app-export-kit-content__title { color: var(--e-app-export-kit-content-title-color); } .e-app-export-kit-content__description { color: var(--e-app-export-kit-content-description-color); -webkit-margin-end: 1.25rem; margin-inline-end: 1.25rem; } .e-app-export-kit-content__notice { margin-top: 1rem; } .e-app-export-kit-content__small-notice { font-style: italic; color: var(--e-app-export-kit-content-sm-notice-color); } .eps-theme-dark .e-app-export-kit-content { --e-app-export-kit-content-title-color: #D5D8DC; --e-app-export-kit-content-description-color: #BABFC5; --e-app-export-kit-content-sm-notice-color: #818A96; } .e-app-import-export-kit-data { --e-app-import-export-kit-data-site-area-color: #3A3F45; --e-app-import-export-kit-data-included-color: #69727D; } .e-app-import-export-kit-data__site-area, .e-app-import-export-kit-data__included { margin-bottom: 0; } .e-app-import-export-kit-data__site-area { color: var(--e-app-import-export-kit-data-site-area-color); font-weight: bold; } .e-app-import-export-kit-data__included { color: var(--e-app-import-export-kit-data-included-color); } .eps-theme-dark .e-app-import-export-kit-data { --e-app-import-export-kit-data-site-area-color: #BABFC5; --e-app-import-export-kit-data-included-color: #9DA5AE; } .e-app-import-resolver { --e-app-import-resolver-panel-header-background-color: #ffffff; --e-app-import-resolver-panel-body-background-color: rgba(255, 255, 255, 0.5); --e-app-import-resolver-conflicts-asset-border-color: #818A96; --e-app-import-resolver-conflicts-asset-inactive-color: #69727D; padding-bottom: 1.25rem; } .e-app-import-resolver__notice { margin-bottom: 1.25rem; } .e-app-import-resolver__panel, .e-app-import-resolver__panel:hover { background-color: initial; } .e-app-import-resolver__panel-header { background-color: var(--e-app-import-resolver-panel-header-background-color); } .e-app-import-resolver__panel-body { background-color: var(--e-app-import-resolver-panel-body-background-color); } .e-app-import-resolver-conflicts__container { box-shadow: 0 2px 3px 1px var(--color-box-shadow-color); } .e-app-import-resolver-conflicts__checkbox { flex-shrink: 0; -webkit-margin-end: 0.75rem; margin-inline-end: 0.75rem; } .e-app-import-resolver-conflicts__title { line-height: 1; } .e-app-import-resolver-conflicts__asset:not(:first-child) { -webkit-border-start: 2px solid var(--e-app-import-resolver-conflicts-asset-border-color); border-inline-start: 2px solid var(--e-app-import-resolver-conflicts-asset-border-color); -webkit-padding-start: 1rem; padding-inline-start: 1rem; -webkit-margin-start: 1rem; margin-inline-start: 1rem; } .e-app-import-resolver-conflicts__asset:not(.active) { color: var(--e-app-import-resolver-conflicts-asset-inactive-color); } .e-app-import-resolver-conflicts__edit-template { -webkit-margin-start: 0.3125rem; margin-inline-start: 0.3125rem; } .eps-theme-dark .e-app-import-resolver { --e-app-import-resolver-panel-header-background-color: #69727D; --e-app-import-resolver-panel-body-background-color: rgba(0, 0, 0, 0.05); --e-app-import-resolver-conflicts-asset-border-color: #818A96; --e-app-import-resolver-conflicts-asset-inactive-color: #9DA5AE; } .eps-panel { --eps-panel-header-background-color: transparent; --eps-panel-body-background-color: transparent; } .eps-panel, .eps-panel:hover { background-color: initial; } .eps-panel__header { background-color: var(--eps-panel-header-background-color); border-radius: 0.1875rem; } .eps-panel__body { background-color: var(--eps-panel-body-background-color); border-radius: 0 0 0.1875rem 0.1875rem; } .eps-theme-dark .eps-panel { --eps-panel-header-background-color: transparent; --eps-panel-body-background-color: transparent; } .e-app-export-kit { padding-bottom: 1.25rem; } .e-app-export-kit-information { margin-top: 1.25rem; } .e-app-export-kit-information__field-header { margin-bottom: 0.625rem; } .e-app-export-kit-information__label { margin: 0; } .e-app-export-kit-information__info-icon { -webkit-margin-start: 0.625rem; margin-inline-start: 0.625rem; } .e-app-export-kit-info-modal__icon { -webkit-padding-start: 0.625rem; padding-inline-start: 0.625rem; } .e-app-export-kit-info-modal__heading { margin-bottom: 1.25rem; } .e-app-import-export-info-modal__section:not(:first-child) { margin-top: 1.875rem; } .e-app-import-export-info-modal__heading { margin-bottom: 1.25rem; } :root { --eps-badge-background-color: #ffffff; } .eps-theme-dark { --eps-badge-background-color: #515962; } .eps-badge { display: inline-block; background: var(--eps-badge-background-color); padding: 0 0.5rem; line-height: 1.8; box-shadow: 0 3px 6px var(--color-box-shadow-color); border-radius: 4px; font-size: 0.75rem; } .eps-badge--sm { font-size: 0.625rem; border-radius: 3px; padding: 0 0.3125rem; line-height: 1.5; } .eps-collapse__title { cursor: pointer; padding: 0.3125rem 0; display: flex; align-items: center; justify-content: space-between; width: 100%; background: transparent; border: none; color: inherit; } .eps-collapse__title:focus { outline: none; } .eps-collapse__icon { transition: all 150ms; transform: rotate(0deg); } .eps-collapse__content { margin-top: 0.625rem; display: none; } .eps-collapse[data-open] .eps-collapse__content { display: block; } .eps-collapse[data-open] .eps-collapse__icon { transform: rotate(90deg); } .e-kit-library-bottom-promotion { --e-kit-library-bottom-promotion-color: tints(600); } .eps-theme-dark .e-kit-library-bottom-promotion { --e-kit-library-bottom-promotion-color: dark-tints(400); } .e-kit-library-bottom-promotion { width: 100%; text-align: center; margin-top: 1.875rem; color: var(--e-kit-library-bottom-promotion-color); } .e-kit-library__error-screen { margin-top: 2.75rem; } .e-kit-library__error-screen-title { margin-top: 2.75rem; margin-bottom: 0; } .e-kit-library__error-screen-description { margin-top: 1.5rem; color: #69727D; text-align: center; max-width: 520px; } .e-kit-library__kit-favorite-actions { padding: 0.3125rem; transition: 0.3s all; border-radius: 4px; } .e-kit-library__kit-favorite-actions--active { color: #DC2626; } .e-kit-library__kit-favorite-actions--loading { opacity: 50%; cursor: default; } .e-kit-library__kit-favorite-actions:hover { background-color: rgba(220, 38, 38, 0.1); } .e-kit-library__filter-indication { margin-top: 1.5rem; display: flex; align-items: center; } .e-kit-library__filter-indication-text { margin-bottom: 0; display: flex; align-items: center; } .e-kit-library__filter-indication-badge { margin-left: 0.3125rem; display: flex; align-items: center; } .e-kit-library__filter-indication-badge-remove { margin-left: 0.3125rem; font-size: 0.875rem; } .e-kit-library__filter-indication-button { margin-left: 1.5rem; } #eps-app-header-btn-apply, #eps-app-header-btn-promotion, #eps-app-header-btn-connect { margin-left: 0.625rem; margin-right: 0.625rem; } .e-kit-library__apply-button { display: flex; align-items: center; justify-content: center; gap: 0.3125rem; } .e-kit-library__kit-item { --e-kit-library-kit-item-overlay-promotion-button-background-color: #D5D8DC; } .eps-theme-dark .e-kit-library__kit-item { --e-kit-library-kit-item-overlay-promotion-button-background-color: #515962; } .e-kit-library__kit-item-overlay { height: 100%; } .e-kit-library__kit-item-overlay > *:first-child { flex: 1; } .e-kit-library__kit-item-overlay-overview-button { display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; height: 100%; width: 100%; } .e-kit-library__kit-item-overlay-overview-button > i { font-size: 2rem; margin-bottom: 5px; } .e-kit-library__kit-item-overlay-overview-button > span { font-size: 0.9rem; } .e-kit-library__kit-item-overlay-promotion-button { display: flex; width: 100%; background: white; align-items: center; justify-content: center; padding: 10px; font-size: 13px; color: #524CFF; background: var(--e-kit-library-kit-item-overlay-promotion-button-background-color); } .e-kit-library__kit-item-overlay-promotion-button > * { margin: 0 3px; } .e-kit-library__kit-item-subscription-plan-badge { position: absolute; top: 0; right: 0; margin: 0.3125rem; background-color: var(--e-a-color-brand); color: #ffffff; text-transform: uppercase; } :root { --e-kit-library-header-back-border: 1px solid var(--e-a-border-color); --e-kit-library-header-back-color: #69727D; } .eps-theme-dark { --e-kit-library-header-back-border: 1px solid #818A96; --e-kit-library-header-back-color: #BABFC5; } .e-kit-library__header-back { color: var(--e-kit-library-header-back-color); padding-right: 1.25rem; padding-left: 0.3125rem; display: inline-flex; justify-content: center; align-items: center; height: 100%; border-right: var(--e-kit-library-header-back-border); } .e-kit-library__header-back-container { flex: 1; height: 100%; } .e-kit-library__header-back .eps-icon { transform: rotate(0deg); } .e-kit-library__page-loader { width: 100%; height: 100%; display: grid; place-items: center; font-size: 1.85rem; color: #69727D; } .eps-search-input { --eps-search-input-background-color: #D5D8DC; --eps-search-input-background-color-focus: #ffffff; --eps-search-input-color: #3A3F45; --eps-search-input-placeholder-color: #69727D; } .eps-theme-dark .eps-search-input { --eps-search-input-background-color: #515962; --eps-search-input-background-color-focus: #69727D; --eps-search-input-color: #BABFC5; --eps-search-input-placeholder-color: #BABFC5; } .eps-search-input { width: 100%; font-size: 0.9375rem; padding: 0.625rem 2.75rem; border: none; background: var(--eps-search-input-background-color); outline: none; color: var(--eps-search-input-color); line-height: 1; height: 2.75rem; } .eps-search-input--sm { font-size: 0.8125rem; padding: 0.5rem 1.875rem; } .eps-search-input:focus { background: var(--eps-search-input-background-color-focus); } .eps-search-input::-moz-placeholder { color: var(--eps-search-input-placeholder-color); font-style: italic; } .eps-search-input::placeholder { color: var(--eps-search-input-placeholder-color); font-style: italic; } .eps-search-input__container { position: relative; } .eps-search-input__icon { font-size: 1.25rem; padding: 0.625rem; color: #69727D; position: absolute; top: 0; inset-inline-start: 0; height: 100%; display: flex; align-items: center; justify-content: center; } .eps-search-input__icon--sm { font-size: 0.75rem; } .eps-search-input__clear-icon { font-size: 0.875rem; padding: 0.625rem; color: #69727D; position: absolute; top: 0; right: 0; height: 100%; display: flex; align-items: center; justify-content: center; } .eps-search-input__clear-icon--sm { font-size: 0.6875rem; } :root { --eps-sort-select-select-background-color: #D5D8DC; --eps-sort-select-select-color: #3A3F45; --eps-sort-select-button-background-color: #D5D8DC; --eps-sort-select-button-border: 1px solid var(--e-a-border-color); } .eps-theme-dark { --eps-sort-select-select-background-color: #515962; --eps-sort-select-select-color: #BABFC5; --eps-sort-select-button-background-color: #515962; --eps-sort-select-button-border: 1px solid #1A1C1E; } .eps-sort-select { width: 100%; font-size: 0.9375rem; display: flex; } .eps-sort-select__select-wrapper { flex: 1; position: relative; } .eps-sort-select__select-wrapper::after { content: "\e8ad"; font-family: eicons; position: absolute; right: 0.625rem; top: 0; bottom: 0; color: #69727D; display: flex; align-items: center; justify-content: center; pointer-events: none; } .eps-sort-select__select { width: 100%; padding: 0.625rem 0.625rem; border: none; background: var(--eps-sort-select-select-background-color); outline: none; color: var(--eps-sort-select-select-color); line-height: 1; cursor: pointer; height: 2.75rem; -moz-appearance: none; appearance: none; -webkit-appearance: none; border-radius: 0; } .eps-sort-select__button { padding: 0.75rem 0.75rem; background: var(--eps-sort-select-button-background-color); border-left: var(--eps-sort-select-button-border); line-height: 1; color: #69727D; } .e-kit-library__tags-filter { --e-kit-library-tags-filter-list-search-background-color: #ffffff; } .eps-theme-dark .e-kit-library__tags-filter { --e-kit-library-tags-filter-list-search-background-color: #515962; } .e-kit-library__tags-filter { margin-top: 2.75rem; } .e-kit-library__tags-filter-list { margin-bottom: 2.75rem; } .e-kit-library__tags-filter-list .eps-collapse__title { padding-right: 1.875rem; padding-left: 1.875rem; text-transform: uppercase; } .e-kit-library__tags-filter-list .eps-collapse__content { margin: 0.3125rem 1.875rem; } .e-kit-library__tags-filter-list-container { max-height: 250px; overflow: auto; } .e-kit-library__tags-filter-list-search { margin-bottom: 0.625rem; } .e-kit-library__tags-filter-list-search .eps-search-input { background: var(--e-kit-library-tags-filter-list-search-background-color); } .e-kit-library__tags-filter-list-item { padding: 0.625rem 0; display: flex; align-items: center; font-weight: 500; } .e-kit-library__tags-filter-list-item input { margin-right: 0.3125rem; } .e-kit-library #eps-app-header-btn-refetch { padding: 0; } .e-kit-library-header-info-modal-container { margin-bottom: 2.75rem; } .e-kit-library__tooltip { padding: 5px 12px; color: #ffffff; background-color: #26292C; font-size: 10px; } .e-kit-library__tooltip:before { border-bottom-color: #26292C; } .e-kit-library__index-layout-container { flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; } .e-kit-library__index-layout-top-area { padding: 1.875rem 2.75rem; position: sticky; top: -1px; width: 100%; z-index: 2; background-color: var(--app-background-color); gap: 1.5rem; } .e-kit-library__index-layout-top-area-search, .e-kit-library__index-layout-top-area-sort { min-width: 265px; } .e-kit-library__index-layout-top-area-search { flex: 1; } .e-kit-library__index-layout-main { padding-top: 0; padding-bottom: 1.5rem; overflow-y: hidden; height: auto; flex: 1 0 auto; display: flex; flex-direction: column; justify-content: space-between; } .e-kit-library__tags-filter { --e-kit-library-item-sidebar-header-title-color: #515962; --e-kit-library-item-sidebar-description-color: #515962; --e-kit-library-item-information-text-color: #515962; } .eps-theme-dark .e-kit-library__tags-filter { --e-kit-library-item-sidebar-header-title-color: #BABFC5; --e-kit-library-item-sidebar-description-color: #BABFC5; --e-kit-library-item-information-text-color: #BABFC5; } .e-kit-library__item-sidebar { padding: 1.5rem 1.875rem; } .e-kit-library__item-sidebar-header { display: flex; align-items: center; justify-content: space-between; } .e-kit-library__item-sidebar-header-title { color: var(--e-kit-library-item-sidebar-header-title-color); margin-bottom: 0; } .e-kit-library__item-sidebar-thumbnail { margin-top: 1.5rem; box-shadow: 0 4px 10px var(--color-box-shadow-color); } .e-kit-library__item-sidebar-description { margin-top: 1.5rem; color: var(--e-kit-library-item-sidebar-description-color); } .e-kit-library__item-sidebar-collapse-tags { margin-top: 2.75rem; } .e-kit-library__item-sidebar-collapse-info { margin-top: 1.875rem; } .e-kit-library__item-sidebar-tags-container { gap: 0.625rem; } .e-kit-library__item-information-text { font-size: 0.8125rem; color: var(--e-kit-library-item-information-text-color); margin-bottom: 0.3125rem; } .e-kit-library { --e-kit-library-content-overview-group-title-color: #515962; } .eps-theme-dark .e-kit-library { --e-kit-library-content-overview-group-title-color: #BABFC5; } .e-kit-library__content-overview-group-item { margin-bottom: 2.75rem; } .e-kit-library__content-overview-group-title { margin-bottom: 1.875rem; color: var(--e-kit-library-content-overview-group-title-color); } .e-kit-library__preview-responsive-controls { width: auto; } .e-kit-library__preview-responsive-controls-item { margin: 0 0.3125rem; color: #69727D; padding: 0.3125rem; } .e-kit-library__preview-responsive-controls-item:hover { background: rgba(37, 99, 235, 0.1); border-radius: 3px; transition: all 0.3s; } .e-kit-library__preview-responsive-controls-item--active { color: #2563EB; } .e-kit-library__preview-loader { position: absolute; top: 0; left: 0; z-index: 0; } .e-kit-library__preview-iframe { border: none; transition: all 0.3s; box-shadow: 0 4px 10px var(--color-box-shadow-color); } .e-kit-library__preview-iframe-container { overflow-y: auto; position: relative; z-index: 1; } .e-app-collapse { --e-app-collapse-icon-color: #515962; } .e-app-collapse-toggle { position: relative; } .e-app-collapse-toggle--active { cursor: pointer; } .e-app-collapse-toggle__icon { color: var(--e-app-collapse-icon-color); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; position: absolute; top: 50%; right: var(--e-app-collapse-toggle-icon-spacing); transform: translateY(-50%); } .e-app-collapse-toggle__icon:before { transition: all 0.2s linear; } .e-app-collapse-content { display: none; } .e-app-collapse--opened .e-app-collapse-toggle__icon:before { transform: rotate(-180deg); } .e-app-collapse--opened .e-app-collapse-content { display: block; } [dir=rtl] .e-app-collapse-toggle__icon { right: initial; left: var(--e-app-collapse-toggle-icon-spacing); } .eps-theme-dark .e-app-collapse { --e-app-collapse-icon-color: #BABFC5; } .e-app-import-plugins { --e-app-import-plugins-selection-section-heading-color: #515962; padding-bottom: 1.5rem; } .e-app-import-plugins__section { margin-top: 1.875rem; } .e-app-import-plugins__section-heading { color: var(--e-app-import-plugins-selection-section-heading-color); margin-bottom: 1rem; } .e-app-import-plugins__versions-notice { margin-bottom: 0.75rem; } .eps-theme-dark .e-app-import-plugins { --e-app-import-plugins-selection-section-heading-color: #BABFC5; } .eps-table { --eps-table-body-color: #3A3F45; border-spacing: 0 2px; table-layout: fixed; width: 100%; border: 1px solid var(--e-a-border-color); border-radius: 0.1875rem; } .eps-table__checkboxes-column { width: 1.875rem; } .eps-table__checkbox { display: flex; flex-shrink: 0; } .eps-table__cell { padding: 1rem; } .eps-table__head .eps-table__cell { text-align: start; } .eps-table__row { border-bottom: 1px solid var(--e-a-border-color); } .eps-table__row:last-child { border-bottom: none; } .eps-table__body .eps-table__cell:first-child { border-radius: 0.1875rem 0 0 0.1875rem; } .eps-table__body .eps-table__cell:last-child { border-radius: 0 0.1875rem 0.1875rem 0; } .eps-table--selection .eps-table__cell:first-child { -webkit-padding-end: 0; padding-inline-end: 0; } .eps-theme-dark .eps-table { --eps-table-body-color: #BABFC5; } [dir=rtl] .eps-table__body [dir=rtl] .eps-table__cell:first-child { border-radius: 0 0.1875rem 0.1875rem 0; } [dir=rtl] .eps-table__body [dir=rtl] .eps-table__cell:last-child { border-radius: 0.1875rem 0 0 0.1875rem; } .e-app-import-plugins-pro-banner { --e-app-import-plugins-pro-banner-heading-color: #3A3F45; --e-app-import-plugins-pro-banner-description-color: #515962; margin-bottom: 1.875rem; } .e-app-import-plugins-pro-banner__heading { color: var(--e-app-import-plugins-pro-banner-heading-color); margin-bottom: 0.625rem; } .e-app-import-plugins-pro-banner__description { color: var(--e-app-import-plugins-pro-banner-description-color); margin-bottom: 0; } .eps-theme-dark .e-app-import-plugins-pro-banner { --e-app-import-plugins-pro-banner-heading-color: #9DA5AE; --e-app-import-plugins-pro-banner-description-color: #BABFC5; } .e-app-export-plugins { padding-bottom: 1.25rem; } .e-app-import-content { padding-bottom: 1.25rem; } .e-app-import-content__plugins-notice { margin-bottom: 1.25rem; } .e-app-import-plugins-activation__installing-plugins { padding: 0.625rem 0; } .e-app-import-plugins-activation__plugin-name { -webkit-margin-start: 0.5rem; margin-inline-start: 0.5rem; } .e-app-import-plugins-activation__plugin-status-item { margin-bottom: 0.75rem; } .e-app-import-export-plugins-table__cell-content { margin-bottom: 0; text-transform: capitalize; } .e-app-import-export-loader { --e-app-import-export-loader-color: #818A96; color: var(--e-app-import-export-loader-color); font-size: 50px; } .e-app-import-export-loader.eicon-loading { font-size: 1.85rem; } .e-app-import-export-loader--absolute-center { position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); } .eps-theme-dark .e-app-import-export-loader { --e-app-import-export-loader-color: #818A96; } .e-app-import-export-message-banner { --e-app-import-export-message-banner-heading-color: #3A3F45; --e-app-import-export-message-banner-description-color: #515962; margin-bottom: 1.875rem; } .e-app-import-export-message-banner__heading { color: var(--e-app-import-export-message-banner-heading-color); margin-bottom: 0.625rem; } .e-app-import-export-message-banner__description { color: var(--e-app-import-export-message-banner-description-color); margin-bottom: 0; } .eps-theme-dark .e-app-import-export-message-banner { --e-app-import-export-message-banner-heading-color: #9DA5AE; --e-app-import-export-message-banner-description-color: #BABFC5; } .e-app-import-connect-pro-notice { margin-bottom: 1.25rem; } .e-app-import-failed-plugins-notice { margin-bottom: 1.25rem; } .e-onboarding { font-family: "DM Sans", "Roboto", sans-serif; color-scheme: light; } .e-onboarding .eps-app__main { justify-content: center; overflow-y: auto; } .e-onboarding__content { max-width: 1135px; padding: 2.75rem; margin: initial; overflow-y: initial; } .e-onboarding__checkbox-label { display: flex; line-height: 18px; margin-bottom: 27px; } .e-onboarding__checkbox-input { -webkit-margin-end: 14px; margin-inline-end: 14px; width: 16px; height: 16px; border-color: #69727D; border-radius: 2px; } .e-onboarding__checkbox-input:checked { background-color: #525861; } .e-onboarding__checkbox-input:checked::after { margin-bottom: 15%; width: 6px; height: 9px; border-width: 0 2px 2px 0; } .e-onboarding__feature-list { margin-bottom: 40px; } .e-onboarding__text-input { font-size: 14px; width: 325px; padding: 12px 16px; color: #69727D; border: 1px solid #9EA5AD; } .e-onboarding__text-input:focus-visible { outline: initial; border: 1px solid #3A3F45; } .e-onboarding__text-input::-moz-placeholder { color: #C2C7CC; } .e-onboarding__text-input::placeholder { color: #C2C7CC; } .e-onboarding__footnote { margin-top: 24px; width: 325px; text-align: center; } .e-onboarding__footnote a { text-decoration: underline; color: #3A3F45; } #e-app ~ #__wp-uploader-id-2 .media-modal { max-width: 1024px; max-height: 768px; margin: auto; } .e-onboarding__page-content { margin-bottom: 70px; } .e-onboarding__page-content-start { max-width: 675px; text-align: start; flex-basis: 555px; align-self: start; } .e-onboarding__page-content-end { min-width: 440px; max-width: 540px; } .e-onboarding__page-content-end img { width: 100%; } .e-onboarding__page-content-section-title { font-family: "DM Serif Display", serif; font-size: 36px; font-weight: 700; color: #0C0D0E; } .e-onboarding__page-content-section-text { font-size: 18px; color: #3A3F45; } .e-onboarding__header-logo .eps-app__logo { background-color: #0C0D0E; color: #ffffff; width: 1.3rem; height: 1.3rem; line-height: 1.3rem; font-size: 0.48rem; } .e-onboarding__header-logo .eps-app__logo:not(:last-child) { -webkit-margin-end: 7px; margin-inline-end: 7px; } .e-onboarding__header-logo img { width: 104px; } .e-onboarding__header .eps-app__header-btn { display: flex; align-items: center; font-size: 13px; } .e-onboarding__header .eps-app__header-btn .eps-icon:not(:last-child) { -webkit-margin-end: 7px; margin-inline-end: 7px; } .e-onboarding__header .eps-button { color: #0C0D0E; } .e-onboarding__header .eps-button__go-pro-btn { background-color: #871A40; color: #ffffff; padding: 4px 8px; border-radius: 4px; font-weight: 700; font-size: 12px; transition: 0.5s; } .e-onboarding__header .eps-button__go-pro-btn:hover { background: #b22254; } .e-onboarding__go-pro { width: 288px; font-size: 12px; background-color: #ffffff; } .e-onboarding__go-pro-title { font-size: 18px; font-weight: 700; color: #871A40; } .e-onboarding__go-pro-cta { display: inline-block; color: #871A40; padding: 9px; border: 1px solid #871A40; } .e-onboarding__go-pro-cta.e-onboarding__button { font-size: 14px; } .e-onboarding__go-pro-paragraph:not(:last-child) { margin-bottom: 20px; } .e-onboarding__go-pro-already-have { text-decoration: underline; } .e-onboarding__progress-bar { display: flex; justify-content: center; margin-bottom: 125px; } .e-onboarding__progress-bar-item { display: flex; align-items: center; color: #69727D; font-size: 0.75rem; } .e-onboarding__progress-bar-item-icon { display: inline-block; font-family: "DM Serif Display", serif; text-align: center; width: 1.1rem; height: 1.1rem; line-height: 1rem; font-size: 0.75rem; font-weight: bold; border-radius: 50%; border: 1px solid #69727D; -webkit-margin-end: 8px; margin-inline-end: 8px; flex-shrink: 0; } .e-onboarding__progress-bar-item:not(:last-child) { -webkit-margin-end: 22px; margin-inline-end: 22px; } .e-onboarding__progress-bar-item:not(:last-child):after { font-family: "eicons"; -webkit-margin-start: 22px; margin-inline-start: 22px; content: "\e89e"; } .e-onboarding__progress-bar-item--active { color: #D004D4; } .e-onboarding__progress-bar-item--active .e-onboarding__progress-bar-item-icon, .e-onboarding__progress-bar-item--completed .e-onboarding__progress-bar-item-icon { color: #ffffff; border-color: #D004D4; background-color: #D004D4; } .e-onboarding__progress-bar-item--skipped, .e-onboarding__progress-bar-item--completed { cursor: pointer; } .e-onboarding__progress-bar-item--skipped .e-onboarding__progress-bar-item-icon { color: #ffffff; background-color: #69727D; } .e-onboarding__button { font-size: 18px; cursor: pointer; transition: var(--e-a-transition-hover); } .e-onboarding__button-action { color: var(--e-a-btn-color); background-color: var(--e-a-btn-bg-primary); min-width: 325px; padding: 15px 30px; text-align: center; } .e-onboarding__button-action:hover { background-color: var(--e-a-btn-bg-primary-hover); } .e-onboarding__button-skip { padding: 8px 16px; color: #515962; } .e-onboarding__button-skip:hover { background-color: #F9FAFA; } .e-onboarding__button--disabled { pointer-events: none; background-color: #D5D8DC; color: #9EA5AD; } .e-onboarding__button--disabled:hover { cursor: progress; } .e-onboarding__button--processing { pointer-events: none; filter: brightness(90%); } .e-onboarding__card { border: 1px solid #3A3F45; border-radius: 8px; padding: 40px 40px; cursor: pointer; flex-grow: 1; display: flex; flex-direction: column; align-items: center; } .e-onboarding__card-image, .e-onboarding__card-text { width: 345px; } .e-onboarding__card-image { margin-bottom: 44px; } .e-onboarding__card-text { font-size: 20px; font-weight: 700; text-align: center; color: #0C0D0E; } .e-onboarding__card:hover { box-shadow: 4px 4px 0 0 #000000; } .e-onboarding__card:active { box-shadow: initial; } .e-onboarding__checklist { -webkit-padding-start: 0; padding-inline-start: 0; } .e-onboarding__checklist-item { display: flex; align-items: center; font-size: 12px; margin-bottom: 12px; } .e-onboarding__checklist-item .eicon-check-circle { -webkit-margin-end: 9px; margin-inline-end: 9px; font-size: 16px; font-weight: 600; } .e-onboarding__notice { display: inline-block; padding: 12px 14px; margin-bottom: 16px; color: #3A3F45; } .e-onboarding__notice--error { background-color: #FDE8EC; } .e-onboarding__notice--error i { font-size: 16px; color: #B92136; } .e-onboarding__notice--success { background-color: #ECF9F2; } .e-onboarding__notice--success i { color: #117740; } .e-onboarding__notice i { -webkit-margin-end: 14px; margin-inline-end: 14px; } .e-onboarding__notice-empty-spacer { height: 61px; } .e-onboarding__page-account .e-onboarding__checkbox-label { margin-top: 50px; } .e-onboarding__action-button-text { -webkit-margin-start: 10px; margin-inline-start: 10px; } .e-onboarding__site-name-input { margin-top: 80px; } .e-onboarding__page-siteLogo .e-app-upload-file__button { color: var(--e-a-color-primary-bold); border-color: var(--e-a-color-primary-bold); } .e-onboarding__page-siteLogo .e-app-upload-file__button:hover { background-color: #FAE8FF; } .e-onboarding__drop-zone { margin-top: 3rem; } .e-onboarding .eps-display-3 { font-size: 16px; margin-bottom: 0.5rem; } .e-onboarding .e-app-upload-file__button { max-width: 198px; margin: 0 auto; } .e-onboarding .e-app-drop-zone__secondary-text { font-size: 14px; } .e-onboarding__logo-container { position: relative; margin-top: 3rem; min-height: 120px; width: -moz-fit-content; width: fit-content; display: flex; align-items: center; justify-content: center; min-width: 220px; border: 1px solid #BABFC5; } .e-onboarding__logo-container img { height: auto; max-height: 100%; width: auto; } .e-onboarding__logo-remove { position: absolute; right: 8px; top: 5px; } .e-onboarding__logo-remove i { font-size: 16px; width: 15px; } .e-onboarding__logo-remove:hover { cursor: pointer; } .e-onboarding__is-uploading { visibility: hidden; } .e-onboarding__page-goodToGo .e-onboarding__page-content-section-title, .e-onboarding__page-goodToGo .e-onboarding__page-content-section-text { text-align: center; } .e-onboarding__cards-grid.e-onboarding__page-content { margin-top: 48px; margin-bottom: 48px; } .e-onboarding__cards-grid .e-onboarding__card { max-width: 555px; } .e-onboarding__cards-grid .e-onboarding__card:not(:last-child) { -webkit-margin-end: 20px; margin-inline-end: 20px; } .e-onboarding__good-to-go-footer { justify-content: end; } .e-onboarding__upload-pro { flex-direction: row; justify-content: center; font-family: "DM Sans", "Roboto", sans-serif; text-align: center; } .e-onboarding__upload-pro .eps-app__content { overflow-y: hidden; max-width: 1113px; padding: 30px; } .e-onboarding__upload-pro-drop-zone { margin-bottom: 24px; } .e-onboarding__upload-pro-drop-zone h1 { font-family: "Source Serif Pro", "Roboto", sans-serif; } .e-onboarding__upload-pro-drop-zone .e-app-drag-drop { padding: 48px; } .e-onboarding__upload-pro-drop-zone .eps-display-3, .e-onboarding__upload-pro-drop-zone .e-app-drop-zone__text, .e-onboarding__upload-pro-drop-zone .e-app-drop-zone__secondary-text { margin-bottom: 12px; } .e-onboarding__upload-pro-drop-zone .e-app-upload-file__button { background-color: #040080; color: #46F2B6; padding: 14px 40px; border-color: #040080; } .e-onboarding__upload-pro-get-file { font-size: 12px; margin-top: 24px; } .e-onboarding__upload-pro-get-file a { text-decoration: underline; } .e-onboarding__upload-pro .e-onboarding__notice { margin-bottom: 0; } /*# sourceMappingURL=app.css.map */(self["webpackJsonpother-root"]=self["webpackJsonpother-root"]||[]).push([["src_i18n_ja_i18n_txt"],{63436:(n,t,r)=>{r(10988);var e=function(n,t){return"other"},u=function(n,t,r,e,u){if({}.hasOwnProperty.call(e,n))return e[n];t&&(n-=t);var i=r(n,u);return i in e?e[i]:e.other},i=function(n,t,r){if(!r)return n;if(isNaN(n))throw new Error("Can't apply offset:"+r+" to argument `"+t+"` with non-numerical value "+JSON.stringify(n)+".");return n-r},o=function(n,t){return{}.hasOwnProperty.call(t,n)?t[n]:t.other};n.exports={actions:{addToIgnoreList:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},cleanup:function(n){return u(n.count,0,e,{0:"",1:"\u9805\u76ee\u3092",other:"\u9805\u76ee\u3092"})+"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},delete:function(n){return"\u5b8c\u5168\u306b\u524a\u9664"},grantFullAccess:function(n){return"\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u4ed8\u4e0e"},group:function(n){return"\u30b0\u30eb\u30fc\u30d7 \u30a2\u30af\u30b7\u30e7\u30f3"},moveToBlack:function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},moveToDrop:function(n){return"\u30c9\u30ed\u30c3\u30d7\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},moveToQuarantine:function(n){return"\u9694\u96e2\u5148\u306b\u79fb\u52d5"},moveToWhite:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},other:function(n){return"\u305d\u306e\u4ed6\u306e\u30a2\u30af\u30b7\u30e7\u30f3"},removeFullAccess:function(n){return"\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u53d6\u308a\u6d88\u3059"},restoreFromQuarantine:function(n){return"\u9694\u96e2\u5148\u304b\u3089\u30ea\u30b9\u30c8\u30a2"},restoreOriginal:function(n){return"\u5143\u306e"+u(n.count,0,e,{other:"\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30b9\u30c8\u30a2"})},scopeToGroup:function(n){return"\u30b9\u30b3\u30fc\u30d7\u3092\u30b0\u30eb\u30fc\u30d7\u306b\u5909\u66f4"},scopeToLocal:function(n){return"\u30b9\u30b3\u30fc\u30d7\u3092\u30ed\u30fc\u30ab\u30eb\u306b\u5909\u66f4"},tryToRestore:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30af\u30ea\u30fc\u30f3 \u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30ea\u30b9\u30c8\u30a2"},viewFile:function(n){return"\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a"},sendFalsePositives:function(n){return"\u8aa4\u691c\u77e5\u3092\u9001\u4fe1"}},attributions:{license:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9"},link:function(n){return"\u30ea\u30f3\u30af"},name:function(n){return"\u540d\u524d"}},backup:{date:{everyDay:function(n){return"\u6bce\u65e5"},first:function(n){return"\u7b2c 1"},fourth:function(n){return"\u7b2c 4"},friday:function(n){return"\u91d1\u66dc\u65e5"},last:function(n){return"\u6700\u7d42"},lastDay:function(n){return"\u672b\u65e5"},monday:function(n){return"\u6708\u66dc\u65e5"},mondayToFriday:function(n){return"\u6708\u66dc\u65e5\u304b\u3089\u91d1\u66dc\u65e5"},ofEachMonth:function(n){return"(\u6bce\u6708)"},onShutdown:function(n){return"\u30b7\u30b9\u30c6\u30e0\u306e\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u6642"},onStartup:function(n){return"\u30b7\u30b9\u30c6\u30e0\u306e\u8d77\u52d5\u6642"},saturday:function(n){return"\u571f\u66dc\u65e5"},second:function(n){return"\u7b2c 2"},sunday:function(n){return"\u65e5\u66dc\u65e5"},third:function(n){return"\u7b2c 3"},thursday:function(n){return"\u6728\u66dc\u65e5"},timeSinceBackupDays:function(n){return"\u76f4\u8fd1\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089 "+u(n.count,0,e,{1:"1 \u65e5",other:i(n.count,"count")+" \u65e5"})},timeSinceBackupHours:function(n){return"\u76f4\u8fd1\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089 "+u(n.count,0,e,{1:"1 \u6642\u9593",other:i(n.count,"count")+" \u6642\u9593"})},tuesday:function(n){return"\u706b\u66dc\u65e5"},wednesday:function(n){return"\u6c34\u66dc\u65e5"}},systems:{acronis:function(n){return"Acronis Backup"},cloudlinux:function(n){return"CloudLinux Backup"},cloudlinux_on_premise:function(n){return"CloudLinux Backup On-Premises"},clusterlogics:function(n){return"Clusterlogics \u30d0\u30c3\u30af\u30a2\u30c3\u30d7"},cpanel:function(n){return"cPanel \u30d0\u30c3\u30af\u30a2\u30c3\u30d7"},directadmin:function(n){return"DirectAdmin \u30d0\u30c3\u30af\u30a2\u30c3\u30d7"},plesk:function(n){return"Plesk \u30d0\u30c3\u30af\u30a2\u30c3\u30d7"}},time:{at:function(n){return", \u958b\u59cb: "+n.startAt},repeat:function(n){return" \u7e70\u308a\u8fd4\u3057\u9593\u9694: "+o(n.intervalType,{minutes:u(n.repeatInterval,0,e,{other:i(n.repeatInterval,"repeatInterval")+" \u5206"}),hours:u(n.repeatInterval,0,e,{other:i(n.repeatInterval,"repeatInterval")+" \u6642\u9593"}),other:""})+"\u3001\u958b\u59cb: "+n.from+"\u3001\u7d42\u4e86: "+n.to}}},blockedPorts:{addIpToPortModal:{commentPlaceholder:function(n){return"\u8aac\u660e\u3092\u5165\u529b"},confirmText:function(n){return"IP/\u30b5\u30d6\u30cd\u30c3\u30c8\u3092\u8ffd\u52a0"},ipPlaceholder:function(n){return"IP \u3092\u5165\u529b"},title:function(n){return"IP/\u30b5\u30d6\u30cd\u30c3\u30c8\u3092\u8ffd\u52a0"}},addItemTab:{commentPlaceholder:function(n){return"\u30b3\u30e1\u30f3\u30c8\u3092\u5165\u529b"},ipsNote:function(n){return"IP \u307e\u305f\u306f\u30b5\u30d6\u30cd\u30c3\u30c8\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8 (CIDR \u8868\u8a18)\u3002"},ipsPlaceholder:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306e IP"},portNote:function(n){return"\u30dd\u30fc\u30c8\u306f\u3059\u3079\u3066\u306e IP \u3067\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u3059\u3002\u305f\u3060\u3057\u3001\u4e0b\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u306f\u9664\u5916\u3057\u307e\u3059\u3002"},portPlaceholder:function(n){return"\u30dd\u30fc\u30c8"},tcp:function(n){return"TCP"},udp:function(n){return"UDP"}},confirmModal:{aboutItems:function(n){return n.ipVersion+" \u7528\u306b\u6b21\u306e\u30dd\u30fc\u30c8\u304c\u958b\u304d\u307e\u3059:"},confirms:function(n){return"\u9069\u7528"},description:function(n){return"\u30d6\u30ed\u30c3\u30ad\u30f3\u30b0\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u3048\u3066\u3044\u308b\u305f\u3081\u3001\u4e0b\u306b\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u3066\u3044\u308b\u3082\u306e\u3092\u9664\u304f\u3059\u3079\u3066\u306e\u30dd\u30fc\u30c8\u3078\u306e\u30a2\u30af\u30bb\u30b9\u304c\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u3059\u3002SSH/\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d1\u30cd\u30eb\u306e\u30dd\u30fc\u30c8\u304c\u958b\u3044\u3066\u3044\u308b\u30dd\u30fc\u30c8\u306e\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},tableTitles:{ports:function(n){return"\u958b\u3044\u3066\u3044\u308b\u30dd\u30fc\u30c8"},portsType:function(n){return"\u30dd\u30fc\u30c8\u306e\u7a2e\u985e"},tcpInbound:function(n){return"TCP \u53d7\u4fe1"},tcpOutbound:function(n){return"TCP \u9001\u4fe1"},udpInbound:function(n){return"UDP \u53d7\u4fe1"},udpOutbound:function(n){return"UDP \u9001\u4fe1"}},titles:function(n){return"\u6ce8\u610f\uff01"}},defaultBlocking:{options:{close:function(n){return"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u3082\u306e\u4ee5\u5916\u306f\u3059\u3079\u3066\u9589\u3058\u308b"},open:function(n){return"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u3082\u306e\u4ee5\u5916\u306f\u3059\u3079\u3066\u958b\u304f"}},title:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30d6\u30ed\u30c3\u30ad\u30f3\u30b0\u30e2\u30fc\u30c9"}},notifications:{ipAdded:function(n){return"IP "+n.ip+" \u304c\u6b63\u5e38\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f\u3002\u8ffd\u52a0\u5148\u30dd\u30fc\u30c8: "+n.port},ipDeleteConfirm:function(n){return"IP "+n.ip+" \u3092\u524a\u9664 - \u524a\u9664\u5143\u30dd\u30fc\u30c8: "+n.port},ipDeleted:function(n){return"IP "+n.ip+" \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002\u524a\u9664\u5143\u30dd\u30fc\u30c8: "+n.port},ipPortCommentEdited:function(n){return"\u30dd\u30fc\u30c8 "+n.port+" \u306e "+n.ip+" \u306b\u5bfe\u3059\u308b\u30b3\u30e1\u30f3\u30c8\u304c\u6b63\u5e38\u306b\u7de8\u96c6\u3055\u308c\u307e\u3057\u305f"},portAdded:function(n){return"\u30dd\u30fc\u30c8 "+n.port+" ("+u(n.count,0,e,{other:"IP "+n.ip})+") \u304c\u6b63\u5e38\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},portCommentEdited:function(n){return"\u30dd\u30fc\u30c8 "+n.port+" \u306b\u5bfe\u3059\u308b\u30b3\u30e1\u30f3\u30c8\u304c\u6b63\u5e38\u306b\u7de8\u96c6\u3055\u308c\u307e\u3057\u305f"},portDeleteConfirm:function(n){return"\u30dd\u30fc\u30c8 "+n.port+" \u3092\u524a\u9664 - "+u(n.count,0,e,{other:"IP:"})},portDeleted:function(n){return"\u30dd\u30fc\u30c8 "+n.port+" \u306f\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"}},submit:function(n){return"\u9069\u7528"},table:{filterByIp:function(n){return"IP \u306b\u3088\u308b\u30d5\u30a3\u30eb\u30bf\u30fc"},headers:{ips:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306e IP"},note:function(n){return"\u6ce8"},port:function(n){return"\u30dd\u30fc\u30c8"}},ipsTooltip:function(n){return"\u30dd\u30fc\u30c8\u3092\u30d6\u30ed\u30c3\u30af\u3057\u306a\u3044 IP \u306e\u30ea\u30b9\u30c8"},loadMore:function(n){return"\u7d9a\u304d\u3092\u30ed\u30fc\u30c9"}},tcpInbound:{description:function(n){return"\u53d7\u4fe1 TCP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7528\u306b\u958b\u304f\u30dd\u30fc\u30c8\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8 ("+n.ipVersion+")"},title:function(n){return"TCP \u53d7\u4fe1\u30dd\u30fc\u30c8"}},tcpOutbound:{description:function(n){return"\u9001\u4fe1 TCP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7528\u306b\u958b\u304f\u30dd\u30fc\u30c8\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8 ("+n.ipVersion+")"},title:function(n){return"TCP \u9001\u4fe1\u30dd\u30fc\u30c8"}},udpInbound:{description:function(n){return"\u53d7\u4fe1 UDP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7528\u306b\u958b\u304f\u30dd\u30fc\u30c8\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8 ("+n.ipVersion+")"},title:function(n){return"UDP \u53d7\u4fe1\u30dd\u30fc\u30c8"}},udpOutbound:{description:function(n){return"\u9001\u4fe1 UDP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7528\u306b\u958b\u304f\u30dd\u30fc\u30c8\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8 ("+n.ipVersion+")"},title:function(n){return"UDP \u9001\u4fe1\u30dd\u30fc\u30c8"}}},comingSoon:{teaser:function(n){return"\u3053\u306e\u65b0\u6a5f\u80fd\u306f\u8fd1\u65e5\u4e2d\u306b\u5c0e\u5165\u3059\u308b\u4e88\u5b9a\u3067\u3059"}},country:{AD:function(n){return"\u30a2\u30f3\u30c9\u30e9"},AE:function(n){return"\u30a2\u30e9\u30d6\u9996\u9577\u56fd\u9023\u90a6"},AF:function(n){return"\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3"},AG:function(n){return"\u30a2\u30f3\u30c6\u30a3\u30b0\u30a2\u30fb\u30d0\u30fc\u30d6\u30fc\u30c0"},AI:function(n){return"\u30a2\u30f3\u30b0\u30a4\u30e9"},AL:function(n){return"\u30a2\u30eb\u30d0\u30cb\u30a2"},AM:function(n){return"\u30a2\u30eb\u30e1\u30cb\u30a2"},AO:function(n){return"\u30a2\u30f3\u30b4\u30e9"},AQ:function(n){return"\u5357\u6975\u5927\u9678"},AR:function(n){return"\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3"},AS:function(n){return"\u7c73\u9818\u30b5\u30e2\u30a2"},AT:function(n){return"\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2"},AU:function(n){return"\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2"},AW:function(n){return"\u30a2\u30eb\u30fc\u30d0"},AX:function(n){return"\u30aa\u30fc\u30e9\u30f3\u30c9"},AZ:function(n){return"\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3"},BA:function(n){return"\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca"},BB:function(n){return"\u30d0\u30eb\u30d0\u30c9\u30b9"},BD:function(n){return"\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5"},BE:function(n){return"\u30d9\u30eb\u30ae\u30fc"},BF:function(n){return"\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd"},BG:function(n){return"\u30d6\u30eb\u30ac\u30ea\u30a2"},BH:function(n){return"\u30d0\u30fc\u30ec\u30fc\u30f3"},BI:function(n){return"\u30d6\u30eb\u30f3\u30b8"},BJ:function(n){return"\u30d9\u30ca\u30f3"},BL:function(n){return"\u30b5\u30f3 \u30d0\u30eb\u30c6\u30eb\u30df\u30fc"},BM:function(n){return"\u30d0\u30df\u30e5\u30fc\u30c0"},BN:function(n){return"\u30d6\u30eb\u30cd\u30a4"},BO:function(n){return"\u30dc\u30ea\u30d3\u30a2"},BQ:function(n){return"\u30dc\u30cd\u30fc\u30eb\u3001\u30b7\u30f3\u30c8 \u30e6\u30fc\u30b9\u30bf\u30c6\u30a3\u30a6\u30b9\u304a\u3088\u3073\u30b5\u30d0"},BR:function(n){return"\u30d6\u30e9\u30b8\u30eb"},BS:function(n){return"\u30d0\u30cf\u30de"},BT:function(n){return"\u30d6\u30fc\u30bf\u30f3"},BW:function(n){return"\u30dc\u30c4\u30ef\u30ca"},BY:function(n){return"\u30d9\u30e9\u30eb\u30fc\u30b7"},BZ:function(n){return"\u30d9\u30ea\u30fc\u30ba"},CA:function(n){return"\u30ab\u30ca\u30c0"},CC:function(n){return"\u30b3\u30b3\u30b9 (\u30ad\u30fc\u30ea\u30f3\u30b0) \u8af8\u5cf6"},CD:function(n){return"\u30b3\u30f3\u30b4"},CF:function(n){return"\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd"},CG:function(n){return"\u30b3\u30f3\u30b4\u5171\u548c\u56fd"},CH:function(n){return"\u30b9\u30a4\u30b9"},CI:function(n){return"\u8c61\u7259\u6d77\u5cb8"},CK:function(n){return"\u30af\u30c3\u30af\u8af8\u5cf6"},CL:function(n){return"\u30c1\u30ea"},CM:function(n){return"\u30ab\u30e1\u30eb\u30fc\u30f3"},CN:function(n){return"\u4e2d\u56fd"},CO:function(n){return"\u30b3\u30ed\u30f3\u30d3\u30a2"},CR:function(n){return"\u30b3\u30b9\u30bf\u30ea\u30ab"},CU:function(n){return"\u30ad\u30e5\u30fc\u30d0"},CV:function(n){return"\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7"},CW:function(n){return"\u30ad\u30e5\u30e9\u30bd\u30fc"},CX:function(n){return"\u30af\u30ea\u30b9\u30de\u30b9\u5cf6"},CY:function(n){return"\u30ad\u30d7\u30ed\u30b9"},CZ:function(n){return"\u30c1\u30a7\u30b3"},DE:function(n){return"\u30c9\u30a4\u30c4"},DJ:function(n){return"\u30b8\u30d6\u30c1"},DK:function(n){return"\u30c7\u30f3\u30de\u30fc\u30af"},DM:function(n){return"\u30c9\u30df\u30cb\u30ab"},DO:function(n){return"\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd"},DZ:function(n){return"\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2"},EC:function(n){return"\u30a8\u30af\u30a2\u30c9\u30eb"},EE:function(n){return"\u30a8\u30b9\u30c8\u30cb\u30a2"},EG:function(n){return"\u30a8\u30b8\u30d7\u30c8"},ER:function(n){return"\u30a8\u30ea\u30c8\u30ea\u30a2"},ES:function(n){return"\u30b9\u30da\u30a4\u30f3"},ET:function(n){return"\u30a8\u30c1\u30aa\u30d4\u30a2"},FI:function(n){return"\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9"},FJ:function(n){return"\u30d5\u30a3\u30b8\u30fc"},FK:function(n){return"\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\u8af8\u5cf6"},FM:function(n){return"\u30df\u30af\u30ed\u30cd\u30b7\u30a2\u9023\u90a6"},FO:function(n){return"\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6"},FR:function(n){return"\u30d5\u30e9\u30f3\u30b9"},GA:function(n){return"\u30ac\u30dc\u30f3"},GB:function(n){return"\u30a4\u30ae\u30ea\u30b9"},GD:function(n){return"\u30b0\u30ec\u30ca\u30c0"},GE:function(n){return"\u30b8\u30e7\u30fc\u30b8\u30a2"},GF:function(n){return"\u30d5\u30e9\u30f3\u30b9\u9818\u30ae\u30a2\u30ca"},GG:function(n){return"\u30ac\u30fc\u30f3\u30b8\u30fc"},GH:function(n){return"\u30ac\u30fc\u30ca"},GI:function(n){return"\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb"},GL:function(n){return"\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9"},GM:function(n){return"\u30ac\u30f3\u30d3\u30a2"},GN:function(n){return"\u30ae\u30cb\u30a2"},GP:function(n){return"\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7"},GQ:function(n){return"\u8d64\u9053\u30ae\u30cb\u30a2"},GR:function(n){return"\u30ae\u30ea\u30b7\u30e3"},GS:function(n){return"\u30b5\u30a6\u30b9\u30b8\u30e7\u30fc\u30b8\u30a2\u30fb\u30b5\u30a6\u30b9\u30b5\u30f3\u30c9\u30a4\u30c3\u30c1\u8af8\u5cf6"},GT:function(n){return"\u30b0\u30a2\u30c6\u30de\u30e9"},GU:function(n){return"\u30b0\u30a2\u30e0"},GW:function(n){return"\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6"},GY:function(n){return"\u30ac\u30a4\u30a2\u30ca"},HK:function(n){return"\u9999\u6e2f"},HN:function(n){return"\u30db\u30f3\u30b8\u30e5\u30e9\u30b9"},HR:function(n){return"\u30af\u30ed\u30a2\u30c1\u30a2"},HT:function(n){return"\u30cf\u30a4\u30c1"},HU:function(n){return"\u30cf\u30f3\u30ac\u30ea\u30fc"},ID:function(n){return"\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2"},IE:function(n){return"\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9"},IL:function(n){return"\u30a4\u30b9\u30e9\u30a8\u30eb"},IM:function(n){return"\u30de\u30f3\u5cf6"},IN:function(n){return"\u30a4\u30f3\u30c9"},IO:function(n){return"\u30a4\u30ae\u30ea\u30b9\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df"},IQ:function(n){return"\u30a4\u30e9\u30af"},IR:function(n){return"\u30a4\u30e9\u30f3"},IS:function(n){return"\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9"},IT:function(n){return"\u30a4\u30bf\u30ea\u30a2"},JE:function(n){return"\u30b8\u30e3\u30fc\u30b8\u30fc"},JM:function(n){return"\u30b8\u30e3\u30de\u30a4\u30ab"},JO:function(n){return"\u30e8\u30eb\u30c0\u30f3\u30fb\u30cf\u30b7\u30df\u30c6\u738b\u56fd"},JP:function(n){return"\u65e5\u672c"},KE:function(n){return"\u30b1\u30cb\u30a2"},KG:function(n){return"\u30ad\u30eb\u30ae\u30b9\u30bf\u30f3"},KH:function(n){return"\u30ab\u30f3\u30dc\u30b8\u30a2"},KI:function(n){return"\u30ad\u30ea\u30d0\u30b9"},KM:function(n){return"\u30b3\u30e2\u30ed"},KN:function(n){return"\u30bb\u30f3\u30c8\u30ad\u30c3\u30c4\u30fb\u30cd\u30fc\u30d3\u30b9"},KP:function(n){return"\u5317\u671d\u9bae"},KR:function(n){return"\u5927\u97d3\u6c11\u56fd"},KW:function(n){return"\u30af\u30a6\u30a7\u30fc\u30c8"},KY:function(n){return"\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6"},KZ:function(n){return"\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3"},LA:function(n){return"\u30e9\u30aa\u30b9"},LB:function(n){return"\u30ec\u30d0\u30ce\u30f3"},LC:function(n){return"\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2"},LI:function(n){return"\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3"},LK:function(n){return"\u30b9\u30ea\u30e9\u30f3\u30ab"},LR:function(n){return"\u30ea\u30d9\u30ea\u30a2"},LS:function(n){return"\u30ec\u30bd\u30c8"},LT:function(n){return"\u30ea\u30c8\u30a2\u30cb\u30a2\u5171\u548c\u56fd"},LU:function(n){return"\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af"},LV:function(n){return"\u30e9\u30c8\u30d3\u30a2"},LY:function(n){return"\u30ea\u30d3\u30a2"},MA:function(n){return"\u30e2\u30ed\u30c3\u30b3"},MC:function(n){return"\u30e2\u30ca\u30b3"},MD:function(n){return"\u30e2\u30eb\u30c9\u30d0\u5171\u548c\u56fd"},ME:function(n){return"\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed"},MF:function(n){return"\u30bb\u30f3\u30c8 \u30de\u30fc\u30c1\u30f3"},MG:function(n){return"\u30de\u30c0\u30ac\u30b9\u30ab\u30eb"},MH:function(n){return"\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6"},MK:function(n){return"\u5317\u30de\u30b1\u30c9\u30cb\u30a2"},ML:function(n){return"\u30de\u30ea"},MM:function(n){return"\u30df\u30e3\u30f3\u30de\u30fc (\u30d3\u30eb\u30de)"},MN:function(n){return"\u30e2\u30f3\u30b4\u30eb"},MO:function(n){return"\u30de\u30ab\u30aa"},MP:function(n){return"\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6"},MQ:function(n){return"\u30de\u30eb\u30c6\u30a3\u30cb\u30fc\u30af"},MR:function(n){return"\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2"},MS:function(n){return"\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8"},MT:function(n){return"\u30de\u30eb\u30bf"},MU:function(n){return"\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9"},MV:function(n){return"\u30e2\u30eb\u30c7\u30a3\u30d6"},MW:function(n){return"\u30de\u30e9\u30a6\u30a4"},MX:function(n){return"\u30e1\u30ad\u30b7\u30b3"},MY:function(n){return"\u30de\u30ec\u30fc\u30b7\u30a2"},MZ:function(n){return"\u30e2\u30b6\u30f3\u30d3\u30fc\u30af"},NA:function(n){return"\u30ca\u30df\u30d3\u30a2"},NC:function(n){return"\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2"},NE:function(n){return"\u30cb\u30b8\u30a7\u30fc\u30eb"},NF:function(n){return"\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6"},NG:function(n){return"\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2"},NI:function(n){return"\u30cb\u30ab\u30e9\u30b0\u30a2"},NL:function(n){return"\u30aa\u30e9\u30f3\u30c0"},NO:function(n){return"\u30ce\u30eb\u30a6\u30a7\u30fc"},NP:function(n){return"\u30cd\u30d1\u30fc\u30eb"},NR:function(n){return"\u30ca\u30a6\u30eb"},NU:function(n){return"\u30cb\u30a6\u30a8"},NZ:function(n){return"\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9"},OM:function(n){return"\u30aa\u30de\u30fc\u30f3"},PA:function(n){return"\u30d1\u30ca\u30de"},PE:function(n){return"\u30da\u30eb\u30fc"},PF:function(n){return"\u30d5\u30e9\u30f3\u30b9\u9818\u30dd\u30ea\u30cd\u30b7\u30a2"},PG:function(n){return"\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2"},PH:function(n){return"\u30d5\u30a3\u30ea\u30d4\u30f3"},PK:function(n){return"\u30d1\u30ad\u30b9\u30bf\u30f3"},PL:function(n){return"\u30dd\u30fc\u30e9\u30f3\u30c9"},PM:function(n){return"\u30b5\u30f3 \u30d4\u30a8\u30fc\u30eb\u304a\u3088\u3073\u30df\u30af\u30ed\u30f3"},PN:function(n){return"\u30d4\u30c8\u30b1\u30eb\u30f3\u8af8\u5cf6"},PR:function(n){return"\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3"},PS:function(n){return"\u30d1\u30ec\u30b9\u30c1\u30ca"},PT:function(n){return"\u30dd\u30eb\u30c8\u30ac\u30eb"},PW:function(n){return"\u30d1\u30e9\u30aa"},PY:function(n){return"\u30d1\u30e9\u30b0\u30a2\u30a4"},QA:function(n){return"\u30ab\u30bf\u30fc\u30eb"},RE:function(n){return"\u30ec\u30e6\u30cb\u30aa\u30f3"},RO:function(n){return"\u30eb\u30fc\u30de\u30cb\u30a2"},RS:function(n){return"\u30bb\u30eb\u30d3\u30a2"},RU:function(n){return"\u30ed\u30b7\u30a2"},RW:function(n){return"\u30eb\u30ef\u30f3\u30c0"},SA:function(n){return"\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2"},SB:function(n){return"\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6"},SC:function(n){return"\u30bb\u30a4\u30b7\u30a7\u30eb"},SD:function(n){return"\u30b9\u30fc\u30c0\u30f3"},SE:function(n){return"\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3"},SG:function(n){return"\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb"},SH:function(n){return"\u30bb\u30f3\u30c8 \u30d8\u30ec\u30ca"},SI:function(n){return"\u30b9\u30ed\u30d9\u30cb\u30a2"},SJ:function(n){return"\u30b9\u30f4\u30a1\u30fc\u30eb\u30d0\u30eb\u304a\u3088\u3073\u30e4\u30f3 \u30de\u30a4\u30a8\u30f3"},SK:function(n){return"\u30b9\u30ed\u30d0\u30ad\u30a2\u5171\u548c\u56fd"},SL:function(n){return"\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd"},SM:function(n){return"\u30b5\u30f3\u30de\u30ea\u30ce"},SN:function(n){return"\u30bb\u30cd\u30ac\u30eb"},SO:function(n){return"\u30bd\u30de\u30ea\u30a2"},SR:function(n){return"\u30b9\u30ea\u30ca\u30e0"},SS:function(n){return"\u5357\u30b9\u30fc\u30c0\u30f3"},ST:function(n){return"\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da"},SV:function(n){return"\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb"},SX:function(n){return"\u30bb\u30f3\u30c8 \u30de\u30fc\u30c1\u30f3"},SY:function(n){return"\u30b7\u30ea\u30a2"},SZ:function(n){return"\u30b9\u30ef\u30b8\u30e9\u30f3\u30c9"},TC:function(n){return"\u30bf\u30fc\u30af\u30b9\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6"},TD:function(n){return"\u30c1\u30e3\u30c9"},TF:function(n){return"\u30d5\u30e9\u30f3\u30b9\u9818\u5357\u65b9\u5730\u57df"},TG:function(n){return"\u30c8\u30fc\u30b4"},TH:function(n){return"\u30bf\u30a4"},TJ:function(n){return"\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3"},TK:function(n){return"\u30c8\u30b1\u30e9\u30a6"},TL:function(n){return"\u6771\u30c6\u30a3\u30e2\u30fc\u30eb"},TM:function(n){return"\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3"},TN:function(n){return"\u30c1\u30e5\u30cb\u30b8\u30a2"},TO:function(n){return"\u30c8\u30f3\u30ac"},TR:function(n){return"\u30c8\u30eb\u30b3"},TT:function(n){return"\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4"},TV:function(n){return"\u30c4\u30d0\u30eb"},TW:function(n){return"\u53f0\u6e7e"},TZ:function(n){return"\u30bf\u30f3\u30b6\u30cb\u30a2"},UA:function(n){return"\u30a6\u30af\u30e9\u30a4\u30ca"},UG:function(n){return"\u30a6\u30ac\u30f3\u30c0"},UM:function(n){return"\u30a2\u30e1\u30ea\u30ab\u9818\u6709\u5c0f\u96e2\u5cf6"},US:function(n){return"\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd"},UY:function(n){return"\u30a6\u30eb\u30b0\u30a2\u30a4"},UZ:function(n){return"\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3"},VA:function(n){return"\u30d0\u30c1\u30ab\u30f3\u5e02\u56fd"},VC:function(n){return"\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u304a\u3088\u3073\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3"},VE:function(n){return"\u30d9\u30cd\u30ba\u30a8\u30e9"},VG:function(n){return"\u30a4\u30ae\u30ea\u30b9\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6"},VI:function(n){return"\u30a2\u30e1\u30ea\u30ab\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6"},VN:function(n){return"\u30d9\u30c8\u30ca\u30e0"},VU:function(n){return"\u30d0\u30cc\u30a2\u30c4"},WF:function(n){return"\u30a6\u30a9\u30ea\u30b9\u30fb\u30d5\u30c4\u30ca"},WS:function(n){return"\u30b5\u30e2\u30a2"},XK:function(n){return"\u30b3\u30bd\u30dc"},YE:function(n){return"\u30a4\u30a8\u30e1\u30f3"},YT:function(n){return"\u30de\u30e8\u30c3\u30c8"},ZA:function(n){return"\u5357\u30a2\u30d5\u30ea\u30ab"},ZM:function(n){return"\u30b6\u30f3\u30d3\u30a2"},ZW:function(n){return"\u30b8\u30f3\u30d0\u30d6\u30a8"}},dashboard:{advisorModal:{confirmText:function(n){return"\u9069\u7528"},description:function(n){return"\u6ce8:"},description1:function(n){return"* \u9805\u76ee\u304c\u9069\u7528\u3055\u308c\u306a\u3044\u3088\u3046\u306b\u30c1\u30a7\u30c3\u30af\u3092\u5916\u3057\u3066\u304f\u3060\u3055\u3044"},description2:function(n){return"* \u8a2d\u5b9a\u306f\u3044\u3064\u3067\u3082 [\u8a2d\u5b9a] \u30bf\u30d6\u3067\u623b\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002"},subTitle:function(n){return"\u30b5\u30fc\u30d0\u30fc\u8a2d\u5b9a\u306b\u63a8\u5968\u3055\u308c\u308b\u5909\u66f4:"},title:function(n){return"Imunify Advisor"}},charts:{events:function(n){return"\u30a4\u30d9\u30f3\u30c8\uff1a"+n.numberOfEvents},incidents:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8"},timeFrom:function(n){return"\u958b\u59cb\uff1a"+n.from},timeTo:function(n){return"\u7d42\u4e86\uff1a"+n.to},total:function(n){return"\u5408\u8a08"}},haveNewIncidents:function(n){return"\u65b0\u3057\u3044\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u304c\u3042\u308a\u307e\u3059"},incidents:{abuserIp:function(n){return"\u60aa\u7528\u8005\u306e IP"},addIpToBlack:function(n){return"IP \u3092\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},byAbuserIpTooltip:function(n){return"IP \u3067\u691c\u7d22\u3059\u308b\u306b\u306f\u3053\u3053\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059"},descriptionIp:function(n){return"\u8aac\u660e/IP"},descriptionWidget:function(n){return"\u8aac\u660e"},details:{abuser:function(n){return"\u60aa\u7528\u8005"},domain:function(n){return"\u30c9\u30e1\u30a4\u30f3"},rule:function(n){return"\u30eb\u30fc\u30eb"},sensor:function(n){return"\u30bb\u30f3\u30b5\u30fc"}},differentSensorsTooltip:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306f\u3001\u30bb\u30f3\u30b5\u30fc\u3054\u3068\u306b\u91cd\u5927\u5ea6\u306e\u30b9\u30b1\u30fc\u30eb\u304c\u7570\u306a\u308a\u307e\u3059\u3002"},disableAction:function(n){return"\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316"},domainWidget:function(n){return"\u30c9\u30e1\u30a4\u30f3"},eventTypeWidget:function(n){return"\u30a4\u30d9\u30f3\u30c8\u306e\u7a2e\u985e"},headers:{country:function(n){return"\u56fd"},date:function(n){return"\u65e5\u4ed8"},event:function(n){return"\u30a4\u30d9\u30f3\u30c8"},eventTypes:function(n){return"\u30a4\u30d9\u30f3\u30c8\u306e\u7a2e\u985e"},ip:function(n){return"IP"},numberOfTimes:function(n){return"\u56de\u6570"},severity:function(n){return"\u91cd\u5927\u5ea6"}},mappedTooltip:function(n){return"OSSEC \u306e\u30b9\u30b1\u30fc\u30eb\u3092 modsec \u306b\u30de\u30c3\u30d7\u3057\u307e\u3057\u305f\u3002"},modal:{commaSeparatedWarning:function(n){return"\u4e00\u90e8\u306e\u30c9\u30e1\u30a4\u30f3\u306b\u9650\u3063\u3066\u3053\u306e\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316\u3059\u308b\u306b\u306f\u3001\u30c9\u30e1\u30a4\u30f3\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8\u3092\u3053\u3053\u306b\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},confirmText:function(n){return"\u306f\u3044\u3002\u7121\u52b9\u5316\u3057\u307e\u3059"},otherwiseWarning:function(n){return"\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306f\u3001\u3059\u3079\u3066\u306e\u30c9\u30e1\u30a4\u30f3\u3067\u30eb\u30fc\u30eb\u304c\u7121\u52b9\u5316\u3055\u308c\u307e\u3059"},title:function(n){return n.plugin+" \u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316"},warning:function(n){return"\u3053\u306e\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316\u3059\u308b\u3068\u3001\u30b5\u30a4\u30c8\u306e\u4e00\u90e8\u304c\u4fdd\u8b77\u3055\u308c\u306a\u304f\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"}},moveToBlackAction:function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},moveToBlackWithGroupScopeAction:function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},moveToWhiteAction:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},moveToWhiteWithGroupScopeAction:function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},noSeverityTooltip:function(n){return"\u91cd\u5927\u5ea6\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306f\u30ea\u30b9\u30c8\u306e\u672b\u5c3e\u306b\u51fa\u529b\u3055\u308c\u307e\u3059\u3002"},numberOfTimes:function(n){return u(n.count,0,e,{other:"("+i(n.count,"count")+" \u56de)"})},removeAction:function(n){return"IP \u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},title:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8"}},incidentsAndAlerts:{bottomWarning:{text:function(n){return"\u30b0\u30e9\u30d5\u306b\u306f\u7a7a\u767d\u7b87\u6240\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u306f\u8a72\u5f53\u65e5\u306b\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3084\u30a2\u30e9\u30fc\u30c8\u304c\u8a18\u9332\u3055\u308c\u306a\u304b\u3063\u305f\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u306b\u7279\u5b9a\u306e\u7a2e\u985e\u306e\u30a2\u30e9\u30fc\u30c8\u304c\u8a18\u9332\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u3001\u4e00\u90e8\u306e\u30b0\u30e9\u30d5\u304c\u8868\u793a\u3055\u308c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u8a73\u7d30\u304a\u3088\u3073\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u306e\u30d2\u30f3\u30c8\u306b\u3064\u3044\u3066\u306f\u3001|\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u30bb\u30af\u30b7\u30e7\u30f3|\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},title:function(n){return"\u6ce8!"}},bruteforce_attacks:{description:function(n){return"CMS\u304a\u3088\u3073\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d1\u30cd\u30eb\u306b\u5bfe\u3059\u308bWeb\u30d9\u30fc\u30b9\u306e\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u30a2\u30bf\u30c3\u30af\u306e\u6570\u3068ModSecurity\u304c\u8a18\u9332\u3057\u305f\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306e\u6570\u3092\u8868\u3057\u3066\u3044\u307e\u3059\u3002"},numTitle:function(n){return"\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483"},title:function(n){return"Web\u30d9\u30fc\u30b9\u306e\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u30a2\u30bf\u30c3\u30af"}},captcha_blocked:{description:function(n){return"\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u306b\u691c\u51fa\u3055\u308c\u305f\u653b\u6483\u8005\u3084\u60aa\u610f\u306e\u3042\u308b\u30dc\u30c3\u30c8\u306b\u5bfe\u3057\u3066SplashScreen\u30c1\u30e3\u30ec\u30f3\u30b8\u3092\u8fd4\u3057\u305f\u30ea\u30af\u30a8\u30b9\u30c8\u6570\u306e\u8a18\u9332\u3067\u3059\u3002|SplashScreen|\u306b\u95a2\u3059\u308b\u8a73\u7d30\u306f\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},numTitle:function(n){return"SplashScreen \u30a4\u30d9\u30f3\u30c8"},title:function(n){return"SplashScreen\u30a4\u30d9\u30f3\u30c8"}},denied_bot_attacks:{description:function(n){return"Imunify360 Bot-Detector\u306e\u30d2\u30e5\u30fc\u30ea\u30b9\u30c6\u30a3\u30c3\u30af\u30d9\u30fc\u30b9\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u691c\u51fa\u3057\u305f\u653b\u6483\u306e\u6570\u3092\u8868\u3057\u3066\u3044\u307e\u3059\u3002Bot-Detector\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u898f\u6a21\u3067\u65b0\u7a2e\u306e\u653b\u6483\u306b\u95a2\u3059\u308b\u5927\u91cf\u306e\u60c5\u5831\u3092\u53ce\u96c6\u304a\u3088\u3073\u5206\u6790\u3057\u3001\u8907\u6570\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u307e\u305f\u304c\u308b\u653b\u6483\u3092\u9632\u3050Imunify 360\u306e\u300c\u96c6\u56e3\u514d\u75ab\u300d\u6a5f\u80fd\u306e\u4e00\u7ffc\u3092\u62c5\u3046\u3082\u306e\u3067\u3059\u3002"},numTitle:function(n){return"\u60aa\u610f\u306e\u3042\u308b\u30dc\u30c3\u30c8\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u62d2\u5426\u3057\u307e\u3057\u305f"},title:function(n){return"\u60aa\u610f\u306e\u3042\u308b\u30dc\u30c3\u30c8\u304b\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u62d2\u5426"}},description:function(n){return"\u3053\u308c\u3089\u306e\u30b0\u30e9\u30d5\u306b\u306f\u9078\u629e\u3057\u305f\u671f\u9593\u306b\u8a18\u9332\u3055\u308c\u305f\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306e\u6982\u8981\u3001\u653b\u6483\u5f37\u5ea6\u306e\u63a8\u5b9a\u5024\u3001\u304a\u3088\u3073\u3059\u3079\u3066\u306e\u30bd\u30fc\u30b9\u306b\u308f\u305f\u308b\u95a2\u9023\u30a4\u30d9\u30f3\u30c8\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"},empty:function(n){return"\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u306b\u30a2\u30e9\u30fc\u30c8\u3084\u91cd\u5927\u306a\u30a4\u30d9\u30f3\u30c8\u306f\u8a18\u9332\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u89e3\u6c7a\u3059\u308b\u306b\u306f\u3001\u3088\u308a\u9577\u3044\u9593\u9694\u3092\u9078\u629e\u3059\u308b\u304b\u3001\u5f8c\u3067\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3092\u518d\u30ed\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},failedToFetch:function(n){return"\u30c7\u30fc\u30bf\u306e\u53d6\u5f97\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u671f\u9593\u3092\u72ed\u3081\u308b\u304b\u3001\u5f8c\u3067\u3082\u3046\u4e00\u5ea6\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},heatmap:function(n){return"\u30d2\u30fc\u30c8\u30de\u30c3\u30d7"},help:function(n){return"\u8a73\u7d30\u304a\u3088\u3073\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u306e\u30d2\u30f3\u30c8\u306b\u3064\u3044\u3066\u306f\u3001|\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u30bb\u30af\u30b7\u30e7\u30f3|\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},histogram:function(n){return"\u30d2\u30b9\u30c8\u30b0\u30e9\u30e0"},noGeoIp:function(n){return"\u3069\u306e\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306b\u3082 GeoIP \u30c7\u30fc\u30bf\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},num_of_alerts:{description:function(n){return"\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u3067\u8a18\u9332\u3055\u308c\u305f\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3067\u3059\u3002\u3053\u306e\u30c7\u30fc\u30bf\u306b\u306f ModSecurity \u306e\u5168\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3001Imunify360 DOS \u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u30a2\u30e9\u30fc\u30c8\u3001\u304a\u3088\u3073 OSSEC \u306e\u30a2\u30e9\u30fc\u30c8\u306a\u3069\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306f\u4e3b\u306a\u30a2\u30e9\u30fc\u30c8\u30bd\u30fc\u30b9\u3092\u8981\u7d04\u3057\u305f\u3082\u306e\u3067\u3059\u3002"},numTitle:function(n){return"\u30a2\u30e9\u30fc\u30c8\u306e\u7dcf\u6570"},title:function(n){return"\u30a2\u30e9\u30fc\u30c8\u306e\u6982\u6cc1"}},num_of_cleanups:{description:function(n){return"\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u306b\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u305f\u4e00\u610f\u306a\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6570\u3067\u3059\u3002\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001[|\u5c65\u6b74|] \u30bf\u30d6\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},numTitle:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u305f\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb"},title:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u305f\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb"}},num_of_mrs:{description:function(n){return"\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u306b\u691c\u51fa\u3055\u308c\u305f\u4e00\u610f\u306a\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6570\u3067\u3059\u3002\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001[|\u30e6\u30fc\u30b6\u30fc|] \u30bf\u30d6\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},numTitle:function(n){return"\u691c\u51fa\u3055\u308c\u305f\u30de\u30eb\u30a6\u30a7\u30a2"},title:function(n){return"\u691c\u51fa\u3055\u308c\u305f\u30de\u30eb\u30a6\u30a7\u30a2"}},ossec_alerts:{description:function(n){return"\u9078\u629e\u3057\u305f\u6642\u9593\u9593\u9694\u5185\u306bOSSEC IDS\u306b\u3088\u3063\u3066\u8a18\u9332\u3055\u308c\u305f\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30b5\u30fc\u30d3\u30b9\uff08FTP\u3001SSH\u3001POP\u3001IMAP\u306a\u3069\uff09\u306b\u5bfe\u3059\u308b\u653b\u6483\u3092\u8868\u3057\u3066\u3044\u307e\u3059\u3002\u8a8d\u8a3c\u5931\u6557\u3001\u30d6\u30ed\u30c3\u30af\u3055\u308c\u305fIP\u304b\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3001\u4fb5\u5165\u8a66\u884c\u306e\u30a2\u30e9\u30fc\u30c8\u306a\u3069\u304c\u542b\u307e\u308c\u307e\u3059\u3002"},numTitle:function(n){return"OSSEC \u30a2\u30e9\u30fc\u30c8"},title:function(n){return"OSSEC\uff1a\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30ec\u30d9\u30eb\u306e\u653b\u6483"}},spam_ham:{description:function(n){return"\u3053\u308c\u3089\u306e\u30b0\u30e9\u30d5\u306b\u306f\u9078\u629e\u3057\u305f\u671f\u9593\u306b\u8a18\u9332\u3055\u308c\u305f\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306e\u6982\u8981\u3001\u653b\u6483\u5f37\u5ea6\u306e\u63a8\u5b9a\u5024\u3001\u304a\u3088\u3073\u3059\u3079\u3066\u306e\u30bd\u30fc\u30b9\u306b\u308f\u305f\u308b\u95a2\u9023\u30a4\u30d9\u30f3\u30c8\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"},ham:function(n){return"\u6b63\u5e38\u306a\u30e1\u30fc\u30eb (HAM)"},numTitle:function(n){return"\u30b9\u30d1\u30e0\u30e1\u30fc\u30eb"},spam:function(n){return"\u30b9\u30d1\u30e0"},title:function(n){return"\u6b63\u5e38\u306a\u30e1\u30fc\u30eb\u3068\u60aa\u8cea\u306a\u30e1\u30fc\u30eb"}},title:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3068\u30a2\u30e9\u30fc\u30c8"},waf_alerts:{description:function(n){return"\u9078\u629e\u3057\u305f\u671f\u9593\u5185\u306bModSecurity\u306b\u304c\u8a18\u9332\u3057\u305fWeb\u653b\u6483\u306e\u6570\u3092\u8868\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u306e\u30c7\u30fc\u30bf\u306b\u306fCMS\u306b\u5bfe\u3059\u308b\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u30a2\u30bf\u30c3\u30af\u3084\u30ed\u30b0\u30a4\u30f3\u306e\u8a66\u307f\u3001Web\u30b5\u30a4\u30c8\u306b\u5bfe\u3059\u308b\u30cf\u30c3\u30ad\u30f3\u30b0\u306e\u8a66\u307f\u3001\u300c\u6a5f\u5bc6\u300d\u30d5\u30a1\u30a4\u30eb\u3084\u5236\u9650\u30a8\u30ea\u30a2\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306e\u8a66\u307f\u3001\u305d\u306e\u4ed6\u306e\u60aa\u610f\u306e\u3042\u308b\u30ea\u30af\u30a8\u30b9\u30c8\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"},numTitle:function(n){return"WAF \u30a2\u30e9\u30fc\u30c8"},title:function(n){return"WAF\u30a2\u30e9\u30fc\u30c8"}}},menu:{chart:function(n){return"\u30b0\u30e9\u30d5"},heatmap:function(n){return"\u30d2\u30fc\u30c8\u30de\u30c3\u30d7"}},recommendations:{lists:{no:function(n){return"\u4eca\u306e\u3068\u3053\u308d\u63a8\u5968\u4e8b\u9805\u306f\u3042\u308a\u307e\u305b\u3093"},title:function(n){return"\u5b9f\u65bd\u3059\u3079\u304d\u5bfe\u7b56"},titles:{good:function(n){return"\u30aa\u30d7\u30b7\u30e7\u30f3"},medium:function(n){return"\u4e2d\u7a0b\u5ea6"},poor:function(n){return"\u91cd\u8981"}},updateInterval:function(n){return"\u6bce\u65e5\u66f4\u65b0\u3059\u308b"}},status:{good:{subtitle:function(n){return"\u30b5\u30fc\u30d0\u30fc\u306f\u5b8c\u5168\u306b\u4fdd\u8b77\u3055\u308c\u3066\u3044\u307e\u3059"},title:function(n){return"\u826f\u597d"}},issuesCount:function(n){return u(n.count,0,e,{1:"\u554f\u984c",other:"\u554f\u984c"})},medium:{subtitle:function(n){return"\u30b5\u30fc\u30d0\u30fc\u306b\u554f\u984c\u304c\u3042\u308a\u307e\u3059"},title:function(n){return"\u4e2d\u7a0b\u5ea6"}},poor:{subtitle:function(n){return"\u30b5\u30fc\u30d0\u30fc\u306f\u4fdd\u8b77\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},title:function(n){return"\u52a3\u60aa"}},title:function(n){return"\u4fdd\u8b77\u72b6\u614b"},unknown:{subtitle:function(n){return"\u4e0d\u660e"},title:function(n){return"\u4e0d\u660e"}}}},serverIdWidget:{addModal:{authenticationError:function(n){return"\u767b\u9332\u51e6\u7406\u306f\u307e\u3060\u7d42\u4e86\u3057\u3066\u3044\u307e\u305b\u3093\u3002\u6570\u79d2\u5f8c\u306b\u3082\u3046\u4e00\u5ea6\u304a\u8a66\u3057\u304f\u3060\u3055\u3044\u3002"},confirmNote:function(n){return"\u3053\u306e\u30a2\u30af\u30b7\u30e7\u30f3\u306f\u30c7\u30e2\u7248\u3067\u306f\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093"},description:function(n){return"Imunify 360\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u306b\u8ffd\u52a0\u3059\u308b\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044"},description2:function(n){return"\u9375\u30de\u30fc\u30af|\u306e\u30dc\u30bf\u30f3\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u3092\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3067\u304d\u307e\u3059\u3002"},description3:function(n){return"\u307e\u305f\u306f\u3001|\u30d5\u30a1\u30a4\u30eb|\u306eID\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},description4:function(n){return"\u3053\u3053\u3067\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},nearInputTooltip:function(n){return"\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u306f\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u307f\u306eImunify 360\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4e00\u610f\u306b\u8b58\u5225\u3057\u307e\u3059\u3002"},note:function(n){return"\u8907\u6570\u306e\u30ad\u30fc\u3092\u8ffd\u52a0\u3059\u308b\u306b\u306f\u3001\u305d\u308c\u3089\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u3066\u304f\u3060\u3055\u3044\u3002"},placeholder:function(n){return"\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc"},title:function(n){return"\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u3092\u8ffd\u52a0"}},addServerButtonText:function(n){return"\u30b5\u30fc\u30d0\u30fc\u3092\u8ffd\u52a0"},deleteModal:{body:function(n){return"\u6b21\u306e\u30b5\u30fc\u30d0\u30fc\u304c\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u304b\u3089\u524a\u9664\u3055\u308c\u307e\u3059\uff1a"},title:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u304b\u3089\u30b5\u30fc\u30d0\u30fc\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059"}},keyButtonText:function(n){return"\u30ad\u30fc\u3092\u30b3\u30d4\u30fc"},keyButtonTooltip:function(n){return"\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u3092\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc"},placeholder:function(n){return"\u30b5\u30fc\u30d0\u30fc"},serverStatus:function(n){return"\u72b6\u614b: "+o(n.severity,{poor:"\u52a3\u60aa",medium:"\u4e2d\u7a0b\u5ea6",good:"\u826f\u597d",other:"\u4e0d\u660e"})},trashButtonText:function(n){return"\u30b5\u30fc\u30d0\u30fc\u3092\u524a\u9664"},trashButtonTooltip:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u304b\u3089\u30b5\u30fc\u30d0\u30fc\u3092\u524a\u9664"}},statusWarning:{text:function(n){return n.count+" \u4ef6\u306e"+u(n.count,0,e,{1:"\u30b5\u30fc\u30d0\u30fc",other:"\u30b5\u30fc\u30d0\u30fc"})+"\u304c\u52a3\u60aa\u306a\u4fdd\u8b77\u72b6\u614b\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002"},tooltip:function(n){return"\u30b5\u30fc\u30d0\u30fc\u306e\u30c9\u30ed\u30c3\u30d7\u30c0\u30a6\u30f3\u30ea\u30b9\u30c8\u3067\u30b5\u30fc\u30d0\u30fc\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},title:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9"}},emails:{activityMonitor:{actions:{goToQuarantine:function(n){return"\u9694\u96e2\u5148\u306b\u884c\u304f"},removeWhiteList:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},updateSenderLimit:function(n){return"\u9001\u4fe1\u8005\u306e\u5236\u9650\u3092\u66f4\u65b0"},whiteListSender:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306e\u9001\u4fe1\u8005"}},advancedSearch:{accountName:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8"},any:function(n){return"\u4efb\u610f\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u5185"},domain:function(n){return"\u30c9\u30e1\u30a4\u30f3"},email:function(n){return"\u9001\u4fe1\u8005\u306e\u30a2\u30c9\u30ec\u30b9"},script:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8"}},headers:{actions:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3"},any:function(n){return"\u4efb\u610f\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u5185"},domains:function(n){return"\u30c9\u30e1\u30a4\u30f3"},emails:function(n){return"\u9001\u4fe1\u8005"},is_whitelisted:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u767b\u9332\u6e08\u307f"},limit:function(n){return"\u5236\u9650 (\u6642\u9593)"},scripts:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8"},sender:function(n){return"\u9001\u4fe1\u8005\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8"},sent_out:function(n){return"HAM / \u9001\u4fe1\u5b8c\u4e86"},spam:function(n){return"\u9694\u96e2\u6e08\u307f"}},notSetLimit:function(n){return"\u5236\u9650\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},refresh:function(n){return"\u66f4\u65b0"},updateLimitModal:{confirmButton:function(n){return"\u8a2d\u5b9a"},inputTitle:function(n){return"\u5236\u9650\u5024"},sliderTitle:function(n){return"\u5236\u9650\u3092\u6709\u52b9\u5316"}},pageTitle:function(n){return"\u9001\u4fe1\u30e1\u30c3\u30bb\u30fc\u30b8"}},headers:{"activity-monitor":function(n){return"\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30e2\u30cb\u30bf\u30fc"},quarantine:function(n){return"\u9694\u96e2\u5148"},settings:function(n){return"\u8a2d\u5b9a"},statistic:function(n){return"\u7d71\u8a08"}},quarantine:{actions:{delete:function(n){return"\u524a\u9664"},releaseAndSend:function(n){return"\u89e3\u653e\u3057\u3066\u9001\u4fe1"},view:function(n){return"\u30e1\u30fc\u30eb\u3092\u8868\u793a"}},filters:{"end-date":function(n){return"\u7d42\u4e86\u65e5"},reason:function(n){return"\u7406\u7531"},receivedDateFrom:function(n){return"\u53d7\u4fe1\u958b\u59cb\u65e5"},receivedDateTo:function(n){return"\u53d7\u4fe1\u7d42\u4e86\u65e5"},searchButton:function(n){return"\u691c\u7d22"},"start-date":function(n){return"\u958b\u59cb\u65e5"},title:function(n){return"\u8a73\u7d30\u691c\u7d22"}},headers:{account:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8"},any:function(n){return"\u4efb\u610f\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u5185"},reasons:function(n){return"\u7406\u7531"},"received-date":function(n){return"\u53d7\u4fe1\u65e5"},recipients:function(n){return"\u53d7\u4fe1\u8005"},scriptPath:function(n){return"PHP\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u30d1\u30b9"},sender:function(n){return"\u9001\u4fe1\u8005 (\u5dee\u51fa\u4eba)"},subject:function(n){return"\u4ef6\u540d"},emailDirection:function(n){return"\u30bf\u30a4\u30d7"}},viewEmail:{from:function(n){return"\u5dee\u51fa\u4eba"},receivedDate:function(n){return"\u53d7\u4fe1\u65e5"},recipients:function(n){return"\u53d7\u4fe1\u8005"},subject:function(n){return"\u4ef6\u540d"},tabs:{body:function(n){return"\u672c\u6587"},header:function(n){return"\u30d8\u30c3\u30c0\u30fc"},plain:function(n){return"\u30c6\u30ad\u30b9\u30c8\u5f62\u5f0f"}}},widgets:{"search-by":function(n){return"\u691c\u7d22\u5bfe\u8c61"},emailDirection:{title:function(n){return"\u30e1\u30c3\u30bb\u30fc\u30b8\u30bf\u30a4\u30d7"},in:function(n){return"\u53d7\u4fe1\u30e1\u30c3\u30bb\u30fc\u30b8"},out:function(n){return"\u9001\u4fe1\u30e1\u30c3\u30bb\u30fc\u30b8"}}},tooltips:{reasons:{spam:function(n){return"\u30b9\u30d1\u30e0"},ratelimit:function(n){return"\u5236\u9650\u901f\u5ea6"}}}},settings:{actions:{purgeAccount:function(n){return"\u9694\u96e2\u5148\u3092\u6d88\u53bb"},releasesLimit:function(n){return"\u89e3\u653e\u6570\u306e\u5236\u9650\u3092\u66f4\u65b0"},updateLimit:function(n){return"\u5236\u9650\u3092\u66f4\u65b0"},resetToDefault:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8\u306b\u30ea\u30bb\u30c3\u30c8"}},form:{formGroup:function(n){return"\u5168\u4f53\u8a2d\u5b9a"},title:{accountField:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u7528"},accountLimit:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u5236\u9650\u3092\u66f4\u65b0"},accountSpace:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u3054\u3068\u306e\u9694\u96e2\u5148\u5bb9\u91cf (MB)"},domainLimit:function(n){return"\u30c9\u30e1\u30a4\u30f3\u7528"},limitBytes:function(n){return"\u30b9\u30c8\u30ec\u30fc\u30b8\u5bb9\u91cf (MB)"},limitGroup:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5236\u9650"},limitMode:{emails:function(n){return"\u30e1\u30fc\u30eb\u6570\u306b\u5236\u9650\u3092\u9069\u7528\u3059\u308b"},recipients:function(n){return"\u53d7\u4fe1\u8005\u6570\u306b\u5236\u9650\u3092\u9069\u7528\u3059\u308b"},title:function(n){return"\u9001\u4fe1\u8005\u306e\u5236\u9650"}},quarantineGroup:function(n){return"\u9694\u96e2\u5148"},releasesLimit:function(n){return"\u89e3\u653e\u6570\u306e\u5236\u9650"},scriptLimit:function(n){return"PHP \u30b9\u30af\u30ea\u30d7\u30c8\u7528"},senderLimit:function(n){return"\u9001\u4fe1\u8005\u7528 (\u30e1\u30fc\u30eb)"},serverLimit:function(n){return"\u30b5\u30fc\u30d0\u30fc (\u3059\u3079\u3066\u306e\u30a2\u30ab\u30a6\u30f3\u30c8)"},totalSpace:function(n){return"\u5408\u8a08\u9694\u96e2\u5148\u5bb9\u91cf (MB)"},incoming_filtration_enabled:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8\u52d5\u4f5c"},incomingGroup:function(n){return"\u53d7\u4fe1\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0"}}},headers:{account:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8"},details:function(n){return"\u8a73\u7d30"},limit:function(n){return"\u5236\u9650 (MB)"},releasesLimit:function(n){return"\u89e3\u653e\u6570\u306e\u5236\u9650"},state:function(n){return"\u72b6\u614b"},usedSpace:function(n){return"\u4f7f\u7528\u5bb9\u91cf (MB)"},incomingFiltration:function(n){return"\u53d7\u4fe1\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0"}},tableAction:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u8a2d\u5b9a"},personIcon:function(n){return"\u30ab\u30b9\u30bf\u30e0\u5024"}},title:function(n){return"\u30e1\u30fc\u30eb"},warnings:{any:function(n){return"\u4e0d\u5177\u5408\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u3082\u3046\u4e00\u5ea6\u304a\u8a66\u3057\u304f\u3060\u3055\u3044"},honestResultWarning:function(n){return n.successItemCount+" out of "+n.total+" messages have been "+n.type+"d \n "+n.failItemCount+" out of "+n.total+" messages failed to be "+n.type+"d, please try again "},internal:function(n){return"\u4e00\u62ec"+n.type+"\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},release:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8 "+n.name+" \u306e 1 \u6642\u9593\u3042\u305f\u308a\u306e\u89e3\u653e\u6570\u306e\u5236\u9650\u3092\u8d85\u3048\u307e\u3057\u305f"}},statistics:{pageTitle:function(n){return"\u53d7\u4fe1\u7d71\u8a08"},pageTitles:{outgoing:function(n){return"\u9001\u4fe1\u7d71\u8a08"},incoming:function(n){return"\u53d7\u4fe1\u7d71\u8a08"}},headers:{accountName:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u540d"},date:function(n){return"\u53d7\u4fe1\u65e5"},ham:function(n){return"\u30cf\u30e0"},spam:function(n){return"\u30b9\u30d1\u30e0"},total:function(n){return"\u5408\u8a08"}}}},eula:{accept:function(n){return"\u540c\u610f\u3059\u308b"},acceptOrUninstall:function(n){return"\u66f4\u65b0\u5f8c\u306e EULA \u3078\u306e\u3054\u540c\u610f\u304c\u306a\u3051\u308c\u3070 IM360 \u3092\u3054\u5229\u7528\u3044\u305f\u3060\u3051\u307e\u305b\u3093\u3002EULA \u306b\u3054\u540c\u610f\u3044\u305f\u3060\u304f\u304b\u3001Imunify360 \u3092\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044"},acceptUpdated:function(n){return"EULA \u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002Imunify360 \u306e\u4f7f\u7528\u3092\u7d99\u7d9a\u3059\u308b\u306b\u306f\u3001\u540c\u610f\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002"},back:function(n){return"\u623b\u308b"},decline:function(n){return"\u62d2\u5426\u3059\u308b"},sorry:function(n){return"\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093\u3002"}},featuresDisabled:{contactProvider:function(n){return"\u3053\u308c\u3089\u3092\u6709\u52b9\u306b\u3059\u308b\u306b\u306f\u3001\u304a\u4f7f\u3044\u306e\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002"},noFeatures:function(n){return"\u4f7f\u7528\u53ef\u80fd\u306a\u6a5f\u80fd\u306f\u3042\u308a\u307e\u305b\u3093\u3002"}},forLinguists:{description:function(n){return"\u3053\u306e\u30d6\u30ed\u30c3\u30af\u306b\u306f\u3001\u69cb\u6587\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3078\u306e\u30ea\u30f3\u30af\u3068\u305d\u306e\u69cb\u6587\u306e\u4f8b\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"},helpCut:function(n){return"\u6587\u5b57\u5217 (\u30b7\u30f3\u30dc\u30eb\u3042\u308a) | \u5206\u5272: https://github.com/ngx-translate/core/issues/223#issuecomment-333335132"},helpUrl:function(n){return"https://messageformat.github.io/messageformat/page-guide"},plural:function(n){return"\u3053\u3053\u306b\u306f"+u(n.count,0,e,{0:"\u4f55\u3082\u3042\u308a\u307e\u305b\u3093",other:i(n.count,"count")+"\u4ef6\u3042\u308a\u307e\u3059"})},pluralUrl:function(n){return"https://unicode-org.github.io/cldr-staging/charts/latest/supplemental/language_plural_rules.html"},selectAndVariable:function(n){return o(n.gender,{male:"\u5f7c\u306f",female:"\u5f7c\u5973\u306f",other:"\u5f7c\u3089\u306f"})+" "+n.how},translation:function(n){return"\u82f1\u8a9e"}},installation:{cancelled:{hint:{retry:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u518d\u958b\u3059\u308b\u306b\u306f\u3001\u8868\u793a\u3055\u308c\u305f\u554f\u984c\u3092\u4fee\u6b63\u3057\u3066\u304b\u3089 [\u518d\u8a66\u884c] \u30dc\u30bf\u30f3\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},support:function(n){return"\u5931\u6557\u3057\u305f\u5834\u5408\u306f\u3001|\u30b5\u30dd\u30fc\u30c8|\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002"}},messageText:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u30ad\u30e3\u30f3\u30bb\u30eb\u3055\u308c\u307e\u3057\u305f"}},dashboard:{text:function(n){return"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u30d1\u30cd\u30eb\u304b\u3089\u3001\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30a4\u30d9\u30f3\u30c8\u3092\u30b0\u30e9\u30d5\u3068\u30d2\u30fc\u30c8\u30de\u30c3\u30d7\u3068\u3057\u3066\u8868\u793a\u3059\u308b Imunify360 \u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u3059\u3002 \n \n \u904e\u53bb 1 \u65e5\u30011 \u9031\u9593\u3001\u307e\u305f\u306f 1 \u30ab\u6708\u4ee5\u5185\u306b\u767a\u751f\u3057\u305f\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3092\u5206\u6790\u3059\u308b\u306e\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002"},title:function(n){return"Imunify360 \u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9"}},firewall:{text:function(n){return"Imunify360 \u306f\u96c6\u56e3\u514d\u75ab\u3068\u4eba\u5de5\u77e5\u80fd\u3092\u4f7f\u7528\u3057\u3066\u65b0\u3057\u3044\u8105\u5a01\u3092\u691c\u51fa\u3057\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u3092\u4fdd\u8b77\u3059\u308b\u9ad8\u5ea6\u306a\u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb\u4fdd\u8b77\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb\u306f\u3001\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483\u3001DoS \u653b\u6483\u3001\u304a\u3088\u3073\u30dd\u30fc\u30c8\u30b9\u30ad\u30e3\u30f3\u304b\u3089\u4fdd\u8b77\u3057\u307e\u3059\u3002 \n\n \u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb\u306e\u6709\u7528\u6027\u3092\u5287\u7684\u306b\u9ad8\u3081\u308b\u305f\u3081\u3001mod_security Web \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb\u3068\u7dca\u5bc6\u306b\u9023\u643a\u3057\u3066\u3044\u307e\u3059\u3002\u307e\u305f\u3001WAF \u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u3067\u3001Web \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u653b\u6483\u306e\u5927\u90e8\u5206\u3092\u958b\u59cb\u524d\u306e\u6bb5\u968e\u3067\u963b\u6b62\u3067\u304d\u307e\u3059\u3002\u3055\u3089\u306b\u3001\u8aa4\u691c\u77e5\u3092\u6e1b\u3089\u3057\u3066\u9069\u5207\u306a\u9867\u5ba2\u304c Web \u30b5\u30a4\u30c8\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u3001\u9ad8\u5ea6\u306a SplashScreen \u30b7\u30b9\u30c6\u30e0\u3092\u63a1\u7528\u3057\u3066\u3044\u307e\u3059\u3002"},title:function(n){return"\u62e1\u5f35\u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb"}},log:{title:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u8a73\u7d30\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059:"},titleStopped:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u30ad\u30e3\u30f3\u30bb\u30eb\u3055\u308c\u307e\u3057\u305f\u3002\u8a73\u7d30:"}},malware:{text:function(n){return"\u30d0\u30c3\u30af\u30c9\u30a2\u3001Web \u30b7\u30a7\u30eb\u3001\u30a6\u30a4\u30eb\u30b9\u3001\u30cf\u30c3\u30ab\u30fc\u30c4\u30fc\u30eb\u3001\u300c\u30d6\u30e9\u30c3\u30af\u30cf\u30c3\u30c8 SEO\u300d\u30b9\u30af\u30ea\u30d7\u30c8\u3001\u30d5\u30a3\u30c3\u30b7\u30f3\u30b0\u30da\u30fc\u30b8\u306a\u3069\u3001\u3042\u3089\u3086\u308b\u7a2e\u985e\u306e\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u691c\u51fa\u3057\u307e\u3059\u3002 \n\n \u30de\u30eb\u30a6\u30a7\u30a2\u304c\u691c\u51fa\u3055\u308c\u305f\u5834\u5408\u306f\u3001\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u81ea\u52d5\u7684\u306b\u524a\u9664\u3067\u304d\u307e\u3059\u3002\u9ad8\u5ea6\u306a\u30d5\u30a1\u30a4\u30eb\u96e3\u8aad\u5316\u89e3\u9664\u6280\u8853\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081\u3001\u30d5\u30a1\u30a4\u30eb\u306b\u57cb\u3081\u8fbc\u307e\u308c\u3066\u3044\u308b\u6697\u53f7\u5316\u6e08\u307f\u306e\u60aa\u610f\u306e\u3042\u308b\u30b3\u30fc\u30c9\u3092\u691c\u51fa\u3067\u304d\u3001\u305d\u306e97\uff05\u4ee5\u4e0a\u3092\u81ea\u52d5\u7684\u306b\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3067\u304d\u307e\u3059\u3002"},title:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc"}},patch:{subtitle1:function(n){return"Rebootless Secure Kernel"},subtitle2:function(n){return"Hardened PHP"},text1:function(n){return"KernelCare \u3092\u4f7f\u7528\u3057\u305f Rebootless Secure Kernel \u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5\u305b\u305a\u306b\u81ea\u52d5\u7684\u306b\u30d1\u30c3\u30c1\u3092\u30ab\u30fc\u30cd\u30eb\u306b\u9069\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u5b89\u5168\u306b\u4fdd\u3064\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3067\u3059\u3002\u540c\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u306e\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306f 4 \u6642\u9593\u3054\u3068\u306b\u65b0\u3057\u3044\u30d1\u30c3\u30c1\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3001\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306b\u5f71\u97ff\u3092\u4e0e\u3048\u308b\u3053\u3068\u306a\u304f\u5b9f\u884c\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u30d1\u30c3\u30c1\u3092\u81ea\u52d5\u7684\u306b\u9069\u7528\u3057\u307e\u3059\u3002KernelCare \u306f\u30ab\u30fc\u30cd\u30eb\u3092\u6700\u65b0\u306e\u72b6\u614b\u306b\u4fdd\u3061\u3001\u91cd\u5927\u306a\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3092\u56de\u907f\u3057\u307e\u3059\u3002"},text2:function(n){return"Hardened PHP \u306f\u3059\u3079\u3066\u306e PHP \u30d0\u30fc\u30b8\u30e7\u30f3\u306b\u65e2\u77e5\u306e\u8106\u5f31\u6027\u306b\u5bfe\u3059\u308b\u30d1\u30c3\u30c1\u3092\u9069\u7528\u3057\u3066 Web \u30b5\u30fc\u30d0\u30fc\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u78ba\u4fdd\u3059\u308b\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3067\u3059\u3002\u3053\u306e\u305f\u3081\u3001\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306b\u5bfe\u5fdc\u3059\u308b\u305f\u3081\u306b\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u4efb\u610f\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e PHP \u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059\u3002"},title:function(n){return"\u30d1\u30c3\u30c1\u7ba1\u7406"}},proactive:{text:function(n){return"Imunify360 \u306e\u4e8b\u524d\u9632\u5fa1\u306f\u30bc\u30ed\u30c7\u30a4\u653b\u6483\u304b\u3089 Web \u30b5\u30a4\u30c8\u3092\u4fdd\u8b77\u3057\u3001\u3069\u3093\u306a\u30b9\u30ad\u30e3\u30ca\u30fc\u3067\u3082\u691c\u51fa\u3067\u304d\u306a\u3044\u30de\u30eb\u30a6\u30a7\u30a2\u3082\u963b\u6b62\u3057\u307e\u3059\u3002Linux Web \u30b5\u30fc\u30d0\u30fc\u3078\u306e\u653b\u6483\u3092\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u8a8d\u8b58\u3057\u3001\u60aa\u610f\u306e\u3042\u308b\u53ef\u80fd\u6027\u304c\u3042\u308b\u5b9f\u884c\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u9045\u5ef6\u306a\u304f\u81ea\u52d5\u7684\u306b\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\u3002 \n\n \u4e8b\u524d\u9632\u5fa1\u3067\u306f\u30b3\u30fc\u30c9\u306e\u5185\u5bb9\u3067\u306f\u306a\u304f\u3001\u5b9f\u969b\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u52d5\u4f5c\u3092\u5206\u6790\u3059\u308b\u3068\u3044\u3046\u72ec\u81ea\u306e\u65b9\u6cd5\u3092\u4f7f\u7528\u3057\u3066\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30ea\u30b9\u30af\u3092\u7279\u5b9a\u3057\u3066\u3044\u307e\u3059\u3002"},title:function(n){return"\u4e8b\u524d\u9632\u5fa1"}},reputation:{text:function(n){return"\u5bfe\u8c61\u306e\u30b5\u30a4\u30c8\u3084 IP \u304c\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u3088\u3063\u3066\u30d6\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u5206\u6790\u3057\u3001\u30d6\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306b\u901a\u77e5\u3057\u307e\u3059\u3002\u30b5\u30a4\u30c8\u306e\u8a55\u5224\u306f\u975e\u5e38\u306b\u91cd\u8981\u3067\u3059\u3002\u4f8b\u3048\u3070\u3042\u306a\u305f\u306e\u30b5\u30a4\u30c8\u304c\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u914d\u4fe1\u5143\u3068\u3057\u3066 Google \u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3055\u308c\u305f\u5834\u5408\u3001\u30b5\u30a4\u30c8\u304c Google \u306e\u691c\u7d22\u7d50\u679c\u304b\u3089\u9664\u5916\u3055\u308c\u3001\u30d3\u30b8\u30cd\u30b9\u304c\u58ca\u6ec5\u7684\u306a\u6253\u6483\u3092\u53d7\u3051\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u307e\u305f\u3001\u30b9\u30d1\u30e0\u306e\u914d\u4fe1\u5143\u3068\u3057\u3066 RBL \u30ea\u30b9\u30c8\u306b\u767b\u9332\u3055\u308c\u305f\u5834\u5408\u306f\u9867\u5ba2\u5b9b\u306e\u30e1\u30fc\u30eb\u304c\u914d\u4fe1\u3055\u308c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002Web \u30b5\u30a4\u30c8\u306e\u8a55\u5224\u3092\u7a4d\u6975\u7684\u306b\u76e3\u8996\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u3001\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u306b\u6570\u9031\u9593\u304b\u3089\u6570\u30ab\u6708\u9593\u6c17\u4ed8\u304b\u305a\u3001\u58ca\u6ec5\u7684\u306a\u640d\u5bb3\u3092\u88ab\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"},title:function(n){return"Web \u30b5\u30a4\u30c8\u8a55\u4fa1\u306e\u76e3\u8996"}},start:{buttonText:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb"},checkbox:function(n){return"|\u5229\u7528\u898f\u7d04|\u3092\u8aad\u307f\u3001\u540c\u610f\u3057\u307e\u3057\u305f\u3002"},logoDescription:function(n){return"Linux \u30b5\u30fc\u30d0\u30fc\u7528\u306e\u5b8c\u5168\u306a\u591a\u5c64 Web \u30b5\u30fc\u30d0\u30fc\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3067\u3059\u3002"},note:function(n){return"\u6ce8:"},noteDescription:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30d7\u30ed\u30bb\u30b9\u304c\u5b8c\u4e86\u3059\u308b\u307e\u3067\u3001Imunify360 \u306e\u62e1\u5f35\u6a5f\u80fd\u3092\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u308a\u3001\u30b5\u30fc\u30d0\u30fc\u306e\u518d\u8d77\u52d5\u3084\u96fb\u6e90\u30aa\u30d5\u3092\u884c\u3063\u305f\u308a\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002"},subtitle:function(n){return"\u5168\u4f53\u30d7\u30ed\u30bb\u30b9\u304c\u5b8c\u4e86\u3059\u308b\u307e\u3067\u6570\u5206\u7a0b\u5ea6\u304b\u304b\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"},support:function(n){return"Imunify \u30ab\u30b9\u30bf\u30de\u30fc\u30b5\u30dd\u30fc\u30c8"},title:function(n){return"\u88fd\u54c1\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e96\u5099\u304c\u5b8c\u4e86\u3057\u3066\u3044\u307e\u3059\u3002"}},status:{retry:function(n){return"\u518d\u8a66\u884c"},stopped:function(n){return"\u505c\u6b62\u4e2d"}},statusMessage:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u4e2d..."},tabs:{features:function(n){return"\u6a5f\u80fd"},log:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30ed\u30b0"}},textForUser:function(n){return"Imunify \u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u307e\u3060\u5b8c\u4e86\u3057\u3066\u3044\u307e\u305b\u3093\u3002\u6570\u5206\u5f85\u3063\u3066\u304b\u3089\u30da\u30fc\u30b8\u3092\u518d\u30ed\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},interceptors:{sessionExpired:{connectionReset:function(n){return"\u63a5\u7d9a\u304c\u30ea\u30bb\u30c3\u30c8\u3055\u308c\u305f\u304b\u3001\u30bb\u30c3\u30b7\u30e7\u30f3\u306e\u6709\u52b9\u671f\u9650\u304c\u5207\u308c\u307e\u3057\u305f\u3002\u30da\u30fc\u30b8\u3092\u518d\u30ed\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044"},internalError:function(n){return"\u5185\u90e8\u30a8\u30e9\u30fc"},sessionExpired:function(n){return"\u30bb\u30c3\u30b7\u30e7\u30f3\u306e\u6709\u52b9\u671f\u9650\u304c\u5207\u308c\u307e\u3057\u305f\u3002\u30da\u30fc\u30b8\u3092\u518d\u30ed\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044"}}},kernelcare:{autoUpdate:function(n){return"\u81ea\u52d5\u66f4\u65b0:"},detecting:function(n){return"\u691c\u51fa\u4e2d..."},effectiveKernelVersion:function(n){return"\u6709\u52b9\u306a\u30ab\u30fc\u30cd\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3"},fetchPatchButton:function(n){return"\u30d1\u30c3\u30c1\u60c5\u5831\u306e\u78ba\u8a8d"},fetching:function(n){return"\u30d5\u30a7\u30c3\u30c1\u4e2d..."},installing:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u4e2d..."},latest:function(n){return"\u6700\u65b0\u306e\u72b6\u614b\u3067\u3059\u3002\u30d1\u30c3\u30c1\u306f\u4e0d\u8981\u3067\u3059"},notInstalled:function(n){return"KernelCare \u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002[\u8a2d\u5b9a] \u30bf\u30d6\u304b\u3089\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059\u3002"},patchInfo:function(n){return"\u30d1\u30c3\u30c1\u60c5\u5831"},realKernelVersion:function(n){return"\u5b9f\u969b\u306e\u30ab\u30fc\u30cd\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3"},removing:function(n){return"\u524a\u9664\u4e2d..."},unsupported:function(n){return"KernelCare \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},unsupportedKernel:function(n){return"\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u30ab\u30fc\u30cd\u30eb\u3067\u3059\u3002\u8a73\u3057\u304f\u306f|\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044"},update:{no:function(n){return"\u3044\u3044\u3048"},yes:function(n){return"\u306f\u3044"}},updateButton:function(n){return"\u305f\u3060\u3061\u306b\u66f4\u65b0"},updateMode:function(n){return"\u66f4\u65b0\u30e2\u30fc\u30c9"},updatesAvailable:function(n){return"\u4f7f\u7528\u53ef\u80fd\u306a\u66f4\u65b0"},uptime:function(n){return"\u4f7f\u7528\u53ef\u80fd\u6642\u9593"}},license:{checkButton:function(n){return"\u78ba\u8a8d"},disabled:function(n){return"\u3053\u306e Imunify360 \u30e9\u30a4\u30bb\u30f3\u30b9\u306f\u7121\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002"},exceeded:function(n){return"Imunify360 \u306e\u5236\u9650\u3092\u8d85\u3048\u307e\u3057\u305f\u3002"},exceededText:function(n){return"\u30b5\u30fc\u30d0\u30fc \u30e9\u30a4\u30bb\u30f3\u30b9\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306f "+n.limit+" \u4eba\u306e\u307f\u3067\u3059\u3002\u73fe\u5728\u3001"+n.count+" \u4eba\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u3044\u307e\u3059\u3002"},howToUpdate:function(n){return"\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30b7\u30e7\u30f3 \u30ad\u30fc\u3092\u66f4\u65b0\u3059\u308b\u306b\u306f\u3001\u4e0b\u306e\u30d5\u30a9\u30fc\u30e0\u3092\u4f7f\u7528\u3059\u308b\u304b\u3001SSH \u3067\u30b5\u30fc\u30d0\u30fc\u306b\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},howToUpgrade:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u306b\u306f\u3001\u3053\u306e\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},login:function(n){return"\u30ed\u30b0\u30a4\u30f3\u5148|\u306b\u30ed\u30b0\u30a4\u30f3\u3057\u3001\u30e9\u30a4\u30bb\u30f3\u30b9\u3068\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30b7\u30e7\u30f3 \u30ad\u30fc\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},notInstalled:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},placeholder:function(n){return"\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30b7\u30e7\u30f3 \u30ad\u30fc\u3092\u5165\u529b"},sales:function(n){return"\u8cfc\u5165\u306b\u95a2\u3059\u308b\u8cea\u554f\u306b\u3064\u3044\u3066\u306f\u3001\u3053\u3061\u3089\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002"},supportHelp:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3001\u30b5\u30dd\u30fc\u30c8\u306b E \u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30b5\u30dd\u30fc\u30c8\u306f\u3053\u3061\u3089:"},toBuy:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u8cfc\u5165\u3059\u308b\u306b\u306f\u3001\u3053\u306e\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},toBuyInMarket:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u8cfc\u5165"},upgradeLicense:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9"},noValidLicenseForImunify360Installation:function(n){return"\u3053\u306e Imunify360 \u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306b\u306f\u6709\u52b9\u306a\u30e9\u30a4\u30bb\u30f3\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3059\u3079\u3066\u306e Imunify360 \u306e\u5229\u70b9\u3092\u5f15\u304d\u7d9a\u304d\u5229\u7528\u3059\u308b\u306b\u306f\u3001\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},lists:{addForm:{fullAccess:function(n){return"\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29"},ipNote:function(n){return"IP \u307e\u305f\u306f\u30b5\u30d6\u30cd\u30c3\u30c8 (CIDR \u8868\u8a18)"},ipTooltip:function(n){return"\u4f8b: 1.2.3.4\u30011.2.3.0/24\u30011111:2222:3333:4444::/64\u30011111:2222:3333::/48"},placeholders:{comment:function(n){return"\u30b3\u30e1\u30f3\u30c8\u3092\u5165\u529b"},country:function(n){return"\u56fd\u3092\u5165\u529b"},countryWarning:function(n){return"\u540c\u671f\u3055\u308c\u305fIP\u306b\u306f\u9069\u7528\u3055\u308c\u307e\u305b\u3093"},ip:function(n){return"IP \u3092\u5165\u529b"}},radioList:function(n){return o(n.type,{white:"\u30db\u30ef\u30a4\u30c8",black:"\u30c9\u30ed\u30c3\u30d7",drop:"\u30c9\u30ed\u30c3\u30d7",other:""})+"\u30ea\u30b9\u30c8"},radioScope:function(n){return o(n.type,{local:"\u30ed\u30fc\u30ab\u30eb",group:"\u30b0\u30eb\u30fc\u30d7",other:""})}},firewall:{menu:{all:function(n){return"\u3059\u3079\u3066\u306e\u30ea\u30b9\u30c8"},black:function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8"},blockedPorts:function(n){return"\u30d6\u30ed\u30c3\u30af\u5bfe\u8c61\u30dd\u30fc\u30c8"},gray:function(n){return"\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8"},white:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8"}},placeholders:{comments:function(n){return"\u30b3\u30e1\u30f3\u30c8"}},searchResults:function(n){return"\u691c\u7d22\u7d50\u679c:"},title:function(n){return"\u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb"}},lists:{csfWarning:function(n){return"\u6ce8\u610f\uff1aCSF\u304c\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002CSF\u30e6\u30fc\u30b6\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9|\u307e\u305f\u306f\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u7528\u3057\u3066| CSF\u306eIP\u3092\u7ba1\u7406\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},headers:{comment:function(n){return"\u30b3\u30e1\u30f3\u30c8"},country:function(n){return"\u56fd"},ip:function(n){return"IP"},list:function(n){return"\u30ea\u30b9\u30c8"},purpose:function(n){return"\u76ee\u7684"},scope:function(n){return"\u30b9\u30b3\u30fc\u30d7"},source:function(n){return"\u30bd\u30fc\u30b9"},ttl:function(n){return"TTL"}},modal:{body:function(n){return o(n.list,{WHITE:"\u30db\u30ef\u30a4\u30c8",BLACK:"\u30d6\u30e9\u30c3\u30af",GRAY:"\u30b0\u30ec\u30fc",other:""})+"\u30ea\u30b9\u30c8\u306b\u79fb\u52d5\u3057\u307e\u3059\u304b?"},title:function(n){return"\u73fe\u5728\u3001IP "+n.ip+" \u306f"+o(n.list,{WHITE:"\u30db\u30ef\u30a4\u30c8",BLACK:"\u30d6\u30e9\u30c3\u30af",GRAY:"\u30b0\u30ec\u30fc",other:""})+"\u30ea\u30b9\u30c8\u306b\u5165\u3063\u3066\u3044\u307e\u3059"}},notifications:{fullAccess:function(n){return u(n.count,0,e,{other:"IP"})+" "+n.ips+" \u306b\u5bfe\u3059\u308b\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u304c\u6b63\u5e38\u306b"+o(n.action,{removed:"\u53d6\u308a\u6d88",granted:"\u4ed8\u4e0e",other:""})+"\u3055\u308c\u307e\u3057\u305f"},scope:function(n){return n.ips+" \u306e\u30b9\u30b3\u30fc\u30d7\u304c "+n.type+" \u306b\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f"}},onlyManual:function(n){return"\u624b\u52d5\u3067\u8ffd\u52a0\u3055\u308c\u305f\u3082\u306e\u306e\u307f\u3092\u8868\u793a"},purpose:{captcha:function(n){return"\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8"},drop:function(n){return"\u30c9\u30ed\u30c3\u30d7"},splashscreen:function(n){return"\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u30b9\u30af\u30ea\u30fc\u30f3"},white:function(n){return"\u30db\u30ef\u30a4\u30c8"}},scope:{group:function(n){return"\u30b0\u30eb\u30fc\u30d7"},local:function(n){return"\u30ed\u30fc\u30ab\u30eb"}},search:{black:function(n){return"\u30d6\u30e9\u30c3\u30af"},blockTitle:function(n){return"\u691c\u7d22\u7d50\u679c"},captcha:function(n){return"\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8"},cloud:function(n){return"\u30af\u30e9\u30a6\u30c9"},drop:function(n){return"\u30c9\u30ed\u30c3\u30d7"},server:function(n){return"\u30b5\u30fc\u30d0\u30fc"},splashscreen:function(n){return"\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u30b9\u30af\u30ea\u30fc\u30f3"},white:function(n){return"\u30db\u30ef\u30a4\u30c8"}},searchHints:{captcha:function(n){return"\u3053\u306e IP \u306f\u975e Web \u30dd\u30fc\u30c8 (SSH\u3001FTP \u306a\u3069) \u3067\u306f\u5b8c\u5168\u306b\u30d6\u30ed\u30c3\u30af\u3055\u308c\u3001Web \u30dd\u30fc\u30c8 (80\u3001443\u3001\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d1\u30cd\u30eb\u306e\u30dd\u30fc\u30c8) \u3067\u306f SplashScreen \u304c\u8868\u793a\u3055\u308c\u307e\u3059"},drop:function(n){return"\u3053\u306e IP \u306f\u3059\u3079\u3066\u306e\u5834\u6240\u3001\u3059\u3079\u3066\u306e\u30dd\u30fc\u30c8\u3068\u30b5\u30fc\u30d3\u30b9\u3067\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u3059"},splashscreen:function(n){return"\u3053\u306e IP \u306f Web \u30dd\u30fc\u30c8\u3067\u306f\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u30b9\u30af\u30ea\u30fc\u30f3\u30c1\u30e3\u30ec\u30f3\u30b8\u304c\u8868\u793a\u3055\u308c\u3001\u305d\u308c\u4ee5\u5916\u3067\u306f\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u3059"},white:function(n){return"\u3053\u306e IP \u306f\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u305b\u3093"}},tooltips:{fullAccess:function(n){return"\u3053\u306e IP \u306f\u3059\u3079\u3066\u306e\u30dd\u30fc\u30c8\u306b\u5bfe\u3057\u3066\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u6301\u3063\u3066\u3044\u307e\u3059"},usersIp:function(n){return"\u30e6\u30fc\u30b6\u30fc\u306e IP"}},webshieldWarning:{note:function(n){return"|[\u8a2d\u5b9a] -> [\u4e00\u822c] -> [WebShield] -> [\u6709\u52b9\u5316]| \u304b\u3089 WebShield \u3092\u30aa\u30f3\u306b\u3067\u304d\u307e\u3059\u3002"},title:function(n){return"WebShield \u304c\u30aa\u30d5\u306e\u9593\u306f\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u30b9\u30af\u30ea\u30fc\u30f3\u304c\u7121\u52b9\u306b\u306a\u308a\u307e\u3059\u3002"}}}},login:{error:{credentials:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d\u307e\u305f\u306f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059\u3002"},service:function(n){return"\u30b5\u30fc\u30d0\u30fc\u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3002|\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044"}},passwordPlaceholder:function(n){return"\u30d1\u30b9\u30ef\u30fc\u30c9"},submit:function(n){return"\u30ed\u30b0\u30a4\u30f3"},usernamePlaceholder:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"}},malware:{appLocation:function(n){return"\u5834\u6240"},appRoot:function(n){return"\u30a2\u30d7\u30ea\u306e\u30eb\u30fc\u30c8"},confirmModal:{addToIgnore:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},changeIn:function(n){return"\u3053\u306e\u52d5\u4f5c\u306f"},link:function(n){return"\u8a2d\u5b9a\u3067\u5909\u66f4\u3067\u304d\u307e\u3059\u3002"},send:function(n){return u(n.count,0,e,{other:"\u30d5\u30a1\u30a4\u30eb"})+"\u306f\u5206\u6790\u306e\u305f\u3081\u306b Imunify \u30c1\u30fc\u30e0\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059\u3002"}},dbName:function(n){return"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u540d"},ignoreList:{add:function(n){return"\u65b0\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u307e\u305f\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u8ffd\u52a0"},addPathModal:{confirmText:function(n){return"\u8ffd\u52a0"},pathPlaceholder:{db:function(n){return"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30b9"},file:function(n){return"\u30d5\u30a1\u30a4\u30eb\u307e\u305f\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea"}},title:function(n){return"\u65b0\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u307e\u305f\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u8ffd\u52a0"},type:{db:function(n){return"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9"},file:function(n){return"\u30d5\u30a1\u30a4\u30eb"}},typePlaceholder:function(n){return"\u7a2e\u985e"}},description:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30b9\u30ad\u30e3\u30ca\u30fc\u304c\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8"},headers:{addedDate:function(n){return"\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},path:function(n){return"\u30d1\u30b9"}},removeAction:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},removeModal:{confirmText:function(n){return"\u306f\u3044\u3002\u7121\u8996\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},subtitle:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u305f\u5f8c\u3001\u30d5\u30a1\u30a4\u30eb\u304c\u518d\u5ea6\u30b9\u30ad\u30e3\u30f3\u3055\u308c\u307e\u3059"},title:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"}},title:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8"}},inlineScanStatus:{clean:function(n){return"\u30af\u30ea\u30fc\u30f3"},"cleanup-running":function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d..."},infected:function(n){return u(n.file,0,e,{0:"",other:i(n.file,"file")+" \u30d5\u30a1\u30a4\u30eb"+u(n.db,0,e,{0:"",other:"\u3001"})})+u(n.db,0,e,{0:"",other:i(n.db,"db")+" \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9"})+u(n.threat,0,e,{0:"",1:"\u306e\u8105\u5a01",other:"\u306e\u8105\u5a01"})},new:function(n){return"\u307e\u3060\u30b9\u30ad\u30e3\u30f3\u3057\u3066\u3044\u307e\u305b\u3093"},notFound:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},"scan-queued-background":function(n){return"\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u30b9\u30ad\u30e3\u30f3"},"scan-queued-on-demand":function(n){return"\u30b9\u30ad\u30e3\u30f3\u5f85\u3061"},"scan-queued-user":function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u5f85\u3061"},"scan-running-background":function(n){return"\u30d0\u30c3\u30af\u30b0\u30e9\u30a6\u30f3\u30c9\u3067\u30b9\u30ad\u30e3\u30f3\u4e2d..."},"scan-running-on-demand":function(n){return"\u30aa\u30f3\u30c7\u30de\u30f3\u30c9\u3067\u30b9\u30ad\u30e3\u30f3\u4e2d..."},"scan-running-user":function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u3092\u5b9f\u884c\u4e2d..."}},malicious:{alsoRestore:function(n){return u(n.count,0,e,{other:"("+i(n.count,"count")+" \u30d5\u30a1\u30a4\u30eb\u3082\u30ea\u30b9\u30c8\u30a2)"})},cleanupAll:function(n){return"\u3059\u3079\u3066\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},cleanupAllEndUserWarning:{description:function(n){return"\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u8005\u306b\u554f\u3044\u5408\u308f\u305b\u3066 ImunifyAV+ \u307e\u305f\u306f Imunify360 \u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5165\u624b\u3057\u3066\u304f\u3060\u3055\u3044\uff01"},title:function(n){return"\u30e9\u30a4\u30bb\u30f3\u30b9\u304c\u5fc5\u8981\u3067\u3059"}},cleanupBackupWarning:function(n){return"\u5143\u306e\uff08\u611f\u67d3\u3057\u305f\uff09\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306f\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u5b9f\u884c\u3057\u3066\u304b\u3089"+u(n.days,0,e,{other:i(n.days,"days")+"\u65e5"})+"\u5f8c\u306b\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u524a\u9664\u3055\u308c\u308b\u307e\u3067\u3001Malicious Files\u30c6\u30fc\u30d6\u30eb\u306b\u306f\u300c\u30af\u30ea\u30fc\u30f3\u300d\u3068\u300c\u524a\u9664\u6e08\u307f\u300d\u306e\u9805\u76ee\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"},cleanupBackupWarning_2:function(n){return"\u5143\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306f\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u5b9f\u884c\u3057\u3066\u304b\u3089 "+u(n.days,0,e,{1:"1 \u65e5",other:i(n.days,"days")+" \u65e5"})+"\u5f8c\u306b\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u524a\u9664\u3055\u308c\u308b\u307e\u3067\u3001\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u30c6\u30fc\u30d6\u30eb\u306b\u306f\u300c\u30af\u30ea\u30fc\u30f3\u300d\u3068\u300c\u524a\u9664\u6e08\u307f\u300d\u306e\u9805\u76ee\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"},extraData:{backup_ttl:function(n){return"\u5143\u306e (\u611f\u67d3\u3057\u305f) \u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059"},cleaned_at:function(n){return"\u30af\u30ea\u30fc\u30f3"},ctime:function(n){return"ctime"},modified:function(n){return"\u5909\u66f4"},scanType:function(n){return"\u30b9\u30ad\u30e3\u30f3\u306e\u7a2e\u985e"},snippet:function(n){return"\u60aa\u610f\u306e\u3042\u308b\u30b9\u30cb\u30da\u30c3\u30c8"}},headers:{detectionDate:function(n){return"\u691c\u51fa"},file:function(n){return"\u30d5\u30a1\u30a4\u30eb"},malicious:function(n){return"\u60aa\u610f\u3042\u308a"},reason:function(n){return"\u7406\u7531"},scanType:function(n){return"\u30b9\u30ad\u30e3\u30f3\u306e\u7a2e\u985e"},status:function(n){return"\u72b6\u614b"},user:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"}},no:function(n){return"\u3044\u3044\u3048"},quarantineCleanupWarning:function(n){return"\u9694\u96e2\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d\u306b\u9694\u96e2\u5148\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3059\u3002"},quarantineCleanupWarning_2:function(n){return"\u9694\u96e2\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb/\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d\u306b\u9694\u96e2\u5148\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3059\u3002"},scanAll:function(n){return"\u3059\u3079\u3066\u3092\u30b9\u30ad\u30e3\u30f3"},status:{cleaned:function(n){return"\u30af\u30ea\u30fc\u30f3"},cleanup_done:function(n){return"\u30af\u30ea\u30fc\u30f3"},cleanup_in_progress:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d"},cleanup_pending:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d"},cleanup_removed:function(n){return"\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u524a\u9664\u3057\u307e\u3057\u305f"},cleanup_requires_myimunify_protection:function(n){return"\u611f\u67d3 (\u9ad8\u5ea6)"},cleanup_restore_started:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u5fa9\u5143\u4e2d"},cleanup_started:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d"},found:function(n){return"\u611f\u67d3"},infected:function(n){return"\u611f\u67d3"},quarantined:function(n){return"\u9694\u96e2"},removed:function(n){return"\u524a\u9664"},restore_from_backup_started:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u4e2d"}},subtitle:function(n){return"Imunify \u306b\u3088\u3063\u3066\u30de\u30eb\u30a6\u30a7\u30a2\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f"},title:function(n){return"\u60aa\u610f\u3042\u308a "+u(n.count,0,e,{0:"",other:"("+i(n.count,"count")+")"})},yes:function(n){return"\u306f\u3044"},view:{tabs:{content:function(n){return"\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a"},diff:function(n){return"\u5dee\u5206"}}}},onDemand:{AutomaticallyScanTooltip:function(n){return"\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u3059\u3079\u3066\u81ea\u52d5\u7684\u306b\u30b9\u30ad\u30e3\u30f3\u3057\u307e\u3059"},advanced:function(n){return"\u62e1\u5f35"},example:function(n){return"\u4f8b:"},featuresDisabled:function(n){return"\u7af6\u5408\u3059\u308b\u305f\u3081\u3001\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0 \u30b9\u30ad\u30e3\u30f3\u306e\u4e00\u90e8\u306e\u6a5f\u80fd\u306f\u7121\u52b9\u306b\u3057\u307e\u3059\u3002"},filenameMask:function(n){return"\u30d5\u30a1\u30a4\u30eb\u540d\u30de\u30b9\u30af"},folderToScan:function(n){return"\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u30fc:"},followSymlinks:function(n){return"\u30b7\u30f3\u30dc\u30ea\u30c3\u30af\u30ea\u30f3\u30af\u3092\u305f\u3069\u308b"},headers:{malicious:function(n){return"\u60aa\u610f\u3042\u308a"},needAction:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3\u304c\u5fc5\u8981"},path:function(n){return"\u30d1\u30b9"},result:function(n){return"\u7d50\u679c"},started:function(n){return"\u65e5\u4ed8"},total:function(n){return"\u5408\u8a08"},totalTooltip:function(n){return"\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7dcf\u6570"},viewResults:function(n){return"\u7d50\u679c\u3092\u8868\u793a"}},ignoreMask:function(n){return"\u7121\u8996\u30de\u30b9\u30af"},links:{dashboard:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9"},history:function(n){return"\u5c65\u6b74"},ignoreList:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8"},malicious:function(n){return"\u60aa\u610f\u3042\u308a"},onDemandScan:function(n){return"\u30aa\u30f3\u30c7\u30de\u30f3\u30c9 \u30b9\u30ad\u30e3\u30f3"},userList:function(n){return"\u30e6\u30fc\u30b6\u30fc"}},needAction:function(n){return n.count+"\u4ef6\u307e\u3060\u611f\u67d3\u3057\u3066\u3044\u307e\u3059"},notifications:{scannerStopped:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30aa\u30f3\u30c7\u30de\u30f3\u30c9 \u30b9\u30ad\u30e3\u30ca\u30fc\u304c\u505c\u6b62\u3057\u307e\u3057\u305f"},youCanSeeResults:function(n){return"\u7d50\u679c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059"}},scannerStopped:function(n){return"\u30b9\u30ad\u30e3\u30ca\u30fc\u304c\u505c\u6b62\u3057\u307e\u3057\u305f"},scannerStoppedEndUser:function(n){return"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30ca\u30fc\u306f\u30aa\u30f3\u3067\u3059"},scanning:function(n){return"\u30b9\u30ad\u30e3\u30f3\u4e2d..."},severalPatterns:function(n){return n.mask+' \u30de\u30b9\u30af\u306b\u8907\u6570\u306e\u30d1\u30bf\u30fc\u30f3\u3092\u8ffd\u52a0\u3059\u308b\u306b\u306f\u3001", " \u3067\u533a\u5207\u3063\u3066\u304f\u3060\u3055\u3044\u3002'},severalPatternsFilename:function(n){return"\u300c,\u300d\u3092\u533a\u5207\u308a\u6587\u5b57\u306b\u4f7f\u7528\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u540d\u30de\u30b9\u30af\u306b\u8907\u6570\u306e\u30d1\u30bf\u30fc\u30f3\u3092\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002\n\u4f8b\uff1a\n/home/*/mail/, /home/*/tmp, *.php"},severalPatternsIgnore:function(n){return"\u300c,\u300d\u3092\u533a\u5207\u308a\u6587\u5b57\u306b\u4f7f\u7528\u3057\u3066\u3001\u7121\u8996\u30de\u30b9\u30af\u306b\u8907\u6570\u306e\u30d1\u30bf\u30fc\u30f3\u3092\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002\n\u4f8b\uff1a\n/home/*/mail/, /home/*/tmp, *.php"},start:function(n){return"\u958b\u59cb"},status:{filenameMask:function(n){return"\u30d5\u30a1\u30a4\u30eb\u540d\u30de\u30b9\u30af:"},folder:function(n){return"\u30d5\u30a9\u30eb\u30c0\u30fc:"},ignoreMask:function(n){return"\u7121\u8996\u30de\u30b9\u30af:"},running:function(n){return"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6307\u5b9a\u3057\u3066\u5b9f\u884c"},status:function(n){return"\u72b6\u614b:"},"status-background":function(n){return"\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u30b9\u30ad\u30e3\u30f3\u306e\u72b6\u614b\uff1a"},"status-on-demand":function(n){return"\u30aa\u30f3\u30c7\u30de\u30f3\u30c9\u30b9\u30ad\u30e3\u30f3\u306e\u72b6\u614b\uff1a"},"status-user":function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u306e\u72b6\u614b:"},stopped:function(n){return"\u505c\u6b62\u3057\u3066\u3044\u307e\u3059"}},stop:function(n){return"\u505c\u6b62"},userScan:{inProgress:function(n){return"\u30b9\u30ad\u30e3\u30f3\u4e2d..."},queued:function(n){return"\u30b9\u30ad\u30e3\u30f3\u5f85\u3061..."},start:function(n){return"\u30b9\u30ad\u30e3\u30f3\u3092\u958b\u59cb"},stop:function(n){return"\u30b9\u30ad\u30e3\u30f3\u3092\u505c\u6b62"}},viewDetails:function(n){return"\u8a73\u7d30\u3092\u8868\u793a\u3057\u307e\u3059\u3002"}},resourceType:function(n){return"\u7a2e\u985e"},statusTooltips:{cleanup_requires_myimunify_protection:{admin:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u30e6\u30fc\u30b6\u30fc\u306b MyImunify \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77\u306e\u6240\u6709\u3092\u8981\u6c42\u3059\u308b\u305f\u3081\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3053\u306e\u30d1\u30c3\u30af\u306f\u30b5\u30fc\u30d0\u30fc\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u8105\u304b\u3055\u306a\u3044\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u9650\u5b9a\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u5bfe\u8c61\u3068\u3057\u3066\u3044\u307e\u3059"},client:function(n){return"\u3053\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u30d5\u30a1\u30a4\u30eb\u306f MyImunify \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77\u306a\u3057\u3067\u306f\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3002\u9ad8\u5ea6\u306a\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u4f7f\u7528\u3059\u308b\u306b\u306f\u3001\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u63d0\u4f9b\u5143\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002"}},requires_myimunify_protection:{admin:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u30e6\u30fc\u30b6\u30fc\u306b MyImunify \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77\u306e\u6240\u6709\u3092\u8981\u6c42\u3059\u308b\u305f\u3081\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3053\u306e\u30d1\u30c3\u30af\u306f\u30b5\u30fc\u30d0\u30fc\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u8105\u304b\u3055\u306a\u3044\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u9650\u5b9a\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u5bfe\u8c61\u3068\u3057\u3066\u3044\u307e\u3059"},client:function(n){return"\u3053\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u30d5\u30a1\u30a4\u30eb\u306f MyImunify \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77\u306a\u3057\u3067\u306f\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3002\u9ad8\u5ea6\u306a\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u4f7f\u7528\u3059\u308b\u306b\u306f\u3001\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u63d0\u4f9b\u5143\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002"}}},title:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30b9\u30ad\u30e3\u30ca\u30fc"},upgradeWarning:{auto:function(n){return"\u81ea\u52d5\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},description:function(n){return"\u81ea\u52d5\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u5b9f\u884c\u3057\u307e\u3059\u304b\u3001\u305d\u308c\u3068\u3082\u30d5\u30a1\u30a4\u30eb\u3092\u624b\u52d5\u3067\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3057\u307e\u3059\u304b\uff1f"},manual:function(n){return"\u624b\u52d5\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},notice:function(n){return"\u624b\u52d5\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u306b\u306f\u3001OS\u3001\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3001\u304a\u3088\u3073\u30de\u30eb\u30a6\u30a7\u30a2\u5bfe\u7b56\u306e\u30b9\u30ad\u30eb\u304c\u5fc5\u8981\u3067\u3059\u3002"},title:function(n){return u(n.count,0,e,{1:"\u30d5\u30a1\u30a4\u30eb",other:"\u30d5\u30a1\u30a4\u30eb"})+"\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},warning:function(n){return"\u30b5\u30fc\u30d0\u30fc\u304c\u611f\u67d3\u3057\u3066\u3044\u307e\u3059\u3002|\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7|\u3057\u307e\u3059\u304b\uff1f"}},userList:{cleanAction:function(n){return"\u30d5\u30a1\u30a4\u30eb\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},cleanup:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},cleanupModal:{confirmText:function(n){return"\u306f\u3044\u3002\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3057\u307e\u3059"},title:function(n){return u(n.count,0,e,{other:"\u30e6\u30fc\u30b6\u30fc\u306e"})+"\u30d5\u30a1\u30a4\u30eb\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"}},description:function(n){return"\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u306f"+u(n.count,0,e,{0:"\u30e6\u30fc\u30b6\u30fc\u304c\u3044\u307e\u305b\u3093",other:i(n.count,"count")+"\u4eba\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u3044\u307e\u3059"})},filterAction:function(n){return"\u30ec\u30dd\u30fc\u30c8\u3092\u8868\u793a"},headers:{home:function(n){return"\u30db\u30fc\u30e0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea"},infected:function(n){return"\u611f\u67d3\u72b6\u614b"},operation:function(n){return"\u904b\u7528\u72b6\u614b"},scanDate:function(n){return"\u30b9\u30ad\u30e3\u30f3\u65e5"},user:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"}},notAllowed:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},reportAction:function(n){return"\u30ec\u30dd\u30fc\u30c8\u3092\u8868\u793a"},restore:function(n){return"\u30ea\u30b9\u30c8\u30a2"},restoreAction:function(n){return"\u5143\u306e\uff08\u611f\u67d3\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\uff09\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30b9\u30c8\u30a2"},restoreModal:{confirmText:function(n){return"\u306f\u3044\u3002\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3059"},title:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u524d\u306b\u4f5c\u6210\u3055\u308c\u305f"+u(n.count,0,e,{other:"\u3053\u308c\u3089\u306e\u30e6\u30fc\u30b6\u30fc"})+"\u306e\u30d5\u30a1\u30a4\u30eb\u306e\uff08\u611f\u67d3\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\uff09\u30b3\u30d4\u30fc\u3092\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3059\u304b\uff1f"}},scan:function(n){return"\u30aa\u30f3\u30c7\u30de\u30f3\u30c9 \u30b9\u30ad\u30e3\u30f3"},scanModal:{confirmText:function(n){return"\u306f\u3044\u3002\u30b9\u30ad\u30e3\u30f3\u3057\u307e\u3059"},title:function(n){return u(n.count,0,e,{other:"\u30e6\u30fc\u30b6\u30fc\u306e"})+"\u30d5\u30a1\u30a4\u30eb\u3092\u30b9\u30ad\u30e3\u30f3"}},searchAction:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u30b9\u30ad\u30e3\u30f3"},stop:function(n){return"\u505c\u6b62"},stopAction:function(n){return"\u30b9\u30ad\u30e3\u30f3\u3092\u505c\u6b62"},stopModal:{confirmText:function(n){return"\u306f\u3044\u3002\u30b9\u30ad\u30e3\u30f3\u3092\u505c\u6b62\u3057\u307e\u3059"},title:function(n){return u(n.count,0,e,{other:"\u30e6\u30fc\u30b6\u30fc\u306e"})+"\u30d5\u30a1\u30a4\u30eb\u306e\u30b9\u30ad\u30e3\u30f3\u3092\u505c\u6b62"}},title:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30ea\u30b9\u30c8"},analystCleanup:function(n){return"\u4eba\u9593\u306e\u30a2\u30ca\u30ea\u30b9\u30c8\u306b\u3088\u308b\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u306e\u30ea\u30af\u30a8\u30b9\u30c8"},analystCleanupDisabled:function(n){return"\u3053\u306e\u30e6\u30fc\u30b6\u30fc\u306e\u305f\u3081\u306b\u4eba\u9593\u306e\u30a2\u30ca\u30ea\u30b9\u30c8\u306b\u3088\u308b\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u304c\u9032\u884c\u4e2d\u3067\u3059\u3002\u30b9\u30c6\u30fc\u30bf\u30b9\u306f\u300c\u8981\u6c42\u3055\u308c\u305f\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u300d\u30bf\u30d6\u3067\u8ffd\u8de1\u3067\u304d\u307e\u3059"}},analystCleanup:{requestModal:{title:function(n){return"\u4eba\u9593\u306e\u30a2\u30ca\u30ea\u30b9\u30c8\u306b\u3088\u308b\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u306e\u30ea\u30af\u30a8\u30b9\u30c8"},description_1:function(n){return"\u9078\u629e\u3057\u305f\u306e\u306f"},description_2:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u624b\u52d5\u3067\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3057\u307e\u3059\u3002\u3053\u306e\u30b5\u30a4\u30c8\u307e\u305f\u306f\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u30de\u30eb\u30a6\u30a7\u30a2\u306b\u611f\u67d3\u3057\u3066\u3044\u308b\u3068\u7591\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3001\u305d\u306e\u7406\u7531\u3092\u7c21\u5358\u306b\u8aac\u660e\u3057\u3066\u304f\u3060\u3055\u3044"},commentLabel:function(n){return"\u30e1\u30c3\u30bb\u30fc\u30b8"},beforeSubmit:function(n){return"\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3057\u3001\u30b5\u30dd\u30fc\u30c8\u30c1\u30b1\u30c3\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\u3053\u306e\u30c1\u30b1\u30c3\u30c8\u306b\u306f\u3001\u9078\u629e\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u8abf\u67fb\u3057\u5fc5\u8981\u306a\u63aa\u7f6e\u3092\u53d6\u308b\u305f\u3081\u306e\u5f53\u793e\u306e\u30a2\u30ca\u30ea\u30b9\u30c8\u306b\u3088\u308b\u6e96\u5099\u3055\u308c\u305f SSH \u30a2\u30af\u30bb\u30b9\u304c\u542b\u307e\u308c\u307e\u3059\u3002SSH \u30a2\u30af\u30bb\u30b9\u306f\u30c1\u30b1\u30c3\u30c8\u306e\u89e3\u6c7a\u6642\u306b\u7d42\u4e86\u3055\u308c\u307e\u3059\u3002"},emailLabel:function(n){return"\u9023\u7d61\u5148\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9"},create:function(n){return"\u4f5c\u6210"}},confirmation:{title:function(n){return"\u30ea\u30af\u30a8\u30b9\u30c8\u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f"},description:function(n){return"\u3053\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u95a2\u3059\u308b\u3059\u3079\u3066\u306e\u901a\u4fe1\u3068\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u8ffd\u8de1\u3059\u308b\u306b\u306f\u3001\u6b21\u306e Zendesk \u30c1\u30b1\u30c3\u30c8\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044:"},whereCanFind:function(n){return"\u8981\u6c42\u3055\u308c\u305f\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u306f\u3053\u3061\u3089\u3067\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059:"},linkToTab:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc - \u8981\u6c42\u3055\u308c\u305f\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"}},list:{title:function(n){return"\u8981\u6c42\u3055\u308c\u305f\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},username:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"},ticketUrl:function(n){return"\u30c1\u30b1\u30c3\u30c8URL"},status:function(n){return"\u30b9\u30c6\u30fc\u30bf\u30b9"},createdAt:function(n){return"\u4f5c\u6210\u65e5\u6642"},lastUpdate:function(n){return"\u6700\u7d42\u66f4\u65b0\u65e5\u6642"}},statuses:{pending:function(n){return"\u4fdd\u7559\u4e2d"},in_progress:function(n){return"\u9032\u884c\u4e2d"},completed:function(n){return"\u5b8c\u4e86"}}}},menu:{changeLanguage:function(n){return"\u8a00\u8a9e\u3092\u5909\u66f4"},enableProtection:function(n){return"\u4fdd\u8b77\u3092\u6709\u52b9\u306b\u3059\u308b"},dashboard:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9"},email:function(n){return"\u30e1\u30fc\u30eb"},firewall:function(n){return"\u30d5\u30a1\u30a4\u30a2\u30a6\u30a9\u30fc\u30eb"},getProtected:function(n){return"\u4fdd\u8b77\u3092\u53d7\u3051\u308b"},helpVideo:function(n){return"Imunify360\u306e\u30a6\u30a9\u30fc\u30af\u30b9\u30eb\u30fc\u52d5\u753b"},history:function(n){return"\u5c65\u6b74"},incidents:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8"},kernelCare:function(n){return"KernelCare"},logo:function(n){return"\u30ed\u30b4"},logout:function(n){return"\u30ed\u30b0\u30a2\u30a6\u30c8"},lowResourcesUsage:function(n){return"\u4f4e\u30ea\u30bd\u30fc\u30b9\u4f7f\u7528"},malware:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2"},malwareScanner:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30b9\u30ad\u30e3\u30ca\u30fc"},more:function(n){return"\u4ed6\u306e\u30bf\u30d6\u3092\u8868\u793a"},open:function(n){return"\u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f"},packageVersions:function(n){return"\u304a\u3088\u3073\u305d\u306e\u4ed6 "+n.count+" \u4ef6"},panelLanguage:function(n){return"\u30d1\u30cd\u30eb\u306e\u8a00\u8a9e"},proactiveDefense:function(n){return"\u4e8b\u524d\u9632\u5fa1"},profileMenu:function(n){return"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u30e1\u30cb\u30e5\u30fc"},protectionDisabled:function(n){return"\u4fdd\u8b77\u304c\u7121\u52b9"},protectionEnabled:function(n){return"\u4fdd\u8b77\u304c\u6709\u52b9"},reputationManagement:function(n){return"\u30ec\u30d4\u30e5\u30c6\u30fc\u30b7\u30e7\u30f3 \u30de\u30cd\u30fc\u30b8\u30e1\u30f3\u30c8"},settings:function(n){return"\u8a2d\u5b9a"},support:function(n){return"\u30b5\u30dd\u30fc\u30c8"},upgrade:function(n){return"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9"},vulnerabilities:function(n){return"\u8106\u5f31\u6027"}},news:{adminContacts:{confirmation:{description:function(n){return"E \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9\u3092\u7de8\u96c6\u307e\u305f\u306f\u524a\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059 "},descriptionLink:function(n){return"\u8a2d\u5b9a - \u4e00\u822c - \u9023\u7d61\u5148\u60c5\u5831"},title:function(n){return"E \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9\u3092\u9001\u4fe1\u3057\u3066\u3044\u305f\u3060\u304d\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059"}},notificationText:function(n){return"\u5f53\u793e\u30b5\u30dd\u30fc\u30c8\u30c1\u30fc\u30e0\u304c\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u91cd\u5927\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30a2\u30e9\u30fc\u30c8\u306b\u3064\u3044\u3066E \u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002"},request:{emailPlaceholder:function(n){return"Email@admin.co"},line1:function(n){return"\u5f53\u793e\u30b5\u30dd\u30fc\u30c8\u30c1\u30fc\u30e0\u304c\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u91cd\u5927\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30a4\u30d9\u30f3\u30c8\u3068\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u30df\u30b9\u306b\u3064\u3044\u3066\u901a\u77e5\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002"},note:function(n){return"\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\uff1a\u6307\u5b9a\u3055\u308c\u305fE \u30e1\u30fc\u30eb\u306b\u306f\u91cd\u5927\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30a2\u30e9\u30fc\u30c8\u304b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u30df\u30b9\u3060\u3051\u304c\u9001\u4fe1\u3055\u308c\u307e\u3059\u3002\u4ed6\u306e\u7a2e\u985e\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u306b\u3042\u306a\u305f\u306eE \u30e1\u30fc\u30eb\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u6c7a\u3057\u3066\u3042\u308a\u307e\u305b\u3093\u3002"},specifyEmail:function(n){return"\u3053\u306e\u6a5f\u80fd\u3092\u6709\u52b9\u306b\u3059\u308b\u306b\u306fE \u30e1\u30fc\u30eb\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044"},specifyEmailHint:function(n){return"\u8907\u6570\u306eE \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9\u3092\u8ffd\u52a0\u3059\u308b\u306b\u306f\u3001\u305d\u308c\u3089\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u3066\u304f\u3060\u3055\u3044\u3002"},title:function(n){return"\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u91cd\u8981\u306a\u30a4\u30d9\u30f3\u30c8\u3092\u898b\u9003\u3055\u306a\u3044\u3067\u304f\u3060\u3055\u3044"}},specifyEmail:function(n){return"E \u30e1\u30fc\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044"}},attention:function(n){return"\u6ce8\u610f"},fixLicense:function(n){return"\u3053\u306e\u554f\u984c\u3092\u3053\u3053\u3067\u89e3\u6c7a\u3067\u304d\u307e\u3059"},supportEmail:function(n){return"\u30b5\u30dd\u30fc\u30c8\u306e E \u30e1\u30fc\u30eb:"},takeALook:function(n){return"\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002"},upgradeLicense:function(n){return"\u3053\u3053\u3067\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044"}},noContent:{title:function(n){return"404: \u30da\u30fc\u30b8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"}},notifications:{addServerIds:{partialFailure:function(n){return u(n.count,0,e,{other:"\u5165\u529b\u3055\u308c\u305f"+n.count+"\u4ef6\u306e\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u304c"})+"\u4e0d\u6b63\u3067\u3059\uff1a"},partialSuccess:function(n){return u(n.count,0,e,{other:n.count+"\u4ef6\u306e\u30b5\u30fc\u30d0\u30fc\u304c"})+"\u6b63\u5e38\u306b\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f\uff1a"}},cleanup:{partialFailure:function(n){return"\u4e00\u90e8\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u30af\u30ea\u30fc\u30f3\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f:"},partialSuccess:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u5e38\u306b\u30af\u30ea\u30fc\u30f3\u3055\u308c\u307e\u3057\u305f:"},success:function(n){return"\u6b63\u5e38\u306b\u30af\u30ea\u30fc\u30f3\u3055\u308c\u307e\u3057\u305f"}},cleanupInitiated:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u304c\u6b63\u5e38\u306b\u958b\u59cb\u3057\u307e\u3057\u305f"},countryAction:function(n){return u(n.count,0,e,{other:"\u56fd"})+"\u304c\u6b63\u5e38\u306b"+u(n.count,0,e,{other:""})+o(n.action,{deleted:"\u524a\u9664",added:"\u8ffd\u52a0",moved:"\u79fb\u52d5",other:""})+"\u3055\u308c\u307e\u3057\u305f"},delete:{partialFailure:function(n){return"\u4e00\u90e8\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664\u306b\u5931\u6557\u3057\u307e\u3057\u305f:"},partialSuccess:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f:"},success:function(n){return"\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"}},deleted:function(n){return"\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"},details:function(n){return"\u8a73\u7d30"},editUserFeatures:{notifications:{success:function(n){return o(n.feature,{proactive:"\u4e8b\u524d\u9632\u5fa1",cleanup:"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7",webshield:"WebShield ",other:""})+"\u304c\u6b63\u5e38\u306b"+o(n.action,{enable:"\u6709\u52b9\u5316",disable:"\u7121\u52b9\u5316",other:""})+"\u3055\u308c\u307e\u3057\u305f"}},partialFailure:function(n){return o(n.feature,{proactive:"\u4e8b\u524d\u9632\u5fa1",av:"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7",webshield:"WebShield ",other:""})+"\u6a5f\u80fd\u3092\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066"+n.action+"\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:"},partialSuccess:function(n){return o(n.feature,{proactive:"\u4e8b\u524d\u9632\u5fa1",cleanup:"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7",webshield:"WebShield ",other:""})+"\u304c\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u6b63\u5e38\u306b"+o(n.action,{enable:"\u6709\u52b9\u5316",disable:"\u7121\u52b9\u5316",other:""})+"\u3055\u308c\u307e\u3057\u305f:"}},emails:{"add-white-list":function(n){return"\u9805\u76ee\u304c\u6b63\u5e38\u306b\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f\u3002"},addAccount:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u6b63\u5e38\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},deleteAccountAction:function(n){return"\u30e1\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"},deleteAction:function(n){return"\u30e1\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"},releaseAction:function(n){return"\u30e1\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u89e3\u653e\u3055\u308c\u307e\u3057\u305f"},releasesLimit:function(n){return"\u89e3\u653e\u6570\u306e\u5236\u9650\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f"},"remove-white-list":function(n){return"\u9805\u76ee\u304c\u6b63\u5e38\u306b\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002"},updateLimit:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u6b63\u5e38\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},updateQuarantine:function(n){return"\u9694\u96e2\u5148\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f"},updateSpace:function(n){return"\u5bb9\u91cf\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f"},updatedLimit:function(n){return"\u5236\u9650\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f"},resetAccountAction:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u6b63\u5e38\u306b\u30ea\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3057\u305f"},incomingFiltration:function(n){return"\u7740\u4fe1\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f"}},error:function(n){return"\u30a8\u30e9\u30fc"},fileNotFound:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\uff01"},generalPermissionError:function(n){return"\u3053\u306e\u5bfe\u5fdc\u3092\u5b9f\u884c\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093"},internalError:function(n){return"\u5185\u90e8\u30a8\u30e9\u30fc"},ipAction:function(n){return u(n.count,0,e,{other:"IP"})+" \u304c\u6b63\u5e38\u306b"+u(n.count,0,e,{other:""})+o(n.action,{deleted:"\u524a\u9664",added:"\u8ffd\u52a0",moved:"\u79fb\u52d5",other:""})+"\u3055\u308c\u307e\u3057\u305f"},moveToIgnore:{failed:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u3078\u306e\u8ffd\u52a0\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},partialFailure:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u3078\u306e\u8ffd\u52a0\u306b\u5931\u6557\u3057\u307e\u3057\u305f:"},partialSuccess:function(n){return"\u6b63\u5e38\u306b\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},success:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"}},myImunifyPageNotSpecified:function(n){return"MyImunify \u306e\u8cfc\u5165\u30da\u30fc\u30b8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u63d0\u4f9b\u5143\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044"},permissionError:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3059\u308b\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093"},quarantineMalicious:{partialFailure:function(n){return"\u4e00\u90e8\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u9694\u96e2\u306b\u5931\u6557\u3057\u307e\u3057\u305f:"},partialSuccess:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u5e38\u306b\u9694\u96e2\u3055\u308c\u307e\u3057\u305f:"},success:function(n){return"\u9694\u96e2\u5148\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"}},restoreFromBackup:{partialFailure:function(n){return"\u4e00\u90e8\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f:"},partialSuccess:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u5e38\u306b\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f:"},success:function(n){return"\u6b63\u5e38\u306b\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f"}},restoreFromQuarantine:{partialFailure:function(n){return"\u4e00\u90e8\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u30a2\u306b\u5931\u6557\u3057\u307e\u3057\u305f:"},partialSuccess:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u5e38\u306b\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f:"},success:function(n){return"\u9694\u96e2\u5148\u304b\u3089\u30ea\u30b9\u30c8\u30a2"}},restoreOriginal:{partialFailure:function(n){return"\u4e00\u90e8\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f:"},partialSuccess:function(n){return"\u30d5\u30a1\u30a4\u30eb\u304c\u6b63\u5e38\u306b\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f:"},success:function(n){return"\u6b63\u5e38\u306b\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f"}},ruleAction:function(n){return"\u30eb\u30fc\u30eb\u304c\u6b63\u5e38\u306b"+o(n.action,{enabled:"\u6709\u52b9\u5316\u3055\u308c\u307e\u3057\u305f",disabled:"\u7121\u52b9\u5316\u3055\u308c\u307e\u3057\u305f",edited:"\u7de8\u96c6\u3055\u308c\u307e\u3057\u305f",other:""})},scanInitiated:function(n){return"\u30b9\u30ad\u30e3\u30f3\u304c\u30ad\u30e5\u30fc\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},scanStopped:function(n){return"\u30b9\u30ad\u30e3\u30f3\u304c\u30ad\u30e5\u30fc\u304b\u3089\u524a\u9664\u3055\u308c\u307e\u3057\u305f"},seeLogsForDetails:function(n){return"\u8a73\u3057\u304f\u306f\u30ed\u30b0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044"},serviceNotStarted:function(n){return n.productName+"\u30b5\u30fc\u30d3\u30b9\u306f\u958b\u59cb\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},success:function(n){return"\u6b63\u5e38\u7d42\u4e86"},versionMismatch:function(n){return"UI \u3068\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002\u30da\u30fc\u30b8\u306f\u518d\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059\u3002"},warning:function(n){return"\u8b66\u544a"},warnings:function(n){return"\u8b66\u544a"},sendFalsePositive:{failed:function(n){return"False Positive \u306e\u9001\u4fe1\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},partialFailure:function(n){return"False Positive \u306e\u9001\u4fe1\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},partialSuccess:function(n){return"False Positive \u9001\u4fe1\u5bfe\u8c61\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},success:function(n){return"False Positive \u9001\u4fe1\u5bfe\u8c61\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"}},vulnerabilities:{applyPatch:{success:function(n){return"\u30d1\u30c3\u30c1\u304c\u6b63\u5e38\u306b\u9069\u7528\u3055\u308c\u307e\u3057\u305f"}},revertPatch:{success:function(n){return"\u30d1\u30c3\u30c1\u304c\u6b63\u5e38\u306b\u5143\u306b\u623b\u3055\u308c\u307e\u3057\u305f"}}}},pd:{addToIgnoreModal:{confirm:function(n){return"\u306f\u3044\u3002\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3057\u307e\u3059"},path:function(n){return"\u30d1\u30b9: "},rules:function(n){return"\u30eb\u30fc\u30eb: "},title:{all:function(n){return"\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u306f\u3059\u3079\u3066\u306e\u30eb\u30fc\u30eb\u3092\u7121\u8996"},detectedOnly:function(n){return"\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u691c\u51fa\u3055\u308c\u305f\u30eb\u30fc\u30eb\u3092\u7121\u8996"}}},details:{blockIp:function(n){return"IP \u3092\u30d6\u30ed\u30c3\u30af"},environment:function(n){return"\u74b0\u5883"},headers:{name:function(n){return"\u540d\u524d"},value:function(n){return"\u5024"}},ignore:{all:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u306f\u3059\u3079\u3066\u306e\u30eb\u30fc\u30eb\u3092\u7121\u8996"},detected:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u691c\u51fa\u3055\u308c\u305f\u30eb\u30fc\u30eb\u3092\u7121\u8996"}},onlyOne:function(n){return"\u8907\u6570\u306e IP \u304c\u3042\u3063\u305f\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u304c\u30011 \u3064\u306e\u307f\u304c\u8a18\u9332\u3055\u308c\u307e\u3057\u305f"},titles:{action:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3:"},ip:function(n){return"IP:"},numberOfTimes:function(n){return"\u56de\u6570\uff1a"},scriptPath:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u30d1\u30b9:"},time:function(n){return"\u6642\u523b:"},url:function(n){return"URL:"}},viewFileContent:function(n){return"\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u8868\u793a"}},events:{actions:{ignoreAll:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u306f\u3059\u3079\u3066\u306e\u30eb\u30fc\u30eb\u3092\u7121\u8996"},ignoreDetected:function(n){return"\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u691c\u51fa\u3055\u308c\u305f\u30eb\u30fc\u30eb\u3092\u7121\u8996"},viewDetails:function(n){return"\u8a73\u7d30\u3092\u8868\u793a"},viewFileContent:function(n){return"\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u8868\u793a"}},groupActions:{ignoreAll:function(n){return"\u3059\u3079\u3066\u306e\u30eb\u30fc\u30eb\u3092\u7121\u8996"},ignoreDetected:function(n){return"\u691c\u51fa\u3055\u308c\u305f\u30eb\u30fc\u30eb\u3092\u7121\u8996"}},headers:{action:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3"},detectionTime:function(n){return"\u691c\u51fa\u65e5\u6642"},host:function(n){return"\u30db\u30b9\u30c8"},ip:function(n){return"\u521d\u56de\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u547c\u3073\u51fa\u3057\u5143"},reason:function(n){return"\u8aac\u660e"},scriptPath:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u30d1\u30b9"}},notifications:{successfullyAddedToIgnore:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u306b\u6b63\u5e38\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"}}},ignoreList:{actions:{remove:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},viewFile:function(n){return"\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u8868\u793a"}},allRulesChip:function(n){return"\u3059\u3079\u3066\u306e\u30eb\u30fc\u30eb"},groupActions:{remove:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"}},headers:{dateTime:function(n){return"\u8ffd\u52a0\u65e5\u6642"},path:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u30d1\u30b9"},rules:function(n){return"\u7121\u8996\u3059\u308b\u30eb\u30fc\u30eb"},username:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"}},notifications:{successfullyRemoved:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"}},removeModal:{confirm:function(n){return"\u306f\u3044\u3002\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},path:function(n){return"\u30d1\u30b9:"},rule:function(n){return"\u30eb\u30fc\u30eb:"},title:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"}}},mode:{modes:{descriptions:{kill:function(n){return"\u653b\u6483\u304c\u691c\u51fa\u3055\u308c\u305f\u5834\u5408\u306f\u305f\u3060\u3061\u306b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u7d42\u4e86\u3057\u307e\u3059\u3002\u6700\u9ad8\u30ec\u30d9\u30eb\u306e\u4fdd\u8b77\u3092\u4fdd\u8a3c\u3057\u307e\u3059"},log:function(n){return"\u30a4\u30d9\u30f3\u30c8\u306e\u8a18\u9332\u306e\u307f"}},disabled:function(n){return"\u7121\u52b9"},kill:function(n){return"\u5f37\u5236\u7d42\u4e86\u30e2\u30fc\u30c9"},log:function(n){return"\u30ed\u30b0\u8a18\u9332\u306e\u307f"}},notifications:{changed:function(n){return"\u4e8b\u524d\u9632\u5fa1\u306e\u30e2\u30fc\u30c9\u304c\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\u5909\u66f4\u5f8c\u306e\u30e2\u30fc\u30c9: "+o(n.mode,{DISABLED:"DISABLED",LOG:"LOG",BLOCK:"BLOCK",KILL:"KILL",other:""})}},title:function(n){return"\u30e2\u30fc\u30c9\u8a2d\u5b9a"}},navigation:{detectedEvents:function(n){return"\u691c\u51fa\u3055\u308c\u305f\u30a4\u30d9\u30f3\u30c8"},ignoreList:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8"}},protectionStatus:{malwareDetected:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u691c\u51fa\u3057\u307e\u3057\u305f"},malwareFixed:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u99c6\u9664\u3057\u307e\u3057\u305f"},malwareProtection:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u4fdd\u8b77"},noMalware:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},off:function(n){return"\u30aa\u30d5"},on:function(n){return"\u30aa\u30f3"},protectionDisabled:function(n){return"\u4fdd\u8b77\u304c\u7121\u52b9"},protectionEnabled:function(n){return"\u4fdd\u8b77\u304c\u6709\u52b9"},upgradeToCleanup:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3059\u308b\u306b\u306f\u8cfc\u8aad\u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},upgradeToKeepProtected:function(n){return"\u30b5\u30a4\u30c8\u3092\u4fdd\u8b77\u3057\u7d9a\u3051\u308b\u306b\u306f\u8cfc\u8aad\u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},subtitle:function(n){return"PHP\u30d9\u30fc\u30b9\u306e\u653b\u6483\u3092\u9632\u3050"},title:function(n){return"\u4e8b\u524d\u9632\u5fa1"}},readMore:{readMore:function(n){return"\u8868\u793a\u3092\u5897\u3084\u3059"},showLess:function(n){return"\u8868\u793a\u3092\u6e1b\u3089\u3059"}},"reload-page":function(n){return"\u5909\u66f4\u5185\u5bb9\u304c\u4fdd\u5b58\u3055\u308c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"},reputation:{affectedDomains:function(n){return"\u5f71\u97ff\u304c\u53ca\u3076\u30c9\u30e1\u30a4\u30f3"},headers:{action:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3"},detectionTime:function(n){return"\u691c\u51fa\u6642"},domain:function(n){return"\u30c9\u30e1\u30a4\u30f3"},id:function(n){return"ID"},type:function(n){return"\u8105\u5a01\u306e\u7a2e\u985e"},vendor:function(n){return"\u30d9\u30f3\u30c0\u30fc"}},infoAction:function(n){return"\u5bfe\u5fdc\u30ac\u30a4\u30c9\u3092\u898b\u308b"},threatType:{ANY:function(n){return"\u4e0d\u660e"},MALWARE:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2"},POTENTIALLY_HARMFUL_APPLICATION:function(n){return"\u5bb3\u3092\u53ca\u307c\u3059\u53ef\u80fd\u6027\u306e\u3042\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3"},SOCIAL_ENGINEERING:function(n){return"\u30bd\u30fc\u30b7\u30e3\u30eb\u30a8\u30f3\u30b8\u30cb\u30a2\u30ea\u30f3\u30b0"},THREAT_TYPE_UNSPECIFIED:function(n){return"\u4e0d\u660e"},UNWANTED_SOFTWARE:function(n){return"\u671b\u307e\u3057\u304f\u306a\u3044\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2"},"abused legit botnet C&C":function(n){return"\u6b63\u5f53\u6027\u3092\u60aa\u7528\u3057\u305f\u30dc\u30c3\u30c8\u30cd\u30c3\u30c8 C&C"},"abused legit malware":function(n){return"\u6b63\u5f53\u6027\u3092\u60aa\u7528\u3057\u305f\u30de\u30eb\u30a6\u30a7\u30a2"},"abused legit phish":function(n){return"\u6b63\u5f53\u6027\u3092\u60aa\u7528\u3057\u305f\u30d5\u30a3\u30c3\u30b7\u30f3\u30b0"},"abused legit spam":function(n){return"\u6b63\u5f53\u6027\u3092\u60aa\u7528\u3057\u305f\u30b9\u30d1\u30e0"},"abused spammed redirector domain":function(n){return"\u6b63\u5f53\u6027\u3092\u60aa\u7528\u3057\u305f\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u30b9\u30d1\u30e0"},"botnet C&C domain":function(n){return"\u30dc\u30c3\u30c8\u30cd\u30c3\u30c8 C&C"},"malware domain":function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2"},"phish domain":function(n){return"\u30d5\u30a3\u30c3\u30b7\u30f3\u30b0"},"spam domain":function(n){return"\u30b9\u30d1\u30e0"}},title:function(n){return"\u30ec\u30d4\u30e5\u30c6\u30fc\u30b7\u30e7\u30f3 \u30de\u30cd\u30fc\u30b8\u30e1\u30f3\u30c8"}},settings:{backup:{component:{backupAndRestore:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3068\u30ea\u30b9\u30c8\u30a2"},choose:function(n){return"\u9078\u629e"},chooseProvider:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 \u30d7\u30ed\u30d0\u30a4\u30c0\u30fc\u3092\u9078\u629e"},description:function(n){return"\u3053\u306e\u6a5f\u80fd\u306b\u3088\u308a\u3001Imunify360 \u3067\u3001\u60aa\u610f\u304c\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u3068\u7591\u308f\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u306e\u30af\u30ea\u30fc\u30f3\u306a\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3067\u304d\u307e\u3059"},disabled:function(n){return"\u7121\u52b9"},enabled:function(n){return n.backupSystem+" \u304c\u6709\u52b9\u3067\u3059"},manageBackups:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u7ba1\u7406"}},connectBackup:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u63a5\u7d9a"},credentials:{activationInProgress:function(n){return"\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30b7\u30e7\u30f3\u4e2d..."},password:function(n){return"\u30d1\u30b9\u30ef\u30fc\u30c9"},username:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"}},disableModal:{body:function(n){return"\u3053\u306e\u6a5f\u80fd\u306b\u3088\u308a\u3001Imunify360 \u3067\u3001\u60aa\u610f\u304c\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u3068\u7591\u308f\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u306e\u30af\u30ea\u30fc\u30f3\u306a\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3067\u304d\u307e\u3059\u3002"},confirmText:function(n){return"\u306f\u3044\u3002\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u7121\u52b9\u5316\u3057\u307e\u3059"},destroy:function(n){return"\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u3059\u3079\u3066\u5b8c\u5168\u306b\u7834\u68c4\u3057\u3001CLN \u306e CloudLinux Backup \u3092\u7121\u52b9\u5316\u3057\u307e\u3059\u3002"},title:function(n){return n.backupSystem+" \u3092\u7121\u52b9\u5316\u3057\u307e\u3059\u304b?"},warning:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u7d71\u5408\u3092\u7121\u52b9\u5316\u3057\u307e\u3059\u304b?"}},schedule:{noSchedule:function(n){return"\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u3042\u308a\u307e\u305b\u3093\u3002[\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u7ba1\u7406] \u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 \u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},systems:{acronis:{current:function(n){return"\u73fe\u5728\u306e Acronis \u30a2\u30ab\u30a6\u30f3\u30c8"},description:function(n){return"Acronis \u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4fdd\u6709\u3057\u3066\u304a\u308a\u3001\u65e2\u306b Acronis \u30d0\u30c3\u30af\u30a2\u30c3\u30d7 \u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u3057\u3066\u3042\u308b\u5834\u5408\u306b\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u308c\u306b\u3088\u308a\u3001Imunify360 \u304c Acronis \u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u4f7f\u7528\u3057\u3066\u3001\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u611f\u67d3\u30d5\u30a1\u30a4\u30eb\u306e\u30af\u30ea\u30fc\u30f3 \u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002"},existing:function(n){return"\u65e2\u5b58\u306e Acronis \u30a2\u30ab\u30a6\u30f3\u30c8\u3068\u63a5\u7d9a"}},cl:{bonus:function(n){return"\u7121\u6599\u3067 10GB \u3092\u53d6\u5f97"},connect:function(n){return"CloudLinux \u30a2\u30ab\u30a6\u30f3\u30c8\u3068\u63a5\u7d9a"},getGbs:function(n){return"\u3055\u3089\u306b\u7121\u6599\u3067 10GB \u3092\u53d6\u5f97"},resize:function(n){return"\u30b5\u30a4\u30ba\u5909\u66f4"},titles:{region:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 \u30b5\u30fc\u30d0\u30fc\u9818\u57df"},size:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u4fdd\u7ba1\u30b5\u30a4\u30ba"}},used:function(n){return"\u4f7f\u7528\u4e2d: "+n.used+"GB\u3001\u5408\u8a08: "+n.total+"GB"}},clPremise:{connect:function(n){return"CloudLinux Backup On-Premises \u3068\u63a5\u7d9a"},current:function(n){return"\u73fe\u5728\u306e CloudLinux Backup On-Premises \u30a2\u30ab\u30a6\u30f3\u30c8"},description:function(n){return"\u65e2\u306b CloudLinux Backup On-Premises \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u3042\u308b\u5834\u5408\u306b\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},support:function(n){return"\u304a\u554f\u3044\u5408\u308f\u305b\u5148:|\u30b5\u30dd\u30fc\u30c8|CloudLinux Backup On-Premises \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u3001\u3053\u3061\u3089\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u3002"}},local:{connect:function(n){return"\u30ed\u30fc\u30ab\u30eb \u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306b\u63a5\u7d9a"}},notifications:{activation:function(n){return"\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30b7\u30e7\u30f3\u4e2d..."},configured:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u6b63\u5e38\u306b\u8a2d\u5b9a\u3055\u308c\u307e\u3057\u305f"},disabled:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u6b63\u5e38\u306b\u7121\u52b9\u5316\u3055\u308c\u307e\u3057\u305f"},errorDuringStage:function(n){return'"'+o(n.state,{dinit:"init",backup:"backup",not_running:"not_running",activation:"activation",other:""})+'" \u6bb5\u968e\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f'},installing:function(n){return"\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30b7\u30e7\u30f3\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3057\u307e\u3057\u305f\u3002\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u4e2d..."},windowClosed:function(n){return"\u6307\u793a\u30a6\u30a3\u30f3\u30c9\u30a6\u304c\u9589\u3058\u3089\u308c\u307e\u3057\u305f"}}}},blockedRules:{addForm:{description:function(n){return"\u8aac\u660e"},domains:function(n){return"\u30c9\u30e1\u30a4\u30f3"},domainsNote:function(n){return"\u3053\u306e\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316\u3059\u308b\u30c9\u30e1\u30a4\u30f3\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8\u3002\u3059\u3079\u3066\u306e\u30c9\u30e1\u30a4\u30f3\u3067\u7121\u52b9\u5316\u3059\u308b\u306b\u306f\u3001\u7a7a\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},id:function(n){return"\u30eb\u30fc\u30eb ID"},plugin:function(n){return"\u30d7\u30e9\u30b0\u30a4\u30f3"}},allDomains:function(n){return"\u3059\u3079\u3066"},domainsNotAllowed:function(n){return"\u8a72\u5f53\u306a\u3057"},emptyMessage:function(n){return"\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316\u3059\u308b\u306b\u306f [|\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8|] \u30bf\u30d6\u3092\u4f7f\u7528\u3057\u307e\u3059"},enable:function(n){return"\u6709\u52b9\u5316"},enableModal:{body:function(n){return"\u30eb\u30fc\u30eb|\u3092\u6709\u52b9\u5316\u3057\u307e\u3059\u3002"},title:function(n){return"\u5b9f\u884c\u3057\u307e\u3059\u304b?"}},headers:{actions:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3"},description:function(n){return"\u8aac\u660e"},domains:function(n){return"\u30c9\u30e1\u30a4\u30f3"},domainsTooltip:function(n){return"\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316\u3059\u308b\u30c9\u30e1\u30a4\u30f3\u306e\u30ea\u30b9\u30c8"},id:function(n){return"\u30eb\u30fc\u30eb ID"},plugin:function(n){return"\u30d7\u30e9\u30b0\u30a4\u30f3"}}},component:{backupInProgress:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u4e2d..."},mysqlFrozen:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u4e2d\u306b\u306f MySQL \u304c\u30d5\u30ea\u30fc\u30ba\u3057\u307e\u3059\u3002MySQL \u3092\u4f7f\u7528\u3059\u308b\u51e6\u7406 (plesk \u306a\u3069) \u304c\u4e00\u6642\u7684\u306b\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059"}},feature:{lve:{installed:function(n){return"HardenedPHP \u306f |LVE \u30de\u30cd\u30fc\u30b8\u30e3\u30fc|\u3067\u7ba1\u7406\u3055\u308c\u307e\u3059"},notInstalled:function(n){return"HardenedPHP \u3092\u7ba1\u7406\u3059\u308b\u306b\u306f |LVE \u30de\u30cd\u30fc\u30b8\u30e3\u30fc|\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044"}},modal:{confirmTextInstall:function(n){return"\u306f\u3044\u3002\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059"},confirmTextRemove:function(n){return"\u306f\u3044\u3002\u524a\u9664\u3057\u307e\u3059"},title:function(n){return"\u5b9f\u884c\u3057\u307e\u3059\u304b?"},willBeInstalled:function(n){return n.feature+"|\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059"},willBeRemoved:function(n){return n.feature+"|\u3092\u524a\u9664\u3057\u307e\u3059"}},titles:{install:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb: "+n.feature},installing:function(n){return n.feature+" \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u3044\u307e\u3059..."},purchase:function(n){return n.feature+" \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u3001Imunify360 \u3092\u8cfc\u5165\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"},remove:function(n){return"\u524a\u9664: "+n.feature},uninstalling:function(n){return n.feature+" \u3092\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u3044\u307e\u3059..."}},showExtendedLog:function(n){return"\u62e1\u5f35\u30ed\u30b0\u3092\u8868\u793a"}},featuresManagement:{cleanup:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},description:function(n){return"\u3053\u3053\u3067\u306f\u5404\u9867\u5ba2\u306b\u5bfe\u3057\u3066 "+n.productName+" \u6a5f\u80fd\u3092\u6709\u52b9\u307e\u305f\u306f\u7121\u52b9\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n \u6ce8\uff1a\u30e6\u30fc\u30b6\u30fc\u5074\u306eUI\u306f\u5b8c\u5168\u306b\u975e\u8868\u793a\u306b\u306a\u3063\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u6709\u52b9\u306b\u3059\u308b\u306b\u306f\u3001/usr/share/av-userside-plugin.sh \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},descriptionNote:function(n){return"\u6ce8: \u30e6\u30fc\u30b6\u30fc\u5074\u306e UI \u304c\u5b8c\u5168\u306b\u975e\u8868\u793a\u306b\u306a\u3063\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u6709\u52b9\u5316\u3059\u308b\u306b\u306f\u3001/usr/share/av-userside-plugin.sh \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},domains:function(n){return"\u30c9\u30e1\u30a4\u30f3"},headerDescription:function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306e\u5834\u5408\u306e\u30c7\u30d5\u30a9\u30eb\u30c8"},hideDomains:function(n){return"\u30c9\u30e1\u30a4\u30f3\u3092\u8868\u793a\u3057\u306a\u3044"},name:function(n){return"\u540d\u524d"},newFeaturesManagement:{action:function(n){return"\u540c\u610f\u3057\u3066\u5207\u308a\u66ff\u3048\u308b"},featuresManagementDisabled:{descriptionRest:function(n){return"\u6307\u5b9a\u30d1\u30c3\u30b1\u30fc\u30b8\u306e|\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u7de8\u96c6|\u3001|\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7 -> \u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u5909\u66f4|\u3001\u307e\u305f\u306f| cPanel API |\u7d4c\u7531\u3067\u8a2d\u5b9a\u3067\u304d\u307e\u3059"},myImunify:{description:function(n){return"MyImunify \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77\u3092\u8cfc\u5165\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u81ea\u52d5\u7684\u306b\u6709\u52b9\u5316\u3059\u308b\u3088\u3046\u306b|\u8acb\u6c42\u30b7\u30b9\u30c6\u30e0\u3092\u69cb\u6210|\u3067\u304d\u307e\u3059"},title:function(n){return"Imunify"+n.packageName+" \u306e\u6a5f\u80fd\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306f\u73fe\u5728\u3001MyImunify \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77\u306e\u72b6\u614b\u306b\u3088\u3063\u3066\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059"}},packageExtensions:{description:function(n){return"\u3059\u3079\u3066\u306e\u30e6\u30fc\u30b6\u30fc\u6a5f\u80fd\u306f"},title:function(n){return"WHM/cPanel \u30d1\u30c3\u30b1\u30fc\u30b8\u62e1\u5f35\u3092\u4f7f\u7528\u3057\u3066\u6a5f\u80fd\u7ba1\u7406\u3092\u30a2\u30af\u30c6\u30a3\u30d6\u306b\u3057\u307e\u3057\u305f"},plesk:{title:function(n){return"Plesk \u30b5\u30fc\u30d3\u30b9\u30d7\u30e9\u30f3\u3092\u4f7f\u7528\u3057\u3066\u6a5f\u80fd\u3092\u7ba1\u7406\u3057\u3066\u3044\u307e\u3059"},switchBack:function(n){return"Imunify \u6a5f\u80fd\u7ba1\u7406\u306b\u5207\u308a\u66ff\u3048\u308b"}}}},modalText:{"modalText-1":function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f WHM/cPanel \u30d1\u30c3\u30b1\u30fc\u30b8\u62e1\u5f35\u3092\u4f7f\u7528\u3057\u3066\u65b0\u3057\u3044\u6a5f\u80fd\u7ba1\u7406\u306b\u5207\u308a\u66ff\u3048\u307e\u3059\u3002\u5143\u306e Imunify"+n.packageName+" \u306e\u6a5f\u80fd\u7ba1\u7406\u3092\u30aa\u30d5\u306b\u3057\u3001WHM/cPanel \u306e\u5404\u65e2\u5b58\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u3066 Imunify"+n.packageName+" \u30d1\u30c3\u30b1\u30fc\u30b8\u62e1\u5f35\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002"},"modalText-2":function(n){return"\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\uff08\uff01\uff09| Imunify"+n.packageName+" \u306e\u6a5f\u80fd\u7ba1\u7406 UI \u306f\u3001WHM/cPanel \u30d1\u30c3\u30b1\u30fc\u30b8\u62e1\u5f35\u306b\u5207\u308a\u66ff\u3048\u305f\u5f8c\u306f\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002"},"modalText-3":function(n){return"Imunify"+n.packageName+" \u306e\u6a5f\u80fd\u7ba1\u7406\u306b\u3042\u308b\u73fe\u5728\u306e\u30e6\u30fc\u30b6\u30fc\u8a2d\u5b9a\u306f\u3001\u6b21\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b\u30ea\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059\u3002| \u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc - \u30ec\u30dd\u30fc\u30c8\u306e\u307f\u3092\u8868\u793a | \u4e8b\u524d\u9632\u5fa1 - \u4f7f\u7528\u53ef\u80fd\u3002\u30ed\u30b0\u5c02\u7528\u30e2\u30fc\u30c9"},"modalText-4":function(n){return"\u3053\u308c\u3089\u306fWHM\u306e\u300c\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u7de8\u96c6\u300d\u30e1\u30cb\u30e5\u30fc\u304b\u3089\u3001\u307e\u305f\u306fcPanel API\u7d4c\u7531\u3067\u3044\u3064\u3067\u3082\u8a2d\u5b9a\u3067\u304d\u307e\u3059\u3002"}},supportedText:function(n){return"\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6a5f\u80fd\u7ba1\u7406\u304c\u3001WHM/cPanel\u30d1\u30c3\u30b1\u30fc\u30b8\u62e1\u5f35\u3067\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002"},pleskSupportedText:function(n){return"Plesk \u30b5\u30fc\u30d3\u30b9\u30d7\u30e9\u30f3\u3092\u4f7f\u7528\u3057\u3066\u6a5f\u80fd\u3092\u7ba1\u7406\u3067\u304d\u307e\u3059\u3002"}},proactive:function(n){return"\u4e8b\u524d\u9632\u5fa1"},selectedItems:function(n){return u(n.count,0,e,{other:i(n.count,"count")+" \u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059"})},showDomains:function(n){return n.size+" \u30c9\u30e1\u30a4\u30f3\u3092\u3059\u3079\u3066\u8868\u793a"},webshield:function(n){return"WebShield"}},general:{adminContacts:{email:{description:function(n){return"\u5f53\u793e\u30b5\u30dd\u30fc\u30c8\u30c1\u30fc\u30e0\u304c\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u91cd\u5927\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30a2\u30e9\u30fc\u30c8\u306b\u3064\u3044\u3066\u901a\u77e5\u3059\u308b\u76ee\u7684\u3067\u4f7f\u7528\u3057\u307e\u3059"},label:function(n){return"E \u30e1\u30fc\u30eb"}},groupName:function(n){return"\u9023\u7d61\u5148\u60c5\u5831"}},autoWhiteList:{groupName:function(n){return"\u81ea\u52d5\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8"},timeout:{descriptions:{permanently:function(n){return'"0" - \u6c38\u7d9a\u7684\u306b\u8ffd\u52a0'},removed:function(n){return"IP \u3092\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3059\u308b\u307e\u3067\u306e\u6642\u9593 (\u5206)\u3002"}},label:function(n){return"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8"}}},csfIntegration:{catch_lfd_events:{description:function(n){return"Imunify360 \u304c CSF \u30a4\u30d9\u30f3\u30c8\u3068 IP \u30ea\u30b9\u30c8\u3092\u7ba1\u7406\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059"},label:function(n){return"CSF \u30a4\u30d9\u30f3\u30c8\u3068\u30ea\u30b9\u30c8\u306e\u7ba1\u7406"}},groupName:function(n){return"\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306e\u7d71\u5408"}},dos:{checkDelay:{descriptions:function(n){return"DoS \u691c\u51fa\u691c\u67fb\u306e\u9593\u9694 (\u79d2)"},label:function(n){return"\u691c\u67fb\u306e\u9045\u5ef6"}},enableDos:function(n){return"DoS \u4fdd\u8b77\u3092\u6709\u52b9\u5316"},groupName:function(n){return"DoS \u4fdd\u8b77"},maxConnections:{descriptions:function(n){return"IP \u3092\u30d6\u30ed\u30c3\u30af\u3059\u308b\u307e\u3067\u306e\u6700\u5927\u540c\u6642\u63a5\u7d9a\u6570\u3002"},label:function(n){return"\u6700\u5927\u63a5\u7d9a\u6570"}}},errorReporting:{enableSentry:{descriptions:function(n){return"\u30ec\u30dd\u30fc\u30c8\u3092 Imunify \u30a8\u30e9\u30fc \u30ec\u30dd\u30fc\u30c8 \u30b5\u30fc\u30d0\u30fc\u306b\u9001\u4fe1"},label:function(n){return"Sentry \u30a8\u30e9\u30fc \u30ec\u30dd\u30fc\u30c8\u3092\u6709\u52b9\u5316"}},groupName:function(n){return"\u30a8\u30e9\u30fc \u30ec\u30dd\u30fc\u30c8"}},genericUserNotifications:{description:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u4fb5\u5bb3\u306a\u3069\u3001\u6ce8\u610f\u304c\u5fc5\u8981\u306a\u554f\u984c\u306b\u95a2\u3059\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u3092 Imunify \u304c\u9001\u4fe1\u3059\u308b\u3053\u3068\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002"},label:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u5f71\u97ff\u3059\u308b\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u554f\u984c\u306b\u95a2\u3059\u308b\u30e1\u30fc\u30eb\u901a\u77e5\u3092\u6709\u52b9\u5316"},linkLabel:function(n){return"\u8a73\u7d30..."}},incidentsLogging:{autoRefresh:{descriptions:function(n){return"\u79d2\u6570"},label:function(n){return"[\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8] \u30da\u30fc\u30b8\u306e\u81ea\u52d5\u66f4\u65b0\u6642\u9593"}},groupName:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306e\u30ed\u30ae\u30f3\u30b0"},keepCount:function(n){return"\u4fdd\u6301\u3059\u308b\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306e\u6700\u5927\u6570"},keepIncidents:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u3092\u4fdd\u6301\u3059\u308b\u65e5\u6570"},logLevel:{descriptions:function(n){return"\u30a4\u30f3\u30b7\u30c7\u30f3\u30c8\u306b\u8868\u793a\u3059\u308b\u30ed\u30b0\u306e\u6700\u5c0f\u30ec\u30d9\u30eb"},label:function(n){return"\u30ed\u30b0 \u30ec\u30d9\u30eb"},modsec:function(n){return"mod security:"},ossec:function(n){return"OSSEC:"},sliderTitle:function(n){return"\u30ed\u30b0\u30ec\u30d9\u30eb:"}},sendAdditional:{descriptions:function(n){return"\u6697\u53f7\u5316\u3057\u305f\u6a5f\u5bc6\u30c7\u30fc\u30bf\u3092\u30bb\u30f3\u30c8\u30e9\u30eb \u30b5\u30fc\u30d0\u30fc\u306b\u9001\u4fe1\u3057\u307e\u3059\u3002"},title:function(n){return"\u8ffd\u52a0\u306e\u30c7\u30fc\u30bf\u3092\u9001\u4fe1"}}},installation:{groupName:function(n){return"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb"},hardenedPhp:{description:function(n){return"\u53e4\u3044 PHP \u30d0\u30fc\u30b8\u30e7\u30f3\u306b\u81ea\u52d5\u7684\u306b\u30d1\u30c3\u30c1\u3092\u9069\u7528\u3057\u3001\u30d0\u30c3\u30af\u30dd\u30fc\u30c8\u4fee\u6b63\u3092\u7d44\u307f\u8fbc\u307f\u307e\u3059\u3002"},label:function(n){return"Hardened PHP"}},kernelCare:{description:function(n){return"\u81ea\u52d5\u5316\u3055\u308c\u305f\u30ab\u30fc\u30cd\u30eb \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306b\u3088\u308a\u3001\u30ea\u30d6\u30fc\u30c8\u305b\u305a\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"KernelCare"}},more:function(n){return"\u8a73\u7d30..."}},logLevels:{1:function(n){return"\u306a\u3057"},2:function(n){return"\u30b7\u30b9\u30c6\u30e0\u4f4e\u512a\u5148\u5ea6\u901a\u77e5"},3:function(n){return"\u6b63\u5e38/\u8a31\u53ef\u30a4\u30d9\u30f3\u30c8"},4:function(n){return"\u30b7\u30b9\u30c6\u30e0\u4f4e\u512a\u5148\u5ea6\u30a8\u30e9\u30fc"},5:function(n){return"\u30e6\u30fc\u30b6\u30fc\u751f\u6210\u30a8\u30e9\u30fc"},6:function(n){return"\u95a2\u9023\u6027\u306e\u4f4e\u3044\u653b\u6483"},7:function(n){return"\u300cNG \u30ef\u30fc\u30c9\u300d\u306e\u4e00\u81f4"},8:function(n){return"\u521d\u56de\u306e\u691c\u51fa"},9:function(n){return"\u7121\u52b9\u306a\u30bd\u30fc\u30b9\u304b\u3089\u306e\u30a8\u30e9\u30fc"},10:function(n){return"\u8907\u6570\u306e\u30e6\u30fc\u30b6\u30fc\u751f\u6210\u30a8\u30e9\u30fc"},11:function(n){return"\u4fdd\u5168\u6027\u691c\u67fb\u306e\u8b66\u544a"},12:function(n){return"\u91cd\u8981\u5ea6\u306e\u9ad8\u3044\u30a4\u30d9\u30f3\u30c8"},13:function(n){return"\u901a\u5e38\u3068\u7570\u306a\u308b\u30a8\u30e9\u30fc"},14:function(n){return"\u91cd\u8981\u5ea6\u306e\u9ad8\u3044\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3 \u30a4\u30d9\u30f3\u30c8"},15:function(n){return"\u91cd\u5927\u306a\u653b\u6483"}},modSecLevels:{0:function(n){return"\u7dca\u6025 - \u30a4\u30f3\u30d0\u30a6\u30f3\u30c9\u653b\u6483\u3068\u5916\u90e8\u3078\u306e\u6f0f\u6d29\u304c\u3042\u308b\u5834\u5408\u306b\u3001\u30a2\u30ce\u30de\u30ea \u30b9\u30b3\u30a2\u30ea\u30f3\u30b0 \u30c7\u30fc\u30bf\u306e\u76f8\u95a2\u304b\u3089\u751f\u6210\u3055\u308c\u307e\u3059"},1:function(n){return"\u30a2\u30e9\u30fc\u30c8 - \u30a4\u30f3\u30d0\u30a6\u30f3\u30c9\u653b\u6483\u3068\u30a2\u30a6\u30c8\u30d0\u30a6\u30f3\u30c9 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u5c64\u30a8\u30e9\u30fc\u304c\u3042\u308b\u5834\u5408\u306b\u76f8\u95a2\u304b\u3089\u751f\u6210\u3055\u308c\u307e\u3059"},2:function(n){return"\u91cd\u5927 - \u30a2\u30ce\u30de\u30ea \u30b9\u30b3\u30a2\u306f 5 \u3067\u3059\u3002\u76f8\u95a2\u306a\u3057\u306e\u4e2d\u3067\u306f\u6700\u3082\u91cd\u5927\u5ea6\u304c\u9ad8\u3044\u3082\u306e\u3067\u3059\u3002\u901a\u5e38\u306f\u3001Web \u653b\u6483\u30eb\u30fc\u30eb (40 \u30ec\u30d9\u30eb\u306e\u30d5\u30a1\u30a4\u30eb) \u306b\u3088\u3063\u3066\u751f\u6210\u3055\u308c\u307e\u3059"},3:function(n){return"\u30a8\u30e9\u30fc - \u30a2\u30ce\u30de\u30ea \u30b9\u30b3\u30a2\u306f 4 \u3067\u3059\u3002\u4e3b\u306b\u5916\u90e8\u3078\u306e\u6f0f\u6d29\u30eb\u30fc\u30eb (50 \u30ec\u30d9\u30eb\u306e\u30d5\u30a1\u30a4\u30eb) \u304b\u3089\u751f\u6210\u3055\u308c\u307e\u3059"},4:function(n){return"\u8b66\u544a - \u30a2\u30ce\u30de\u30ea \u30b9\u30b3\u30a2\u306f 3 \u3067\u3059\u3002\u60aa\u610f\u306e\u3042\u308b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30eb\u30fc\u30eb (35 \u30ec\u30d9\u30eb\u306e\u30d5\u30a1\u30a4\u30eb) \u306b\u3088\u3063\u3066\u751f\u6210\u3055\u308c\u307e\u3059"},5:function(n){return"\u6ce8\u610f - \u30a2\u30ce\u30de\u30ea \u30b9\u30b3\u30a2\u306f 2 \u3067\u3059\u3002\u30d7\u30ed\u30c8\u30b3\u30eb \u30dd\u30ea\u30b7\u30fc\u3068\u30a2\u30ce\u30de\u30ea \u30d5\u30a1\u30a4\u30eb\u306b\u3088\u3063\u3066\u751f\u6210\u3055\u308c\u307e\u3059"},6:function(n){return"\u901a\u77e5"},7:function(n){return"\u30c7\u30d0\u30c3\u30b0"}},mod_sec:{appSpecificRuleset:{description:function(n){return"\u30c9\u30e1\u30a4\u30f3\u30eb\u30fc\u30eb\u306f\u3001\u691c\u51fa\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0 (WordPress\u3001Joomla\u3001Drupal\u306a\u3069) \u3068\u305d\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u306b\u57fa\u3065\u3044\u3066\u9069\u7528\u3055\u308c\u307e\u3059\u3002\u305d\u306e\u7d50\u679c\u3001WAF \u30eb\u30fc\u30eb\u306e\u52b9\u679c\u3092\u9ad8\u3081\u3066 Web \u30b5\u30a4\u30c8\u3092\u4fdd\u8b77\u3057\u3001\u8aa4\u691c\u77e5\u306e\u6570\u3092\u6e1b\u3089\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n\u3059\u3079\u3066\u306e\u5909\u66f4 (\u65b0\u898f\u307e\u305f\u306f\u524a\u9664\u3055\u308c\u305f\u30c9\u30e1\u30a4\u30f3\u3001\u65b0\u898f\u307e\u305f\u306f\u524a\u9664\u3055\u308c\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0) \u306f 1 \u65e5\u4ee5\u5185\u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002\n\u7121\u52b9\u5316\u3059\u308b\u3068\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u306e Imunify360 \u306e WAF \u30eb\u30fc\u30eb\u304c\u3059\u3079\u3066\u306e\u30c9\u30e1\u30a4\u30f3\u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"CMS \u56fa\u6709\u306e WAF \u30eb\u30fc\u30eb\u3092\u9069\u7528"}},groupName:function(n){return"WAF \u8a2d\u5b9a"},ruleSet:{description:function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30aa\u30f3\u306e\u5834\u5408\u306f\u3001\u30e1\u30e2\u30ea\u4f7f\u7528\u91cf\u306e\u591a\u3044 Imunify \u306e WAF \u30eb\u30fc\u30eb\u3092\u7121\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305f\u3060\u3057\u3001\u91cd\u8981\u306a\u30eb\u30fc\u30eb\u30bb\u30c3\u30c8\u306f\u6709\u52b9\u306a\u307e\u307e\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30e1\u30e2\u30ea\u4f7f\u7528\u91cf\u304c\u5927\u5e45\u306b\u524a\u6e1b\u3055\u308c\u307e\u3059\u3002RAM \u306e\u5bb9\u91cf\u304c\u5c11\u306a\u3044\u30b5\u30fc\u30d0\u30fc\u306b\u63a8\u5968\u3055\u308c\u307e\u3059\u3002WebShield \u304c\u7121\u52b9\u306a\u72b6\u614b\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3059\u308b\u3068\u3001Imunify360 \u304c\u300c\u4f4e\u30ea\u30bd\u30fc\u30b9\u4f7f\u7528\u300d\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u308f\u308a\u307e\u3059\u3002"},label:function(n){return"\u6700\u5c0f ModSec \u30eb\u30fc\u30eb\u30bb\u30c3\u30c8"}},wordPressAccountCompromise:{description:function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u7528\u306e\u8f9e\u66f8\u30d5\u30a1\u30a4\u30eb\u306b\u767b\u9332\u3055\u308c\u305f\u8106\u5f31\u306a\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306b WordPress Web \u30b5\u30a4\u30c8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a\u3092\u6709\u52b9\u306b\u3057\u307e\u3059\u3002WordPress \u3078\u306e\u30ed\u30b0\u30a4\u30f3\u3092\u8a66\u307f\u308b\u30e6\u30fc\u30b6\u30fc\u306f\u30a2\u30e9\u30fc\u30c8\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u542b\u3080\u5c02\u7528\u306e\u30da\u30fc\u30b8\u306b\u9077\u79fb\u3057\u3001\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u4e0d\u6b63\u4f7f\u7528\u3092\u9632\u3050\u305f\u3081\u306b\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30ea\u30bb\u30c3\u30c8\u304c\u5f37\u5236\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"WordPress \u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u4e0d\u6b63\u5229\u7528\u9632\u6b62"},warning:function(n){return'\u3053\u306e\u30b9\u30a4\u30c3\u30c1\u306b\u3088\u3063\u3066 "\u5f31\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u306e\u30ed\u30b0\u30a4\u30f3\u9632\u6b62" \u304c\u7121\u52b9\u5316\u3055\u308c\u3066\u5f31\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4f7f\u7528\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059\u304c\u3001\u4e0d\u6b63\u5229\u7528\u3055\u308c\u305f\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u5bfe\u3059\u308b\u30d2\u30e5\u30fc\u30ea\u30b9\u30c6\u30a3\u30c3\u30af\u30ec\u30d9\u30eb\u306e\u4fdd\u8b77\u306f\u7121\u52b9\u5316\u3055\u308c\u307e\u305b\u3093\u3002'}}},myImunify:{enable:{description:function(n){return"\u8ffd\u52a0\u306e Imunify \u6a5f\u80fd\u3092\u30e6\u30fc\u30b6\u30fc\u306b\u8ca9\u58f2\u3057\u307e\u3059\u3002"},label:function(n){return"MyImunify \u3092\u6709\u52b9\u5316"}},enableForAll:{label:function(n){return"\u5168\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u4fdd\u8b77\u3092\u6709\u52b9\u5316"}},groupName:function(n){return"MyImunify"},purchasePageUrl:{description:function(n){return"\u4f8b: https://whmcs.example.com/"},label:function(n){return"\u8ab2\u91d1\u30b7\u30b9\u30c6\u30e0\u306e\u30db\u30b9\u30c8"}}},ossec:{active_response:{description:function(n){return"Active Response \u306f OSSEC \u3092\u4f7f\u7528\u3057\u3001\u653b\u6483\u5bfe\u8c61\u3068\u306a\u308b\u7279\u5b9a\u30b5\u30fc\u30d0\u30fc\u30dd\u30fc\u30c8\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3092\u30d6\u30ed\u30c3\u30af\u3067\u304d\u308b\u3088\u3046\u306b\u518d\u8a2d\u8a08\u3055\u308c\u305f Imunify360 \u306e IDS \u6a5f\u80fd\u3067\u3059\u3002 \n\u3053\u306e\u6a5f\u80fd\u306f\u60aa\u8cea\u306a\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u691c\u51fa\u3057\u3066\u30d6\u30ed\u30c3\u30af\u3059\u308b\u6a5f\u80fd\u3092\u5411\u4e0a\u3055\u305b\u306a\u304c\u3089\u3001\u8aa4\u691c\u77e5\u7387\u3092\u5927\u5e45\u306b\u524a\u6e1b\u3059\u308b\u3053\u3068\u3092\u76ee\u7684\u3068\u3057\u3066\u3044\u307e\u3059\u3002"},label:function(n){return"Active Response"}},groupName:function(n){return"OSSEC"}},pam:{enable:{description:function(n){return"\u3053\u306e\u6a5f\u80fd\u306b\u3088\u308a\u3001PAM \u30e2\u30b8\u30e5\u30fc\u30eb\u8a8d\u8a3c\u3001RBL \u30c1\u30a7\u30c3\u30af\u3001\u304a\u3088\u3073 IP \u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u3092\u7d44\u307f\u5408\u308f\u305b\u305f\u9ad8\u5ea6\u306a\u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u4fdd\u8b77\u6280\u8853\u304c\u6709\u52b9\u5316\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"PAM \u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483\u304b\u3089\u306e\u4fdd\u8b77"}},eximDovecotProtection:{description:function(n){return"\u3053\u306e\u6a5f\u80fd\u306b\u3088\u308a\u3001Dovecot \u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483\u306b\u5bfe\u3059\u308b\u9ad8\u5ea6\u306a\u4fdd\u8b77\u304c\u6709\u52b9\u5316\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"Exim+Dovecot \u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483\u304b\u3089\u306e\u4fdd\u8b77"}},ftpProtection:{description:function(n){return"\u3053\u306e\u6a5f\u80fd\u306b\u3088\u308a\u3001FTP \u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483\u306b\u5bfe\u3059\u308b\u9ad8\u5ea6\u306a\u4fdd\u8b77\u304c\u6709\u52b9\u5316\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"FTP \u30d6\u30eb\u30fc\u30c8\u30d5\u30a9\u30fc\u30b9\u653b\u6483\u304b\u3089\u306e\u4fdd\u8b77"},warningMoreText:function(n){return"\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001Imunify360 \u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},groupName:function(n){return"PAM"}},smtpBlocking:{allowGroups:{description:function(n){return"SMTP \u30d6\u30ed\u30c3\u30af\u306e\u9664\u5916\u5bfe\u8c61\u306b\u3059\u308b unix \u30b0\u30eb\u30fc\u30d7\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8\u3002"},label:function(n){return"\u30b0\u30eb\u30fc\u30d7\u3092\u8a31\u53ef"}},allowLocal:{description:function(n){return"\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u30ed\u30fc\u30ab\u30eb SMTP \u63a5\u7d9a\u3092\u8a31\u53ef\u3059\u308b\u5834\u5408\u306b\u6709\u52b9\u5316\u3057\u307e\u3059\u3002"},label:function(n){return"\u30ed\u30fc\u30ab\u30eb\u3092\u8a31\u53ef"}},allowUsers:{description:function(n){return"SMTP \u30d6\u30ed\u30c3\u30af\u306e\u9664\u5916\u5bfe\u8c61\u306b\u3059\u308b unix \u30e6\u30fc\u30b6\u30fc\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8\u3002"},label:function(n){return"\u30e6\u30fc\u30b6\u30fc\u3092\u8a31\u53ef"}},enable:{description:function(n){return"\u6709\u52b9\u5316\u3059\u308b\u3068\u3001\u9001\u4fe1 SMTP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u304c\u4ee5\u4e0b\u306e\u8a2d\u5b9a\u306b\u5f93\u3063\u3066\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"SMTP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7ba1\u7406\u3092\u6709\u52b9\u5316"}},groupName:function(n){return"SMTP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7ba1\u7406"},ports:{description:function(n){return"\u30d6\u30ed\u30c3\u30af\u3059\u308b SMTP \u30dd\u30fc\u30c8\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u305f\u30ea\u30b9\u30c8\u3002"},label:function(n){return"SMTP \u30dd\u30fc\u30c8"}},redirect:{description:function(n){return"\u6709\u52b9\u5316\u3059\u308b\u3068\u3001\u9001\u4fe1\u30e1\u30fc\u30eb\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u304c\u30ed\u30fc\u30ab\u30eb\u30dd\u30fc\u30c8\u306b\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"\u30ed\u30fc\u30ab\u30eb\u306b\u30ea\u30c0\u30a4\u30ec\u30af\u30c8"}}},webshield:{enable:{description:function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30aa\u30d5\u306e\u5834\u5408\u306f\u3001WebShield\u3068\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8\u3092\u7121\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002RAM \u306e\u91cf\u304c\u5c11\u306a\u3044\u30b5\u30fc\u30d0\u30fc\u3067\u306f\u3001\u7121\u52b9\u306a\u72b6\u614b\u306b\u3059\u308b\u3053\u3068\u3092\u304a\u52e7\u3081\u3057\u307e\u3059\u3002\u300c\u6700\u5c0f WAF \u30eb\u30fc\u30eb\u30bb\u30c3\u30c8\u300d\u304c\u6709\u52b9\u306a\u72b6\u614b\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u3068\u3001Imunify360 \u304c\u300c\u4f4e\u30ea\u30bd\u30fc\u30b9\u4f7f\u7528\u300d\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u308f\u308a\u307e\u3059\u3002"},label:function(n){return"WebShield \u3092\u6709\u52b9\u5316"}},groupName:function(n){return"WebShield"},known_proxies_support:{description:function(n){return"CloudFlare\u3068MaxCDN\u306e\u80cc\u5f8c\u3067\u4e0d\u5be9\u306a\u6d3b\u52d5\u3092\u3057\u3066\u3044\u308bIP\u3092\u8a8d\u8b58\u3057\u3066\u30d6\u30ed\u30c3\u30af\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059"},label:function(n){return"CDN\u306e\u80cc\u5f8c\u306b\u3042\u308bIP\u3092\u691c\u51fa"}},panel_protection:{description:function(n){return"\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d1\u30cd\u30eb\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3088\u3046\u3068\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306b JavaScript \u30c1\u30e3\u30ec\u30f3\u30b8\u3092\u8868\u793a\u3057\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30dc\u30c3\u30c8\u306b\u3088\u308b\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4fb5\u5bb3\u3068\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u4f7f\u7528\u3092\u963b\u6b62\u3057\u307e\u3059\u3002\n \u6ce8\u610f: Web UI/API \u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u6b63\u5f53\u306a\u81ea\u52d5\u5316\u30b5\u30fc\u30d3\u30b9\u306f\u624b\u52d5\u3067\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u767b\u9332\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002"},label:function(n){return"cPanel \u30a2\u30ab\u30a6\u30f3\u30c8\u4fdd\u8b77"}},splash_screen:{description:function(n){return"\u4e0d\u5be9\u306a IP \u306e JavaScript \u691c\u8a3c\u30da\u30fc\u30b8\u3092\u8868\u793a\u3057\u3001\u30dc\u30c3\u30c8\u3067\u306f\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002\u30b5\u30fc\u30d0\u30fc\u306e\u8ca0\u8377\u3092\u5927\u5e45\u306b\u524a\u6e1b\u3057\u3001\u691c\u7d22\u30dc\u30c3\u30c8\u3001CDN \u30d7\u30ed\u30d0\u30a4\u30c0\u30fc\u306a\u3069\u306e\u6b63\u5f53\u306a\u30dc\u30c3\u30c8\u306b\u306f\u5f71\u97ff\u3057\u307e\u305b\u3093\u3002"},label:function(n){return"\u30dc\u30c3\u30c8\u5bfe\u7b56\u4fdd\u8b77"},note:function(n){return" \u3053\u306e\u6a5f\u80fd\u3092\u4f7f\u7528\u3059\u308b\u306b\u306f\u3042\u3068 20MB \u306e RAM \u304c\u5fc5\u8981\u3067\u3059\u3002"}},warningRequire:function(n){return"WebShield \u304c\u5fc5\u8981\u3067\u3059\u3002"}},wordPress:{groupName:function(n){return"WordPress \u30d7\u30e9\u30b0\u30a4\u30f3"},install:{label:function(n){return"WordPress \u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb"},description:function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3057\u3066\u3001Imunify Security WP \u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u3059\u3079\u3066\u306e WordPress \u30b5\u30a4\u30c8\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059\u3002\u304a\u5ba2\u69d8\u306f\u3001\u30b5\u30a4\u30c8\u304c\u7a4d\u6975\u7684\u306b\u76e3\u8996\u3055\u308c\u3066\u304a\u308a\u3001\u81ea\u52d5\u7684\u306b\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u305f\u611f\u67d3\u306e\u8a73\u7d30\u3092\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002"},warning:function(n){return"WordPress \u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u3001\u8a2d\u5b9a \u2192 \u30de\u30eb\u30a6\u30a7\u30a2 \u2192 \u4e00\u822c \u2192 \u691c\u51fa\u6642\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u300c\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u300d\u306b\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u306e\u4ed6\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u3001\u5c06\u6765\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u5c0e\u5165\u3055\u308c\u307e\u3059\u3002"}}}},malware:{cleanup:{description:function(n){return"\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3059\u308b\u4ee3\u308f\u308a\u306b\u4e2d\u8eab\u3092\u7a7a\u306b\u3057\u3001\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba\u3092\u30bc\u30ed\u306b\u3057\u307e\u3059\u3002"},groupName:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},keepOriginalFilesDays:{days:function(n){return"\u65e5"},label:function(n){return"\u6b21\u306e\u65e5\u6570\u4fdd\u6301\u3059\u308b"}},trimFiles:function(n){return"\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u305b\u305a\u306b\u30c8\u30ea\u30e0\u3059\u308b"}},general:{backupMaxDays:function(n){return"\u4f55\u65e5\u524d\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u307e\u3067\u4f7f\u7528\u3059\u308b\u304b (\u65e5)"},crontabs:{description:function(n){return"\u30b7\u30b9\u30c6\u30e0\u3068\u30e6\u30fc\u30b6\u30fc\u306e crontab \u30d5\u30a1\u30a4\u30eb\u306b\u60aa\u610f\u306e\u3042\u308b\u30b8\u30e7\u30d6\u304c\u542b\u307e\u308c\u3066\u3044\u306a\u3044\u304b\u691c\u67fb\u3057\u307e\u3059\u3002"},label:function(n){return"crontab \u30d5\u30a1\u30a4\u30eb\u306e\u30b9\u30ad\u30e3\u30f3\u3092\u6709\u52b9\u5316"}},crontabsRestoreFromBackup:{label:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u5f8c\u306b crontab \u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30b9\u30c8\u30a2\u3059\u308b"}},defaultAction:{label:function(n){return"\u691c\u51fa\u6642\u306e\u30c7\u30d5\u30a9\u30eb\u30c8 \u30a2\u30af\u30b7\u30e7\u30f3"},options:{cleanup:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},cleanupOrQuarantine:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3001\u5931\u6557\u6642\u306b\u9694\u96e2"},delete:function(n){return"\u5b8c\u5168\u306b\u524a\u9664"},notify:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u306b\u8868\u793a\u3059\u308b\u306e\u307f"},quarantine:function(n){return"\u9694\u96e2\u30d5\u30a1\u30a4\u30eb"}},placeholder:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8 \u30a2\u30af\u30b7\u30e7\u30f3\u3092\u9078\u629e"}},detectElf:{description:function(n){return"\u30e6\u30fc\u30b6\u30fc\u306e\u30db\u30fc\u30e0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u30d0\u30a4\u30ca\u30ea (ELF \u30d5\u30a1\u30a4\u30eb) \u3092\u691c\u7d22\u3057\u3001\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u3068\u898b\u306a\u3057\u307e\u3059\u3002"},label:function(n){return"\u30d0\u30a4\u30ca\u30ea (ELF) \u30de\u30eb\u30a6\u30a7\u30a2\u691c\u51fa"}},enableScanCpanel:{descriptions:function(n){return"cPanel File Manager \u3092\u4f7f\u7528\u3057\u3066\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u5c64\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u8a66\u884c\u3092\u30d6\u30ed\u30c3\u30af\u3057\u3001\u60aa\u610f\u306e\u3042\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u6b63\u5f53\u306a\u30d5\u30a1\u30a4\u30eb\u306b\u8ffd\u52a0\u3055\u308c\u308b\u306e\u3092\u9632\u304e\u307e\u3059\u3002"},label:function(n){return"cPanel File Manager \u3092\u4f7f\u7528\u3057\u3066\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u30d6\u30ed\u30c3\u30af\u3059\u308b"}},enableScanFtp:{descriptions:function(n){return"pure-ftpd \u304c\u5fc5\u8981"},label:function(n){return"ftp \u3092\u4f7f\u7528\u3057\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u3059\u3079\u3066\u81ea\u52d5\u7684\u306b\u30b9\u30ad\u30e3\u30f3"}},enableScanInotify:{descriptions:function(n){return"\u30e6\u30fc\u30b6\u30fc\u306e\u30db\u30fc\u30e0\u30d5\u30a9\u30eb\u30c0\u30fc\u5185\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u5909\u66f4\u3092\u76e3\u8996\u3057\u3001\u65b0\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u304c\u691c\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc\u3092\u5b9f\u884c\u3059\u308b\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30f3\u3067\u3059\u3002"},label:function(n){return"\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u3059\u3079\u3066\u81ea\u52d5\u7684\u306b\u30b9\u30ad\u30e3\u30f3"}},enableScanModsec:{descriptions:function(n){return"mod_security \u304c\u5fc5\u8981"},label:function(n){return"Web \u3092\u4f7f\u7528\u3057\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u3059\u3079\u3066\u81ea\u52d5\u7684\u306b\u30b9\u30ad\u30e3\u30f3"}},groupName:function(n){return"\u4e00\u822c"},hyperscan:{description:function(n){return"Hyperscan \u6b63\u898f\u8868\u73fe\u30a8\u30f3\u30b8\u30f3\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30b9\u30ad\u30e3\u30f3\u901f\u5ea6\u304c\u5927\u5e45\u306b\u5411\u4e0a\u3057\u307e\u3059\u3002\u6ce8: \u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3059\u308b\u3068\u3001\u30b9\u30ad\u30e3\u30f3\u6642\u306b\u6700\u5927 50MB \u306e RAM \u304c\u8ffd\u52a0\u3067\u6d88\u8cbb\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"},label:function(n){return"Hyperscan \u3092\u6709\u52b9\u5316"}},mdsEnable:{description:function(n){return"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a2\u30f3\u30c1\u30a6\u30a4\u30eb\u30b9: WordPress \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u81ea\u52d5\u691c\u51fa\u3068\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u884c\u3044\u307e\u3059\u3002"},label:function(n){return"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7528\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc"}},optimizeRealtimeScan:{descriptions:function(n){return"fanotify \u3068 CloudLinux FileChange API \u3092\u4f7f\u7528\u3057\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u5909\u66f4\u3092 inotify \u306e\u76e3\u8996\u3068\u6bd4\u8f03\u3057\u3066\u76e3\u8996\u3057\u306a\u304c\u3089\u30b7\u30b9\u30c6\u30e0\u8ca0\u8377\u306e\u8efd\u6e1b\u3092\u8a66\u307f\u307e\u3059\u3002"},label:function(n){return"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30f3\u3092\u6700\u9069\u5316"}},rapidScan:{descriptions:function(n){return"\u7e70\u308a\u8fd4\u3057\u30b9\u30ad\u30e3\u30f3\u306e\u901f\u5ea6\u304c\u5927\u5e45\u306b\u5411\u4e0a\u3057\u307e\u3059\u3002\u30af\u30e9\u30a6\u30c9\u652f\u63f4\u30b9\u30ad\u30e3\u30f3\u3092\u4f7f\u7528\u3057\u3066\u30ed\u30fc\u30ab\u30eb\u306e\u7d50\u679c\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u3059\u308b\u305f\u3081\u3001\u5909\u66f4\u306e\u306a\u3044\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u30b9\u30ad\u30e3\u30f3\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},title:function(n){return"RapidScan \u3092\u6709\u52b9\u5316"}},sendForAnalysis:function(n){return"\u5206\u6790\u306e\u305f\u3081\u306b\u3001\u7591\u308f\u3057\u3044\u30d5\u30a1\u30a4\u30eb\u3068\u60aa\u610f\u306e\u3042\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u81ea\u52d5\u7684\u306b\u9001\u4fe1"},showClamAVResults:function(n){return"ClamAV\u306e\u30b9\u30ad\u30e3\u30f3\u7d50\u679c\u3092\u8868\u793a"},tryToRestore:{descriptions:{ifExists:function(n){return"\u30af\u30ea\u30fc\u30f3\u306a\u30b3\u30d4\u30fc\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3059\u3002"},otherwise:function(n){return"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u9069\u7528\u3057\u307e\u3059"}},label:function(n){return"\u6700\u521d\u306b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u306e\u30ea\u30b9\u30c8\u30a2\u3092\u8a66\u307f\u308b"}}},proactive:{blamer:{description:function(n){return n.productName+"\u306e\u30b5\u30fc\u30d0\u30fc\u4fdd\u8b77\u304a\u3088\u3073\u30de\u30eb\u30a6\u30a7\u30a2\u691c\u51fa\u6a5f\u80fd\u3092\u6539\u5584\u3059\u308b\u305f\u3081\u3001\u60aa\u610f\u306e\u3042\u308bPHP\u30b3\u30fc\u30c9\u306e\u5b9f\u884c\u3092\u30c8\u30ec\u30fc\u30b9\u3057\u3066CloudLinux\u306b\u30ec\u30dd\u30fc\u30c8\u3092\u9001\u4fe1\u3057\u307e\u3059\u3002"},title:function(n){return"Blamer \u3092\u6709\u52b9\u5316"}},groupName:function(n){return"\u4e8b\u524d\u9632\u5fa1"},phpImmunity:{description:function(n){return"\u4e8b\u524d\u9632\u5fa1\u30ec\u30d9\u30eb\u3067\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u306e\u8106\u5f31\u6027\u3092\u81ea\u52d5\u7684\u306b\u691c\u51fa\u3057\u3066\u30d1\u30c3\u30c1\u3092\u9069\u7528\u3057\u3001\u540c\u3058\u8106\u5f31\u6027\u306b\u3088\u308b\u518d\u611f\u67d3\u3092\u9632\u304e\u307e\u3059\u3002"},title:function(n){return"PHP Immunity"}}},resourceConsumption:{cpu:{descriptions:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc\u306b\u3088\u308b CPU \u4f7f\u7528\u7387\u306e\u30ec\u30d9\u30eb\u3067\u3059\u3002\u6ce8: CPU \u4f7f\u7528\u7387\u304c\u4f4e\u3044\u3068\u3001\u30b9\u30ad\u30e3\u30f3\u901f\u5ea6\u304c\u9045\u304f\u306a\u308a\u307e\u3059\u3002"},label:function(n){return"CPU \u4f7f\u7528\u7387"}},groupName:function(n){return"\u30ea\u30bd\u30fc\u30b9\u6d88\u8cbb"},high:function(n){return"\u9ad8"},io:{descriptions:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30ca\u30fc\u306b\u3088\u308b I/O \u4f7f\u7528\u7387\u306e\u30ec\u30d9\u30eb\u3067\u3059\u3002\u6ce8: I/O \u4f7f\u7528\u7387\u304c\u4f4e\u3044\u3068\u3001\u30b9\u30ad\u30e3\u30f3\u901f\u5ea6\u304c\u9045\u304f\u306a\u308a\u307e\u3059\u3002"},label:function(n){return"I/O \u4f7f\u7528\u7387"}},low:function(n){return"\u4f4e"}},scheduledScanning:{groupName:function(n){return"\u30d0\u30c3\u30af\u30b0\u30e9\u30a6\u30f3\u30c9\u30b9\u30ad\u30e3\u30f3"},hour:{label:function(n){return"\u5b9f\u884c\u6642\u9593"},placeholder:function(n){return"\u6642\u9593\u3092\u9078\u629e"}},interval:{label:function(n){return"\u30b9\u30ad\u30e3\u30f3\u3092\u5b9f\u884c"},options:{day:function(n){return"\u6bce\u65e5"},month:function(n){return"\u6bce\u6708"},none:function(n){return"\u5b9f\u884c\u3057\u306a\u3044"},week:function(n){return"\u6bce\u9031"}},placeholder:function(n){return"\u5468\u671f\u3092\u9078\u629e"}},monthDay:{label:function(n){return"\u6708\u5185\u306e\u5b9f\u884c\u65e5"},placeholder:function(n){return"\u6708\u5185\u306e\u5b9f\u884c\u65e5"}},weekDay:{label:function(n){return"\u5b9f\u884c\u65e5"},placeholder:function(n){return"\u5b9f\u884c\u3059\u308b\u66dc\u65e5"}}}},menu:{attributions:function(n){return"\u5e30\u56e0"},backups:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7"},disabledRules:function(n){return"\u30eb\u30fc\u30eb\u3092\u7121\u52b9\u5316"},featuresManagement:function(n){return"\u6a5f\u80fd\u306e\u7ba1\u7406"},general:function(n){return"\u4e00\u822c"},malware:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2"},notifications:function(n){return"\u901a\u77e5"}},notification:{emails:{description:function(n){return"\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u7ba1\u7406\u8005\u30e1\u30fc\u30eb\u901a\u77e5\u306b\u4f7f\u7528\u3055\u308c\u308b\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u30ea\u30b9\u30c8\u3067\u3059\u3002"},label:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u7ba1\u7406\u8005\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9"}},fields:{adminEmails:{checkboxTitle:function(n){return"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u7ba1\u7406\u8005\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9"},description:function(n){return"\u30a4\u30d9\u30f3\u30c8\u7528\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u30ab\u30b9\u30bf\u30e0\u30ea\u30b9\u30c8\u3067\u3059\u3002\u3053\u308c\u3089\u306e\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306f\u3001\u30e1\u30fc\u30eb\u901a\u77e5\u7528\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3068\u5171\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"\u7ba1\u7406\u8005\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9"}},enableEmailNotification:{description:function(n){return"\u30a4\u30d9\u30f3\u30c8\u767a\u751f\u6642\u306b\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3092\u9001\u4fe1\u3057\u307e\u3059\u3002\u300c\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u7ba1\u7406\u8005\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u300d\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9\u304c\u30aa\u30f3\u306e\u5834\u5408\u3001\u4ee5\u4e0b\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30b9\u30bf\u30e0\u30ea\u30b9\u30c8\u3068\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u7ba1\u7406\u8005\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306b\u901a\u77e5\u304c\u9001\u4fe1\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"\u7ba1\u7406\u8005\u306e\u30e1\u30fc\u30eb\u901a\u77e5\u3092\u6709\u52b9\u5316"}},enableScriptExecute:{description:function(n){return"\u30a4\u30d9\u30f3\u30c8\u767a\u751f\u6642\u306b\u30b9\u30af\u30ea\u30d7\u30c8 (\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u30fc) \u3092\u5b9f\u884c\u3057\u307e\u3059\u3002"},label:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c\u3092\u6709\u52b9\u5316"}},notifyEvery:{mins:{description:function(n){return"\u901a\u77e5\u9593\u9694\u3092\u5206\u5358\u4f4d\u3067\u6307\u5b9a\u3057\u307e\u3059\u3002\u6307\u5b9a\u3057\u305f\u9593\u9694\u5185\u306b\u767a\u751f\u3057\u305f\u3059\u3079\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30c7\u30fc\u30bf\u304c\u84c4\u7a4d\u3055\u308c\u3001\u307e\u3068\u3081\u3066\u9001\u4fe1\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"\u6307\u5b9a\u9593\u9694\u3067\u901a\u77e5 (\u5206)"}},sec:{description:function(n){return"\u901a\u77e5\u9593\u9694\u3092\u79d2\u5358\u4f4d\u3067\u6307\u5b9a\u3057\u307e\u3059\u3002\u6307\u5b9a\u3057\u305f\u9593\u9694\u5185\u306b\u767a\u751f\u3057\u305f\u3059\u3079\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30c7\u30fc\u30bf\u304c\u84c4\u7a4d\u3055\u308c\u3001\u307e\u3068\u3081\u3066\u9001\u4fe1\u3055\u308c\u307e\u3059\u3002"},label:function(n){return"\u6307\u5b9a\u9593\u9694\u3067\u901a\u77e5 (\u79d2)"}}},runScript:{description:function(n){return"\u30a4\u30d9\u30f3\u30c8\u767a\u751f\u6642\u306b\u8d77\u52d5\u3055\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3084\u305d\u306e\u4ed6\u306e Linux \u5b9f\u884c\u53ef\u80fd\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d5\u30eb\u30d1\u30b9\u3067\u3059\u3002\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c\u53ef\u80fd\u30d3\u30c3\u30c8 (+x) \u304c\u30aa\u30f3\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u30ea\u30b9\u30c8\u3092\u884c\u3067\u533a\u5207\u3063\u3066\u8a18\u8ff0\u3067\u304d\u307e\u3059\u3002"},label:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c"}}},from:{description:function(n){return"\u30d5\u30c3\u30af\u306b\u3088\u3063\u3066\u9001\u4fe1\u3055\u308c\u308b\u3059\u3079\u3066\u306e\u30e1\u30fc\u30eb\u306e\u9001\u4fe1\u8005\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002"},label:function(n){return"\u5dee\u51fa\u4eba"}},groups:{customScanFinished:{label:function(n){return"\u30ab\u30b9\u30bf\u30e0\u30b9\u30ad\u30e3\u30f3: \u7d42\u4e86"},tooltip:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u691c\u51fa\u7d50\u679c\u3068\u306f\u7121\u95a2\u4fc2\u306b\u30aa\u30f3\u30c7\u30de\u30f3\u30c9 (\u624b\u52d5) \u30b9\u30ad\u30e3\u30f3\u304c\u7d42\u4e86\u3057\u305f\u76f4\u5f8c\u306b\u767a\u751f\u3057\u307e\u3059"}},customScanMalwareFound:{label:function(n){return"\u30ab\u30b9\u30bf\u30e0\u30b9\u30ad\u30e3\u30f3: \u30de\u30eb\u30a6\u30a7\u30a2\u306e\u691c\u51fa"},tooltip:function(n){return"\u30aa\u30f3\u30c7\u30de\u30f3\u30c9\u30b9\u30ad\u30e3\u30f3\u30d7\u30ed\u30bb\u30b9\u304c\u7d42\u4e86\u3057\u3066\u30de\u30eb\u30a6\u30a7\u30a2\u304c\u691c\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u767a\u751f\u3057\u307e\u3059"}},customScanStarted:{label:function(n){return"\u30ab\u30b9\u30bf\u30e0\u30b9\u30ad\u30e3\u30f3: \u958b\u59cb"},tooltip:function(n){return"\u30aa\u30f3\u30c7\u30de\u30f3\u30c9 (\u624b\u52d5) \u30b9\u30ad\u30e3\u30f3\u304c\u958b\u59cb\u3055\u308c\u305f\u76f4\u5f8c\u306b\u767a\u751f\u3057\u307e\u3059"}},realtimeScanMalwareDetected:{label:function(n){return"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30f3: \u30de\u30eb\u30a6\u30a7\u30a2\u306e\u691c\u51fa"},tooltip:function(n){return"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30f3\u4e2d\u306b\u30de\u30eb\u30a6\u30a7\u30a2\u304c\u691c\u51fa\u3055\u308c\u305f\u5834\u5408\u306b\u767a\u751f\u3057\u307e\u3059"}},scriptBlocked:{label:function(n){return"\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u30d6\u30ed\u30c3\u30af"},tooltip:function(n){return"\u4e8b\u524d\u9632\u5fa1\u304c\u60aa\u610f\u306e\u3042\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u30d6\u30ed\u30c3\u30af\u3057\u305f\u3068\u304d\u306b\u767a\u751f\u3057\u307e\u3059"}},userScanFinished:{label:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3: \u7d42\u4e86"},tooltip:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u691c\u51fa\u7d50\u679c\u3068\u306f\u7121\u95a2\u4fc2\u306b\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u304c\u7d42\u4e86\u3057\u305f\u76f4\u5f8c\u306b\u767a\u751f\u3057\u307e\u3059"}},userScanMalwareFound:{label:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3: \u30de\u30eb\u30a6\u30a7\u30a2\u306e\u691c\u51fa"},tooltip:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u30b9\u30ad\u30e3\u30f3\u30d7\u30ed\u30bb\u30b9\u304c\u7d42\u4e86\u3057\u3066\u30de\u30eb\u30a6\u30a7\u30a2\u304c\u691c\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u767a\u751f\u3057\u307e\u3059"}},userScanStarted:{label:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3: \u958b\u59cb"},tooltip:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u304c\u958b\u59cb\u3055\u308c\u305f\u76f4\u5f8c\u306b\u767a\u751f\u3057\u307e\u3059"}}}},saveSettings:function(n){return"\u5909\u66f4\u5185\u5bb9\u3092\u4fdd\u5b58"},successSaveMessage:function(n){return"\u8a2d\u5b9a\u3092\u4fdd\u5b58\u3057\u307e\u3057\u305f"},title:function(n){return"\u8a2d\u5b9a"}},stoppedService:{guide:function(n){return"\u5f93\u3046"},message:function(n){return"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u30ac\u30a4\u30c9\u306b"},or:function(n){return"\u304b"},support:function(n){return"\u30b5\u30dd\u30fc\u30c8\u306b\u554f\u3044\u5408\u308f\u305b\u3066\u304f\u3060\u3055\u3044"},title:function(n){return"Imunify \u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u307e\u305b\u3093"}},support:{attachments:function(n){return"\u6dfb\u4ed8\u30d5\u30a1\u30a4\u30eb"},cln:{description:function(n){return"CLN \u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8a72\u5f53\u3057\u306a\u3044\u5834\u5408\u306f NONE \u3068\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044"},placeholder:function(n){return"CLN \u30a2\u30ab\u30a6\u30f3\u30c8"},title:function(n){return"CLN \u30a2\u30ab\u30a6\u30f3\u30c8 (\u30aa\u30d7\u30b7\u30e7\u30f3)"}},description:{description:function(n){return"\u3054\u8981\u671b\u3092\u8a73\u3057\u304f\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30b5\u30dd\u30fc\u30c8 \u30b9\u30bf\u30c3\u30d5\u304c\u3067\u304d\u308b\u3060\u3051\u65e9\u304f\u5bfe\u5fdc\u3044\u305f\u3057\u307e\u3059"},placeholder:function(n){return"\u8aac\u660e"},title:function(n){return"\u8aac\u660e"}},email:{placeholder:function(n){return"E \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9"},title:function(n){return"E \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9"}},subject:{placeholder:function(n){return"\u4ef6\u540d"},title:function(n){return"\u4ef6\u540d"}},submit:function(n){return"\u9001\u4fe1"},success:{checkEmail:function(n){return"\u30c1\u30b1\u30c3\u30c8\u3078\u306e\u30ea\u30f3\u30af\u3092\u53d6\u5f97\u3059\u308b\u306b\u306f\u3001\u30e1\u30fc\u30eb\u306e\u53d7\u4fe1\u30c8\u30ec\u30a4\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\uff01"},link:function(n){return"\u76f4\u63a5\u30ea\u30f3\u30af\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059\u3002"},subtitle:function(n){return"\u8a73\u7d30\u60c5\u5831\u3092\u8a18\u8f09\u3057\u305f\u30e1\u30fc\u30eb\u304c\u9593\u3082\u306a\u304f\u5c4a\u304d\u307e\u3059\u3002"},title:function(n){return"\u3054\u8981\u671b\u306f\u6b63\u5e38\u306b\u30b5\u30dd\u30fc\u30c8\u306b\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f\u3002"}},title:function(n){return"\u30b5\u30dd\u30fc\u30c8\u306b\u554f\u3044\u5408\u308f\u305b\u308b"}},tooltips:{clickToCopyDomain:function(n){return"\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u30c9\u30e1\u30a4\u30f3\u304c\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059"},ipAdd:function(n){return"\u4f8b: 1.2.3.4\u30011.2.3.0/24\u30011111:2222:3333:4444::/64\u30011111:2222:3333::/48"}},upgrade:{av:{benefits:{malwareCleanup:function(n){return"\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},malwareDetection:function(n){return"\u30b7\u30b0\u30cd\u30c1\u30e3\u30d9\u30fc\u30b9\u304a\u3088\u3073\u30d2\u30e5\u30fc\u30ea\u30b9\u30c6\u30a3\u30c3\u30af\u30d9\u30fc\u30b9\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u691c\u51fa"},scheduledScanning:function(n){return"\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u30b9\u30ad\u30e3\u30f3"}},description:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306b\u611f\u67d3\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u78ba\u5b9f\u306b\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u30af\u30ea\u30fc\u30f3\n\u30a2\u30c3\u30d7\u3059\u308b\u306b\u306f ImunifyAV+ \u306b\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044"},title:function(n){return"Antivirus Plus"},titleInDescription:function(n){return"\u30d7\u30ed\u7d1a\u306e\u30b9\u30ad\u30eb\u306f\u4e0d\u8981\u3067\u3059"}},avDescription:function(n){return"ImunifyAV+\u306fWeb\u30b5\u30a4\u30c8\u7528\u306e\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30c8\u306a\u30a6\u30a4\u30eb\u30b9\u5bfe\u7b56\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3067\u3059\u3002ImunifyAV+\u3092\u8cfc\u8aad\u3059\u308b\u3068\u3001\u81ea\u52d5\u7684\u306b\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3067\u304d\u307e\u3059\u3002"},avTitle:function(n){return"ImunifyAV+ \u306f Web \u30b5\u30a4\u30c8\u7528\u306e\u30a4\u30f3\u30c6\u30ea\u30b8\u30a7\u30f3\u30c8\u306a\u30a6\u30a4\u30eb\u30b9\u5bfe\u7b56\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3067\u3059\u3002"},buyButton:function(n){return"\u4eca\u3059\u3050\u8cfc\u5165"},im360:{benefits:{comprehensiveSecurity:function(n){return"\u521d\u671f\u72b6\u614b\u3067\u3059\u3050\u306b\u4f7f\u3048\u308b\u7dcf\u5408\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u5bfe\u7b56"},outdatedAndSoftware:function(n){return"KernelCare\u3001HardenedPHP\u3001Web Application Firewall \u3067\u53e4\u3044\u8106\u5f31\u306a\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u4fdd\u8b77"},professionalSupport:function(n){return"24\u6642\u9593\u5e74\u4e2d\u7121\u4f11\u306e\u5c02\u9580\u30b5\u30dd\u30fc\u30c8"},realTimeExecutions:function(n){return"\u4e8b\u524d\u9632\u5fa1\u306b\u3088\u3063\u3066\u60aa\u610f\u306e\u3042\u308b php \u306e\n\u5b9f\u884c\u3092\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u306b\u963b\u6b62"},stopBots:function(n){return"\u60aa\u8cea\u306a\u30dc\u30c3\u30c8\u3084\u30b9\u30d1\u30e0\u30b3\u30e1\u30f3\u30c8\u3092\u963b\u6b62"}},description:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u81ea\u52d5\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\n\u30cf\u30c3\u30ad\u30f3\u30b0\u304a\u3088\u3073\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u304b\u3089 Web \u30b5\u30a4\u30c8\u3092\u4fdd\u8b77"},fullProtection:function(n){return"\u5b8c\u5168\u4fdd\u8b77"},includes:function(n){return"\u6b21\u3092\u542b\u3080"},title:function(n){return"\u30aa\u30fc\u30eb\u30a4\u30f3\u30ef\u30f3\u578b\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30b9\u30a4\u30fc\u30c8:\n\u30a2\u30f3\u30c1\u30a6\u30a4\u30eb\u30b9\u304a\u3088\u3073\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b5\u30fc\u30d0\u30fc\u4fdd\u8b77"}},readMore:function(n){return"\u8a73\u7d30"}},upgradeNeeded:{firewall:function(n){return"\u65e2\u77e5\u306e Web \u653b\u6483\u304b\u3089\u4fdd\u8b77\u3059\u308b\u306b\u306f\u3001\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},kernelcare:function(n){return"\u30b5\u30fc\u30d0\u30fc\u306e\u7a3c\u50cd\u6642\u9593\u3092\u6539\u5584\u3057\u3066\u30ab\u30fc\u30cd\u30eb\u306e\u8106\u5f31\u6027\u304b\u3089\u4fdd\u8b77\u3059\u308b\u306b\u306f\u3001\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},pd:function(n){return"\u65e2\u77e5\u304a\u3088\u3073\u65b0\u898f\u306e Web \u653b\u6483\u304b\u3089\u4e88\u9632\u7684\u306b\u4fdd\u8b77\u3059\u308b\u306b\u306f\u3001\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},reputationManagement:function(n){return"Web \u30b5\u30a4\u30c8\u306e\u8a55\u4fa1\u3092\u8ffd\u8de1\u3057\u3066 Google \u306a\u3069\u306e\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u306e\u8868\u793a\u9806\u4f4d\u3078\u306e\u5f71\u97ff\u3092\u9632\u3050\u306b\u306f\u3001\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},reputationManagementTitle:function(n){return"\u30ec\u30d4\u30e5\u30c6\u30fc\u30b7\u30e7\u30f3\u30de\u30cd\u30fc\u30b8\u30e1\u30f3\u30c8\u306e\u7d71\u5408\u306f\u3001iMunifyAV+\u3067\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059"},title:function(n){return o(n.name,{firewall:"Firewall",pd:"Proactive defense",kernelcare:"KernelCare",other:""})+"\u306e\u7d71\u5408\u306fImunify360\u3067\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059"},upgrade:function(n){return"Imunify \u3092\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u304f\u3060\u3055\u3044"}},userside:{bigWarning:{body:function(n){return n.count+" \u500b\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u611f\u67d3\u3057\u3066\u3044\u308b\u3053\u3068\u304c\u524d\u56de\u306e\u30de\u30eb\u30a6\u30a7\u30a2 \u30b9\u30ad\u30e3\u30f3\u3067\u691c\u51fa\u3055\u308c\u3001\u9694\u96e2\u3055\u308c\u307e\u3057\u305f\u3002\u81ea\u52d5\u3067\u306f\u4fee\u5fa9\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u554f\u984c\u3092\u4fee\u5fa9\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u5148:|\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9"},title:function(n){return"\u8b66\u544a"}},history:{malware:{events:{added_to_ignore:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f"},cleanup_done:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3057\u305f"},cleanup_pending:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u4e2d"},cleanup_removed:function(n){return"\u524a\u9664\u3057\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},cleanup_started:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u304c\u958b\u59cb\u3057\u307e\u3057\u305f"},deleted:function(n){return"\u5b8c\u5168\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f"},deleted_from_ignore:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3055\u308c\u307e\u3057\u305f"},failed_to_cleanup:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_delete:function(n){return"\u524a\u9664\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_delete_from_ignore:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u306e\u524a\u9664\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_ignore:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u3078\u306e\u8ffd\u52a0\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_quarantine:function(n){return"\u9694\u96e2\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_restore_from_backup:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u306e\u30ea\u30b9\u30c8\u30a2\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_restore_from_quarantine:function(n){return"\u9694\u96e2\u5148\u304b\u3089\u306e\u30ea\u30b9\u30c8\u30a2\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_restore_original:function(n){return"\u5143\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u30ea\u30b9\u30c8\u30a2\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},failed_to_store_original:function(n){return"\u5143\u30d5\u30a1\u30a4\u30eb\u306e\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},found:function(n){return"\u60aa\u610f\u304c\u3042\u308b\u3068\u691c\u51fa\u3055\u308c\u307e\u3057\u305f"},quarantined:function(n){return"\u9694\u96e2\u3055\u308c\u307e\u3057\u305f"},requires_myimunify_protection:function(n){return"\u611f\u67d3 (\u9ad8\u5ea6)"},restored_from_backup:function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u6b63\u5e38\u306b\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f"},restored_from_quarantine:function(n){return"\u9694\u96e2\u5148\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f"},restored_original:function(n){return"\u5143\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30b9\u30c8\u30a2\u3055\u308c\u307e\u3057\u305f"},submitted_for_analysis:function(n){return"\u5206\u6790\u306e\u305f\u3081\u306b\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f"},unable_to_cleanup:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093"},not_exist:function(n){return"\u3082\u3046\u5b58\u5728\u3057\u307e\u305b\u3093"}},headers:{cause:function(n){return"\u539f\u56e0"},date:function(n){return"\u65e5\u4ed8"},event:function(n){return"\u30a4\u30d9\u30f3\u30c8"},eventTooltip:function(n){return"\u30a4\u30d9\u30f3\u30c8\u3067\u691c\u7d22"},initiator:function(n){return"\u958b\u59cb\u8005"},initiatorTooltip:function(n){return"\u76f4\u63a5\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u5b9f\u884c\u3059\u308b\u304b\u3001[\u8a2d\u5b9a] \u3067\u81ea\u52d5\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3067\u30a4\u30d9\u30f3\u30c8\u3092\u767a\u751f\u3055\u305b\u305f\u30e6\u30fc\u30b6\u30fc\u3002"},owner:function(n){return"\u6240\u6709\u8005"},ownerTooltip:function(n){return"\u6240\u6709\u8005\u3067\u691c\u7d22"},path:function(n){return"\u30d1\u30b9"},pathTooltip:function(n){return"\u30d1\u30b9\u3067\u691c\u7d22"}},owner:function(n){return"\u6240\u6709\u8005"}},menu:{cleanupRequestHistory:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u8981\u6c42\u306e\u5c65\u6b74"},malwareHistory:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u5c65\u6b74"}},title:function(n){return"\u5c65\u6b74"}},malware:{menu:{dashboard:function(n){return"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9"},ignoreList:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8"}},title:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30b9\u30ad\u30e3\u30ca\u30fc"}},my_imunify_payment_success_modal:{details:function(n){return"\u652f\u6255\u3044\u304c\u6b63\u5e38\u306b\u627f\u8a8d\u3055\u308c\u307e\u3057\u305f\u3002\u307e\u3082\u306a\u304f\u4fdd\u8b77\u304c\u6709\u52b9\u306b\u306a\u308b\u306f\u305a\u3067\u3059\u3002"}}},utils:{addItemForm:{add:{Account:function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u8ffd\u52a0"},Country:function(n){return"\u56fd\u3092\u8ffd\u52a0"},IP:function(n){return"IP \u3092\u8ffd\u52a0"},Port:function(n){return"\u30dd\u30fc\u30c8\u3092\u8ffd\u52a0"},Rule:function(n){return"\u30eb\u30fc\u30eb\u3092\u8ffd\u52a0"}},addInline:{black:function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},drop:function(n){return"\u30c9\u30ed\u30c3\u30d7\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},white:function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"}},cancel:function(n){return"\u30ad\u30e3\u30f3\u30bb\u30eb"},headers:{Account:function(n){return"\u9694\u96e2\u5148\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u8ffd\u52a0"},Country:function(n){return"\u56fd"},IP:function(n){return"IP"},Port:function(n){return"\u30dd\u30fc\u30c8"},Rule:function(n){return"\u30eb\u30fc\u30eb"}},open:function(n){return"\u8ffd\u52a0"}},appState:{running:function(n){return"\u5b9f\u884c\u4e2d"},stopped:function(n){return"\u505c\u6b62\u4e2d"}},charts:{total:function(n){return"\u5408\u8a08"}},config:{successSaveMessage:function(n){return"\u8a2d\u5b9a\u304c\u6b63\u5e38\u306b\u4fdd\u5b58\u3055\u308c\u307e\u3057\u305f"}},copyOnClick:{click:function(n){return"\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u3001\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059"},copied:function(n){return"\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u6b63\u5e38\u306b\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3057\u305f\u3002"},manually:function(n){return"\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u3078\u306e\u30b3\u30d4\u30fc:\n\u9078\u629e\u3057\u3066 Cmd+C\u3001Enter"}},csf:{note:function(n){return"|csf \u3092\u4f7f\u7528\u3057\u3066|"+o(n.listName,{blocked_ports:"\u30d6\u30ed\u30c3\u30af\u5bfe\u8c61\u30dd\u30fc\u30c8\u306e",other:""})+"\u7ba1\u7406\u3092\u884c\u3063\u3066\u304f\u3060\u3055\u3044\u3002"},title:function(n){return o(n.listName,{blocked_ports:"\u30d6\u30ed\u30c3\u30af\u5bfe\u8c61\u30dd\u30fc\u30c8\u306e",other:""})+"\u7ba1\u7406\u306f\u7121\u52b9\u3067\u3059\u3002\u7406\u7531\u306f\u3001CSF \u7d71\u5408\u30e2\u30fc\u30c9\u3067\u3042\u308b\u305f\u3081\u3067\u3059\u3002"}},datepicker:{days:function(n){return"\u65e5"},hours:function(n){return"\u6642\u9593"},placeholder:function(n){return"TTL \u3092\u5165\u529b"}},experimentalLabel:function(n){return"\u5b9f\u9a13\u7684"},fileUploader:{attach:function(n){return"\u30d5\u30a1\u30a4\u30eb\u3092\u6dfb\u4ed8\u3059\u308b|\u304b\u3053\u3053\u306b\u30c9\u30e9\u30c3\u30b0\u3057\u3066\u304f\u3060\u3055\u3044"}},inlineDatepicker:{remove:function(n){return"\u524a\u9664"},save:function(n){return"\u4fdd\u5b58"}},modals:{confirm:{confirms:{"add-to-black":function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-black-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-drop":function(n){return"\u30c9\u30ed\u30c3\u30d7\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-drop-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-white":function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-white-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-white-list":function(n){return"\u306f\u3044\u3002\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3057\u307e\u3059"},cleanup:function(n){return"\u306f\u3044\u3002\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3057\u307e\u3059"},"cleanup-all":function(n){return"\u306f\u3044\u3002\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3057\u307e\u3059"},delete:function(n){return"\u306f\u3044\u3002\u524a\u9664\u3057\u307e\u3059"},"delete-accounts":function(n){return"\u306f\u3044\u3001\u5168\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6d88\u53bb\u3057\u307e\u3059"},"delete-emails":function(n){return"\u306f\u3044\u3002\u524a\u9664\u3057\u307e\u3059"},"delete-from-black":function(n){return"\u306f\u3044\u3002\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},"delete-from-gray":function(n){return"\u306f\u3044\u3002\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},"delete-from-white":function(n){return"\u306f\u3044\u3002\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},"delete-ip":function(n){return"\u306f\u3044\u3001\u524a\u9664\u3057\u307e\u3059"},"delete-country":function(n){return"\u306f\u3044\u3001\u524a\u9664\u3057\u307e\u3059"},"delete-selected":function(n){return"\u306f\u3044\u3001\u524a\u9664\u3057\u307e\u3059"},"delete-ip-from-list":function(n){return"\u306f\u3044\u3002IP \u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},"delete-ip-from-port":function(n){return"\u306f\u3044\u3002\u5b8c\u5168\u306b\u524a\u9664\u3057\u307e\u3059"},"delete-port":function(n){return"\u306f\u3044\u3002\u5b8c\u5168\u306b\u524a\u9664\u3057\u307e\u3059"},"disable-av":function(n){return"\u306f\u3044\u3002\u7121\u52b9\u5316\u3057\u307e\u3059"},"disable-av-default":function(n){return"\u306f\u3044\u3002\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u7121\u52b9\u5316\u3057\u307e\u3059"},"disable-proactive":function(n){return"\u306f\u3044\u3002\u4e8b\u524d\u9632\u5fa1\u3092\u7121\u52b9\u5316\u3057\u307e\u3059"},"disable-proactive-default":function(n){return"\u306f\u3044\u3002\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u4e8b\u524d\u9632\u5fa1\u3092\u7121\u52b9\u5316\u3057\u307e\u3059"},"disable-webshield":function(n){return"\u306f\u3044\u3002WebShield \u3092\u7121\u52b9\u5316\u3057\u307e\u3059"},"disable-webshield-default":function(n){return"\u306f\u3044\u3002\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066 WebShield \u3092\u7121\u52b9\u5316\u3057\u307e\u3059"},done:function(n){return"\u5b8c\u4e86"},"enable-av":function(n){return"\u306f\u3044\u3002\u6709\u52b9\u5316\u3057\u307e\u3059"},"enable-av-default":function(n){return"\u306f\u3044\u3002\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u6709\u52b9\u5316\u3057\u307e\u3059"},"enable-proactive":function(n){return"\u306f\u3044\u3002\u4e8b\u524d\u9632\u5fa1\u3092\u6709\u52b9\u5316\u3057\u307e\u3059"},"enable-proactive-default":function(n){return"\u306f\u3044\u3002\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u4e8b\u524d\u9632\u5fa1\u3092\u6709\u52b9\u5316\u3057\u307e\u3059"},"enable-webshield":function(n){return"\u306f\u3044\u3002WebShield \u3092\u6709\u52b9\u5316\u3057\u307e\u3059"},"enable-webshield-default":function(n){return"\u306f\u3044\u3002\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066 WebShield \u3092\u6709\u52b9\u5316\u3057\u307e\u3059"},"grant-full-access":function(n){return"\u306f\u3044\u3002\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u4ed8\u4e0e\u3057\u307e\u3059"},"move-to-ignore":function(n){return"\u306f\u3044\u3002\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3057\u307e\u3059"},"new-features-management":function(n){return"\u540c\u610f\u3057\u3066\u5207\u308a\u66ff\u3048\u308b"},"proactive-remove-from-ignore":function(n){return"\u306f\u3044\u3002\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},"quarantine-malicious":function(n){return"\u306f\u3044\u3002\u9694\u96e2\u5148\u306b\u8ffd\u52a0\u3057\u307e\u3059"},recheck:function(n){return"\u306f\u3044\u3002\u524a\u9664\u3057\u3066\u518d\u691c\u67fb\u3057\u307e\u3059"},"release-and-send":function(n){return"\u306f\u3044\u3002\u9694\u96e2\u5148\u304b\u3089\u89e3\u653e\u3057\u307e\u3059"},"remove-full-access":function(n){return"\u306f\u3044\u3002\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059"},"remove-white-list":function(n){return"\u306f\u3044\u3002\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059"},"restore-from-backup":function(n){return"\u306f\u3044\u3002\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3059"},"restore-from-quarantine":function(n){return"\u306f\u3044\u3002\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3059"},"restore-original":function(n){return"\u306f\u3044\u3002\u30ea\u30b9\u30c8\u30a2\u3057\u307e\u3059"},save:function(n){return"\u4fdd\u5b58"},"scan-all":function(n){return"\u306f\u3044\u3002\u3059\u3079\u3066\u30b9\u30ad\u30e3\u30f3\u3057\u307e\u3059"},"scan-start":function(n){return"\u306f\u3044\u3001\u30b9\u30ad\u30e3\u30f3\u3092\u958b\u59cb\u3057\u307e\u3059"},"scan-stop":function(n){return"\u306f\u3044\u3001\u30b9\u30ad\u30e3\u30f3\u3092\u505c\u6b62\u3057\u307e\u3059"},"scope-to-group":function(n){return"\u306f\u3044\u3001\u30b9\u30b3\u30fc\u30d7\u3092\u30b0\u30eb\u30fc\u30d7\u306b\u5909\u66f4\u3057\u307e\u3059"},"scope-to-local":function(n){return"\u306f\u3044\u3001\u30b9\u30b3\u30fc\u30d7\u3092\u30ed\u30fc\u30ab\u30eb\u306b\u5909\u66f4\u3057\u307e\u3059"},"to-black":function(n){return"\u306f\u3044\u3002\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5\u3057\u307e\u3059"},"to-black-group-scope":function(n){return"\u306f\u3044\u3001\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5\u3057\u307e\u3059"},"to-drop-group-scope":function(n){return"\u306f\u3044\u3001\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5\u3057\u307e\u3059"},"to-white":function(n){return"\u306f\u3044\u3002\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5\u3057\u307e\u3059"},"to-white-group-scope":function(n){return"\u306f\u3044\u3001\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5\u3057\u307e\u3059"},"reset-accounts":function(n){return"\u306f\u3044\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u306b\u30ea\u30bb\u30c3\u30c8"},"false-positive":function(n){return"\u306f\u3044\u3001\u8aa4\u691c\u77e5\u3092\u9001\u4fe1"},"switch-back-to-imunify-feature-management":function(n){return"\u78ba\u8a8d"},"switch-to-plesk-service-plans":function(n){return"\u78ba\u8a8d"},"apply-patch":function(n){return"\u306f\u3044\u3001\u30d1\u30c3\u30c1\u3092\u9069\u7528"},"revert-patch":function(n){return"\u306f\u3044\u3001\u30d1\u30c3\u30c1\u3092\u5143\u306b\u623b\u3059"}},descriptions:{"add-white-list":function(n){return n.name+" \u3092\n\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f"},"delete-accounts":function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u5b8c\u5168\u306b\u524a\u9664\u3057\u307e\u3059\u304b\uff1f"},"delete-emails":function(n){return"\u30e1\u30fc\u30eb\u3092\u5b8c\u5168\u306b\u524a\u9664\u3057\u307e\u3059\u304b\uff1f"},"release-and-send":function(n){return"\u9694\u96e2\u30e1\u30fc\u30eb\u304b\u3089\u89e3\u653e\u3057\u307e\u3059\u304b\uff1f\n\u6b21\u306e\u53d7\u4fe1\u8005\u306b\u30e1\u30fc\u30eb\u304c\u914d\u4fe1\u3055\u308c\u307e\u3059:"},"remove-white-list":function(n){return n.name+" \u3092\n\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u307e\u3059\u304b\uff1f"},"scan-all":function(n){return"\u30d5\u30a1\u30a4\u30eb\u6570\u306b\u3088\u3063\u3066\u306f\u6642\u9593\u304c\u304b\u304b\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\u6700\u5927\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a2d\u5b9a\n\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u3001\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u6700\u5927\u5316\u3067\u304d\u307e\u3059\u3002"},"reset-accounts":function(n){return n.name+" \u306e\u8a2d\u5b9a\u3092\u30c7\u30d5\u30a9\u30eb\u30c8\u306b\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059\u304b\uff1f"},"switch-to-plesk-service-plans":function(n){return"\u5207\u308a\u66ff\u3048\u308b\u3068\u3001\u30b9\u30ad\u30e3\u30f3\u3068\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u306e\u30a8\u30f3\u30c9\u30e6\u30fc\u30b6\u30fc\u30a2\u30af\u30bb\u30b9\u6a29\u9650\u306f\u3001Plesk \u30b5\u30fc\u30d3\u30b9\u30d7\u30e9\u30f3\u306e\u30a2\u30af\u30bb\u30b9\u8a31\u53ef\u3067\u5236\u5fa1\u3055\u308c\u307e\u3059\u3002"}},titles:{"add-to-black":function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-black-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-drop":function(n){return"\u30c9\u30ed\u30c3\u30d7\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-drop-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-white":function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-to-white-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"add-white-list":function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u3078\u306e\u8ffd\u52a0\u3092\u78ba\u8a8d"},cleanup:function(n){return"\u60aa\u610f\u306e\u3042\u308b\u30b3\u30fc\u30c9\u304b\u3089\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},"cleanup-all":function(n){return"\u60aa\u610f\u306e\u3042\u308b\u30b3\u30fc\u30c9\u304b\u3089\u3059\u3079\u3066\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},cleanup_2:function(n){return"\u60aa\u610f\u306e\u3042\u308b\u30b3\u30fc\u30c9\u304b\u3089\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},delete:function(n){return"\u5b8c\u5168\u306b\u524a\u9664"},"delete-accounts":function(n){return"\u5168\u30e1\u30c3\u30bb\u30fc\u30b8\u6d88\u53bb\u306e\u78ba\u8a8d"},"delete-emails":function(n){return"\u5b8c\u5168\u524a\u9664\u306e\u78ba\u8a8d"},"delete-from-black":function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},"delete-from-gray":function(n){return"\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},"delete-from-white":function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},"delete-ip":function(n){return"IP\u3092\u524a\u9664"},"delete-country":function(n){return"\u56fd\u3092\u524a\u9664"},"delete-selected":function(n){return"\u9078\u629e\u9805\u76ee\u3092\u524a\u9664"},"delete-ip-from-list":function(n){return"IP \u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},"delete-ip-from-port":function(n){return"\u5b8c\u5168\u306b\u524a\u9664"},"delete-port":function(n){return"\u5b8c\u5168\u306b\u524a\u9664"},"disable-av":function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u7121\u52b9\u5316"},"disable-av-default":function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u7121\u52b9\u5316"},"disable-proactive":function(n){return"\u4e8b\u524d\u9632\u5fa1\u3092\u7121\u52b9\u5316"},"disable-proactive-default":function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u4e8b\u524d\u9632\u5fa1\u3092\u7121\u52b9\u5316"},"disable-webshield":function(n){return"WebShield \u3092\u7121\u52b9\u5316"},"disable-webshield-default":function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066 WebShield \u3092\u7121\u52b9\u5316"},"enable-av":function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u6709\u52b9\u5316"},"enable-av-default":function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3092\u6709\u52b9\u5316"},"enable-proactive":function(n){return"\u4e8b\u524d\u9632\u5fa1\u3092\u6709\u52b9\u5316"},"enable-proactive-default":function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u4e8b\u524d\u9632\u5fa1\u3092\u6709\u52b9\u5316"},"enable-webshield":function(n){return"WebShield \u3092\u6709\u52b9\u5316"},"enable-webshield-default":function(n){return"\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066 WebShield \u3092\u6709\u52b9\u5316"},"grant-full-access":function(n){return"\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u4ed8\u4e0e"},"move-to-ignore":function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u306b\u8ffd\u52a0"},"new-features-management":function(n){return"\u65b0\u3057\u3044\u6a5f\u80fd\u7ba1\u7406"},"proactive-remove-from-ignore":function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664"},"quarantine-malicious":function(n){return"\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u9694\u96e2\u5148\u306b\u79fb\u52d5\u3057\u307e\u3059\u3002\u3053\u306e\u30a2\u30af\u30b7\u30e7\u30f3\u306b\u3088\u308a\u3001\u30b5\u30a4\u30c8\u307e\u305f\u306f\u30b5\u30fc\u30d0\u30fc\u3067\u969c\u5bb3\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u5b9f\u884c\u3057\u307e\u3059\u304b?"},recheck:function(n){return"\u7121\u8996\u30ea\u30b9\u30c8\u304b\u3089\u524a\u9664\u3057\u3066\u518d\u691c\u67fb"},"release-and-send":function(n){return"\u9694\u96e2\u5148\u304b\u3089\u306e\u89e3\u653e\u78ba\u8a8d"},"remove-full-access":function(n){return"\u30d5\u30eb \u30a2\u30af\u30bb\u30b9\u6a29\u3092\u53d6\u308a\u6d88\u3059"},"remove-white-list":function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u304b\u3089\u306e\u524a\u9664\u3092\u78ba\u8a8d"},"restore-from-backup":function(n){return"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u30ea\u30b9\u30c8\u30a2"},"restore-from-quarantine":function(n){return"\u9694\u96e2\u5148\u304b\u3089\u30ea\u30b9\u30c8\u30a2"},"restore-original":function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u524d\u306b\u4f5c\u6210\u3055\u308c\u305f\u30b3\u30d4\u30fc\u3092\u30ea\u30b9\u30c8\u30a2 (\u611f\u67d3\u3057\u3066\u3044\u308b\u53ef\u80fd\u6027\u3042\u308a)"},"scan-all":function(n){return"\u5168\u30e6\u30fc\u30b6\u30fc\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30b9\u30ad\u30e3\u30f3"},"scan-start":function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u306e\u958b\u59cb"},"scan-stop":function(n){return"\u30e6\u30fc\u30b6\u30fc\u30b9\u30ad\u30e3\u30f3\u306e\u505c\u6b62"},"scope-to-group":function(n){return"\u30b9\u30b3\u30fc\u30d7\u3092\u30b0\u30eb\u30fc\u30d7\u306b\u5909\u66f4"},"scope-to-local":function(n){return"\u30b9\u30b3\u30fc\u30d7\u3092\u30ed\u30fc\u30ab\u30eb\u306b\u5909\u66f4"},"to-black":function(n){return"\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},"to-black-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},"to-drop-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},"to-white":function(n){return"\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},"to-white-group-scope":function(n){return"\u30b0\u30eb\u30fc\u30d7\u30b9\u30b3\u30fc\u30d7\u306e\u30db\u30ef\u30a4\u30c8\u30ea\u30b9\u30c8\u306b\u79fb\u52d5"},"false-positive":function(n){return"\u8aa4\u691c\u77e5\u3092\u9001\u4fe1"},"reset-accounts":function(n){return"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f"},"switch-to-plesk-service-plans":function(n){return"Plesk \u30b5\u30fc\u30d3\u30b9\u30d7\u30e9\u30f3\u3092\u6a5f\u80fd\u7ba1\u7406\u306b\u4f7f\u7528\u3057\u307e\u3059\u304b\uff1f"},"switch-back-to-imunify-feature-management":function(n){return"Imunify \u6a5f\u80fd\u7ba1\u7406\u306b\u5207\u308a\u66ff\u3048\u3092\u78ba\u8a8d"},"apply-patch":function(n){return"\u30d1\u30c3\u30c1\u306e\u9069\u7528\u3092\u78ba\u8a8d"},"revert-patch":function(n){return"\u30d1\u30c3\u30c1\u306e\u5143\u306b\u623b\u3057\u3092\u78ba\u8a8d"}}},content:{cancel:function(n){return"\u30ad\u30e3\u30f3\u30bb\u30eb"},confirm:function(n){return"\u78ba\u8a8d"},skip:function(n){return"\u30b9\u30ad\u30c3\u30d7"}},fileViewer:{shownFirst:function(n){return"\u30d5\u30a1\u30a4\u30eb\u306e\u5148\u982d\u304b\u3089 "+n.size+"KB \u3092\u8868\u793a\u3057\u307e\u3059\u3002"},title:function(n){return"\u8868\u793a: "+n.path}},myImunifyUpsell:{autoCleanup:{item_1:function(n){return"\u30b5\u30a4\u30c8\u4e0a\u3067\u6700\u8fd1\u691c\u51fa\u3055\u308c\u305f\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u5373\u5ea7\u306b\u81ea\u52d5\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},item_2:function(n){return"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u306e\u30de\u30eb\u30a6\u30a7\u30a2\u691c\u51fa\u3068\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7"},item_3:function(n){return"\u30bc\u30ed\u30c7\u30a4\u8105\u5a01\u306e\u81ea\u52d5\u30d6\u30ed\u30c3\u30af"},item_4:function(n){return"\u624b\u52d5\u4ecb\u5165\u306f\u4e0d\u8981"},item_5:function(n){return"\u9032\u5316\u3059\u308b\u8105\u5a01\u306b\u5bfe\u3059\u308b\u4e8b\u524d\u9632\u5fa1"},title:function(n){return"\u81ea\u52d5\u30de\u30eb\u30a6\u30a7\u30a2\u524a\u9664\u3068\u7d99\u7d9a\u7684\u306a\u4fdd\u8b77"}},benefits:{item_1:function(n){return"\u6642\u9593\u3068\u8cc7\u91d1\u306e\u7bc0\u7d04"},item_10:function(n){return"\u5168\u822c\u7684\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u5f37\u5316"},item_2:function(n){return"\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u55aa\u5931\u306e\u9632\u6b62"},item_3:function(n){return"\u8a55\u5224\u306e\u4fdd\u8b77"},item_4:function(n){return"\u30e6\u30fc\u30b6\u30fc\u30c7\u30fc\u30bf\u306e\u4fdd\u8b77"},item_5:function(n){return"SEO\u9806\u4f4d\u306e\u7dad\u6301"},item_6:function(n){return"\u4e2d\u65ad\u306e\u306a\u3044\u30b5\u30fc\u30d3\u30b9\u3092\u78ba\u5b9f\u306b\u5b9f\u73fe"},item_7:function(n){return"\u6cd5\u7684\u554f\u984c\u306e\u9632\u6b62"},item_8:function(n){return"\u30e6\u30fc\u30b6\u30fc\u306e\u4fe1\u983c\u69cb\u7bc9"},item_9:function(n){return"\u91d1\u92ad\u7684\u640d\u5931\u306e\u9632\u6b62"},title:function(n){return"\u30e1\u30ea\u30c3\u30c8"}},buyNow:function(n){return"\u4eca\u3059\u3050\u8cfc\u5165"},current:function(n){return"\u73fe\u5728"},manualCleanup:{item_1:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u3068\u611f\u67d3\u306e\u691c\u51fa"},item_2:function(n){return"\u30bc\u30ed\u30c7\u30a4\u653b\u6483\u306e\u691c\u51fa"},item_3:function(n){return"\u624b\u52d5\u30de\u30eb\u30a6\u30a7\u30a2 \u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u304c\u5fc5\u8981\u3067\u3059"},item_4:function(n){return"\u30bc\u30ed\u30c7\u30a4\u8106\u5f31\u6027\u304c\u30d6\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},title:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u624b\u52d5\u3067\u524a\u9664\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"}},modalTitle:function(n){return"\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3059\u308b\u306b\u306f\uff1f"},protectionDisabledLabel:function(n){return"\u4fdd\u8b77\u304c\u7121\u52b9"},protectionEnabledLabel:function(n){return"\u4fdd\u8b77\u304c\u6709\u52b9"},risks:{item_1:function(n){return"\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u6a2a\u53d6\u308a"},item_2:function(n){return"\u8a55\u5224\u306e\u60aa\u5316"},item_3:function(n){return"\u30c7\u30fc\u30bf\u306e\u76d7\u96e3"},item_4:function(n){return"SEO\u306e\u30da\u30ca\u30eb\u30c6\u30a3"},item_5:function(n){return"\u30b5\u30fc\u30d3\u30b9\u306e\u4e2d\u65ad"},item_6:function(n){return"\u6cd5\u7684\u554f\u984c"},item_7:function(n){return"\u30e6\u30fc\u30b6\u30fc\u306e\u4fe1\u983c\u55aa\u5931"},item_8:function(n){return"\u91d1\u92ad\u7684\u640d\u5931"},item_9:function(n){return"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4fb5\u5bb3"},title:function(n){return"\u30de\u30eb\u30a6\u30a7\u30a2\u3092\u624b\u52d5\u3067\u524a\u9664\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"}}}},refresher:{autoRefresh:function(n){return"\u81ea\u52d5\u66f4\u65b0"},view:function(n){return"\u8868\u793a"}},table:{columnContent:{actions:function(n){return"\u30a2\u30af\u30b7\u30e7\u30f3"}},noResultFound:function(n){return"\u7d50\u679c\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},noResultInLocal:function(n){return"\u30ed\u30fc\u30ab\u30eb IP \u30ea\u30b9\u30c8\u3067\u306f\u4f55\u3082\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u304c\u3001\u30af\u30e9\u30a6\u30c9\u306b\u306f\u4e00\u81f4\u3059\u308b\u3082\u306e\u304c\u3042\u308a\u307e\u3059\u3002\u4e0a\u8a18\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044"},selectAllCheckbox:function(n){return"\u3059\u3079\u3066\u9078\u629e"},selectedItems:function(n){return u(n.count,0,e,{other:"\u9078\u629e: "+i(n.count,"count")+" \u9805\u76ee"})},widgets:{content:{countrySearch:{placeholder:function(n){return"\u56fd\u3092\u5165\u529b"},title:function(n){return"\u56fd"}},ipSearch:{placeholder:function(n){return"IP \u3092\u5165\u529b"},title:function(n){return"IP"}},list:{title:function(n){return"\u30ea\u30b9\u30c8"},values:{black:function(n){return"\u30d6\u30e9\u30c3\u30af"},captcha:function(n){return"\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8"},drop:function(n){return"\u30c9\u30ed\u30c3\u30d7"},gray:function(n){return"\u30b0\u30ec\u30fc"},splashscreen:function(n){return"\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u30b9\u30af\u30ea\u30fc\u30f3"},white:function(n){return"\u30db\u30ef\u30a4\u30c8"}}},maliciousStatus:{title:function(n){return"\u72b6\u614b"}},purpose:{title:function(n){return"\u76ee\u7684"},values:{captcha:function(n){return"\u30b0\u30ec\u30fc\u30ea\u30b9\u30c8"},drop:function(n){return"\u30c9\u30ed\u30c3\u30d7"},splashscreen:function(n){return"\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u30b9\u30af\u30ea\u30fc\u30f3"},white:function(n){return"\u30db\u30ef\u30a4\u30c8"}}},search:{placeholder:function(n){return"\u691c\u7d22"},title:function(n){return"\u691c\u7d22"}},switcher:{title:function(n){return"\u30b9\u30a4\u30c3\u30c1\u30e3\u30fc"}},timeframe:{title:function(n){return"\u6642\u9593\u30d5\u30ec\u30fc\u30e0"},values:{"10m":function(n){return"\u76f4\u8fd1 10 \u5206\u9593"},"1h":function(n){return"\u76f4\u8fd1 1 \u6642\u9593"},"24h":function(n){return"\u76f4\u8fd1 24 \u6642\u9593"},"30d":function(n){return"\u76f4\u8fd1 30 \u65e5\u9593"},"30m":function(n){return"\u76f4\u8fd1 30 \u5206\u9593"},"4h":function(n){return"\u76f4\u8fd1 4 \u6642\u9593"},"7d":function(n){return"\u76f4\u8fd1 7 \u65e5\u9593"},today:function(n){return"\u4eca\u65e5"},yesterday:function(n){return"\u6628\u65e5"}}},type:{title:function(n){return"\u7a2e\u985e"},values:{all:function(n){return"\u5168\u9805\u76ee"},country:function(n){return"\u56fd\u306e\u307f"},ip:function(n){return"IP\u306e\u307f"}}},fields:{title:function(n){return"\u30d5\u30a3\u30fc\u30eb\u30c9"}}},limit:{limitPageSize:function(n){return"1 \u30da\u30fc\u30b8\u306e\u9805\u76ee\u6570:"}}}}},validators:{absolutePath:function(n){return"\u7d76\u5bfe\u30d1\u30b9\u306b\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"},country:function(n){return"\u5b58\u5728\u3059\u308b\u56fd\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},domains:function(n){return"\u30c9\u30e1\u30a4\u30f3 \u30ea\u30b9\u30c8\u304c\u7121\u52b9\u3067\u3059\u3002"},email:function(n){return"E \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9\u304c\u7121\u52b9\u3067\u3059\u3002"},emails:function(n){return"\u6709\u52b9\u306aE \u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044"},fileSize:function(n){return u(n.count,0,e,{other:"\u30d5\u30a1\u30a4\u30eb"})+" "+n.files+" \u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3002\u30b5\u30a4\u30ba\u304c "+n.maxSize+"MB \u3092\u8d85\u3048\u3066\u3044\u307e\u3059"},integer:function(n){return"\u6574\u6570\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},ipWithCIDR:function(n){return"\u6709\u52b9\u306a\u30a2\u30c9\u30ec\u30b9 \u30cd\u30c3\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},listOfIP:function(n){return"IP \u30a2\u30c9\u30ec\u30b9\u306e\u6709\u52b9\u306a\u30ea\u30b9\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},listOfIntegers:function(n){return"\u30ea\u30b9\u30c8\u5185\u306b\u7121\u52b9\u306a\u5024\u304c\u3042\u308a\u307e\u3059: "+n.invalid},listOfServerId:function(n){return"\u30ea\u30b9\u30c8\u5185\u306b\u7121\u52b9\u306a\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u304c\u3042\u308a\u307e\u3059\uff1a "+n.ids},matDatepickerParse:function(n){return"\u65e5\u4ed8\u304c\u7121\u52b9\u3067\u3059"},matEndDateInvalid:function(n){return"\u7d42\u4e86\u65e5\u304c\u7121\u52b9\u3067\u3059"},matStartDateInvalid:function(n){return"\u65e5\u4ed8\u304c\u7121\u52b9\u3067\u3059"},max:function(n){return n.max+" \u4ee5\u4e0b\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},maxFiles:function(n){return"\u30d5\u30a1\u30a4\u30eb\u306e\u6700\u5927\u6570: "+n.size},maxlength:function(n){return"\u9577\u3055\u306f "+n.requiredLength+" \u4ee5\u4e0b\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},min:function(n){return n.min+" \u4ee5\u4e0a\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},minlength:function(n){return"\u9577\u3055\u306f "+n.requiredLength+" \u4ee5\u4e0a\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},partOfIP:function(n){return"IP \u30a2\u30c9\u30ec\u30b9\u306e\u6709\u52b9\u306a\u69cb\u6210\u8981\u7d20\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},pathToFile:function(n){return"\u30d1\u30b9\u304c\u7121\u52b9\u3067\u3059\u3002"},required:function(n){return o(n.what,{backup_system:"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 \u30b7\u30b9\u30c6\u30e0",country:"\u56fd",default_action:"\u30c7\u30d5\u30a9\u30eb\u30c8 \u30a2\u30af\u30b7\u30e7\u30f3",description:"\u8aac\u660e",destination:"\u5b9b\u5148",email:"E \u30e1\u30fc\u30eb",integer:"\u6574\u6570",ip:"IP ",key:"\u30ad\u30fc",password:"\u30d1\u30b9\u30ef\u30fc\u30c9",path:"\u30d1\u30b9",plugin:"\u30d7\u30e9\u30b0\u30a4\u30f3",port:"\u30dd\u30fc\u30c8",protocol:"\u30d7\u30ed\u30c8\u30b3\u30eb",rule_id:"\u30eb\u30fc\u30eb ID ",subject:"\u4ef6\u540d",username:"\u30e6\u30fc\u30b6\u30fc\u540d",other:""})+"\u304c\u5fc5\u8981\u3067\u3059\u3002"},serverId:function(n){return"\u6709\u52b9\u306a\u30b5\u30fc\u30d0\u30fc\u30ad\u30fc\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}},warning:{csf_dos_protector:function(n){return"CSF \u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001DoS \u4fdd\u8b77\u304c\u7121\u52b9\u5316\u3055\u308c\u307e\u3057\u305f\u3002"},mod_sec_app_specific_ruleset_apache_v24:function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u3001Apache \u30d0\u30fc\u30b8\u30e7\u30f3 2.4 \u3092\u5b9f\u884c\u3057\u3066\u3044\u308b\u30b5\u30fc\u30d0\u30fc\u3067\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002"},pam_ftp_not_available:function(n){return"\u3053\u306e\u6a5f\u80fd\u306f\u3001FTP \u30b5\u30fc\u30d0\u30fc\u306e\u73fe\u5728\u306e\u69cb\u6210\u3067\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002"},php_immunity_enabled:function(n){return"PHP Immunity \u3092\u5f37\u5236\u7684\u306b\u30aa\u30f3\u306b\u3057\u307e\u3057\u305f\u3002\u69cb\u6210\u53ef\u80fd\u306b\u3059\u308b\u306b\u306f\u3001\u5148\u306b PHP Immunity \u3092\u30aa\u30d5\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},scan_hyperscan_el6:function(n){return"CentOS6 \u3067\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},scan_hyperscan_no_ssse3:function(n){return"SSSE3 CPU \u547d\u4ee4\u30bb\u30c3\u30c8\u304c\u5fc5\u8981\u3067\u3059\u3002QEMU/KVM \u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306f\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u307e\u305f\u306f\u5927\u5e45\u306b\u53e4\u3044 CPU \u30e2\u30c7\u30eb\u3092\u4f7f\u7528\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002"},scan_inotify_control_panel:function(n){return"\u6709\u52b9\u306a\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u30d1\u30cd\u30eb\u304c\u691c\u51fa\u3055\u308c\u306a\u304b\u3063\u305f\u305f\u3081\u3001inotify \u306b\u3088\u308b\u30b9\u30ad\u30e3\u30f3\u304c\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002"},scan_inotify_cxswatch_daemon:function(n){return"\u5b9f\u884c\u4e2d\u306e cxswatch \u30c7\u30fc\u30e2\u30f3\u304c\u691c\u51fa\u3055\u308c\u305f\u305f\u3081\u3001inotify \u306b\u3088\u308b\u30b9\u30ad\u30e3\u30f3\u304c\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002"},scan_intensity_io_cfq:function(n){return"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u3001CFQ IO \u30b9\u30b1\u30b8\u30e5\u30fc\u30e9\u30fc\u3067\u306e\u307f\u6709\u52b9\u3067\u3059\u3002"},scan_modsec:function(n){return"mod_security \u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001Web \u3092\u4f7f\u7528\u3057\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30f3\u304c\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002"},scan_pure_ftpd:function(n){return"\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306e pure-uploadscript \u30d7\u30ed\u30bb\u30b9\u304c\u691c\u51fa\u3055\u308c\u305f\u305f\u3081\u3001pure-ftpd \u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30b9\u30ad\u30e3\u30f3\u304c\u7121\u52b9\u5316\u3055\u308c\u3066\u3044\u307e\u3059\u3002"},set_by_admin:function(n){return"\u3053\u306e\u5024\u306f\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u8005\u304c\u8a2d\u5b9a\u3057\u307e\u3059"},smtp_blocking_CSF_block:function(n){return"Imunify360 \u306e SMTP \u30d6\u30ed\u30c3\u30ad\u30f3\u30b0\u6a5f\u80fd\u304c CSF \u306e SMTP \u30d6\u30ed\u30c3\u30af\u3068\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002"},smtp_blocking_enable:function(n){return"\u30cd\u30a4\u30c6\u30a3\u30d6\u306a SMTP \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u7ba1\u7406\u3067\u3042\u308b\u300cWHM >> SMTP Restrictions\u300d\u3068\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002"},smtp_blocking_ip6table_nat:function(n){return"ip6table_nat \u30ab\u30fc\u30cd\u30eb\u30e2\u30b8\u30e5\u30fc\u30eb\u304c\u8aad\u307f\u8fbc\u307e\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f IPv4 \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306b\u306e\u307f\u5f71\u97ff\u3057\u3001IPv6 \u306b\u306f\u5f71\u97ff\u3057\u307e\u305b\u3093\u3002"},smtp_blocking_kernel_support:function(n){return"\u30ab\u30fc\u30cd\u30eb\u304c SMTP \u30d6\u30ed\u30c3\u30ad\u30f3\u30b0\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093\u3002"},"stand-alone":{"error-description":function(n){return"Imunify \u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u3057\u304f\u69cb\u6210\u3055\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002|\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8|\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},socketError:function(n){return"\u30bd\u30b1\u30c3\u30c8\u30d5\u30a1\u30a4\u30eb\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u305b\u3093\u3002\u30a2\u30af\u30bb\u30b9\u6a29\u304c\u306a\u3044\u3068\u601d\u308f\u308c\u307e\u3059"},title:function(n){return"\u5185\u90e8\u30a8\u30e9\u30fc"}},webshield_ssl_cache_not_configured:function(n){return"WebShield SSL \u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}},widgets:{scanId:function(n){return"\u30b9\u30ad\u30e3\u30f3 ID"},user:function(n){return"\u30e6\u30fc\u30b6\u30fc"}},table:{dynamicColumns:function(n){return"\u5217\u306e\u69cb\u6210"},confirmDialog:function(n){return"\u4fdd\u5b58"},importantFields:function(n){return"\u3053\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306f\u91cd\u8981\u3067\u975e\u8868\u793a\u306b\u3067\u304d\u307e\u305b\u3093\u3002"},dialogTitle:function(n){return"\u5217\u306e\u69cb\u6210"}},imunifyPatch:{banner:{off:function(n){return"\u30aa\u30d5"},patchAll:function(n){return"\u3059\u3079\u3066\u306e\u30d1\u30c3\u30c1"},description:function(n){return"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u4fdd\u8b77 - CMS\u30a2\u30d7\u30ea\u3084\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8106\u5f31\u6027\u3092\u81ea\u52d5\u4fee\u6b63\uff01\u4eca\u3059\u3050Imunify Patch\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97"}},actions:{applyPatch:function(n){return"\u30d1\u30c3\u30c1\u3092\u9069\u7528"},revertPatch:function(n){return"\u30d1\u30c3\u30c1\u3092\u5143\u306b\u623b\u3059"}},list:{appName:function(n){return"\u30a2\u30d7\u30ea\u540d"},userName:function(n){return"\u30e6\u30fc\u30b6\u30fc\u540d"},filePath:function(n){return"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9"},vulnerableFiles:function(n){return"\u8106\u5f31\u306a\u30d5\u30a1\u30a4\u30eb"},status:function(n){return"\u30b9\u30c6\u30fc\u30bf\u30b9"},itemStatus:{patched:function(n){return"\u30d1\u30c3\u30c1\u6e08\u307f"},vulnerable:function(n){return"\u8106\u5f31\u6027\u3042\u308a"},patch_in_progress:function(n){return"\u30d1\u30c3\u30c1\u304c\u9032\u884c\u4e2d"},revert_in_progress:function(n){return"\u5143\u306b\u623b\u3059\u4f5c\u696d\u4e2d"},vulnerable_patch_reverted:function(n){return"\u8106\u5f31\u6027\u306e\u30d1\u30c3\u30c1\u304c\u5143\u306b\u623b\u3055\u308c\u307e\u3057\u305f"}},expanderColumn:{cve_id:function(n){return"CVE ID"},type:function(n){return"\u30bf\u30a4\u30d7"},description:function(n){return"\u8aac\u660e"}},subscribed:function(n){return"\u8cfc\u8aad\u6e08\u307f"},subscribed_to_patch:function(n){return"Imunify Patch\u306b\u8cfc\u8aad\u4e2d"},not_subscribed:function(n){return"Imunify Patch\u306b\u672a\u8cfc\u8aad"}},tabs:{users:function(n){return"\u30e6\u30fc\u30b6\u30fc"},files:function(n){return"\u30d5\u30a1\u30a4\u30eb"}}}}},10988:function(n,t,r){n.exports=function(n){"use strict";function t(n){return n&&"object"==typeof n&&"default"in n?n:{default:n}}var r=t(n),e={name:"ja",weekdays:"\u65e5\u66dc\u65e5_\u6708\u66dc\u65e5_\u706b\u66dc\u65e5_\u6c34\u66dc\u65e5_\u6728\u66dc\u65e5_\u91d1\u66dc\u65e5_\u571f\u66dc\u65e5".split("_"),weekdaysShort:"\u65e5_\u6708_\u706b_\u6c34_\u6728_\u91d1_\u571f".split("_"),weekdaysMin:"\u65e5_\u6708_\u706b_\u6c34_\u6728_\u91d1_\u571f".split("_"),months:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),monthsShort:"1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"),ordinal:function(n){return n+"\u65e5"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY\u5e74M\u6708D\u65e5",LLL:"YYYY\u5e74M\u6708D\u65e5 HH:mm",LLLL:"YYYY\u5e74M\u6708D\u65e5 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY\u5e74M\u6708D\u65e5",lll:"YYYY\u5e74M\u6708D\u65e5 HH:mm",llll:"YYYY\u5e74M\u6708D\u65e5(ddd) HH:mm"},meridiem:function(n){return n<12?"\u5348\u524d":"\u5348\u5f8c"},relativeTime:{future:"%s\u5f8c",past:"%s\u524d",s:"\u6570\u79d2",m:"1\u5206",mm:"%d\u5206",h:"1\u6642\u9593",hh:"%d\u6642\u9593",d:"1\u65e5",dd:"%d\u65e5",M:"1\u30f6\u6708",MM:"%d\u30f6\u6708",y:"1\u5e74",yy:"%d\u5e74"}};return r.default.locale(e,null,!0),e}(r(16901))}}]); //# sourceMappingURL=src_i18n_ja_i18n_txt.4168a27f286251a1.js.map/** * Admin functions - Functions that add some functionality to WordPress admin panel * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Register menus */ if ( ! function_exists( 'astra_register_menu_locations' ) ) { /** * Register menus * * @since 1.0.0 */ function astra_register_menu_locations() { /** * Primary Menus */ register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'astra' ), ) ); if ( true === Astra_Builder_Helper::$is_header_footer_builder_active ) { /** * Register the Secondary & Mobile menus. */ register_nav_menus( array( 'secondary_menu' => esc_html__( 'Secondary Menu', 'astra' ), 'mobile_menu' => esc_html__( 'Off-Canvas Menu', 'astra' ), ) ); $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_menu; for ( $index = 3; $index <= $component_limit; $index++ ) { if ( ! is_customize_preview() && ! Astra_Builder_Helper::is_component_loaded( 'menu-' . $index ) ) { continue; } register_nav_menus( array( 'menu_' . $index => esc_html__( 'Menu ', 'astra' ) . $index, ) ); } /** * Register the Account menus. */ register_nav_menus( array( 'loggedin_account_menu' => esc_html__( 'Logged In Account Menu', 'astra' ), ) ); } /** * Footer Menus */ register_nav_menus( array( 'footer_menu' => esc_html__( 'Footer Menu', 'astra' ), ) ); } } add_action( 'init', 'astra_register_menu_locations' ); /** * Schema markup. * * @package Astra * @link https://wpastra.com/ * @since Astra 2.1.3 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Astra CreativeWork Schema Markup. * * @since 2.1.3 */ class Astra_WPHeader_Schema extends Astra_Schema { /** * Setup schema * * @since 2.1.3 */ public function setup_schema() { if ( true !== $this->schema_enabled() ) { return false; } add_filter( 'astra_attr_header', array( $this, 'wpheader_Schema' ) ); } /** * Update Schema markup attribute. * * @param array $attr An array of attributes. * * @return array Updated embed markup. */ public function wpheader_Schema( $attr ) { $attr['itemtype'] = 'https://schema.org/WPHeader'; $attr['itemscope'] = 'itemscope'; $attr['itemid'] = '#masthead'; return $attr; } /** * Enabled schema * * @since 2.1.3 */ protected function schema_enabled() { return apply_filters( 'astra_wpheader_schema_enabled', parent::schema_enabled() ); } } new Astra_WPHeader_Schema(); /** * Related Posts Loader for Astra theme. * * @package Astra * @link https://www.brainstormforce.com * @since Astra 3.5.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Customizer Initialization * * @since 3.5.0 */ class Astra_Related_Posts_Loader { /** * Constructor * * @since 3.5.0 */ public function __construct() { add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_action( 'customize_register', array( $this, 'related_posts_customize_register' ), 2 ); // Load Google fonts. add_action( 'astra_get_fonts', array( $this, 'add_fonts' ), 1 ); } /** * Enqueue google fonts. * * @return void */ public function add_fonts() { if ( astra_target_rules_for_related_posts() ) { // Related Posts Section title. $section_title_font_family = astra_get_option( 'related-posts-section-title-font-family' ); $section_title_font_weight = astra_get_option( 'related-posts-section-title-font-weight' ); Astra_Fonts::add_font( $section_title_font_family, $section_title_font_weight ); // Related Posts - Posts title. $post_title_font_family = astra_get_option( 'related-posts-title-font-family' ); $post_title_font_weight = astra_get_option( 'related-posts-title-font-weight' ); Astra_Fonts::add_font( $post_title_font_family, $post_title_font_weight ); // Related Posts - Meta Font. $meta_font_family = astra_get_option( 'related-posts-meta-font-family' ); $meta_font_weight = astra_get_option( 'related-posts-meta-font-weight' ); Astra_Fonts::add_font( $meta_font_family, $meta_font_weight ); // Related Posts - Content Font. $content_font_family = astra_get_option( 'related-posts-content-font-family' ); $content_font_weight = astra_get_option( 'related-posts-content-font-weight' ); Astra_Fonts::add_font( $content_font_family, $content_font_weight ); } } /** * Set Options Default Values * * @param array $defaults Astra options default value array. * @return array */ public function theme_defaults( $defaults ) { /** * Update Astra default color and typography values. To not update directly on existing users site, added backwards. * * @since 4.0.0 */ $apply_new_default_color_typo_values = Astra_Dynamic_CSS::astra_check_default_color_typo(); $astra_options = Astra_Theme_Options::get_astra_options(); $astra_blog_update = Astra_Dynamic_CSS::astra_4_6_0_compatibility(); // Related Posts. $defaults['enable-related-posts'] = false; $defaults['related-posts-title'] = __( 'Related Posts', 'astra' ); $defaults['releted-posts-title-alignment'] = 'left'; $defaults['related-posts-total-count'] = 2; $defaults['enable-related-posts-excerpt'] = false; $defaults['related-posts-box-placement'] = 'default'; $defaults['related-posts-outside-location'] = 'above'; $defaults['related-posts-container-width'] = $astra_blog_update ? '' : 'fallback'; $defaults['related-posts-excerpt-count'] = 25; $defaults['related-posts-based-on'] = 'categories'; $defaults['related-posts-order-by'] = 'date'; $defaults['related-posts-order'] = 'asc'; $defaults['related-posts-grid-responsive'] = array( 'desktop' => '2-equal', 'tablet' => '2-equal', 'mobile' => 'full', ); $defaults['related-posts-structure'] = array( 'featured-image', 'title-meta', ); $defaults['related-posts-tag-style'] = 'none'; $defaults['related-posts-category-style'] = 'none'; $defaults['related-posts-date-format'] = ''; $defaults['related-posts-meta-date-type'] = 'published'; $defaults['related-posts-author-avatar-size'] = ''; $defaults['related-posts-author-avatar'] = false; $defaults['related-posts-author-prefix-label'] = astra_default_strings( 'string-blog-meta-author-by', false ); $defaults['related-posts-image-size'] = ''; $defaults['related-posts-image-custom-scale-width'] = 16; $defaults['related-posts-image-custom-scale-height'] = 9; $defaults['related-posts-image-ratio-pre-scale'] = '16/9'; $defaults['related-posts-image-ratio-type'] = ''; $defaults['related-posts-meta-structure'] = array( 'comments', 'category', 'author', ); // Related Posts - Color styles. $defaults['related-posts-text-color'] = $apply_new_default_color_typo_values ? 'var(--ast-global-color-2)' : ''; $defaults['related-posts-link-color'] = ''; $defaults['related-posts-title-color'] = $apply_new_default_color_typo_values ? 'var(--ast-global-color-2)' : ''; $defaults['related-posts-background-color'] = ''; $defaults['related-posts-meta-color'] = ''; $defaults['related-posts-link-hover-color'] = ''; $defaults['related-posts-meta-link-hover-color'] = ''; // Related Posts - Title typo. $defaults['related-posts-section-title-font-family'] = 'inherit'; $defaults['related-posts-section-title-font-weight'] = 'inherit'; $defaults['related-posts-section-title-text-transform'] = ''; $defaults['related-posts-section-title-line-height'] = $apply_new_default_color_typo_values ? '1.25' : ''; $defaults['related-posts-section-title-font-extras'] = array( 'line-height' => ! isset( $astra_options['related-posts-section-title-font-extras'] ) && isset( $astra_options['related-posts-section-title-line-height'] ) ? $astra_options['related-posts-section-title-line-height'] : '1.6', 'line-height-unit' => 'em', 'letter-spacing' => '', 'letter-spacing-unit' => 'px', 'text-transform' => ! isset( $astra_options['related-posts-section-title-font-extras'] ) && isset( $astra_options['related-posts-section-title-text-transform'] ) ? $astra_options['related-posts-section-title-text-transform'] : '', 'text-decoration' => '', ); $defaults['related-posts-section-title-font-size'] = array( 'desktop' => $apply_new_default_color_typo_values ? '26' : '30', 'tablet' => '', 'mobile' => '', 'desktop-unit' => 'px', 'tablet-unit' => 'px', 'mobile-unit' => 'px', ); // Related Posts - Title typo. $defaults['related-posts-title-font-family'] = 'inherit'; $defaults['related-posts-title-font-weight'] = $apply_new_default_color_typo_values ? '500' : 'inherit'; $defaults['related-posts-title-text-transform'] = ''; $defaults['related-posts-title-line-height'] = '1'; $defaults['related-posts-title-font-size'] = array( 'desktop' => '20', 'tablet' => '', 'mobile' => '', 'desktop-unit' => 'px', 'tablet-unit' => 'px', 'mobile-unit' => 'px', ); $defaults['related-posts-title-font-extras'] = array( 'line-height' => ! isset( $astra_options['related-posts-title-font-extras'] ) && isset( $astra_options['related-posts-title-line-height'] ) ? $astra_options['related-posts-title-line-height'] : ( $astra_blog_update ? '1.5' : '1' ), 'line-height-unit' => 'em', 'letter-spacing' => '', 'letter-spacing-unit' => 'px', 'text-transform' => ! isset( $astra_options['related-posts-title-font-extras'] ) && isset( $astra_options['related-posts-title-text-transform'] ) ? $astra_options['related-posts-title-text-transform'] : '', 'text-decoration' => '', ); // Related Posts - Meta typo. $defaults['related-posts-meta-font-family'] = 'inherit'; $defaults['related-posts-meta-font-weight'] = 'inherit'; $defaults['related-posts-meta-text-transform'] = ''; $defaults['related-posts-meta-line-height'] = ''; $defaults['related-posts-meta-font-size'] = array( 'desktop' => '14', 'tablet' => '', 'mobile' => '', 'desktop-unit' => 'px', 'tablet-unit' => 'px', 'mobile-unit' => 'px', ); $defaults['related-posts-meta-font-extras'] = array( 'line-height' => ! isset( $astra_options['related-posts-meta-font-extras'] ) && isset( $astra_options['related-posts-meta-line-height'] ) ? $astra_options['related-posts-meta-line-height'] : '1.6', 'line-height-unit' => 'em', 'letter-spacing' => '', 'letter-spacing-unit' => 'px', 'text-transform' => ! isset( $astra_options['related-posts-meta-font-extras'] ) && isset( $astra_options['related-posts-meta-text-transform'] ) ? $astra_options['related-posts-meta-text-transform'] : '', 'text-decoration' => '', ); // Related Posts - Content typo. $defaults['related-posts-content-font-family'] = 'inherit'; $defaults['related-posts-content-font-weight'] = 'inherit'; $defaults['related-posts-content-font-extras'] = array( 'line-height' => ! isset( $astra_options['related-posts-content-font-extras'] ) && isset( $astra_options['related-posts-content-line-height'] ) ? $astra_options['related-posts-content-line-height'] : '', 'line-height-unit' => 'em', 'letter-spacing' => '', 'letter-spacing-unit' => 'px', 'text-transform' => ! isset( $astra_options['related-posts-content-font-extras'] ) && isset( $astra_options['related-posts-content-text-transform'] ) ? $astra_options['related-posts-content-text-transform'] : '', 'text-decoration' => '', ); $defaults['related-posts-content-font-size'] = array( 'desktop' => '', 'tablet' => '', 'mobile' => '', 'desktop-unit' => 'px', 'tablet-unit' => 'px', 'mobile-unit' => 'px', ); $defaults['ast-sub-section-related-posts-padding'] = array( 'desktop' => array( 'top' => 2.5, 'right' => 2.5, 'bottom' => 2.5, 'left' => 2.5, ), 'tablet' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '', ), 'mobile' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '', ), 'desktop-unit' => 'em', 'tablet-unit' => 'em', 'mobile-unit' => 'em', ); $defaults['ast-sub-section-related-posts-margin'] = array( 'desktop' => array( 'top' => 2, 'right' => '', 'bottom' => '', 'left' => '', ), 'tablet' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '', ), 'mobile' => array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '', ), 'desktop-unit' => 'em', 'tablet-unit' => 'em', 'mobile-unit' => 'em', ); return $defaults; } /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. * * @since 3.5.0 */ public function related_posts_customize_register( $wp_customize ) { /** * Register Config control in Related Posts. */ // @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound require_once ASTRA_RELATED_POSTS_DIR . 'customizer/class-astra-related-posts-configs.php'; // @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound } /** * Render the Related Posts title for the selective refresh partial. * * @since 3.5.0 */ public function render_related_posts_title() { return astra_get_option( 'related-posts-title' ); } } /** * Kicking this off by creating NEW instace. */ new Astra_Related_Posts_Loader(); /*! elementor - v3.23.0 - 25-07-2024 */ /*! For license information please see nested-tabs.min.js.LICENSE.txt */ (()=>{var e,t,r={10029:e=>{function asyncGeneratorStep(e,t,r,n,o,a,i){try{var c=e[a](i),u=c.value}catch(e){return void r(e)}c.done?t(u):Promise.resolve(u).then(n,o)}e.exports=function _asyncToGenerator(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var a=e.apply(t,r);function _next(e){asyncGeneratorStep(a,n,o,_next,_throw,"next",e)}function _throw(e){asyncGeneratorStep(a,n,o,_next,_throw,"throw",e)}_next(void 0)}))}},e.exports.__esModule=!0,e.exports.default=e.exports},73203:e=>{e.exports=function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},21337:(e,t,r)=>{var n=r(7501).default;function _regeneratorRuntime(){"use strict";e.exports=_regeneratorRuntime=function _regeneratorRuntime(){return r},e.exports.__esModule=!0,e.exports.default=e.exports;var t,r={},o=Object.prototype,a=o.hasOwnProperty,i=Object.defineProperty||function(e,t,r){e[t]=r.value},c="function"==typeof Symbol?Symbol:{},u=c.iterator||"@@iterator",l=c.asyncIterator||"@@asyncIterator",s=c.toStringTag||"@@toStringTag";function define(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{define({},"")}catch(t){define=function define(e,t,r){return e[t]=r}}function wrap(e,t,r,n){var o=t&&t.prototype instanceof Generator?t:Generator,a=Object.create(o.prototype),c=new Context(n||[]);return i(a,"_invoke",{value:makeInvokeMethod(e,r,c)}),a}function tryCatch(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}r.wrap=wrap;var p="suspendedStart",f="suspendedYield",_="executing",h="completed",d={};function Generator(){}function GeneratorFunction(){}function GeneratorFunctionPrototype(){}var y={};define(y,u,(function(){return this}));var v=Object.getPrototypeOf,w=v&&v(v(values([])));w&&w!==o&&a.call(w,u)&&(y=w);var m=GeneratorFunctionPrototype.prototype=Generator.prototype=Object.create(y);function defineIteratorMethods(e){["next","throw","return"].forEach((function(t){define(e,t,(function(e){return this._invoke(t,e)}))}))}function AsyncIterator(e,t){function invoke(r,o,i,c){var u=tryCatch(e[r],e,o);if("throw"!==u.type){var l=u.arg,s=l.value;return s&&"object"==n(s)&&a.call(s,"__await")?t.resolve(s.__await).then((function(e){invoke("next",e,i,c)}),(function(e){invoke("throw",e,i,c)})):t.resolve(s).then((function(e){l.value=e,i(l)}),(function(e){return invoke("throw",e,i,c)}))}c(u.arg)}var r;i(this,"_invoke",{value:function value(e,n){function callInvokeWithMethodAndArg(){return new t((function(t,r){invoke(e,n,t,r)}))}return r=r?r.then(callInvokeWithMethodAndArg,callInvokeWithMethodAndArg):callInvokeWithMethodAndArg()}})}function makeInvokeMethod(e,r,n){var o=p;return function(a,i){if(o===_)throw new Error("Generator is already running");if(o===h){if("throw"===a)throw i;return{value:t,done:!0}}for(n.method=a,n.arg=i;;){var c=n.delegate;if(c){var u=maybeInvokeDelegate(c,n);if(u){if(u===d)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===p)throw o=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=_;var l=tryCatch(e,r,n);if("normal"===l.type){if(o=n.done?h:f,l.arg===d)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(o=h,n.method="throw",n.arg=l.arg)}}}function maybeInvokeDelegate(e,r){var n=r.method,o=e.iterator[n];if(o===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,maybeInvokeDelegate(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),d;var a=tryCatch(o,e.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,d;var i=a.arg;return i?i.done?(r[e.resultName]=i.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,d):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,d)}function pushTryEntry(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function resetTryEntry(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function Context(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(pushTryEntry,this),this.reset(!0)}function values(e){if(e||""===e){var r=e[u];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function next(){for(;++o=0;--n){var o=this.tryEntries[n],i=o.completion;if("root"===o.tryLoc)return handle("end");if(o.tryLoc<=this.prev){var c=a.call(o,"catchLoc"),u=a.call(o,"finallyLoc");if(c&&u){if(this.prev=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&a.call(n,"finallyLoc")&&this.prev=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),resetTryEntry(r),d}},catch:function _catch(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;resetTryEntry(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function delegateYield(e,r,n){return this.delegate={iterator:values(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),d}},r}e.exports=_regeneratorRuntime,e.exports.__esModule=!0,e.exports.default=e.exports},7501:e=>{function _typeof(t){return e.exports=_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,_typeof(t)}e.exports=_typeof,e.exports.__esModule=!0,e.exports.default=e.exports},50824:(e,t,r)=>{var n=r(21337)();e.exports=n;try{regeneratorRuntime=n}catch(e){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}}},n={};function __webpack_require__(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,__webpack_require__),o.exports}__webpack_require__.m=r,__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce(((t,r)=>(__webpack_require__.f[r](e,t),t)),[])),__webpack_require__.u=e=>{if(7130===e)return"b7931adecb98651a09c7.bundle.min.js"},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="elementor:",__webpack_require__.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var i,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),l=0;l{i.onerror=i.onload=null,clearTimeout(p);var o=e[r];if(delete e[r],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach((e=>e(n))),t)return t(n)},p=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=onScriptComplete.bind(null,i.onerror),i.onload=onScriptComplete.bind(null,i.onload),c&&document.head.appendChild(i)}},(()=>{var e;__webpack_require__.g.importScripts&&(e=__webpack_require__.g.location+"");var t=__webpack_require__.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&!e;)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),__webpack_require__.p=e})(),(()=>{var e={8861:0};__webpack_require__.f.j=(t,r)=>{var n=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise(((r,o)=>n=e[t]=[r,o]));r.push(n[2]=o);var a=__webpack_require__.p+__webpack_require__.u(t),i=new Error;__webpack_require__.l(a,(r=>{if(__webpack_require__.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",i.name="ChunkLoadError",i.type=o,i.request=a,n[1](i)}}),"chunk-"+t,t)}};var webpackJsonpCallback=(t,r)=>{var n,o,[a,i,c]=r,u=0;if(a.some((t=>0!==e[t]))){for(n in i)__webpack_require__.o(i,n)&&(__webpack_require__.m[n]=i[n]);if(c)c(__webpack_require__)}for(t&&t(r);u{"use strict";var e=__webpack_require__(73203),t=e(__webpack_require__(50824)),r=e(__webpack_require__(10029));elementorCommon.elements.$window.on("elementor/nested-element-type-loaded",(0,r.default)(t.default.mark((function _callee(){return t.default.wrap((function _callee$(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,__webpack_require__.e(7130).then(__webpack_require__.bind(__webpack_require__,87130));case 2:e.t0=e.sent.default,new e.t0;case 4:case"end":return e.stop()}}),_callee)}))))})()})();/** * LearnPress Content Drip Admin * * @since 3.0.0 */ ( function( $ ) { const LP_Content_Drip_Admin = function() { function init() { $( '.item-delay' ).on( 'change', '.delay-type', function() { $( this ).parent().removeClass( 'immediately interval specific' ).addClass( this.value ); } ); $( document ).on( 'click', '.apply-quick-settings', function() { let $form = $( this ).closest( '.quick-settings-form' ), start = parseFloat( $form.find( 'input[name="start"]' ).val() ), step = parseFloat( $form.find( 'input[name="step"]' ).val() ), type = $form.find( 'select[name="type"]' ).val(), $dripItems = $( '.item-delay' ), i = start; $dripItems.each( function() { const $item = $( this ); $item.find( '.delay-type' ).val( 'interval' ); $item.find( '.delay-interval-0' ).val( i ); $item.find( '.delay-interval-1' ).val( type ); $item.removeClass( 'immediately interval' ).addClass( 'interval' ); i += step; } ); } ).on( 'click', '.quick-settings a', function( e ) { e.preventDefault(); const $settings = $( this ).parent( '.quick-settings' ); $settings.find( '.quick-settings-form' ).toggle(); } ).on( 'click', '.close-quick-settings', function( e ) { e.stopPropagation(); $( this ).closest( '.quick-settings-form' ).hide(); } ).on( 'click', '#learn-press-reset-drip-items', function() { if ( ! confirm( lpContentDrip.confirm_reset_items ) ) { return; } $( '.item-delay' ).each( function() { const $item = $( this ); $item.find( '.delay-type' ).val( 'immediately' ); $item.find( '.delay-interval-0' ).val( 0 ); $item.find( '.delay-interval-1' ).val( 'minute' ); $item.removeClass( 'immediately interval specific' ).addClass( 'immediately' ); } ); } ).on( 'keyup', '.learnpress_page_content-drip-items', function( e ) { if ( e.keyCode === 27 ) { $( this ).find( '.quick-settings-form' ).hide(); } } ); // if (typeof $.fn.datetimepicker !== 'undefined') { // // } $( '.delay-specific-datetimepicker' ).datetimepicker(); $( '.drip-prerequisite-items' ).select2( { placeholder: lpContentDrip.prerequisite_placeholder, } ); } init(); }; $( document ).ready( function() { new LP_Content_Drip_Admin(); } ); }( jQuery ) );
Warning: Attempt to read property "post_excerpt" on null in /home/airpatrolnorth/public_html/wp-content/themes/astra/inc/compatibility/class-astra-starter-content.php on line 24
/*! elementor - v3.12.2 - 23-04-2023 */ .elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d5d8dc;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{-webkit-margin-start:-5px;margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d5d8dc;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}.e-con-inner>.elementor-widget-toggle,.e-con>.elementor-widget-toggle{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}/** * Astra Theme Customizer Configuration Builder. * * @package astra-builder * @link https://wpastra.com/ * @since 3.0.0 */ // No direct access, please. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Register Builder Customizer Configurations. * * @since 3.0.0 */ class Astra_Button_Component_Configs { /** * Register Builder Customizer Configurations. * * @param array $configurations Configurations. * @param string $builder_type Builder Type. * @param string $section Section. * * @since 3.0.0 * @return array $configurations Astra Customizer Configurations with updated configurations. */ public static function register_configuration( $configurations, $builder_type = 'header', $section = 'section-hb-button-' ) { if ( 'footer' === $builder_type ) { $class_obj = Astra_Builder_Footer::get_instance(); $number_of_button = Astra_Builder_Helper::$num_of_footer_button; $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_footer_button; } else { $class_obj = Astra_Builder_Header::get_instance(); $number_of_button = Astra_Builder_Helper::$num_of_header_button; $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_button; } $button_config = array(); for ( $index = 1; $index <= $component_limit; $index++ ) { $_section = $section . $index; $_prefix = 'button' . $index; /** * These options are related to Header Section - Button. * Prefix hs represents - Header Section. */ $button_config[] = array( /* * Header Builder section - Button Component Configs. */ array( 'name' => $_section, 'type' => 'section', 'priority' => 50, /* translators: %s Index */ 'title' => 1 === $number_of_button ? __( 'Button', 'astra' ) : sprintf( __( 'Button %s', 'astra' ), $index ), 'panel' => 'panel-' . $builder_type . '-builder-group', 'clone_index' => $index, 'clone_type' => $builder_type . '-button', ), /** * Option: Header Builder Tabs */ array( 'name' => $_section . '-ast-context-tabs', 'section' => $_section, 'type' => 'control', 'control' => 'ast-builder-header-control', 'priority' => 0, 'description' => '', ), /** * Option: Button Text */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-text' ), 'type' => 'control', 'control' => 'text', 'section' => $_section, 'priority' => 20, 'title' => __( 'Text', 'astra' ), 'transport' => 'postMessage', 'partial' => array( 'selector' => '.ast-' . $builder_type . '-button-' . $index, 'container_inclusive' => false, 'render_callback' => array( $class_obj, 'button_' . $index ), 'fallback_refresh' => false, ), 'context' => Astra_Builder_Helper::$general_tab, ), /** * Option: Button Link */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-link-option]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-link-option' ), 'type' => 'control', 'control' => 'ast-link', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_link' ), 'section' => $_section, 'priority' => 30, 'title' => __( 'Link', 'astra' ), 'transport' => 'postMessage', 'partial' => array( 'selector' => '.ast-' . $builder_type . '-button-' . $index, 'container_inclusive' => false, 'render_callback' => array( $class_obj, 'button_' . $index ), ), 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), /** * Group: Primary Header Button Colors Group */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-color-group]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-color-group' ), 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Text Color', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 70, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-background-color-group]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-color-group' ), 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Background Color', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 70, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, ), /** * Option: Button Text Color */ array( 'name' => $builder_type . '-' . $_prefix . '-text-color', 'transport' => 'postMessage', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-text-color' ), 'type' => 'sub-control', 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-color-group]', 'section' => $_section, 'tab' => __( 'Normal', 'astra' ), 'control' => 'ast-responsive-color', 'responsive' => true, 'rgba' => true, 'priority' => 9, 'context' => Astra_Builder_Helper::$design_tab, 'title' => __( 'Normal', 'astra' ), ), /** * Option: Button Text Hover Color */ array( 'name' => $builder_type . '-' . $_prefix . '-text-h-color', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-text-h-color' ), 'transport' => 'postMessage', 'type' => 'sub-control', 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-color-group]', 'section' => $_section, 'tab' => __( 'Hover', 'astra' ), 'control' => 'ast-responsive-color', 'responsive' => true, 'rgba' => true, 'priority' => 9, 'context' => Astra_Builder_Helper::$design_tab, 'title' => __( 'Hover', 'astra' ), ), /** * Option: Button Background Color */ array( 'name' => $builder_type . '-' . $_prefix . '-back-color', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-back-color' ), 'transport' => 'postMessage', 'type' => 'sub-control', 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-background-color-group]', 'section' => $_section, 'tab' => __( 'Normal', 'astra' ), 'control' => 'ast-responsive-color', 'responsive' => true, 'rgba' => true, 'priority' => 10, 'context' => Astra_Builder_Helper::$design_tab, 'title' => __( 'Normal', 'astra' ), ), /** * Option: Button Button Hover Color */ array( 'name' => $builder_type . '-' . $_prefix . '-back-h-color', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-back-h-color' ), 'transport' => 'postMessage', 'type' => 'sub-control', 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-background-color-group]', 'section' => $_section, 'tab' => __( 'Hover', 'astra' ), 'control' => 'ast-responsive-color', 'responsive' => true, 'rgba' => true, 'priority' => 10, 'context' => Astra_Builder_Helper::$design_tab, 'title' => __( 'Hover', 'astra' ), ), array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-builder-button-border-colors-group]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Border Color', 'astra' ), 'section' => $_section, 'priority' => 70, 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), ), /** * Option: Button Border Color */ array( 'name' => $builder_type . '-' . $_prefix . '-border-color', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-border-color' ), 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-builder-button-border-colors-group]', 'transport' => 'postMessage', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-color', 'responsive' => true, 'rgba' => true, 'priority' => 70, 'context' => Astra_Builder_Helper::$design_tab, 'title' => __( 'Normal', 'astra' ), ), /** * Option: Button Border Hover Color */ array( 'name' => $builder_type . '-' . $_prefix . '-border-h-color', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-border-h-color' ), 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-builder-button-border-colors-group]', 'transport' => 'postMessage', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-color', 'responsive' => true, 'rgba' => true, 'priority' => 70, 'context' => Astra_Builder_Helper::$design_tab, 'title' => __( 'Hover', 'astra' ), ), /** * Option: Button Border Size */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-border-size]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-border-size' ), 'type' => 'control', 'section' => $_section, 'control' => 'ast-border', 'transport' => 'postMessage', 'linked_choices' => true, 'priority' => 99, 'title' => __( 'Border Width', 'astra' ), 'context' => Astra_Builder_Helper::$design_tab, 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), /** * Option: Button Radius Fields */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-border-radius-fields]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-border-radius-fields' ), 'type' => 'control', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'section' => $_section, 'title' => __( 'Border Radius', 'astra' ), 'linked_choices' => true, 'transport' => 'postMessage', 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'priority' => 99, 'context' => Astra_Builder_Helper::$design_tab, 'connected' => false, 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), /** * Option: Primary Header Button Typography */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-typography]', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-text-typography' ), 'type' => 'control', 'control' => 'ast-settings-group', 'is_font' => true, 'title' => __( 'Font', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$design_tab, 'priority' => 90, ), /** * Option: Primary Header Button Font Family */ array( 'name' => $builder_type . '-' . $_prefix . '-font-family', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-font-family' ), 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-typography]', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-font', 'font_type' => 'ast-font-family', 'title' => __( 'Font Family', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'connect' => $builder_type . '-' . $_prefix . '-font-weight', 'priority' => 1, 'divider' => array( 'ast_class' => 'ast-sub-bottom-divider' ), ), /** * Option: Primary Footer Button Font Weight */ array( 'name' => $builder_type . '-' . $_prefix . '-font-weight', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-font-weight' ), 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-typography]', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-font', 'font_type' => 'ast-font-weight', 'title' => __( 'Font Weight', 'astra' ), 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ), 'connect' => $builder_type . '-' . $_prefix . '-font-family', 'priority' => 2, 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-divider' ), ), /** * Option: Primary Header Button Font Size */ array( 'name' => $builder_type . '-' . $_prefix . '-font-size', 'default' => astra_get_option( $builder_type . '-' . $_prefix . '-font-size' ), 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-typography]', 'transport' => 'postMessage', 'title' => __( 'Font Size', 'astra' ), 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-slider', 'priority' => 3, 'context' => Astra_Builder_Helper::$general_tab, 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ), 'suffix' => array( 'px', 'em', 'vw', 'rem' ), 'input_attrs' => array( 'px' => array( 'min' => 0, 'step' => 1, 'max' => 200, ), 'em' => array( 'min' => 0, 'step' => 0.01, 'max' => 20, ), 'vw' => array( 'min' => 0, 'step' => 0.1, 'max' => 25, ), 'rem' => array( 'min' => 0, 'step' => 0.1, 'max' => 20, ), ), ), /** * Option: Primary Footer Button Font Extras */ array( 'name' => $builder_type . '-' . $_prefix . '-font-extras', 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-' . $_prefix . '-text-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font-extras', 'priority' => 5, 'default' => astra_get_option( 'breadcrumb-font-extras' ), 'context' => Astra_Builder_Helper::$general_tab, 'title' => __( 'Font Extras', 'astra' ), ), ); if ( 'footer' === $builder_type ) { $button_config[] = array( array( 'name' => ASTRA_THEME_SETTINGS . '[footer-button-' . $index . '-alignment]', 'default' => astra_get_option( 'footer-button-' . $index . '-alignment' ), 'type' => 'control', 'control' => 'ast-selector', 'section' => $_section, 'priority' => 35, 'title' => __( 'Alignment', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'transport' => 'postMessage', 'choices' => array( 'flex-start' => 'align-left', 'center' => 'align-center', 'flex-end' => 'align-right', ), 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), ); } $button_config[] = Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section, $builder_type ); $button_config[] = Astra_Extended_Base_Configuration::prepare_advanced_tab( $_section ); } $button_config = call_user_func_array( 'array_merge', $button_config + array( array() ) ); return array_merge( $configurations, $button_config ); } } /** * Kicking this off by creating object of this class. */ new Astra_Button_Component_Configs(); .isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{transition-duration:.8s}.isotope{transition-property:height,width}.isotope .isotope-item{transition-property:transform,opacity}.isotope .isotope-item.no-transition,.isotope.no-transition,.isotope.no-transition .isotope-item{transition-duration:0s}/** * HTML Header Configuration. * * @package Astra * @link https://wpastra.com/ * @since 4.5.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Register html header builder Customizer Configurations. * * @param array $configurations Astra Customizer Configurations. * @since 4.5.2 * @return array Astra Customizer Configurations with updated configurations. */ function astra_header_html_configuration( $configurations = array() ) { $_configs = Astra_Html_Component_Configs::register_configuration( $configurations, 'header', 'section-hb-html-' ); if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { array_map( 'astra_save_header_customizer_configs', $_configs ); } return $_configs; } if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { add_action( 'init', 'astra_header_html_configuration', 10, 0 ); } /* single-spa-layout@2.2.0 - system */ System.register(["single-spa"],(function(e){"use strict";var t,n,r,o,a,i,c,u;return{setters:[function(e){t=e.pathToActiveWhen,n=e.addErrorHandler,r=e.removeErrorHandler,o=e.mountRootParcel,a=e.navigateToUrl,i=e.getMountedApps,c=e.checkActivityFunctions,u=e.getAppNames}],execute:function(){function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function l(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n requires single-spa@>=5.7.0");return r(),setTimeout((function(){a(n)})),{v:void 0}}};for(var u in t.redirects){var s=c(u);if("object"===d(s))return s.v}var f=[];q(o).forEach((function(e){l[e]&&(f.push(l[e].unmount()),delete l[e])})),f.length>0&&(r(),Promise.all(f).then((function(){a(o)})))}function g(){if(0===k(t).indexOf(p)){var e=i().reduce((function(e,t){return e[t]=document.getElementById(R(t)),e}),{});M({location:window.location,routes:t.routes,parentContainer:E(),shouldMount:!0,applicationContainers:e})}}function b(e){var t=e.detail,n=t.navigationIsCanceled,r=t.newUrl;n||q(r).forEach((function(e){var t=document.getElementById(R(e));t&&t.isConnected&&t.parentNode.removeChild(t)}))}function w(e,t){if(e&&e.childNodes&&t)for(var n={nextSibling:e.childNodes[0]},r=0;r element.")}e=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("template"===e.nodeName.toLowerCase()&&(e=(e.content||e).querySelector("single-spa-router")),"single-spa-router"!==e.nodeName.toLowerCase())throw Error("single-spa-layout: The HTMLElement passed to constructRoutes must be or a