From 6558f415f686dd324625be4031b359e0b0b22261 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 2 Dec 2022 16:59:29 +0900 Subject: [PATCH 01/38] try / custom css custom store --- .../BlockMeta/class-vk-blocks-entrypoint.php | 73 ++++++++++++++++++ src/blocks/bundle.js | 1 + .../common/custom-css-extension/index.js | 55 +++++++++++++- src/extensions/store/constants.js | 6 ++ src/extensions/store/index.js | 76 +++++++++++++++++++ src/utils/api/constants.js | 6 ++ src/utils/api/index.js | 22 ++++++ 7 files changed, 235 insertions(+), 4 deletions(-) create mode 100644 src/extensions/store/constants.js create mode 100644 src/extensions/store/index.js create mode 100644 src/utils/api/constants.js create mode 100644 src/utils/api/index.js diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 3cdc81bbe..038f23084 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -47,6 +47,27 @@ public function vk_blocks_rest_api_init() { ), ) ); + + register_rest_route( + 'vk-blocks/v1', + '/block-editor-options', + array( + array( + 'methods' => 'GET', + 'callback' => array( $this, 'block_editor_get_options' ), + 'permission_callback' => function () { + return current_user_can( 'edit_posts' ); + }, + ), + array( + 'methods' => 'POST', + 'callback' => array( $this, 'block_editor_update_options' ), + 'permission_callback' => function () { + return current_user_can( 'edit_posts' ); + }, + ), + ) + ); } /** @@ -80,4 +101,56 @@ public function update_vk_blocks_options( $request ) { ); } + /** + * Storeの読み書きを許可するオプションリスト + * + * @var array + */ + private $allow_block_editor_option_lists = array( + // 'new_faq_accordion', + 'show_custom_css_editor_flag', + ); + + /** + * Get Option Callback + * + * @return \WP_REST_Response|\WP_Error + */ + public function block_editor_get_options() { + $options = VK_Blocks_Options::get_options(); + foreach ( $options as $option_name => $value ) { + if ( ! in_array( $option_name, $this->allow_block_editor_option_lists ) ) { + unset( $options[ $option_name ] ); + } + } + + return rest_ensure_response( $options ); + } + + /** + * Update options Callback + * + * @param object $request — . + * @return \WP_REST_Response|\WP_Error + */ + public function block_editor_update_options( $request ) { + $json_params = $request->get_json_params(); + + $options = VK_Blocks_Options::get_options(); + $waiting_lists = array(); + foreach ( $options as $option_name => $value ) { + if ( ! in_array( $option_name, $this->allow_block_editor_option_lists ) ) { + $waiting_lists[ $option_name ] = $options[ $option_name ]; + } + } + $completed_options = array_merge( $json_params, $waiting_lists ); + + update_option( 'vk_blocks_options', $completed_options ); + return rest_ensure_response( + array( + 'success' => true, + ) + ); + } + } diff --git a/src/blocks/bundle.js b/src/blocks/bundle.js index eaf3685e4..30be82adf 100644 --- a/src/blocks/bundle.js +++ b/src/blocks/bundle.js @@ -36,6 +36,7 @@ import * as staff from './staff'; /** * Extensions */ +import '@vkblocks/extensions/store'; import '@vkblocks/extensions/core/heading/style'; import '@vkblocks/extensions/core/group/style'; import '@vkblocks/extensions/core/list/style'; diff --git a/src/extensions/common/custom-css-extension/index.js b/src/extensions/common/custom-css-extension/index.js index 61dee59a4..54c5cb534 100644 --- a/src/extensions/common/custom-css-extension/index.js +++ b/src/extensions/common/custom-css-extension/index.js @@ -3,12 +3,19 @@ */ import { __, getLocaleData } from '@wordpress/i18n'; import { addFilter } from '@wordpress/hooks'; -import { PanelBody, Icon, Button, ExternalLink } from '@wordpress/components'; +import { + PanelBody, + Icon, + Button, + ExternalLink, + ToggleControl, +} from '@wordpress/components'; import { InspectorControls } from '@wordpress/block-editor'; import { createHigherOrderComponent, useInstanceId } from '@wordpress/compose'; import { hasBlockSupport } from '@wordpress/blocks'; import { useEffect } from '@wordpress/element'; import { addQueryArgs } from '@wordpress/url'; +import { useSelect, useDispatch } from '@wordpress/data'; /** * External dependencies @@ -20,7 +27,8 @@ import classnames from 'classnames'; */ import { CodeMirrorCss } from '@vkblocks/components/code-mirror-css'; import { ReactComponent as IconSVG } from './icon.svg'; -/*globals vk_blocks_params */ +import { STORE_NAME } from '@vkblocks/extensions/store/constants'; +import { updateOptions } from '@vkblocks/utils/api'; export const inString = (str, keyword) => { return str.indexOf(keyword) !== -1; @@ -155,6 +163,26 @@ export const withInspectorControls = createHigherOrderComponent( }; } + const { vkBlocksOptions } = useSelect((select) => { + const { getOptions } = select(STORE_NAME); + return { + vkBlocksOptions: getOptions(), + }; + }, []); + const { setOptions } = useDispatch(STORE_NAME); + + const updateSettings = (value) => { + if (value) { + vkBlocksOptions.show_custom_css_editor_flag = 'show'; + setOptions(vkBlocksOptions); + updateOptions(vkBlocksOptions); + } else { + vkBlocksOptions.show_custom_css_editor_flag = 'hide'; + setOptions(vkBlocksOptions); + updateOptions(vkBlocksOptions); + } + }; + return ( <> @@ -215,6 +243,19 @@ export const withInspectorControls = createHigherOrderComponent(
 							{'selector {\n    background: #f5f5f5;\n}'}
 						
+

{__( 'If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.', @@ -254,13 +295,19 @@ const withElementsStyles = createHigherOrderComponent( const id = useInstanceId(BlockListBlock); const uniqueClass = `vk_custom_css_${id}`; + const { showFlagOption } = useSelect((select) => { + const { getOptions } = select(STORE_NAME); + return { + showFlagOption: getOptions().show_custom_css_editor_flag, + }; + }, []); + const { vkbCustomCss } = attributes; // editor用のクラス名を追加 const customCssClass = classnames(props.className, { [uniqueClass]: existsCss(vkbCustomCss), [`vk_edit_custom_css`]: - vk_blocks_params.show_custom_css_editor_flag === 'show' && - existsCss(vkbCustomCss), + showFlagOption === 'show' && existsCss(vkbCustomCss), }); // selectorをUniqueクラスに変換する diff --git a/src/extensions/store/constants.js b/src/extensions/store/constants.js new file mode 100644 index 000000000..e9edb663c --- /dev/null +++ b/src/extensions/store/constants.js @@ -0,0 +1,6 @@ +/** + * The identifier for the data store. + * + * @type {string} + */ +export const STORE_NAME = 'vk-blocks/block-editor'; diff --git a/src/extensions/store/index.js b/src/extensions/store/index.js new file mode 100644 index 000000000..364f570df --- /dev/null +++ b/src/extensions/store/index.js @@ -0,0 +1,76 @@ +/** + * WordPress dependencies + */ +import { createReduxStore, register } from '@wordpress/data'; +import apiFetch from '@wordpress/api-fetch'; + +/** + * Internal dependencies + */ +import { STORE_NAME } from './constants'; +import { API_PATH } from '@vkblocks/utils/api/constants'; + +const DEFAULT_STATE = { + options: {}, +}; + +/** + * Store definition for the block-editor namespace. + * + * @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/data/README.md#createReduxStore + * + * @type {Object} + */ +const actions = { + setOptions(options) { + return { + type: 'SET_OPTIONS', + options, + }; + }, + + fetchFromAPI(path) { + return { + type: 'FETCH_FROM_API', + path, + }; + }, +}; + +const store = createReduxStore(STORE_NAME, { + reducer(state = DEFAULT_STATE, action) { + switch (action.type) { + case 'SET_OPTIONS': + return { + ...state, + options: action.options, + }; + } + + return state; + }, + + actions, + + selectors: { + getOptions(state) { + const { options } = state; + return options; + }, + }, + + controls: { + FETCH_FROM_API(action) { + return apiFetch({ path: action.path }); + }, + }, + + resolvers: { + *getOptions() { + const options = yield actions.fetchFromAPI(API_PATH); + return actions.setOptions(options); + }, + }, +}); + +register(store); diff --git a/src/utils/api/constants.js b/src/utils/api/constants.js new file mode 100644 index 000000000..daab4b0ec --- /dev/null +++ b/src/utils/api/constants.js @@ -0,0 +1,6 @@ +/** + * The identifier for the data store. + * + * @type {string} + */ +export const API_PATH = 'vk-blocks/v1/block-editor-options'; diff --git a/src/utils/api/index.js b/src/utils/api/index.js new file mode 100644 index 000000000..2be946df7 --- /dev/null +++ b/src/utils/api/index.js @@ -0,0 +1,22 @@ +/** + * WordPress dependencies + */ +import apiFetch from '@wordpress/api-fetch'; + +/** + * Internal dependencies + */ +import { API_PATH } from '@vkblocks/utils/api/constants'; + +export const updateOptions = (options) => { + apiFetch({ + path: API_PATH, + method: 'POST', + data: options, + }).then((/*response, status*/) => { + // setTimeout(() => { + // console.log(response); + // console.log( status ); + // }, 600); + }); +}; From 4d378020a27443d41d3111a3d0e849805e9484f9 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Mon, 12 Dec 2022 14:33:33 +0900 Subject: [PATCH 02/38] =?UTF-8?q?fix=20/=20custom=20store=20=E4=B8=8D?= =?UTF-8?q?=E8=A6=81=E3=82=B3=E3=83=BC=E3=83=89=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inc/vk-blocks/vk-blocks-functions.php | 1 - src/extensions/common/custom-css-extension/index.js | 4 ++-- src/utils/api/index.js | 5 ----- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/inc/vk-blocks/vk-blocks-functions.php b/inc/vk-blocks/vk-blocks-functions.php index ae825809f..f2e152981 100644 --- a/inc/vk-blocks/vk-blocks-functions.php +++ b/inc/vk-blocks/vk-blocks-functions.php @@ -88,7 +88,6 @@ function vk_blocks_blocks_assets() { 'vk_blocks_params', array( 'home_url' => home_url( '/' ), - 'show_custom_css_editor_flag' => $vk_blocks_options['show_custom_css_editor_flag'], 'custom_format_lists' => $vk_blocks_options['custom_format_lists'], ) ); diff --git a/src/extensions/common/custom-css-extension/index.js b/src/extensions/common/custom-css-extension/index.js index a60ad4b0b..23f777be7 100644 --- a/src/extensions/common/custom-css-extension/index.js +++ b/src/extensions/common/custom-css-extension/index.js @@ -191,7 +191,6 @@ export const withInspectorControls = createHigherOrderComponent( className={'vk_custom_css_panel'} icon={} title={__( - // 'カスタムCSS', 'Custom CSS', 'vk-blocks' )} @@ -230,7 +229,8 @@ export const withInspectorControls = createHigherOrderComponent( { path: API_PATH, method: 'POST', data: options, - }).then((/*response, status*/) => { - // setTimeout(() => { - // console.log(response); - // console.log( status ); - // }, 600); }); }; From 034e58c8c34f1138cde3e7ce22ed9cd51a269934 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Mon, 12 Dec 2022 14:33:54 +0900 Subject: [PATCH 03/38] lint --- src/extensions/common/custom-css-extension/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/extensions/common/custom-css-extension/index.js b/src/extensions/common/custom-css-extension/index.js index 23f777be7..88391b1a6 100644 --- a/src/extensions/common/custom-css-extension/index.js +++ b/src/extensions/common/custom-css-extension/index.js @@ -190,10 +190,7 @@ export const withInspectorControls = createHigherOrderComponent( } - title={__( - 'Custom CSS', - 'vk-blocks' - )} + title={__('Custom CSS', 'vk-blocks')} initialOpen={false} > Date: Mon, 12 Dec 2022 14:34:26 +0900 Subject: [PATCH 04/38] phpcs --- inc/vk-blocks/vk-blocks-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/vk-blocks/vk-blocks-functions.php b/inc/vk-blocks/vk-blocks-functions.php index f2e152981..b660f9520 100644 --- a/inc/vk-blocks/vk-blocks-functions.php +++ b/inc/vk-blocks/vk-blocks-functions.php @@ -87,8 +87,8 @@ function vk_blocks_blocks_assets() { 'vk-blocks-build-js', 'vk_blocks_params', array( - 'home_url' => home_url( '/' ), - 'custom_format_lists' => $vk_blocks_options['custom_format_lists'], + 'home_url' => home_url( '/' ), + 'custom_format_lists' => $vk_blocks_options['custom_format_lists'], ) ); From b1b61b7c1b68529889607385fb4772b0bd788380 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 13 Dec 2022 15:37:50 +0900 Subject: [PATCH 05/38] =?UTF-8?q?fix=20/=20custom=20store=20=E8=A4=87?= =?UTF-8?q?=E6=95=B0=E3=81=AE=E3=82=AA=E3=83=97=E3=82=B7=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E5=80=A4=E7=94=A8=E3=81=AB=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BlockMeta/class-vk-blocks-entrypoint.php | 10 +++--- .../common/custom-css-extension/index.js | 36 +++++++++---------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 038f23084..560f66ce2 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -117,10 +117,11 @@ public function update_vk_blocks_options( $request ) { * @return \WP_REST_Response|\WP_Error */ public function block_editor_get_options() { - $options = VK_Blocks_Options::get_options(); - foreach ( $options as $option_name => $value ) { + $options = array(); + $options['vkBlocksOptions'] = VK_Blocks_Options::get_options(); + foreach ( $options['vkBlocksOptions'] as $option_name => $value ) { if ( ! in_array( $option_name, $this->allow_block_editor_option_lists ) ) { - unset( $options[ $option_name ] ); + unset( $options['vkBlocksOptions'][ $option_name ] ); } } @@ -143,8 +144,7 @@ public function block_editor_update_options( $request ) { $waiting_lists[ $option_name ] = $options[ $option_name ]; } } - $completed_options = array_merge( $json_params, $waiting_lists ); - + $completed_options = array_merge( $json_params['vkBlocksOptions'], $waiting_lists ); update_option( 'vk_blocks_options', $completed_options ); return rest_ensure_response( array( diff --git a/src/extensions/common/custom-css-extension/index.js b/src/extensions/common/custom-css-extension/index.js index 88391b1a6..d3a1cd1d2 100644 --- a/src/extensions/common/custom-css-extension/index.js +++ b/src/extensions/common/custom-css-extension/index.js @@ -163,24 +163,24 @@ export const withInspectorControls = createHigherOrderComponent( }; } - const { vkBlocksOptions } = useSelect((select) => { + const { optionObj } = useSelect((select) => { const { getOptions } = select(STORE_NAME); return { - vkBlocksOptions: getOptions(), + optionObj: getOptions(), }; }, []); const { setOptions } = useDispatch(STORE_NAME); const updateSettings = (value) => { - if (value) { - vkBlocksOptions.show_custom_css_editor_flag = 'show'; - setOptions(vkBlocksOptions); - updateOptions(vkBlocksOptions); - } else { - vkBlocksOptions.show_custom_css_editor_flag = 'hide'; - setOptions(vkBlocksOptions); - updateOptions(vkBlocksOptions); - } + const newObj = { + ...optionObj, + vkBlocksOptions: { + ...optionObj.vkBlocksOptions, + show_custom_css_editor_flag: value ? 'show' : 'hide', + }, + }; + setOptions(newObj); + updateOptions(newObj); }; return ( @@ -231,8 +231,8 @@ export const withInspectorControls = createHigherOrderComponent( 'vk-blocks' )} checked={ - vkBlocksOptions.show_custom_css_editor_flag === - 'show' + optionObj?.vkBlocksOptions + ?.show_custom_css_editor_flag === 'show' ? true : false } @@ -277,19 +277,19 @@ const withElementsStyles = createHigherOrderComponent( const id = useInstanceId(BlockListBlock); const uniqueClass = `vk_custom_css_${id}`; - const { showFlagOption } = useSelect((select) => { + const { vkbCustomCss } = attributes; + const { vkBlocksOptions } = useSelect((select) => { const { getOptions } = select(STORE_NAME); return { - showFlagOption: getOptions().show_custom_css_editor_flag, + vkBlocksOptions: getOptions().vkBlocksOptions, }; }, []); - - const { vkbCustomCss } = attributes; // editor用のクラス名を追加 const customCssClass = classnames(props.className, { [uniqueClass]: existsCss(vkbCustomCss), [`vk_edit_custom_css`]: - showFlagOption === 'show' && existsCss(vkbCustomCss), + vkBlocksOptions?.show_custom_css_editor_flag === 'show' && + existsCss(vkbCustomCss), }); // selectorをUniqueクラスに変換する From 2f3f2b1e50a3acd2bfa6c852ad76e9d59b7b5a99 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 13 Dec 2022 16:42:30 +0900 Subject: [PATCH 06/38] fix / comment --- .../App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 560f66ce2..e6e6cc21a 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -102,12 +102,11 @@ public function update_vk_blocks_options( $request ) { } /** - * Storeの読み書きを許可するオプションリスト + * Storeの読み書きを許可するvk_blocks_optionsのオプションリスト * * @var array */ private $allow_block_editor_option_lists = array( - // 'new_faq_accordion', 'show_custom_css_editor_flag', ); From bebca93d8d0f20796f328b3a769fdeb994cecd0b Mon Sep 17 00:00:00 2001 From: shimotmk Date: Wed, 14 Dec 2022 09:32:58 +0900 Subject: [PATCH 07/38] add test https://github.com/vektor-inc/vk-blocks-pro/pull/1449/files#diff-f301df9e0a0db2d79527c3ef698f3b9ea1d5a555f406851b07357723fbbcd65f --- .../BlockMeta/class-vk-blocks-entrypoint.php | 6 +- test/phpunit/pro/test-rest-api.php | 88 +++++++++++++++++++ 2 files changed, 91 insertions(+), 3 deletions(-) create mode 100644 test/phpunit/pro/test-rest-api.php diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index e6e6cc21a..7d5e3ba1a 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -106,7 +106,7 @@ public function update_vk_blocks_options( $request ) { * * @var array */ - private $allow_block_editor_option_lists = array( + public static $allow_block_editor_option_lists = array( 'show_custom_css_editor_flag', ); @@ -115,11 +115,11 @@ public function update_vk_blocks_options( $request ) { * * @return \WP_REST_Response|\WP_Error */ - public function block_editor_get_options() { + public static function block_editor_get_options() { $options = array(); $options['vkBlocksOptions'] = VK_Blocks_Options::get_options(); foreach ( $options['vkBlocksOptions'] as $option_name => $value ) { - if ( ! in_array( $option_name, $this->allow_block_editor_option_lists ) ) { + if ( ! in_array( $option_name, self::$allow_block_editor_option_lists ) ) { unset( $options['vkBlocksOptions'][ $option_name ] ); } } diff --git a/test/phpunit/pro/test-rest-api.php b/test/phpunit/pro/test-rest-api.php new file mode 100644 index 000000000..4eede31b2 --- /dev/null +++ b/test/phpunit/pro/test-rest-api.php @@ -0,0 +1,88 @@ +dispatch( $request ); + $actual = $response->get_data(); + + print '------------------------------------' . PHP_EOL; + print 'RestAPITest::test_get_vk_options_permition()' . PHP_EOL; + print '------------------------------------' . PHP_EOL; + + // 権限がなければ拒否しなければならない + $this->assertSame( 401, $response->status ); + } + + /** + * Test the endpoint for block-editor-options + * + * @return void. + */ + public function test_get_vk_options_value() { + + $this->set_current_user( 'administrator' ); + $request = new WP_REST_Request( 'GET', '/vk-blocks/v1/block-editor-options' ); + $response = self::$server->dispatch( $request ); + $actual = $response->get_data(); + + $vk_options_expect = Vk_Blocks_EntryPoint::block_editor_get_options(); + + print '------------------------------------' . PHP_EOL; + print 'RestAPITest::test_get_vk_options_value()' . PHP_EOL; + print '------------------------------------' . PHP_EOL; + // var_dump('$vk_options_expect'); + // var_dump($vk_options_expect->{'data'}); + // var_dump('$actual'); + // var_dump($actual); + $this->assertSame( $vk_options_expect->{'data'}, $actual ); + + } + + /** + * Add user and set the user as current user. + * + * @param string $role administrator, editor, author, contributor ... + * @return void + */ + public function set_current_user( $role ) { + $user = self::factory()->user->create_and_get( + array( + 'role' => $role, + ) + ); + wp_set_current_user( $user->ID, $user->user_login ); + } +} +; From 3ffb6c329f9fb1927b19b226c342e792dd9ecf75 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 6 Jan 2023 11:18:51 +0900 Subject: [PATCH 08/38] fix / text --- .../common/custom-css-extension/index.js | 23 ++----------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/src/extensions/common/custom-css-extension/index.js b/src/extensions/common/custom-css-extension/index.js index d3a1cd1d2..056936f84 100644 --- a/src/extensions/common/custom-css-extension/index.js +++ b/src/extensions/common/custom-css-extension/index.js @@ -6,7 +6,6 @@ import { addFilter } from '@wordpress/hooks'; import { PanelBody, Icon, - Button, ExternalLink, ToggleControl, } from '@wordpress/components'; @@ -14,7 +13,6 @@ import { InspectorControls } from '@wordpress/block-editor'; import { createHigherOrderComponent, useInstanceId } from '@wordpress/compose'; import { hasBlockSupport } from '@wordpress/blocks'; import { useEffect } from '@wordpress/element'; -import { addQueryArgs } from '@wordpress/url'; import { useSelect, useDispatch } from '@wordpress/data'; /** @@ -226,8 +224,8 @@ export const withInspectorControls = createHigherOrderComponent( -

- {__( - 'If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.', - 'vk-blocks' - )} -

- From b671c04210cc35d66953a3772862a71f8ed46199 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 13 Jan 2023 10:55:57 +0900 Subject: [PATCH 09/38] =?UTF-8?q?fix=20/=20custom=20store=20=E8=A8=B1?= =?UTF-8?q?=E5=8F=AF=E3=81=99=E3=82=8B=E3=82=AA=E3=83=97=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E5=80=A4=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php | 2 +- test/phpunit/pro/test-rest-api.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 7d5e3ba1a..1f13e77d8 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -139,7 +139,7 @@ public function block_editor_update_options( $request ) { $options = VK_Blocks_Options::get_options(); $waiting_lists = array(); foreach ( $options as $option_name => $value ) { - if ( ! in_array( $option_name, $this->allow_block_editor_option_lists ) ) { + if ( ! in_array( $option_name, self::$allow_block_editor_option_lists ) ) { $waiting_lists[ $option_name ] = $options[ $option_name ]; } } diff --git a/test/phpunit/pro/test-rest-api.php b/test/phpunit/pro/test-rest-api.php index 4eede31b2..b90ffe509 100644 --- a/test/phpunit/pro/test-rest-api.php +++ b/test/phpunit/pro/test-rest-api.php @@ -62,10 +62,10 @@ public function test_get_vk_options_value() { print '------------------------------------' . PHP_EOL; print 'RestAPITest::test_get_vk_options_value()' . PHP_EOL; print '------------------------------------' . PHP_EOL; - // var_dump('$vk_options_expect'); - // var_dump($vk_options_expect->{'data'}); - // var_dump('$actual'); - // var_dump($actual); + // var_dump('$vk_options_expect'); + // var_dump($vk_options_expect->{'data'}); + // var_dump('$actual'); + // var_dump($actual); $this->assertSame( $vk_options_expect->{'data'}, $actual ); } From 4975d27f6ce1ac3b1fc8829a686c84798e14d47f Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 2 Jun 2023 14:39:49 +0900 Subject: [PATCH 10/38] add / fontawesome-preset --- editor-css/_editor_before_icon_list.scss | 40 +- .../BlockMeta/class-vk-blocks-entrypoint.php | 10 +- inc/vk-blocks/class-vk-blocks-options.php | 63 +++ src/utils/font-awesome-new.js | 401 ++++++++++-------- 4 files changed, 321 insertions(+), 193 deletions(-) diff --git a/editor-css/_editor_before_icon_list.scss b/editor-css/_editor_before_icon_list.scss index da2cd565a..aa9896d51 100644 --- a/editor-css/_editor_before_icon_list.scss +++ b/editor-css/_editor_before_icon_list.scss @@ -3,40 +3,46 @@ /*-------------------------------------------*/ .vk-blocks-advanced-popover-control { .components-popover__content { - min-width: 260px; + min-width: 280px; margin-left: -46px !important; padding: 20px 15px; .vk_icon_list { + display: flex; + flex-wrap: wrap; + max-height: 300px; + overflow-y: scroll; margin-top: 5px; - .components-base-control__field, - .components-flex { - display: flex; - flex-wrap: wrap; - flex-direction: row; - gap: 0; - justify-content: left; - .components-radio-control__option { + .vk_icon_area { + margin-right: 7px; + .vk_icon_button { border: 1px solid #666; + color: inherit; width: 36px; height: 36px; border-radius: 3px; - margin-right: 7px; position: relative; - input { - display: none; - } - .svg-inline--fa, + box-shadow: none; i { font-size: 1.5em; position: absolute; top: 50%; left: 50%; + -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); } } - .components-radio-control__option:not(:last-child) { - margin-bottom: 4px; - } + .vk_icon_button_area { + display: flex; + margin-bottom: 3px; + .vk_icon_button_chevronLeft, + .vk_icon_button_closeSmall, + .vk_icon_button_chevronRight { + padding: 0; + min-width: auto; + width: 12px; + height: 12px; + } + } } } } diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 1f13e77d8..c4e43d392 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -92,7 +92,6 @@ public function update_vk_blocks_options( $request ) { $json_params = $request->get_json_params(); update_option( 'vk_blocks_options', $json_params['vkBlocksOption'] ); - update_option( 'vk_blocks_balloon_meta', $json_params['vkBlocksBalloonMeta'] ); return rest_ensure_response( array( @@ -108,6 +107,7 @@ public function update_vk_blocks_options( $request ) { */ public static $allow_block_editor_option_lists = array( 'show_custom_css_editor_flag', + 'icon_preset_lists', ); /** @@ -117,10 +117,10 @@ public function update_vk_blocks_options( $request ) { */ public static function block_editor_get_options() { $options = array(); - $options['vkBlocksOptions'] = VK_Blocks_Options::get_options(); - foreach ( $options['vkBlocksOptions'] as $option_name => $value ) { + $options['vkBlocksOption'] = VK_Blocks_Options::get_options(); + foreach ( $options['vkBlocksOption'] as $option_name => $value ) { if ( ! in_array( $option_name, self::$allow_block_editor_option_lists ) ) { - unset( $options['vkBlocksOptions'][ $option_name ] ); + unset( $options['vkBlocksOption'][ $option_name ] ); } } @@ -143,7 +143,7 @@ public function block_editor_update_options( $request ) { $waiting_lists[ $option_name ] = $options[ $option_name ]; } } - $completed_options = array_merge( $json_params['vkBlocksOptions'], $waiting_lists ); + $completed_options = array_merge( $json_params['vkBlocksOption'], $waiting_lists ); update_option( 'vk_blocks_options', $completed_options ); return rest_ensure_response( array( diff --git a/inc/vk-blocks/class-vk-blocks-options.php b/inc/vk-blocks/class-vk-blocks-options.php index 54345578f..f135bcf32 100644 --- a/inc/vk-blocks/class-vk-blocks-options.php +++ b/inc/vk-blocks/class-vk-blocks-options.php @@ -5,6 +5,8 @@ * @package vk-blocks */ +use function PHPSTORM_META\map; + /** * VK_Blocks_Options */ @@ -178,6 +180,60 @@ public static function get_vk_blocks_options_properties() { 'disable_block_lists' => array( 'type' => 'array', ), + 'custom_block_style_lists' => array( + 'type' => 'array', + 'items' => array( + 'type' => 'object', + 'properties' => array( + 'block_name' => array( + 'type' => 'string', + ), + 'property_name' => array( + 'type' => 'string', + ), + 'property_label' => array( + 'type' => 'string', + ), + 'property_inline_style' => array( + 'type' => 'string', + ), + 'property_transform_inline_style' => array( + 'type' => 'string', + ), + ), + ), + ), + 'balloon_meta_lists' => array( + 'type' => 'array', + 'items' => array( + 'type' => 'object', + 'properties' => array( + 'name' => array( + 'type' => 'string', + ), + 'src' => array( + 'type' => 'string', + ), + ), + ), + ), + 'disable_block_style_lists' => array( + 'type' => 'array', + 'items' => array( + 'type' => 'object', + 'properties' => array( + 'block_name' => array( + 'type' => 'string', + ), + 'property_name' => array( + 'type' => 'array', + ), + ), + ), + ), + 'icon_preset_lists' => array( + 'type' => 'array', + ), ); return $properties; } @@ -242,6 +298,13 @@ public static function get_vk_blocks_options_defaults( $activation = false ) { ), ), 'disable_block_lists' => $activation ? self::get_deprecated_lists() : array(), + 'custom_block_style_lists' => array(), + 'balloon_meta_lists' => array(), + 'disable_block_style_lists' => array(), + 'icon_preset_lists' => array( + '', + '', + ), ); return $default; } diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index e6486b5f8..3506ffd27 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -1,15 +1,71 @@ +/** + * WordPress dependencies + */ import { __ } from '@wordpress/i18n'; import { BaseControl, - RadioControl, + ToggleControl, TextControl, SelectControl, Button, ExternalLink, } from '@wordpress/components'; import { useState, useEffect } from '@wordpress/element'; -import AdvancedPopOverControl from '@vkblocks/components/advanced-popover-control'; import apiFetch from '@wordpress/api-fetch'; +import { useSelect, useDispatch } from '@wordpress/data'; +import { chevronLeft, chevronRight, closeSmall } from '@wordpress/icons'; +import { store as coreStore } from '@wordpress/core-data'; + +/** + * External dependencies + */ +import parse from 'html-react-parser'; + +/** + * Internal dependencies +*/ +import AdvancedPopOverControl from '@vkblocks/components/advanced-popover-control'; +import { STORE_NAME } from '@vkblocks/extensions/store/constants'; +import { updateOptions } from '@vkblocks/utils/api'; + +const FontAwesomeIconList = [ + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', +]; export const FontAwesome = (props) => { const { attributeName, attributes, setAttributes } = props; @@ -24,6 +80,46 @@ export const FontAwesome = (props) => { const REST_API_ROUTE = '/vk-blocks/v1/options/vk_font_awesome_version/'; const [isWaiting, setIsWaiting] = useState(false); const [version, setVersion] = useState(); + const [isEditMode, setIsEditMode] = useState(false); + + const { canUserEdit, optionObj } = useSelect((select) => { + const { canUser } = + select( coreStore ); + const canEdit = canUser( 'update', 'settings' ); + + const { getOptions } = select(STORE_NAME); + return { + canUserEdit: canEdit, + optionObj: getOptions(), + }; + }, []); + + const { setOptions } = useDispatch(STORE_NAME); + + const updateSettings = (value) => { + optionObj?.vkBlocksOption.icon_preset_lists?.push(value); + const newObj = { + ...optionObj, + vkBlocksOption: { + ...optionObj.vkBlocksOption, + }, + }; + setOptions(newObj); + updateOptions(newObj); + }; + + const deleteSettings = (value) => { + const index = optionObj.vkBlocksOption.icon_preset_lists.indexOf(value); + optionObj.vkBlocksOption.icon_preset_lists.splice(index, 1) + const newObj = { + ...optionObj, + vkBlocksOption: { + ...optionObj.vkBlocksOption, + }, + }; + setOptions(newObj); + updateOptions(newObj); + }; // Set options to state. useEffect(() => { @@ -48,6 +144,10 @@ export const FontAwesome = (props) => { }); }; + const canAddIconPreset = attributes[attributeName] && !optionObj?.vkBlocksOption?.icon_preset_lists.some(list=> list === attributes[attributeName]); + + const existsIconPreset = optionObj?.vkBlocksOption?.icon_preset_lists.length !== 0; + const render = ( <> { id={`vk_fa_icon_list`} label={__('Icon', 'vk-blocks') + ' ( ' + iconFamily + ' ) '} > - , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: ( - - ), - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: ( - - ), - value: '', - }, - { - label: ( - - ), - value: '', - }, - { - label: ( - - ), - value: '', - }, - { - label: ( - - ), - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - - { - label: ( - - ), - value: '', - }, - { - label: ( - - ), - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - { - label: , - value: '', - }, - ]} - onChange={(value) => - setAttributes({ [attributeName]: value }) - } - /> +
+ {optionObj?.vkBlocksOption?.icon_preset_lists && Object.keys(optionObj?.vkBlocksOption?.icon_preset_lists).map( + (key, index) => { + const iconPreset = + optionObj.vkBlocksOption.icon_preset_lists[key]; + return ( +
+ + {isEditMode && +
+
+ } +
+ ); + } + )} + {Object.keys(FontAwesomeIconList).map( + (key, index) => { + const iconPreset = + FontAwesomeIconList[key]; + return ( +
+ +
+ ); + } + )} +

{ 'vk-blocks' )}

+ {canUserEdit && (canAddIconPreset || existsIconPreset) && +
+ } + {canUserEdit && + + } + {canUserEdit && existsIconPreset && + + setIsEditMode( !isEditMode )} + /> + }
Date: Fri, 2 Jun 2023 14:40:11 +0900 Subject: [PATCH 11/38] add/fontawesome-preset --- src/utils/font-awesome-new.js | 255 ++++++++++++++++++---------------- 1 file changed, 137 insertions(+), 118 deletions(-) diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 3506ffd27..e71dbd88d 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -23,7 +23,7 @@ import parse from 'html-react-parser'; /** * Internal dependencies -*/ + */ import AdvancedPopOverControl from '@vkblocks/components/advanced-popover-control'; import { STORE_NAME } from '@vkblocks/extensions/store/constants'; import { updateOptions } from '@vkblocks/utils/api'; @@ -83,9 +83,8 @@ export const FontAwesome = (props) => { const [isEditMode, setIsEditMode] = useState(false); const { canUserEdit, optionObj } = useSelect((select) => { - const { canUser } = - select( coreStore ); - const canEdit = canUser( 'update', 'settings' ); + const { canUser } = select(coreStore); + const canEdit = canUser('update', 'settings'); const { getOptions } = select(STORE_NAME); return { @@ -110,7 +109,7 @@ export const FontAwesome = (props) => { const deleteSettings = (value) => { const index = optionObj.vkBlocksOption.icon_preset_lists.indexOf(value); - optionObj.vkBlocksOption.icon_preset_lists.splice(index, 1) + optionObj.vkBlocksOption.icon_preset_lists.splice(index, 1); const newObj = { ...optionObj, vkBlocksOption: { @@ -144,9 +143,14 @@ export const FontAwesome = (props) => { }); }; - const canAddIconPreset = attributes[attributeName] && !optionObj?.vkBlocksOption?.icon_preset_lists.some(list=> list === attributes[attributeName]); + const canAddIconPreset = + attributes[attributeName] && + !optionObj?.vkBlocksOption?.icon_preset_lists.some( + (list) => list === attributes[attributeName] + ); - const existsIconPreset = optionObj?.vkBlocksOption?.icon_preset_lists.length !== 0; + const existsIconPreset = + optionObj?.vkBlocksOption?.icon_preset_lists.length !== 0; const render = ( <> @@ -155,104 +159,126 @@ export const FontAwesome = (props) => { id={`vk_fa_icon_list`} label={__('Icon', 'vk-blocks') + ' ( ' + iconFamily + ' ) '} > -
- {optionObj?.vkBlocksOption?.icon_preset_lists && Object.keys(optionObj?.vkBlocksOption?.icon_preset_lists).map( - (key, index) => { - const iconPreset = - optionObj.vkBlocksOption.icon_preset_lists[key]; - return ( -
- - {isEditMode && -
-
+
+ {optionObj?.vkBlocksOption?.icon_preset_lists && + Object.keys( + optionObj?.vkBlocksOption?.icon_preset_lists + ).map((key, index) => { + const iconPreset = + optionObj.vkBlocksOption.icon_preset_lists[key]; + return ( +
+
- ); - } - )} - {Object.keys(FontAwesomeIconList).map( - (key, index) => { - const iconPreset = - FontAwesomeIconList[key]; - return ( -
- -
+ > + {iconPreset && parse(`${iconPreset}`)} + + {isEditMode && ( +
+
+ )} +
); - } - )} + })} + {Object.keys(FontAwesomeIconList).map((key, index) => { + const iconPreset = FontAwesomeIconList[key]; + return ( +
+ +
+ ); + })}

@@ -273,21 +299,17 @@ export const FontAwesome = (props) => { 'vk-blocks' )}

- {canUserEdit && (canAddIconPreset || existsIconPreset) && -
- } - {canUserEdit && + {canUserEdit && (canAddIconPreset || existsIconPreset) &&
} + {canUserEdit && ( - } - {canUserEdit && existsIconPreset && + )} + {canUserEdit && existsIconPreset && ( { // 'Icons Lists Edit mode', 'vk-blocks' )} - checked={ - isEditMode - } - onChange={() => - setIsEditMode( !isEditMode )} + checked={isEditMode} + onChange={() => setIsEditMode(!isEditMode)} /> - } + )}
Date: Fri, 2 Jun 2023 14:52:25 +0900 Subject: [PATCH 12/38] add/fontawesome-preset --- .../common/custom-css-extension/index.js | 33 ++----------------- src/utils/font-awesome-new.js | 4 +-- 2 files changed, 5 insertions(+), 32 deletions(-) diff --git a/src/extensions/common/custom-css-extension/index.js b/src/extensions/common/custom-css-extension/index.js index 2b7822e1f..7a804a91d 100644 --- a/src/extensions/common/custom-css-extension/index.js +++ b/src/extensions/common/custom-css-extension/index.js @@ -8,7 +8,7 @@ import { InspectorControls, transformStyles } from '@wordpress/block-editor'; import { createHigherOrderComponent, useInstanceId } from '@wordpress/compose'; import { hasBlockSupport } from '@wordpress/blocks'; import { useEffect } from '@wordpress/element'; -import { useSelect, useDispatch } from '@wordpress/data'; +import { addQueryArgs } from '@wordpress/url'; /** * External dependencies @@ -21,8 +21,7 @@ import classnames from 'classnames'; import { CodeMirrorCss } from '@vkblocks/components/code-mirror-css'; import { emptyStringToUndefined } from '@vkblocks/utils/empty-string-to-undefined'; import { ReactComponent as IconSVG } from './icon.svg'; -import { STORE_NAME } from '@vkblocks/extensions/store/constants'; -import { updateOptions } from '@vkblocks/utils/api'; +/*globals vk_blocks_params */ export const inString = (str, keyword) => { return str.indexOf(keyword) !== -1; @@ -165,26 +164,6 @@ export const withInspectorControls = createHigherOrderComponent( }; } - const { optionObj } = useSelect((select) => { - const { getOptions } = select(STORE_NAME); - return { - optionObj: getOptions(), - }; - }, []); - const { setOptions } = useDispatch(STORE_NAME); - - const updateSettings = (value) => { - const newObj = { - ...optionObj, - vkBlocksOptions: { - ...optionObj.vkBlocksOptions, - show_custom_css_editor_flag: value ? 'show' : 'hide', - }, - }; - setOptions(newObj); - updateOptions(newObj); - }; - return ( <> @@ -268,17 +247,11 @@ const withElementsStyles = createHigherOrderComponent( const uniqueClass = `vk_custom_css_${id}`; const { vkbCustomCss } = attributes; - const { vkBlocksOptions } = useSelect((select) => { - const { getOptions } = select(STORE_NAME); - return { - vkBlocksOptions: getOptions().vkBlocksOptions, - }; - }, []); // editor用のクラス名を追加 const customCssClass = classnames(props.className, { [uniqueClass]: existsCss(vkbCustomCss), [`vk_edit_custom_css`]: - vkBlocksOptions?.show_custom_css_editor_flag === 'show' && + vk_blocks_params.show_custom_css_editor_flag === 'show' && existsCss(vkbCustomCss), }); diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 87b480696..42c0c8a85 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -304,7 +304,7 @@ export const FontAwesome = (props) => { disabled={!canAddIconPreset} onClick={() => updateSettings(attributes[attributeName])} > - {__('設定アイコンをアイコンリストに追加', 'vk-blocks')} + {__('設定アイコンをアイコンリストに追加', 'vk-blocks-pro')} )} {canUserEdit && existsIconPreset && ( @@ -313,7 +313,7 @@ export const FontAwesome = (props) => { label={__( 'アイコンリスト 編集モード', // 'Icons Lists Edit mode', - 'vk-blocks' + 'vk-blocks-pro' )} checked={isEditMode} onChange={() => setIsEditMode(!isEditMode)} From 78afb51c7181fe317726c28dcae2ded86f31a591 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 2 Jun 2023 14:53:38 +0900 Subject: [PATCH 13/38] add/fontawesome-preset --- .../App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php | 2 +- inc/vk-blocks/class-vk-blocks-options.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 2d9986332..6fef73664 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -90,7 +90,7 @@ public function update_vk_blocks_options( $request ) { * @return \WP_REST_Response|\WP_Error */ public static function block_editor_get_options() { - $options = array(); + $options = array(); $options['vkBlocksOption'] = VK_Blocks_Options::get_options(); foreach ( $options['vkBlocksOption'] as $option_name => $value ) { if ( ! in_array( $option_name, self::$allow_block_editor_option_lists ) ) { diff --git a/inc/vk-blocks/class-vk-blocks-options.php b/inc/vk-blocks/class-vk-blocks-options.php index e3dfd8592..7bbed6dbd 100644 --- a/inc/vk-blocks/class-vk-blocks-options.php +++ b/inc/vk-blocks/class-vk-blocks-options.php @@ -330,8 +330,8 @@ public static function get_vk_blocks_options_properties() { ), ), ), - 'icon_preset_lists' => array( - 'type' => 'array', + 'icon_preset_lists' => array( + 'type' => 'array', ), ); return $properties; @@ -404,7 +404,7 @@ public static function get_vk_blocks_options_defaults( $activation = false ) { 'custom_block_style_lists' => array(), 'balloon_meta_lists' => array(), 'disable_block_style_lists' => array(), - 'icon_preset_lists' => array( + 'icon_preset_lists' => array( '', '', ), From 06a5b3cce533c2d82e7a6860db60b37962f24b83 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 2 Jun 2023 14:54:56 +0900 Subject: [PATCH 14/38] add/fontawesome-preset --- inc/vk-blocks/class-vk-blocks-options.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/inc/vk-blocks/class-vk-blocks-options.php b/inc/vk-blocks/class-vk-blocks-options.php index 7bbed6dbd..8a02fdef8 100644 --- a/inc/vk-blocks/class-vk-blocks-options.php +++ b/inc/vk-blocks/class-vk-blocks-options.php @@ -5,8 +5,6 @@ * @package vk-blocks */ -use function PHPSTORM_META\map; - /** * VK_Blocks_Options */ From e8fdb3e9c5bccb2171b2e01f77c1c2330b91d9ca Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 2 Jun 2023 15:21:20 +0900 Subject: [PATCH 15/38] add/fontawesome-preset --- .../BlockMeta/class-vk-blocks-entrypoint.php | 1 - inc/vk-blocks/class-vk-blocks-options.php | 5 +- test/phpunit/pro/test-get-options.php | 122 ++++++++++++++++++ 3 files changed, 123 insertions(+), 5 deletions(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 6fef73664..472f93dfd 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -80,7 +80,6 @@ public function update_vk_blocks_options( $request ) { * @var array */ public static $allow_block_editor_option_lists = array( - 'show_custom_css_editor_flag', 'icon_preset_lists', ); diff --git a/inc/vk-blocks/class-vk-blocks-options.php b/inc/vk-blocks/class-vk-blocks-options.php index 8a02fdef8..b50b3e8a8 100644 --- a/inc/vk-blocks/class-vk-blocks-options.php +++ b/inc/vk-blocks/class-vk-blocks-options.php @@ -402,10 +402,7 @@ public static function get_vk_blocks_options_defaults( $activation = false ) { 'custom_block_style_lists' => array(), 'balloon_meta_lists' => array(), 'disable_block_style_lists' => array(), - 'icon_preset_lists' => array( - '', - '', - ), + 'icon_preset_lists' => array(), ); return $default; } diff --git a/test/phpunit/pro/test-get-options.php b/test/phpunit/pro/test-get-options.php index 4173c96c4..e6691a5e5 100644 --- a/test/phpunit/pro/test-get-options.php +++ b/test/phpunit/pro/test-get-options.php @@ -111,6 +111,7 @@ public function test_vk_blocks_get_options() { 'custom_block_style_lists' => array(), 'balloon_meta_lists' => array(), 'disable_block_style_lists' => array(), + 'icon_preset_lists' => array(), ), ), // New FAQ アコーディオン機能 v0.46.0 @@ -699,6 +700,117 @@ public function test_vk_blocks_get_options() { ), 'correct' => array(), ), + // アイコンプリセット + array( + 'option_check_target' => 'icon_preset_lists', + 'option' => array( + 'balloon_border_width' => 2, + 'margin_unit' => 'px', + 'margin_size' => array( + 'xl' => array( + 'mobile' => 1, + 'tablet' => 2, + 'pc' => 3, + 'custom' => 'var(--wp--custom--spacing--xx-small)', + ), + 'lg' => array( + 'mobile' => 1, + 'tablet' => 2, + 'pc' => 3, + 'custom' => 'var(--wp--custom--spacing--xx-small)', + ), + 'md' => array( + 'mobile' => 1, + 'tablet' => 2, + 'pc' => 3, + 'custom' => 'var(--wp--custom--spacing--xx-small)', + ), + 'sm' => array( + 'mobile' => 1, + 'tablet' => 2, + 'pc' => 3, + 'custom' => 'var(--wp--custom--spacing--xx-small)', + ), + 'xs' => array( + 'mobile' => 1, + 'tablet' => 2, + 'pc' => 3, + 'custom' => 'var(--wp--custom--spacing--xx-small)', + ), + ), + 'load_separate_option' => true, + 'vk_blocks_pro_license_key' => 'test_license_key', + 'new_faq_accordion' => 'open', + 'show_custom_css_editor_flag' => 'hide', + 'custom_format_lists' => array( + array( + 'title' => '書式設定1', + 'font_weight_bold' => true, + 'font_italic' => true, + 'font_strikethrough' => true, + 'color' => '#fff', + 'background_color' => '#fff', + 'is_active_highlighter' => true, + 'highlighter' => '#fffd6b', + 'font_size' => '#fff', + 'nowrap' => true, + 'class_name' => 'vk-format--1', + 'custom_css' => '.vk-format--1 { border:1px red solid; }', + ), + array( + 'title' => '書式設定2', + 'font_weight_bold' => true, + 'font_italic' => true, + 'font_strikethrough' => true, + 'color' => '#fff', + 'background_color' => '#fff', + 'is_active_highlighter' => true, + 'highlighter' => '#fffd6b', + 'font_size' => '#fff', + 'nowrap' => true, + 'class_name' => 'vk-format--2', + 'custom_css' => null, + ), + ), + 'disable_block_lists' => array( + 'vk-blocks/pr-blocks', + 'vk-blocks/pr-content', + 'vk-blocks/staff', + 'vk-blocks/card', + 'vk-blocks/icon-card', + ), + 'custom_block_style_lists' => array( + array( + 'block_name' => 'core/paragraph', + 'property_name' => 'vk-block-style-paragraph-1', + 'property_label' => '段落カスタムブロックスタイル1', + 'property_inline_style' => '.vk-block-style-paragraph-1 { color:red; }', + 'property_transform_inline_style' => '.editor-styles-wrapper .vk-block-style-paragraph-1 { color:red; }', + ), + ), + 'balloon_meta_lists' => array( + array( + 'name' => 'test-name-1', + 'src' => 'https://www.vektor-inc.co.jp/wp-content/uploads/2020/04/vws_logo_2020_og.png', + ), + ), + 'disable_block_style_lists' => array( + array( + 'block_name'=> 'core/table', + 'property_name'=> array( + 'vk-table-border-top-bottom', + ), + ), + array( + 'block_name'=> 'core/image', + 'property_name'=> array( + 'vk-image-rounded', + ), + ), + ), + ), + 'correct' => array(), + ), // 全てのオプション値を変更した時 array( 'option' => array( @@ -806,6 +918,11 @@ public function test_vk_blocks_get_options() { ), ), ), + 'icon_preset_lists' => array( + '', + '', + '', + ), ), 'correct' => array( 'balloon_border_width' => 2, @@ -912,6 +1029,11 @@ public function test_vk_blocks_get_options() { ), ), ), + 'icon_preset_lists' => array( + '', + '', + '', + ), ), ), ); From 0b758b0b55df25d6440ed0c5e77951cfdda283d3 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 6 Jun 2023 09:37:17 +0900 Subject: [PATCH 16/38] fix permission --- .../App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 472f93dfd..a41d5ab13 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -44,14 +44,14 @@ public function vk_blocks_rest_api_init() { 'methods' => 'GET', 'callback' => array( $this, 'block_editor_get_options' ), 'permission_callback' => function () { - return current_user_can( 'edit_posts' ); + return current_user_can( 'edit_theme_options' ); }, ), array( 'methods' => 'POST', 'callback' => array( $this, 'block_editor_update_options' ), 'permission_callback' => function () { - return current_user_can( 'edit_posts' ); + return current_user_can( 'edit_theme_options' ); }, ), ) From b8789e1cc2d3b9966563e8d17331be1f3426bac0 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 16 Jun 2023 11:46:50 +0900 Subject: [PATCH 17/38] add/fontawesome-preset --- src/utils/font-awesome-new.js | 87 +++++++++++++++++++---------------- 1 file changed, 47 insertions(+), 40 deletions(-) diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 42c0c8a85..a047b4604 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -297,49 +297,56 @@ export const FontAwesome = (props) => { {__('Ex) ', 'vk-blocks-pro')} {''}

- {canUserEdit && (canAddIconPreset || existsIconPreset) &&
} {canUserEdit && ( - - )} - {canUserEdit && existsIconPreset && ( - + {(canAddIconPreset || existsIconPreset) &&
} + + {existsIconPreset && ( + setIsEditMode(!isEditMode)} + /> )} - checked={isEditMode} - onChange={() => setIsEditMode(!isEditMode)} - /> +
+ setVersion(value)} + className="mt-1" + /> +

+ {__( + 'When you click save button, the window will be reloaded and this setting will be applied.', + 'vk-blocks-pro' + )} +

+ + )} -
- setVersion(value)} - className="mt-1" - /> -

- {__( - 'When you click save button, the window will be reloaded and this setting will be applied.', - 'vk-blocks-pro' - )} -

- ); From 63492df793c844eb77aa79e6ec49ff0021c297cd Mon Sep 17 00:00:00 2001 From: shimotmk Date: Mon, 19 Jun 2023 16:06:29 +0900 Subject: [PATCH 18/38] =?UTF-8?q?add/fontawesome-preset=20=E9=85=8D?= =?UTF-8?q?=E5=88=97=E3=81=AE=E7=A8=AE=E9=A1=9E=E3=82=92=E5=88=86=E3=81=91?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/admin/import-export/import-form.js | 115 ++++++++++++++++++++++--- src/admin/import-export/index.js | 17 +++- 2 files changed, 116 insertions(+), 16 deletions(-) diff --git a/src/admin/import-export/import-form.js b/src/admin/import-export/import-form.js index fbc7fcbe1..84547edc7 100644 --- a/src/admin/import-export/import-form.js +++ b/src/admin/import-export/import-form.js @@ -81,10 +81,10 @@ export default function ImportForm() { const updateVkBlocksOptions = _vkBlocksOption; // importMethodがaddだったら追加する _importSettings.forEach(({ options, isImport }) => { - options.forEach(({ name, uniqKey, importMethod }, id) => { + options.forEach(({ name, associativeArray, importMethod }, id) => { if (!!isImport) { if (importMethod === 'add') { - if ('uniqKey' in options[id]) { + if ('associativeArray' in options[id]) { // 識別子が被っていないもののみ追加する const addOption = []; if ( @@ -99,10 +99,10 @@ export default function ImportForm() { (vkBlocksOptionElement) => { if ( uploadedOptionElement[ - uniqKey + associativeArray ] === vkBlocksOptionElement[ - uniqKey + associativeArray ] ) { isDuplicate = true; @@ -118,10 +118,40 @@ export default function ImportForm() { ); } updateVkBlocksOptions[name].push(...addOption); - } else { + } else if ('multidimensionalArray' in options[id]) { updateVkBlocksOptions[name].push( ..._uploadedVkBlocksOptions[name] ); + } else if ('indexedArray' in options[id]) { + // 識別子が被っていないもののみ追加する + const addOption = []; + if ( + _uploadedVkBlocksOptions[name] && + _uploadedVkBlocksOptions[name].length > 0 && + _vkBlocksOption[name] + ) { + _uploadedVkBlocksOptions[name].forEach( + (uploadedOptionElement) => { + let isDuplicate = false; + _vkBlocksOption[name].forEach( + (vkBlocksOptionElement) => { + if ( + uploadedOptionElement === + vkBlocksOptionElement + ) { + isDuplicate = true; + } + } + ); + if (!isDuplicate) { + addOption.push( + uploadedOptionElement + ); + } + } + ); + } + updateVkBlocksOptions[name].push(...addOption); } } else { // 上書きする @@ -281,7 +311,7 @@ export default function ImportForm() { ( { name, - uniqKey = false, + associativeArray = false, importMethod, }, id @@ -332,7 +362,7 @@ export default function ImportForm() { .options[id] .importMethod === 'add' && - 'uniqKey' in + 'associativeArray' in options[id] && vkBlocksOption[ name @@ -344,10 +374,10 @@ export default function ImportForm() { uploadKey ) => uploadKey[ - uniqKey + associativeArray ] === preKey[ - uniqKey + associativeArray ] ) ) && ( @@ -362,7 +392,7 @@ export default function ImportForm() { .options[id] .importMethod === 'add' && - 'uniqKey' in + 'associativeArray' in options[id] && vkBlocksOption[ name @@ -376,10 +406,10 @@ export default function ImportForm() { ) => { return ( uploadKey[ - uniqKey + associativeArray ] === preKey[ - uniqKey + associativeArray ] && (
{ uploadKey[ - uniqKey + associativeArray ] }
@@ -397,6 +427,65 @@ export default function ImportForm() { } ); })} + {importSettings[index] + .options[id] + .importMethod === + 'add' && + 'indexedArray' in + options[id] && + vkBlocksOption[ + name + ].some((preKey) => + uploadedVkBlocksOptions[ + name + ].some( + ( + uploadKey + ) => + uploadKey === + preKey + ) + ) && ( +

+ {__( + 'The following data will not be imported because the identifiers are covered.', + 'vk-blocks-pro' + )} +

+ )} + {importSettings[index] + .options[id] + .importMethod === + 'add' && + 'indexedArray' in + options[id] && + vkBlocksOption[ + name + ].map((preKey) => { + return uploadedVkBlocksOptions[ + name + ].map( + ( + uploadKey, + uploadId + ) => { + return ( + uploadKey === + preKey && ( +
+ { + uploadKey + } +
+ ) + ); + } + ); + })}
) )} diff --git a/src/admin/import-export/index.js b/src/admin/import-export/index.js index adc8c0ddc..97edcf615 100644 --- a/src/admin/import-export/index.js +++ b/src/admin/import-export/index.js @@ -29,7 +29,7 @@ export const OPTION_DEFAULT_SETTINGS = [ }, { name: 'balloon_meta_lists', - isArray: true, + multidimensionalArray: true, importMethod: 'add', }, ], @@ -40,7 +40,7 @@ export const OPTION_DEFAULT_SETTINGS = [ options: [ { name: 'custom_format_lists', - isArray: true, + associativeArray: true, uniqKey: 'class_name', importMethod: 'add', }, @@ -53,7 +53,7 @@ export const OPTION_DEFAULT_SETTINGS = [ options: [ { name: 'custom_block_style_lists', - isArray: true, + associativeArray: true, uniqKey: 'property_name', importMethod: 'add', }, @@ -120,6 +120,17 @@ export const OPTION_DEFAULT_SETTINGS = [ ], isImport: true, }, + { + groupTitle: __('icon preset lists Setting', 'vk-blocks-pro'), + options: [ + { + name: 'icon_preset_lists', + indexedArray: true, + importMethod: 'add', + }, + ], + isImport: true, + }, ]; export default function AdminImportExport() { From 2decede1a5bc163f3f6f769f8c313f77a51d0416 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Wed, 21 Jun 2023 10:33:49 +0900 Subject: [PATCH 19/38] =?UTF-8?q?add/fontawesome-preset=20=E9=85=8D?= =?UTF-8?q?=E5=88=97=E3=81=AE=E7=A8=AE=E9=A1=9E=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/admin/import-export/import-form.js | 68 ++++++++++++++------------ src/admin/import-export/index.js | 2 +- 2 files changed, 37 insertions(+), 33 deletions(-) diff --git a/src/admin/import-export/import-form.js b/src/admin/import-export/import-form.js index 84547edc7..cfeea54c8 100644 --- a/src/admin/import-export/import-form.js +++ b/src/admin/import-export/import-form.js @@ -85,43 +85,45 @@ export default function ImportForm() { if (!!isImport) { if (importMethod === 'add') { if ('associativeArray' in options[id]) { - // 識別子が被っていないもののみ追加する - const addOption = []; - if ( - _uploadedVkBlocksOptions[name] && - _uploadedVkBlocksOptions[name].length > 0 && - _vkBlocksOption[name] - ) { - _uploadedVkBlocksOptions[name].forEach( - (uploadedOptionElement) => { - let isDuplicate = false; - _vkBlocksOption[name].forEach( - (vkBlocksOptionElement) => { - if ( - uploadedOptionElement[ - associativeArray - ] === - vkBlocksOptionElement[ - associativeArray - ] - ) { - isDuplicate = true; + if ( 'uniqKey' in options[id] ) { + // 識別子が被っていないもののみ追加する + const addOption = []; + if ( + _uploadedVkBlocksOptions[name] && + _uploadedVkBlocksOptions[name].length > 0 && + _vkBlocksOption[name] + ) { + _uploadedVkBlocksOptions[name].forEach( + (uploadedOptionElement) => { + let isDuplicate = false; + _vkBlocksOption[name].forEach( + (vkBlocksOptionElement) => { + if ( + uploadedOptionElement[ + associativeArray + ] === + vkBlocksOptionElement[ + associativeArray + ] + ) { + isDuplicate = true; + } } - } - ); - if (!isDuplicate) { - addOption.push( - uploadedOptionElement ); + if (!isDuplicate) { + addOption.push( + uploadedOptionElement + ); + } } - } + ); + } + updateVkBlocksOptions[name].push(...addOption); + } else { + updateVkBlocksOptions[name].push( + ..._uploadedVkBlocksOptions[name] ); } - updateVkBlocksOptions[name].push(...addOption); - } else if ('multidimensionalArray' in options[id]) { - updateVkBlocksOptions[name].push( - ..._uploadedVkBlocksOptions[name] - ); } else if ('indexedArray' in options[id]) { // 識別子が被っていないもののみ追加する const addOption = []; @@ -312,11 +314,13 @@ export default function ImportForm() { { name, associativeArray = false, + uniqKey = false, importMethod, }, id ) => checked && + uniqKey && importMethod && (
Date: Wed, 21 Jun 2023 10:34:20 +0900 Subject: [PATCH 20/38] =?UTF-8?q?add/fontawesome-preset=20=E9=85=8D?= =?UTF-8?q?=E5=88=97=E3=81=AE=E7=A8=AE=E9=A1=9E=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/admin/import-export/import-form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin/import-export/import-form.js b/src/admin/import-export/import-form.js index cfeea54c8..672e2e2a0 100644 --- a/src/admin/import-export/import-form.js +++ b/src/admin/import-export/import-form.js @@ -85,7 +85,7 @@ export default function ImportForm() { if (!!isImport) { if (importMethod === 'add') { if ('associativeArray' in options[id]) { - if ( 'uniqKey' in options[id] ) { + if ('uniqKey' in options[id]) { // 識別子が被っていないもののみ追加する const addOption = []; if ( From ce90141428b9d3b993d678cef95df589375eabb0 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 27 Jun 2023 15:25:55 +0900 Subject: [PATCH 21/38] fix custom store --- src/blocks/bundle.js | 6 ++- src/extensions/store/constants.js | 6 --- src/extensions/store/index.js | 76 ------------------------------- src/utils/font-awesome-new.js | 2 +- 4 files changed, 6 insertions(+), 84 deletions(-) delete mode 100644 src/extensions/store/constants.js delete mode 100644 src/extensions/store/index.js diff --git a/src/blocks/bundle.js b/src/blocks/bundle.js index 6f45d34d6..380e7199f 100644 --- a/src/blocks/bundle.js +++ b/src/blocks/bundle.js @@ -35,10 +35,14 @@ import * as sliderItem from './slider-item'; import * as spacer from './spacer'; import * as staff from './staff'; +/** + * Store + */ +import '@vkblocks/utils/store'; + /** * Extensions */ -import '@vkblocks/extensions/store'; import '@vkblocks/extensions/core/group/style'; import '@vkblocks/extensions/core/list/style'; import '@vkblocks/extensions/common/hidden-extension'; diff --git a/src/extensions/store/constants.js b/src/extensions/store/constants.js deleted file mode 100644 index e9edb663c..000000000 --- a/src/extensions/store/constants.js +++ /dev/null @@ -1,6 +0,0 @@ -/** - * The identifier for the data store. - * - * @type {string} - */ -export const STORE_NAME = 'vk-blocks/block-editor'; diff --git a/src/extensions/store/index.js b/src/extensions/store/index.js deleted file mode 100644 index 364f570df..000000000 --- a/src/extensions/store/index.js +++ /dev/null @@ -1,76 +0,0 @@ -/** - * WordPress dependencies - */ -import { createReduxStore, register } from '@wordpress/data'; -import apiFetch from '@wordpress/api-fetch'; - -/** - * Internal dependencies - */ -import { STORE_NAME } from './constants'; -import { API_PATH } from '@vkblocks/utils/api/constants'; - -const DEFAULT_STATE = { - options: {}, -}; - -/** - * Store definition for the block-editor namespace. - * - * @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/data/README.md#createReduxStore - * - * @type {Object} - */ -const actions = { - setOptions(options) { - return { - type: 'SET_OPTIONS', - options, - }; - }, - - fetchFromAPI(path) { - return { - type: 'FETCH_FROM_API', - path, - }; - }, -}; - -const store = createReduxStore(STORE_NAME, { - reducer(state = DEFAULT_STATE, action) { - switch (action.type) { - case 'SET_OPTIONS': - return { - ...state, - options: action.options, - }; - } - - return state; - }, - - actions, - - selectors: { - getOptions(state) { - const { options } = state; - return options; - }, - }, - - controls: { - FETCH_FROM_API(action) { - return apiFetch({ path: action.path }); - }, - }, - - resolvers: { - *getOptions() { - const options = yield actions.fetchFromAPI(API_PATH); - return actions.setOptions(options); - }, - }, -}); - -register(store); diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index a047b4604..13f7507f2 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -25,7 +25,7 @@ import parse from 'html-react-parser'; * Internal dependencies */ import AdvancedPopOverControl from '@vkblocks/components/advanced-popover-control'; -import { STORE_NAME } from '@vkblocks/extensions/store/constants'; +import { STORE_NAME } from '@vkblocks/utils/store/constants'; import { updateOptions } from '@vkblocks/utils/api'; const FontAwesomeIconList = [ From 96549e9eda05e5fb26e4c7ded161a2ed88d94f43 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 27 Jun 2023 15:36:50 +0900 Subject: [PATCH 22/38] add/fontawesome-preset --- .../BlockMeta/class-vk-blocks-entrypoint.php | 71 ------------------- src/utils/api/constants.js | 6 -- src/utils/api/index.js | 17 ----- src/utils/font-awesome-new.js | 2 +- src/utils/store/index.js | 8 +++ 5 files changed, 9 insertions(+), 95 deletions(-) delete mode 100644 src/utils/api/constants.js delete mode 100644 src/utils/api/index.js diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index 5024b9a30..bbd2c5247 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -43,26 +43,6 @@ public function vk_blocks_rest_api_init() { ) ); - register_rest_route( - 'vk-blocks/v1', - '/block-editor-options', - array( - array( - 'methods' => 'GET', - 'callback' => array( $this, 'block_editor_get_options' ), - 'permission_callback' => function () { - return current_user_can( 'edit_theme_options' ); - }, - ), - array( - 'methods' => 'POST', - 'callback' => array( $this, 'block_editor_update_options' ), - 'permission_callback' => function () { - return current_user_can( 'edit_theme_options' ); - }, - ), - ) - ); } /** @@ -92,55 +72,4 @@ public function update_vk_blocks_options( $request ) { ); } - /** - * Storeの読み書きを許可するvk_blocks_optionsのオプションリスト - * - * @var array - */ - public static $allow_block_editor_option_lists = array( - 'icon_preset_lists', - ); - - /** - * Get Option Callback - * - * @return \WP_REST_Response|\WP_Error - */ - public static function block_editor_get_options() { - $options = array(); - $options['vkBlocksOption'] = VK_Blocks_Options::get_options(); - foreach ( $options['vkBlocksOption'] as $option_name => $value ) { - if ( ! in_array( $option_name, self::$allow_block_editor_option_lists ) ) { - unset( $options['vkBlocksOption'][ $option_name ] ); - } - } - - return rest_ensure_response( $options ); - } - - /** - * Update options Callback - * - * @param object $request — . - * @return \WP_REST_Response|\WP_Error - */ - public function block_editor_update_options( $request ) { - $json_params = $request->get_json_params(); - - $options = VK_Blocks_Options::get_options(); - $waiting_lists = array(); - foreach ( $options as $option_name => $value ) { - if ( ! in_array( $option_name, self::$allow_block_editor_option_lists ) ) { - $waiting_lists[ $option_name ] = $options[ $option_name ]; - } - } - $completed_options = array_merge( $json_params['vkBlocksOption'], $waiting_lists ); - update_option( 'vk_blocks_options', $completed_options ); - return rest_ensure_response( - array( - 'success' => true, - ) - ); - } - } diff --git a/src/utils/api/constants.js b/src/utils/api/constants.js deleted file mode 100644 index daab4b0ec..000000000 --- a/src/utils/api/constants.js +++ /dev/null @@ -1,6 +0,0 @@ -/** - * The identifier for the data store. - * - * @type {string} - */ -export const API_PATH = 'vk-blocks/v1/block-editor-options'; diff --git a/src/utils/api/index.js b/src/utils/api/index.js deleted file mode 100644 index 96f2445b4..000000000 --- a/src/utils/api/index.js +++ /dev/null @@ -1,17 +0,0 @@ -/** - * WordPress dependencies - */ -import apiFetch from '@wordpress/api-fetch'; - -/** - * Internal dependencies - */ -import { API_PATH } from '@vkblocks/utils/api/constants'; - -export const updateOptions = (options) => { - apiFetch({ - path: API_PATH, - method: 'POST', - data: options, - }); -}; diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 13f7507f2..611efea21 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -26,7 +26,7 @@ import parse from 'html-react-parser'; */ import AdvancedPopOverControl from '@vkblocks/components/advanced-popover-control'; import { STORE_NAME } from '@vkblocks/utils/store/constants'; -import { updateOptions } from '@vkblocks/utils/api'; +import { updateOptions } from '@vkblocks/utils/store'; const FontAwesomeIconList = [ '', diff --git a/src/utils/store/index.js b/src/utils/store/index.js index c7d051c0a..e7ee0b179 100644 --- a/src/utils/store/index.js +++ b/src/utils/store/index.js @@ -9,6 +9,14 @@ import apiFetch from '@wordpress/api-fetch'; */ import { STORE_NAME, API_PATH } from './constants'; +export const updateOptions = (options) => { + apiFetch({ + path: API_PATH, + method: 'POST', + data: options, + }); +}; + const DEFAULT_STATE = { options: {}, }; From fa26c371b43489e198002a8324ca5feaebf79099 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 27 Jun 2023 15:37:47 +0900 Subject: [PATCH 23/38] add/fontawesome-preset --- .../App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php | 1 - 1 file changed, 1 deletion(-) diff --git a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php index bbd2c5247..35d93a4fc 100644 --- a/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php +++ b/inc/vk-blocks/App/RestAPI/BlockMeta/class-vk-blocks-entrypoint.php @@ -42,7 +42,6 @@ public function vk_blocks_rest_api_init() { ), ) ); - } /** From 8d4f454bdc245ca51ffb91d4fddfae196c83b0a4 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 27 Jun 2023 15:46:48 +0900 Subject: [PATCH 24/38] =?UTF-8?q?add=20icon=20preset=20push=20=E2=86=92=20?= =?UTF-8?q?unshift?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/font-awesome-new.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 611efea21..89e89e922 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -96,7 +96,7 @@ export const FontAwesome = (props) => { const { setOptions } = useDispatch(STORE_NAME); const updateSettings = (value) => { - optionObj?.vkBlocksOption.icon_preset_lists?.push(value); + optionObj?.vkBlocksOption.icon_preset_lists?.unshift(value); const newObj = { ...optionObj, vkBlocksOption: { From 8a9941e5ad492656464cb0138577236b9e33940f Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 27 Jun 2023 15:59:48 +0900 Subject: [PATCH 25/38] add icon preset EditMode --- src/utils/font-awesome-new.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 89e89e922..b86d21e8c 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -118,6 +118,9 @@ export const FontAwesome = (props) => { }; setOptions(newObj); updateOptions(newObj); + if (newObj.vkBlocksOption.icon_preset_lists.length === 0) { + setIsEditMode(false); + } }; // Set options to state. From 6f6e0a205a1d0c141f7ce05c03b75e52a51c83e3 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 27 Jun 2023 16:29:44 +0900 Subject: [PATCH 26/38] fix groupTitle --- src/admin/import-export/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin/import-export/index.js b/src/admin/import-export/index.js index fbad5305a..99be8f563 100644 --- a/src/admin/import-export/index.js +++ b/src/admin/import-export/index.js @@ -121,7 +121,7 @@ export const OPTION_DEFAULT_SETTINGS = [ isImport: true, }, { - groupTitle: __('icon preset lists Setting', 'vk-blocks-pro'), + groupTitle: __('Icon Preset Lists Setting', 'vk-blocks-pro'), options: [ { name: 'icon_preset_lists', From f8df4128f3e79993c71a45f30402d46a2ce44a3a Mon Sep 17 00:00:00 2001 From: shimotmk Date: Wed, 28 Jun 2023 15:56:55 +0900 Subject: [PATCH 27/38] add/fontawesome-preset --- editor-css/_editor_before_icon_list.scss | 95 ++++--- src/utils/font-awesome-new.js | 334 ++++++++++++++--------- 2 files changed, 275 insertions(+), 154 deletions(-) diff --git a/editor-css/_editor_before_icon_list.scss b/editor-css/_editor_before_icon_list.scss index aa9896d51..969e00b3b 100644 --- a/editor-css/_editor_before_icon_list.scss +++ b/editor-css/_editor_before_icon_list.scss @@ -6,44 +6,75 @@ min-width: 280px; margin-left: -46px !important; padding: 20px 15px; - .vk_icon_list { - display: flex; - flex-wrap: wrap; + .vk_icon_list_wrap { max-height: 300px; overflow-y: scroll; - margin-top: 5px; - .vk_icon_area { - margin-right: 7px; - .vk_icon_button { - border: 1px solid #666; - color: inherit; - width: 36px; - height: 36px; - border-radius: 3px; - position: relative; - box-shadow: none; - i { - font-size: 1.5em; - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translateY(-50%) translateX(-50%); - transform: translateY(-50%) translateX(-50%); + .vk_icon_list_title { + margin: 0; + } + .vk_icon_list { + display: flex; + flex-wrap: wrap; + margin-top: 5px; + .vk_icon_area { + margin-right: 7px; + .vk_icon_button_icon_area { + position: relative; + .vk_icon_button { + border: 1px solid #666; + color: inherit; + width: 36px; + height: 36px; + border-radius: 3px; + position: relative; + box-shadow: none; + i { + font-size: 1.5em; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translateY(-50%) translateX(-50%); + transform: translateY(-50%) translateX(-50%); + } + } + .vk_icon_button_closeSmall { + position: absolute; + top: -10%; + left: 80%; + padding: 0; + min-width: auto; + width: 12px; + height: 12px; + background: #fff; + border-radius: 50%; + svg { + width: 100%; + height: 100%; + } + } } - } - .vk_icon_button_area { - display: flex; - margin-bottom: 3px; - .vk_icon_button_chevronLeft, - .vk_icon_button_closeSmall, - .vk_icon_button_chevronRight { - padding: 0; - min-width: auto; - width: 12px; - height: 12px; + .vk_icon_button_button_area { + display: flex; + justify-content: space-between; + margin-bottom: 5px; + .vk_icon_button_chevronLeft, + .vk_icon_button_chevronRight { + padding: 0; + min-width: auto; + width: 12px; + height: 12px; + svg { + width: 100%; + height: 100%; + } + } } } } } + .vk_icon_add_my_list_button { + width: 100%; + display: block; + } } } diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index b86d21e8c..05eec4e6d 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -155,6 +155,9 @@ export const FontAwesome = (props) => { const existsIconPreset = optionObj?.vkBlocksOption?.icon_preset_lists.length !== 0; + const showIconPresetArrow = + isEditMode && optionObj?.vkBlocksOption?.icon_preset_lists.length !== 1; + const render = ( <> { id={`vk_fa_icon_list`} label={__('Icon', 'vk-blocks-pro') + ' ( ' + iconFamily + ' ) '} > -
- {optionObj?.vkBlocksOption?.icon_preset_lists && - Object.keys( - optionObj?.vkBlocksOption?.icon_preset_lists - ).map((key, index) => { - const iconPreset = - optionObj.vkBlocksOption.icon_preset_lists[key]; - return ( -
- - {isEditMode && ( -
-
- )} -
- ); - })} - {Object.keys(FontAwesomeIconList).map((key, index) => { - const iconPreset = FontAwesomeIconList[key]; - return ( -
- +
+ {existsIconPreset && ( +
+

+ {__( + // 'My lists', + 'マイリスト', + 'vk-blocks-pro' + )} +

+
+ {optionObj?.vkBlocksOption?.icon_preset_lists && + Object.keys( + optionObj?.vkBlocksOption + ?.icon_preset_lists + ).map((key, index) => { + const iconPreset = + optionObj.vkBlocksOption + .icon_preset_lists[key]; + return ( +
+
+ + {isEditMode && ( +
+ {showIconPresetArrow && ( +
+
+ )} +
+ ); + })}
- ); - })} +
+ )} +
+ {existsIconPreset && ( +

+ {__( + // 'Preset', + 'プリセット', + 'vk-blocks-pro' + )} +

+ )} +
+ {Object.keys(FontAwesomeIconList).map( + (key, index) => { + const iconPreset = FontAwesomeIconList[key]; + return ( +
+
+ +
+
+ ); + } + )} +
+

@@ -304,6 +383,7 @@ export const FontAwesome = (props) => { <> {(canAddIconPreset || existsIconPreset) &&
} + {!existsIconPreset && ( +

+ {__( + '選択表示中のアイコンを「マイリスト」として登録・編集が可能です。', + // 'You can register and edit the selected icon as "My list".', + 'vk-blocks-pro' + )} +

+ )} {existsIconPreset && ( Date: Fri, 30 Jun 2023 09:36:14 +0900 Subject: [PATCH 28/38] =?UTF-8?q?fix=20font=20awesome=20My=20lists=20?= =?UTF-8?q?=E2=86=92=20Custom=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- editor-css/_editor_before_icon_list.scss | 4 ---- src/utils/font-awesome-new.js | 17 ++++------------- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/editor-css/_editor_before_icon_list.scss b/editor-css/_editor_before_icon_list.scss index 969e00b3b..963707b04 100644 --- a/editor-css/_editor_before_icon_list.scss +++ b/editor-css/_editor_before_icon_list.scss @@ -72,9 +72,5 @@ } } } - .vk_icon_add_my_list_button { - width: 100%; - display: block; - } } } diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 05eec4e6d..e8244dd8a 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -170,8 +170,8 @@ export const FontAwesome = (props) => {

{__( - // 'My lists', - 'マイリスト', + // 'Custom list', + 'カスタムリスト', 'vk-blocks-pro' )}

@@ -391,20 +391,11 @@ export const FontAwesome = (props) => { } > {__( - 'マイリストに追加', - // 'Add my list', + '選択中アイコンをカスタムリストに追加', + // 'Add selected icon to custom list', 'vk-blocks-pro' )} - {!existsIconPreset && ( -

- {__( - '選択表示中のアイコンを「マイリスト」として登録・編集が可能です。', - // 'You can register and edit the selected icon as "My list".', - 'vk-blocks-pro' - )} -

- )} {existsIconPreset && ( Date: Mon, 10 Jul 2023 13:23:17 +0900 Subject: [PATCH 29/38] =?UTF-8?q?change=20name=20icon=5Fpreset=5Flists=20?= =?UTF-8?q?=E2=86=92=20icon=5Fcustom=5Flists?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inc/vk-blocks/class-vk-blocks-options.php | 4 +-- src/admin/import-export/index.js | 4 +-- src/utils/font-awesome-new.js | 38 +++++++++++------------ test/phpunit/pro/test-get-options.php | 10 +++--- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/inc/vk-blocks/class-vk-blocks-options.php b/inc/vk-blocks/class-vk-blocks-options.php index b50b3e8a8..6ba7ef70f 100644 --- a/inc/vk-blocks/class-vk-blocks-options.php +++ b/inc/vk-blocks/class-vk-blocks-options.php @@ -328,7 +328,7 @@ public static function get_vk_blocks_options_properties() { ), ), ), - 'icon_preset_lists' => array( + 'icon_custom_lists' => array( 'type' => 'array', ), ); @@ -402,7 +402,7 @@ public static function get_vk_blocks_options_defaults( $activation = false ) { 'custom_block_style_lists' => array(), 'balloon_meta_lists' => array(), 'disable_block_style_lists' => array(), - 'icon_preset_lists' => array(), + 'icon_custom_lists' => array(), ); return $default; } diff --git a/src/admin/import-export/index.js b/src/admin/import-export/index.js index 99be8f563..cdf262db0 100644 --- a/src/admin/import-export/index.js +++ b/src/admin/import-export/index.js @@ -121,10 +121,10 @@ export const OPTION_DEFAULT_SETTINGS = [ isImport: true, }, { - groupTitle: __('Icon Preset Lists Setting', 'vk-blocks-pro'), + groupTitle: __('Font Awesome Custom Lists Setting', 'vk-blocks-pro'), options: [ { - name: 'icon_preset_lists', + name: 'icon_custom_lists', indexedArray: true, importMethod: 'add', }, diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index e8244dd8a..06d90a580 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -96,7 +96,7 @@ export const FontAwesome = (props) => { const { setOptions } = useDispatch(STORE_NAME); const updateSettings = (value) => { - optionObj?.vkBlocksOption.icon_preset_lists?.unshift(value); + optionObj?.vkBlocksOption.icon_custom_lists?.unshift(value); const newObj = { ...optionObj, vkBlocksOption: { @@ -108,8 +108,8 @@ export const FontAwesome = (props) => { }; const deleteSettings = (value) => { - const index = optionObj.vkBlocksOption.icon_preset_lists.indexOf(value); - optionObj.vkBlocksOption.icon_preset_lists.splice(index, 1); + const index = optionObj.vkBlocksOption.icon_custom_lists.indexOf(value); + optionObj.vkBlocksOption.icon_custom_lists.splice(index, 1); const newObj = { ...optionObj, vkBlocksOption: { @@ -118,7 +118,7 @@ export const FontAwesome = (props) => { }; setOptions(newObj); updateOptions(newObj); - if (newObj.vkBlocksOption.icon_preset_lists.length === 0) { + if (newObj.vkBlocksOption.icon_custom_lists.length === 0) { setIsEditMode(false); } }; @@ -148,15 +148,15 @@ export const FontAwesome = (props) => { const canAddIconPreset = attributes[attributeName] && - !optionObj?.vkBlocksOption?.icon_preset_lists.some( + !optionObj?.vkBlocksOption?.icon_custom_lists.some( (list) => list === attributes[attributeName] ); const existsIconPreset = - optionObj?.vkBlocksOption?.icon_preset_lists.length !== 0; + optionObj?.vkBlocksOption?.icon_custom_lists.length !== 0; const showIconPresetArrow = - isEditMode && optionObj?.vkBlocksOption?.icon_preset_lists.length !== 1; + isEditMode && optionObj?.vkBlocksOption?.icon_custom_lists.length !== 1; const render = ( <> @@ -176,14 +176,14 @@ export const FontAwesome = (props) => { )}

- {optionObj?.vkBlocksOption?.icon_preset_lists && + {optionObj?.vkBlocksOption?.icon_custom_lists && Object.keys( optionObj?.vkBlocksOption - ?.icon_preset_lists + ?.icon_custom_lists ).map((key, index) => { const iconPreset = optionObj.vkBlocksOption - .icon_preset_lists[key]; + .icon_custom_lists[key]; return (
{ [ ...optionObj .vkBlocksOption - .icon_preset_lists, + .icon_custom_lists, ]; newItems[ index - 1 ] = - optionObj.vkBlocksOption.icon_preset_lists[ + optionObj.vkBlocksOption.icon_custom_lists[ index ]; newItems[ index ] = - optionObj.vkBlocksOption.icon_preset_lists[ + optionObj.vkBlocksOption.icon_custom_lists[ index - 1 ]; @@ -250,7 +250,7 @@ export const FontAwesome = (props) => { vkBlocksOption: { ...optionObj.vkBlocksOption, - icon_preset_lists: + icon_custom_lists: [ ...newItems, ], @@ -271,7 +271,7 @@ export const FontAwesome = (props) => { index === optionObj .vkBlocksOption - .icon_preset_lists + .icon_custom_lists .length - 1 } @@ -280,18 +280,18 @@ export const FontAwesome = (props) => { [ ...optionObj .vkBlocksOption - .icon_preset_lists, + .icon_custom_lists, ]; newItems[ index + 1 ] = - optionObj.vkBlocksOption.icon_preset_lists[ + optionObj.vkBlocksOption.icon_custom_lists[ index ]; newItems[ index ] = - optionObj.vkBlocksOption.icon_preset_lists[ + optionObj.vkBlocksOption.icon_custom_lists[ index + 1 ]; @@ -300,7 +300,7 @@ export const FontAwesome = (props) => { vkBlocksOption: { ...optionObj.vkBlocksOption, - icon_preset_lists: + icon_custom_lists: [ ...newItems, ], diff --git a/test/phpunit/pro/test-get-options.php b/test/phpunit/pro/test-get-options.php index e6691a5e5..3eefefada 100644 --- a/test/phpunit/pro/test-get-options.php +++ b/test/phpunit/pro/test-get-options.php @@ -111,7 +111,7 @@ public function test_vk_blocks_get_options() { 'custom_block_style_lists' => array(), 'balloon_meta_lists' => array(), 'disable_block_style_lists' => array(), - 'icon_preset_lists' => array(), + 'icon_custom_lists' => array(), ), ), // New FAQ アコーディオン機能 v0.46.0 @@ -700,9 +700,9 @@ public function test_vk_blocks_get_options() { ), 'correct' => array(), ), - // アイコンプリセット + // アイコンカスタムリスト array( - 'option_check_target' => 'icon_preset_lists', + 'option_check_target' => 'icon_custom_lists', 'option' => array( 'balloon_border_width' => 2, 'margin_unit' => 'px', @@ -918,7 +918,7 @@ public function test_vk_blocks_get_options() { ), ), ), - 'icon_preset_lists' => array( + 'icon_custom_lists' => array( '', '', '', @@ -1029,7 +1029,7 @@ public function test_vk_blocks_get_options() { ), ), ), - 'icon_preset_lists' => array( + 'icon_custom_lists' => array( '', '', '', From 222fcf37fe22c11685524f548bcf604f944ad83b Mon Sep 17 00:00:00 2001 From: shimotmk Date: Mon, 10 Jul 2023 13:24:45 +0900 Subject: [PATCH 30/38] readme --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index 63005d165..a8fa0dad3 100644 --- a/readme.txt +++ b/readme.txt @@ -65,6 +65,7 @@ e.g. == Changelog == +[ Add Function ] Add Font Awesome icon custom list function. [ Add Function ][ FAQ2 ] Add an accordion default option on a per-block. [ Specification Change ] Disable HTML editing for blocks with inner blocks, as the blocks are broken. [ Bug fix ][ Dynamic Text (Pro) ] Fix php warning that brought by can't get post type name on search result page. From ec65fbfc9048720a4c0be8536c3af8505b126cf7 Mon Sep 17 00:00:00 2001 From: sysbird Date: Mon, 10 Jul 2023 17:50:16 +0900 Subject: [PATCH 31/38] #1716 enable hidden-extension on icon block --- src/extensions/common/hidden-extension/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/extensions/common/hidden-extension/index.js b/src/extensions/common/hidden-extension/index.js index 62f9b5c2e..afd3ce633 100644 --- a/src/extensions/common/hidden-extension/index.js +++ b/src/extensions/common/hidden-extension/index.js @@ -40,7 +40,6 @@ export const is_hidden = (blockName) => { const excludes = [ 'vk-blocks/card-item', 'vk-blocks/icon-card-item', - 'vk-blocks/icon', 'vk-blocks/select-post-list-item', ]; const excludeBlock = From 9bfd85f8d8e0f9f505468d67b53643efd7fbe97c Mon Sep 17 00:00:00 2001 From: sysbird Date: Mon, 10 Jul 2023 17:58:13 +0900 Subject: [PATCH 32/38] update readme.txt --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index 63005d165..bd442d024 100644 --- a/readme.txt +++ b/readme.txt @@ -69,6 +69,7 @@ e.g. [ Specification Change ] Disable HTML editing for blocks with inner blocks, as the blocks are broken. [ Bug fix ][ Dynamic Text (Pro) ] Fix php warning that brought by can't get post type name on search result page. [ Bug fix ][ Dynamic Text (Pro) ] Fix php warning that brought by can't get ancestor page on search result page. +[ Bug fix ][ Icon Block ] Fix enable hidden extension. = 1.59.0 = [ Add Filter Hook ( Pro ) ] Add filter fook of display license key form or not From e58d1b9db9358149f937dce8ae97828937f476e7 Mon Sep 17 00:00:00 2001 From: doshimaf Date: Tue, 11 Jul 2023 09:17:19 +0900 Subject: [PATCH 33/38] translate --- .../vk-blocks-pro-ja-vk-blocks-admin-js.json | 2 +- .../vk-blocks-pro-ja-vk-blocks-build-js.json | 2 +- languages/vk-blocks-pro-ja.mo | Bin 70785 -> 70844 bytes languages/vk-blocks-pro-ja.po | 14 ++++---------- languages/vk-blocks-pro.pot | 10 ++-------- 5 files changed, 8 insertions(+), 20 deletions(-) diff --git a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json index f87e87ef4..44b66ddf0 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":[""],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json index f87e87ef4..44b66ddf0 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":[""],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index 314b7c2586a9db785b4dcdeec929799ad3c85e0a..7336e21a3d2d56aa960d1e730b92045790bc0865 100644 GIT binary patch delta 15844 zcmYk?2Y41m*T(S;B!K_{(tsqi5PGPggdQMN=~Y0H-lPa3P0B-WQhflWNEM|BNL49P zREmHU=?bEeE(n5x3i$r-%<=o&>so(v&dknE+1(_(@3^&ryVnN#u7n59_c%(V_q^OV zD%$gs13mBiL}fkiLW<{w;zf+Y8yJqy@O8{y$Mag?1T2qdu_0!v>v?qJwZ?qd9@FCp zbF_2rvLK(*lPo>WoN3O*FzV-9{Gr9`F_Qcq%b&&^#OJL3E^4^{U<5|hbHgZxd59Zg zUhGxR^LeopCX>j7D=`~xz#!a%nehv(h$m3<53cWd88I4TumI{t)lnU{K(!l)*>M8u z#`949Z$VA$Kz*M}oFSnb{*0R0ZENrkW+4u1;Og_DHl!dbpNPSjj2W>W>W0lQCw4{+ zY&dE~W>|hDYJfX^6m-FHWb?f%s16*Uu4dt42(Vr$gQ zx}k3HDr!ZBVOE@pn#dB1H((a-@9m}#ibqf*Ja492{#R6o&ro}sshMjZgIS4-qOMEA zw5>o5v>_&7E7ZVzm;ooFR(KZrv{Zfy+N;&5fqaS@=|R+Mc^=ilPpH@J7HU9&&E4A) zhPrWKRKA2+8A}n@LtQ@v^_>`nFQUIW>#qy%kkE}Epl0+Bw#2M0c-63rIT^L5>rvme zuPwffal|29q=_V;-ijKieqTcM+XwY}4@bRCGh5pG{~?K7BtEfrfN$ZK9y1_yn~?r%-!z6(jL6s-rAz z+<+ob1IceDVte8`7=cSs9dALs_d8J&IcN2$7*6~cv+4cM)YdJ1460!{%#JlJZejJW zAQyPUP%AbCi{eVu0FPS!w8eKVeuUbZY&>yV;Y8F5RmTv$|FzQ!p4S+)0&P(<=z+Sh zKWY!>ARkL_3-VZa&oBy`w{so#M7?%>QQwgvsD8$vCN>#0P(P~OBB}TPeF|FAji~o{ zA8LfhP#v7I_#$csS5O_^LJjy2)Y1pB4_dis)Rq>_rXWpw)kiy8g1|Z=weBJF36n4(_^0)PQ19uV=XqtiK+T z<|Jf4bE^5ixes;0_o!#!Pt?+fyyRw<52J|-Vt%ZFTFFkRmFtE-`Z(Yf&#Q$y zuo^z`QK&MHKWtE=SF1E2ce!79T^+{32>4?xI%g32G(&L0uox z(>+wVF&A+HYVYfymcAwG#xI(^UA@m6K|v426x36>3^jm_u7S7H@`q7davn91Tc~!A zPy^Sp>H1I%!rZ85r2uL`iKu6$5vrdq*hugHU<$z`_F@1YM0If3^5393K5PDry75EQ z%>F?QD6qH7XT!Y2u@+ZB^;ZuwVq?_GwNcFdy-pO=VQ1Z)t=o>8*b%IbM^O_Fd6oBHdz77mW|$X?VM#23FQR5L5w&-# zP&3(v>R>18`u&&zPhbq5N1jXXH`La&?&}891v3&4K}~c_U)En8%py?+m!RU~sF8n% zx$#%jg<1N!fkvTjSP-=mB~Sw@ixsdEZo>hn>*M>o*Rv+7-6+&=*Ax1){u;@LBogow z)C#1cW*j=e)#o)!p>9|M^(jq3cEjs{neYot!EaFghQH=4fO<<3Q7c#%HK9g6E3`(9 ztfR%IT;^2_K?9XbFSdKxUz?`_SBje8qj)eB}z%XdJ{tQV@IA*dCah+46?Py<|zdZ-Rt{V%AMd5F6HPt^4p zhPa94z#zT zi7%igaBC>*uM6*y(BJ2eP)~LEFgMaXs2LPPJ*0`K3u~jUt8X?jTcK8b3TxIdDVXVIz9wni@yo_=97_~Cd!`;JH2$vH#!=-p1m*DIXZonnpbT>%CSn~Bz zE7T1&p;u8`GQ{#e%tbs|1?~AV)QmQumTW6(00&S5{07zGRn(T;u>7x<4;bkls*I?; zEs0v{Dwy`6L2YSk)I?uJt&DFX1uf}9)IgS^M*It^^97Np`47RTsup4T1gpk}ZZ z$Kw{PixmiJ;YidccMrD0fC+pxu?=bkzQ6=LgUivI$m+lfJgN8p1ck07mQQm3h?ah` zTaii_M7}y|D^gG^(+ssz9WVxaquNa{r@|;~W_%t4 z@hYarYZl)^ZOuK@K%QVQ22XJvhoYX5Xwf$VB1nTvU!S+}QE8*KyS^vruj*`$422FD#&W!3f z7b>3z(|(R)I^vpU3hKu7uo^bOvN#=+aX0E2d5X2M#&q`^)HntMnRH}ip5fp`9EB;TN;UJon>x4mKx$*o>a<{?K?8pOZg=>gezS_hYxfJMIsT z30RK&V=Rja@9NiVCV>rcE%v~N$i#hK`-Sd3UxFG@z#{jh>Vn$yVW@{^9){r-tN#*n z5nsY^e26(Pc(F4NDqkMeu0CeR&KQM*FjnvX6bd;>tU@*1h3e>x#dlB_1}<^!qEG`X ziE;P>YLEM2QS_U;F*orwjKFm7xqfn>22ccJxW8AOf^OIj)$ldcOebIwoNx7ePy;-J z@pu>2QP@(qLPanyaa~k>chm|@MNM!qs^6`s34Mh=b#RVC9{dIMLm|^LXFiN3E{}Q* zn_?)o#&p;f(_;^d`#rG)C!v`xK+W)T)O&j#b>rye&U_d{ zTnIIgny3$0Q?os) zs^d0hUsStsr~#}*b+pUsPoQRY%?$j=%{U&_J{eWt&K!oFxxcr7!X12!JU3qI1~-tY z8{MAGM=j}2WXZgns2gYB1mj4TNUB=CBz;T;de>JQ`A`3Ra zrq~A6;rpnWY&5r-JI#HlXW*cD9QBNx!A$rEs-J)@?n{^%wWWD6?ZdW(_1981C82?I zMa8e9mUJ?P<9p`Es2P1>@fp;f-aySPc&qCtABGc`MopkLrcDqNh})p_uGiaxqNi1q6NvP}EVlM24x^5I|#xqb`wZ`0p zfy6r$>;2zl6$i{Cs2iR{J;m2iGkt)176Ny<4hy4hR1(#`I>urv?2fOY>d&AC@H1*9 z@1O=8y_@ydg@q|7QO#_K%D1(+AF87f<}{2YUWgjlcGSQQV>!Hyx?$cu?uS(&)Y2zm zB-X;5*me)=uNw^@p$jIWZuFM97`3G9E&dWK5}!fcDD&rO|A^!zV;AB@s4aPldhKHO zx~D%5wd9GY`y`n)_WIlm>XOii+F8Xw3?m+f(KrpYLaR_S{utHK7pMV#jcT8Yn$Yj4 ziDcgARw@?tkS3uX@|RKlP4rRFH+e3qqiv{)F&fb)%sDE{?^_#05~V zZz)tiiKu>)Q3Gm+x~?~>AKw^jFbU&HEJY3IfO*Z#c);Zo%%-UJgHRpM$2eS#8t5U^ zTXYJ`;8WDfmHfh46B(e-Yh{Vfn3V>D&GF`3j3B=p_0VlYb#xLnvsBcKo?1TqOIKeA zUnXA(c^tg?cnDj6#hZY+59$veA3q$(_9M{>8{j^C9YYTDmBLXt2>-@L*#8Ls1c#sD z_Za`R`=R9>7~0{W#wM;xCc0c>TZOSA6d8C7y6I*n!%UW2hN^ zi`v8M7C*E&_@rCf2-NqX24=&CsMo7KmcRk1m065>D>hqv5(9~^qfZrgtU;zzZV!uL zRq~Bc1DJy9XddcD>#!j1L~Y3rmj4^oF7s(Oz&KRg81*`KMP1k1>Svy2{S!!hN>FtQRK`+z{$D&5Q#Pa*iOE`r5L(~oXoOS&TL|s4H;swa_>8-MSuXAo< zV|^4lQ!yUZK`Ls7w^0N83oB!W^X@gOh1#;$F$(9R+I?tlLrq{ms=uSC*YY&h$496M zRlDH&@wKC%4u+vBCR)54dlGN3IP#)v7l*oWDb$VXpx*PQm;pziZamJMirt83<0gEF zy3eXh{Bw=o|GgA6zU=_W!b*NqMsd>c$OFGkMAKT`?VTKh%w0Gsl{9F*Es<=0c$6A z6aCgqRbKD^Lrds?Ij&5c9kpjKnEg;4%t8%lvAGhpB5N@(?lrHV+CRfwnCS=iZ%FYt zgLoY3Va|G$RZ*cF1uaQC?1y8qF5X3TQ0_1X#)6-Hf93N_POW@pqx=tEsM4b^S| zmc+GK4bNMBm~BaAmIpaxbSD`0DEiPP~Vyo}AT z@@+TZY34%IMAo9NKY$wW2~7L@{~QG^$uC$0pITh-j=P{dYNoZ!)~F79p*k9i8E}fl zvr+vmzy$mNwPL5uo2dStV@aMrFYFiBVKS;=JJd)ASbn6%^H3MAK(*V3t$7N+#zf+L z_uT8(5?d4R#T6L&D^EJ^!1{R2EP0>(Z$n}Tg)llgin_t&2ku`w?xS9#u;1L@a>-bo zxHo3O5AXWN$GhNv4i$86XUwG#bN@ACxIOqXL2o-ogv-x5gN3hv{&zITY1y1ZqHIu?$|pUYPBfdp3q)PwwxXrl6;_@^g3L zEUZmD9~EE;T#D-Oti@jX0IxG~66zO%h)+PQ1^);@2596{1 zq&=iQEJQpX3*au)+j7O~@1UOgfNU-wgL)f^pdRunsE4?@Eg- zYvFKIyPc>3?6>$R>eunpsFk^jn#djVIR+4iMY@4SAm5R$UJeSHK@0|B5sOQpwxlv@ zCe2V=(Gt602ULgoIWJSlMQ^uh$V-v7#Ov`ob@BcOiLn9Y{GsKFRDX;5e&lq_p+19@G7U%Ek65NUPnX{-Ne=PCw^FdeBf(p%HN)ZI%znZx}GC1w!`NB2jvpl{9rBmV~~|+P^-a?W`a4$0*<&@C!<_mb(sXR1 z{4M9J^ft_;{_nrN$ZOkQfjqR|MVoC_n?StT%JpdTgz|T4&+*uQu|nynQbZqc#ca-h zkEZ@S6`Muhq2@PIdPFnQPZi=kln44JRV-I*646Pb3pko<%bKr^t7K|)e8$<)KRPL2 z^^(+%Alm@vr`7SDuvQ8mb2g+dr{zizk0H*;InsYIDK=y_B^}xQ&ywPO&4}WO!kPCV zt|`LF&m@l*$xF1BYW)uJ2I2tP{d@dn_4@HJlyVQ++~m~pgxF{Gd+`g-;+$8h`_bA| z3Gn>ODuo2SLjIC}L#5y$T8*ORi24F8$ybN`CUIiuFnLPuj- zyp2i32mQw@$Cj*WHEGrSXD9JXoSkW@FH{n4BR)Vm)E`wPU&%E@y*YIh;ZCP0_o7vL z${%Af;!aqX^M=1mm7KLwto3hXbo{~jj9eYgHRK}jK4&J*5}cFMTK)fjj`=^Uk`nX@ zHDCDys>YTbMCqdS^>3?jscg0>TBSAjE&|EsFW(Pb%}q;9b~Pt31S zX-6pWV9qxY+VK2tVB%( zuINnpIX=R})`vPuCceVChjK1F$Jv*2HEp8&9cz>hYDu)iKet9i$sqdONTlPb_0bWl zS*{oP8diSIf2u~2fV2KTYoxU3L2eOswKy|Sev@+n*R{egISY{25lR0?iTUl%o5p#L zb2;(5oH-~@q0Psfh5a*=!|&;7$3kl6`q$QMi;1AnDYqbe~+caA&h1b z_R;?n>=1=X)ON??xDJcb;CIx~7}L>V4i|ds%roTo`8U^!sC<)BE3$=Y_1`1XddN+0 z(VY5iQ%82%?cluTe^#q%)K9ef!Bu#V%)I_4wev;wq2?p&^CQZ`IA8XUtDO?MnbJF) z`qSlA|Eb!sb*rnMw*7DShcZFOr&H}WFC)V*M=Mc`kwE6GBA2D7waw|A%QLbq9v0R&* zhHsE7O|Eh}FP-C^nmT?{>iD;BuGw&H+N=9|u09CIiM&Jn4gI`5G zU=?a2TP^+!^}v&;iJi6bTTOkQ7e+=WMGih5ug#$apI!1|+B z6SW1c zPy-r*n$aXIjZ0B0b`aIiF;u^2%`DU@{RgS%^B$7W5(T$(4WcoOI0@CTl9^`Z8K}MO ziWk`!3J-8q$ zzld2DpCC>}weO4ioEU^1@fFm7&!HZC3G?DDY>WT4X8%i&Xw$|EI2yI5OHdzSA6a}B zixb~P%_NT2dMlnlb=(5gaVOM(`=j2bmoXnM#6q~%^8bg$h|jiV{WXC5WT=B;?c4w= zqLwlPwZ|P$ujwGv181XVwiGq6cTg*H(DIL?R^&8lMKe(=eGelsvZP7Pa0DV7^P)83?GsxcF z4J5)$#7^W_#VDMG>Ub6EyVu>&s-q#O6&Q^g=qsptZ$jO^xlJMcYhiru^O;{?}W9lVZ> zv1AX=>x~1kAAX6gu$r$YCz8YzoQlVgZT8yr^1SzP1JZ~046V=MhnRu>KK$yz%lI00 zc$WRdOwusv2I_U3gPPDg7&wF$`}UB~%#Wg0;sR>vuA^4s7OI20s6!R@oO@m4 zPZc91z&@A*H(?O&M77@)$Y=jQA)$^BnkP{YzJi+BE!2SiwERaH zPn@T}t5*)yVJharI;fRPx40Fmzh_VbeipSNBQcuidoz^4RoDb~p&tAQ)p76u*FkR7 z%nIU5SO&Fqt5GxCjdk&3)Qs<Hf)5SpxR{{>WoCaC5fmNtcIFUZL=|IU@a|v8nY31^O4Y= z_B4l^uc99Krn%DGfExLSs8fH$yoBMz_b?1|y}<87jK+M}3S+ScY9QlG-$W95$(V+D z@J$RHM$`)ILe1!F)B{dob-aT5M2j2d1~LKFZlSpm`SkV{$OM42nRTohcxPqbhJC?==sCp$vx)n)A9pYMM z!$3a!-<*VI))CcFU(^zfL@n8P)BqQt4%IFzKaX0OE2#EasP=b|nRz)zx$^R6WmLWD zsDY$osNVmUB=r7v#8TJ^HM5DRy_{msL#@zq)J(UcX1E76;De|wJcep_+TtHAzKxp5 zzZi|hN3;GKNp%t$c^ayt3{-x5)C{|seNbC509F4rix*-9@lMph52M;0L;YEP9Ces~ zLk;jgYT!A?u>U%p5o27#VyK2C&GKet)Xb}6er%2fuq&$lFpR-T7B528TZh`hkFhwO zLJi;!>WpO{%lfY%kvx`fB>W2B#=+y(T?n;=Wl?)s1vS%V zsFmrB+KMr#fxLto@EfQBFF>uFZ#jvtNo>NB%HW$tpY5yhDa`pY-+=fuR>H;;m=%sf zR?+(dTjTSrYg=#9<>SnWsJ)$rT4KM&OU-qtE!%+_$S0Vc=X(b%<1nh>G1Nf5 z!yI@O)$t9~8M%Wx3y&}g!=^clnN=}xI8ptyL$&XPI)sB!&v^+0zyGI_$VtW=tcP!* zM)*DE!1Lx6^Jnum>izx)J7K}sSUr3JYvMZ83SL1CI1AP9-HT(V#dfj~;#+$`a z4=#aqusl}A{+Nb~QD@{VHpC)txL-~^FqC)=Hp9)>3h!cjd~&)w#LH0w{boAr-u3S$wL6U(K!7>VCvLA+|-xBSQ@ zu3kxupu8TceJhN^z8Hg(Q2i}J^|RIDqZpz0|1t?x`~!<%p10kXMH$o{H^(wK%v_8` zh!0>C{(u_5pQr(ZEOnnBai|BTqUyCoO|%!5#t|y#`Q8!|8sSz z+1zYtwl>?D9Z;`rC)A94qGmc0HNm%0uk8-hbMGu?{grq~Mq$jp!VM%Ia}!rEtD`z@ zh(Y)yYM?Dp1I<8{w?%!xbTYeRF5*6@`hzeh4#lQ8W`&QD(!-}@gpqOL9k*0JpqBJ6 zVZWu2Uf&5OvQL? zYx%=aOF9;{$1AV|?nKo)hc)pYR>G=l-6v*WEKa-{HPORZ4t*yr;}NREu=m^y6HyI( zsDZ3ReUj}(J?IAN0lC+?^4h5Uj#wH;TfEH5_gZ`gb5Q<|i+$cB5_(YldUr_bqbhVl z4XCH(kH%2q*{B&TvUm;Zly62Iy01{}E@LtL2US1zeP=0Dc}hU`|49<6*aLM+C!#u9 z6sW)t3DnFEn3qv2612h9FN!KpHQQrP;*od*Pa(&~+qcmT;JFXnmW{w#xKt zG9qxL6>LTA=|R-YuA(}6XyxJC+zg6g82P2JJf@)P^}t9Rih&uU1~>!N?<&-U_W4NY z0as8BAE0I)w%xsMQK*g@pbp*Bs0Y4)8t}`g_Onp${aVxmFQFcA17~9R4tIu@pvsq< zzI7xfld%mogVdeQ-dK`&7M8;87N5g1#6cgr8I?l~tUhXHT~QMmj~e)N)Zt!+(Rc{U z;d$iq#OLMQ<^DCQ8fpf;Q4QZlo$^hn5uddDi>MB7qgEnzw<|A&)rl*i+V{8o@u+%J zP!FDm8sJ`x=K0>2fdpHCn#o<%Ork$>4Xa`y;s&UOol*4$qPA+PITM44=UcqUTw$(7 zt-uGUL;M*=>iz$kg!bw(s>9%q-GlO=8pNRy|zm3lJw@3|2)w=qXhF z-l+ZunB!0@`ubkhUj?hkNX4zF2W4SrEc%K2V{|NPOU|M`IPRiO|0C3rM||oY6m1qk zO&|$1pj6AxKn=V-#$vxueQt>+k)Z~&P$OQ68sU4W2K!JmI)NH+7HXyLq7G^F|Jk&!FmMp$7QK;&R8`>sTMvt_iCAc`T1_qF%H8*b~pAo>TV(tBWm9u>RRe zv?4FadS=DxeN;ZB+m1s0nsI z$@**LFIvHJa~F;x|69}po1StVW}rIgV)01iTzZo%Km9v5v+mfF{GO=x`%n`+f*ROq ztcgGRNK_(`@V(p1))-AZ6jgDGIS)01<){wVq4sn$HpSzp85KV5`bkB#Z;#6FZSe$r zj(EDozTYkJ2=(BwGwwl&sJ*O!Ik6+^!9C39un+NI+=Snv9yIAJ`-)3ZGroZ-cpo*O zis#&0PzTBPd96t3!LOiB{UQv^3+7Y{<;vHBT_nSYXRxI*@ zvj|2KmqJaXW+0#auTLTy8O>1-YH4;ihhiS`Cz>$obsJ**^>LB5=I}Ngr;BWlsa}SzJhDNjmgYX@U$JJKxGt>aSK+WtTYKwkF4K(AI zI387A((-Gg+PAQ{J8H#;_(*7pKfoM#8TH^S)Xa1JTY3mpKhyNxBB2J4P$P`K?jBSIwNw=?PBCj?Ve%Vb40g46q{XwbDEVu# z03JlW&Sx<{UN`R{1M_)dS?-@)W3eq2T45Jlg{|;k)QB^Fc6LY2WC&_z(@-ljA2pFB zsQO#5H14xF3swIvYN9!ANcKOLggUH%>L?v^;!_qsjq0!qmdEE&4_at$M0I!obvVC6 z^%wk$t5+2D;1pDTeTzF`;QRkM66$aqKF#Tyja7)R-gK{B%&+7VzltmI3_gM5Z@JI@ z_2%!`p8Q(BvDEZ42Q{!&w>_^I?!dqRu?%tW@2r1a63HaO@OeCnV{tGx{KI|3ZpO~U zx&Cxt9(`~V@#m<4zxbCs&2#Vz;%~4azWq1n05h>IPP^j{`&raV=lw_fPa^ssx5SC4 z4y&Nv<7TLt_QepKZ!R`hm}^iSZZNl*AEEl+hq3sTdELsh-L>~W^sYPYQK*h$%y^6> zE{TP(2Ij*yR^AKsiPqoBUqww|sm0qcl=v8i<9C<`uUh_ZJ`(Eio|*feJA8#vpY4gL z0ZqgxoMtXDH<<^p1m)l3D13m;aQJ=a$Eepi_<yq1ND?ZD#llz=vtbRhHmYJh z)PT}a-x=>%XXW?f!LVp)|{oAJV|vj4J;b_261LzVx9npw+`Aa5+LLY?xs96^Eqsir%s-6~Z5%lHh|${7^+ z+V!IbbjFOxMLnMHH6_somt#A;jrtr&4|OwNoZHRx3T9AVFOOS^nV3R+7_~L`F&#UF z1$l4ca@2rR!(IF7sCw5>hqQ6tAkSBlL}wC-I1%-_yo0K+8FlIpS$-z!ZTQ8?AE8cn zbUv4#fQqZ2+Sf7LqCQdkV?4fqxp8*BAYUM{m<%;sjcT~bDjr1b*;Uj`^F_ENY-GNO z#mV1-YJUPXfeWa9eztOb94byk4WtI@^Q3-$pDSoWhDOxYD)z(D#4n>>&()|0?XdFi zExu{x`67b?p92Y~0n|2|p;oLt>TT$6@lbQJkA#+Z0cr*xpgP!vdJPYv8XmFuYxB5y z$~Jw`rYGqcVX0q8lfSgh9 zJJdi=qdrH@p(c=t!T5{Cw^3X0FRFfl0)efl;>D2YMMeUu!(!YQl;FyuCND!^3*N_T ze7)|UloHoBiCTNe z`j?Wq-1E3!r3Ve=3N$CqPMsCRvq?|q))D@i`(x5Nl^t*ox2^;nqV`Gbq(=G$w9L?RcJ~>wWHBRwt0bfBv!fJgy?XO#SlyNmZjtMv(IwcOtE4 zQPPZ(GNj9s*5`q)-u~THlZv0F)?P|=X)_iR*XRC%yd}8G|FCLO$TU(j{UxhajJ-{2 zT%a~5l=S24YyaSCF@4`9=P-Aqjrs%9$GHd6+nC2y&F9G1zITTr)c=?|+pVk|@fJ&` zQ|BMjXH}o;Z+}*`iqXkLYiKc>`|;J%pPbq%_Ge0dCrd{(C;ikUE=qc+e?e+W*;k3a zA^IL)rfo&kHJNlNe1p3`>2m(tsVQ}@P`ZccpsH}KC*6d+t2o12x)Mf1+?~4~Wf#bN z(%-9kRBZA8)Jmg7*KY2v{+ZPi>Q6Ikl8ExtW*BWsbMu|#@gjMZt)^-(B;KHydXKNWR<7@dQKb7) z=Q_8pJH!*L{1e>IU6%U?$}U-*T0x$FQ;pD&Zsecw@2!#6U^}S{O8MILN|62omtmZ> z_>Q!$b{5|yUE1=p$SdTpTQi}3EMr_jNh~ELNdJyADb2(z@^#%OzRg{Xyt34}M*2t6 z8!3B^w5}Zgnd?LUmYOlq?@>e7Q`DG;sl*5U7iz{O*Rqm8G5^_3+?l&4HT7*#9k&th zCmrT5St}uVEm1#iU8Q)^H;Sp1jr3+LL)-(?xv%+$)rx7*&}#oqj;_DCACT9G`#tg^ z@fLS(?(*DI1GWDDKVSHd)@l^8lakN;`D@2jeu2~(>+5l?iR7IpProH}4JOugmb;k0 zTkW{e-^h7~d!K(&?U>jEMmwFdvDVL4yuqR98)9*$iT@S2}Zdlv$`jKDP(nI{0>Xi;U=?_h7)aF_87E{)MJ16OJ z+;7sZEgs-bBwv^Q4-uae^Xtxgo%=iP<-`lQ3zD8joz2`O{Y%r5iu=gbm4xTGzqI%z zGq3+rT3Yyei&XPze{%iu)$)^*NN?l+Q?i=$+ZI=*>=EhuYQp6w{gi)Z{g~(w#`hCB z{7w&CZ&5PGzq@`5Unx>AxlC^?=_91?<9u#iOK9;f_gvB+lDCDsD{(90x3MsBJa;?p zU${Gyx1D<><$n=x;yz0H@wJpV7o%B(1K33G5Q!<2_Q5Z49hRoTpQx(^W~0M`F7(!$ zC&>TQzpp`5&7VlMBexW_{(D7P4{`KXh&#>-BdE8N`>H>@VeRNk)XKDyKh2{4ZVeNn z`%|*P`h1`CXznilxeXhIZzlC7xBe6v;J?%`F1-%X80tQc<8d!OzGjo)?+P!CyjMsc zBi$TxGp3&8={I6_Z0&E*D9Tro++O5#pjJ3(U6UQ&SJX=3-c8v>^2%}-r%n>Ft{1sS zaTle|e=q)e@$!+kg1Z6fYF1vDwneBolDsF#tC7vi=H1wKs?i%&whbHocexyuidC*r YtD1lC%40#5x7Av8yYaThKaEZPKZ2tKiU0rr diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index e1fdd1fc9..e0b6f3153 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: VK Blocks Pro\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" -"POT-Creation-Date: 2023-07-10T09:40:41+00:00\n" -"PO-Revision-Date: 2023-07-10 18:55+0900\n" +"POT-Creation-Date: 2023-07-10T23:21:48+00:00\n" +"PO-Revision-Date: 2023-07-11 09:05+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: ja\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.3.1\n" +"X-Generator: Poedit 3.3.2\n" "X-Poedit-Basepath: ../../..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: vk-blocks.php\n" @@ -877,8 +877,6 @@ msgstr "投稿タイプ名" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 -#: test/phpunit/pro/test-ancestor-page-list.php:89 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Ancestor Page Title" msgstr "先祖ページのタイトル" @@ -947,7 +945,7 @@ msgstr "WYSIWYG" #: src/blocks/_pro/dynamic-text/edit.js:262 msgid "Setting up a link" -msgstr "" +msgstr "リンクを設定する" #: src/blocks/_pro/dynamic-text/edit.js:274 #: src/blocks/_pro/gridcolcard-item/edit.js:322 @@ -3232,14 +3230,12 @@ msgstr "非推奨ブロック" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Dummy Text" msgstr "ダミーテキスト" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "" "Because of the site editor have not child page that, the page list from " "ancestor is not displayed. Now displaying the dummy text list instead of the " @@ -3252,14 +3248,12 @@ msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "This message only display on the edit screen." msgstr "このメッセージは編集画面でのみ表示されます。" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:126 #: inc/vk-blocks/build/blocks/page-content/index.php:123 #: src/blocks/page-content/index.php:123 -#: test/phpunit/free/test-page-content.php:59 msgid "Edit this area" msgstr "このエリアを編集" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 72df19292..e42bcf15b 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,9 +9,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-07-10T09:56:22+00:00\n" +"POT-Creation-Date: 2023-07-11T00:13:30+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.6.0\n" +"X-Generator: WP-CLI 2.8.1\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -872,8 +872,6 @@ msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 -#: test/phpunit/pro/test-ancestor-page-list.php:89 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Ancestor Page Title" msgstr "" @@ -3185,28 +3183,24 @@ msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Dummy Text" msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor." msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 -#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "This message only display on the edit screen." msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:126 #: inc/vk-blocks/build/blocks/page-content/index.php:123 #: src/blocks/page-content/index.php:123 -#: test/phpunit/free/test-page-content.php:59 msgid "Edit this area" msgstr "" From ad633a69822e345efc1c6cc5a9f2fc5fd716b9e1 Mon Sep 17 00:00:00 2001 From: doshimaf Date: Tue, 11 Jul 2023 09:37:54 +0900 Subject: [PATCH 34/38] fix : display of options when field type is URL --- src/blocks/_pro/dynamic-text/edit.js | 48 ++++++++++++++++------------ 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/src/blocks/_pro/dynamic-text/edit.js b/src/blocks/_pro/dynamic-text/edit.js index 7c7cc53df..95ae22353 100644 --- a/src/blocks/_pro/dynamic-text/edit.js +++ b/src/blocks/_pro/dynamic-text/edit.js @@ -258,28 +258,34 @@ export default function DynamicTextEdit(props) { ]} /> {fieldType === 'url' && ( - - setAttributes({ isLinkSet: checked }) - } - /> - )} - {isLinkSet && ( - + + setAttributes({ + isLinkSet: checked, + }) + } + /> + {isLinkSet && ( + + setAttributes({ + isLinkTarget: checked, + }) + } + /> )} - checked={isLinkTarget} - onChange={(checked) => - setAttributes({ isLinkTarget: checked }) - } - /> + )} )} From 21df1339b7e2de82c66cf3fecffa6cf37b5cad55 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 11 Jul 2023 10:43:16 +0900 Subject: [PATCH 35/38] fix / fontawesome-preset translate --- .../vk-blocks-pro-ja-vk-blocks-admin-js.json | 2 +- .../vk-blocks-pro-ja-vk-blocks-build-js.json | 2 +- languages/vk-blocks-pro-ja.po | 20 ++ languages/vk-blocks-pro-js.pot | 64 ++-- languages/vk-blocks-pro.pot | 296 +++--------------- src/utils/font-awesome-new.js | 21 +- 6 files changed, 119 insertions(+), 286 deletions(-) diff --git a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json index 44b66ddf0..121dbcfbc 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Add selected icon to custom list":["選択中アイコンをカスタムリストに追加"],"Delete/Sort mode":["削除・並び替えモード"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json index 44b66ddf0..121dbcfbc 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Add selected icon to custom list":["選択中アイコンをカスタムリストに追加"],"Delete/Sort mode":["削除・並び替えモード"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index e0b6f3153..8758618ab 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -409,6 +409,18 @@ msgstr "インポート" msgid "Import Success" msgstr "インポート成功" +#: src/utils/font-awesome-new.js:172 +msgid "Custom list" +msgstr "カスタムリスト" + +#: src/utils/font-awesome-new.js:327 +msgid "Preset" +msgstr "プリセット" + +#: src/admin/import-export/index.js:124 +msgid "Font Awesome Custom Lists Setting" +msgstr "Font Awesomeカスタムリスト設定" + #: src/admin/import-export/index.js:130 #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:86 #: inc/vk-blocks/admin/admin.php:119 @@ -484,6 +496,14 @@ msgstr "" msgid "ex)" msgstr "例)" +#: src/utils/font-awesome-new.js:391 +msgid "Add selected icon to custom list" +msgstr "選択中アイコンをカスタムリストに追加" + +#: src/utils/font-awesome-new.js:399 +msgid "Delete/Sort mode" +msgstr "削除・並び替えモード" + #: src/admin/margin.js:133 src/blocks/border-box/edit.js:192 #: src/blocks/icon-outer/edit.js:150 src/blocks/icon/edit.js:139 msgid "Margin" diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index 71b30d468..7a72e15a7 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -24,7 +24,7 @@ msgstr "" #: src/admin/custom-block-style/item/title-area/delete-button/index.js:63 #: src/admin/custom-format/add-item.js:152 #: src/admin/custom-format/delete-item-button.js:63 -#: src/admin/import-export/import-form.js:417 +#: src/admin/import-export/import-form.js:510 msgid "Cancel" msgstr "" @@ -93,7 +93,7 @@ msgstr "" #: src/admin/custom-block-style/add-button/index.js:141 #: src/admin/custom-format/add-item.js:164 -#: src/admin/import-export/import-form.js:312 +#: src/admin/import-export/import-form.js:346 msgid "Add" msgstr "" @@ -338,48 +338,52 @@ msgstr "" msgid "Toggle all" msgstr "" -#: src/admin/import-export/import-form.js:164 +#: src/admin/import-export/import-form.js:196 msgid "Invalid JSON file" msgstr "" -#: src/admin/import-export/import-form.js:167 +#: src/admin/import-export/import-form.js:199 msgid "Unknown error" msgstr "" -#: src/admin/import-export/import-form.js:231 +#: src/admin/import-export/import-form.js:263 msgid "Import data confirmation" msgstr "" -#: src/admin/import-export/import-form.js:238 +#: src/admin/import-export/import-form.js:270 msgid "No import data" msgstr "" -#: src/admin/import-export/import-form.js:273 +#: src/admin/import-export/import-form.js:305 #. Import %s msgid "Import %s" msgstr "" -#: src/admin/import-export/import-form.js:298 +#: src/admin/import-export/import-form.js:332 msgid "Import method" msgstr "" -#: src/admin/import-export/import-form.js:319 +#: src/admin/import-export/import-form.js:353 msgid "Override" msgstr "" -#: src/admin/import-export/import-form.js:357 +#: src/admin/import-export/import-form.js:456 msgid "The following data will not be imported because the identifiers are covered." msgstr "" -#: src/admin/import-export/import-form.js:432 +#: src/admin/import-export/import-form.js:525 msgid "Import" msgstr "" -#: src/admin/import-export/import-form.js:442 +#: src/admin/import-export/import-form.js:535 msgid "Import Success" msgstr "" -#: src/admin/import-export/index.js:130 +#: src/admin/import-export/index.js:124 +msgid "Font Awesome Custom Lists Setting" +msgstr "" + +#: src/admin/import-export/index.js:141 msgid "Import Export Tool" msgstr "" @@ -927,11 +931,11 @@ msgstr "" msgid "wysiwyg" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:262 +#: src/blocks/_pro/dynamic-text/edit.js:263 msgid "Setting up a link" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:274 +#: src/blocks/_pro/dynamic-text/edit.js:276 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:271 @@ -1234,7 +1238,7 @@ msgstr "" #: src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:269 #: src/blocks/pr-content/edit.js:212 -#: src/utils/font-awesome-new.js:66 +#: src/utils/font-awesome-new.js:166 msgid "Icon" msgstr "" @@ -2894,32 +2898,48 @@ msgstr "" msgid "Lorem ipsum" msgstr "" -#: src/utils/font-awesome-new.js:243 +#: src/utils/font-awesome-new.js:172 +msgid "Custom list" +msgstr "" + +#: src/utils/font-awesome-new.js:327 +msgid "Preset" +msgstr "" + +#: src/utils/font-awesome-new.js:369 msgid "Font Awesome icon list" msgstr "" -#: src/utils/font-awesome-new.js:246 +#: src/utils/font-awesome-new.js:372 msgid "" "If you want to use an icon other than the ones listed above, you can use " "any of the icons from Font Awesome's icon list Please select a tag and " "enter it." msgstr "" -#: src/utils/font-awesome-new.js:251 +#: src/utils/font-awesome-new.js:377 msgid "Ex) " msgstr "" -#: src/utils/font-awesome-new.js:265 +#: src/utils/font-awesome-new.js:391 +msgid "Add selected icon to custom list" +msgstr "" + +#: src/utils/font-awesome-new.js:399 +msgid "Delete/Sort mode" +msgstr "" + +#: src/utils/font-awesome-new.js:416 msgid "" "When you click save button, the window will be reloaded and this setting " "will be applied." msgstr "" -#: src/utils/font-awesome-new.js:275 +#: src/utils/font-awesome-new.js:426 msgid "Save" msgstr "" -#: src/utils/font-awesome-new.js:291 +#: src/utils/font-awesome-new.js:442 msgid "Select Icon" msgstr "" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index e42bcf15b..12352029d 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,9 +9,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-07-11T00:13:30+00:00\n" +"POT-Creation-Date: 2023-07-11T01:39:35+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.8.1\n" +"X-Generator: WP-CLI 2.5.0\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -35,7 +35,7 @@ msgstr "" #: src/admin/custom-block-style/item/title-area/delete-button/index.js:63 #: src/admin/custom-format/add-item.js:152 #: src/admin/custom-format/delete-item-button.js:63 -#: src/admin/import-export/import-form.js:417 +#: src/admin/import-export/import-form.js:510 msgid "Cancel" msgstr "" @@ -90,14 +90,12 @@ msgstr "" #: src/admin/block-manager/index.js:51 #: src/admin/import-export/index.js:106 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:84 #: inc/vk-blocks/admin/admin.php:117 msgid "Block Manager Setting" msgstr "" #: src/admin/block-style-manager/index.js:27 #: src/admin/import-export/index.js:115 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:85 #: inc/vk-blocks/admin/admin.php:118 msgid "Block Style Manager Setting" msgstr "" @@ -108,7 +106,7 @@ msgstr "" #: src/admin/custom-block-style/add-button/index.js:141 #: src/admin/custom-format/add-item.js:164 -#: src/admin/import-export/import-form.js:312 +#: src/admin/import-export/import-form.js:346 msgid "Add" msgstr "" @@ -163,7 +161,6 @@ msgstr "" #: src/admin/custom-block-style/index.js:77 #: src/admin/custom-block-style/item/title-area/delete-button/index.js:31 #: src/admin/import-export/index.js:52 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:79 #: inc/vk-blocks/admin/admin.php:112 msgid "Custom Block Style Setting" msgstr "" @@ -206,7 +203,6 @@ msgstr "" #: src/admin/custom-css.js:20 #: src/admin/import-export/index.js:96 #: src/extensions/common/custom-css-extension/index.js:225 -#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:15 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:15 msgid "Custom CSS Setting" msgstr "" @@ -271,9 +267,6 @@ msgstr "" #: src/blocks/button/edit.js:665 #: src/blocks/icon/edit.js:292 #: src/blocks/staff/edit.js:199 -#: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:67 -#: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:85 -#: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:171 msgid "Color" msgstr "" @@ -318,7 +311,6 @@ msgstr "" #: src/admin/custom-format/index.js:50 #: src/admin/import-export/index.js:39 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:78 #: inc/vk-blocks/admin/admin.php:111 msgid "Custom Format Setting" msgstr "" @@ -352,55 +344,57 @@ msgstr "" msgid "Toggle all" msgstr "" -#: src/admin/import-export/import-form.js:164 +#: src/admin/import-export/import-form.js:196 msgid "Invalid JSON file" msgstr "" -#: src/admin/import-export/import-form.js:167 +#: src/admin/import-export/import-form.js:199 msgid "Unknown error" msgstr "" -#: src/admin/import-export/import-form.js:231 +#: src/admin/import-export/import-form.js:263 msgid "Import data confirmation" msgstr "" -#: src/admin/import-export/import-form.js:238 +#: src/admin/import-export/import-form.js:270 msgid "No import data" msgstr "" #. Import %s -#: src/admin/import-export/import-form.js:273 +#: src/admin/import-export/import-form.js:305 msgid "Import %s" msgstr "" -#: src/admin/import-export/import-form.js:298 +#: src/admin/import-export/import-form.js:332 msgid "Import method" msgstr "" -#: src/admin/import-export/import-form.js:319 +#: src/admin/import-export/import-form.js:353 msgid "Override" msgstr "" -#: src/admin/import-export/import-form.js:357 +#: src/admin/import-export/import-form.js:456 msgid "The following data will not be imported because the identifiers are covered." msgstr "" -#: src/admin/import-export/import-form.js:432 +#: src/admin/import-export/import-form.js:525 msgid "Import" msgstr "" -#: src/admin/import-export/import-form.js:442 +#: src/admin/import-export/import-form.js:535 msgid "Import Success" msgstr "" -#: src/admin/import-export/index.js:130 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:86 +#: src/admin/import-export/index.js:124 +msgid "Font Awesome Custom Lists Setting" +msgstr "" + +#: src/admin/import-export/index.js:141 #: inc/vk-blocks/admin/admin.php:119 msgid "Import Export Tool" msgstr "" #: src/admin/import-export/index.js:15 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:74 #: inc/vk-blocks/admin/admin.php:107 msgid "License Key" msgstr "" @@ -513,7 +507,6 @@ msgid "Mobile" msgstr "" #: src/admin/margin.js:64 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:81 #: inc/vk-blocks/admin/admin.php:114 msgid "Common Margin Setting" msgstr "" @@ -606,7 +599,6 @@ msgstr "" #: src/blocks/faq2/index.js:21 #: src/blocks/slider/edit.js:494 #: src/extensions/common/inline-font-size/inline.js:28 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:465 #: inc/vk-blocks/class-vk-blocks-global-settings.php:465 msgid "Normal" msgstr "" @@ -869,9 +861,10 @@ msgid "Post Type Name" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:122 -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 +#: test/phpunit/pro/test-ancestor-page-list.php:89 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Ancestor Page Title" msgstr "" @@ -935,11 +928,11 @@ msgstr "" msgid "wysiwyg" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:262 +#: src/blocks/_pro/dynamic-text/edit.js:263 msgid "Setting up a link" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:274 +#: src/blocks/_pro/dynamic-text/edit.js:276 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:271 @@ -1149,8 +1142,6 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:183 #: src/blocks/balloon/edit.js:310 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:339 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:353 #: inc/vk-blocks/class-vk-blocks-global-settings.php:339 #: inc/vk-blocks/class-vk-blocks-global-settings.php:353 msgid "Border" @@ -1241,7 +1232,7 @@ msgstr "" #: src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:269 #: src/blocks/pr-content/edit.js:212 -#: src/utils/font-awesome-new.js:66 +#: src/utils/font-awesome-new.js:166 msgid "Icon" msgstr "" @@ -1395,7 +1386,6 @@ msgid "Wave" msgstr "" #: src/blocks/_pro/outer/edit.js:474 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:293 #: inc/vk-blocks/class-vk-blocks-global-settings.php:293 msgid "Triangle" msgstr "" @@ -1433,25 +1423,21 @@ msgstr "" #: src/blocks/_pro/step-item/edit.js:118 #: src/blocks/_pro/timeline-item/edit.js:88 #: src/blocks/pr-content/edit.js:145 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:391 #: inc/vk-blocks/class-vk-blocks-global-settings.php:391 msgid "Solid" msgstr "" #: src/blocks/_pro/outer/edit.js:550 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:399 #: inc/vk-blocks/class-vk-blocks-global-settings.php:399 msgid "Dotted" msgstr "" #: src/blocks/_pro/outer/edit.js:554 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:403 #: inc/vk-blocks/class-vk-blocks-global-settings.php:403 msgid "Dashed" msgstr "" #: src/blocks/_pro/outer/edit.js:558 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:407 #: inc/vk-blocks/class-vk-blocks-global-settings.php:407 msgid "Double" msgstr "" @@ -1699,7 +1685,6 @@ msgstr "" #: src/blocks/alert/edit.js:25 #: src/blocks/button/edit.js:680 #: src/blocks/pr-content/edit.js:171 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:427 #: inc/vk-blocks/class-vk-blocks-global-settings.php:427 msgid "Success" msgstr "" @@ -1707,7 +1692,6 @@ msgstr "" #: src/blocks/alert/edit.js:29 #: src/blocks/button/edit.js:684 #: src/blocks/pr-content/edit.js:175 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:423 #: inc/vk-blocks/class-vk-blocks-global-settings.php:423 msgid "Info" msgstr "" @@ -1715,7 +1699,6 @@ msgstr "" #: src/blocks/alert/edit.js:33 #: src/blocks/button/edit.js:688 #: src/blocks/pr-content/edit.js:179 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:431 #: inc/vk-blocks/class-vk-blocks-global-settings.php:431 msgid "Warning" msgstr "" @@ -1723,7 +1706,6 @@ msgstr "" #: src/blocks/alert/edit.js:37 #: src/blocks/button/edit.js:692 #: src/blocks/pr-content/edit.js:183 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:435 #: inc/vk-blocks/class-vk-blocks-global-settings.php:435 msgid "Danger" msgstr "" @@ -1936,7 +1918,6 @@ msgstr "" #: src/blocks/button/edit.js:326 #: src/extensions/common/inline-font-size/inline.js:23 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:460 #: inc/vk-blocks/class-vk-blocks-global-settings.php:460 msgid "Small" msgstr "" @@ -2163,7 +2144,6 @@ msgid "Heading style" msgstr "" #: src/blocks/heading/edit.js:268 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:251 #: inc/vk-blocks/class-vk-blocks-global-settings.php:251 msgid "Plain" msgstr "" @@ -2779,13 +2759,11 @@ msgid "Apply" msgstr "" #: src/extensions/common/inline-font-size/inline.js:33 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:470 #: inc/vk-blocks/class-vk-blocks-global-settings.php:470 msgid "Big" msgstr "" #: src/extensions/common/inline-font-size/inline.js:38 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:475 #: inc/vk-blocks/class-vk-blocks-global-settings.php:475 msgid "Extra big" msgstr "" @@ -2886,27 +2864,43 @@ msgstr "" msgid "Lorem ipsum" msgstr "" -#: src/utils/font-awesome-new.js:243 +#: src/utils/font-awesome-new.js:172 +msgid "Custom list" +msgstr "" + +#: src/utils/font-awesome-new.js:327 +msgid "Preset" +msgstr "" + +#: src/utils/font-awesome-new.js:369 msgid "Font Awesome icon list" msgstr "" -#: src/utils/font-awesome-new.js:246 +#: src/utils/font-awesome-new.js:372 msgid "If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it." msgstr "" -#: src/utils/font-awesome-new.js:251 +#: src/utils/font-awesome-new.js:377 msgid "Ex) " msgstr "" -#: src/utils/font-awesome-new.js:265 +#: src/utils/font-awesome-new.js:391 +msgid "Add selected icon to custom list" +msgstr "" + +#: src/utils/font-awesome-new.js:399 +msgid "Delete/Sort mode" +msgstr "" + +#: src/utils/font-awesome-new.js:416 msgid "When you click save button, the window will be reloaded and this setting will be applied." msgstr "" -#: src/utils/font-awesome-new.js:275 +#: src/utils/font-awesome-new.js:426 msgid "Save" msgstr "" -#: src/utils/font-awesome-new.js:291 +#: src/utils/font-awesome-new.js:442 msgid "Select Icon" msgstr "" @@ -2946,58 +2940,46 @@ msgstr "" msgid "https://vektor-inc.co.jp" msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:28 #: inc/admin-notices.php:28 msgid "We've released VK Blocks Pro!" msgstr "" #. translators: 1: opening a tag, 2: closing a tag -#: dist/vk-blocks-pro/inc/admin-notices.php:35 #: inc/admin-notices.php:35 msgid "Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details." msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:39 -#: dist/vk-blocks-pro/inc/admin-notices.php:45 #: inc/admin-notices.php:39 #: inc/admin-notices.php:45 msgid "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/" msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:46 #: inc/admin-notices.php:46 msgid "See more" msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:49 #: inc/admin-notices.php:49 msgid "Dismiss this notice" msgstr "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:72 #: inc/tgm-plugin-activation/tgm-config.php:72 msgid "Install Required Plugins" msgstr "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:73 #: inc/tgm-plugin-activation/tgm-config.php:73 msgid "Install Plugins" msgstr "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:75 #: inc/tgm-plugin-activation/tgm-config.php:75 msgid "Installing Plugin: %s" msgstr "" -#. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:76 #: inc/tgm-plugin-activation/tgm-config.php:76 msgid "Something went wrong with the plugin API." msgstr "" #. translators: -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:78 #: inc/tgm-plugin-activation/tgm-config.php:78 msgid "This plugin requires the following plugin: %1$s." msgid_plural "This plugin requires the following plugins: %1$s." @@ -3005,7 +2987,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:84 #: inc/tgm-plugin-activation/tgm-config.php:84 msgid "This plugin recommends the following plugin: %1$s.
Many additional functions are available for free." msgid_plural "This plugin recommends the following plugins: %1$s.
Many additional functions are available for free." @@ -3013,7 +2994,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:90 #: inc/tgm-plugin-activation/tgm-config.php:90 msgid "Sorry, but you do not have the correct permissions to install the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to install the %1$s plugins." @@ -3021,7 +3001,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:96 #: inc/tgm-plugin-activation/tgm-config.php:96 msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s." msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with this plugin: %1$s." @@ -3029,7 +3008,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:102 #: inc/tgm-plugin-activation/tgm-config.php:102 msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -3037,7 +3015,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:108 #: inc/tgm-plugin-activation/tgm-config.php:108 msgid "Sorry, but you do not have the correct permissions to update the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to update the %1$s plugins." @@ -3045,7 +3022,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:114 #: inc/tgm-plugin-activation/tgm-config.php:114 msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -3053,7 +3029,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:120 #: inc/tgm-plugin-activation/tgm-config.php:120 msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -3061,7 +3036,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:126 #: inc/tgm-plugin-activation/tgm-config.php:126 msgid "Sorry, but you do not have the correct permissions to activate the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to activate the %1$s plugins." @@ -3069,1081 +3043,913 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:132 #: inc/tgm-plugin-activation/tgm-config.php:132 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "" msgstr[1] "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:137 #: inc/tgm-plugin-activation/tgm-config.php:137 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "" msgstr[1] "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:142 #: inc/tgm-plugin-activation/tgm-config.php:142 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "" msgstr[1] "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:147 #: inc/tgm-plugin-activation/tgm-config.php:147 msgid "Return to Required Plugins Installer" msgstr "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:148 #: inc/tgm-plugin-activation/tgm-config.php:148 msgid "Plugin activated successfully." msgstr "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:149 #: inc/tgm-plugin-activation/tgm-config.php:149 msgid "The following plugin was activated successfully:" msgstr "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:151 #: inc/tgm-plugin-activation/tgm-config.php:151 msgid "No action taken. Plugin %1$s was already active." msgstr "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:153 #: inc/tgm-plugin-activation/tgm-config.php:153 msgid "Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin." msgstr "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:155 #: inc/tgm-plugin-activation/tgm-config.php:155 msgid "All plugins installed and activated successfully. %1$s" msgstr "" #. translators: %s = dashboard link. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:157 #: inc/tgm-plugin-activation/tgm-config.php:157 msgid "Please contact the administrator of this site for help." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:14 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:14 msgid "FAQ Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:50 #: inc/vk-blocks/admin/admin.php:83 msgid "Blocks setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:51 #: inc/vk-blocks/admin/admin.php:84 msgctxt "label in admin menu" msgid "Blocks" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:67 #: inc/vk-blocks/admin/admin.php:100 msgid "Blocks Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:76 #: inc/vk-blocks/admin/admin.php:109 msgid "Balloon Block Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:82 #: inc/vk-blocks/admin/admin.php:115 msgid "Load Separete Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:101 #: inc/vk-blocks/admin/admin.php:134 msgid "Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:27 #: inc/vk-blocks/blocks.php:27 msgid "Blocks" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:40 #: inc/vk-blocks/blocks.php:40 msgid "Blocks Layout" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:53 #: inc/vk-blocks/blocks.php:53 msgid "Deprecated Blocks" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Dummy Text" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "This message only display on the edit screen." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:126 #: inc/vk-blocks/build/blocks/page-content/index.php:123 #: src/blocks/page-content/index.php:123 +#: test/phpunit/free/test-page-content.php:59 msgid "Edit this area" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/index.php:87 #: inc/vk-blocks/build/blocks/_pro/archive-list/index.php:87 #: src/blocks/_pro/archive-list/index.php:87 msgid "Please select year" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/index.php:89 #: inc/vk-blocks/build/blocks/_pro/archive-list/index.php:89 #: src/blocks/_pro/archive-list/index.php:89 msgid "Please select month" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:42 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:42 #: src/blocks/_pro/taxonomy/index.php:42 msgid "Please select taxonomy" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:57 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:57 #: src/blocks/_pro/taxonomy/index.php:57 msgid "Categories" msgstr "" #. translators: -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:186 +#. translators: #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:186 #: src/blocks/_pro/taxonomy/index.php:186 msgid "All of %s" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:255 #: inc/vk-blocks/class-vk-blocks-global-settings.php:255 msgid "Background fill lightgray" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:259 #: inc/vk-blocks/class-vk-blocks-global-settings.php:259 msgid "Double border top and bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:263 #: inc/vk-blocks/class-vk-blocks-global-settings.php:263 msgid "Double border bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:267 #: inc/vk-blocks/class-vk-blocks-global-settings.php:267 msgid "Solid border top and bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:271 #: inc/vk-blocks/class-vk-blocks-global-settings.php:271 msgid "Solid border bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:275 #: inc/vk-blocks/class-vk-blocks-global-settings.php:275 msgid "Dotted border bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:279 #: inc/vk-blocks/class-vk-blocks-global-settings.php:279 msgid "Both ends" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:283 #: inc/vk-blocks/class-vk-blocks-global-settings.php:283 msgid "Brackets black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:289 #: inc/vk-blocks/class-vk-blocks-global-settings.php:289 msgid "Arrow" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:297 #: inc/vk-blocks/class-vk-blocks-global-settings.php:297 msgid "Check" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:301 #: inc/vk-blocks/class-vk-blocks-global-settings.php:301 msgid "Check Square" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:305 #: inc/vk-blocks/class-vk-blocks-global-settings.php:305 msgid "Check Circle" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:309 #: inc/vk-blocks/class-vk-blocks-global-settings.php:309 msgid "Handpoint" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:313 #: inc/vk-blocks/class-vk-blocks-global-settings.php:313 msgid "Pencil" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:317 #: inc/vk-blocks/class-vk-blocks-global-settings.php:317 msgid "Smile" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:321 #: inc/vk-blocks/class-vk-blocks-global-settings.php:321 msgid "Frown" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:325 #: inc/vk-blocks/class-vk-blocks-global-settings.php:325 msgid "Numbered Circle" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:329 #: inc/vk-blocks/class-vk-blocks-global-settings.php:329 msgid "Numbered Square" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:335 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:415 #: inc/vk-blocks/class-vk-blocks-global-settings.php:335 #: inc/vk-blocks/class-vk-blocks-global-settings.php:415 msgid "Border Top Bottom" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:343 #: inc/vk-blocks/class-vk-blocks-global-settings.php:343 msgid "Border / Stripes" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:349 #: inc/vk-blocks/class-vk-blocks-global-settings.php:349 msgid "Rounded02" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:357 #: inc/vk-blocks/class-vk-blocks-global-settings.php:357 msgid "Photo frame" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:361 #: inc/vk-blocks/class-vk-blocks-global-settings.php:361 msgid "Photo frame Tilt Right" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:365 #: inc/vk-blocks/class-vk-blocks-global-settings.php:365 msgid "Photo frame Tilt Left" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:369 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:419 #: inc/vk-blocks/class-vk-blocks-global-settings.php:369 #: inc/vk-blocks/class-vk-blocks-global-settings.php:419 msgid "Shadow" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:373 #: inc/vk-blocks/class-vk-blocks-global-settings.php:373 msgid "Wave01" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:377 #: inc/vk-blocks/class-vk-blocks-global-settings.php:377 msgid "Wave02" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:381 #: inc/vk-blocks/class-vk-blocks-global-settings.php:381 msgid "Wave03" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:385 #: inc/vk-blocks/class-vk-blocks-global-settings.php:385 msgid "Wave04" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:395 #: inc/vk-blocks/class-vk-blocks-global-settings.php:395 msgid "Solid Roundcorner" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:411 #: inc/vk-blocks/class-vk-blocks-global-settings.php:411 msgid "Stitch" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/font-awesome/class-vk-blocks-font-awesome-api.php:73 #: inc/vk-blocks/font-awesome/class-vk-blocks-font-awesome-api.php:73 msgid "Setting saved." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:253 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:253 msgid "Post" msgstr "" #. translators: %s: 投稿タイプ名 -#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:257 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:257 msgid "There are no %ss." msgstr "" -#: dist/vk-blocks-pro/inc/vk-css-optimize/config.php:12 #: inc/vk-css-optimize/config.php:12 msgid "VK Blocks " msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:105 #: vk-blocks.php:105 msgid "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:241 #: vk-blocks.php:305 msgid "License Key has no registered." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:246 #: vk-blocks.php:310 msgid "The VK Blocks Pro license is invalid." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:270 #: vk-blocks.php:334 msgid "Please enter a valid license key for any of the following products on the settings screen." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:280 #: vk-blocks.php:344 msgid "Enter the license key" msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:283 #: vk-blocks.php:347 msgid "If this display does not disappear even after entering a valid license key, re-acquire the update." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:284 #: vk-blocks.php:348 msgid "Re-acquisition of updates" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/alert/block.json #: inc/vk-blocks/build/blocks/alert/block.json #: src/blocks/alert/block.json msgctxt "block title" msgid "Alert" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/alert/block.json #: inc/vk-blocks/build/blocks/alert/block.json #: src/blocks/alert/block.json msgctxt "block description" msgid "A colored box with four statuses, including annotations and alerts." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: src/blocks/ancestor-page-list/block.json msgctxt "block title" msgid "Page list from ancestor" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: src/blocks/ancestor-page-list/block.json msgctxt "block description" msgid "Display Page list from ancestor page" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/balloon/block.json #: inc/vk-blocks/build/blocks/balloon/block.json #: src/blocks/balloon/block.json msgctxt "block title" msgid "Ballon" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/balloon/block.json #: inc/vk-blocks/build/blocks/balloon/block.json #: src/blocks/balloon/block.json msgctxt "block description" msgid "These speech balloons are perfect for recreating conversations." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/border-box/block.json #: inc/vk-blocks/build/blocks/border-box/block.json #: src/blocks/border-box/block.json msgctxt "block title" msgid "Border Box" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/border-box/block.json #: inc/vk-blocks/build/blocks/border-box/block.json #: src/blocks/border-box/block.json msgctxt "block description" msgid "This is a border box where you can place headings to attract attention." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/button/block.json #: inc/vk-blocks/build/blocks/button/block.json #: src/blocks/button/block.json msgctxt "block title" msgid "Button" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/button/block.json #: inc/vk-blocks/build/blocks/button/block.json #: src/blocks/button/block.json msgctxt "block description" msgid "A button link that can display icons before and after." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq/block.json #: inc/vk-blocks/build/blocks/faq/block.json #: src/blocks/faq/block.json msgctxt "block title" msgid "Classic FAQ" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq/block.json #: inc/vk-blocks/build/blocks/faq/block.json #: src/blocks/faq/block.json msgctxt "block description" msgid "Displays a combination of questions and answers." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-a/block.json #: inc/vk-blocks/build/blocks/faq2-a/block.json #: src/blocks/faq2-a/block.json msgctxt "block title" msgid "FAQ Answer" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-a/block.json #: inc/vk-blocks/build/blocks/faq2-a/block.json #: src/blocks/faq2-a/block.json msgctxt "block description" msgid "Answer area where you can add blocks freely." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-q/block.json #: inc/vk-blocks/build/blocks/faq2-q/block.json #: src/blocks/faq2-q/block.json msgctxt "block title" msgid "FAQ Question" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-q/block.json #: inc/vk-blocks/build/blocks/faq2-q/block.json #: src/blocks/faq2-q/block.json msgctxt "block description" msgid "Question area where you can freely add blocks." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2/block.json #: inc/vk-blocks/build/blocks/faq2/block.json #: src/blocks/faq2/block.json msgctxt "block title" msgid "New FAQ" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2/block.json #: inc/vk-blocks/build/blocks/faq2/block.json #: src/blocks/faq2/block.json msgctxt "block description" msgid "It displays a combination of questions and answers. You can freely add blocks to the question area as well." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/flow/block.json #: inc/vk-blocks/build/blocks/flow/block.json #: src/blocks/flow/block.json msgctxt "block title" msgid "Flow" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/flow/block.json #: inc/vk-blocks/build/blocks/flow/block.json #: src/blocks/flow/block.json msgctxt "block description" msgid "Displays a sequential description in time series." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/heading/block.json #: inc/vk-blocks/build/blocks/heading/block.json #: src/blocks/heading/block.json msgctxt "block title" msgid "Heading" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/heading/block.json #: inc/vk-blocks/build/blocks/heading/block.json #: src/blocks/heading/block.json msgctxt "block description" msgid "This is a heading that allows you to set text size, subtext, icon, and margin." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon-outer/block.json #: inc/vk-blocks/build/blocks/icon-outer/block.json #: src/blocks/icon-outer/block.json msgctxt "block title" msgid "Icon Outer" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon-outer/block.json #: inc/vk-blocks/build/blocks/icon-outer/block.json #: src/blocks/icon-outer/block.json msgctxt "block description" msgid "Display the Font Awesome icons horizontally." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon/block.json #: inc/vk-blocks/build/blocks/icon/block.json #: src/blocks/icon/block.json msgctxt "block title" msgid "Icon" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon/block.json #: inc/vk-blocks/build/blocks/icon/block.json #: src/blocks/icon/block.json msgctxt "block description" msgid "Display icons with Font Awesome." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/block.json #: inc/vk-blocks/build/blocks/page-content/block.json #: src/blocks/page-content/block.json msgctxt "block title" msgid "Page Content" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/block.json #: inc/vk-blocks/build/blocks/page-content/block.json #: src/blocks/page-content/block.json msgctxt "block description" msgid "Displays the body content of the specified parent page." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-blocks/block.json #: inc/vk-blocks/build/blocks/pr-blocks/block.json #: src/blocks/pr-blocks/block.json msgctxt "block title" msgid "PR Blocks (not recommended)" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-blocks/block.json #: inc/vk-blocks/build/blocks/pr-blocks/block.json #: src/blocks/pr-blocks/block.json msgctxt "block description" msgid "This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-content/block.json #: inc/vk-blocks/build/blocks/pr-content/block.json #: src/blocks/pr-content/block.json msgctxt "block title" msgid "PR Content" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-content/block.json #: inc/vk-blocks/build/blocks/pr-content/block.json #: src/blocks/pr-content/block.json msgctxt "block description" msgid "This is PR content where you can place images, headlines, text, and buttons." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider-item/block.json #: inc/vk-blocks/build/blocks/slider-item/block.json #: src/blocks/slider-item/block.json msgctxt "block title" msgid "Slider Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider-item/block.json #: inc/vk-blocks/build/blocks/slider-item/block.json #: src/blocks/slider-item/block.json msgctxt "block description" msgid "This is one item in the slider." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider/block.json #: inc/vk-blocks/build/blocks/slider/block.json #: src/blocks/slider/block.json msgctxt "block title" msgid "Slider" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider/block.json #: inc/vk-blocks/build/blocks/slider/block.json #: src/blocks/slider/block.json msgctxt "block description" msgid "This slider allows you to place various items.Slider is do not move in edit screen." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/spacer/block.json #: inc/vk-blocks/build/blocks/spacer/block.json #: src/blocks/spacer/block.json msgctxt "block title" msgid "Responsive Spacer" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/spacer/block.json #: inc/vk-blocks/build/blocks/spacer/block.json #: src/blocks/spacer/block.json msgctxt "block description" msgid "Use responsive spacers to get the margins right." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/staff/block.json #: inc/vk-blocks/build/blocks/staff/block.json #: src/blocks/staff/block.json msgctxt "block title" msgid "Staff" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/staff/block.json #: inc/vk-blocks/build/blocks/staff/block.json #: src/blocks/staff/block.json msgctxt "block description" msgid "Used for staff introduction, company introduction, school introduction, menu, etc." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: src/blocks/_pro/accordion-target/block.json msgctxt "block title" msgid "Accordion Target" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: src/blocks/_pro/accordion-target/block.json msgctxt "block description" msgid "This is the content area where you can add blocks freely." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: src/blocks/_pro/accordion-trigger/block.json msgctxt "block title" msgid "Accordion Trigger" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: src/blocks/_pro/accordion-trigger/block.json msgctxt "block description" msgid "This is the title area where you can freely add blocks." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion/block.json #: inc/vk-blocks/build/blocks/_pro/accordion/block.json #: src/blocks/_pro/accordion/block.json msgctxt "block title" msgid "Accordion" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion/block.json #: inc/vk-blocks/build/blocks/_pro/accordion/block.json #: src/blocks/_pro/accordion/block.json msgctxt "block description" msgid "Collapses and hides content when the content is long." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/animation/block.json #: inc/vk-blocks/build/blocks/_pro/animation/block.json #: src/blocks/_pro/animation/block.json msgctxt "block title" msgid "Animation" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/animation/block.json #: inc/vk-blocks/build/blocks/_pro/animation/block.json #: src/blocks/_pro/animation/block.json msgctxt "block description" msgid "Add animation to elements when scrolling the page." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: src/blocks/_pro/archive-list/block.json msgctxt "block title" msgid "Archive list" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: src/blocks/_pro/archive-list/block.json msgctxt "block description" msgid "Displays a list of archives" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: src/blocks/_pro/breadcrumb/block.json msgctxt "block title" msgid "Breadcrumb" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: src/blocks/_pro/breadcrumb/block.json msgctxt "block description" msgid "Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: src/blocks/_pro/button-outer/block.json msgctxt "block title" msgid "Button Outer" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: src/blocks/_pro/button-outer/block.json msgctxt "block description" msgid "Display the VK Button block horizontally." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card-item/block.json #: inc/vk-blocks/build/blocks/_pro/card-item/block.json #: src/blocks/_pro/card-item/block.json msgctxt "block title" msgid "Card Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card-item/block.json #: inc/vk-blocks/build/blocks/_pro/card-item/block.json #: src/blocks/_pro/card-item/block.json msgctxt "block description" msgid "A single item in a card block." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card/block.json #: inc/vk-blocks/build/blocks/_pro/card/block.json #: src/blocks/_pro/card/block.json msgctxt "block title" msgid "Card" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card/block.json #: inc/vk-blocks/build/blocks/_pro/card/block.json #: src/blocks/_pro/card/block.json msgctxt "block description" msgid "A card where you can place images, headings, text, and links." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/child-page/block.json #: inc/vk-blocks/build/blocks/_pro/child-page/block.json #: src/blocks/_pro/child-page/block.json msgctxt "block title" msgid "Child page list" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/child-page/block.json #: inc/vk-blocks/build/blocks/_pro/child-page/block.json #: src/blocks/_pro/child-page/block.json msgctxt "block description" msgid "When a parent page is specified, a list of its child pages will be displayed." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: src/blocks/_pro/dynamic-text/block.json msgctxt "block title" msgid "Dynamic Text" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: src/blocks/_pro/dynamic-text/block.json msgctxt "block description" msgid "Display dynamic text" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: src/blocks/_pro/grid-column-item/block.json msgctxt "block title" msgid "Grid Column Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: src/blocks/_pro/grid-column-item/block.json msgctxt "block description" msgid "One item in a grit column block." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: src/blocks/_pro/grid-column/block.json msgctxt "block title" msgid "Grid Column" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: src/blocks/_pro/grid-column/block.json msgctxt "block description" msgid "Set the number of columns to be displayed for each screen size." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: src/blocks/_pro/gridcolcard-item-body/block.json msgctxt "block title" msgid "Grid Column Card Item Body" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: src/blocks/_pro/gridcolcard-item-body/block.json msgctxt "block description" msgid "Body of Grid Column Card Block Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: src/blocks/_pro/gridcolcard-item-footer/block.json msgctxt "block title" msgid "Grid Column Card Item Footer" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: src/blocks/_pro/gridcolcard-item-footer/block.json msgctxt "block description" msgid "Footer button area of Grid Column Card Block Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: src/blocks/_pro/gridcolcard-item-header/block.json msgctxt "block title" msgid "Grid Column Card Item header" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: src/blocks/_pro/gridcolcard-item-header/block.json msgctxt "block description" msgid "Header image area of Grid Column Card Block Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: src/blocks/_pro/gridcolcard-item/block.json msgctxt "block title" msgid "Grid Column Card Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: src/blocks/_pro/gridcolcard-item/block.json msgctxt "block description" msgid "It is a block of single column of Grid Column Card." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: src/blocks/_pro/gridcolcard/block.json msgctxt "block title" msgid "Grid Column Card" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: src/blocks/_pro/gridcolcard/block.json msgctxt "block description" msgid "This block can flexible column layout" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: src/blocks/_pro/icon-card-item/block.json msgctxt "block title" msgid "Icon Card Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: src/blocks/_pro/icon-card-item/block.json msgctxt "block description" msgid "This is one item in an icon card." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: src/blocks/_pro/icon-card/block.json msgctxt "block title" msgid "Icon Card" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: src/blocks/_pro/icon-card/block.json msgctxt "block description" msgid "Display card with icons, headings, text, and links." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/outer/block.json #: inc/vk-blocks/build/blocks/_pro/outer/block.json #: src/blocks/_pro/outer/block.json msgctxt "block title" msgid "Outer" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/outer/block.json #: inc/vk-blocks/build/blocks/_pro/outer/block.json #: src/blocks/_pro/outer/block.json msgctxt "block description" msgid "Set the background image, color, and border to show the layout and divisions." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list/block.json msgctxt "block title" msgid "Post list" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list/block.json msgctxt "block description" msgid "Displays the list of posts by setting the post type, classification, and number of posts to display." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: src/blocks/_pro/select-post-list-item/block.json msgctxt "block title" msgid "Selected Post List Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: src/blocks/_pro/select-post-list-item/block.json msgctxt "block description" msgid "A single item in the select post list." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: src/blocks/_pro/select-post-list/block.json msgctxt "block title" msgid "Selected Post List" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: src/blocks/_pro/select-post-list/block.json msgctxt "block description" msgid "Displays an arbitrarily specified page with the layout of the posting list." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step-item/block.json #: inc/vk-blocks/build/blocks/_pro/step-item/block.json #: src/blocks/_pro/step-item/block.json msgctxt "block title" msgid "Step Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step-item/block.json #: inc/vk-blocks/build/blocks/_pro/step-item/block.json #: src/blocks/_pro/step-item/block.json msgctxt "block description" msgid "This element sets the icon, color, and style of the step mark." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step/block.json #: inc/vk-blocks/build/blocks/_pro/step/block.json #: src/blocks/_pro/step/block.json msgctxt "block title" msgid "Step" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step/block.json #: inc/vk-blocks/build/blocks/_pro/step/block.json #: src/blocks/_pro/step/block.json msgctxt "block description" msgid "Set and display step marks, which are useful when explaining the order." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: src/blocks/_pro/table-of-contents-new/block.json msgctxt "block title" msgid "Table of Contents" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: src/blocks/_pro/table-of-contents-new/block.json msgctxt "block description" msgid "This is a table of contents that is automatically generated according to the headings when added." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: src/blocks/_pro/taxonomy/block.json msgctxt "block title" msgid "Taxonomy" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: src/blocks/_pro/taxonomy/block.json msgctxt "block description" msgid "Display Taxnomy List Pulldown" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: src/blocks/_pro/timeline-item/block.json msgctxt "block title" msgid "Timeline Item" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: src/blocks/_pro/timeline-item/block.json msgctxt "block description" msgid "This element sets the label, color, and style of the timeline." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline/block.json #: inc/vk-blocks/build/blocks/_pro/timeline/block.json #: src/blocks/_pro/timeline/block.json msgctxt "block title" msgid "Timeline" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline/block.json #: inc/vk-blocks/build/blocks/_pro/timeline/block.json #: src/blocks/_pro/timeline/block.json msgctxt "block description" diff --git a/src/utils/font-awesome-new.js b/src/utils/font-awesome-new.js index 06d90a580..db82085f5 100644 --- a/src/utils/font-awesome-new.js +++ b/src/utils/font-awesome-new.js @@ -169,11 +169,7 @@ export const FontAwesome = (props) => { {existsIconPreset && (

- {__( - // 'Custom list', - 'カスタムリスト', - 'vk-blocks-pro' - )} + {__('Custom list', 'vk-blocks-pro')}

{optionObj?.vkBlocksOption?.icon_custom_lists && @@ -325,11 +321,7 @@ export const FontAwesome = (props) => {
{existsIconPreset && (

- {__( - // 'Preset', - 'プリセット', - 'vk-blocks-pro' - )} + {__('Preset', 'vk-blocks-pro')}

)}
@@ -391,19 +383,14 @@ export const FontAwesome = (props) => { } > {__( - '選択中アイコンをカスタムリストに追加', - // 'Add selected icon to custom list', + 'Add selected icon to custom list', 'vk-blocks-pro' )} {existsIconPreset && ( setIsEditMode(!isEditMode)} /> From 9da18a61691641af34752f66a8035c382283e314 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 11 Jul 2023 10:48:46 +0900 Subject: [PATCH 36/38] [ Change version ] 1.60.0.0 --- languages/vk-blocks-pro-js.pot | 64 +++++++++++++++++++---------- languages/vk-blocks-pro.pot | 74 +++++++++++++++++++++++----------- readme.txt | 2 +- 3 files changed, 93 insertions(+), 47 deletions(-) diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index 71b30d468..614e055e1 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -24,7 +24,7 @@ msgstr "" #: src/admin/custom-block-style/item/title-area/delete-button/index.js:63 #: src/admin/custom-format/add-item.js:152 #: src/admin/custom-format/delete-item-button.js:63 -#: src/admin/import-export/import-form.js:417 +#: src/admin/import-export/import-form.js:510 msgid "Cancel" msgstr "" @@ -93,7 +93,7 @@ msgstr "" #: src/admin/custom-block-style/add-button/index.js:141 #: src/admin/custom-format/add-item.js:164 -#: src/admin/import-export/import-form.js:312 +#: src/admin/import-export/import-form.js:346 msgid "Add" msgstr "" @@ -338,48 +338,52 @@ msgstr "" msgid "Toggle all" msgstr "" -#: src/admin/import-export/import-form.js:164 +#: src/admin/import-export/import-form.js:196 msgid "Invalid JSON file" msgstr "" -#: src/admin/import-export/import-form.js:167 +#: src/admin/import-export/import-form.js:199 msgid "Unknown error" msgstr "" -#: src/admin/import-export/import-form.js:231 +#: src/admin/import-export/import-form.js:263 msgid "Import data confirmation" msgstr "" -#: src/admin/import-export/import-form.js:238 +#: src/admin/import-export/import-form.js:270 msgid "No import data" msgstr "" -#: src/admin/import-export/import-form.js:273 +#: src/admin/import-export/import-form.js:305 #. Import %s msgid "Import %s" msgstr "" -#: src/admin/import-export/import-form.js:298 +#: src/admin/import-export/import-form.js:332 msgid "Import method" msgstr "" -#: src/admin/import-export/import-form.js:319 +#: src/admin/import-export/import-form.js:353 msgid "Override" msgstr "" -#: src/admin/import-export/import-form.js:357 +#: src/admin/import-export/import-form.js:456 msgid "The following data will not be imported because the identifiers are covered." msgstr "" -#: src/admin/import-export/import-form.js:432 +#: src/admin/import-export/import-form.js:525 msgid "Import" msgstr "" -#: src/admin/import-export/import-form.js:442 +#: src/admin/import-export/import-form.js:535 msgid "Import Success" msgstr "" -#: src/admin/import-export/index.js:130 +#: src/admin/import-export/index.js:124 +msgid "Font Awesome Custom Lists Setting" +msgstr "" + +#: src/admin/import-export/index.js:141 msgid "Import Export Tool" msgstr "" @@ -927,11 +931,11 @@ msgstr "" msgid "wysiwyg" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:262 +#: src/blocks/_pro/dynamic-text/edit.js:263 msgid "Setting up a link" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:274 +#: src/blocks/_pro/dynamic-text/edit.js:276 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:271 @@ -1234,7 +1238,7 @@ msgstr "" #: src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:269 #: src/blocks/pr-content/edit.js:212 -#: src/utils/font-awesome-new.js:66 +#: src/utils/font-awesome-new.js:166 msgid "Icon" msgstr "" @@ -2894,32 +2898,48 @@ msgstr "" msgid "Lorem ipsum" msgstr "" -#: src/utils/font-awesome-new.js:243 +#: src/utils/font-awesome-new.js:172 +msgid "カスタムリスト" +msgstr "" + +#: src/utils/font-awesome-new.js:328 +msgid "プリセット" +msgstr "" + +#: src/utils/font-awesome-new.js:371 msgid "Font Awesome icon list" msgstr "" -#: src/utils/font-awesome-new.js:246 +#: src/utils/font-awesome-new.js:374 msgid "" "If you want to use an icon other than the ones listed above, you can use " "any of the icons from Font Awesome's icon list Please select a tag and " "enter it." msgstr "" -#: src/utils/font-awesome-new.js:251 +#: src/utils/font-awesome-new.js:379 msgid "Ex) " msgstr "" -#: src/utils/font-awesome-new.js:265 +#: src/utils/font-awesome-new.js:393 +msgid "選択中アイコンをカスタムリストに追加" +msgstr "" + +#: src/utils/font-awesome-new.js:402 +msgid "削除・並び替えモード" +msgstr "" + +#: src/utils/font-awesome-new.js:420 msgid "" "When you click save button, the window will be reloaded and this setting " "will be applied." msgstr "" -#: src/utils/font-awesome-new.js:275 +#: src/utils/font-awesome-new.js:430 msgid "Save" msgstr "" -#: src/utils/font-awesome-new.js:291 +#: src/utils/font-awesome-new.js:446 msgid "Select Icon" msgstr "" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index e42bcf15b..0d7f7a522 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,9 +9,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-07-11T00:13:30+00:00\n" +"POT-Creation-Date: 2023-07-11T01:48:07+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.8.1\n" +"X-Generator: WP-CLI 2.6.0\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -35,7 +35,7 @@ msgstr "" #: src/admin/custom-block-style/item/title-area/delete-button/index.js:63 #: src/admin/custom-format/add-item.js:152 #: src/admin/custom-format/delete-item-button.js:63 -#: src/admin/import-export/import-form.js:417 +#: src/admin/import-export/import-form.js:510 msgid "Cancel" msgstr "" @@ -108,7 +108,7 @@ msgstr "" #: src/admin/custom-block-style/add-button/index.js:141 #: src/admin/custom-format/add-item.js:164 -#: src/admin/import-export/import-form.js:312 +#: src/admin/import-export/import-form.js:346 msgid "Add" msgstr "" @@ -352,48 +352,52 @@ msgstr "" msgid "Toggle all" msgstr "" -#: src/admin/import-export/import-form.js:164 +#: src/admin/import-export/import-form.js:196 msgid "Invalid JSON file" msgstr "" -#: src/admin/import-export/import-form.js:167 +#: src/admin/import-export/import-form.js:199 msgid "Unknown error" msgstr "" -#: src/admin/import-export/import-form.js:231 +#: src/admin/import-export/import-form.js:263 msgid "Import data confirmation" msgstr "" -#: src/admin/import-export/import-form.js:238 +#: src/admin/import-export/import-form.js:270 msgid "No import data" msgstr "" #. Import %s -#: src/admin/import-export/import-form.js:273 +#: src/admin/import-export/import-form.js:305 msgid "Import %s" msgstr "" -#: src/admin/import-export/import-form.js:298 +#: src/admin/import-export/import-form.js:332 msgid "Import method" msgstr "" -#: src/admin/import-export/import-form.js:319 +#: src/admin/import-export/import-form.js:353 msgid "Override" msgstr "" -#: src/admin/import-export/import-form.js:357 +#: src/admin/import-export/import-form.js:456 msgid "The following data will not be imported because the identifiers are covered." msgstr "" -#: src/admin/import-export/import-form.js:432 +#: src/admin/import-export/import-form.js:525 msgid "Import" msgstr "" -#: src/admin/import-export/import-form.js:442 +#: src/admin/import-export/import-form.js:535 msgid "Import Success" msgstr "" -#: src/admin/import-export/index.js:130 +#: src/admin/import-export/index.js:124 +msgid "Font Awesome Custom Lists Setting" +msgstr "" + +#: src/admin/import-export/index.js:141 #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:86 #: inc/vk-blocks/admin/admin.php:119 msgid "Import Export Tool" @@ -872,6 +876,8 @@ msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 +#: test/phpunit/pro/test-ancestor-page-list.php:89 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Ancestor Page Title" msgstr "" @@ -935,11 +941,11 @@ msgstr "" msgid "wysiwyg" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:262 +#: src/blocks/_pro/dynamic-text/edit.js:263 msgid "Setting up a link" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:274 +#: src/blocks/_pro/dynamic-text/edit.js:276 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:271 @@ -1241,7 +1247,7 @@ msgstr "" #: src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:269 #: src/blocks/pr-content/edit.js:212 -#: src/utils/font-awesome-new.js:66 +#: src/utils/font-awesome-new.js:166 msgid "Icon" msgstr "" @@ -2886,27 +2892,43 @@ msgstr "" msgid "Lorem ipsum" msgstr "" -#: src/utils/font-awesome-new.js:243 +#: src/utils/font-awesome-new.js:172 +msgid "カスタムリスト" +msgstr "" + +#: src/utils/font-awesome-new.js:328 +msgid "プリセット" +msgstr "" + +#: src/utils/font-awesome-new.js:371 msgid "Font Awesome icon list" msgstr "" -#: src/utils/font-awesome-new.js:246 +#: src/utils/font-awesome-new.js:374 msgid "If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it." msgstr "" -#: src/utils/font-awesome-new.js:251 +#: src/utils/font-awesome-new.js:379 msgid "Ex) " msgstr "" -#: src/utils/font-awesome-new.js:265 +#: src/utils/font-awesome-new.js:393 +msgid "選択中アイコンをカスタムリストに追加" +msgstr "" + +#: src/utils/font-awesome-new.js:402 +msgid "削除・並び替えモード" +msgstr "" + +#: src/utils/font-awesome-new.js:420 msgid "When you click save button, the window will be reloaded and this setting will be applied." msgstr "" -#: src/utils/font-awesome-new.js:275 +#: src/utils/font-awesome-new.js:430 msgid "Save" msgstr "" -#: src/utils/font-awesome-new.js:291 +#: src/utils/font-awesome-new.js:446 msgid "Select Icon" msgstr "" @@ -3183,24 +3205,28 @@ msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Dummy Text" msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor." msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 #: src/blocks/ancestor-page-list/index.php:83 +#: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "This message only display on the edit screen." msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:126 #: inc/vk-blocks/build/blocks/page-content/index.php:123 #: src/blocks/page-content/index.php:123 +#: test/phpunit/free/test-page-content.php:59 msgid "Edit this area" msgstr "" diff --git a/readme.txt b/readme.txt index a96e5548b..6392ef086 100644 --- a/readme.txt +++ b/readme.txt @@ -65,8 +65,8 @@ e.g. == Changelog == -[ Add Function ] Add Font Awesome icon custom list function. = 1.60.0 = +[ Add Function ] Add Font Awesome icon custom list function. [ Add Function ][ Dynamic Text Block (Pro) ] URL support for custom fields. [ Add Function ][ FAQ2 ] Add an accordion default option on a per-block. [ Specification Change ] Disable HTML editing for blocks with inner blocks, as the blocks are broken. From e042bb8576beb015ea8da06c88e4e953c950da7a Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 11 Jul 2023 10:55:57 +0900 Subject: [PATCH 37/38] =?UTF-8?q?=E3=83=AB=E3=83=BC=E3=83=AB=E7=84=A1?= =?UTF-8?q?=E8=A6=96=E5=AF=BE=E5=BF=9C=20https://github.com/vektor-inc/vk-?= =?UTF-8?q?blocks-pro/commit/9da18a61691641af34752f66a8035c382283e314?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vk-blocks-pro-ja-vk-blocks-admin-js.json | 2 +- .../vk-blocks-pro-ja-vk-blocks-build-js.json | 2 +- languages/vk-blocks-pro-js.pot | 18 +++++------ languages/vk-blocks-pro.pot | 30 +++++++++---------- 4 files changed, 26 insertions(+), 26 deletions(-) diff --git a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json index 121dbcfbc..999502694 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Add selected icon to custom list":["選択中アイコンをカスタムリストに追加"],"Delete/Sort mode":["削除・並び替えモード"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome Custom Lists Setting":["Font Awesomeカスタムリスト設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Add selected icon to custom list":["選択中アイコンをカスタムリストに追加"],"Delete/Sort mode":["削除・並び替えモード"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json index 121dbcfbc..999502694 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Add selected icon to custom list":["選択中アイコンをカスタムリストに追加"],"Delete/Sort mode":["削除・並び替えモード"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome Custom Lists Setting":["Font Awesomeカスタムリスト設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Add selected icon to custom list":["選択中アイコンをカスタムリストに追加"],"Delete/Sort mode":["削除・並び替えモード"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":[""],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"label":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["Block"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Height":["高さ"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index 7a72e15a7..e92d2f74c 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -2902,44 +2902,44 @@ msgstr "" msgid "Custom list" msgstr "" -#: src/utils/font-awesome-new.js:327 +#: src/utils/font-awesome-new.js:324 msgid "Preset" msgstr "" -#: src/utils/font-awesome-new.js:369 +#: src/utils/font-awesome-new.js:363 msgid "Font Awesome icon list" msgstr "" -#: src/utils/font-awesome-new.js:372 +#: src/utils/font-awesome-new.js:366 msgid "" "If you want to use an icon other than the ones listed above, you can use " "any of the icons from Font Awesome's icon list Please select a tag and " "enter it." msgstr "" -#: src/utils/font-awesome-new.js:377 +#: src/utils/font-awesome-new.js:371 msgid "Ex) " msgstr "" -#: src/utils/font-awesome-new.js:391 +#: src/utils/font-awesome-new.js:385 msgid "Add selected icon to custom list" msgstr "" -#: src/utils/font-awesome-new.js:399 +#: src/utils/font-awesome-new.js:393 msgid "Delete/Sort mode" msgstr "" -#: src/utils/font-awesome-new.js:416 +#: src/utils/font-awesome-new.js:407 msgid "" "When you click save button, the window will be reloaded and this setting " "will be applied." msgstr "" -#: src/utils/font-awesome-new.js:426 +#: src/utils/font-awesome-new.js:417 msgid "Save" msgstr "" -#: src/utils/font-awesome-new.js:442 +#: src/utils/font-awesome-new.js:433 msgid "Select Icon" msgstr "" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index d584ee795..e447a8827 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,9 +9,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-07-11T01:48:07+00:00\n" +"POT-Creation-Date: 2023-07-11T01:55:28+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.6.0\n" +"X-Generator: WP-CLI 2.5.0\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -2865,42 +2865,42 @@ msgid "Lorem ipsum" msgstr "" #: src/utils/font-awesome-new.js:172 -msgid "カスタムリスト" +msgid "Custom list" msgstr "" -#: src/utils/font-awesome-new.js:328 -msgid "プリセット" +#: src/utils/font-awesome-new.js:324 +msgid "Preset" msgstr "" -#: src/utils/font-awesome-new.js:371 +#: src/utils/font-awesome-new.js:363 msgid "Font Awesome icon list" msgstr "" -#: src/utils/font-awesome-new.js:374 +#: src/utils/font-awesome-new.js:366 msgid "If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it." msgstr "" -#: src/utils/font-awesome-new.js:379 +#: src/utils/font-awesome-new.js:371 msgid "Ex) " msgstr "" -#: src/utils/font-awesome-new.js:393 -msgid "選択中アイコンをカスタムリストに追加" +#: src/utils/font-awesome-new.js:385 +msgid "Add selected icon to custom list" msgstr "" -#: src/utils/font-awesome-new.js:402 -msgid "削除・並び替えモード" +#: src/utils/font-awesome-new.js:393 +msgid "Delete/Sort mode" msgstr "" -#: src/utils/font-awesome-new.js:420 +#: src/utils/font-awesome-new.js:407 msgid "When you click save button, the window will be reloaded and this setting will be applied." msgstr "" -#: src/utils/font-awesome-new.js:430 +#: src/utils/font-awesome-new.js:417 msgid "Save" msgstr "" -#: src/utils/font-awesome-new.js:446 +#: src/utils/font-awesome-new.js:433 msgid "Select Icon" msgstr "" From 0630cb2002b2f76e5b159d88a07b81f6b8d43949 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 11 Jul 2023 15:52:40 +0900 Subject: [PATCH 38/38] fix/admin/redux-store/tuning --- inc/vk-blocks/admin/admin.php | 1 + src/admin/index.js | 58 +++++++++++++++++------------------ 2 files changed, 29 insertions(+), 30 deletions(-) diff --git a/inc/vk-blocks/admin/admin.php b/inc/vk-blocks/admin/admin.php index 48764fe83..09b3f7135 100644 --- a/inc/vk-blocks/admin/admin.php +++ b/inc/vk-blocks/admin/admin.php @@ -198,6 +198,7 @@ function vk_blocks_options_enqueue_scripts( $hook_suffix ) { 'vk-blocks-admin-js', 'vkBlocksObject', array( + 'options' => VK_Blocks_Options::get_options(), 'isLicenseSetting' => vk_blocks_is_license_setting(), 'isPro' => vk_blocks_is_pro(), 'deprecatedLists' => VK_Blocks_Options::get_deprecated_lists(), diff --git a/src/admin/index.js b/src/admin/index.js index 7dec393db..6be36f059 100644 --- a/src/admin/index.js +++ b/src/admin/index.js @@ -53,36 +53,34 @@ export default function VKBlocksAdmin() { return ( <> {/* AdminContext.Providerで各コンポーネントにvalueを渡す */} - {!!vkBlocksOption && ( - - {vkBlocksObject.isLicenseSetting && } - - {vkBlocksObject.isPro && } - {vkBlocksObject.isPro && } - - - {vkBlocksObject.isPro && } - {vkBlocksObject.isPro && } - - - - - - )} + + {vkBlocksObject.isLicenseSetting && } + + {vkBlocksObject.isPro && } + {vkBlocksObject.isPro && } + + + {vkBlocksObject.isPro && } + {vkBlocksObject.isPro && } + + + + + ); }