From 0248acb7d0fa63e3022a63337de738fedbee33b1 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 15:38:33 +0900 Subject: [PATCH 01/53] =?UTF-8?q?[=20=E5=9B=BA=E5=AE=9A=E3=83=9A=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E6=9C=AC=E6=96=87=20]=20=E5=85=AC=E9=96=8B=E3=82=B3?= =?UTF-8?q?=E3=83=B3=E3=83=86=E3=83=B3=E3=83=84=E3=81=AE=E3=81=BF=E8=A1=A8?= =?UTF-8?q?=E7=A4=BA=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E4=BB=95?= =?UTF-8?q?=E6=A7=98=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.txt | 2 ++ src/blocks/page-content/index.php | 9 ++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index f0c98d7ad..2ee03e1d9 100644 --- a/readme.txt +++ b/readme.txt @@ -107,6 +107,8 @@ e.g. 1. VK Blocks examples. == Changelog == + +[ Specification Change ][ Page Content ] Modify the specification so that the display is shown only when the referenced page is public. [ Add function ][ Slider ] Added noreferrer, nofollow, and link description options to the link feature. = 1.94.2 = diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index bfc140381..2b10f2d8c 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -54,7 +54,14 @@ function vk_blocks_register_block_page_content() { */ function vk_blocks_page_content_render_callback( $attributes ) { $page_content_id = ! empty( $attributes['TargetPost'] ) ? $attributes['TargetPost'] : -1; - $page_content = -1 !== $page_content_id ? get_post( $page_content_id )->post_content : ''; + $post = get_post( $page_content_id ); + + // 投稿が存在し、公開されているかを確認 + if ( ! $post || 'publish' !== $post->post_status ) { + return __( 'Post not found or not public.', 'vk-blocks' ); + } + + $page_content = $post->post_content; vk_blocks_content_enqueue_scripts( $page_content ); $vk_blocks_options = VK_Blocks_Options::get_options(); From 8acdc545406f3c5a34629e52645b07857f06331c Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 15:51:52 +0900 Subject: [PATCH 02/53] fix textdomain --- src/blocks/page-content/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 2b10f2d8c..84f7f5788 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -58,7 +58,7 @@ function vk_blocks_page_content_render_callback( $attributes ) { // 投稿が存在し、公開されているかを確認 if ( ! $post || 'publish' !== $post->post_status ) { - return __( 'Post not found or not public.', 'vk-blocks' ); + return __( 'Post not found or not public.', 'vk-blocks-pro' ); } $page_content = $post->post_content; From 2a926f09d6255f6877e3d7d91772d47182fe3adf Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 17:51:35 +0900 Subject: [PATCH 03/53] =?UTF-8?q?[=20=E5=9B=BA=E5=AE=9A=E3=83=9A=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E6=9C=AC=E6=96=87=20]=20=E9=9D=9E=E5=85=AC=E9=96=8B?= =?UTF-8?q?=E6=8A=95=E7=A8=BF=E3=81=AE=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/page-content/index.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 84f7f5788..a1546d5e3 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -56,9 +56,17 @@ function vk_blocks_page_content_render_callback( $attributes ) { $page_content_id = ! empty( $attributes['TargetPost'] ) ? $attributes['TargetPost'] : -1; $post = get_post( $page_content_id ); + $is_rest_request = defined( 'REST_REQUEST' ) && REST_REQUEST; + // 投稿が存在し、公開されているかを確認 if ( ! $post || 'publish' !== $post->post_status ) { - return __( 'Post not found or not public.', 'vk-blocks-pro' ); + if ( is_admin() || $is_rest_request ) { + return '

' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

  • '.__( 'From version 1.95.0 onwards, non-public pages can no longer be displayed. +If you want to display non-public content in multiple locations, please register it as a synced pattern and place it in the desired locations instead of using this block.' ).'
'; + } else { + // 公開画面では何も表示しない + return ''; + } } $page_content = $post->post_content; From ccadef4fa1b62b0bd5964ea4f5051a7a1f429d0d Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 17:56:14 +0900 Subject: [PATCH 04/53] =?UTF-8?q?=E9=9D=9E=E5=85=AC=E9=96=8B=E3=83=A1?= =?UTF-8?q?=E3=83=83=E3=82=BB=E3=83=BC=E3=82=B8=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/page-content/edit.js | 2 +- src/blocks/page-content/index.php | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/blocks/page-content/edit.js b/src/blocks/page-content/edit.js index c2b2fe605..fd2d9594e 100644 --- a/src/blocks/page-content/edit.js +++ b/src/blocks/page-content/edit.js @@ -72,7 +72,7 @@ export default function PageContentEdit({ attributes, setAttributes }) { />

{__( - 'This block can display private content. Please note that this content will be public even if you set the original page to private.', + 'From version 1.95.0 onwards, non-public pages can no longer be displayed.If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', 'vk-blocks-pro' )}

diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index a1546d5e3..ffa459757 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -61,8 +61,11 @@ function vk_blocks_page_content_render_callback( $attributes ) { // 投稿が存在し、公開されているかを確認 if ( ! $post || 'publish' !== $post->post_status ) { if ( is_admin() || $is_rest_request ) { - return '

' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

  • '.__( 'From version 1.95.0 onwards, non-public pages can no longer be displayed. -If you want to display non-public content in multiple locations, please register it as a synced pattern and place it in the desired locations instead of using this block.' ).'
'; + return '

' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

  • ' . __( + 'From version 1.95.0 onwards, non-public pages can no longer be displayed. +If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', + 'vk-blocks-pro' + ) . '
'; } else { // 公開画面では何も表示しない return ''; From e7b27b51b835175ee8843f222691bfacf0405041 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 18:01:39 +0900 Subject: [PATCH 05/53] build --- src/blocks/page-content/index.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index ffa459757..3a33c1649 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -63,8 +63,7 @@ function vk_blocks_page_content_render_callback( $attributes ) { if ( is_admin() || $is_rest_request ) { return '

' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

  • ' . __( 'From version 1.95.0 onwards, non-public pages can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', - 'vk-blocks-pro' +If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', 'vk-blocks-pro' ) . '
'; } else { // 公開画面では何も表示しない From dbc6b13e3f2a94804bde783efdc7fa08686cf2bc Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 18:03:08 +0900 Subject: [PATCH 06/53] lint --- src/blocks/page-content/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 3a33c1649..ffa459757 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -63,7 +63,8 @@ function vk_blocks_page_content_render_callback( $attributes ) { if ( is_admin() || $is_rest_request ) { return '

' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

  • ' . __( 'From version 1.95.0 onwards, non-public pages can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', 'vk-blocks-pro' +If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', + 'vk-blocks-pro' ) . '
'; } else { // 公開画面では何も表示しない From b91043aa820ea004c59dea97adf016d163e9b2fd Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 19:41:00 +0900 Subject: [PATCH 07/53] =?UTF-8?q?=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF?= =?UTF-8?q?=E5=87=A6=E7=90=86=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...lass-check-using-vk-page-content-block.php | 62 +++++++++++++++++++ src/blocks/page-content/index.php | 4 ++ 2 files changed, 66 insertions(+) create mode 100644 src/blocks/page-content/class-check-using-vk-page-content-block.php diff --git a/src/blocks/page-content/class-check-using-vk-page-content-block.php b/src/blocks/page-content/class-check-using-vk-page-content-block.php new file mode 100644 index 000000000..6530ad6f5 --- /dev/null +++ b/src/blocks/page-content/class-check-using-vk-page-content-block.php @@ -0,0 +1,62 @@ + 'any', + 'post_status' => 'any', + 's' => '/', $content, $matches ); + + if ( ! empty( $matches[1] ) ) { + foreach ( $matches[1] as $target_post_id ) { + $target_post = get_post( $target_post_id ); + + if ( 'unpublic' === $post_status && 'publish' === $target_post->post_status ) { + continue; + } + + $output .= '
  • ' . get_the_title() . '
  • '; + } + } + } + wp_reset_postdata(); + } + + return $output ? '
      ' . $output . '
    ' : ''; + } + + /** + * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド + */ + public function display_alert() { + $list = $this->get_post_list_using_page_content_block( 'unpublic' ); + + if ( $list ) { + add_action( 'admin_notices', function() use ( $list ) { + echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list . '
    '; + }); + } + } +} \ No newline at end of file diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index ffa459757..e92930906 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -5,6 +5,10 @@ * @package VK Blocks */ +require_once plugin_dir_path( __FILE__ ) . 'class-check-using-vk-page-content-block.php'; +// クラスのインスタンスを作成して自動的にアクションを登録 +new checkUsingVKPageContentBlock(); + /** * Registers the `vk-blocks/page-content` block. * From dafcf7632ae87af7dbc7783c970686fb73e76158 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 20:01:14 +0900 Subject: [PATCH 08/53] =?UTF-8?q?[=20=E5=9B=BA=E5=AE=9A=E3=83=9A=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E6=9C=AC=E6=96=87=20][=20=E9=9D=9E=E5=85=AC=E9=96=8B?= =?UTF-8?q?=E6=8A=95=E7=A8=BF=E4=BD=BF=E7=94=A8=E3=83=81=E3=82=A7=E3=83=83?= =?UTF-8?q?=E3=82=AF=20]=20=E3=83=88=E3=83=BC=E3=82=BF=E3=83=AB=E3=81=AE?= =?UTF-8?q?=E4=BB=B6=E6=95=B0=E3=81=8C=E5=A4=9A=E3=81=84=E5=A0=B4=E5=90=88?= =?UTF-8?q?&=E4=B8=80=E3=81=A4=E3=81=AE=E6=8A=95=E7=A8=BF=E3=81=AB?= =?UTF-8?q?=E8=A4=87=E6=95=B0=E9=85=8D=E7=BD=AE=E3=81=95=E3=82=8C=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E5=A0=B4=E5=90=88=E3=81=AE=E5=AF=BE=E5=BF=9C?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...lass-check-using-vk-page-content-block.php | 52 ++++++++++++------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/src/blocks/page-content/class-check-using-vk-page-content-block.php b/src/blocks/page-content/class-check-using-vk-page-content-block.php index 6530ad6f5..748139858 100644 --- a/src/blocks/page-content/class-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-check-using-vk-page-content-block.php @@ -14,35 +14,49 @@ public function __construct() { * @return string */ public function get_post_list_using_page_content_block( $post_status ) { - $args = array( - 'post_type' => 'any', - 'post_status' => 'any', - 's' => '/', $content, $matches ); - if ( $query->have_posts() ) { - while ( $query->have_posts() ) { - $query->the_post(); - $content = get_the_content(); - preg_match_all( '//', $content, $matches ); + $include_post = false; // この投稿をリストに含めるかどうか - if ( ! empty( $matches[1] ) ) { - foreach ( $matches[1] as $target_post_id ) { - $target_post = get_post( $target_post_id ); + if ( ! empty( $matches[1] ) ) { + foreach ( $matches[1] as $target_post_id ) { + $target_post = get_post( $target_post_id ); - if ( 'unpublic' === $post_status && 'publish' === $target_post->post_status ) { - continue; + if ( 'unpublic' === $post_status && 'publish' !== $target_post->post_status ) { + $include_post = true; + break; // 一つでも非公開のものがあればリストに含める + } } + } + if ( $include_post ) { $output .= '
  • ' . get_the_title() . '
  • '; } } + wp_reset_postdata(); } - wp_reset_postdata(); - } + + $paged++; + } while ( $query->have_posts() ); return $output ? '
      ' . $output . '
    ' : ''; } From 38f1fc718227e58300601a41f173f3306241d43e Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 20:45:35 +0900 Subject: [PATCH 09/53] =?UTF-8?q?=E8=AD=A6=E5=91=8A=E3=83=A1=E3=83=83?= =?UTF-8?q?=E3=82=BB=E3=83=BC=E3=82=B8=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...lass-check-using-vk-page-content-block.php | 4 ++- src/blocks/page-content/edit.js | 6 ----- src/blocks/page-content/index.php | 25 +++++++++++-------- 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/src/blocks/page-content/class-check-using-vk-page-content-block.php b/src/blocks/page-content/class-check-using-vk-page-content-block.php index 748139858..78e8f1d17 100644 --- a/src/blocks/page-content/class-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-check-using-vk-page-content-block.php @@ -69,7 +69,9 @@ public function display_alert() { if ( $list ) { add_action( 'admin_notices', function() use ( $list ) { - echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list . '
    '; + echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list ; + echo '

    ' . wp_kses_post( get_vk_blocks_page_content_private_alert() ) . '

    '; + echo '
    '; }); } } diff --git a/src/blocks/page-content/edit.js b/src/blocks/page-content/edit.js index fd2d9594e..527afe56f 100644 --- a/src/blocks/page-content/edit.js +++ b/src/blocks/page-content/edit.js @@ -70,12 +70,6 @@ export default function PageContentEdit({ attributes, setAttributes }) { }) } /> -

    - {__( - 'From version 1.95.0 onwards, non-public pages can no longer be displayed.If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', - 'vk-blocks-pro' - )} -

    diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index e92930906..5c82775b1 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -5,10 +5,6 @@ * @package VK Blocks */ -require_once plugin_dir_path( __FILE__ ) . 'class-check-using-vk-page-content-block.php'; -// クラスのインスタンスを作成して自動的にアクションを登録 -new checkUsingVKPageContentBlock(); - /** * Registers the `vk-blocks/page-content` block. * @@ -50,6 +46,14 @@ function vk_blocks_register_block_page_content() { add_filter( 'vk_page_content', 'do_shortcode', 11 ); add_filter( 'vk_page_content', 'capital_P_dangit', 11 ); +function get_vk_blocks_page_content_private_alert(){ + $alert = __( "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. +If you want to display non-public content in multiple locations, please create it as a synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", + 'vk-blocks-pro' + ); + return $alert; +} + /** * Render Callback of Page Content Block * @@ -65,13 +69,9 @@ function vk_blocks_page_content_render_callback( $attributes ) { // 投稿が存在し、公開されているかを確認 if ( ! $post || 'publish' !== $post->post_status ) { if ( is_admin() || $is_rest_request ) { - return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    • ' . __( - 'From version 1.95.0 onwards, non-public pages can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', - 'vk-blocks-pro' - ) . '
    '; + return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    • ' . get_vk_blocks_page_content_private_alert() . '
    '; } else { - // 公開画面では何も表示しない + // Front Page return ''; } } @@ -169,3 +169,8 @@ function vk_blocks_content_enqueue_scripts( $page_content ) { } } add_action( 'wp_enqueue_scripts', 'vk_blocks_content_enqueue_scripts' ); + +// 非公開の投稿を参照して表示していないかのチェック +// Check if it is displaying content from non-public pages. +require_once plugin_dir_path( __FILE__ ) . 'class-check-using-vk-page-content-block.php'; +new checkUsingVKPageContentBlock(); \ No newline at end of file From 3af63c88c0938336dc54c7aad113bded2508c4b8 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 21:52:36 +0900 Subject: [PATCH 10/53] =?UTF-8?q?=E3=82=A2=E3=83=A9=E3=83=BC=E3=83=88?= =?UTF-8?q?=E8=A1=A8=E8=A8=98=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/page-content/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 5c82775b1..40b553904 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -48,7 +48,7 @@ function vk_blocks_register_block_page_content() { function get_vk_blocks_page_content_private_alert(){ $alert = __( "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", +If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", 'vk-blocks-pro' ); return $alert; @@ -69,7 +69,7 @@ function vk_blocks_page_content_render_callback( $attributes ) { // 投稿が存在し、公開されているかを確認 if ( ! $post || 'publish' !== $post->post_status ) { if ( is_admin() || $is_rest_request ) { - return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    • ' . get_vk_blocks_page_content_private_alert() . '
    '; + return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    ' . get_vk_blocks_page_content_private_alert() . '

    '; } else { // Front Page return ''; From 3248e3f356241a47d4fc697d39a1acd1a49ccf73 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 21:56:33 +0900 Subject: [PATCH 11/53] lint --- ...lass-check-using-vk-page-content-block.php | 127 +++++++++--------- src/blocks/page-content/index.php | 7 +- 2 files changed, 69 insertions(+), 65 deletions(-) diff --git a/src/blocks/page-content/class-check-using-vk-page-content-block.php b/src/blocks/page-content/class-check-using-vk-page-content-block.php index 78e8f1d17..f4dd2a4d3 100644 --- a/src/blocks/page-content/class-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-check-using-vk-page-content-block.php @@ -2,77 +2,80 @@ class checkUsingVKPageContentBlock { - public function __construct() { - // ダッシュボードでアラートを表示 - add_action( 'admin_init', array( $this, 'display_alert' ) ); - } + public function __construct() { + // ダッシュボードでアラートを表示 + add_action( 'admin_init', array( $this, 'display_alert' ) ); + } - /** - * 固定ページ本文ブロックが使われている記事リストを返す - * - * @param string $post_status : all / unpublic - * @return string - */ - public function get_post_list_using_page_content_block( $post_status ) { - $output = ''; - $paged = 1; - $posts_per_page = 100; // 一度に処理する投稿数 + /** + * 固定ページ本文ブロックが使われている記事リストを返す + * + * @param string $post_status : all / unpublic + * @return string + */ + public function get_post_list_using_page_content_block( $post_status ) { + $output = ''; + $paged = 1; + $posts_per_page = 100; // 一度に処理する投稿数 - do { - $args = array( - 'post_type' => 'any', - 'post_status' => 'any', - 's' => '/', $content, $matches ); + if ( $query->have_posts() ) { + while ( $query->have_posts() ) { + $query->the_post(); + $content = get_the_content(); + preg_match_all( '//', $content, $matches ); - $include_post = false; // この投稿をリストに含めるかどうか + $include_post = false; // この投稿をリストに含めるかどうか - if ( ! empty( $matches[1] ) ) { - foreach ( $matches[1] as $target_post_id ) { - $target_post = get_post( $target_post_id ); + if ( ! empty( $matches[1] ) ) { + foreach ( $matches[1] as $target_post_id ) { + $target_post = get_post( $target_post_id ); - if ( 'unpublic' === $post_status && 'publish' !== $target_post->post_status ) { - $include_post = true; - break; // 一つでも非公開のものがあればリストに含める - } - } - } + if ( 'unpublic' === $post_status && 'publish' !== $target_post->post_status ) { + $include_post = true; + break; // 一つでも非公開のものがあればリストに含める + } + } + } - if ( $include_post ) { - $output .= '
  • ' . get_the_title() . '
  • '; - } - } - wp_reset_postdata(); - } + if ( $include_post ) { + $output .= '
  • ' . get_the_title() . '
  • '; + } + } + wp_reset_postdata(); + } - $paged++; - } while ( $query->have_posts() ); + ++$paged; + } while ( $query->have_posts() ); - return $output ? '
      ' . $output . '
    ' : ''; - } + return $output ? '
      ' . $output . '
    ' : ''; + } - /** - * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド - */ - public function display_alert() { - $list = $this->get_post_list_using_page_content_block( 'unpublic' ); + /** + * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド + */ + public function display_alert() { + $list = $this->get_post_list_using_page_content_block( 'unpublic' ); - if ( $list ) { - add_action( 'admin_notices', function() use ( $list ) { - echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list ; - echo '

    ' . wp_kses_post( get_vk_blocks_page_content_private_alert() ) . '

    '; - echo '
    '; - }); - } - } -} \ No newline at end of file + if ( $list ) { + add_action( + 'admin_notices', + function () use ( $list ) { + echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list; + echo '

    ' . wp_kses_post( get_vk_blocks_page_content_private_alert() ) . '

    '; + echo '
    '; + } + ); + } + } +} diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 40b553904..41e445fab 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -46,8 +46,9 @@ function vk_blocks_register_block_page_content() { add_filter( 'vk_page_content', 'do_shortcode', 11 ); add_filter( 'vk_page_content', 'capital_P_dangit', 11 ); -function get_vk_blocks_page_content_private_alert(){ - $alert = __( "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. +function get_vk_blocks_page_content_private_alert() { + $alert = __( + "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", 'vk-blocks-pro' ); @@ -173,4 +174,4 @@ function vk_blocks_content_enqueue_scripts( $page_content ) { // 非公開の投稿を参照して表示していないかのチェック // Check if it is displaying content from non-public pages. require_once plugin_dir_path( __FILE__ ) . 'class-check-using-vk-page-content-block.php'; -new checkUsingVKPageContentBlock(); \ No newline at end of file +new checkUsingVKPageContentBlock(); From 7bec70ddbf1c5e4acea955d22c2c8e3645eb0696 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 22:02:46 +0900 Subject: [PATCH 12/53] =?UTF-8?q?=E9=96=A2=E6=95=B0=E5=90=8D=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../page-content/class-check-using-vk-page-content-block.php | 2 +- src/blocks/page-content/index.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blocks/page-content/class-check-using-vk-page-content-block.php b/src/blocks/page-content/class-check-using-vk-page-content-block.php index f4dd2a4d3..c1365f9aa 100644 --- a/src/blocks/page-content/class-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-check-using-vk-page-content-block.php @@ -72,7 +72,7 @@ public function display_alert() { 'admin_notices', function () use ( $list ) { echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list; - echo '

    ' . wp_kses_post( get_vk_blocks_page_content_private_alert() ) . '

    '; + echo '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; echo '
    '; } ); diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 41e445fab..191cfe8bb 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -46,7 +46,7 @@ function vk_blocks_register_block_page_content() { add_filter( 'vk_page_content', 'do_shortcode', 11 ); add_filter( 'vk_page_content', 'capital_P_dangit', 11 ); -function get_vk_blocks_page_content_private_alert() { +function vk_blocks_get_page_content_private_alert() { $alert = __( "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", @@ -70,7 +70,7 @@ function vk_blocks_page_content_render_callback( $attributes ) { // 投稿が存在し、公開されているかを確認 if ( ! $post || 'publish' !== $post->post_status ) { if ( is_admin() || $is_rest_request ) { - return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    ' . get_vk_blocks_page_content_private_alert() . '

    '; + return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; } else { // Front Page return ''; From 0fd2adbb18518be3b5901a27cd78a745c32cda88 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 22:05:15 +0900 Subject: [PATCH 13/53] add comment --- src/blocks/page-content/index.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 191cfe8bb..93b79481a 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -46,6 +46,11 @@ function vk_blocks_register_block_page_content() { add_filter( 'vk_page_content', 'do_shortcode', 11 ); add_filter( 'vk_page_content', 'capital_P_dangit', 11 ); +/** + * Get Page Content Private Alert Message + * + * @return string + */ function vk_blocks_get_page_content_private_alert() { $alert = __( "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. From 9577263d4bda335a1174183553e036f5b9f3a777 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 22:13:47 +0900 Subject: [PATCH 14/53] =?UTF-8?q?=E3=82=AF=E3=83=A9=E3=82=B9=E5=90=8D?= =?UTF-8?q?=E3=81=AA=E3=81=A9=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ... => class-vk-blocks-check-using-vk-page-content-block.php} | 2 +- src/blocks/page-content/index.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/blocks/page-content/{class-check-using-vk-page-content-block.php => class-vk-blocks-check-using-vk-page-content-block.php} (98%) diff --git a/src/blocks/page-content/class-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php similarity index 98% rename from src/blocks/page-content/class-check-using-vk-page-content-block.php rename to src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index c1365f9aa..a998cc100 100644 --- a/src/blocks/page-content/class-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -1,6 +1,6 @@ Date: Mon, 27 Jan 2025 22:17:26 +0900 Subject: [PATCH 15/53] =?UTF-8?q?=E3=82=AF=E3=83=A9=E3=82=B9=E5=90=8D?= =?UTF-8?q?=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- src/blocks/page-content/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index a998cc100..d09dc217a 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -1,6 +1,6 @@ Date: Mon, 27 Jan 2025 22:21:53 +0900 Subject: [PATCH 16/53] add comment --- .../class-vk-blocks-check-using-vk-page-content-block.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index d09dc217a..17961e603 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -1,7 +1,15 @@ Date: Mon, 27 Jan 2025 22:24:44 +0900 Subject: [PATCH 17/53] add esc --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 17961e603..a37e67336 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -79,7 +79,7 @@ public function display_alert() { add_action( 'admin_notices', function () use ( $list ) { - echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . $list; + echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . wp_kses_post( $list ); echo '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; echo '
    '; } From ab98783a2cd7159552eedd6005d031f718a248a7 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 22:28:09 +0900 Subject: [PATCH 18/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index a37e67336..4262f98f9 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -1,6 +1,6 @@ Date: Mon, 27 Jan 2025 22:31:02 +0900 Subject: [PATCH 19/53] add comment --- .../class-vk-blocks-check-using-vk-page-content-block.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 4262f98f9..6ddf8e301 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -5,6 +5,9 @@ * @package vektor-inc/vk-blocks-pro */ +/** + * VK_Blocks_Check_Using_VK_Page_Content_Block + */ class VK_Blocks_Check_Using_VK_Page_Content_Block { /** From c315be722a6db9975b2736b8f2b10b66394bb534 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 22:35:42 +0900 Subject: [PATCH 20/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E3=81=A8=E3=82=A8=E3=82=B9=E3=82=B1=E3=83=BC=E3=83=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 6ddf8e301..ed7e20bdd 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -6,12 +6,12 @@ */ /** - * VK_Blocks_Check_Using_VK_Page_Content_Block + * VK_Blocks_Check_Using_VK_Page_Content_Block. */ class VK_Blocks_Check_Using_VK_Page_Content_Block { /** - * Constructor + * Constructor. */ public function __construct() { // ダッシュボードでアラートを表示 @@ -19,7 +19,7 @@ public function __construct() { } /** - * 固定ページ本文ブロックが使われている記事リストを返す + * 固定ページ本文ブロックが使われている記事リストを返す. * * @param string $post_status : all / unpublic * @return string @@ -82,7 +82,7 @@ public function display_alert() { add_action( 'admin_notices', function () use ( $list ) { - echo '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . wp_kses_post( $list ); + echo '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . wp_kses_post( $list ); echo '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; echo '
    '; } From bffcae6e30be87ff2dab626826819a46172cd114 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 27 Jan 2025 22:43:41 +0900 Subject: [PATCH 21/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E3=81=AA=E3=81=A9=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...-blocks-check-using-vk-page-content-block.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index ed7e20bdd..a63e6088c 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -2,16 +2,20 @@ /** * Class VK_Blocks_Check_Using_VK_Page_Content_Block * - * @package vektor-inc/vk-blocks-pro + * This class checks for the use of Page Content Blocks that reference non-public pages + * and displays an alert in the WordPress admin dashboard if any are found. + * + * @package VK Blocks */ /** - * VK_Blocks_Check_Using_VK_Page_Content_Block. + * VK_Blocks_Check_Using_VK_Page_Content_Block class. */ class VK_Blocks_Check_Using_VK_Page_Content_Block { /** * Constructor. + * Initializes the class and sets up the admin notice action. */ public function __construct() { // ダッシュボードでアラートを表示 @@ -21,8 +25,8 @@ public function __construct() { /** * 固定ページ本文ブロックが使われている記事リストを返す. * - * @param string $post_status : all / unpublic - * @return string + * @param string $post_status The post status to filter by: 'all' or 'unpublic'. + * @return string The list of posts using the page content block. */ public function get_post_list_using_page_content_block( $post_status ) { $output = ''; @@ -60,7 +64,7 @@ public function get_post_list_using_page_content_block( $post_status ) { } if ( $include_post ) { - $output .= '
  • ' . get_the_title() . '
  • '; + $output .= '
  • ' . esc_html( get_the_title() ) . '
  • '; } } wp_reset_postdata(); @@ -73,7 +77,7 @@ public function get_post_list_using_page_content_block( $post_status ) { } /** - * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド + * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド. */ public function display_alert() { $list = $this->get_post_list_using_page_content_block( 'unpublic' ); From e9410a93f3f83039ee80d62e359539351f703795 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 00:20:47 +0900 Subject: [PATCH 22/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index a63e6088c..77f4d9408 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -1,6 +1,6 @@ Date: Tue, 28 Jan 2025 00:34:04 +0900 Subject: [PATCH 23/53] test --- .../class-vk-blocks-check-using-vk-page-content-block.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 77f4d9408..a13b31cdd 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -86,8 +86,8 @@ public function display_alert() { add_action( 'admin_notices', function () use ( $list ) { - echo '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . wp_kses_post( $list ); - echo '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; + echo '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . esc_html( $list ); + echo '

    ' . esc_html( vk_blocks_get_page_content_private_alert() ) . '

    '; echo '
    '; } ); From 88331c7436efe4d806ea45a9a0948de07690da2d Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 00:38:36 +0900 Subject: [PATCH 24/53] =?UTF-8?q?=E3=82=A2=E3=83=A9=E3=83=BC=E3=83=88?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=83=A1=E3=82=BD=E3=83=83=E3=83=89=E8=AA=BF?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...-vk-blocks-check-using-vk-page-content-block.php | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index a13b31cdd..5ff04c4e0 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -19,7 +19,7 @@ class VK_Blocks_Check_Using_VK_Page_Content_Block { */ public function __construct() { // ダッシュボードでアラートを表示 - add_action( 'admin_init', array( $this, 'display_alert' ) ); + add_action( 'admin_notices', array( $this, 'display_alert' ) ); } /** @@ -83,14 +83,9 @@ public function display_alert() { $list = $this->get_post_list_using_page_content_block( 'unpublic' ); if ( $list ) { - add_action( - 'admin_notices', - function () use ( $list ) { - echo '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . esc_html( $list ); - echo '

    ' . esc_html( vk_blocks_get_page_content_private_alert() ) . '

    '; - echo '
    '; - } - ); + echo '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . wp_kses_post( $list ); + echo '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; + echo '
    '; } } } From 03e020fc7ab3c785e0e77d4a946a11b00fecc679 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 00:43:26 +0900 Subject: [PATCH 25/53] =?UTF-8?q?=E3=82=8F=E3=81=8B=E3=82=89=E3=82=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...class-vk-blocks-check-using-vk-page-content-block.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 5ff04c4e0..fc20da3d5 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -83,9 +83,12 @@ public function display_alert() { $list = $this->get_post_list_using_page_content_block( 'unpublic' ); if ( $list ) { - echo '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    ' . wp_kses_post( $list ); - echo '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; - echo '
    '; + $alert = '
    '; + $alert .= '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    '; + $alert .= $list; + $alert .= '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; + $alert .= '
    '; + echo wp_kses_post( $alert ); } } } From a097ea89aa1a763dbdd54c1bbca17883245b6d8d Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 00:44:54 +0900 Subject: [PATCH 26/53] lint --- .../class-vk-blocks-check-using-vk-page-content-block.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index fc20da3d5..3de967c50 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -83,9 +83,9 @@ public function display_alert() { $list = $this->get_post_list_using_page_content_block( 'unpublic' ); if ( $list ) { - $alert = '
    '; + $alert = '
    '; $alert .= '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    '; - $alert .= $list; + $alert .= $list; $alert .= '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; $alert .= '
    '; echo wp_kses_post( $alert ); From e9eaad4123aead41ff7805d5d620b6e322a2a57d Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 00:49:05 +0900 Subject: [PATCH 27/53] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=83=A1=E3=83=83?= =?UTF-8?q?=E3=82=BB=E3=83=BC=E3=82=B8=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/page-content/edit.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/blocks/page-content/edit.js b/src/blocks/page-content/edit.js index fd2d9594e..527afe56f 100644 --- a/src/blocks/page-content/edit.js +++ b/src/blocks/page-content/edit.js @@ -70,12 +70,6 @@ export default function PageContentEdit({ attributes, setAttributes }) { }) } /> -

    - {__( - 'From version 1.95.0 onwards, non-public pages can no longer be displayed.If you want to display non-public content in multiple locations, please create it as a synced pattern and place it in the desired locations instead of using this block.', - 'vk-blocks-pro' - )} -

    From 563106c0658b4a458bf87e64aaa9964b7be4c1b5 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 14:00:54 +0900 Subject: [PATCH 28/53] =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/phpunit/free/test-page-content.php | 77 ++++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/test/phpunit/free/test-page-content.php b/test/phpunit/free/test-page-content.php index 5d3453f4c..77417b465 100644 --- a/test/phpunit/free/test-page-content.php +++ b/test/phpunit/free/test-page-content.php @@ -60,4 +60,79 @@ public function test_page_content() { $this->assertEquals( $expected, $actual ); } -}; +} + +class Test_Page_Content extends WP_UnitTestCase { + + public function setUp(): void { + parent::setUp(); + + // テスト用の固定ページを作成 + $this->public_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Public Page', + 'post_content' => 'This is a public page.', + ) ); + + $this->private_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'private', + 'post_title' => 'Private Page', + 'post_content' => 'This is a private page.', + ) ); + + $this->draft_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'draft', + 'post_title' => 'Draft Page', + 'post_content' => 'This is a draft page.', + ) ); + } + + public function tearDown(): void { + // テストで作成した投稿を削除 + wp_delete_post( $this->public_page_id, true ); + wp_delete_post( $this->private_page_id, true ); + wp_delete_post( $this->draft_page_id, true ); + + parent::tearDown(); + } + + public function test_vk_blocks_page_content_render_callback() { + $tests = array( + array( + 'test_name' => '通常の公開固定ページの場合', + 'attributes' => [ + 'name' => 'vk-blocks/page-content', + 'className' => '', + 'TargetPost' => $this->public_page_id, + ], + 'expected' => '
    This is a public page.
    ' . __( 'Edit this area', 'vk-blocks-pro' ) . '', + ), + array( + 'test_name' => '非公開の固定ページの場合', + 'attributes' => [ + 'name' => 'vk-blocks/page-content', + 'className' => '', + 'TargetPost' => $this->private_page_id, + ], + 'expected' => '', + ), + array( + 'test_name' => '下書きの固定ページの場合', + 'attributes' => [ + 'name' => 'vk-blocks/page-content', + 'className' => '', + 'TargetPost' => $this->draft_page_id, + ], + 'expected' => '', + ), + ); + + foreach ( $tests as $test ) { + $result = vk_blocks_page_content_render_callback( $test['attributes'] ); + $this->assertEquals( $test['expected'], $result, $test['test_name'] ); + } + } +} From c46ba43347c680ae04ececca40b76b6a8a80fee6 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 15:20:34 +0900 Subject: [PATCH 29/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ocks-check-using-vk-page-content-block.php | 22 +++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 3de967c50..e3fd0fe2d 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -19,7 +19,7 @@ class VK_Blocks_Check_Using_VK_Page_Content_Block { */ public function __construct() { // ダッシュボードでアラートを表示 - add_action( 'admin_notices', array( $this, 'display_alert' ) ); + add_action( 'admin_init', array( $this, 'check_for_alert' ) ); } /** @@ -76,17 +76,31 @@ public function get_post_list_using_page_content_block( $post_status ) { return $output ? '
      ' . $output . '
    ' : ''; } + /** + * Is run check for alert. + */ + public function check_for_alert() { + // ダッシュボードのトップページ以外は処理しない + // Don't run on pages other than the dashboard top page. + if ( ! is_admin() || 'index.php' !== $GLOBALS['pagenow'] ) { + return; + } + + add_action( 'admin_notices', array( $this, 'display_alert' ) ); + } + /** * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド. + * Displays a list of pages that use the page content block to reference non-public content. */ public function display_alert() { $list = $this->get_post_list_using_page_content_block( 'unpublic' ); if ( $list ) { $alert = '
    '; - $alert .= '

    ' . __( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    '; - $alert .= $list; - $alert .= '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; + $alert .= '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages:', 'vk-blocks-pro' ) . '

    '; + $alert .= wp_kses_post( $list ); + $alert .= '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; $alert .= '
    '; echo wp_kses_post( $alert ); } From 1adf15ca2d2b0a415ef30bf327658b62e8499910 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 16:02:40 +0900 Subject: [PATCH 30/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E5=89=8A=E9=99=A4=E3=81=AE=E3=81=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index e3fd0fe2d..58dd341a7 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -31,7 +31,7 @@ public function __construct() { public function get_post_list_using_page_content_block( $post_status ) { $output = ''; $paged = 1; - $posts_per_page = 100; // 一度に処理する投稿数 + $posts_per_page = 100; do { $args = array( From 18a598007283163dcc4ec021616037f05a70f69b Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 19:20:49 +0900 Subject: [PATCH 31/53] =?UTF-8?q?get=5Fpost=5Flist=5Fusing=5Fpage=5Fconten?= =?UTF-8?q?t=5Fblock()=20=E3=81=AB=E6=8A=95=E3=81=92=E3=82=8B=E3=83=91?= =?UTF-8?q?=E3=83=A9=E3=83=A1=E3=83=BC=E3=82=BF=E3=83=BC=E3=81=8C=20all=20?= =?UTF-8?q?=E3=81=AE=E6=99=82=E3=81=AE=E5=87=A6=E7=90=86=E3=81=8C=E6=8A=9C?= =?UTF-8?q?=E3=81=91=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=81=A7=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...vk-blocks-check-using-vk-page-content-block.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 58dd341a7..03e0b071a 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -54,11 +54,17 @@ public function get_post_list_using_page_content_block( $post_status ) { if ( ! empty( $matches[1] ) ) { foreach ( $matches[1] as $target_post_id ) { - $target_post = get_post( $target_post_id ); - - if ( 'unpublic' === $post_status && 'publish' !== $target_post->post_status ) { + // 参照先の投稿ステータスに関係なく固定ページ本文ブロックが使われている記事全てをリストに含める場合 + // Include all posts using the page content block regardless of the status of the referenced post. + if ( 'all' === $post_status ) { $include_post = true; - break; // 一つでも非公開のものがあればリストに含める + break; + } else { + $target_post = get_post( $target_post_id ); + if ( 'unpublic' === $post_status && 'publish' !== $target_post->post_status ) { + $include_post = true; + break; // 一つでも参照先が非公開のものがあればリストに含める + } } } } From bdfccb85868eade39b4aec0ee849c3f84f87208a Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 19:24:01 +0900 Subject: [PATCH 32/53] =?UTF-8?q?VK=5FBlocks=5FCheck=5FUsing=5FVK=5FPage?= =?UTF-8?q?=5FContent=5FBlock=20=E3=81=AE=E3=83=86=E3=82=B9=E3=83=88?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ocks-check-using-vk-page-content-block.php | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php diff --git a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php new file mode 100644 index 000000000..c6b6b8ce4 --- /dev/null +++ b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php @@ -0,0 +1,107 @@ +public_page_id_A = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Public Page A', + 'post_content' => 'This is a public page A.', + ) ); + + $this->private_page_id_B = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'private', + 'post_title' => 'Private Page B', + 'post_content' => 'This is a private page B.', + ) ); + + $this->draft_page_id_C = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'draft', + 'post_title' => 'Draft Page C', + 'post_content' => 'This is a draft page C.', + ) ); + + // 参照用の固定ページを作成 + $this->no_using_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'No Using', + 'post_content' => 'This page does not use any content blocks.', + ) ); + + $this->using_A_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Using A', + 'post_content' => '', + ) ); + + $this->using_B_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Using B', + 'post_content' => '', + ) ); + + $this->using_A_and_B_page_id = $this->factory->post->create( array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Using A and B', + 'post_content' => '' . + '', + ) ); + } + + // public function tearDown(): void { + // // テストで作成した投稿を削除 + // wp_delete_post( $this->public_page_id_A, true ); + // wp_delete_post( $this->private_page_id_B, true ); + // wp_delete_post( $this->draft_page_id_C, true ); + // wp_delete_post( $this->no_using_page_id, true ); + // wp_delete_post( $this->using_A_page_id, true ); + // wp_delete_post( $this->using_B_page_id, true ); + // wp_delete_post( $this->using_A_and_B_page_id, true ); + + // parent::tearDown(); + // } + + public function test_get_post_list_using_page_content_block() { + + print PHP_EOL; + print '------------------------------------' . PHP_EOL; + print 'get_post_list_using_page_content_block()' . PHP_EOL; + print '------------------------------------' . PHP_EOL; + $check_using_vk_page_content_block = new VK_Blocks_Check_Using_VK_Page_Content_Block(); + + $tests = array( + array( + 'test_name' => 'unpublicの場合', + 'post_status' => 'unpublic', + 'expected' => '', + ), + array( + 'test_name' => 'allの場合', + 'post_status' => 'all', + 'expected' => '', + ), + + ); + + foreach ( $tests as $test ) { + $result = $check_using_vk_page_content_block->get_post_list_using_page_content_block( $test['post_status'] ); + $this->assertEquals( $test['expected'], $result, $test['test_name'] ); + } + } +} \ No newline at end of file From a906d4a7fab2f4acf5ee559cc4e00813c0ddd603 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 19:47:23 +0900 Subject: [PATCH 33/53] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=82=B3=E3=83=A1?= =?UTF-8?q?=E3=83=B3=E3=83=88=E3=82=A2=E3=82=A6=E3=83=88=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ocks-check-using-vk-page-content-block.php | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php index c6b6b8ce4..2407f7d2b 100644 --- a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php +++ b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php @@ -63,18 +63,18 @@ public function setUp(): void { ) ); } - // public function tearDown(): void { - // // テストで作成した投稿を削除 - // wp_delete_post( $this->public_page_id_A, true ); - // wp_delete_post( $this->private_page_id_B, true ); - // wp_delete_post( $this->draft_page_id_C, true ); - // wp_delete_post( $this->no_using_page_id, true ); - // wp_delete_post( $this->using_A_page_id, true ); - // wp_delete_post( $this->using_B_page_id, true ); - // wp_delete_post( $this->using_A_and_B_page_id, true ); - - // parent::tearDown(); - // } + public function tearDown(): void { + // テストで作成した投稿を削除 + wp_delete_post( $this->public_page_id_A, true ); + wp_delete_post( $this->private_page_id_B, true ); + wp_delete_post( $this->draft_page_id_C, true ); + wp_delete_post( $this->no_using_page_id, true ); + wp_delete_post( $this->using_A_page_id, true ); + wp_delete_post( $this->using_B_page_id, true ); + wp_delete_post( $this->using_A_and_B_page_id, true ); + + parent::tearDown(); + } public function test_get_post_list_using_page_content_block() { From 24c486af88a82f9b4fa466f60c0f6d134a5628c5 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 28 Jan 2025 19:50:53 +0900 Subject: [PATCH 34/53] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E8=AA=BF=E6=95=B4=E3=81=AE=E3=81=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/phpunit/free/test-page-content.php | 1 + .../test-vk-blocks-check-using-vk-page-content-block.php | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/test/phpunit/free/test-page-content.php b/test/phpunit/free/test-page-content.php index 77417b465..66362018a 100644 --- a/test/phpunit/free/test-page-content.php +++ b/test/phpunit/free/test-page-content.php @@ -7,6 +7,7 @@ /** * Page Content block test case. + * * Test_Page_Content で同じ内容を行っているので、1.95.0 リリース以降 PageContentBlockTest は削除 */ class PageContentBlockTest extends VK_UnitTestCase { diff --git a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php index 2407f7d2b..c29df406d 100644 --- a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php +++ b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php @@ -78,10 +78,10 @@ public function tearDown(): void { public function test_get_post_list_using_page_content_block() { - print PHP_EOL; - print '------------------------------------' . PHP_EOL; - print 'get_post_list_using_page_content_block()' . PHP_EOL; - print '------------------------------------' . PHP_EOL; + // print PHP_EOL; + // print '------------------------------------' . PHP_EOL; + // print 'get_post_list_using_page_content_block()' . PHP_EOL; + // print '------------------------------------' . PHP_EOL; $check_using_vk_page_content_block = new VK_Blocks_Check_Using_VK_Page_Content_Block(); $tests = array( From 5186f1bd9b3ff913d878754926723268105cc79c Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 29 Jan 2025 23:20:09 +0900 Subject: [PATCH 35/53] =?UTF-8?q?=E6=97=A2=E3=81=AB=E3=83=81=E3=82=A7?= =?UTF-8?q?=E3=83=83=E3=82=AF=E6=B8=88=E3=81=BF=E3=81=AE=E5=A0=B4=E5=90=88?= =?UTF-8?q?=E3=81=AB=E3=81=AF=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF=E3=81=97?= =?UTF-8?q?=E3=81=AA=E3=81=84=E3=83=95=E3=83=A9=E3=82=B0=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ocks-check-using-vk-page-content-block.php | 43 +++- ...ocks-check-using-vk-page-content-block.php | 215 ++++++++++-------- 2 files changed, 166 insertions(+), 92 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 03e0b071a..4e7513932 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -79,7 +79,16 @@ public function get_post_list_using_page_content_block( $post_status ) { ++$paged; } while ( $query->have_posts() ); - return $output ? '
      ' . $output . '
    ' : ''; + if ( empty( $output ) ){ + // 該当の投稿がなかったらチェック済みフラグを立てる + // If there are no posts that meet the criteria, set the checked flag. + $options = get_option( 'vk_blocks_options' ); + $options['checked-page-content-private'] = true; + update_option( 'vk_blocks_options', $options ); + return; + } else { + return '
      ' . $output . '
    '; + } } /** @@ -92,6 +101,15 @@ public function check_for_alert() { return; } + // 既にチェック済みフラグが立ってる場合は何もしない + // If the checked flag is already set, do nothing. + + // * 一度チェック済みになったら後から手動で非公開投稿を参照した固定ページブロックを配置した場合、アラートが表示されない欠点があるが、そもそも新規で配置する際は警告が表示されるので問題ないと判断 + // * Once checked, there is a drawback that an alert will not be displayed if a page block referencing a private post is placed manually later, but it is not a problem because a warning will be displayed when placing a new one. + if ( $this->is_checked_flag() ){ + return; + } + add_action( 'admin_notices', array( $this, 'display_alert' ) ); } @@ -111,4 +129,27 @@ public function display_alert() { echo wp_kses_post( $alert ); } } + + /** + * 'checked-page-content-private' フラグが設定されているか確認するメソッド + * Checks if the 'checked-page-content-private' flag is set to true in vk_blocks_options. + * + * @return bool + */ + public function is_checked_flag() { + $options = get_option( 'vk_blocks_options' ); + return ! empty( $options['checked-page-content-private'] ) && $options['checked-page-content-private'] === true; + } + + /** + * 'checked-page-content-private' フラグを削除するメソッド + * Deletes the 'checked-page-content-private' flag from vk_blocks_options. + */ + public function delete_checked_flag() { + $options = get_option( 'vk_blocks_options' ); + if ( isset( $options['checked-page-content-private'] ) ) { + unset( $options['checked-page-content-private'] ); + update_option( 'vk_blocks_options', $options ); + } + } } diff --git a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php index c29df406d..675ba7be1 100644 --- a/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php +++ b/test/phpunit/free/test-vk-blocks-check-using-vk-page-content-block.php @@ -7,101 +7,134 @@ class Test_VK_Blocks_Check_Using_VK_Page_Content_Block extends WP_UnitTestCase { - public function setUp(): void { - parent::setUp(); - - // テスト用の固定ページを作成 - $this->public_page_id_A = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'publish', - 'post_title' => 'Public Page A', - 'post_content' => 'This is a public page A.', - ) ); - - $this->private_page_id_B = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'private', - 'post_title' => 'Private Page B', - 'post_content' => 'This is a private page B.', - ) ); - - $this->draft_page_id_C = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'draft', - 'post_title' => 'Draft Page C', - 'post_content' => 'This is a draft page C.', - ) ); - - // 参照用の固定ページを作成 - $this->no_using_page_id = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'publish', - 'post_title' => 'No Using', - 'post_content' => 'This page does not use any content blocks.', - ) ); - - $this->using_A_page_id = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'publish', - 'post_title' => 'Using A', - 'post_content' => '', - ) ); - - $this->using_B_page_id = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'publish', - 'post_title' => 'Using B', - 'post_content' => '', - ) ); - - $this->using_A_and_B_page_id = $this->factory->post->create( array( - 'post_type' => 'page', - 'post_status' => 'publish', - 'post_title' => 'Using A and B', - 'post_content' => '' . - '', - ) ); - } - - public function tearDown(): void { - // テストで作成した投稿を削除 - wp_delete_post( $this->public_page_id_A, true ); - wp_delete_post( $this->private_page_id_B, true ); - wp_delete_post( $this->draft_page_id_C, true ); - wp_delete_post( $this->no_using_page_id, true ); - wp_delete_post( $this->using_A_page_id, true ); - wp_delete_post( $this->using_B_page_id, true ); - wp_delete_post( $this->using_A_and_B_page_id, true ); - - parent::tearDown(); - } - - public function test_get_post_list_using_page_content_block() { + public function setUp(): void { + parent::setUp(); + + // テスト用の固定ページを作成 + $this->public_page_id_A = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Public Page A', + 'post_content' => 'This is a public page A.', + ) + ); + + $this->private_page_id_B = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'private', + 'post_title' => 'Private Page B', + 'post_content' => 'This is a private page B.', + ) + ); + + $this->draft_page_id_C = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'draft', + 'post_title' => 'Draft Page C', + 'post_content' => 'This is a draft page C.', + ) + ); + + // 参照用の固定ページを作成 + $this->no_using_page_id = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'No Using', + 'post_content' => 'This page does not use any content blocks.', + ) + ); + + $this->using_A_page_id = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Using A', + 'post_content' => '', + ) + ); + + $this->using_B_page_id = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Using B', + 'post_content' => '', + ) + ); + + $this->using_A_and_B_page_id = $this->factory->post->create( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Using A and B', + 'post_content' => '' . + '', + ) + ); + } + + public function tearDown(): void { + // テストで作成した投稿を削除 + wp_delete_post( $this->public_page_id_A, true ); + wp_delete_post( $this->private_page_id_B, true ); + wp_delete_post( $this->draft_page_id_C, true ); + wp_delete_post( $this->no_using_page_id, true ); + wp_delete_post( $this->using_A_page_id, true ); + wp_delete_post( $this->using_B_page_id, true ); + wp_delete_post( $this->using_A_and_B_page_id, true ); + + // チェック済みフラグが立っていたら削除 + $check_using_vk_page_content_block = new VK_Blocks_Check_Using_VK_Page_Content_Block(); + $check_using_vk_page_content_block->delete_checked_flag(); + + parent::tearDown(); + } + + public function test_get_post_list_using_page_content_block() { // print PHP_EOL; // print '------------------------------------' . PHP_EOL; // print 'get_post_list_using_page_content_block()' . PHP_EOL; // print '------------------------------------' . PHP_EOL; - $check_using_vk_page_content_block = new VK_Blocks_Check_Using_VK_Page_Content_Block(); + $check_using_vk_page_content_block = new VK_Blocks_Check_Using_VK_Page_Content_Block(); - $tests = array( + $tests = array( + array( + 'test_name' => 'unpublicの場合', + 'post_status' => 'unpublic', + 'expected' => '', + ), array( - 'test_name' => 'unpublicの場合', - 'post_status' => 'unpublic', - 'expected' => '', - ), - array( - 'test_name' => 'allの場合', - 'post_status' => 'all', - 'expected' => '', - ), - - ); - - foreach ( $tests as $test ) { - $result = $check_using_vk_page_content_block->get_post_list_using_page_content_block( $test['post_status'] ); - $this->assertEquals( $test['expected'], $result, $test['test_name'] ); - } - } -} \ No newline at end of file + 'test_name' => 'allの場合', + 'post_status' => 'all', + 'expected' => '', + ), + + ); + + foreach ( $tests as $test ) { + $actual = $check_using_vk_page_content_block->get_post_list_using_page_content_block( $test['post_status'] ); + $this->assertEquals( $test['expected'], $actual, $test['test_name'] ); + } + + // 非公開の投稿を参照している固定ページを使用している投稿を削除 + // Delete posts that use pages that refer to unpublished posts + wp_delete_post( $this->using_B_page_id, true ); + wp_delete_post( $this->using_A_and_B_page_id, true ); + + // 該当投稿がない場合のチェック(チェック済みフラグが立つはず) + // Check when there is no corresponding post (the checked flag should be set) + $actual = $check_using_vk_page_content_block->get_post_list_using_page_content_block( 'unpublic' ); + $this->assertEquals( false, $actual, 'no list' ); + + // チェック済みフラグが立ってるかどうか + // Is checked flag + $actual = $check_using_vk_page_content_block->is_checked_flag(); + $this->assertEquals( true, $actual, 'is_checked_flag' ); + } +} From 0b0932cc858d8620adfb817cc9a27536fda62caa Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 29 Jan 2025 23:21:33 +0900 Subject: [PATCH 36/53] lint --- .../class-vk-blocks-check-using-vk-page-content-block.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 4e7513932..1329e1f56 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -79,10 +79,10 @@ public function get_post_list_using_page_content_block( $post_status ) { ++$paged; } while ( $query->have_posts() ); - if ( empty( $output ) ){ + if ( empty( $output ) ) { // 該当の投稿がなかったらチェック済みフラグを立てる // If there are no posts that meet the criteria, set the checked flag. - $options = get_option( 'vk_blocks_options' ); + $options = get_option( 'vk_blocks_options' ); $options['checked-page-content-private'] = true; update_option( 'vk_blocks_options', $options ); return; @@ -106,7 +106,7 @@ public function check_for_alert() { // * 一度チェック済みになったら後から手動で非公開投稿を参照した固定ページブロックを配置した場合、アラートが表示されない欠点があるが、そもそも新規で配置する際は警告が表示されるので問題ないと判断 // * Once checked, there is a drawback that an alert will not be displayed if a page block referencing a private post is placed manually later, but it is not a problem because a warning will be displayed when placing a new one. - if ( $this->is_checked_flag() ){ + if ( $this->is_checked_flag() ) { return; } From e8f47f7e3afc30b4e1fb0574aa3ff90d151124d2 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 29 Jan 2025 23:23:12 +0900 Subject: [PATCH 37/53] fix yoda --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 1329e1f56..15e2e1a9b 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -138,7 +138,7 @@ public function display_alert() { */ public function is_checked_flag() { $options = get_option( 'vk_blocks_options' ); - return ! empty( $options['checked-page-content-private'] ) && $options['checked-page-content-private'] === true; + return ! empty( $options['checked-page-content-private'] ) && true === $options['checked-page-content-private']; } /** From 887652f1820390b8fcb8c226efb0446c5f950932 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 29 Jan 2025 23:32:58 +0900 Subject: [PATCH 38/53] =?UTF-8?q?VK=5FBlocks=5FCheck=5FUsing=5FVK=5FPage?= =?UTF-8?q?=5FContent=5FBlock::delete=5Fchecked=5Fflag();=20=E3=81=A7?= =?UTF-8?q?=E3=82=82=E4=BD=BF=E3=81=88=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=20static=20=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 15e2e1a9b..af3df9347 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -145,7 +145,7 @@ public function is_checked_flag() { * 'checked-page-content-private' フラグを削除するメソッド * Deletes the 'checked-page-content-private' flag from vk_blocks_options. */ - public function delete_checked_flag() { + public static function delete_checked_flag() { $options = get_option( 'vk_blocks_options' ); if ( isset( $options['checked-page-content-private'] ) ) { unset( $options['checked-page-content-private'] ); From 9001db15d10b7b0a190c4cb30db730bf78eff8fa Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Thu, 30 Jan 2025 18:46:42 +0900 Subject: [PATCH 39/53] =?UTF-8?q?fix:=20=E9=9D=99=E7=9A=84=E3=82=AF?= =?UTF-8?q?=E3=83=A9=E3=82=B9=E5=8C=96=EF=BC=86vk=5Fblocks=5Foptions?= =?UTF-8?q?=E3=82=92=E4=BD=BF=E3=82=8F=E3=81=AA=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ocks-check-using-vk-page-content-block.php | 43 ++++++++++--------- src/blocks/page-content/index.php | 2 +- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index af3df9347..54a5b0d5f 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -14,12 +14,13 @@ class VK_Blocks_Check_Using_VK_Page_Content_Block { /** - * Constructor. - * Initializes the class and sets up the admin notice action. + * Activate hooks. + * + * @return void */ - public function __construct() { + static public function activate() { // ダッシュボードでアラートを表示 - add_action( 'admin_init', array( $this, 'check_for_alert' ) ); + add_action( 'admin_init', array( __CLASS__, 'check_for_alert' ) ); } /** @@ -28,7 +29,7 @@ public function __construct() { * @param string $post_status The post status to filter by: 'all' or 'unpublic'. * @return string The list of posts using the page content block. */ - public function get_post_list_using_page_content_block( $post_status ) { + static public function get_post_list_using_page_content_block( $post_status ) { $output = ''; $paged = 1; $posts_per_page = 100; @@ -82,9 +83,9 @@ public function get_post_list_using_page_content_block( $post_status ) { if ( empty( $output ) ) { // 該当の投稿がなかったらチェック済みフラグを立てる // If there are no posts that meet the criteria, set the checked flag. - $options = get_option( 'vk_blocks_options' ); - $options['checked-page-content-private'] = true; - update_option( 'vk_blocks_options', $options ); + $flags = get_option( 'vk_blocks_checked_flags' ); + $flags['checked-page-content-private'] = true; + update_option( 'vk_blocks_checked_flags', $flags ); return; } else { return '
      ' . $output . '
    '; @@ -94,7 +95,7 @@ public function get_post_list_using_page_content_block( $post_status ) { /** * Is run check for alert. */ - public function check_for_alert() { + static public function check_for_alert() { // ダッシュボードのトップページ以外は処理しない // Don't run on pages other than the dashboard top page. if ( ! is_admin() || 'index.php' !== $GLOBALS['pagenow'] ) { @@ -106,19 +107,19 @@ public function check_for_alert() { // * 一度チェック済みになったら後から手動で非公開投稿を参照した固定ページブロックを配置した場合、アラートが表示されない欠点があるが、そもそも新規で配置する際は警告が表示されるので問題ないと判断 // * Once checked, there is a drawback that an alert will not be displayed if a page block referencing a private post is placed manually later, but it is not a problem because a warning will be displayed when placing a new one. - if ( $this->is_checked_flag() ) { + if ( self::is_checked_flag() ) { return; } - add_action( 'admin_notices', array( $this, 'display_alert' ) ); + add_action( 'admin_notices', array( __CLASS__, 'display_alert' ) ); } /** * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド. * Displays a list of pages that use the page content block to reference non-public content. */ - public function display_alert() { - $list = $this->get_post_list_using_page_content_block( 'unpublic' ); + static public function display_alert() { + $list = self::get_post_list_using_page_content_block( 'unpublic' ); if ( $list ) { $alert = '
    '; @@ -136,20 +137,20 @@ public function display_alert() { * * @return bool */ - public function is_checked_flag() { - $options = get_option( 'vk_blocks_options' ); - return ! empty( $options['checked-page-content-private'] ) && true === $options['checked-page-content-private']; + static public function is_checked_flag() { + $flags = get_option( 'vk_blocks_checked_flags' ); + return ! empty( $flags['checked-page-content-private'] ) && true === $flags['checked-page-content-private']; } /** * 'checked-page-content-private' フラグを削除するメソッド * Deletes the 'checked-page-content-private' flag from vk_blocks_options. */ - public static function delete_checked_flag() { - $options = get_option( 'vk_blocks_options' ); - if ( isset( $options['checked-page-content-private'] ) ) { - unset( $options['checked-page-content-private'] ); - update_option( 'vk_blocks_options', $options ); + static public function delete_checked_flag() { + $flags = get_option( 'vk_blocks_checked_flags' ); // 新しいオプション名 + if ( isset( $flags['checked-page-content-private'] ) ) { + unset( $flags['checked-page-content-private'] ); + update_option( 'vk_blocks_checked_flags', $flags ); // 新しいオプション名で更新 } } } diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index 4df245ce6..e7bd34480 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -179,4 +179,4 @@ function vk_blocks_content_enqueue_scripts( $page_content ) { // 非公開の投稿を参照して表示していないかのチェック // Check if it is displaying content from non-public pages. require_once plugin_dir_path( __FILE__ ) . 'class-vk-blocks-check-using-vk-page-content-block.php'; -new VK_Blocks_Check_Using_VK_Page_Content_Block(); +VK_Blocks_Check_Using_VK_Page_Content_Block::activate(); From 8370161518f2ea556b107fc204ccb8d9fda62596 Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Thu, 30 Jan 2025 18:47:33 +0900 Subject: [PATCH 40/53] phpcs --- ...s-vk-blocks-check-using-vk-page-content-block.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 54a5b0d5f..9ca7d6139 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -18,7 +18,7 @@ class VK_Blocks_Check_Using_VK_Page_Content_Block { * * @return void */ - static public function activate() { + public static function activate() { // ダッシュボードでアラートを表示 add_action( 'admin_init', array( __CLASS__, 'check_for_alert' ) ); } @@ -29,7 +29,7 @@ static public function activate() { * @param string $post_status The post status to filter by: 'all' or 'unpublic'. * @return string The list of posts using the page content block. */ - static public function get_post_list_using_page_content_block( $post_status ) { + public static function get_post_list_using_page_content_block( $post_status ) { $output = ''; $paged = 1; $posts_per_page = 100; @@ -95,7 +95,7 @@ static public function get_post_list_using_page_content_block( $post_status ) { /** * Is run check for alert. */ - static public function check_for_alert() { + public static function check_for_alert() { // ダッシュボードのトップページ以外は処理しない // Don't run on pages other than the dashboard top page. if ( ! is_admin() || 'index.php' !== $GLOBALS['pagenow'] ) { @@ -118,7 +118,7 @@ static public function check_for_alert() { * 非公開のコンテンツを参照する固定ページ本文ブロックが使われているページのリストを表示するメソッド. * Displays a list of pages that use the page content block to reference non-public content. */ - static public function display_alert() { + public static function display_alert() { $list = self::get_post_list_using_page_content_block( 'unpublic' ); if ( $list ) { @@ -137,7 +137,7 @@ static public function display_alert() { * * @return bool */ - static public function is_checked_flag() { + public static function is_checked_flag() { $flags = get_option( 'vk_blocks_checked_flags' ); return ! empty( $flags['checked-page-content-private'] ) && true === $flags['checked-page-content-private']; } @@ -146,7 +146,7 @@ static public function is_checked_flag() { * 'checked-page-content-private' フラグを削除するメソッド * Deletes the 'checked-page-content-private' flag from vk_blocks_options. */ - static public function delete_checked_flag() { + public static function delete_checked_flag() { $flags = get_option( 'vk_blocks_checked_flags' ); // 新しいオプション名 if ( isset( $flags['checked-page-content-private'] ) ) { unset( $flags['checked-page-content-private'] ); From e42b71d7cd0c20c9ce5dedeb368aacdf48c652fe Mon Sep 17 00:00:00 2001 From: kurudrive Date: Thu, 30 Jan 2025 22:25:43 +0900 Subject: [PATCH 41/53] =?UTF-8?q?$flags=20=E3=81=8C=E9=85=8D=E5=88=97?= =?UTF-8?q?=E3=81=A7=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88=E3=81=AF=E7=A9=BA?= =?UTF-8?q?=E3=81=AE=E9=85=8D=E5=88=97=E3=82=92=E3=82=BB=E3=83=83=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class-vk-blocks-check-using-vk-page-content-block.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 9ca7d6139..61d626164 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -83,7 +83,12 @@ public static function get_post_list_using_page_content_block( $post_status ) { if ( empty( $output ) ) { // 該当の投稿がなかったらチェック済みフラグを立てる // If there are no posts that meet the criteria, set the checked flag. - $flags = get_option( 'vk_blocks_checked_flags' ); + $flags = get_option( 'vk_blocks_checked_flags' ); + // $flags が配列でない場合は空の配列をセット + // If $flags is not an array, set an empty array. + if ( ! is_array( $flags ) ) { + $flags = array(); + } $flags['checked-page-content-private'] = true; update_option( 'vk_blocks_checked_flags', $flags ); return; From c43bd37731c1caa2f2866eafa247a17e5df689cc Mon Sep 17 00:00:00 2001 From: kurudrive Date: Thu, 30 Jan 2025 22:26:28 +0900 Subject: [PATCH 42/53] =?UTF-8?q?=E3=83=97=E3=83=A9=E3=82=B0=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=82=92=E7=84=A1=E5=8A=B9=E5=8C=96=E3=81=97=E3=81=9F?= =?UTF-8?q?=E6=99=82=E3=81=AB=20=E3=82=AA=E3=83=97=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E5=80=A4=20vk=5Fblocks=5Fchecked=5Fflags=20=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4=E3=81=99=E3=82=8B=E5=87=A6=E7=90=86=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vk-blocks.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/vk-blocks.php b/vk-blocks.php index 6fee28cd7..5a2a51d97 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -393,3 +393,16 @@ function vk_blocks_get_license_check_query_arg( $query_args ) { } } } + +if ( function_exists( 'register_deactivation_hook' ) ) { + register_deactivation_hook( __FILE__, 'vk_blocks_deactivate_function' ); +} + +/** + * Deactivate function + * + * @return void + */ +function vk_blocks_deactivate_function() { + delete_option( 'vk_blocks_checked_flags' ); +} From 204a19a61fa9391051f9cb53899175348b5dd4f2 Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Fri, 31 Jan 2025 18:36:06 +0900 Subject: [PATCH 43/53] =?UTF-8?q?fix:=20=E3=83=91=E3=82=B9=E3=83=AF?= =?UTF-8?q?=E3=83=BC=E3=83=89=E4=BF=9D=E8=AD=B7=E3=83=9A=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=82=82=E9=9D=9E=E8=A1=A8=E7=A4=BA=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ocks-check-using-vk-page-content-block.php | 4 +- src/blocks/page-content/edit.js | 40 +++++++++++++++---- src/blocks/page-content/index.php | 8 ++-- 3 files changed, 38 insertions(+), 14 deletions(-) diff --git a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php index 61d626164..13d3618b1 100644 --- a/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php +++ b/src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php @@ -62,9 +62,9 @@ public static function get_post_list_using_page_content_block( $post_status ) { break; } else { $target_post = get_post( $target_post_id ); - if ( 'unpublic' === $post_status && 'publish' !== $target_post->post_status ) { + if ( 'unpublic' === $post_status && ( 'publish' !== $target_post->post_status || ! empty( $target_post->post_password ) ) ) { $include_post = true; - break; // 一つでも参照先が非公開のものがあればリストに含める + break; // 一つでも参照先が非公開またはパスワード保護されているものがあればリストに含める } } } diff --git a/src/blocks/page-content/edit.js b/src/blocks/page-content/edit.js index 527afe56f..fe01e0b0f 100644 --- a/src/blocks/page-content/edit.js +++ b/src/blocks/page-content/edit.js @@ -4,19 +4,43 @@ import { InspectorControls, useBlockProps } from '@wordpress/block-editor'; import ServerSideRender from '@wordpress/server-side-render'; import { usePosts } from '@vkblocks/utils/hooks'; -const getPagesSelect = (pages) => { +const getPageLabel = (page) => { + let label = page.title.rendered; + if (page.status === 'private') { + label += ` (${__('Hidden', 'vk-blocks-pro')})`; + } + if (page.password) { + label += ` (${__('Password Protected', 'vk-blocks-pro')})`; + } + return label; +}; + +const getPagesSelect = (pages, currentTargetPost) => { const defaultSelect = [ { label: __('Unspecified', 'vk-blocks-pro'), value: -1, }, ]; - const pagesSelect = pages.map((page) => { - return { - label: page.title.rendered, - value: page.id, - }; - }); + + // 現在選択されているページを特定する + const currentPage = pages.find((page) => page.id === currentTargetPost); + + // 選択リストから非公開・パスワード保護のページを除外する(現在選択中のページは除く) + const availablePages = pages.filter( + (page) => + (page.status === 'publish' && !page.password) || + page.id === currentTargetPost + ); + + // 利用可能なページから選択オプションを作成する + const pagesSelect = availablePages.map((page) => ({ + label: + page.status === 'private' || page.password + ? getPageLabel(page) + : page.title.rendered, + value: page.id, + })); return defaultSelect.concat(pagesSelect); }; @@ -29,7 +53,7 @@ export default function PageContentEdit({ attributes, setAttributes }) { { per_page: -1, status: 'private,publish' } ); - const pagesSelect = getPagesSelect(pages); + const pagesSelect = getPagesSelect(pages, TargetPost); let editContent; if (TargetPost === -1) { diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index e7bd34480..d3593ed0c 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -53,7 +53,7 @@ function vk_blocks_register_block_page_content() { */ function vk_blocks_get_page_content_private_alert() { $alert = __( - "From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed. + "From VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed. If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", 'vk-blocks-pro' ); @@ -72,10 +72,10 @@ function vk_blocks_page_content_render_callback( $attributes ) { $is_rest_request = defined( 'REST_REQUEST' ) && REST_REQUEST; - // 投稿が存在し、公開されているかを確認 - if ( ! $post || 'publish' !== $post->post_status ) { + // 投稿が存在し、公開されているか、またはパスワード保護されていないかを確認 + if ( ! $post || 'publish' !== $post->post_status || ! empty( $post->post_password ) ) { if ( is_admin() || $is_rest_request ) { - return '

    ' . __( 'Post not found or not public.', 'vk-blocks-pro' ) . '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; + return '

    ' . __( 'Post not found, not public, or password protected.', 'vk-blocks-pro' ) . '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; } else { // Front Page return ''; From 66e3c421d991b449afc91b21e6c3ba041a60b97d Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Fri, 31 Jan 2025 18:36:35 +0900 Subject: [PATCH 44/53] lint --- src/blocks/page-content/edit.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/blocks/page-content/edit.js b/src/blocks/page-content/edit.js index fe01e0b0f..72dc976b4 100644 --- a/src/blocks/page-content/edit.js +++ b/src/blocks/page-content/edit.js @@ -23,9 +23,6 @@ const getPagesSelect = (pages, currentTargetPost) => { }, ]; - // 現在選択されているページを特定する - const currentPage = pages.find((page) => page.id === currentTargetPost); - // 選択リストから非公開・パスワード保護のページを除外する(現在選択中のページは除く) const availablePages = pages.filter( (page) => From 89743cad86d0fc5d77e676a6cf6d1a60f202b012 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Fri, 31 Jan 2025 21:21:53 +0900 Subject: [PATCH 45/53] =?UTF-8?q?[=20Change=20version=20]=201.95.0=20/=20?= =?UTF-8?q?=E7=BF=BB=E8=A8=B3=E8=AA=BF=E6=95=B4?= 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-ja.l10n.php | 6 +- languages/vk-blocks-pro-ja.mo | Bin 92816 -> 95236 bytes languages/vk-blocks-pro-ja.po | 494 +++++++----- languages/vk-blocks-pro-js.pot | 404 +++++----- languages/vk-blocks-pro.l10n.php | 7 +- languages/vk-blocks-pro.pot | 700 +++++++++++++----- readme.txt | 3 +- src/blocks/_pro/outer/edit.js | 21 +- ...ocks-check-using-vk-page-content-block.php | 2 +- src/blocks/page-content/edit.js | 2 +- src/blocks/page-content/index.php | 4 +- vk-blocks.php | 4 +- 14 files changed, 1068 insertions(+), 583 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 f43114cb2..07d447a02 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"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":["コンテナ内側のスペース設定"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages:":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found or not public.":["投稿がないか非公開です"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示しないようになりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 f43114cb2..07d447a02 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"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":["コンテナ内側のスペース設定"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages:":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found or not public.":["投稿がないか非公開です"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示しないようになりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index 71a4dbf12..29fc3300e 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,6 @@ NULL,'plural-forms'=>'nplurals=1; plural=0;','language'=>'ja','project-id-version'=>'VK Blocks Pro','pot-creation-date'=>'2025-01-23T02:45:29+00:00','po-revision-date'=>'','x-generator'=>'Poedit 3.5','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','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'=>'コンテナ内側のスペース設定','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'見出しを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','Inserter'=>'インサーター','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Responsive BR '=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。']]; \ No newline at end of file +return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages:'=>'以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています','From VK Blocks version 1.95.0 onwards, non-public page\'s content can no longer be displayed. +If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。 +もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。','Post not found or not public.'=>'投稿がないか非公開です','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed. +If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示しないようになりました。 +もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index 874c0f45397bbeced7c67854e0f08e766184a2c5..aa258569fa20d58a5c75b5ed04b2586293115abb 100644 GIT binary patch delta 25594 zcmd7a2Xs|cyYBI|6H4g4w@vQ|(z_JtUAhPa2oMPgCZP$kNrLnyT|kPUbOfSOq*@Rx zpeP`MAcQJS1w|0?{+~TxJbdSzd+#}8+;PWQ<6HU7`OdQDoNKPNcY@=aeLVGqtEmHL zv!|NxanwrXc?I!IQO{eG+Vhq+QIvR3&&!0hF$|j{RlN?D?}E9=_r~lPkFhujJK_VZ zhHakryq1`NYX3PF@w|Zdl?8srPzruC@0)*_zFw|8wVBS$WM(sSnfc5@s0$XwY*@;=!uh-EM{R>wlv z6#du_3t$qa=lb4q5?OFPs^Kmb;HRjLkD+eCS@Q;Rhr9U+s ztS@RHk(eJxp$0w|1BFSfA)y8bF)N#vGm5KxDwQ1|Lb)W|QP26PMa;NPf`=jrQiL3vcX5o!WG zQ1zoQAHITG>V;Swld%|{M3q128*qu7;jY6&&RC6(Esn_EsJdcxc zRzG*k^7i+<%H&I!U9bZAiKrDwM%|JF0SkPEp#;vNmg)i)!K& z18U`>P#wpiI!-WWV=D5?&DE&->rg8d*g`@L51?+vQB((K%!Lop54_g*KF7FS>@T#H)jO{kgdLv?%%bbL{y4cQGf<7n)LFQfW9W`2hn*jdy-Z$z^Gok;vipaiyi(HV!D;Ud&iu-)<} zu_*c9Q7e&mh+CnusC!=zb%7qJ3k*U{Yy|3gpN6_sZ=qJ^y&9xE<5sev5yGT8Zya6F7_M(F+W9OPB$*tFvQ9 zEQe}P)5`0k?p;&VK>DCM7>C*;Q&8=en(I(|=zYwDhfo7PfvR`I4BRK76-X29HeYts zJ z32&oD{ugRsSz=ti0QMkX5%n1`33cHms5jv%)Xer-`4^~_`4O|=9n^qBhq+r;5F6?F zZ%9H76EG{zL_aP!_oK?sqdK^S6)^2fuH$N0nS4{!EgFtxa5ieDJ1xH7@~16-0gLJR z|BHm~r9al)g7T=nP#LwWTc9>m1Zs1|Sbh|0V2PL+XQ5VXndR4`R%j=x{{yI%`vSA$ zj~K{G;tmPz;#6^Nca}!Yq$M`T0oV#RVtu@aov?bmyQh;;FRo>%fv!R=`6kqW_n-!H z5H;WqnyMqJb>!&C~5^xp!U)&)I>9kb_PmYqKVnZ9D{1G5Vdsgq6YdgYGB`EK0JqhypLMR z{4cv(R~vOJpGEc44b?6lHKEbS00Z7cm+)qo^H4Kcg6d!+YNmTp_x3Pq1%5zvbj9*_ z%|~X~7|*Lqd3HRD?QlL;9LswjKf)Dy{zt#Uh9QuDoZIb#u@U(#$ZC1NVm;JnMN?dh ze9iN2;vnoW-t*ey4s3>D349)4d+d%U%%>9h226f3_Qq;SJOT9K%_Y$eVa*fF zYDIF)a(f{^W+q<-%j)^BNumOQaMX-vqV~il)QtC{HrL0fj!vQma27M+PpB3A1Jh#Y zZ1>@n0mI3cLe-m$8F2w>rB-1MJ^y=1XbHbY&FD00)7-=?_&chDG_SeO`JAZyv#1$A zhXrvEs@(+C3}>JQv=p_1t5FkJXYnmqUC;jx67S+IR7b1kxHs2+e2M%+RKsXq3fgSL zQ3HD&%i}s^DZS(7-R>bSZBct=9=5~4UJ`ojGA-o~ zMOXoKFK3|c`2y68mtY}Wk5%vx>Zy5vdQ+x)!?mk`TKej!6>E&TwJlKteBR1qky{_| z0xscAGG|$Zg{XVE8a04zR(=3Az{98u9K(Eg3U$lwU~tbYb1RSyRj(Rquhm7}nkJY@ z&woo2TC#3dVXRe{U`|Ed77P;b25SPJ)=mryI1ak*QOY-VAsOuRf+ z3XteUq9RU1?dqMV5r2kSvac}*UPaC9A!?>+SGWP>N9~;wsCXUJ3bjS`(-k#=7f`n* z(()rPpvNJRgbL=M?$vTs2V1cq?m}&*lc)wiCv0$EIM!o4`HUOc2bh4j@d#GNy_;P8Hn!#ZUcJryr5dN=NDO<2 zUn+1s-o&r*S=_h9-MiFV-Apo|R-!0s=2fv8c1P`{88`rUpjM#JHut@v6so^|7-&Rd zEr}-h6F!HPlKJZ-CZd+`XVlXB-gWPTd{~}*4b&~`XO6)YVxcdmFah-IAQB`bAKit0HPswm`LOV|FsTo4rwc zWq>&Z(~^(f&iX6yG67vE5p}O;T7Hq`S6hCwxeK+V2T?OQiW$JhmP?sd=Wi>R3{!PfXKHbwtFx0DfBo&0KS zj^ASqEVkeM>sJqami!bfg-7ve{2dzvNR&O`p3A}5nEYzg<8uX@V6G4O;{*1<*YFd3 z0lR&~KO*9L*b-}h>;{&EBgh{@UAW;VZUtV&y5tYyWDGgT`d1?{jf5_=A2onfpSl-P zb5sYP;4_%vkn5lgY7b1tK6n8;V&lVZrRJgXUt&!x@|k;~bu-suZ{qhqWBnhI=>ECu zu-g~hSMpmi4zqvB6M+*^_k0)X7TiG1xYiN=DvF7yfnUV|SpKLR*lf&2{%0(RX?PnI z!s3_>8-2z4tHN^x@?s?FaY{tR=c5{Iz!G>Ei{LHvW9F~j$MRE{n|y1tAF7|xsD7to zR(uQ9@B5e^zX*^hK;jDK!O&x_K><{U)hyo{^N}Bb>S!FQ{w&nY)?iWm7`4eRV;Ri! zjk5--ULVv%#-jQOtR$fkZ9|Rd5bDAy7Jq;_$Y=f5Em;XHO}+-IUT@S4hhuS^iMr4> zRKG`2D|iVDW9V^LuNY?6^WThwX3_(*;Y+BIC1Ea{hw5NG=EOth52zLS6*Yj2C)|Zg zA{~2;Q3LFPsWA#OVJwE?cns0=KfwZ%f&rcebEf&4InP{ZF2*!;^ako_SdCh#N2nFb ze$oxB4mKkH9BLr*%_W$h>w7CnXhgeFBixUA*B>!Yp;qJ~>Vm(a4wkedo$k zV=D3)QSoe+&xK*+^P^U}I0n=~brP}`rp3D09GhSht~3qxPCt6eE$tapN4GH-{(-tR znZLJ=aWeVpI0E-#FXd0W$8!#9fcH+b{>4c=w1EGN8*xdqtXa{lVpcb6oAu2`=Cfu? zvn}d^9Z@syidxCRXIOtdHZcUWXHDaT51~3bZ~l&Im*JcnP+rVH zz7qDrI;a6JL``TXs{V1Th!?Oh2D1L>M)nk{Vqa9jSkx|FV)>6y z+LcFLxD{&PQCJUOMb-ZhwStFTdB8hIA{~K0%#aJNVn)=6bD+xoSP09ZR;UH4qh9F8 zSXBMF<_as{WPXIIcM3JI2N?YOUyc;lQEAi+>YKe#GaiF#u+ZXL%%j+s_$|DS?Ju%# zu9sP*aF!dGpC9@7{ zQ@wy`a3*TN^HJ}St>!)}{}R>zx0e471De@65^C@VYN^v)b@{BAg?wSu3#gLC8=~s9 zMYZpSn!qqr{Yj_^EW~!W8dd)eroz84HHKW{`Bx(BnhRt$bE0OH-zL}DoEXH*BKI(DYkJ>ZeU_QKdjrG^P2>r>8JP#^g8a1Q3sD_=)2-Hf9 zviua(o>^*sfLf97Q7dr=)jpIBqKW24txQ2Ik7WZSRIv-HVgzc$qfjGFL|tGJYR219 z7dV9_@mEy)yf>U>Q028yE6@?E;!xCzu0*ZSTGXBjoFJhK|A}gl`KB9TIn+#RqB?AW z4KduxS7KlCn^7HSx#b3!8`V!OoPnKD6S{!fd^arrvoqj5AdyHxs@rZ!CYi~o8J@#Z znEGdzuYhI9cR~$(3~HrjqAt7|wPO1*3!X#OyN#tW#Y}tGtwbTzO4LTR?~b~a5vX?KFrX!yNkSd0 zN8QW)=BKFV^@!!aL2bhCE&mWTkkH>;yPBwe8en?tjG9OvRJ&Nq&qG~j&2Ox~MzWbe zLELKsFy=`ZcQkSj1mh6V6G z>R#u1eDLug14}h&*$X|P_Z)!-GUcUGn=mhT#8z{ZI}VKqgLc2)T{Id)P>HYE_@3$ z^RywZeI8VQ6;b8YusF6w4g4hxC^63h+s*IIzfcYQp|0bmsFmo9+Jqxe10Rpt{Too5 z>I`a$)2DJ4LX}rW4LIE5(W!ia;NN5t2xO*Uwz(X0kl&2DhaaLkJd2viFQ^qtpW4O! zsCZRWyp6^CVK4H-aW5XjPw}-hKJOy-NE`5Z`$#kh^96rnd4wIwPfF+WqVN>1#%Ae# z!KdIl#*(j=!RL*`HTV*i%IFI|6^k&E{6##2?K1g--+;me)0?jCHBd2{n_MsF^H5U2rRwzyqkgaoOS_`CPs1 zs7+bM^3S1W9*KHEjYYLj#Ng-u8WQCR9K#~`2w%X$`F+99|FNhGzi%Ey9%JtW>M{Hd zHIOq_{)ZV>z-`LBs0mcDd~<9_zAuIbNUR{CrCp7BtTvz;yoY)ve{T7Zf^G(RQS}O= zR;Uc>>8Xyjv8k1hLp>Ffu@tUE^?L}l0%tM!`5(%Enx;SzRD-7G3pkwo2-E;?pe}gF z%DuuapASDGUJBLzC)5gs7V&v~F*U0FK-5YOMfLMa5uSgIcq#$CAU;Mmh4&k3q&fYr zVmZ`3tZDgHW;fJI3_x8V+8mDBd}FaWF2mqnF++;FeBq)2cfmRYG_oG33rC_x7_f@d zEx#5A5`WL~1&g_QWl`;Fpa#?iHKDGU7AK(wILlmss`o~KM1K-%@Ey!h+>Pu5Y)k$m zCSl1EZh-4hAJ02c1H6e^nFkinRMO475o$pFQIGFv%!Cs#70$t|7+6SR5{b2_4l9@P zd5y3>c2fmZ{3L1y7qK*6H*=JBGpTDni(1L{s7=`iHNa?8`vla?Cu0cRdvjdEn~xgN zB6FR&3-!YI+&pQfpaymub-{;b#xgEm5EU!<;Ig?;fFY7ez~ zisxS!7)L@gxsIP=?#gbaXU$8fdw2u2bbq5h1BzC0OFRtKemrU=H=yqE4lDl<)$SOo z-d)s67kQfJKP`#6PrC+9P#0>8TFSm=z{;1Q?&(_8t=NIO;67BlFRc8W#c!iNlpb2X zTvgYuCaPV7syzP%Nwg-QO)?lm@lDi+#oLzOh?>zB)P;9h{s3wMpQ8`IK@I#kYRT`S z>SwCv2AC5yfzqh{Y6dLP$ZU<8Nf%Vb!KkGgg<86K7T<^3bVpGgT|(8njaupq)m{6F zr~%YR)o*I?o~Y{tUL>K0uUNtBsFANjEzyUl3m-*ost2geQ>TXeCKHXiK>C_)=Gjmk zS4PE~p!#ct>aV{!%#{bcS6srIfVu_KP`m#V)C$~0E$Lro!CG!6bx||#i0b%x)P)A4 z+9jB;p=Q1kHL&fdr|mOLqwoK>N$8&c9tg= z(^0S3m8f4x-Z2lL2KWtD#~-m1=C0%Op4amqNuoV|f?9!Gb=?fwn|*Kt@fg$$3)FMZ zc{NnW5vZk(HAkanJRY?Y3s5Wiw&jnY+MUIKmgG7K`3QA^Z1r7-v*okMJqHkGfvj20Z_{Nz`lL3;G$~DH|K+FlK3ob^z4>qADdb(l2RlG|;OOpN>SC9vluZ(I? zAJxGSRLA46GY|YcjKOP-e8GRy?a{=&vZv!X>fJ|uc8qH3^H$kIz3<*Ngh zDAde-Q(0i1#V%AV)tt@51;*k?@-thwTal)v8&FpC6EBV$Xj9Z4ibegEY$MjkSL;fLZ#v9wXr{F`>8}obA``{jGDQmWMcEHcc zM`B~F-p=Q(!BN-={q5cRBM!NR0dEZnE$wF1ra6Eb=?|!me?o1p&<-x212upOsHJR) z`bIMf^~!$5OfsjKvrv0xzPS|B>iJ(4Oz^2?1ep+L?nei=O}SR$(@31r}O`WYp4sVfhQF$M8?oizam^ccC1pcGXee zlscm7y?|P|LFP!*<2(uV1!NWmG{T!C^y~IrGweB+FKAXqy)v6(EJosRJcIh%P$wP* zxdgQW7f}Pait7JYi{D4xqQ5XdhIZlk*M$pr34R&$o;ItaI;v&X!{Ab)M&2Ct_4+Lw zgeOp&w?S7Ie;o&s{|q~0m2U2_oQPVfJ2)4!bm#e3$E&)#-MSuIlfQ|2{A%}bkJBvk zFsj4Qo^Hn7QBT22)Qjo7#WOzd+I2yd&q59GC~76k_40Xjuzi3;GZIr#-_^c0!(MP5 zHbli=#J;!^H)BX|_tR zumfs_YjG6*g(@G>-(6rQ>IHKj_1>sDz~^{lloguoNBW z(|>Cg@Zw0YAG}Xdo2cMmw^R|RFPZyM7t9jrUK}k^d*Bt+1yADwEc&7w_zu)kXBy(_ z4Msgh2eBlc!D1K^rN^4*uOtaocpCM5wg?vRS1QztDca%*sC&E^^?ZMVrSS^t3rd!u zu6`v{e~nO2K{tzsTRz^($6;PQ|MM)c3H5w_gzE5fOpiaAzoA}4UbO2t6Y4^FQ1vUK z2G|Cx;z-oJ-e6up4Lo0rYgZQo>ae2)dZQ}DTYdrR1+oz}u-&NV_hT#n3^l+XEq@)g zBEDg6KxI+wTcG;wjvDaGmY+S0=U)}J5zuq_A!K4o}7g~HJ>ix3$C7%Bf659yq0`H;nyUl&(hvp~dA@g%oyCc{GkE32_ zPsO^GXo4Ex5Nw1KQ1uU@2KHsZ0w+-yK8t#{pGPh2ZPW@pKrLOSIF~PuKJqnC?P{TB zR2Mb#hNw@)HWu$_@h+%-`k_`VFp7jam}f3T-Rs2|j&Gta^aZ{DMaBGN=8=DVd_n#< z;$;c^PMQS`9$Sf}VgzM1swa*R;*sQg;amFeZyH&JuL-Uv`0tO^)?rhOq zVy{v5_|T(OfsW2vXE!O=v4A>fT+;iIbbCuzAl;I57wUK9eDp+LdjACf+PT7lQ|N3m zl}?ZkV0zB;Pc$e<`AlN_IQ7;nPrfUCq$01QEcy8^8T{FUyf#88=Oxlpt!x(c!)V_w zI|Y47)TH2Df+a`~M!s+UbF?B=K^@sK80%2JfpaA1ZpwHIdy_-v9%z|k?pG~SXNt(5sP`%9j`$YpGg!waYvT{*7&4>f1BQPZae+KmeuMm9 zq<3+Sp-3OAUOp-xrNi$yH*?OWumkZV>#Q~DuZcf-JVl#<7C2_|&G6?r<)nLO}{L(}_N~b@)h^p<)9B?S#uthT2xg2+X&j-XK4#6V7ie_5rat((^dKr_oA_zfHOY zXJzWHBX$KR;H#YBv>8iYM^5r@U{~ZfX72>)+NAR{qei;_YpGaP)8oj``80*2i9L%w zIZKfKhK3oe!$Q=(N&X?{yVT#vS&nl!b#>e$&Ub|1QQTZZt`p~Z`dDN2_>}YlPZNBe z;2h4yq^HJv{LakzIXb_-&W; zN)y*n$`SBJ(Ak$3jK&JgF2ydOI-e1nOMZuSu2{Aw(#q@D$~lyCIb|8>qb=!=tzI?S z`-mlwuV{V0PP&lpe@m-0)e5GWwD*!oKf{@m#yZw>9%n!gIOjc4?_99d{R8ka4VXUL zQ+}WG5@k=*{w3o2LKlHkDgTACYmYw#R#*oUC|pLter(RUhl&Z5btgRx``BQoP-g@A zNa9yW_qTW(Vzr3U@07cIkr@1a3N7E%~brK*hfdF$|i zsRs2(e@bV^IeSs>1JN`tQ*`!BWz9MxlaK5SmQSUd>&yxOwedwJh z6GHF~fs!;R$RPHTo=CbM@nWPOAEn4&CcX-*QSS=r`&L*4Pd!ohebNtzb)nAVqcUlI z3ptEkDbJ^Uke|-N2~3aq~GJ5t%`PJV<0ia@>rcD(no1O zkF$c+8A$9;EB}S`SmGz~cdj2i%F#(vQeP6(QGm)l=pYO6RHXCbSJ;!7j-8w_q$^oI zwRQd~@gL};9(J`dlHL~m;5g2C&*I~#7sy4&H8=;@h4tNP4;6mEB6NCz^b*oK-g=@# z7vc3v!cTi0Pfn+J338T#B$Y$W;q*7keS&k-w5zLmb-gp*iLK*y`37vM+ax6$}F zykG-6O!`mK)hO>~oz=5;YOA9y`4sBB?y|w3vxto%RnGdEL;gAP`#FEmKQF#UXN9bz zFRap+6zWJreiHs{@d&F|gM1a@+sQZP%x~ptGuF~QmEm}Y{$r@K5Z}e(tky@QmvDZh z|Gc;v=QaukP;#_NW6>q}XhqCd+hH`%9`VR0PS?~>q!o3t`Bt4k(Z%!Sji9LDn%R}(kNV)!c zs3XkbJxkpgRz8CAX~f^e>P)UQ=RxbUFFv5&L+bybueTG(@aGZl4+`Gp%tOO%6lTL5 z)?pI)6wVJUznXM8&L@xe$qb|YZq?yDMY<+Vr`}Af*qzu#>%&jHb3O_R68MJ9b_#X0 zC;fG(zA0*f2a;RPna4_1V=?LX)HUfDoCipMj(M1;{(lPhQ+|y$kB>o?PN3dp3$DVS zI9F2k2tz6Bhf6tid`>=)mLHAiY#k=fwc?@NpsF#`8pXAeUULxIq^9ABM zzQwKNw_phMb1=|Vq@y@rqFleBKRz;$II3@nwMd+y@??A+Yf|}F&f0XO<05An@_lhC zu};)^kMucWI&u+f$@w*L9cj7fM)J*+q0UXx4XsR}w~5^)R)+Ml#~b`E6_#@z;*wj;2mwR^x3VACg{&o2mCXXDoRg zf$vEC<#U;{rlIlERDOK?M0pWn{jAuC+gp#;YjjDu_>nJJVe`w z#~tbgGm4=8n3aIh6#k6`@MVl6&R=Z2>70qy=q}dayhWXZ*pBl<(%*CPHxh3rr;c>w zui%^H->0v~M-CE&iRHvs^yyHa#4}V_h^;Xr=PD|kp#vR5IEy{e!6VYYK9N_Qp44Bh z1V?wymuWkVI;F5Q=MKt;6JM?h9KTamh1H7DD5_8)6B!+ss5ttcUm?d(azdqcxqGBT ztmYAmZ8wWx8CvUz#~PgbII9xBM!Nx4ZzbiK>7x#@wwyZJ;StXEmY+!7jJi1msQ4|N z=vYeO0SbN~pO5q=EKj^Mv2U;?`RaC&jn<|r^a;tKYC`BM06@H;`Q}Cr(jMQ~XUQ>OJPdIl`>lU>(5Wh{j8g9mX#J)rw ziTEKtL)mp)fNhAq!+D>2#mOggo+2H^sbdXgACUeSb*u|z`yC>)mx?+@P`HJBCDH{{ zkuzM4DBs6<(dw1>=eC}s^iyg*KJrrICYee&pRzwF8_K!c>SQCfoAPft&r>HKc^!o) zf5j!ee#DB})==mn^{Nny$7!6ENcSfGlis;HsuQe9gV(T+br>w*$5VFUtdw;jUzzd_ z#OjhCLOPUmF8mD(6Vs82{41R8i2X?HMb1&=bxh$LM!Y0vhY+s+iZvQTU@Mg}kT1%4 z)f%W#E%Kcx&q-`2&gcAuGd=kOl(!(QqdE1S$4PjZSZ>n8sk4dvzdtfE;oboX>riq8 z&r&I!E!!Te{fO9M(nmRqQl}W@Uy*)?GY1#wOnED8qYGd|$uX9?w=L}=%$P)B>O@hd z<4w-s`hP*=?AxIwx*6oBh?@@9}P!741IygsLn%$(m7zf1ku z#MGoB>1S{hHo)9i)#^9Fxx|9=-$L#3R`3Ruk_q1+_8Dm%htwO#b!=j>aPuIsi&m~W z-8dIpUxTbpEah1^FI)Ua(iNG&Y0B>h_)&!O7waSr@2Mw_ili6O=tG>~LcyOWExm+x zldRLfiCrh1hI6j
    <7`6twk<;=oanYvjx%TV5>E)|YhgL?S0H7Lah2b1n=WsC50 z8hiehL&FC}_#4N>4&eU*u}s^TevwfTWxX;Tn((7@c)zHK__E2DyMLFdL{yZ&YeZ~( zWdHCeuSvucIe+8Wi0~o9Vj`pClRp?ZGku0;G1T#Q2nHIxBaa2tIA#wf@5wUTRG12}im1)|ItQbk2Z4@oXCs&TBIhon?IDsftT3zHVLU+^YL>Cima8uymE%yC- zO45egyQg@BIyA9FO5(nhqy;HS8&i^!Qj#VUO}_ta)9me25%Tyt0eoErHl%(A$i5t}U6Xjg! z^3o}nrtbXbD#=xTOOqL6h>ox4ecapn5`m%V= z|7?oeix>0d4lV3nH5&4Ax=XmacXvv{zTn)o8VjpDDu5h|6|o@|C^=ee$w^Z!LIi{(H*-`+jF58T*QSt z%KG-E`{&BrhnMpe^ljf<-Zwl$cH4XjoB!FE+jG?PJqQV0TC(fX=EW&V{ErQ`h9&o?)8`+;YCN6Y>%Q<32x delta 23353 zcmZA92Yim#|NrspCNX2iiUhG|Y-;bVwf87N5Vd0zh0oP+D++y*4n2+)|m>X|ceag$F(dXs ze=ag{WHhsxsFg3baw4Xnd;m3(BbWtGq1s(Vt>hmpg+Xt+cI8nEse-C+WVS{1*8_E_ zV&7!{HS>W4G^3H29Vel-d>QHzd}i?@s1;mBwSRPXB_xf<%4cSqGHn2S;U z?Z5~;-p%hiyk!;7P&*OY-I*V?)#Y##_QOe-BidcE`Mw)Q_%$7y;x!%$mV#Ee3DB{v_&Vy=e6}u>$44Q8#CaUT)xus7qVj zY+yDwJ0R`-UbM@2Z=oKO;pTYMz3>5QrYp^DsB584b`EYhWCvz-_2E;x5z*Phoq!fLdw!zRoJBiPu6+ ztQoe#u2=xKnrBf9dV;#?!(!Qg1uDmSUS8~gTKQbksZlCTieks5f8m zK-XbjRDDU*&eTC&^R}o7$Dl6RIINA!Q4>i*P2>-ZMBgB1J`BS zSQ^)$F40d|1RtPQ8a~*?^P$Ssty~W^k#49<8IQUI(@^)qEYwZC9#iZ2KTIYSey;$Y zN6q{SrpG@~TjmXMKrvMNGGBi(9fs|-$b>4fqIJ44|DfU6so>4>JoQDjrTTc zXT}a=|8+MnCD02$M|BiF+^w`2YGUOu9o9fSzptCEFe~K_s2v!HfrX$38jo7gMATC> z3$;TVQSCnWTZ4V56`nv1^ed{vyQmdEMBOwYBizc0n)S_SbF8@l)qXo_r%q#5yo{RI zW7LHF&&WiQ$v)C;T_p@$E7Y~?iRx%L>cm;770p9UaFw~i+=g1nF4Xx)P%FKFp?Dp& z15c5D{9f?eE|A%bz^XJTgqN@f&c)iJSPlM!%W&Fg&wB$)j&XPOJ6N0YLF5!K#XG$B z(U0|T5B5OcSiXK?FKn*o{}`DD1R}+JK!y|E^RhYUW9LAqw%~2aV<8(gb93N z;%S_X4dUH|&!hSqoZ$QiCs7{vF7JO#Igv|EpWbpZ+R`nkt=ogacpNk18C3l>)TQ~$ z$}dn`8p0^riAb!215sQ4DTd=7tc&L`1xCE@c051&H9!;@-SxFF2R29Dgnd!hd<1IX zF{lZ?Z_Y=x`vkM&4pcuUQSC2T{Vj_>M%@!B*#=E8Y!dsgh6M;{g{4s)RL4~KItF7~ z)Lq;eHNm$~ck{cb4nM}GxDgBEW7J9`C%YF-Vf0Zhh3c;i=Ev72v;P{fGXb5@4^*!I_AZNs2%wdwSxWTaa6l=m>aKHIr$VfUwZj#}{w)V;9}wZ*4V_trU7KesV0K0w_w&oPaj|Bz|! z8f8a)O69?5tb*xq5r*J;)K2X{P567%7G6cI=ss#|eIL3VN`vVr=fu)j#L68}=l8(~ zJ^y3K=*0P$9+zWE+=|-5ov0OjY4L+tf$}l@43kZFZ^#{3mGTcb1T)TX=f$ILw#leV zw+V~mmsnKK|4n5ubf(+F>Zpdz%r{XJ8Hm|14*TL1WDC8&FdsfgJ?D96x$|RC=MA^= zXv|D`3hELqM!#0Rl8oGl>TtW2zecV6J1d{UWR!nK?a&3xgjdYJ%~Z2pKRL~UW@*ew z`>LqN`1RTBzcMidbgjmruJu%`j0^BJJcHViv~%1&5RRHy1=Iwpp>D2bsGGNw)z8QD zl$T;2+>B~>0`=6KpTquZOaCCCElD}oO(Y$br5ui$Kr`%t@1Z7q6SHEnkDNKM6XlYq z_LFe~?z8fMdG4lLjoFCr!UA~8Pe#}75oX35^WF1X9Cc3&#b&q&^_bnp?wE#85M8pj zP}g`EYNex4PsJqEn{XDY-EP#*9zgBfDb&vSe;%e2t7 z3p4Yeu4O^gd1X-TYNB?aA?k(J5({B#b2MtlmSf=i|C&ICufZ+2E1Zd1@gmd&wxI5jT^2uy+NsN^er{u0J^v5LXp5gKfN2-IyFEK9 zUKn+)%A-1HfDzanwWa-015L-~xEi$+k5D`L40V3U5_f)X%t5&@`ZbeUWOPD9)TL-{ zw#D3(JEK-Q8r9*4=3>lEc_Zq%K8o7f3#fj6$6R#yg!AOUqy z0o6eRR0mDXmS%g@7I#IhXfS5McvL_0Fgvcb@?KQClc<~WchtxDQ`Ao9TIP3;S)gLmCqXzr|b^ayPCHw<( zV$dr0q2$j)CO3h)sB6*#bt&FLt@It#OsAqcSZ(#YP+NTjHNa)m1RkO${uB#f%GGY7 zB~blVMvc=1xoQ1gYcjevv8ZdAfI&DPwKI!RTetz$?sL@2PN61v9#7&eEQq_;xbF|Y z;V{Z|*0RmG1Mg$dI`^1A#IcO;75s!h2vM;TTVVKle(l2kSRXrWaF=Eo>M>h`TJav# z3Qu5p{0oa=k&W(m$=0Zq?!seiGSrr(-{Q79 z59+yp4U1zN)TJ43F2H4!w_y~v-pVfF1nhyWK6Mk_j@sc{=ub!HKABAT41+PlHaBoq zOiQ^C>JpSiwXcr4iJD?^?2S6FpE=kZVZMX9H{#97sGE4kHuhhc`2;l3GSs!*XywnX zyx+>l%yX!%y@FcFUDQM#U_SiY;$exdzuc&a7eP&=B5J(qiR`~7(3n67w!~0;(;RBP zhuVRUQ5~&D?N}ma#&1v^o`QD#)??$3->=tjl}wt*J2^Oi)As( z9-YtiZ%C#pf%mWu?#Cz${?a{`{BgpvDr92wvHgiKw$gqlFU{dzO;nSkmb32R}|1FnO9*pc!Y?1tV!_dmgQ zNA1)$E8oV~C|Cc+z1W7Ehfw!Y_CxIdb21~ysKeohJ+C{S#5gSdEr0pKRj6xz4s{9A zeCJl&4r3@U!#bGah(p24=%pb3Ce_d8mHZqu!(kQ2qXZIq}vp_Fo+YA9t_Vyr>f@ zqdIJ582GwpXY9Sw^`q}FzqZyq-&FC6x zVBbj>&w-(oOQN={4i?5XsCMt5COjMS<3`j#r%?UgMeShnQ||H1i)vR3wL|`1WVDiz zr~#&9MqG~SU>mA~Z!rsAGoPY%B;)sP0>w}R*F|;Q9W}u?48|##4rgF;T!P8;{I9UU zY8UW6F*ll9%x&g&b0?;tqc2c5?|#%yMVxj!R2sE29k4bIK}{sl+=V&y{O={B8J$PX z@Dl1>f5-d>Gg3}=#tj&XKFT?f6?hS-^Yd7Jehi{q%;Kf2Tn3fVmytff5XyIdaF^f-s)Gz?-HRkIj-b3AyI|fQ-D5ZoHIXFLHNRoyke}Ry zGofEI&uW1%GnbjyENB)rqs%g91+y}0!0M<8)Y6sg%Gd|h;d0c?`5BhR@2vg_YT)ueyB%zY#VGg0Q2g*` z_FpqyK_CZyhU)0Jc^S3!|DYxmbl!c==R|FFA=Cf~s1>b7wcm$PcmlP+|42eG6={1}Ch13$=x*FE}%zPRx!PxFTxe9k3b>LABqEn(%g1{ZUMfSIm2; zcK*j?G~*Xm5pvNz@7YjWR36n)BaFm1QSJTaRI6WLZb7yC1~u?CR6j4QKJ=1XKvAdP zYeXiT27OQ`Bv^w*<`>wV_<6jIRe$9J2@C(`CUOjQkNk|<^5>`>E%Cb>xQ*Etvk`v> zb<@wr!0-R_$moPssE&?ddHfUeVWG?J+BHUP*=W>+C!pRJi_HyIzY8_M*H%7=flGjD ze+6|Z9;mG6|35MrFinzs(d0xmERJee8P!2u)C#(w+Q*?TMFKX%8L0NZVi4X$z47ju z56vg0cZJKS6{R2}(_u=?Vn$$I$_1>x0qV{825PH2pmyRt)W9oHkK;zvJ+l|X@GR;c zxR086@~f^KdX?v2D=JJtC)O}qqF%YZtUMfZQ=Vk5MeWETRENK!&cBbrnCzO{nN(Pu za#mEk+NgFdQ4{WUjs4e52NKW#@1j<`5;ed#SP(CvItaS%%z~;ffGMy#YDel}0UU}N zXdY^Z)}t=fA=JXopw7SICsUKmGiy-&hP&IFpgP`wn$R{>M?c^+`~$UuaW~z~HVIXp zYJP1j7+$dYly}_D3b@7B$c`b0umgcA<9S zEQa7i)V1{8cjx6qwJU}?zX56@UCf>sM7f{Jdj1EI(KQ}n4d$aJvee3FP#vAeH24Q< zg-=oErT@c~OQQy=iy5#9MqnqaABpN`3aZ^Q^lPST$@Ibls1u9)=^9kRD9SZaD;HIn2RmG9(BpS##VU4>Z?9*{WikV#51`XIo`s+^M8+w27HQI zX_lw1;{vD-tDx#@V}9&}n(#Ptxp~mMZl?LqwU0ve+Y+?{(WnI^U@<-a)5z$t*ok`F zZlbm{`!i=TRDE^S)(y1y7)($3LvyjY5krZ8f#G-()!%K@LY|{`F8g!#UlmbgR8b36 z?ucEmKYoSZ;bENgf;$&m@cYkRtl;wn{*v(sTT&jE%;)vTQ@9GNC-(*J_RBbwa`7Oa zHx8HJ5X=?q^9TN*Fg@7k#S-`hFJS!?zQ8w{d?}qna3S%paSC=xd^WYu zTZa|W`1FS@?-K69xoLfYe|MyLi1RAWCq5>fFYu?EEb0Bez_pp5-WS-~b*Qb`j=J_o zQ9E+l>aSY)ft7evZKqh8f#QT_ae&G0(vUZ|MSjnlwSM%TQH1*V{G zl4VxjkGhM`q3+^~m>X}JsWQ3tg|RB}#;AK_B5EPCPy?>R0=N@(Ph7OP|6ej{m^!mt zNghx_Z#|1o4VP=D0T7l#dTE(UHE^ItP-PB&l~)HQB_8n`=Zf+JApC0KbW_NKhi z%Aw(|U1T`VzfO!Ipc&Ogt>_I*iQ`Zcd(WJPYBvXa;u73~$s*i<+wcv_Colmca=8gE zLwyWyMNRMuYG?k;#q+O%pzdJHFHM*I-p$EBza3+M3#{>W4w z+fyEail0C&;1?{6m(4VhZXsp;mZ^r?$_A)+dOOq%V^AHujas?dC&S6+RMdo~o6F2k zQSXcW<_YsWYGT(=+YUS+t+#9d} zYT|zLJ=A++8fu4kA~&tyJK-|kT~vo5`Q6hHhI*xzMZH)C;Z!`1dJH=iaQabOy9)c` zG1OPA$_0JiEsV$dIG~X0HxYG@9mAS>{-2T23!{2r*I*cSr#uaHZ`?z5oUe#m!E`)K zc{gf>@kO1JQI~86Y6n-MR-A}h*d^2@ylwT5Ft48f;9{;}VboT(!jw1=)!_)#^F7&I zhwA7sYM}2?6ZsuA&<)gikE}jbaTm{l`m8Bv<<=N@{<~YC4@S^nm^l-54{XNdcmwq+ zy<_DEsEPcInt)frl~bY?kO}od3qvg+9QC5Bf@+ zRJ+Zno%#y3#pf*^9OZ7Vtf+p9quNzK-MlSP=f|NYkPzi}Crq)5WvGF+qE0+u@n2Ch zzmMADR3+WOSy4|%E!4d-9v9+gr~z7(aw~6->URVxJ{i^D3_lrl_=)+sH8@}%L0y9H zQFnRT(ryLiP+MBp?16f$CZJY657qB-)Igh2D?e=hglg}@+hFS15>J54w^?Su5GiBMp1pQtZnF>@C!dBP?JL48? zj%mxe9q5c&!CZ4SZlJs!wZiD~?ztX~TKNXlR_`?TqE>te)z1YitmprZ1+r9dCl)~M zNEx#pYJm2r4hN&|?vbdi_FH_im1meAqXt@q8u&BRJ#_^2`@=P?pyxkzMPJ}QpR0)) zco1g8cyj?3rMwmM<9Sqv&rx@Ome<_GYN7^gV75bjMeB`fKg(Q)8s{tY>xJ+=8LjYz zHONuP?L2LUKo5RRJ)s~o%_p7-q@`;6!m=~98>7|A4MjVz<6_xxz5~!dNZEFq4)@gW8Wt3 zi^e6ha8tJfgHaP0hT8IR7N3av^qh=(gHFd#J^$;;=sVq4=04O`9yGs2b#x3h^E0S# zFlAo%1^y+p9;nCb2r6Fi4R;f_!#0$^#QvDMncFEp&ZfK&1E2q;n!CHTA~vOB6zVbj z2KC_+-on`y)!}s1SF9_jry#1Odl3yl#pk2W`yEvu-pWm|GioP4$13rK-_aNNk4Pq?>XUVH1Jp;YY$9p`d$9v%@9e&04n|#q&rt(i zH*{?=Bj6;19S%_-C8`a-&)KidT@w-;`db#>E$asD)(gKxHZ=~j^4%=fI9AQpC&3G!R z;{~XJR-)SPLftdxP&<`8#$AHf%z>zhuST7B7z2O*yJ&%1*1+rS8stO0Kq{do)(G|d zwy^qks0sGB@<`N!&Py=5<4V1De96PM4f-p;{T%h3F+&0D$LA}ibtW|FICX57f%f`8lX0++{kQdHZxnAZOrzl z^EzQijK)y>0<{w-Q4{&QSX!DRz4SIc^dWD3x3H}yJ3;xNv6MEZmH zZx+8~{piBQ6FW%VZBjw<@==YtSG>9a9 zOkPJKjeAjUY#s6e61c^}iQOaRpgfnlr{qhKR#E=i+O|MG*}P+)c031twR%`Pg z=PoCvZwNZ-5}!l)l;Y$kppLxcgNVnG_g5u&f=n+014->kgDC6uRme^t8#u1oKzcV# zwtPV|4=v`CZ)4}IqK%F>U!LQNfnQgS(&jMrDTCPmI%MimxfP>m9Kv=b@breIoEp)!Sn2 z6nmRCbBK-6^)F1}Z`?szM59>JiB}r`N&Gv~mz=nVwmsDY#}V>x5zj?Fl5~}FemgIm z_{(Dwv9%P=5*vw)X*Z2n2>SmZv!9GU9eSdUw8XY!BTl%3b&3B@?A7BU<$o;pE*05X z?E~7^q-|Q%x5+>{b8oim2|NSoRb+ASyP+fx;**Qq|* zd`-C%DVMd)X!Rkso#ZjN&If3FVo&((gac)eb${O=}07?qYkMPX(%16 zB>iIbs{2JhIQSz=;Q#(>DEU9Be?WTWCJB5KQ@h;6A7Kaj=})@HdEH1eh!sG88apd3 z>YK8T9-Op*%1BZYNykPrFLghWbbKB7$yYr())9g4Q+EqD(S9%HqkP}$vylIa#4lJc z55E^l;N=lU#c8X&_DWp!Szjsd{(l{KZxQdx0L6%WQk=^}OWDR(B# zqpV|_-jO@WB#~}Vq2s!Ba2rR{@K=kwTK-x>?0f4#v7+QR+c~+}#be}8zHE%kIDZ{& z&RLrwcJ3PD3mD(a%1Mne`jvrF(OAEfzC1Ef*N4Izq~{iFOPiI}Sw8v*rCiO*L$N09 zLOCys#dO+D+EgdKJp36cl&4YGml1r;CX%0g0`>cGI{ssArjma~szS#r@HOH~NZG7D zf%Ek%z^lht+Fi1KCt)6!_j`rur9mdr>*U9ietu=vzteaX>2KmGh_9qw7%N^( zz6*IjbxEX$q->O*&`!q`>fa|t5o_o|UN+8~OS@~N$NG-+H<{l^|IuI}jbA--5Km9+ zARP=NU8k}vu@-WF?$Q>|?VR_p=q%p)US$my-nzV%2kC@Z?OisIY zu8r=09x)1EQkjnY5b`BSOGv31UWdhKz~5|taMczJ}=;pbLf zNN^_kFG!|fl5HE4Sk|EBNyq}t>g5-W~60{j0Djnh+@MT3v2 z)Nz8Cj^lU~M-V?mePJe)89yUsw>J6goYcfxl21h%Xt6Audyn`Zl$+9i8RZ37kQhfc zuQC-ADJ&#iCVvD+&)!!*yZ?KdoubW7>nei{*T`&T77O&mv}o6Z{1tl0Y3Fpso3uNC zpHP>B6mRYSA-0#cd8z-3*htDP$tNRypsyzX5;#tS?@4jw^N`4TQ}{8Ql!}H?BpuhN zD@|+=<-aVZ_(@`wl;OBSo0(VwpV8(%b$bIfEZI!?zjL`XJt$P5(HW~8OkT$=QgQM* z10_Du@l)FN#pGO|3gmAvNEhquJ=*rOb88U$g*27)k;T-_Guodc))5bpf^}=YJPMJ~ zpEh;mb$D}Vyw&pEO|jAPE2w`$8cb(8)>wbJ%&(}sK;0Zy?fs0+C@&)ACi!O*D9CDb z+@WzBf-jF4I+;&lJMnt2#8rQky1~|P7WD^6$*j%qIG*x4l8&XM{Fe7APC1A+U-D-* z?<4Ec{ppIF^<;)BS?68n|ZgmMt6 z53xbCA5YRz)jgWL4=H4)ax;xmQdymH3MQ4B@*ir+QJQ=$JMjQ*PmyX`S@o?b-y%J+ z*d5GB{2{SSYQV9cJ{C~!N-9Erl&=3bG~7bkK)$YP=MAB9FR>KZ#9{~V9b)g1juD?n z`&L$WmV9&KXNjjLtsoyx-9>DReX+B(&5chj&;8HJsLahtI{K5ZNoP7*lU@XJ{JKtk zCh9(?t`=!H`Hxg4KANq^GF|3E{LBfPdgnSI08R+ zQD2M{L0YfLX#cO1d7YGnlP*whhCh>ZWMU$fX#Acl27VTz{44E?P^zu-Xfv7o6jDy| zFOQ1W$IJ44+P-VCO5~4G;oHNfK&U?_UFx_-T5b8C0ulG4qn*}*)7~V13w2Z`Uyghi zE1$P^s_Ray1ATQ-A+qs+=sq!#bp{RX6*JT;5>v8I$)b@3AJp@$sKkMt4yQ}( z()WWjiBE>+NItvZh`JKPhC4TcHC@Asj^GM&0CO%(=pdEvPeS7n#ir=0TzbYwV(!5Vo`LgWjUexzE z*^ap-d_#ifjV$9kw&RVmzHr};rsaII((ZUs!*?s$j*fMGO_S~TsDW>3^3*pMFS$B# zX~O2DgpZRF_9VscOp2fNzs5-uHr!aZ z>FVZ>lP1hdny@A*K0ax}Z1oUYYQh%RU($rRN%2#YCVZ7NVS&1tur_JJoNI~euDv@w ZX#)Q&Q-cZb&YRiP7qO#K6W_6-{|5>fzS#f( diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index bb1cd33a4..6e1402f34 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -2,7 +2,7 @@ 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: 2025-01-23T02:45:29+00:00\n" +"POT-Creation-Date: 2025-01-31T12:13:03+00:00\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -324,7 +324,7 @@ msgstr "改行しない" #: src/admin/custom-format/index.js:203 src/blocks/_pro/step-item/edit.js:105 #: src/blocks/_pro/timeline-item/edit.js:71 src/blocks/border-box/edit.js:236 -#: src/blocks/button/edit.js:677 src/blocks/icon/edit.js:313 +#: src/blocks/button/edit.js:677 src/blocks/icon/edit.js:323 #: src/blocks/staff/edit.js:199 msgid "Color" msgstr "色" @@ -340,7 +340,7 @@ msgstr "文字の色" #: src/blocks/_pro/grid-column-item/edit.js:118 #: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 src/blocks/button/edit.js:732 -#: src/blocks/icon/edit.js:318 +#: src/blocks/icon/edit.js:328 msgid "Background Color" msgstr "背景色" @@ -537,7 +537,7 @@ msgid "ex)" msgstr "例)" #: src/admin/margin.js:141 src/blocks/border-box/edit.js:200 -#: src/blocks/icon-outer/edit.js:150 src/blocks/icon/edit.js:142 +#: src/blocks/icon-outer/edit.js:150 src/blocks/icon/edit.js:144 msgid "Margin" msgstr "余白" @@ -570,7 +570,7 @@ msgid "XXL" msgstr "XXL" #: src/admin/margin.js:51 src/blocks/_pro/accordion/edit.js:139 -#: src/blocks/_pro/outer/edit.js:1071 +#: src/blocks/_pro/outer/edit.js:1362 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 src/blocks/slider/edit-multiItem.js:198 #: src/blocks/slider/edit.js:329 @@ -579,7 +579,7 @@ msgid "PC" msgstr "PC" #: src/admin/margin.js:55 src/blocks/_pro/accordion/edit.js:122 -#: src/blocks/_pro/outer/edit.js:1055 +#: src/blocks/_pro/outer/edit.js:1346 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 src/blocks/slider/edit-multiItem.js:225 #: src/blocks/slider/edit.js:350 @@ -588,7 +588,7 @@ msgid "Tablet" msgstr "タブレット" #: src/admin/margin.js:59 src/blocks/_pro/accordion/edit.js:105 -#: src/blocks/_pro/outer/edit.js:1039 +#: src/blocks/_pro/outer/edit.js:1330 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 src/blocks/slider/edit-multiItem.js:254 #: src/blocks/slider/edit.js:371 @@ -866,7 +866,7 @@ msgid "Height" msgstr "高さ" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:178 -#: src/blocks/_pro/outer/edit.js:542 src/blocks/balloon/edit.js:515 +#: src/blocks/_pro/outer/edit.js:833 src/blocks/balloon/edit.js:515 msgid "Width" msgstr "幅" @@ -1230,7 +1230,7 @@ msgstr "リンクの設定" #: src/blocks/_pro/dynamic-text/edit.js:389 #: src/blocks/_pro/gridcolcard-item/edit.js:353 #: src/blocks/_pro/icon-card-item/edit.js:128 src/blocks/button/edit.js:283 -#: src/blocks/icon/edit.js:306 src/blocks/pr-blocks/edit.js:262 +#: src/blocks/icon/edit.js:316 src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 src/components/link-toolbar/index.js:321 msgid "Open link new tab." msgstr "リンクを別ウィンドウで開く" @@ -1417,7 +1417,7 @@ msgid "Padding (Top)" msgstr "余白 (上)" #: src/blocks/_pro/grid-column-item/edit.js:151 -#: src/blocks/_pro/outer/edit.js:545 +#: src/blocks/_pro/outer/edit.js:836 msgid "Padding (Left and Right)" msgstr "余白 (左右)" @@ -1426,29 +1426,29 @@ msgid "Padding (Bottom)" msgstr "余白 (下)" #: src/blocks/_pro/grid-column-item/edit.js:196 -#: src/blocks/_pro/grid-column/edit.js:96 src/blocks/_pro/outer/edit.js:1093 -#: src/blocks/icon-outer/edit.js:183 src/blocks/icon/edit.js:174 +#: src/blocks/_pro/grid-column/edit.js:96 src/blocks/_pro/outer/edit.js:1384 +#: src/blocks/icon-outer/edit.js:183 src/blocks/icon/edit.js:176 #: src/utils/unit-options.js:6 msgid "px" msgstr "px" #: src/blocks/_pro/grid-column-item/edit.js:197 -#: src/blocks/_pro/grid-column/edit.js:100 src/blocks/_pro/outer/edit.js:1097 -#: src/blocks/icon-outer/edit.js:187 src/blocks/icon/edit.js:178 +#: src/blocks/_pro/grid-column/edit.js:100 src/blocks/_pro/outer/edit.js:1388 +#: src/blocks/icon-outer/edit.js:187 src/blocks/icon/edit.js:180 #: src/utils/unit-options.js:10 msgid "em" msgstr "em" #: src/blocks/_pro/grid-column-item/edit.js:198 -#: src/blocks/_pro/grid-column/edit.js:104 src/blocks/_pro/outer/edit.js:1101 -#: src/blocks/icon-outer/edit.js:191 src/blocks/icon/edit.js:182 +#: src/blocks/_pro/grid-column/edit.js:104 src/blocks/_pro/outer/edit.js:1392 +#: src/blocks/icon-outer/edit.js:191 src/blocks/icon/edit.js:184 #: src/utils/unit-options.js:14 msgid "rem" msgstr "rem" #: src/blocks/_pro/grid-column-item/edit.js:199 -#: src/blocks/_pro/grid-column/edit.js:108 src/blocks/_pro/outer/edit.js:1029 -#: src/blocks/icon-outer/edit.js:195 src/blocks/icon/edit.js:186 +#: src/blocks/_pro/grid-column/edit.js:108 src/blocks/_pro/outer/edit.js:1320 +#: src/blocks/icon-outer/edit.js:195 src/blocks/icon/edit.js:188 #: src/utils/unit-options.js:18 msgid "vw" msgstr "vw" @@ -1630,7 +1630,7 @@ msgstr "アイコンカード設定" #: src/blocks/_pro/icon-card-item/edit.js:137 #: src/blocks/_pro/step-item/edit.js:82 src/blocks/alert/edit.js:73 #: src/blocks/border-box/edit.js:272 src/blocks/button/edit.js:760 -#: src/blocks/heading/edit.js:335 src/blocks/icon/edit.js:290 +#: src/blocks/heading/edit.js:335 src/blocks/icon/edit.js:300 #: src/blocks/pr-content/edit.js:212 src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:167 @@ -1643,7 +1643,7 @@ msgid "Icon Background:" msgstr "アイコン背景:" #: src/blocks/_pro/icon-card-item/edit.js:153 src/blocks/button/edit.js:606 -#: src/blocks/icon-outer/edit.js:238 src/blocks/icon/edit.js:226 +#: src/blocks/icon-outer/edit.js:238 src/blocks/icon/edit.js:228 #: src/blocks/pr-blocks/edit.js:285 msgid "Solid color" msgstr "ベタ塗り" @@ -1677,45 +1677,122 @@ msgstr "テキスト" #: src/blocks/_pro/outer/deprecated/save/1.89.0/save.js:252 #: src/blocks/_pro/outer/deprecated/save/1.92.1/save.js:252 #: src/blocks/_pro/outer/deprecated/save/1.93.0/save.js:258 -#: src/blocks/_pro/outer/save.js:253 +#: src/blocks/_pro/outer/deprecated/save/1.93.2/save.js:252 +#: src/blocks/_pro/outer/save.js:276 msgid "Outer link" msgstr "Outerリンク" -#: src/blocks/_pro/outer/edit.js:1035 +#: src/blocks/_pro/outer/edit.js:1054 +msgid "Lower Divider Level" +msgstr "下部区切りレベル" + +#: src/blocks/_pro/outer/edit.js:1137 +msgid "Border Setting" +msgstr "枠線の設定" + +#: src/blocks/_pro/outer/edit.js:1142 +msgid "Border will disappear when divider effect is applied." +msgstr "枠線は区切りレベルを適用すると表示されなくなります。" + +#: src/blocks/_pro/outer/edit.js:1148 +msgid "Border type" +msgstr "枠線の種類" + +#: src/blocks/_pro/outer/edit.js:1156 src/blocks/_pro/step-item/edit.js:147 +#: src/blocks/_pro/timeline-item/edit.js:113 src/blocks/balloon/edit.js:577 +#: src/blocks/button/edit.js:658 src/blocks/staff/edit.js:177 +msgid "None" +msgstr "なし" + +#: src/blocks/_pro/outer/edit.js:1160 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:448 +#: inc/vk-blocks/class-vk-blocks-global-settings.php:448 +msgid "Solid" +msgstr "直線" + +#: src/blocks/_pro/outer/edit.js:1164 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 +#: inc/vk-blocks/class-vk-blocks-global-settings.php:456 +msgid "Dotted" +msgstr "点線" + +#: src/blocks/_pro/outer/edit.js:1168 +#: 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 "Dashed" +msgstr "Dashed" + +#: src/blocks/_pro/outer/edit.js:1172 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 +#: inc/vk-blocks/class-vk-blocks-global-settings.php:464 +msgid "Double" +msgstr "二重線" + +#: src/blocks/_pro/outer/edit.js:1176 +msgid "Groove" +msgstr "Groove" + +#: src/blocks/_pro/outer/edit.js:1180 +msgid "Ridge" +msgstr "Ridge" + +#: src/blocks/_pro/outer/edit.js:1184 +msgid "Inset" +msgstr "Inset" + +#: src/blocks/_pro/outer/edit.js:1188 +msgid "Outset" +msgstr "Outset" + +#: src/blocks/_pro/outer/edit.js:1200 +msgid "Border width" +msgstr "枠線の幅" + +#: src/blocks/_pro/outer/edit.js:1212 src/blocks/icon-outer/edit.js:212 +#: src/blocks/icon/edit.js:205 +msgid "Border radius" +msgstr "枠線のRの大きさ" + +#: src/blocks/_pro/outer/edit.js:1228 +msgid "Container Inner Side Space Setting" +msgstr "コンテナ内側のスペース設定" + +#: src/blocks/_pro/outer/edit.js:1326 msgid "Min Height Setting" msgstr "最小高さ設定" -#: src/blocks/_pro/outer/edit.js:1087 +#: src/blocks/_pro/outer/edit.js:1378 #: src/components/advanced-unit-control/index.js:13 msgid "Unit Type" msgstr "単位" -#: src/blocks/_pro/outer/edit.js:1105 src/utils/unit-options.js:22 +#: src/blocks/_pro/outer/edit.js:1396 src/utils/unit-options.js:22 msgid "vh" msgstr "vh" -#: src/blocks/_pro/outer/edit.js:1109 src/utils/unit-options.js:26 +#: src/blocks/_pro/outer/edit.js:1400 src/utils/unit-options.js:26 msgid "svh" msgstr "svh" -#: src/blocks/_pro/outer/edit.js:1113 src/utils/unit-options.js:30 +#: src/blocks/_pro/outer/edit.js:1404 src/utils/unit-options.js:30 msgid "lvh" msgstr "vh" -#: src/blocks/_pro/outer/edit.js:1117 src/utils/unit-options.js:34 +#: src/blocks/_pro/outer/edit.js:1408 src/utils/unit-options.js:34 msgid "dvh" msgstr "dvh" -#: src/blocks/_pro/outer/edit.js:433 src/blocks/slider-item/edit.js:175 +#: src/blocks/_pro/outer/edit.js:633 src/blocks/slider-item/edit.js:185 msgid "Background Setting" msgstr "背景設定" -#: src/blocks/_pro/outer/edit.js:438 src/blocks/pr-content/edit.js:67 -#: src/blocks/slider-item/edit.js:179 +#: src/blocks/_pro/outer/edit.js:638 src/blocks/pr-content/edit.js:67 +#: src/blocks/slider-item/edit.js:189 msgid "Color Setting" msgstr "色設定" -#: src/blocks/_pro/outer/edit.js:439 src/blocks/slider-item/edit.js:181 +#: src/blocks/_pro/outer/edit.js:639 src/blocks/slider-item/edit.js:191 msgid "" "Color will overcome background image. If you want to display image, set " "opacity 0." @@ -1723,72 +1800,96 @@ msgstr "" "色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設" "定します。" -#: src/blocks/_pro/outer/edit.js:451 src/blocks/slider-item/edit.js:193 +#: src/blocks/_pro/outer/edit.js:651 src/blocks/slider-item/edit.js:203 msgid "Opacity Setting" msgstr "透過設定" -#: src/blocks/_pro/outer/edit.js:465 src/blocks/slider-item/edit.js:228 +#: src/blocks/_pro/outer/edit.js:665 src/blocks/slider-item/edit.js:238 msgid "Background Image PC" msgstr "背景画像 ( PC )" -#: src/blocks/_pro/outer/edit.js:481 src/blocks/slider-item/edit.js:244 +#: src/blocks/_pro/outer/edit.js:681 src/blocks/slider-item/edit.js:254 msgid "Background Image Tablet" msgstr "背景画像 ( タブレット )" -#: src/blocks/_pro/outer/edit.js:491 src/blocks/slider-item/edit.js:254 +#: src/blocks/_pro/outer/edit.js:691 src/blocks/slider-item/edit.js:264 msgid "Background Image Mobile" msgstr "背景画像 ( モバイル )" -#: src/blocks/_pro/outer/edit.js:501 +#: src/blocks/_pro/outer/edit.js:711 +msgid "(PC)" +msgstr "(PC)" + +#: src/blocks/_pro/outer/edit.js:740 +msgid "(Tablet)" +msgstr "(タブレット)" + +#: src/blocks/_pro/outer/edit.js:759 +msgid "Enable Focal Point" +msgstr "フォーカルポイントを有効にする" + +#: src/blocks/_pro/outer/edit.js:766 +msgid "Focal Point Picker" +msgstr "フォーカルピッカー" + +#: src/blocks/_pro/outer/edit.js:769 +msgid "(Mobile)" +msgstr "(モバイル)" + +#: src/blocks/_pro/outer/edit.js:788 msgid "Background image Position" msgstr "背景画像の位置" -#: src/blocks/_pro/outer/edit.js:509 +#: src/blocks/_pro/outer/edit.js:796 msgid "Repeat" msgstr "リピート" -#: src/blocks/_pro/outer/edit.js:513 +#: src/blocks/_pro/outer/edit.js:800 msgid "Cover" msgstr "カバー" -#: src/blocks/_pro/outer/edit.js:517 +#: src/blocks/_pro/outer/edit.js:804 msgid "Cover fixed (Not fixed on iPhone)" msgstr "カバー 固定(iPhoneでは固定されません)" -#: src/blocks/_pro/outer/edit.js:524 +#: src/blocks/_pro/outer/edit.js:809 +msgid "This will not work on iPhone." +msgstr "" + +#: src/blocks/_pro/outer/edit.js:815 msgid "Parallax (Non-guaranteed)" msgstr "パララックス(非保証)" -#: src/blocks/_pro/outer/edit.js:539 src/blocks/pr-content/edit.js:244 -#: src/blocks/slider-item/edit.js:157 +#: src/blocks/_pro/outer/edit.js:830 src/blocks/pr-content/edit.js:244 +#: src/blocks/slider-item/edit.js:167 msgid "Layout Setting" msgstr "レイアウト設定" -#: src/blocks/_pro/outer/edit.js:552 +#: src/blocks/_pro/outer/edit.js:843 msgid "Fit to the Content area" msgstr "コンテンツエリアに合わせる" -#: src/blocks/_pro/outer/edit.js:559 +#: src/blocks/_pro/outer/edit.js:850 msgid "Add padding to the Outer area" msgstr "アウターエリア内に余白を追加する" -#: src/blocks/_pro/outer/edit.js:566 +#: src/blocks/_pro/outer/edit.js:857 msgid "Remove padding from the Outer area" msgstr "アウターエリア内の余白を無くす" -#: src/blocks/_pro/outer/edit.js:580 +#: src/blocks/_pro/outer/edit.js:871 msgid "Padding (Top and Bottom)" msgstr "余白 (上下)" -#: src/blocks/_pro/outer/edit.js:588 +#: src/blocks/_pro/outer/edit.js:879 msgid "Use default padding" msgstr "標準の余白を使用" -#: src/blocks/_pro/outer/edit.js:595 +#: src/blocks/_pro/outer/edit.js:886 msgid "Do not use default padding" msgstr "標準の余白を使用しない" -#: src/blocks/_pro/outer/edit.js:609 +#: src/blocks/_pro/outer/edit.js:900 msgid "" "* If you select \"Do not use\" that, please set yourself it such as a spacer " "block." @@ -1796,132 +1897,56 @@ msgstr "" "*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してくださ" "い。" -#: src/blocks/_pro/outer/edit.js:617 +#: src/blocks/_pro/outer/edit.js:908 msgid "Divider Setting" msgstr "区切りの設定" -#: src/blocks/_pro/outer/edit.js:622 src/blocks/balloon/edit.js:446 +#: src/blocks/_pro/outer/edit.js:913 src/blocks/balloon/edit.js:446 msgid "Type" msgstr "タイプ" -#: src/blocks/_pro/outer/edit.js:630 +#: src/blocks/_pro/outer/edit.js:921 msgid "Tilt" msgstr "傾斜" -#: src/blocks/_pro/outer/edit.js:634 +#: src/blocks/_pro/outer/edit.js:925 msgid "Curve" msgstr "カーブ" -#: src/blocks/_pro/outer/edit.js:638 +#: src/blocks/_pro/outer/edit.js:929 msgid "Wave" msgstr "波状" -#: src/blocks/_pro/outer/edit.js:642 +#: src/blocks/_pro/outer/edit.js:933 #: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:346 #: inc/vk-blocks/class-vk-blocks-global-settings.php:346 msgid "Triangle" msgstr "三角" -#: src/blocks/_pro/outer/edit.js:646 +#: src/blocks/_pro/outer/edit.js:937 msgid "Large triangle" msgstr "大きい三角" -#: src/blocks/_pro/outer/edit.js:653 +#: src/blocks/_pro/outer/edit.js:944 msgid "Serrated" msgstr "ギザギザ" -#: src/blocks/_pro/outer/edit.js:657 +#: src/blocks/_pro/outer/edit.js:948 msgid "Book" msgstr "本" -#: src/blocks/_pro/outer/edit.js:661 +#: src/blocks/_pro/outer/edit.js:952 msgid "Pyramid" msgstr "ピラミッド" -#: src/blocks/_pro/outer/edit.js:668 +#: src/blocks/_pro/outer/edit.js:959 msgid "Settings for each device" msgstr "デバイス毎の設定" -#: src/blocks/_pro/outer/edit.js:681 +#: src/blocks/_pro/outer/edit.js:972 msgid "Upper Divider Level" msgstr "上部区切りレベル" -#: src/blocks/_pro/outer/edit.js:763 -msgid "Lower Divider Level" -msgstr "下部区切りレベル" - -#: src/blocks/_pro/outer/edit.js:846 -msgid "Border Setting" -msgstr "枠線の設定" - -#: src/blocks/_pro/outer/edit.js:851 -msgid "Border will disappear when divider effect is applied." -msgstr "枠線は区切りレベルを適用すると表示されなくなります。" - -#: src/blocks/_pro/outer/edit.js:857 -msgid "Border type" -msgstr "枠線の種類" - -#: src/blocks/_pro/outer/edit.js:865 src/blocks/_pro/step-item/edit.js:147 -#: src/blocks/_pro/timeline-item/edit.js:113 src/blocks/balloon/edit.js:577 -#: src/blocks/button/edit.js:658 src/blocks/staff/edit.js:177 -msgid "None" -msgstr "なし" - -#: src/blocks/_pro/outer/edit.js:869 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:448 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:448 -msgid "Solid" -msgstr "直線" - -#: src/blocks/_pro/outer/edit.js:873 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:456 -msgid "Dotted" -msgstr "点線" - -#: src/blocks/_pro/outer/edit.js:877 -#: 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 "Dashed" -msgstr "Dashed" - -#: src/blocks/_pro/outer/edit.js:881 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:464 -msgid "Double" -msgstr "二重線" - -#: src/blocks/_pro/outer/edit.js:885 -msgid "Groove" -msgstr "Groove" - -#: src/blocks/_pro/outer/edit.js:889 -msgid "Ridge" -msgstr "Ridge" - -#: src/blocks/_pro/outer/edit.js:893 -msgid "Inset" -msgstr "Inset" - -#: src/blocks/_pro/outer/edit.js:897 -msgid "Outset" -msgstr "Outset" - -#: src/blocks/_pro/outer/edit.js:909 -msgid "Border width" -msgstr "枠線の幅" - -#: src/blocks/_pro/outer/edit.js:921 src/blocks/icon-outer/edit.js:212 -#: src/blocks/icon/edit.js:203 -msgid "Border radius" -msgstr "枠線のRの大きさ" - -#: src/blocks/_pro/outer/edit.js:937 -msgid "Container Inner Side Space Setting" -msgstr "コンテナ内側のスペース設定" - #: src/blocks/_pro/post-category-badge/edit.js:108 #: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:135 #: inc/vk-blocks/admin/admin.php:135 @@ -2146,7 +2171,7 @@ msgid "New Badge" msgstr "新着バッジ" #: src/blocks/_pro/select-post-list-item/edit.js:34 -#: src/blocks/page-content/edit.js:38 +#: src/blocks/page-content/edit.js:59 msgid "Because no post is selected, The block Will not render" msgstr "ページが選択されていないためこのブロックはレンダリングされません" @@ -2162,7 +2187,7 @@ msgstr "例) 午前 6:00" #: src/blocks/_pro/step-item/edit.js:108 #: src/blocks/_pro/table-of-contents-new/edit.js:114 #: src/blocks/_pro/timeline-item/edit.js:74 src/blocks/icon-outer/edit.js:229 -#: src/blocks/icon/edit.js:218 +#: src/blocks/icon/edit.js:220 msgid "Style" msgstr "スタイル" @@ -2724,7 +2749,7 @@ msgid "After text" msgstr "文字の後" #: src/blocks/button/edit.js:796 src/blocks/icon-outer/edit.js:89 -#: src/blocks/icon/edit.js:84 +#: src/blocks/icon/edit.js:86 msgid "Size" msgstr "サイズ" @@ -2836,7 +2861,7 @@ msgstr "このブロック全体の下部の余白 (rem)" msgid "Heading Settings" msgstr "見出し設定" -#: src/blocks/heading/edit.js:357 src/blocks/icon/edit.js:327 +#: src/blocks/heading/edit.js:357 src/blocks/icon/edit.js:337 msgid "Icon Color" msgstr "アイコンの色" @@ -2858,15 +2883,15 @@ msgstr "見出しレベルの変更" msgid "Heading %d" msgstr "見出し %d" -#: src/blocks/icon-outer/edit.js:208 src/blocks/icon/edit.js:199 +#: src/blocks/icon-outer/edit.js:208 src/blocks/icon/edit.js:201 msgid "Reset" msgstr "リセット" -#: src/blocks/icon-outer/edit.js:246 src/blocks/icon/edit.js:237 +#: src/blocks/icon-outer/edit.js:246 src/blocks/icon/edit.js:239 msgid "Icon & Frame" msgstr "アイコンと枠" -#: src/blocks/icon-outer/edit.js:254 src/blocks/icon/edit.js:248 +#: src/blocks/icon-outer/edit.js:254 src/blocks/icon/edit.js:250 msgid "Icon only" msgstr "アイコンのみ" @@ -2874,34 +2899,38 @@ msgstr "アイコンのみ" msgid "Icon Common Setting" msgstr "アイコン共通設定" -#: src/blocks/icon/edit.js:287 +#: src/blocks/icon/component.js:160 +msgid "Icon link" +msgstr "アイコンリンク" + +#: src/blocks/icon/edit.js:297 msgid "Icon Setting" msgstr "アイコン設定" -#: src/blocks/icon/edit.js:301 src/blocks/pr-content/edit.js:122 +#: src/blocks/icon/edit.js:311 src/blocks/pr-content/edit.js:122 msgid "Link URL" msgstr "リンクURL" -#: src/blocks/page-content/edit.js:10 src/blocks/staff/edit.js:257 +#: src/blocks/page-content/edit.js:10 +msgid "Private" +msgstr "非公開" + +#: src/blocks/page-content/edit.js:13 +msgid "Password Protected" +msgstr "パスワード保護" + +#: src/blocks/page-content/edit.js:21 src/blocks/staff/edit.js:257 msgid "Unspecified" msgstr "指定しない" -#: src/blocks/page-content/edit.js:59 +#: src/blocks/page-content/edit.js:80 msgid "Page Setting" msgstr "ページ設定" -#: src/blocks/page-content/edit.js:64 +#: src/blocks/page-content/edit.js:85 msgid "Select Page" msgstr "ページを選択" -#: src/blocks/page-content/edit.js:74 -msgid "" -"This block can display private content. Please note that this content will " -"be public even if you set the original page to private." -msgstr "" -"このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に" -"設定してもこのコンテンツは公開されますのでご注意ください。" - #: src/blocks/pr-blocks/edit.js:102 msgid "PR Block1 Setting" msgstr "PR Block1 設定" @@ -2996,23 +3025,24 @@ msgid "Image Border Color" msgstr "画像の線の色" #: src/blocks/slider-item/deprecated/1.76.0/save.js:83 -#: src/blocks/slider-item/save.js:90 +#: src/blocks/slider-item/deprecated/1.94.0/save.js:90 +#: src/blocks/slider-item/save.js:91 msgid "Slider item link" msgstr "スライダーアイテムリンク" -#: src/blocks/slider-item/edit.js:161 +#: src/blocks/slider-item/edit.js:171 msgid "Vertical align" msgstr "縦揃え" -#: src/blocks/slider-item/edit.js:207 +#: src/blocks/slider-item/edit.js:217 msgid "Background Image Size" msgstr "背景画像サイズ" -#: src/blocks/slider-item/edit.js:214 +#: src/blocks/slider-item/edit.js:224 msgid "cover" msgstr "カバー" -#: src/blocks/slider-item/edit.js:218 +#: src/blocks/slider-item/edit.js:228 msgid "repeat" msgstr "リピート" @@ -3187,15 +3217,15 @@ msgstr "プロフィールタイトル" msgid "Profile text" msgstr "プロフィールテキスト" -#: src/blocks/visual-embed/edit.js:143 +#: src/blocks/visual-embed/edit.js:149 msgid "Embed Code Settings" msgstr "埋め込みコードの設定" -#: src/blocks/visual-embed/edit.js:145 +#: src/blocks/visual-embed/edit.js:151 msgid "Embed Code" msgstr "埋め込みコード" -#: src/blocks/visual-embed/edit.js:166 +#: src/blocks/visual-embed/edit.js:172 msgid "" "Please paste the iframe embed code directly. Only iframe tags with allowed " "URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, " @@ -3205,27 +3235,25 @@ msgstr "" "プ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の " "iframe タグのみが許可されます。" -#: src/blocks/visual-embed/edit.js:177 -#, fuzzy -#| msgid "Please enter a title." +#: src/blocks/visual-embed/edit.js:183 msgid "Please enter an iframe embed code." -msgstr "見出しを入力してください。" +msgstr "iframeの埋め込みコードを入力してください。" -#: src/blocks/visual-embed/edit.js:189 +#: src/blocks/visual-embed/edit.js:195 msgid "The provided URL is not allowed. Please use an approved embed source." msgstr "" "指定された URL は許可されていません。承認された埋め込みソースを使用してくださ" "い。" -#: src/blocks/visual-embed/edit.js:196 +#: src/blocks/visual-embed/edit.js:202 msgid "Iframe Width" msgstr "iframeの幅" -#: src/blocks/visual-embed/edit.js:219 +#: src/blocks/visual-embed/edit.js:225 msgid "Iframe Height" msgstr "iframeの高さ" -#: src/blocks/visual-embed/edit.js:243 +#: src/blocks/visual-embed/edit.js:249 msgid "" "Note: These settings are only applicable to iframe tags. Other embed codes " "will not respond to these adjustments." @@ -3233,7 +3261,7 @@ msgstr "" "注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応" "していません。" -#: src/blocks/visual-embed/edit.js:83 +#: src/blocks/visual-embed/edit.js:89 msgid "Only allowed URLs can be embedded." msgstr "許可された URL のみを埋め込むことができます。" @@ -3770,12 +3798,8 @@ msgstr "下 XL" msgid "No wrap" msgstr "No wrap" -#: src/extensions/common/responsive-br/index.js:29 -msgid "Responsive BR" -msgstr "画面サイズ毎の改行 " - #: src/extensions/common/responsive-br/index.js:33 -msgid "Responsive BR " +msgid "Responsive BR" msgstr "画面サイズ毎の改行 " #: src/extensions/core/columns/style.js:176 @@ -3810,27 +3834,39 @@ msgstr "グループリンク" msgid "List Icon Color" msgstr "リストアイコンの色" -#: src/extensions/core/table/style.js:226 +#: src/extensions/core/table/style.js:294 msgid "Table Horizontal Scroll" msgstr "テーブルの水平方向スクロール" -#: src/extensions/core/table/style.js:234 +#: src/extensions/core/table/style.js:307 msgid "Scrollable" msgstr "スクロール" -#: src/extensions/core/table/style.js:241 +#: src/extensions/core/table/style.js:314 msgid "Horizontal Scroll Breakpoint" msgstr "水平スクロールのブレイクポイント" -#: src/extensions/core/table/style.js:248 +#: src/extensions/core/table/style.js:355 +msgid "Table Cell Vertical" +msgstr "テーブルのセルの縦方向" + +#: src/extensions/core/table/style.js:365 +msgid "Cell Vertical" +msgstr "セルを縦方向にする" + +#: src/extensions/core/table/style.js:372 +msgid "Cell Vertical Breakpoint" +msgstr "セルを縦方向にするブレイクポイント" + +#: src/extensions/core/table/style.js:379 msgid "Mobile size" msgstr "モバイル" -#: src/extensions/core/table/style.js:255 +#: src/extensions/core/table/style.js:386 msgid "Tablet size" msgstr "タブレット" -#: src/extensions/core/table/style.js:262 +#: src/extensions/core/table/style.js:393 msgid "PC size" msgstr "PC" @@ -4247,9 +4283,33 @@ msgstr "" msgid "This message only display on the edit screen." msgstr "このメッセージは編集画面でのみ表示されます。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:123 -#: inc/vk-blocks/build/blocks/page-content/index.php:123 -#: src/blocks/page-content/index.php:123 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +msgid "" +"The following posts contain Page Content Blocks referencing non-public pages:" +msgstr "" +"以下のページは非公開のページの参照している固定ページ本文ブロックを使用してい" +"ます" + +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:55 +msgid "" +"From VK Blocks version 1.95.0 onwards, non-public page's content can no " +"longer be displayed.\n" +"If you want to display non-public content in multiple locations, please " +"create it as a Synced pattern(Reusable block) and place it in the desired " +"locations instead of using Page Content block." +msgstr "" +"VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなく" +"なりました。\n" +"もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブ" +"ロック)を作成してこのブロックのかわりに配置してください。" + +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:78 +msgid "Post not found or not public." +msgstr "投稿がないか非公開です" + +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:151 +#: inc/vk-blocks/build/blocks/page-content/index.php:151 +#: src/blocks/page-content/index.php:151 msgid "Edit this area" msgstr "このエリアを編集" @@ -4491,26 +4551,26 @@ msgstr "" "VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しまし" "た。" -#: dist/vk-blocks-pro/vk-blocks.php:316 vk-blocks.php:316 +#: dist/vk-blocks-pro/vk-blocks.php:317 vk-blocks.php:316 msgid "License Key has no registered." msgstr "ライセンスキーが登録されていません。" -#: dist/vk-blocks-pro/vk-blocks.php:321 vk-blocks.php:321 +#: dist/vk-blocks-pro/vk-blocks.php:322 vk-blocks.php:321 msgid "The VK Blocks Pro license is invalid." msgstr "VK Blocks Pro のライセンスが無効です。" -#: dist/vk-blocks-pro/vk-blocks.php:345 vk-blocks.php:345 +#: dist/vk-blocks-pro/vk-blocks.php:346 vk-blocks.php:345 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:355 vk-blocks.php:355 +#: dist/vk-blocks-pro/vk-blocks.php:356 vk-blocks.php:355 msgid "Enter the license key" msgstr "ライセンスキーを入力" -#: dist/vk-blocks-pro/vk-blocks.php:358 vk-blocks.php:358 +#: dist/vk-blocks-pro/vk-blocks.php:359 vk-blocks.php:358 msgid "" "If this display does not disappear even after entering a valid license key, " "re-acquire the update." @@ -4518,10 +4578,37 @@ msgstr "" "有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてく" "ださい。" -#: dist/vk-blocks-pro/vk-blocks.php:359 vk-blocks.php:359 +#: dist/vk-blocks-pro/vk-blocks.php:360 vk-blocks.php:359 msgid "Re-acquisition of updates" msgstr "更新の再取得" +#: inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +#: src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +msgid "" +"The following posts contain Page Content Blocks referencing non-public pages" +msgstr "" +"以下のページは非公開のページの参照している固定ページ本文ブロックを使用してい" +"ます" + +#: inc/vk-blocks/build/blocks/page-content/index.php:55 +#: src/blocks/page-content/index.php:55 +msgid "" +"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or " +"password protected page's content can no longer be displayed.\n" +"If you want to display non-public content in multiple locations, please " +"create it as a Synced pattern(Reusable block) and place it in the desired " +"locations instead of using Page Content block." +msgstr "" +"固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護" +"のコンテンツは表示しないようになりました。\n" +"もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブ" +"ロック)を作成してこのブロックのかわりに配置してください。" + +#: inc/vk-blocks/build/blocks/page-content/index.php:78 +#: src/blocks/page-content/index.php:78 +msgid "Post not found, not public, or password protected" +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" @@ -5390,6 +5477,25 @@ msgid "" "explaining the order." msgstr "順番を説明する時に便利でシンプルなスケジュールなどを表示します。" +#~ msgid "Focal Point Picker (Mobile)" +#~ msgstr "焦点ピッカー(モバイル)" + +#~ msgid "Enable Tablet Focal Point" +#~ msgstr "タブレットでのフォーカルポイントを有効にする" + +#~ msgid "Enable Mobile Focal Point" +#~ msgstr "モバイルでのフォーカルポイントを有効にする" + +#~ msgid "" +#~ "This block can display private content. Please note that this content " +#~ "will be public even if you set the original page to private." +#~ msgstr "" +#~ "このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開" +#~ "に設定してもこのコンテンツは公開されますのでご注意ください。" + +#~ msgid "Responsive BR " +#~ msgstr "画面サイズ毎の改行 " + #~ msgid "Please paste the iframe embed code directly. (e.g., Google Maps)" #~ msgstr "" #~ "iframeタグの埋め込みコードを直接貼り付けてください。(例:Googleマップ)" diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index e65159b34..d905f5736 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -305,7 +305,7 @@ msgstr "" #: src/blocks/_pro/timeline-item/edit.js:71 #: src/blocks/border-box/edit.js:236 #: src/blocks/button/edit.js:677 -#: src/blocks/icon/edit.js:313 +#: src/blocks/icon/edit.js:323 #: src/blocks/staff/edit.js:199 msgid "Color" msgstr "" @@ -323,7 +323,7 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 #: src/blocks/button/edit.js:732 -#: src/blocks/icon/edit.js:318 +#: src/blocks/icon/edit.js:328 msgid "Background Color" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #: src/admin/margin.js:141 #: src/blocks/border-box/edit.js:200 #: src/blocks/icon-outer/edit.js:150 -#: src/blocks/icon/edit.js:142 +#: src/blocks/icon/edit.js:144 msgid "Margin" msgstr "" @@ -552,7 +552,7 @@ msgstr "" #: src/admin/margin.js:51 #: src/blocks/_pro/accordion/edit.js:139 -#: src/blocks/_pro/outer/edit.js:1071 +#: src/blocks/_pro/outer/edit.js:1362 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 @@ -563,7 +563,7 @@ msgstr "" #: src/admin/margin.js:55 #: src/blocks/_pro/accordion/edit.js:122 -#: src/blocks/_pro/outer/edit.js:1055 +#: src/blocks/_pro/outer/edit.js:1346 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 @@ -574,7 +574,7 @@ msgstr "" #: src/admin/margin.js:59 #: src/blocks/_pro/accordion/edit.js:105 -#: src/blocks/_pro/outer/edit.js:1039 +#: src/blocks/_pro/outer/edit.js:1330 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 @@ -861,7 +861,7 @@ msgid "Height" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:178 -#: src/blocks/_pro/outer/edit.js:542 +#: src/blocks/_pro/outer/edit.js:833 #: src/blocks/balloon/edit.js:515 msgid "Width" msgstr "" @@ -1221,7 +1221,7 @@ msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:353 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:283 -#: src/blocks/icon/edit.js:306 +#: src/blocks/icon/edit.js:316 #: src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 #: src/components/link-toolbar/index.js:321 @@ -1409,7 +1409,7 @@ msgid "Padding (Top)" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:151 -#: src/blocks/_pro/outer/edit.js:545 +#: src/blocks/_pro/outer/edit.js:836 msgid "Padding (Left and Right)" msgstr "" @@ -1419,36 +1419,36 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:196 #: src/blocks/_pro/grid-column/edit.js:96 -#: src/blocks/_pro/outer/edit.js:1093 +#: src/blocks/_pro/outer/edit.js:1384 #: src/blocks/icon-outer/edit.js:183 -#: src/blocks/icon/edit.js:174 +#: src/blocks/icon/edit.js:176 #: src/utils/unit-options.js:6 msgid "px" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:197 #: src/blocks/_pro/grid-column/edit.js:100 -#: src/blocks/_pro/outer/edit.js:1097 +#: src/blocks/_pro/outer/edit.js:1388 #: src/blocks/icon-outer/edit.js:187 -#: src/blocks/icon/edit.js:178 +#: src/blocks/icon/edit.js:180 #: src/utils/unit-options.js:10 msgid "em" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:198 #: src/blocks/_pro/grid-column/edit.js:104 -#: src/blocks/_pro/outer/edit.js:1101 +#: src/blocks/_pro/outer/edit.js:1392 #: src/blocks/icon-outer/edit.js:191 -#: src/blocks/icon/edit.js:182 +#: src/blocks/icon/edit.js:184 #: src/utils/unit-options.js:14 msgid "rem" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:199 #: src/blocks/_pro/grid-column/edit.js:108 -#: src/blocks/_pro/outer/edit.js:1029 +#: src/blocks/_pro/outer/edit.js:1320 #: src/blocks/icon-outer/edit.js:195 -#: src/blocks/icon/edit.js:186 +#: src/blocks/icon/edit.js:188 #: src/utils/unit-options.js:18 msgid "vw" msgstr "" @@ -1629,7 +1629,7 @@ msgstr "" #: src/blocks/border-box/edit.js:272 #: src/blocks/button/edit.js:760 #: src/blocks/heading/edit.js:335 -#: src/blocks/icon/edit.js:290 +#: src/blocks/icon/edit.js:300 #: src/blocks/pr-content/edit.js:212 #: src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 @@ -1646,7 +1646,7 @@ msgstr "" #: src/blocks/_pro/icon-card-item/edit.js:153 #: src/blocks/button/edit.js:606 #: src/blocks/icon-outer/edit.js:238 -#: src/blocks/icon/edit.js:226 +#: src/blocks/icon/edit.js:228 #: src/blocks/pr-blocks/edit.js:285 msgid "Solid color" msgstr "" @@ -1683,256 +1683,281 @@ msgstr "" #: src/blocks/_pro/outer/deprecated/save/1.89.0/save.js:252 #: src/blocks/_pro/outer/deprecated/save/1.92.1/save.js:252 #: src/blocks/_pro/outer/deprecated/save/1.93.0/save.js:258 -#: src/blocks/_pro/outer/save.js:253 +#: src/blocks/_pro/outer/deprecated/save/1.93.2/save.js:252 +#: src/blocks/_pro/outer/save.js:276 msgid "Outer link" msgstr "" -#: src/blocks/_pro/outer/edit.js:1035 +#: src/blocks/_pro/outer/edit.js:1054 +msgid "Lower Divider Level" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1137 +msgid "Border Setting" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1142 +msgid "Border will disappear when divider effect is applied." +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1148 +msgid "Border type" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1156 +#: src/blocks/_pro/step-item/edit.js:147 +#: src/blocks/_pro/timeline-item/edit.js:113 +#: src/blocks/balloon/edit.js:577 +#: src/blocks/button/edit.js:658 +#: src/blocks/staff/edit.js:177 +msgid "None" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1160 +#: src/blocks/_pro/step-item/edit.js:118 +#: src/blocks/_pro/timeline-item/edit.js:88 +#: src/blocks/pr-content/edit.js:145 +msgid "Solid" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1164 +msgid "Dotted" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1168 +msgid "Dashed" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1172 +msgid "Double" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1176 +msgid "Groove" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1180 +msgid "Ridge" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1184 +msgid "Inset" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1188 +msgid "Outset" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1200 +msgid "Border width" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1212 +#: src/blocks/icon-outer/edit.js:212 +#: src/blocks/icon/edit.js:205 +msgid "Border radius" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1228 +msgid "Container Inner Side Space Setting" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1326 msgid "Min Height Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1087 +#: src/blocks/_pro/outer/edit.js:1378 #: src/components/advanced-unit-control/index.js:13 msgid "Unit Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:1105 +#: src/blocks/_pro/outer/edit.js:1396 #: src/utils/unit-options.js:22 msgid "vh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1109 +#: src/blocks/_pro/outer/edit.js:1400 #: src/utils/unit-options.js:26 msgid "svh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1113 +#: src/blocks/_pro/outer/edit.js:1404 #: src/utils/unit-options.js:30 msgid "lvh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1117 +#: src/blocks/_pro/outer/edit.js:1408 #: src/utils/unit-options.js:34 msgid "dvh" msgstr "" -#: src/blocks/_pro/outer/edit.js:433 -#: src/blocks/slider-item/edit.js:175 +#: src/blocks/_pro/outer/edit.js:633 +#: src/blocks/slider-item/edit.js:185 msgid "Background Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:438 +#: src/blocks/_pro/outer/edit.js:638 #: src/blocks/pr-content/edit.js:67 -#: src/blocks/slider-item/edit.js:179 +#: src/blocks/slider-item/edit.js:189 msgid "Color Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:439 -#: src/blocks/slider-item/edit.js:181 +#: src/blocks/_pro/outer/edit.js:639 +#: src/blocks/slider-item/edit.js:191 msgid "" "Color will overcome background image. If you want to display image, set " "opacity 0." msgstr "" -#: src/blocks/_pro/outer/edit.js:451 -#: src/blocks/slider-item/edit.js:193 +#: src/blocks/_pro/outer/edit.js:651 +#: src/blocks/slider-item/edit.js:203 msgid "Opacity Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:465 -#: src/blocks/slider-item/edit.js:228 +#: src/blocks/_pro/outer/edit.js:665 +#: src/blocks/slider-item/edit.js:238 msgid "Background Image PC" msgstr "" -#: src/blocks/_pro/outer/edit.js:481 -#: src/blocks/slider-item/edit.js:244 +#: src/blocks/_pro/outer/edit.js:681 +#: src/blocks/slider-item/edit.js:254 msgid "Background Image Tablet" msgstr "" -#: src/blocks/_pro/outer/edit.js:491 -#: src/blocks/slider-item/edit.js:254 +#: src/blocks/_pro/outer/edit.js:691 +#: src/blocks/slider-item/edit.js:264 msgid "Background Image Mobile" msgstr "" -#: src/blocks/_pro/outer/edit.js:501 +#: src/blocks/_pro/outer/edit.js:711 +msgid "(PC)" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:740 +msgid "(Tablet)" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:759 +msgid "Enable Focal Point" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:766 +msgid "Focal Point Picker" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:769 +msgid "(Mobile)" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:788 msgid "Background image Position" msgstr "" -#: src/blocks/_pro/outer/edit.js:509 +#: src/blocks/_pro/outer/edit.js:796 msgid "Repeat" msgstr "" -#: src/blocks/_pro/outer/edit.js:513 +#: src/blocks/_pro/outer/edit.js:800 msgid "Cover" msgstr "" -#: src/blocks/_pro/outer/edit.js:517 +#: src/blocks/_pro/outer/edit.js:804 msgid "Cover fixed (Not fixed on iPhone)" msgstr "" -#: src/blocks/_pro/outer/edit.js:524 +#: src/blocks/_pro/outer/edit.js:809 +msgid "This will not work on iPhone." +msgstr "" + +#: src/blocks/_pro/outer/edit.js:815 msgid "Parallax (Non-guaranteed)" msgstr "" -#: src/blocks/_pro/outer/edit.js:539 +#: src/blocks/_pro/outer/edit.js:830 #: src/blocks/pr-content/edit.js:244 -#: src/blocks/slider-item/edit.js:157 +#: src/blocks/slider-item/edit.js:167 msgid "Layout Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:552 +#: src/blocks/_pro/outer/edit.js:843 msgid "Fit to the Content area" msgstr "" -#: src/blocks/_pro/outer/edit.js:559 +#: src/blocks/_pro/outer/edit.js:850 msgid "Add padding to the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:566 +#: src/blocks/_pro/outer/edit.js:857 msgid "Remove padding from the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:580 +#: src/blocks/_pro/outer/edit.js:871 msgid "Padding (Top and Bottom)" msgstr "" -#: src/blocks/_pro/outer/edit.js:588 +#: src/blocks/_pro/outer/edit.js:879 msgid "Use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:595 +#: src/blocks/_pro/outer/edit.js:886 msgid "Do not use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:609 +#: src/blocks/_pro/outer/edit.js:900 msgid "" "* If you select \"Do not use\" that, please set yourself it such as a " "spacer block." msgstr "" -#: src/blocks/_pro/outer/edit.js:617 +#: src/blocks/_pro/outer/edit.js:908 msgid "Divider Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:622 +#: src/blocks/_pro/outer/edit.js:913 #: src/blocks/balloon/edit.js:446 msgid "Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:630 +#: src/blocks/_pro/outer/edit.js:921 msgid "Tilt" msgstr "" -#: src/blocks/_pro/outer/edit.js:634 +#: src/blocks/_pro/outer/edit.js:925 msgid "Curve" msgstr "" -#: src/blocks/_pro/outer/edit.js:638 +#: src/blocks/_pro/outer/edit.js:929 msgid "Wave" msgstr "" -#: src/blocks/_pro/outer/edit.js:642 +#: src/blocks/_pro/outer/edit.js:933 msgid "Triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:646 +#: src/blocks/_pro/outer/edit.js:937 msgid "Large triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:653 +#: src/blocks/_pro/outer/edit.js:944 msgid "Serrated" msgstr "" -#: src/blocks/_pro/outer/edit.js:657 +#: src/blocks/_pro/outer/edit.js:948 msgid "Book" msgstr "" -#: src/blocks/_pro/outer/edit.js:661 +#: src/blocks/_pro/outer/edit.js:952 msgid "Pyramid" msgstr "" -#: src/blocks/_pro/outer/edit.js:668 +#: src/blocks/_pro/outer/edit.js:959 msgid "Settings for each device" msgstr "" -#: src/blocks/_pro/outer/edit.js:681 +#: src/blocks/_pro/outer/edit.js:972 msgid "Upper Divider Level" msgstr "" -#: src/blocks/_pro/outer/edit.js:763 -msgid "Lower Divider Level" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:846 -msgid "Border Setting" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:851 -msgid "Border will disappear when divider effect is applied." -msgstr "" - -#: src/blocks/_pro/outer/edit.js:857 -msgid "Border type" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:865 -#: src/blocks/_pro/step-item/edit.js:147 -#: src/blocks/_pro/timeline-item/edit.js:113 -#: src/blocks/balloon/edit.js:577 -#: src/blocks/button/edit.js:658 -#: src/blocks/staff/edit.js:177 -msgid "None" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:869 -#: src/blocks/_pro/step-item/edit.js:118 -#: src/blocks/_pro/timeline-item/edit.js:88 -#: src/blocks/pr-content/edit.js:145 -msgid "Solid" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:873 -msgid "Dotted" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:877 -msgid "Dashed" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:881 -msgid "Double" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:885 -msgid "Groove" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:889 -msgid "Ridge" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:893 -msgid "Inset" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:897 -msgid "Outset" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:909 -msgid "Border width" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:921 -#: src/blocks/icon-outer/edit.js:212 -#: src/blocks/icon/edit.js:203 -msgid "Border radius" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:937 -msgid "Container Inner Side Space Setting" -msgstr "" - #: src/blocks/_pro/post-category-badge/edit.js:108 msgid "Setting" msgstr "" @@ -2162,7 +2187,7 @@ msgid "New Badge" msgstr "" #: src/blocks/_pro/select-post-list-item/edit.js:34 -#: src/blocks/page-content/edit.js:38 +#: src/blocks/page-content/edit.js:59 msgid "Because no post is selected, The block Will not render" msgstr "" @@ -2179,7 +2204,7 @@ msgstr "" #: src/blocks/_pro/table-of-contents-new/edit.js:114 #: src/blocks/_pro/timeline-item/edit.js:74 #: src/blocks/icon-outer/edit.js:229 -#: src/blocks/icon/edit.js:218 +#: src/blocks/icon/edit.js:220 msgid "Style" msgstr "" @@ -2735,7 +2760,7 @@ msgstr "" #: src/blocks/button/edit.js:796 #: src/blocks/icon-outer/edit.js:89 -#: src/blocks/icon/edit.js:84 +#: src/blocks/icon/edit.js:86 msgid "Size" msgstr "" @@ -2855,7 +2880,7 @@ msgid "Heading Settings" msgstr "" #: src/blocks/heading/edit.js:357 -#: src/blocks/icon/edit.js:327 +#: src/blocks/icon/edit.js:337 msgid "Icon Color" msgstr "" @@ -2877,17 +2902,17 @@ msgid "Heading %d" msgstr "" #: src/blocks/icon-outer/edit.js:208 -#: src/blocks/icon/edit.js:199 +#: src/blocks/icon/edit.js:201 msgid "Reset" msgstr "" #: src/blocks/icon-outer/edit.js:246 -#: src/blocks/icon/edit.js:237 +#: src/blocks/icon/edit.js:239 msgid "Icon & Frame" msgstr "" #: src/blocks/icon-outer/edit.js:254 -#: src/blocks/icon/edit.js:248 +#: src/blocks/icon/edit.js:250 msgid "Icon only" msgstr "" @@ -2895,34 +2920,40 @@ msgstr "" msgid "Icon Common Setting" msgstr "" -#: src/blocks/icon/edit.js:287 +#: src/blocks/icon/component.js:160 +msgid "Icon link" +msgstr "" + +#: src/blocks/icon/edit.js:297 msgid "Icon Setting" msgstr "" -#: src/blocks/icon/edit.js:301 +#: src/blocks/icon/edit.js:311 #: src/blocks/pr-content/edit.js:122 msgid "Link URL" msgstr "" #: src/blocks/page-content/edit.js:10 +msgid "Private" +msgstr "" + +#: src/blocks/page-content/edit.js:13 +msgid "Password Protected" +msgstr "" + +#: src/blocks/page-content/edit.js:21 #: src/blocks/staff/edit.js:257 msgid "Unspecified" msgstr "" -#: src/blocks/page-content/edit.js:59 +#: src/blocks/page-content/edit.js:80 msgid "Page Setting" msgstr "" -#: src/blocks/page-content/edit.js:64 +#: src/blocks/page-content/edit.js:85 msgid "Select Page" msgstr "" -#: src/blocks/page-content/edit.js:74 -msgid "" -"This block can display private content. Please note that this content will " -"be public even if you set the original page to private." -msgstr "" - #: src/blocks/pr-blocks/edit.js:102 msgid "PR Block1 Setting" msgstr "" @@ -3017,23 +3048,24 @@ msgid "Image Border Color" msgstr "" #: src/blocks/slider-item/deprecated/1.76.0/save.js:83 -#: src/blocks/slider-item/save.js:90 +#: src/blocks/slider-item/deprecated/1.94.0/save.js:90 +#: src/blocks/slider-item/save.js:91 msgid "Slider item link" msgstr "" -#: src/blocks/slider-item/edit.js:161 +#: src/blocks/slider-item/edit.js:171 msgid "Vertical align" msgstr "" -#: src/blocks/slider-item/edit.js:207 +#: src/blocks/slider-item/edit.js:217 msgid "Background Image Size" msgstr "" -#: src/blocks/slider-item/edit.js:214 +#: src/blocks/slider-item/edit.js:224 msgid "cover" msgstr "" -#: src/blocks/slider-item/edit.js:218 +#: src/blocks/slider-item/edit.js:228 msgid "repeat" msgstr "" @@ -3202,44 +3234,44 @@ msgstr "" msgid "Profile text" msgstr "" -#: src/blocks/visual-embed/edit.js:148 +#: src/blocks/visual-embed/edit.js:149 msgid "Embed Code Settings" msgstr "" -#: src/blocks/visual-embed/edit.js:150 +#: src/blocks/visual-embed/edit.js:151 msgid "Embed Code" msgstr "" -#: src/blocks/visual-embed/edit.js:171 +#: src/blocks/visual-embed/edit.js:172 msgid "" "Please paste the iframe embed code directly. Only iframe tags with allowed " "URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, " "Vimeo) are permitted." msgstr "" -#: src/blocks/visual-embed/edit.js:182 +#: src/blocks/visual-embed/edit.js:183 msgid "Please enter an iframe embed code." msgstr "" -#: src/blocks/visual-embed/edit.js:194 +#: src/blocks/visual-embed/edit.js:195 msgid "The provided URL is not allowed. Please use an approved embed source." msgstr "" -#: src/blocks/visual-embed/edit.js:201 +#: src/blocks/visual-embed/edit.js:202 msgid "Iframe Width" msgstr "" -#: src/blocks/visual-embed/edit.js:224 +#: src/blocks/visual-embed/edit.js:225 msgid "Iframe Height" msgstr "" -#: src/blocks/visual-embed/edit.js:248 +#: src/blocks/visual-embed/edit.js:249 msgid "" "Note: These settings are only applicable to iframe tags. Other embed codes " "will not respond to these adjustments." msgstr "" -#: src/blocks/visual-embed/edit.js:88 +#: src/blocks/visual-embed/edit.js:89 msgid "Only allowed URLs can be embedded." msgstr "" @@ -3756,12 +3788,8 @@ msgstr "" msgid "No wrap" msgstr "" -#: src/extensions/common/responsive-br/index.js:29 -msgid "Responsive BR" -msgstr "" - #: src/extensions/common/responsive-br/index.js:33 -msgid "Responsive BR " +msgid "Responsive BR" msgstr "" #: src/extensions/core/columns/style.js:176 @@ -3794,27 +3822,39 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:226 +#: src/extensions/core/table/style.js:294 msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:234 +#: src/extensions/core/table/style.js:307 msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:241 +#: src/extensions/core/table/style.js:314 msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:248 +#: src/extensions/core/table/style.js:355 +msgid "Table Cell Vertical" +msgstr "" + +#: src/extensions/core/table/style.js:365 +msgid "Cell Vertical" +msgstr "" + +#: src/extensions/core/table/style.js:372 +msgid "Cell Vertical Breakpoint" +msgstr "" + +#: src/extensions/core/table/style.js:379 msgid "Mobile size" msgstr "" -#: src/extensions/core/table/style.js:255 +#: src/extensions/core/table/style.js:386 msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:262 +#: src/extensions/core/table/style.js:393 msgid "PC size" msgstr "" diff --git a/languages/vk-blocks-pro.l10n.php b/languages/vk-blocks-pro.l10n.php index 357a3af90..95b531852 100644 --- a/languages/vk-blocks-pro.l10n.php +++ b/languages/vk-blocks-pro.l10n.php @@ -1,3 +1,6 @@ 'vk-blocks-pro','plural-forms'=>NULL,'language'=>'','project-id-version'=>'VK Blocks Pro 1.56.0.0','pot-creation-date'=>'2023-06-02T07:05:03+00:00','po-revision-date'=>'YEAR-MO-DA HO:MI+ZONE','x-generator'=>'Poedit 3.3.1','messages'=>['Save Success'=>' -develop:languages/vk-blocks-pro.po']]; \ No newline at end of file +return ['domain'=>'vk-blocks-pro','plural-forms'=>NULL,'messages'=>['Added balloon image setting'=>'','Balloon Image Setting'=>'','Would you like to delete %s?'=>'','Cancel'=>'','Delete'=>'','Select'=>'','Balloon Image Name'=>'','Balloon Setting'=>'','Balloon Border Width Setting'=>'','1px'=>'','2px'=>'','3px'=>'','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)'=>'','This will be the CSS class name following is-style-.'=>'','(e.g.) %s-block-style'=>'','Custom Block Style Setting'=>'','Block style settings can be registered.'=>'','Target block'=>'','CSS class'=>'','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.'=>'','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'=>'','Show Custom CSS flag in editor'=>'','Add Custom Format'=>'','CSS class/unique ID (Required/Unchangeable)'=>'','(e.g.) 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'=>'','If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.'=>'','Example:'=>'','Custom Format Setting'=>'','You can apply commonly used formatting on the block toolbar.'=>'','Toolbar title'=>'','Preview Text'=>'','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'','License key'=>'','Load Separate Setting'=>'','Note that the order in which CSS/JS are loaded will change.'=>'','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.'=>'','ex)'=>'','Margin'=>'','XS'=>'','S'=>'','M'=>'','L'=>'','XL'=>'','PC'=>'','Tablet'=>'','Mobile'=>'','Common Margin Setting'=>'','Please specify the size of the common margin used for responsive spacers, etc.'=>'','Unit'=>'','FAQ Block Setting'=>'','Disable accordion'=>'','Enable accordion and default open'=>'','Enable accordion and default close'=>'','Save setting'=>'','Save Success'=>' +develop:languages/vk-blocks-pro.po','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'=>'','Trembling 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'=>'','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.'=>'','Button text'=>'','Image Height'=>'','Slide Height for each device.'=>'','There are no Page.'=>'','Display conditions'=>'','Parent'=>'','Ignore this post'=>'','Current page'=>'','Please select display element from the Setting sidebar.'=>'','Post Type Name'=>'','Ancestor Page Title'=>'','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'=>'','Hide on Ancestor Hierarchy Pages'=>'','This block will not display on pages other than pages that have a parent hierarchy.'=>'','HTML element'=>'','div (default)'=>'','h1'=>'','h2'=>'','h3'=>'','h4'=>'','h5'=>'','h6'=>'','p'=>'','span'=>'','Color Settings'=>'','Margin setting inside the item'=>'','Padding (Top)'=>'','Padding (Left and Right)'=>'','Padding (Bottom)'=>'','px'=>'','em'=>'','rem'=>'','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'=>'','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:'=>'','Open link new tab.'=>'','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.'=>'','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.'=>'','Column min width (Mobile)'=>'','Column min width (Tablet / Optional)'=>'','Column min width (PC / Optional)'=>'','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.'=>'','Opacity Setting'=>'','Background Image PC'=>'','Background Image Tablet'=>'','Background Image Mobile'=>'','Background image Position'=>'','Repeat'=>'','Cover'=>'','Cover fixed (Not fixed on 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'=>'','Double'=>'','Groove'=>'','Ridge'=>'','Inset'=>'','Outset'=>'','Border width'=>'','Border radius'=>'','Container Inner Side Space Setting'=>'','Unit Type'=>'','Filter by %s'=>'','Filter by PostTypes'=>'','Taxonomy filter condition'=>'','OR ( Whichever apply )'=>'','AND ( All apply )'=>'','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'=>'','Ex,6:00AM'=>'','Style +develop:languages/vk-blocks-pro.po'=>'','Outlined'=>'','Default'=>'','Step Mark'=>'','If Font Awesome tags entered, it will overrides the number.'=>'','First Dot Number'=>'','Tab Color Setting'=>'','Tab Color'=>'','Body Layout Setting'=>'','Padding of Tab Body'=>'','Tab Item'=>'','Tab Label [ %s ]'=>'','Tab size Setting'=>'','Tab Size ( Smart Phone )'=>'','Tab Size ( Tablet )'=>'','Tab Size ( PC )'=>'','Fit to the text'=>'','Monospaced'=>'','Padding Setting Mode'=>'','Separate'=>'','Tab 01'=>'','Bundle'=>'','Tab 02'=>'','Tab'=>'','Normal No Frame'=>'','Line'=>'','Line No Frame'=>'','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.'=>'','Display type'=>'','No frame'=>'','Default Display Status'=>'','OPEN'=>'','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'=>'','Info'=>'','Warning'=>'','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'=>'','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'=>'','Circle'=>'','100%'=>'','Background color of speech balloon'=>'','Default Icon Setting'=>'','You can register default icons from Settings > VK Blocks in Admin.'=>'','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.'=>'','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'=>'','Button Width:'=>'','25%'=>'','50%'=>'','75%'=>'','Button Style:'=>'','Text only'=>'','If you select "No background", that you need to select a Custom Color.'=>'','Button Effect:'=>'','Shine'=>'','Default Color (Bootstrap)'=>'','Primary'=>'','Secondary'=>'','Light'=>'','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'=>'','You can be collapsing this block at VK Blocks Pro'=>'','Accordion Setting'=>'','Please enter a question.'=>'','Bgfill Circle'=>'','Bgfill Square'=>'','Bgfill Rounded'=>'','Border Circle'=>'','Border Square'=>'','Border Rounded'=>'','Display of arrow'=>'','Arrow display'=>'','Arrow hidden'=>'','Input title'=>'','Input content'=>'','Input sub text…'=>'','Input title…'=>'','Heading style'=>'','Plain'=>'','Margin Setting'=>'','Margin between Heading and sub text (rem)'=>'','Margin bottom size of after this block (rem)'=>'','Heading Settings'=>'','Icon Color'=>'','Sub Text Settings'=>'','Text size (rem)'=>'','Change heading level'=>'','Heading %d'=>'','Reset'=>'','Icon & Frame'=>'','Icon only'=>'','Icon Common Setting'=>'','Icon Setting'=>'','Link 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'=>'','Icon 1'=>'','When you have an image. Image is displayed with priority'=>'','PR Image 1'=>'','PR Block2 Setting'=>'','Icon 2'=>'','PR Image 2'=>'','PR Block3 Setting'=>'','Icon 3'=>'','When you have an image. Image is displayed with priority.'=>'','PR Image 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"'=>'','The decimal point can be set for the display number only when the display is switched one by one.'=>'','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.'=>'','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'=>'','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'=>'','margin-top'=>'','margin-bottom'=>'','Space Type'=>'','Custom'=>'','You can change each common margin size from Setting > VK Blocks'=>'','Height for each device.'=>'','Spacer Settings'=>'','Medium'=>'','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.'=>'','There is an error with your CSS structure.'=>'','Card (Image Round)'=>'','Card'=>'','Card (No border)'=>'','Card (Intext)'=>'','Card (Horizontal)'=>'','Media'=>'','Text 1 Column'=>'','Display type and columns'=>'','Column ( Screen size : Extra large )'=>'','Column ( Screen size : XX large )'=>'','Column ( Screen size : Extra small )'=>'','Column ( Screen size : Small )'=>'','Column ( Screen size : Medium )'=>'','Column ( Screen size : 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'=>'','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.'=>'','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.'=>'','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.'=>'','Hidden ( Screen size : all )'=>'','Hidden ( Screen size : xs )'=>'','Hidden ( Screen size : sm )'=>'','Hidden ( Screen size : md )'=>'','Hidden ( Screen size : lg )'=>'','Hidden ( Screen size : xl )'=>'','Hidden ( Screen size : 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'=>'','Margin the block'=>'','Top L'=>'','Top M'=>'','Top S'=>'','Top XS'=>'','Top 0'=>'','Bottom 0'=>'','Bottom XS'=>'','Bottom S'=>'','Bottom M'=>'','Bottom L'=>'','Bottom XL'=>'','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.'=>'','List Icon Color'=>'','Theoretical Physicist'=>'','Profile'=>'','Albert Einstein'=>'','14 March 1879 – 18 April 1955'=>'','Lorem ipsum dolor'=>'','Lorem ipsum'=>'','Font Awesome icon list'=>'','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.'=>'','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'=>'','https://github.com/vektor-inc/vk-blocks'=>'','This is a plugin that extends Block Editor.'=>'','Vektor,Inc.'=>'','https://vektor-inc.co.jp'=>'','We\'ve released 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.'=>'','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'','See more'=>'','Dismiss this notice'=>'','Setting saved.'=>'','Install Required Plugins'=>'','Install Plugins'=>'','Installing Plugin: %s'=>'','Something went wrong with the plugin API.'=>'','This plugin requires the following plugin: %1$s.'=>'' . "\0" . '','This plugin recommends the following plugin: %1$s.
    Many additional functions are available for free.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'' . "\0" . '','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'' . "\0" . '','There is an update available for: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'' . "\0" . '','The following required plugin is currently inactive: %1$s.'=>'' . "\0" . '','The following recommended plugin is currently inactive: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'' . "\0" . '','Begin installing plugin'=>'' . "\0" . '','Begin updating plugin'=>'' . "\0" . '','Begin activating plugin'=>'' . "\0" . '','Return to Required Plugins Installer'=>'','Plugin activated successfully.'=>'','The following plugin was activated successfully:'=>'','No action taken. Plugin %1$s was already active.'=>'','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'','All plugins installed and activated successfully. %1$s'=>'','Please contact the administrator of this site for help.'=>'','Sorry, there is no post'=>'','Vektor WordPress Information'=>'','Enable accordion and default open '=>'','Enable accordion and default close '=>'','FAQ Setting'=>'','If you change image or name that please click Save Changes button.'=>'','Enter a valid Lightning G3 Pro Pack or Lightning Pro license key.'=>'','Load Separete Setting'=>'','Load Separete Option on'=>'','Blocks setting'=>'','label in admin menuBlocks'=>'','Blocks Setting'=>'','License Key'=>'','Balloon Block Setting'=>'','Setting'=>'','Edit this area'=>'','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.'=>'','Please select year'=>'','Please select month'=>'','Please select taxonomy'=>'','Categories'=>'','All of %s'=>'','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'=>'','Photo frame'=>'','Photo frame Tilt Right'=>'','Photo frame Tilt Left'=>'','Shadow'=>'','Wave01'=>'','Wave02'=>'','Wave03'=>'','Wave04'=>'','Solid Roundcorner'=>'','Stitch'=>'','Post'=>'','There are no %ss.'=>'','Read more'=>'','New!!'=>'','More'=>'','Posts navigation'=>'','Posts'=>'','Page'=>'','Card Noborder'=>'','Card Intext'=>'','Card Horizontal'=>'','post list typeText 1 Column'=>'','CSS Optimize ( Speed up ) Settings'=>'','Tree shaking'=>'','Tree shaking activation settings'=>'','Output only the main CSS of the page inline'=>'','Nothing to do'=>'','Active Tree shaking (Recomend)'=>'','Exclude class of Tree shaking'=>'','If you choose "Active Tree shaking" that delete the useless css.If you using active css class that please fill in class name. Ex) btn-active,slide-active,scrolled'=>'','Preload CSS'=>'','Preload CSS activation settings'=>'','Preload css except for critical css'=>'','Active Preload CSS (Recomend)'=>'','Exclude class of Preload CSS'=>'','If you choose "Active Preload CSS" that css load timing was changed.If you have any do not want to preload css file that please fill in handle(id) name. Ex) pluginname_a-style,pluginname_b-css'=>'','Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.'=>'','License Key has no registered.'=>'','The VK Blocks Pro license is invalid.'=>'','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'=>'','VK Blocks '=>'','Please enter a valid license key for any of the following products on the settings screen.'=>'','block titleAlert'=>'','block descriptionA colored box with four statuses, including annotations and alerts.'=>'','block titlePage list from ancestor'=>'','block descriptionDisplay Page list from ancestor page'=>'','block titleBallon'=>'','block descriptionThese speech balloons are perfect for recreating conversations.'=>'','block titleBorder Box'=>'','block descriptionThis is a border box where you can place headings to attract attention.'=>'','block titleButton'=>'','block descriptionA button link that can display icons before and after.'=>'','block titleClassic FAQ'=>'','block descriptionDisplays a combination of questions and answers.'=>'','block titleFAQ Answer'=>'','block descriptionAnswer area where you can add blocks freely.'=>'','block titleFAQ Question'=>'','block descriptionQuestion area where you can freely add blocks.'=>'','block titleNew FAQ'=>'','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'','block titleFlow'=>'','block descriptionDisplays a sequential description in time series.'=>'','block titleHeading'=>'','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'','block titleIcon Outer'=>'','block descriptionDisplay the Font Awesome icons horizontally.'=>'','block titleIcon'=>'','block descriptionDisplay icons with Font Awesome.'=>'','block titlePage Content'=>'','block descriptionDisplays the body content of the specified parent page.'=>'','block titlePR Blocks (not recommended)'=>'','block descriptionThis 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.'=>'','block titlePR Content'=>'','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'','block titleSlider Item'=>'','block descriptionThis is one item in the slider.'=>'','block titleSlider'=>'','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'','block titleResponsive Spacer'=>'','block descriptionUse responsive spacers to get the margins right.'=>'','block titleStaff'=>'','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'','block titleAccordion Target'=>'','block descriptionThis is the content area where you can add blocks freely.'=>'','block titleAccordion Trigger'=>'','block descriptionThis is the title area where you can freely add blocks.'=>'','block titleAccordion'=>'','block descriptionCollapses and hides content when the content is long.'=>'','block titleAnimation'=>'','block descriptionAdd animation to elements when scrolling the page.'=>'','block titleArchive list'=>'','block descriptionDisplays a list of archives'=>'','block titleBreadcrumb'=>'','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'','block titleButton Outer'=>'','block descriptionDisplay the VK Button block horizontally.'=>'','block titleCard Item'=>'','block descriptionA single item in a card block.'=>'','block titleCard'=>'','block descriptionA card where you can place images, headings, text, and links.'=>'','block titleChild page list'=>'','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'','block titleDynamic Text'=>'','block descriptionDisplay dynamic text'=>'','block titleGrid Column Item'=>'','block descriptionOne item in a grit column block.'=>'','block titleGrid Column'=>'','block descriptionSet the number of columns to be displayed for each screen size.'=>'','block titleGrid Column Card Item Body'=>'','block descriptionBody of Grid Column Card Block Item'=>'','block titleGrid Column Card Item Footer'=>'','block descriptionFooter button area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item header'=>'','block descriptionHeader image area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item'=>'','block descriptionIt is a block of single column of Grid Column Card.'=>'','block titleGrid Column Card'=>'','block descriptionThis block can flexible column layout'=>'','block titleIcon Card Item'=>'','block descriptionThis is one item in an icon card.'=>'','block titleIcon Card'=>'','block descriptionDisplay card with icons, headings, text, and links.'=>'','block titleOuter'=>'','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'','block titlePost list'=>'','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'','block titleSelected Post List Item'=>'','block descriptionA single item in the select post list.'=>'','block titleSelected Post List'=>'','block description +HEAD:inc/vk-blocks/languages/vk-blocks.potDisplays an arbitrarily specified page with the layout of the posting list.'=>'','block descriptionDisplays an arbitrarily specified page with the layout of the posting list. +develop:languages/vk-blocks-pro.po'=>'','block titleStep Item'=>'','block descriptionThis element sets the icon, color, and style of the step mark.'=>'','block titleStep'=>'','block descriptionSet and display step marks, which are useful when explaining the order.'=>'','block titleTable of Contents'=>'','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'','block titleTaxonomy'=>'','block descriptionDisplay Taxnomy List Pulldown'=>'','block titleTimeline Item'=>'','block descriptionThis element sets the label, color, and style of the timeline.'=>'','block titleTimeline'=>'','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>''],'language'=>'','x-generator'=>'Poedit 3.3.1']; \ No newline at end of file diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index effb8743e..3c4abd7f2 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -2,16 +2,16 @@ # This file is distributed under the same license as the VK Blocks Pro plugin. msgid "" msgstr "" -"Project-Id-Version: VK Blocks Pro 1.94.2.0\n" +"Project-Id-Version: VK Blocks Pro 1.94.2.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-01-23T03:46:26+00:00\n" +"POT-Creation-Date: 2025-01-31T12:19:08+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.11.0\n" +"X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -92,6 +92,7 @@ msgid "image" msgstr "" #: src/admin/block-category-position.js:20 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:109 #: inc/vk-blocks/admin/admin.php:109 msgid "Block Category Position Setting" msgstr "" @@ -106,17 +107,20 @@ 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:118 #: inc/vk-blocks/admin/admin.php:118 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:119 #: inc/vk-blocks/admin/admin.php:119 msgid "Block Style Manager Setting" msgstr "" #: src/admin/breadcrumb.js:24 +#: 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 "Breadcrumb Setting" msgstr "" @@ -209,6 +213,7 @@ 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:113 #: inc/vk-blocks/admin/admin.php:113 msgid "Custom Block Style Setting" msgstr "" @@ -252,6 +257,7 @@ 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:16 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:16 msgid "Custom CSS Setting" msgstr "" @@ -315,7 +321,7 @@ msgstr "" #: src/blocks/_pro/timeline-item/edit.js:71 #: src/blocks/border-box/edit.js:236 #: src/blocks/button/edit.js:677 -#: src/blocks/icon/edit.js:313 +#: src/blocks/icon/edit.js:323 #: src/blocks/staff/edit.js:199 msgid "Color" msgstr "" @@ -333,7 +339,7 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 #: src/blocks/button/edit.js:732 -#: src/blocks/icon/edit.js:318 +#: src/blocks/icon/edit.js:328 msgid "Background Color" msgstr "" @@ -362,6 +368,7 @@ 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:112 #: inc/vk-blocks/admin/admin.php:112 msgid "Custom Format Setting" msgstr "" @@ -449,11 +456,13 @@ msgid "Breadcrumb Separator Setting" msgstr "" #: src/admin/import-export/index.js:15 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:107 #: inc/vk-blocks/admin/admin.php:107 msgid "License Key" msgstr "" #: src/admin/import-export/index.js:167 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:120 #: inc/vk-blocks/admin/admin.php:120 msgid "Import Export Tool" msgstr "" @@ -512,7 +521,7 @@ msgstr "" #: src/admin/margin.js:141 #: src/blocks/border-box/edit.js:200 #: src/blocks/icon-outer/edit.js:150 -#: src/blocks/icon/edit.js:142 +#: src/blocks/icon/edit.js:144 msgid "Margin" msgstr "" @@ -553,7 +562,7 @@ msgstr "" #: src/admin/margin.js:51 #: src/blocks/_pro/accordion/edit.js:139 -#: src/blocks/_pro/outer/edit.js:1071 +#: src/blocks/_pro/outer/edit.js:1362 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 @@ -564,7 +573,7 @@ msgstr "" #: src/admin/margin.js:55 #: src/blocks/_pro/accordion/edit.js:122 -#: src/blocks/_pro/outer/edit.js:1055 +#: src/blocks/_pro/outer/edit.js:1346 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 @@ -575,7 +584,7 @@ msgstr "" #: src/admin/margin.js:59 #: src/blocks/_pro/accordion/edit.js:105 -#: src/blocks/_pro/outer/edit.js:1039 +#: src/blocks/_pro/outer/edit.js:1330 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 @@ -585,6 +594,7 @@ msgid "Mobile" msgstr "" #: src/admin/margin.js:72 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:115 #: inc/vk-blocks/admin/admin.php:115 msgid "Common Margin Setting" msgstr "" @@ -676,6 +686,7 @@ msgstr "" #: src/blocks/_pro/accordion/index.js:47 #: src/blocks/heading/edit.js:268 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:304 #: inc/vk-blocks/class-vk-blocks-global-settings.php:304 msgid "Plain" msgstr "" @@ -707,6 +718,7 @@ msgstr "" #: src/blocks/faq/index.js:26 #: src/blocks/faq2/index.js:21 #: src/extensions/common/inline-font-size/inline.js:28 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:522 #: inc/vk-blocks/class-vk-blocks-global-settings.php:522 msgid "Normal" msgstr "" @@ -863,7 +875,7 @@ msgid "Height" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:178 -#: src/blocks/_pro/outer/edit.js:542 +#: src/blocks/_pro/outer/edit.js:833 #: src/blocks/balloon/edit.js:515 msgid "Width" msgstr "" @@ -1100,6 +1112,7 @@ msgid "Post Type Name" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:136 +#: 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 msgid "Ancestor Page Title" @@ -1213,7 +1226,7 @@ msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:353 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:283 -#: src/blocks/icon/edit.js:306 +#: src/blocks/icon/edit.js:316 #: src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 #: src/components/link-toolbar/index.js:321 @@ -1395,7 +1408,7 @@ msgid "Padding (Top)" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:151 -#: src/blocks/_pro/outer/edit.js:545 +#: src/blocks/_pro/outer/edit.js:836 msgid "Padding (Left and Right)" msgstr "" @@ -1405,36 +1418,36 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:196 #: src/blocks/_pro/grid-column/edit.js:96 -#: src/blocks/_pro/outer/edit.js:1093 +#: src/blocks/_pro/outer/edit.js:1384 #: src/blocks/icon-outer/edit.js:183 -#: src/blocks/icon/edit.js:174 +#: src/blocks/icon/edit.js:176 #: src/utils/unit-options.js:6 msgid "px" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:197 #: src/blocks/_pro/grid-column/edit.js:100 -#: src/blocks/_pro/outer/edit.js:1097 +#: src/blocks/_pro/outer/edit.js:1388 #: src/blocks/icon-outer/edit.js:187 -#: src/blocks/icon/edit.js:178 +#: src/blocks/icon/edit.js:180 #: src/utils/unit-options.js:10 msgid "em" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:198 #: src/blocks/_pro/grid-column/edit.js:104 -#: src/blocks/_pro/outer/edit.js:1101 +#: src/blocks/_pro/outer/edit.js:1392 #: src/blocks/icon-outer/edit.js:191 -#: src/blocks/icon/edit.js:182 +#: src/blocks/icon/edit.js:184 #: src/utils/unit-options.js:14 msgid "rem" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:199 #: src/blocks/_pro/grid-column/edit.js:108 -#: src/blocks/_pro/outer/edit.js:1029 +#: src/blocks/_pro/outer/edit.js:1320 #: src/blocks/icon-outer/edit.js:195 -#: src/blocks/icon/edit.js:186 +#: src/blocks/icon/edit.js:188 #: src/utils/unit-options.js:18 msgid "vw" msgstr "" @@ -1543,6 +1556,8 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:317 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:392 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:410 #: inc/vk-blocks/class-vk-blocks-global-settings.php:392 #: inc/vk-blocks/class-vk-blocks-global-settings.php:410 msgid "Border" @@ -1612,7 +1627,7 @@ msgstr "" #: src/blocks/border-box/edit.js:272 #: src/blocks/button/edit.js:760 #: src/blocks/heading/edit.js:335 -#: src/blocks/icon/edit.js:290 +#: src/blocks/icon/edit.js:300 #: src/blocks/pr-content/edit.js:212 #: src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 @@ -1629,7 +1644,7 @@ msgstr "" #: src/blocks/_pro/icon-card-item/edit.js:153 #: src/blocks/button/edit.js:606 #: src/blocks/icon-outer/edit.js:238 -#: src/blocks/icon/edit.js:226 +#: src/blocks/icon/edit.js:228 #: src/blocks/pr-blocks/edit.js:285 msgid "Solid color" msgstr "" @@ -1666,258 +1681,289 @@ msgstr "" #: src/blocks/_pro/outer/deprecated/save/1.89.0/save.js:252 #: src/blocks/_pro/outer/deprecated/save/1.92.1/save.js:252 #: src/blocks/_pro/outer/deprecated/save/1.93.0/save.js:258 -#: src/blocks/_pro/outer/save.js:253 +#: src/blocks/_pro/outer/deprecated/save/1.93.2/save.js:252 +#: src/blocks/_pro/outer/save.js:276 msgid "Outer link" msgstr "" -#: src/blocks/_pro/outer/edit.js:1035 +#: src/blocks/_pro/outer/edit.js:1054 +msgid "Lower Divider Level" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1137 +msgid "Border Setting" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1142 +msgid "Border will disappear when divider effect is applied." +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1148 +msgid "Border type" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1156 +#: src/blocks/_pro/step-item/edit.js:147 +#: src/blocks/_pro/timeline-item/edit.js:113 +#: src/blocks/balloon/edit.js:577 +#: src/blocks/button/edit.js:658 +#: src/blocks/staff/edit.js:177 +msgid "None" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1160 +#: 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:448 +#: inc/vk-blocks/class-vk-blocks-global-settings.php:448 +msgid "Solid" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1164 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 +#: inc/vk-blocks/class-vk-blocks-global-settings.php:456 +msgid "Dotted" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1168 +#: 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 "Dashed" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1172 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 +#: inc/vk-blocks/class-vk-blocks-global-settings.php:464 +msgid "Double" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1176 +msgid "Groove" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1180 +msgid "Ridge" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1184 +msgid "Inset" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1188 +msgid "Outset" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1200 +msgid "Border width" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1212 +#: src/blocks/icon-outer/edit.js:212 +#: src/blocks/icon/edit.js:205 +msgid "Border radius" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1228 +msgid "Container Inner Side Space Setting" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:1326 msgid "Min Height Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1087 +#: src/blocks/_pro/outer/edit.js:1378 #: src/components/advanced-unit-control/index.js:13 msgid "Unit Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:1105 +#: src/blocks/_pro/outer/edit.js:1396 #: src/utils/unit-options.js:22 msgid "vh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1109 +#: src/blocks/_pro/outer/edit.js:1400 #: src/utils/unit-options.js:26 msgid "svh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1113 +#: src/blocks/_pro/outer/edit.js:1404 #: src/utils/unit-options.js:30 msgid "lvh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1117 +#: src/blocks/_pro/outer/edit.js:1408 #: src/utils/unit-options.js:34 msgid "dvh" msgstr "" -#: src/blocks/_pro/outer/edit.js:433 -#: src/blocks/slider-item/edit.js:175 +#: src/blocks/_pro/outer/edit.js:633 +#: src/blocks/slider-item/edit.js:185 msgid "Background Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:438 +#: src/blocks/_pro/outer/edit.js:638 #: src/blocks/pr-content/edit.js:67 -#: src/blocks/slider-item/edit.js:179 +#: src/blocks/slider-item/edit.js:189 msgid "Color Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:439 -#: src/blocks/slider-item/edit.js:181 +#: src/blocks/_pro/outer/edit.js:639 +#: src/blocks/slider-item/edit.js:191 msgid "Color will overcome background image. If you want to display image, set opacity 0." msgstr "" -#: src/blocks/_pro/outer/edit.js:451 -#: src/blocks/slider-item/edit.js:193 +#: src/blocks/_pro/outer/edit.js:651 +#: src/blocks/slider-item/edit.js:203 msgid "Opacity Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:465 -#: src/blocks/slider-item/edit.js:228 +#: src/blocks/_pro/outer/edit.js:665 +#: src/blocks/slider-item/edit.js:238 msgid "Background Image PC" msgstr "" -#: src/blocks/_pro/outer/edit.js:481 -#: src/blocks/slider-item/edit.js:244 +#: src/blocks/_pro/outer/edit.js:681 +#: src/blocks/slider-item/edit.js:254 msgid "Background Image Tablet" msgstr "" -#: src/blocks/_pro/outer/edit.js:491 -#: src/blocks/slider-item/edit.js:254 +#: src/blocks/_pro/outer/edit.js:691 +#: src/blocks/slider-item/edit.js:264 msgid "Background Image Mobile" msgstr "" -#: src/blocks/_pro/outer/edit.js:501 +#: src/blocks/_pro/outer/edit.js:711 +msgid "(PC)" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:740 +msgid "(Tablet)" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:759 +msgid "Enable Focal Point" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:766 +msgid "Focal Point Picker" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:769 +msgid "(Mobile)" +msgstr "" + +#: src/blocks/_pro/outer/edit.js:788 msgid "Background image Position" msgstr "" -#: src/blocks/_pro/outer/edit.js:509 +#: src/blocks/_pro/outer/edit.js:796 msgid "Repeat" msgstr "" -#: src/blocks/_pro/outer/edit.js:513 +#: src/blocks/_pro/outer/edit.js:800 msgid "Cover" msgstr "" -#: src/blocks/_pro/outer/edit.js:517 +#: src/blocks/_pro/outer/edit.js:804 msgid "Cover fixed (Not fixed on iPhone)" msgstr "" -#: src/blocks/_pro/outer/edit.js:524 +#: src/blocks/_pro/outer/edit.js:809 +msgid "This will not work on iPhone." +msgstr "" + +#: src/blocks/_pro/outer/edit.js:815 msgid "Parallax (Non-guaranteed)" msgstr "" -#: src/blocks/_pro/outer/edit.js:539 +#: src/blocks/_pro/outer/edit.js:830 #: src/blocks/pr-content/edit.js:244 -#: src/blocks/slider-item/edit.js:157 +#: src/blocks/slider-item/edit.js:167 msgid "Layout Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:552 +#: src/blocks/_pro/outer/edit.js:843 msgid "Fit to the Content area" msgstr "" -#: src/blocks/_pro/outer/edit.js:559 +#: src/blocks/_pro/outer/edit.js:850 msgid "Add padding to the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:566 +#: src/blocks/_pro/outer/edit.js:857 msgid "Remove padding from the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:580 +#: src/blocks/_pro/outer/edit.js:871 msgid "Padding (Top and Bottom)" msgstr "" -#: src/blocks/_pro/outer/edit.js:588 +#: src/blocks/_pro/outer/edit.js:879 msgid "Use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:595 +#: src/blocks/_pro/outer/edit.js:886 msgid "Do not use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:609 +#: src/blocks/_pro/outer/edit.js:900 msgid "* If you select \"Do not use\" that, please set yourself it such as a spacer block." msgstr "" -#: src/blocks/_pro/outer/edit.js:617 +#: src/blocks/_pro/outer/edit.js:908 msgid "Divider Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:622 +#: src/blocks/_pro/outer/edit.js:913 #: src/blocks/balloon/edit.js:446 msgid "Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:630 +#: src/blocks/_pro/outer/edit.js:921 msgid "Tilt" msgstr "" -#: src/blocks/_pro/outer/edit.js:634 +#: src/blocks/_pro/outer/edit.js:925 msgid "Curve" msgstr "" -#: src/blocks/_pro/outer/edit.js:638 +#: src/blocks/_pro/outer/edit.js:929 msgid "Wave" msgstr "" -#: src/blocks/_pro/outer/edit.js:642 +#: src/blocks/_pro/outer/edit.js:933 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:346 #: inc/vk-blocks/class-vk-blocks-global-settings.php:346 msgid "Triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:646 +#: src/blocks/_pro/outer/edit.js:937 msgid "Large triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:653 +#: src/blocks/_pro/outer/edit.js:944 msgid "Serrated" msgstr "" -#: src/blocks/_pro/outer/edit.js:657 +#: src/blocks/_pro/outer/edit.js:948 msgid "Book" msgstr "" -#: src/blocks/_pro/outer/edit.js:661 +#: src/blocks/_pro/outer/edit.js:952 msgid "Pyramid" msgstr "" -#: src/blocks/_pro/outer/edit.js:668 +#: src/blocks/_pro/outer/edit.js:959 msgid "Settings for each device" msgstr "" -#: src/blocks/_pro/outer/edit.js:681 +#: src/blocks/_pro/outer/edit.js:972 msgid "Upper Divider Level" msgstr "" -#: src/blocks/_pro/outer/edit.js:763 -msgid "Lower Divider Level" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:846 -msgid "Border Setting" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:851 -msgid "Border will disappear when divider effect is applied." -msgstr "" - -#: src/blocks/_pro/outer/edit.js:857 -msgid "Border type" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:865 -#: src/blocks/_pro/step-item/edit.js:147 -#: src/blocks/_pro/timeline-item/edit.js:113 -#: src/blocks/balloon/edit.js:577 -#: src/blocks/button/edit.js:658 -#: src/blocks/staff/edit.js:177 -msgid "None" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:869 -#: src/blocks/_pro/step-item/edit.js:118 -#: src/blocks/_pro/timeline-item/edit.js:88 -#: src/blocks/pr-content/edit.js:145 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:448 -msgid "Solid" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:873 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:456 -msgid "Dotted" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:877 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:460 -msgid "Dashed" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:881 -#: inc/vk-blocks/class-vk-blocks-global-settings.php:464 -msgid "Double" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:885 -msgid "Groove" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:889 -msgid "Ridge" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:893 -msgid "Inset" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:897 -msgid "Outset" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:909 -msgid "Border width" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:921 -#: src/blocks/icon-outer/edit.js:212 -#: src/blocks/icon/edit.js:203 -msgid "Border radius" -msgstr "" - -#: src/blocks/_pro/outer/edit.js:937 -msgid "Container Inner Side Space Setting" -msgstr "" - #: src/blocks/_pro/post-category-badge/edit.js:108 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:135 #: inc/vk-blocks/admin/admin.php:135 msgid "Setting" msgstr "" @@ -2135,7 +2181,7 @@ msgid "New Badge" msgstr "" #: src/blocks/_pro/select-post-list-item/edit.js:34 -#: src/blocks/page-content/edit.js:38 +#: src/blocks/page-content/edit.js:59 msgid "Because no post is selected, The block Will not render" msgstr "" @@ -2152,7 +2198,7 @@ msgstr "" #: src/blocks/_pro/table-of-contents-new/edit.js:114 #: src/blocks/_pro/timeline-item/edit.js:74 #: src/blocks/icon-outer/edit.js:229 -#: src/blocks/icon/edit.js:218 +#: src/blocks/icon/edit.js:220 msgid "Style" msgstr "" @@ -2313,6 +2359,7 @@ msgid "Show hierarchy" msgstr "" #: src/blocks/_pro/taxonomy/edit.js:54 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: src/blocks/_pro/taxonomy/index.php:246 msgid "Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block." @@ -2347,6 +2394,7 @@ msgstr "" #: src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 #: src/blocks/pr-content/edit.js:171 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:484 #: inc/vk-blocks/class-vk-blocks-global-settings.php:484 msgid "Success" msgstr "" @@ -2354,6 +2402,7 @@ msgstr "" #: src/blocks/alert/edit.js:57 #: src/blocks/button/edit.js:696 #: src/blocks/pr-content/edit.js:175 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:480 #: inc/vk-blocks/class-vk-blocks-global-settings.php:480 msgid "Info" msgstr "" @@ -2362,6 +2411,7 @@ msgstr "" #: src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 #: src/blocks/pr-content/edit.js:179 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:488 #: inc/vk-blocks/class-vk-blocks-global-settings.php:488 msgid "Warning" msgstr "" @@ -2370,6 +2420,7 @@ msgstr "" #: src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 #: src/blocks/pr-content/edit.js:183 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:492 #: inc/vk-blocks/class-vk-blocks-global-settings.php:492 msgid "Danger" msgstr "" @@ -2492,6 +2543,7 @@ msgid "Rounded" msgstr "" #: src/blocks/balloon/edit.js:509 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:406 #: inc/vk-blocks/class-vk-blocks-global-settings.php:406 msgid "Circle" msgstr "" @@ -2598,6 +2650,7 @@ msgstr "" #: src/blocks/button/edit.js:338 #: src/extensions/common/inline-font-size/inline.js:23 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:517 #: inc/vk-blocks/class-vk-blocks-global-settings.php:517 msgid "Small" msgstr "" @@ -2704,7 +2757,7 @@ msgstr "" #: src/blocks/button/edit.js:796 #: src/blocks/icon-outer/edit.js:89 -#: src/blocks/icon/edit.js:84 +#: src/blocks/icon/edit.js:86 msgid "Size" msgstr "" @@ -2822,7 +2875,7 @@ msgid "Heading Settings" msgstr "" #: src/blocks/heading/edit.js:357 -#: src/blocks/icon/edit.js:327 +#: src/blocks/icon/edit.js:337 msgid "Icon Color" msgstr "" @@ -2844,17 +2897,17 @@ msgid "Heading %d" msgstr "" #: src/blocks/icon-outer/edit.js:208 -#: src/blocks/icon/edit.js:199 +#: src/blocks/icon/edit.js:201 msgid "Reset" msgstr "" #: src/blocks/icon-outer/edit.js:246 -#: src/blocks/icon/edit.js:237 +#: src/blocks/icon/edit.js:239 msgid "Icon & Frame" msgstr "" #: src/blocks/icon-outer/edit.js:254 -#: src/blocks/icon/edit.js:248 +#: src/blocks/icon/edit.js:250 msgid "Icon only" msgstr "" @@ -2862,32 +2915,40 @@ msgstr "" msgid "Icon Common Setting" msgstr "" -#: src/blocks/icon/edit.js:287 +#: src/blocks/icon/component.js:160 +msgid "Icon link" +msgstr "" + +#: src/blocks/icon/edit.js:297 msgid "Icon Setting" msgstr "" -#: src/blocks/icon/edit.js:301 +#: src/blocks/icon/edit.js:311 #: src/blocks/pr-content/edit.js:122 msgid "Link URL" msgstr "" #: src/blocks/page-content/edit.js:10 +msgid "Private" +msgstr "" + +#: src/blocks/page-content/edit.js:13 +msgid "Password Protected" +msgstr "" + +#: src/blocks/page-content/edit.js:21 #: src/blocks/staff/edit.js:257 msgid "Unspecified" msgstr "" -#: src/blocks/page-content/edit.js:59 +#: src/blocks/page-content/edit.js:80 msgid "Page Setting" msgstr "" -#: src/blocks/page-content/edit.js:64 +#: src/blocks/page-content/edit.js:85 msgid "Select Page" msgstr "" -#: src/blocks/page-content/edit.js:74 -msgid "This block can display private content. Please note that this content will be public even if you set the original page to private." -msgstr "" - #: src/blocks/pr-blocks/edit.js:102 msgid "PR Block1 Setting" msgstr "" @@ -2982,23 +3043,24 @@ msgid "Image Border Color" msgstr "" #: src/blocks/slider-item/deprecated/1.76.0/save.js:83 -#: src/blocks/slider-item/save.js:90 +#: src/blocks/slider-item/deprecated/1.94.0/save.js:90 +#: src/blocks/slider-item/save.js:91 msgid "Slider item link" msgstr "" -#: src/blocks/slider-item/edit.js:161 +#: src/blocks/slider-item/edit.js:171 msgid "Vertical align" msgstr "" -#: src/blocks/slider-item/edit.js:207 +#: src/blocks/slider-item/edit.js:217 msgid "Background Image Size" msgstr "" -#: src/blocks/slider-item/edit.js:214 +#: src/blocks/slider-item/edit.js:224 msgid "cover" msgstr "" -#: src/blocks/slider-item/edit.js:218 +#: src/blocks/slider-item/edit.js:228 msgid "repeat" msgstr "" @@ -3154,39 +3216,39 @@ msgstr "" msgid "Profile text" msgstr "" -#: src/blocks/visual-embed/edit.js:148 +#: src/blocks/visual-embed/edit.js:149 msgid "Embed Code Settings" msgstr "" -#: src/blocks/visual-embed/edit.js:150 +#: src/blocks/visual-embed/edit.js:151 msgid "Embed Code" msgstr "" -#: src/blocks/visual-embed/edit.js:171 +#: src/blocks/visual-embed/edit.js:172 msgid "Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted." msgstr "" -#: src/blocks/visual-embed/edit.js:182 +#: src/blocks/visual-embed/edit.js:183 msgid "Please enter an iframe embed code." msgstr "" -#: src/blocks/visual-embed/edit.js:194 +#: src/blocks/visual-embed/edit.js:195 msgid "The provided URL is not allowed. Please use an approved embed source." msgstr "" -#: src/blocks/visual-embed/edit.js:201 +#: src/blocks/visual-embed/edit.js:202 msgid "Iframe Width" msgstr "" -#: src/blocks/visual-embed/edit.js:224 +#: src/blocks/visual-embed/edit.js:225 msgid "Iframe Height" msgstr "" -#: src/blocks/visual-embed/edit.js:248 +#: src/blocks/visual-embed/edit.js:249 msgid "Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments." msgstr "" -#: src/blocks/visual-embed/edit.js:88 +#: src/blocks/visual-embed/edit.js:89 msgid "Only allowed URLs can be embedded." msgstr "" @@ -3605,11 +3667,13 @@ 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:527 #: inc/vk-blocks/class-vk-blocks-global-settings.php:527 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:532 #: inc/vk-blocks/class-vk-blocks-global-settings.php:532 msgid "Extra big" msgstr "" @@ -3686,12 +3750,8 @@ msgstr "" msgid "No wrap" msgstr "" -#: src/extensions/common/responsive-br/index.js:29 -msgid "Responsive BR" -msgstr "" - #: src/extensions/common/responsive-br/index.js:33 -msgid "Responsive BR " +msgid "Responsive BR" msgstr "" #: src/extensions/core/columns/style.js:176 @@ -3722,31 +3782,44 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:226 +#: src/extensions/core/table/style.js:294 msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:234 +#: src/extensions/core/table/style.js:307 msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:241 +#: src/extensions/core/table/style.js:314 msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:248 +#: src/extensions/core/table/style.js:355 +msgid "Table Cell Vertical" +msgstr "" + +#: src/extensions/core/table/style.js:365 +msgid "Cell Vertical" +msgstr "" + +#: src/extensions/core/table/style.js:372 +msgid "Cell Vertical Breakpoint" +msgstr "" + +#: src/extensions/core/table/style.js:379 msgid "Mobile size" msgstr "" -#: src/extensions/core/table/style.js:255 +#: src/extensions/core/table/style.js:386 msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:262 +#: src/extensions/core/table/style.js:393 msgid "PC size" msgstr "" #: src/extensions/core/table/style.js:41 +#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 #: inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 msgid "You can scroll" msgstr "" @@ -3880,46 +3953,57 @@ 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 "" +#: 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." @@ -3927,6 +4011,7 @@ 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." @@ -3934,6 +4019,7 @@ 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." @@ -3941,6 +4027,7 @@ 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." @@ -3948,6 +4035,7 @@ 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." @@ -3955,6 +4043,7 @@ 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." @@ -3962,6 +4051,7 @@ 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." @@ -3969,6 +4059,7 @@ 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." @@ -3976,6 +4067,7 @@ 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." @@ -3983,934 +4075,1145 @@ 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:83 #: inc/vk-blocks/admin/admin.php:83 msgid "Blocks setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:84 #: 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:100 #: inc/vk-blocks/admin/admin.php:100 msgid "Blocks Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:110 #: inc/vk-blocks/admin/admin.php:110 msgid "Balloon Block Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:116 #: inc/vk-blocks/admin/admin.php:116 msgid "Load Separete Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:27 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:67 #: inc/vk-blocks/blocks.php:27 #: inc/vk-blocks/blocks.php:67 msgid "Blocks Layout" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:40 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:54 #: inc/vk-blocks/blocks.php:40 #: inc/vk-blocks/blocks.php:54 msgid "Blocks" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:81 #: inc/vk-blocks/blocks.php:81 msgid "Deprecated Blocks" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "Dummy Text" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 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:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "This message only display on the edit screen." msgstr "" -#: inc/vk-blocks/build/blocks/page-content/index.php:123 -#: src/blocks/page-content/index.php:123 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +msgid "The following posts contain Page Content Blocks referencing non-public pages:" +msgstr "" + +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:55 +msgid "" +"From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed.\n" +"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block." +msgstr "" + +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:78 +msgid "Post not found or not public." +msgstr "" + +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:151 +#: inc/vk-blocks/build/blocks/page-content/index.php:151 +#: src/blocks/page-content/index.php:151 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/post-category-badge/index.php:101 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:101 #: src/blocks/_pro/post-category-badge/index.php:101 msgid "Category Badge" msgstr "" #. translators: %s: taxonomy's label +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:104 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:104 #: src/blocks/_pro/post-category-badge/index.php:104 msgid "Display a list of assigned terms from the taxonomy: %s" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: src/blocks/_pro/taxonomy/index.php:95 msgid "Please select taxonomy" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: src/blocks/_pro/taxonomy/index.php:110 msgid "Categories" msgstr "" #. translators: +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: src/blocks/_pro/taxonomy/index.php:199 msgid "All of %s" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: src/blocks/_pro/taxonomy/index.php:243 msgid "VK Taxonomy Block" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:308 #: inc/vk-blocks/class-vk-blocks-global-settings.php:308 msgid "Background fill lightgray" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:312 #: inc/vk-blocks/class-vk-blocks-global-settings.php:312 msgid "Double border top and bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:316 #: inc/vk-blocks/class-vk-blocks-global-settings.php:316 msgid "Double border bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:320 #: inc/vk-blocks/class-vk-blocks-global-settings.php:320 msgid "Solid border top and bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:324 #: inc/vk-blocks/class-vk-blocks-global-settings.php:324 msgid "Solid border bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:328 #: inc/vk-blocks/class-vk-blocks-global-settings.php:328 msgid "Dotted border bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:332 #: inc/vk-blocks/class-vk-blocks-global-settings.php:332 msgid "Both ends" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:336 #: inc/vk-blocks/class-vk-blocks-global-settings.php:336 msgid "Brackets black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:342 #: inc/vk-blocks/class-vk-blocks-global-settings.php:342 msgid "Arrow" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:350 #: inc/vk-blocks/class-vk-blocks-global-settings.php:350 msgid "Check" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:354 #: inc/vk-blocks/class-vk-blocks-global-settings.php:354 msgid "Check Square" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:358 #: inc/vk-blocks/class-vk-blocks-global-settings.php:358 msgid "Check Circle" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:362 #: inc/vk-blocks/class-vk-blocks-global-settings.php:362 msgid "Handpoint" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:366 #: inc/vk-blocks/class-vk-blocks-global-settings.php:366 msgid "Pencil" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:370 #: inc/vk-blocks/class-vk-blocks-global-settings.php:370 msgid "Smile" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:374 #: inc/vk-blocks/class-vk-blocks-global-settings.php:374 msgid "Frown" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:378 #: inc/vk-blocks/class-vk-blocks-global-settings.php:378 msgid "Numbered Circle" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:382 #: inc/vk-blocks/class-vk-blocks-global-settings.php:382 msgid "Numbered Square" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:388 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:472 #: inc/vk-blocks/class-vk-blocks-global-settings.php:388 #: inc/vk-blocks/class-vk-blocks-global-settings.php:472 msgid "Border Top Bottom" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:396 #: inc/vk-blocks/class-vk-blocks-global-settings.php:396 msgid "Border / Stripes" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:402 #: inc/vk-blocks/class-vk-blocks-global-settings.php:402 msgid "Rounded02" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:414 #: inc/vk-blocks/class-vk-blocks-global-settings.php:414 msgid "Photo frame" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:418 #: inc/vk-blocks/class-vk-blocks-global-settings.php:418 msgid "Photo frame Tilt Right" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:422 #: inc/vk-blocks/class-vk-blocks-global-settings.php:422 msgid "Photo frame Tilt Left" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:426 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:476 #: inc/vk-blocks/class-vk-blocks-global-settings.php:426 #: inc/vk-blocks/class-vk-blocks-global-settings.php:476 msgid "Shadow" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:430 #: inc/vk-blocks/class-vk-blocks-global-settings.php:430 msgid "Wave01" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:434 #: inc/vk-blocks/class-vk-blocks-global-settings.php:434 msgid "Wave02" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:438 #: inc/vk-blocks/class-vk-blocks-global-settings.php:438 msgid "Wave03" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:442 #: inc/vk-blocks/class-vk-blocks-global-settings.php:442 msgid "Wave04" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:452 #: inc/vk-blocks/class-vk-blocks-global-settings.php:452 msgid "Solid Roundcorner" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:468 #: inc/vk-blocks/class-vk-blocks-global-settings.php:468 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:286 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:286 msgid "Post" msgstr "" #. translators: %s: 投稿タイプ名 +#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:290 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 msgid "There are no %ss." msgstr "" +#: dist/vk-blocks-pro/inc/vk-css-optimize/config.php:13 #: inc/vk-css-optimize/config.php:13 msgid "VK Blocks " msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:99 #: vk-blocks.php:99 msgid "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:317 #: vk-blocks.php:316 msgid "License Key has no registered." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:322 #: vk-blocks.php:321 msgid "The VK Blocks Pro license is invalid." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:346 #: vk-blocks.php:345 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:356 #: vk-blocks.php:355 msgid "Enter the license key" msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:359 #: vk-blocks.php:358 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:360 #: vk-blocks.php:359 msgid "Re-acquisition of updates" msgstr "" +#: inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +#: src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +msgid "The following posts contain Page Content Blocks referencing non-public pages" +msgstr "" + +#: inc/vk-blocks/build/blocks/page-content/index.php:55 +#: src/blocks/page-content/index.php:55 +msgid "" +"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.\n" +"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block." +msgstr "" + +#: inc/vk-blocks/build/blocks/page-content/index.php:78 +#: src/blocks/page-content/index.php:78 +msgid "Post not found, not public, or password protected" +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(not recommended)" 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/visual-embed/block.json #: inc/vk-blocks/build/blocks/visual-embed/block.json #: src/blocks/visual-embed/block.json msgctxt "block title" msgid "Visual Embed" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/visual-embed/block.json #: inc/vk-blocks/build/blocks/visual-embed/block.json #: src/blocks/visual-embed/block.json msgctxt "block description" msgid "Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media." 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/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block title" msgid "Blog Card Excerpt" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block description" msgid "Shows an excerpt retrieved from a URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block title" msgid "Blog Card Featured Image" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block description" msgid "Displays the featured image obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block title" msgid "Blog Card Site Logo" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block description" msgid "Displays the site logo image obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block title" msgid "Blog Card Site Title" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block description" msgid "Displays the site title obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block title" msgid "Blog Card Title" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block description" msgid "Displays the title obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block title" msgid "Blog Card" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block description" msgid "Add a block that fetches and displays content from a URL." 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/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block title" msgid "Fixed display" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block description" msgid "Remains fixed on the screen at all times." 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 grid 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-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block title" msgid "Category Badge" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block description" msgid "Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: src/blocks/_pro/post-list-slider/block.json msgctxt "block title" msgid "Post List Slider" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list-slider/block.json @@ -4919,114 +5222,133 @@ 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/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-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block title" msgid "New Badge" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block description" msgid "Easily highlight your latest post." 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/readme.txt b/readme.txt index 6f151fe2c..35ee807a0 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: Tags: Gutenberg,FAQ,alert Requires at least: 6.4 Tested up to: 6.7 -Stable tag: 1.94.1.0 +Stable tag: 1.94.2.2 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -108,6 +108,7 @@ e.g. == Changelog == += 1.95.0 = [ Add function ][ Slider ] Added noreferrer, nofollow, and link description options to the link feature. [ Add function ][ Icon / Slider ] Added noreferrer, nofollow, and link description options to the link feature. [ Editor Design Bug Fix ] [ Grid Column (Pro) ] Fixed an issue where the 'is-vertical' layout of grid column items was not displayed vertically. diff --git a/src/blocks/_pro/outer/edit.js b/src/blocks/_pro/outer/edit.js index 7dc676689..ee16bca1e 100644 --- a/src/blocks/_pro/outer/edit.js +++ b/src/blocks/_pro/outer/edit.js @@ -698,7 +698,7 @@ export default function OuterEdit(props) { /> handleToggleChange('PC')} disabled={!bgImage} @@ -706,7 +706,10 @@ export default function OuterEdit(props) { {enableFocalPointPC && ( )} handleToggleChange('Tablet')} disabled={!bgImageTablet && !bgImage} @@ -732,7 +735,10 @@ export default function OuterEdit(props) { {enableFocalPointTablet && ( )} handleToggleChange('Mobile')} disabled={!bgImage && !bgImageTablet && !bgImageMobile} @@ -758,7 +764,10 @@ export default function OuterEdit(props) { {enableFocalPointMobile && ( '; + $alert .= '

    ' . esc_html__( 'The following posts contain Page Content Blocks referencing non-public pages', 'vk-blocks-pro' ) . '

    '; $alert .= wp_kses_post( $list ); $alert .= '

    ' . wp_kses_post( vk_blocks_get_page_content_private_alert() ) . '

    '; $alert .= '
    '; diff --git a/src/blocks/page-content/edit.js b/src/blocks/page-content/edit.js index 72dc976b4..8d51aa984 100644 --- a/src/blocks/page-content/edit.js +++ b/src/blocks/page-content/edit.js @@ -7,7 +7,7 @@ import { usePosts } from '@vkblocks/utils/hooks'; const getPageLabel = (page) => { let label = page.title.rendered; if (page.status === 'private') { - label += ` (${__('Hidden', 'vk-blocks-pro')})`; + label += ` (${__('Private', 'vk-blocks-pro')})`; } if (page.password) { label += ` (${__('Password Protected', 'vk-blocks-pro')})`; diff --git a/src/blocks/page-content/index.php b/src/blocks/page-content/index.php index d3593ed0c..96d2e6bd7 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -53,7 +53,7 @@ function vk_blocks_register_block_page_content() { */ function vk_blocks_get_page_content_private_alert() { $alert = __( - "From VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed. + "The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed. If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", 'vk-blocks-pro' ); @@ -75,7 +75,7 @@ function vk_blocks_page_content_render_callback( $attributes ) { // 投稿が存在し、公開されているか、またはパスワード保護されていないかを確認 if ( ! $post || 'publish' !== $post->post_status || ! empty( $post->post_password ) ) { if ( is_admin() || $is_rest_request ) { - return '

    ' . __( 'Post not found, not public, or password protected.', 'vk-blocks-pro' ) . '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; + return '

    ' . __( 'Post not found, not public, or password protected', 'vk-blocks-pro' ) . '

    ' . vk_blocks_get_page_content_private_alert() . '

    '; } else { // Front Page return ''; diff --git a/vk-blocks.php b/vk-blocks.php index 5a2a51d97..e3ea37a6c 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,8 +3,8 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.94.2.1 - * Stable tag: 1.94.1.0 + * Version: 1.95.0.0 + * Stable tag: 1.94.2.2 * Requires at least: 6.4 * Author: Vektor,Inc. * Author URI: https://vektor-inc.co.jp From de0ff74cca8359873092a9f2a7468954ff21f355 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Fri, 31 Jan 2025 21:22:16 +0900 Subject: [PATCH 46/53] lint --- src/blocks/_pro/outer/edit.js | 51 ++++++++++++++++++----------------- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/src/blocks/_pro/outer/edit.js b/src/blocks/_pro/outer/edit.js index ee16bca1e..f4239a246 100644 --- a/src/blocks/_pro/outer/edit.js +++ b/src/blocks/_pro/outer/edit.js @@ -698,20 +698,21 @@ export default function OuterEdit(props) { /> handleToggleChange('PC')} disabled={!bgImage} /> {enableFocalPointPC && ( )} handleToggleChange('Tablet')} disabled={!bgImageTablet && !bgImage} /> {enableFocalPointTablet && ( )} handleToggleChange('Mobile')} disabled={!bgImage && !bgImageTablet && !bgImageMobile} /> {enableFocalPointMobile && ( Date: Sun, 2 Feb 2025 14:00:01 +0900 Subject: [PATCH 47/53] build --- languages/vk-blocks-pro-js.pot | 124 ++++++++++++++++---------------- languages/vk-blocks-pro.pot | 128 ++++++++++++++++----------------- 2 files changed, 126 insertions(+), 126 deletions(-) diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index d905f5736..4c05d9c34 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -552,7 +552,7 @@ msgstr "" #: src/admin/margin.js:51 #: src/blocks/_pro/accordion/edit.js:139 -#: src/blocks/_pro/outer/edit.js:1362 +#: src/blocks/_pro/outer/edit.js:1365 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 @@ -563,7 +563,7 @@ msgstr "" #: src/admin/margin.js:55 #: src/blocks/_pro/accordion/edit.js:122 -#: src/blocks/_pro/outer/edit.js:1346 +#: src/blocks/_pro/outer/edit.js:1349 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 @@ -574,7 +574,7 @@ msgstr "" #: src/admin/margin.js:59 #: src/blocks/_pro/accordion/edit.js:105 -#: src/blocks/_pro/outer/edit.js:1330 +#: src/blocks/_pro/outer/edit.js:1333 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 @@ -861,7 +861,7 @@ msgid "Height" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:178 -#: src/blocks/_pro/outer/edit.js:833 +#: src/blocks/_pro/outer/edit.js:836 #: src/blocks/balloon/edit.js:515 msgid "Width" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Padding (Top)" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:151 -#: src/blocks/_pro/outer/edit.js:836 +#: src/blocks/_pro/outer/edit.js:839 msgid "Padding (Left and Right)" msgstr "" @@ -1419,7 +1419,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:196 #: src/blocks/_pro/grid-column/edit.js:96 -#: src/blocks/_pro/outer/edit.js:1384 +#: src/blocks/_pro/outer/edit.js:1387 #: src/blocks/icon-outer/edit.js:183 #: src/blocks/icon/edit.js:176 #: src/utils/unit-options.js:6 @@ -1428,7 +1428,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:197 #: src/blocks/_pro/grid-column/edit.js:100 -#: src/blocks/_pro/outer/edit.js:1388 +#: src/blocks/_pro/outer/edit.js:1391 #: src/blocks/icon-outer/edit.js:187 #: src/blocks/icon/edit.js:180 #: src/utils/unit-options.js:10 @@ -1437,7 +1437,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:198 #: src/blocks/_pro/grid-column/edit.js:104 -#: src/blocks/_pro/outer/edit.js:1392 +#: src/blocks/_pro/outer/edit.js:1395 #: src/blocks/icon-outer/edit.js:191 #: src/blocks/icon/edit.js:184 #: src/utils/unit-options.js:14 @@ -1446,7 +1446,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:199 #: src/blocks/_pro/grid-column/edit.js:108 -#: src/blocks/_pro/outer/edit.js:1320 +#: src/blocks/_pro/outer/edit.js:1323 #: src/blocks/icon-outer/edit.js:195 #: src/blocks/icon/edit.js:188 #: src/utils/unit-options.js:18 @@ -1688,23 +1688,23 @@ msgstr "" msgid "Outer link" msgstr "" -#: src/blocks/_pro/outer/edit.js:1054 +#: src/blocks/_pro/outer/edit.js:1057 msgid "Lower Divider Level" msgstr "" -#: src/blocks/_pro/outer/edit.js:1137 +#: src/blocks/_pro/outer/edit.js:1140 msgid "Border Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1142 +#: src/blocks/_pro/outer/edit.js:1145 msgid "Border will disappear when divider effect is applied." msgstr "" -#: src/blocks/_pro/outer/edit.js:1148 +#: src/blocks/_pro/outer/edit.js:1151 msgid "Border type" msgstr "" -#: src/blocks/_pro/outer/edit.js:1156 +#: src/blocks/_pro/outer/edit.js:1159 #: src/blocks/_pro/step-item/edit.js:147 #: src/blocks/_pro/timeline-item/edit.js:113 #: src/blocks/balloon/edit.js:577 @@ -1713,80 +1713,80 @@ msgstr "" msgid "None" msgstr "" -#: src/blocks/_pro/outer/edit.js:1160 +#: src/blocks/_pro/outer/edit.js:1163 #: src/blocks/_pro/step-item/edit.js:118 #: src/blocks/_pro/timeline-item/edit.js:88 #: src/blocks/pr-content/edit.js:145 msgid "Solid" msgstr "" -#: src/blocks/_pro/outer/edit.js:1164 +#: src/blocks/_pro/outer/edit.js:1167 msgid "Dotted" msgstr "" -#: src/blocks/_pro/outer/edit.js:1168 +#: src/blocks/_pro/outer/edit.js:1171 msgid "Dashed" msgstr "" -#: src/blocks/_pro/outer/edit.js:1172 +#: src/blocks/_pro/outer/edit.js:1175 msgid "Double" msgstr "" -#: src/blocks/_pro/outer/edit.js:1176 +#: src/blocks/_pro/outer/edit.js:1179 msgid "Groove" msgstr "" -#: src/blocks/_pro/outer/edit.js:1180 +#: src/blocks/_pro/outer/edit.js:1183 msgid "Ridge" msgstr "" -#: src/blocks/_pro/outer/edit.js:1184 +#: src/blocks/_pro/outer/edit.js:1187 msgid "Inset" msgstr "" -#: src/blocks/_pro/outer/edit.js:1188 +#: src/blocks/_pro/outer/edit.js:1191 msgid "Outset" msgstr "" -#: src/blocks/_pro/outer/edit.js:1200 +#: src/blocks/_pro/outer/edit.js:1203 msgid "Border width" msgstr "" -#: src/blocks/_pro/outer/edit.js:1212 +#: src/blocks/_pro/outer/edit.js:1215 #: src/blocks/icon-outer/edit.js:212 #: src/blocks/icon/edit.js:205 msgid "Border radius" msgstr "" -#: src/blocks/_pro/outer/edit.js:1228 +#: src/blocks/_pro/outer/edit.js:1231 msgid "Container Inner Side Space Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1326 +#: src/blocks/_pro/outer/edit.js:1329 msgid "Min Height Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1378 +#: src/blocks/_pro/outer/edit.js:1381 #: src/components/advanced-unit-control/index.js:13 msgid "Unit Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:1396 +#: src/blocks/_pro/outer/edit.js:1399 #: src/utils/unit-options.js:22 msgid "vh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1400 +#: src/blocks/_pro/outer/edit.js:1403 #: src/utils/unit-options.js:26 msgid "svh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1404 +#: src/blocks/_pro/outer/edit.js:1407 #: src/utils/unit-options.js:30 msgid "lvh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1408 +#: src/blocks/_pro/outer/edit.js:1411 #: src/utils/unit-options.js:34 msgid "dvh" msgstr "" @@ -1829,132 +1829,132 @@ msgstr "" msgid "Background Image Mobile" msgstr "" -#: src/blocks/_pro/outer/edit.js:711 +#: src/blocks/_pro/outer/edit.js:714 msgid "(PC)" msgstr "" -#: src/blocks/_pro/outer/edit.js:740 +#: src/blocks/_pro/outer/edit.js:744 msgid "(Tablet)" msgstr "" -#: src/blocks/_pro/outer/edit.js:759 +#: src/blocks/_pro/outer/edit.js:762 msgid "Enable Focal Point" msgstr "" -#: src/blocks/_pro/outer/edit.js:766 +#: src/blocks/_pro/outer/edit.js:772 msgid "Focal Point Picker" msgstr "" -#: src/blocks/_pro/outer/edit.js:769 +#: src/blocks/_pro/outer/edit.js:774 msgid "(Mobile)" msgstr "" -#: src/blocks/_pro/outer/edit.js:788 +#: src/blocks/_pro/outer/edit.js:791 msgid "Background image Position" msgstr "" -#: src/blocks/_pro/outer/edit.js:796 +#: src/blocks/_pro/outer/edit.js:799 msgid "Repeat" msgstr "" -#: src/blocks/_pro/outer/edit.js:800 +#: src/blocks/_pro/outer/edit.js:803 msgid "Cover" msgstr "" -#: src/blocks/_pro/outer/edit.js:804 +#: src/blocks/_pro/outer/edit.js:807 msgid "Cover fixed (Not fixed on iPhone)" msgstr "" -#: src/blocks/_pro/outer/edit.js:809 +#: src/blocks/_pro/outer/edit.js:812 msgid "This will not work on iPhone." msgstr "" -#: src/blocks/_pro/outer/edit.js:815 +#: src/blocks/_pro/outer/edit.js:818 msgid "Parallax (Non-guaranteed)" msgstr "" -#: src/blocks/_pro/outer/edit.js:830 +#: src/blocks/_pro/outer/edit.js:833 #: src/blocks/pr-content/edit.js:244 #: src/blocks/slider-item/edit.js:167 msgid "Layout Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:843 +#: src/blocks/_pro/outer/edit.js:846 msgid "Fit to the Content area" msgstr "" -#: src/blocks/_pro/outer/edit.js:850 +#: src/blocks/_pro/outer/edit.js:853 msgid "Add padding to the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:857 +#: src/blocks/_pro/outer/edit.js:860 msgid "Remove padding from the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:871 +#: src/blocks/_pro/outer/edit.js:874 msgid "Padding (Top and Bottom)" msgstr "" -#: src/blocks/_pro/outer/edit.js:879 +#: src/blocks/_pro/outer/edit.js:882 msgid "Use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:886 +#: src/blocks/_pro/outer/edit.js:889 msgid "Do not use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:900 +#: src/blocks/_pro/outer/edit.js:903 msgid "" "* If you select \"Do not use\" that, please set yourself it such as a " "spacer block." msgstr "" -#: src/blocks/_pro/outer/edit.js:908 +#: src/blocks/_pro/outer/edit.js:911 msgid "Divider Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:913 +#: src/blocks/_pro/outer/edit.js:916 #: src/blocks/balloon/edit.js:446 msgid "Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:921 +#: src/blocks/_pro/outer/edit.js:924 msgid "Tilt" msgstr "" -#: src/blocks/_pro/outer/edit.js:925 +#: src/blocks/_pro/outer/edit.js:928 msgid "Curve" msgstr "" -#: src/blocks/_pro/outer/edit.js:929 +#: src/blocks/_pro/outer/edit.js:932 msgid "Wave" msgstr "" -#: src/blocks/_pro/outer/edit.js:933 +#: src/blocks/_pro/outer/edit.js:936 msgid "Triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:937 +#: src/blocks/_pro/outer/edit.js:940 msgid "Large triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:944 +#: src/blocks/_pro/outer/edit.js:947 msgid "Serrated" msgstr "" -#: src/blocks/_pro/outer/edit.js:948 +#: src/blocks/_pro/outer/edit.js:951 msgid "Book" msgstr "" -#: src/blocks/_pro/outer/edit.js:952 +#: src/blocks/_pro/outer/edit.js:955 msgid "Pyramid" msgstr "" -#: src/blocks/_pro/outer/edit.js:959 +#: src/blocks/_pro/outer/edit.js:962 msgid "Settings for each device" msgstr "" -#: src/blocks/_pro/outer/edit.js:972 +#: src/blocks/_pro/outer/edit.js:975 msgid "Upper Divider Level" msgstr "" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 3c4abd7f2..0786313b1 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the VK Blocks Pro plugin. msgid "" msgstr "" -"Project-Id-Version: VK Blocks Pro 1.94.2.1\n" +"Project-Id-Version: VK Blocks Pro 1.95.0.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-01-31T12:19:08+00:00\n" +"POT-Creation-Date: 2025-02-02T04:18:52+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" @@ -562,7 +562,7 @@ msgstr "" #: src/admin/margin.js:51 #: src/blocks/_pro/accordion/edit.js:139 -#: src/blocks/_pro/outer/edit.js:1362 +#: src/blocks/_pro/outer/edit.js:1365 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 @@ -573,7 +573,7 @@ msgstr "" #: src/admin/margin.js:55 #: src/blocks/_pro/accordion/edit.js:122 -#: src/blocks/_pro/outer/edit.js:1346 +#: src/blocks/_pro/outer/edit.js:1349 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 @@ -584,7 +584,7 @@ msgstr "" #: src/admin/margin.js:59 #: src/blocks/_pro/accordion/edit.js:105 -#: src/blocks/_pro/outer/edit.js:1330 +#: src/blocks/_pro/outer/edit.js:1333 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 @@ -875,7 +875,7 @@ msgid "Height" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:178 -#: src/blocks/_pro/outer/edit.js:833 +#: src/blocks/_pro/outer/edit.js:836 #: src/blocks/balloon/edit.js:515 msgid "Width" msgstr "" @@ -1408,7 +1408,7 @@ msgid "Padding (Top)" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:151 -#: src/blocks/_pro/outer/edit.js:836 +#: src/blocks/_pro/outer/edit.js:839 msgid "Padding (Left and Right)" msgstr "" @@ -1418,7 +1418,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:196 #: src/blocks/_pro/grid-column/edit.js:96 -#: src/blocks/_pro/outer/edit.js:1384 +#: src/blocks/_pro/outer/edit.js:1387 #: src/blocks/icon-outer/edit.js:183 #: src/blocks/icon/edit.js:176 #: src/utils/unit-options.js:6 @@ -1427,7 +1427,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:197 #: src/blocks/_pro/grid-column/edit.js:100 -#: src/blocks/_pro/outer/edit.js:1388 +#: src/blocks/_pro/outer/edit.js:1391 #: src/blocks/icon-outer/edit.js:187 #: src/blocks/icon/edit.js:180 #: src/utils/unit-options.js:10 @@ -1436,7 +1436,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:198 #: src/blocks/_pro/grid-column/edit.js:104 -#: src/blocks/_pro/outer/edit.js:1392 +#: src/blocks/_pro/outer/edit.js:1395 #: src/blocks/icon-outer/edit.js:191 #: src/blocks/icon/edit.js:184 #: src/utils/unit-options.js:14 @@ -1445,7 +1445,7 @@ msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:199 #: src/blocks/_pro/grid-column/edit.js:108 -#: src/blocks/_pro/outer/edit.js:1320 +#: src/blocks/_pro/outer/edit.js:1323 #: src/blocks/icon-outer/edit.js:195 #: src/blocks/icon/edit.js:188 #: src/utils/unit-options.js:18 @@ -1686,23 +1686,23 @@ msgstr "" msgid "Outer link" msgstr "" -#: src/blocks/_pro/outer/edit.js:1054 +#: src/blocks/_pro/outer/edit.js:1057 msgid "Lower Divider Level" msgstr "" -#: src/blocks/_pro/outer/edit.js:1137 +#: src/blocks/_pro/outer/edit.js:1140 msgid "Border Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1142 +#: src/blocks/_pro/outer/edit.js:1145 msgid "Border will disappear when divider effect is applied." msgstr "" -#: src/blocks/_pro/outer/edit.js:1148 +#: src/blocks/_pro/outer/edit.js:1151 msgid "Border type" msgstr "" -#: src/blocks/_pro/outer/edit.js:1156 +#: src/blocks/_pro/outer/edit.js:1159 #: src/blocks/_pro/step-item/edit.js:147 #: src/blocks/_pro/timeline-item/edit.js:113 #: src/blocks/balloon/edit.js:577 @@ -1711,7 +1711,7 @@ msgstr "" msgid "None" msgstr "" -#: src/blocks/_pro/outer/edit.js:1160 +#: src/blocks/_pro/outer/edit.js:1163 #: src/blocks/_pro/step-item/edit.js:118 #: src/blocks/_pro/timeline-item/edit.js:88 #: src/blocks/pr-content/edit.js:145 @@ -1720,79 +1720,79 @@ msgstr "" msgid "Solid" msgstr "" -#: src/blocks/_pro/outer/edit.js:1164 +#: src/blocks/_pro/outer/edit.js:1167 #: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 #: inc/vk-blocks/class-vk-blocks-global-settings.php:456 msgid "Dotted" msgstr "" -#: src/blocks/_pro/outer/edit.js:1168 +#: src/blocks/_pro/outer/edit.js:1171 #: 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 "Dashed" msgstr "" -#: src/blocks/_pro/outer/edit.js:1172 +#: src/blocks/_pro/outer/edit.js:1175 #: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 #: inc/vk-blocks/class-vk-blocks-global-settings.php:464 msgid "Double" msgstr "" -#: src/blocks/_pro/outer/edit.js:1176 +#: src/blocks/_pro/outer/edit.js:1179 msgid "Groove" msgstr "" -#: src/blocks/_pro/outer/edit.js:1180 +#: src/blocks/_pro/outer/edit.js:1183 msgid "Ridge" msgstr "" -#: src/blocks/_pro/outer/edit.js:1184 +#: src/blocks/_pro/outer/edit.js:1187 msgid "Inset" msgstr "" -#: src/blocks/_pro/outer/edit.js:1188 +#: src/blocks/_pro/outer/edit.js:1191 msgid "Outset" msgstr "" -#: src/blocks/_pro/outer/edit.js:1200 +#: src/blocks/_pro/outer/edit.js:1203 msgid "Border width" msgstr "" -#: src/blocks/_pro/outer/edit.js:1212 +#: src/blocks/_pro/outer/edit.js:1215 #: src/blocks/icon-outer/edit.js:212 #: src/blocks/icon/edit.js:205 msgid "Border radius" msgstr "" -#: src/blocks/_pro/outer/edit.js:1228 +#: src/blocks/_pro/outer/edit.js:1231 msgid "Container Inner Side Space Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1326 +#: src/blocks/_pro/outer/edit.js:1329 msgid "Min Height Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:1378 +#: src/blocks/_pro/outer/edit.js:1381 #: src/components/advanced-unit-control/index.js:13 msgid "Unit Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:1396 +#: src/blocks/_pro/outer/edit.js:1399 #: src/utils/unit-options.js:22 msgid "vh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1400 +#: src/blocks/_pro/outer/edit.js:1403 #: src/utils/unit-options.js:26 msgid "svh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1404 +#: src/blocks/_pro/outer/edit.js:1407 #: src/utils/unit-options.js:30 msgid "lvh" msgstr "" -#: src/blocks/_pro/outer/edit.js:1408 +#: src/blocks/_pro/outer/edit.js:1411 #: src/utils/unit-options.js:34 msgid "dvh" msgstr "" @@ -1833,132 +1833,132 @@ msgstr "" msgid "Background Image Mobile" msgstr "" -#: src/blocks/_pro/outer/edit.js:711 +#: src/blocks/_pro/outer/edit.js:714 msgid "(PC)" msgstr "" -#: src/blocks/_pro/outer/edit.js:740 +#: src/blocks/_pro/outer/edit.js:744 msgid "(Tablet)" msgstr "" -#: src/blocks/_pro/outer/edit.js:759 +#: src/blocks/_pro/outer/edit.js:762 msgid "Enable Focal Point" msgstr "" -#: src/blocks/_pro/outer/edit.js:766 +#: src/blocks/_pro/outer/edit.js:772 msgid "Focal Point Picker" msgstr "" -#: src/blocks/_pro/outer/edit.js:769 +#: src/blocks/_pro/outer/edit.js:774 msgid "(Mobile)" msgstr "" -#: src/blocks/_pro/outer/edit.js:788 +#: src/blocks/_pro/outer/edit.js:791 msgid "Background image Position" msgstr "" -#: src/blocks/_pro/outer/edit.js:796 +#: src/blocks/_pro/outer/edit.js:799 msgid "Repeat" msgstr "" -#: src/blocks/_pro/outer/edit.js:800 +#: src/blocks/_pro/outer/edit.js:803 msgid "Cover" msgstr "" -#: src/blocks/_pro/outer/edit.js:804 +#: src/blocks/_pro/outer/edit.js:807 msgid "Cover fixed (Not fixed on iPhone)" msgstr "" -#: src/blocks/_pro/outer/edit.js:809 +#: src/blocks/_pro/outer/edit.js:812 msgid "This will not work on iPhone." msgstr "" -#: src/blocks/_pro/outer/edit.js:815 +#: src/blocks/_pro/outer/edit.js:818 msgid "Parallax (Non-guaranteed)" msgstr "" -#: src/blocks/_pro/outer/edit.js:830 +#: src/blocks/_pro/outer/edit.js:833 #: src/blocks/pr-content/edit.js:244 #: src/blocks/slider-item/edit.js:167 msgid "Layout Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:843 +#: src/blocks/_pro/outer/edit.js:846 msgid "Fit to the Content area" msgstr "" -#: src/blocks/_pro/outer/edit.js:850 +#: src/blocks/_pro/outer/edit.js:853 msgid "Add padding to the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:857 +#: src/blocks/_pro/outer/edit.js:860 msgid "Remove padding from the Outer area" msgstr "" -#: src/blocks/_pro/outer/edit.js:871 +#: src/blocks/_pro/outer/edit.js:874 msgid "Padding (Top and Bottom)" msgstr "" -#: src/blocks/_pro/outer/edit.js:879 +#: src/blocks/_pro/outer/edit.js:882 msgid "Use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:886 +#: src/blocks/_pro/outer/edit.js:889 msgid "Do not use default padding" msgstr "" -#: src/blocks/_pro/outer/edit.js:900 +#: src/blocks/_pro/outer/edit.js:903 msgid "* If you select \"Do not use\" that, please set yourself it such as a spacer block." msgstr "" -#: src/blocks/_pro/outer/edit.js:908 +#: src/blocks/_pro/outer/edit.js:911 msgid "Divider Setting" msgstr "" -#: src/blocks/_pro/outer/edit.js:913 +#: src/blocks/_pro/outer/edit.js:916 #: src/blocks/balloon/edit.js:446 msgid "Type" msgstr "" -#: src/blocks/_pro/outer/edit.js:921 +#: src/blocks/_pro/outer/edit.js:924 msgid "Tilt" msgstr "" -#: src/blocks/_pro/outer/edit.js:925 +#: src/blocks/_pro/outer/edit.js:928 msgid "Curve" msgstr "" -#: src/blocks/_pro/outer/edit.js:929 +#: src/blocks/_pro/outer/edit.js:932 msgid "Wave" msgstr "" -#: src/blocks/_pro/outer/edit.js:933 +#: src/blocks/_pro/outer/edit.js:936 #: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:346 #: inc/vk-blocks/class-vk-blocks-global-settings.php:346 msgid "Triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:937 +#: src/blocks/_pro/outer/edit.js:940 msgid "Large triangle" msgstr "" -#: src/blocks/_pro/outer/edit.js:944 +#: src/blocks/_pro/outer/edit.js:947 msgid "Serrated" msgstr "" -#: src/blocks/_pro/outer/edit.js:948 +#: src/blocks/_pro/outer/edit.js:951 msgid "Book" msgstr "" -#: src/blocks/_pro/outer/edit.js:952 +#: src/blocks/_pro/outer/edit.js:955 msgid "Pyramid" msgstr "" -#: src/blocks/_pro/outer/edit.js:959 +#: src/blocks/_pro/outer/edit.js:962 msgid "Settings for each device" msgstr "" -#: src/blocks/_pro/outer/edit.js:972 +#: src/blocks/_pro/outer/edit.js:975 msgid "Upper Divider Level" msgstr "" From eb5ef26888c321cd947d78f91df7cca00cf6f839 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Sun, 2 Feb 2025 18:15:07 +0900 Subject: [PATCH 48/53] =?UTF-8?q?=E3=83=86=E3=82=AD=E3=82=B9=E3=83=88?= =?UTF-8?q?=E3=83=89=E3=83=A1=E3=82=A4=E3=83=B3=E7=BD=AE=E6=8F=9B=E4=B8=8D?= =?UTF-8?q?=E8=89=AF=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulpfile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b8d06e1f1..2de00bc10 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -20,11 +20,11 @@ gulp.task('text-domain-free', (done) => { .pipe(replace("wp_set_script_translations( 'vk-blocks-build-js', 'vk-blocks-pro', VK_BLOCKS_DIR_PATH . 'languages' );", "wp_set_script_translations( 'vk-blocks-build-js', 'vk-blocks' );")) .pipe(gulp.dest('./inc/')); gulp.src(['./src/**']) - .pipe(replace(/__\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "__( $1, 'vk-blocks' )")) - .pipe(replace(/_e\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "_e( $1, 'vk-blocks' )")) - .pipe(replace(/_n_noop\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "_n_noop( $1, $2, 'vk-blocks' )")) - .pipe(replace(/_x\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "_x( $1, $2, 'vk-blocks' )")) - .pipe(replace('"textdomain": "vk-blocks-pro"', '"textdomain": "vk-blocks"')) + .pipe(replace(/__\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "__( $1, 'vk-blocks' )")) + .pipe(replace(/_e\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "_e( $1, 'vk-blocks' )")) + .pipe(replace(/_n_noop\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "_n_noop( $1, $2, 'vk-blocks' )")) + .pipe(replace(/_x\(\s*?(['"`].*?['"`]),\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gsm, "_x( $1, $2, 'vk-blocks' )")) + .pipe(replace(/"textdomain":\s*?["']vk-blocks-pro["']/gsm, '"textdomain": "vk-blocks"')) .pipe(gulp.dest('./src/')); gulp.src(['./test/**']) .pipe(replace(/__\(\s*?(['"`].*?['"`]),\s*?['"`]vk-blocks-pro['"`]\s*?\)/gm, "__( $1, 'vk-blocks' )")) From 308e2df879862112eb3994006785b01e84be7fcd Mon Sep 17 00:00:00 2001 From: kurudrive Date: Sun, 2 Feb 2025 22:09:11 +0900 Subject: [PATCH 49/53] =?UTF-8?q?=E7=BF=BB=E8=A8=B3=E8=AA=BF=E6=95=B4?= 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-ja.l10n.php | 6 +- languages/vk-blocks-pro-ja.mo | Bin 95236 -> 94313 bytes languages/vk-blocks-pro-ja.po | 496 +++++------------- languages/vk-blocks-pro.pot | 294 +---------- src/blocks/page-content/index.php | 7 +- 7 files changed, 150 insertions(+), 657 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 07d447a02..b205503a8 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages:":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found or not public.":["投稿がないか非公開です"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示しないようになりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 07d447a02..b205503a8 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages:":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found or not public.":["投稿がないか非公開です"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.\nIf you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示しないようになりました。\nもし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index 29fc3300e..ba8e7ec3f 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,6 +1,2 @@ NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages:'=>'以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています','From VK Blocks version 1.95.0 onwards, non-public page\'s content can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。 -もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。','Post not found or not public.'=>'投稿がないか非公開です','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示しないようになりました。 -もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこのブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file +return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index aa258569fa20d58a5c75b5ed04b2586293115abb..1ce8ec79742a57833cb7981d695a302fbd30ae86 100644 GIT binary patch delta 23279 zcmY-12b4|M+sE;988f;WjL{iJ@4bd-qxa~&_ud6pN%SCkbV4FpB6^D&L?;nl^b#VX zcklOi_v633XRYnCpWV+s<=z>RFYd&;dnK0ta^j#F9!KFI&r6L*B0XsLmGP?O}$W59FF0b787GZ?2Q$%Hg3g&7{7_ddz^SupGu^ey;_YMA#YCaj+_I z3~J!1s7tWGT!maAZ>!bs!Z^f7urU6Kx)ceTyGxWFwUBI>5{sf1UKjmo$#fv24x=#? zzri%P0=2M%sI5C|@!uFs{0g-YUkkTmA*gn#Q74ic^I!>7yDq2`>1Fl)7VN(oPNYBs zeuKJJi%>V$GSq_BU z{-8huKETu%)XEJQi7GFM+KDP=W7Jl6#?`nO$70Ra?vkCwyu>%m@HQ-pI2yGBeNdNV zgx?CLU`z@YptfoWro-i^1sue*co}u6-lEPdw5{8@oTz~dpaw2u*1{m-7G_)2PIp4> zl)on#bsT}Z6q8W{%rjS7{Z`bqJ&0;|9<`v`Rv+BXoq1AJeR?c}xllJ}8`Q+zP?xr^ z)9($ng3;z=REOE-64cYM%G`vy7xthQdfvQ?x^yp4I~3mDO_&w6pggFZEQ#t@2SfGz zx3YrXsD>j@J2DCN_{}qyTlsoayFIA)#BtQUal`7LpeBgX!SxTrSj1^iCzcU&U@i=1 zeyY6P=ZT(u*&YVDP=>^opH&E>#V{-I$bUTp}_54So z%1feOXHt)h&ZISJr2|mqL(TD+n|Ky#!u?nZPhv2Jc5-jX2-J?{#s*j%HQrQnHfmuD zPzznviT$rbW*Y@jn6R_60O|}IqMm{Q7SF;+;*F@CIE&h$yQpjb1~oy7E^dM>s1qxU zdfuy|E>%0!4)p87{>LLT$r{YT^u+5?3p$Nj=_}NN;&gSFDl6({%8PoTM589|gt2h| z#=+rMJ|49bvr#9o0OR5=KN)S|VbooH3ghG7s1DCj^>0zvE~uMZNIKL2rBFLi8P%_; z*$H(I^~VG_7Pa7+sCKJN{}wXwDA

    `A(rGJY(@?i?5@0;%_T|iQ2+<7=jVq-4>@q zwJV1D)U1TM1T9bt=!+VEJhBkK_ca+^%LSMKe?+Z(2Wnx*Exv$!2l4(veFjwQ;U;c^ zdK0!motYn1KM}Pvi!c$cLoIkO>XKc=GJ5{slTpVqJ>5cTV0z*f=5SQ~V$=X@Fee_s zMEC^rVo)!4i3(v>;##OP9c1OhEuL%f63n3Ie+L;|%PXi$a1V7aJVf2qv3t9lDHH1E z%42a+)WXVQLad3}vE~+cMqQdgsPRW&U}rEf@gnqxl37PaTe1&zciu+bY;pRq%@~DM zuq%Foo3IW(MP1WMeci&Fqwe}PsGaGCTJTWRLPnz&JPEZkbNjOY>ac_YxeCK@BkD{J zqITpD)Bxu!zKS}dTc`p5L+!vjOo9pexl0*|+R6N=1y#XtY>aB(vmg7f=h{z!ZlVR& zU@ImjK7qRC*HH_3gW4fqe|L9h#J0r6Q3EbSo$(sf0ym*<>OH8(`Gol=h7(`(lhIZ@ zLUnkFnkZ<1JF_^bH&-&$4&_C)D{l1_P?xX{YN9r%@p@qd4n*BUQ&1hybg zte`OJOg=#kPy=5em!2shd2X|59VhJZ1*{LKBgMt zdDZp&ZzrR>Jnm4v5ZFp&(cW|{i3x^zUU{s7e4XcMB@q^jsIao95~#0 z5?2yuAHk!Ef8qr!G?J5~trs@R^LAlN84AKx|uVe>IZV?STHx04?0-0!-zm_5cd;tI#w=KI zf;-b57((11eK-s?;Bd@{qfryCK<&&Hi+7pFF&^cYF%thq?MQt8M0W;ZW@=Q!ESMGx zSX>7+VRKZ+wx~1fgmJJprobUqJ`*+0Le!3~w0JM-M319(!hh8o{D<0!IA1x_VKi|e z)PzG&3mAbKcnoTwX~+ZQEkoTy878?MDvbK9D2m#V{+IxVVnUpN*_hv(LnbE$`%q{6 zAL^b6o$MxzMBQ9jPy-c5Euai)!0H$mo1iXHd(?+lcWi~@Q0?wve0+)8so*JEFxNjl z8Es)f)ESjRZEY<~gpE)Gbi%wiz~beoGv0`)@er!tZA^#{Q44yH+QE>o-3i1;l_$YM zdj3<9S&y|*0|ifYZ?KHmi?{{q%uk|jwzH^(y}=w9pO*z&=@m6wV<_=NRJ-}+YScn@ zU^3i;{*GkMkK^Dkll|AqzMw!0n1H&u=A+K=2h?4>9o6m?>e~8dxgShIQSI|$IF`g@SO>K; zolpzvf%$PL7QvrTpCxzvWON2qXS)H~nuD=1KE8iAKebFbQU#<0dYJ zQN;C7{RX2>WIjgYPpEt4Io3db{U^?FOMH9FDpqV^QNz!YDoe^Q^&cYw(+S9Cd9^qdHtg4fHSSeeoRi zS>RjXd6_Y$nH{xrwNX1#-)w_P%0g`rkzLe}?M+da>VSd`p}ms4Y%_I-~TM z6!W77s)!NTz~UaLc7D{&_%%l2O4LG*q8_(%xCmo@%eNw2irm*;Isa0gT{2ftXAp0h znx_QIDb0?S)wZqv^3-lKyqcbRv z!B`)4t(u{3nsyiydt)&6H;1Ao`~uZ~66$7Mgeh@7X2j#DOZXUdNfLkWE=4M2NBv$- zGFoX#)ByFYK_`m`qqck!YNGEj7&oKNU?)c5Vbp>jqOSE@)PxC_yPG!xb%}DJE@?#! z((~VxjJBv1YAbu78V*LC;dIosUx3GP4UWTMKX_gyjJ?8r(a4Q`iKk#SjJ1+?1=hj5 zSay{w?}I~$ci{l$_e!ni%LZ=5e=uZ?=T*R`7z<1M=+2-FY6lvi&bSj6#7USP_hMUo zfU&XePwsm}Q`C5~u?$|ua+rQC`(Kw#TQc2nGlpX3pWT)hLA?iRVh-$zx>U2xwYZ4* z5az-z>v);rH`p3GuXhVPib2FNHn^P*L7hnW2KHZPn1upOoC|eLOJQ8Bf(fu5>ZWRg zx*3O|`i(Tlnv=}wsC#6Nxfnx;mzzJK=GnY~{ns_#X9dSl@p+4Hm=94~`UZ6-u{OGe z#KjE62~p+wQ2h&|7XB$}AvI7F)~_FW+na?bq^)q;ucy6V-S~j`n`%|bWN+6HBc+8gC(&M=EIp-8V{oG z;@Df=i=_&dCGLdLxC%eT$EcktxQ+V;%b|AYd#r?Ov8JB?S7ho@P-VM&P8VTO;*(ev zRMk3DW-Td+UzJJiJe_PQO|hMMRNj>V$;+~c?# z%Mm|Ae_1lce|2x9p{M~~Q4M!&QvJ_m~c&j`O<2@|X(S zVKN+H&PI*%BWmD1s2AD=)P(mjCC1?OsQzg%0*m>{s6%bkfSoNKfhmaRU?{Ffb@&xi z<0Xv5SE!pT^-1@*l{34d+RZ?n$j=yxXHW~egIbXP9T`oW;*_h%i+UkNV;DBZEZ7y* zZaQkgD={PPLrruCHE^uo-43S0w8X_w?HXcY9D+KL$;kMA?|U*@*%s6QhftT`3MR#O zW|BYLj$}nGpe$&&cRqAM~d)5o$+Lq9)9N zKFp6ggMz35idcOK3?eRT?I)v~=qzfb_fZ4CLk$#h z$(a+?u?%WKH838w#irO3HNjC#h5w@3$Ghx4Tau#|9*tU9J5)RWOsn`A^_-uy_@y;S z{+H`m5VeJM&Bj*V3N`U?)WVlwN!*5N{{pq(_f{W%#eEFtcKW@dWYn-MYQ>c?4%Wvs z*b=ov!%zcF#q_uw)&4j0PgMPN^ChMyPIT2REH7%D%BXhDFs(lS`vfu!jM|d5s53cg z<+sdO*H{eYQFsr(#HHBlx?4!H8}1&-h`A`Qgxb;msEHStKVvfD{TP$^y-Q?tCRb4% z9$*wEyXii!OJD}#o~Ua#4YgzYPzyecdehxDpIUv)Tkfffi)x<`bz*Ht(EsfwHt*R;49P_e1~ek19bvNu?C(;wa<3jJ%$A^7I9Itlv(~Z`>%>B z6a-@}vjK(>H#gg3Byo3CyD6wQ<}B1!FG20Z3Dm^*QIF#@)U}Rt$9;CBLtTnusD)R* z!~UzF83j6{UZ{>^&AF(ZSYz={OiO&q{13Gwp?BSY*--t9p-!wCYG>+T4s3y%cmk^3 zTtAsOWY(Zox*0XWG1M9VgPI`G-|mOatf&EMn9Wi3-BCL*1`FV~sGT~4+M&y+dn!J6 zt|rchYVR*kMk{QII@4~b0f%8}oMrWAuqE*g)W8+)y9HK54b&aK!todflmFvxz6_{1 zvzZr15*NoD%p2*wm5s%zNShUQ`4)pP=&_6Apl-rYi}Pav;$jweLk-jyQ6sq|26P63i9G3GvhN?{uyc^ZBb9daMXf#q1ykBI@6%% zZf7#1PM|S{VJp-n?Sn~iC`RB^4969IGU~7kHPHdoO?Mr&u-Gr$0Lf8t2GljpZ&tPP zwy1^mwRj9_f?240Vl`^Vj-c+TS6CSRnO?e;H$^RA3Rc2Z*chK;Rjl>O{g!JUYQT4> zH(Z+6?!A%GEQq>?DxglRidh@Az=oI{ySQ?{_XQbk)dWm|^HJAu6RN{L)IeuY9WSHW zKS!NmoHuS~(qSs%Jg943)#5&=aVDe2U1H@w2ITr5CZmCFTg6+{HBIr>btr*)0aZeM z4EMtJI32a1*QkM$zH>&Jxlz}?1Zw;WsI6~;I-$`j*Yp1s8Ex6O7!Q}Dc49s1Tk$c} z1gB6F{)M_1UZ4h!{oW0j7FC}KGh!*!f?Jzkn#;|@=vRXWWYi&yA2T#?A=D03K%GGc z)XICI?)rJCo9QTOYhRlQeXc$dwct9a`WBcFdz&N7DL$V+@bSBl0$saxs1CH@8Pn(8z$!sLZztx7pSe#HaBhmX7NSeDg^i&)Eg%Qoa?( zWBvHPz^`_%VhiHq34DQn1Cqy|(C00uAYLM$w-MLl7VHx03;f%UOkvJ#IGgg?iG6|J z0sW1-RNa%ftsaKjkqM}qYcXnPmRtQciw|0S0d-0JcgU0^lO(Ax@VwW;xWp?_18u|_ zxC1p|{BSo>YScZD-{O|2d#1m|vr#wo8q`g_4%6aJ^D@%j@4Y2cf{Jv>+?g~%ok>U3 zgu^fjCt=_ovGU`nc7LJHonQ;d{u!C|QSs;C9j!_3$nHSP@54y;5i{Dj5#(XS3+ zsa(hG*pIjzYK2=+6YjG5qZZ%7y_7$;@=dAT4xPZ3l%GQNFObIVWO39uRZu(J0QDaE zIt|aiZi+n=Xr))J;d9j88gKDA6|oBj?iKU6c@H&TNIJK$ z%;|XkHF04Iw8Cnrj*TqthwX_+T71`hhUynHy<1QU)EQ;O5c~|az@}y!)WSPs8|;fe z;#of#O*l5v7x<@FOK}wOBh=mBKZ7sum1{I=fm=~KbHK{aqs}~GMz^56sK+-N6JTxB zW7q;iu`Q0leyH*MZ^@J)6F15i_&3|tP!&s2XRsEt;AZm*>P%v1awbMCG&Sm`%!yiH z2~__YsP^?R2DUI;BMb6-?Oev|Z;nB|FlL)e&7V*U+m4#>H}jm8-?jJ|>Lv@$>>j&M zQ9Cr;T!I>BAEwgtf6@y6L0!{VsBb=@S=!t@z%NiwRjjP; z&6*bVerbXeaSQ5kjLwF7{=1OT7Ei&hxEb|I&XnDK7`4W~iC1C;oSDN-a1nLWJ;l

    F?T#~i3L zt&h64ZBX^yP+L6|HNisE&3y<%@D{551Jw90^4RkqFR$Cm?5GBnQ3KXREvyY{!p^9U z1FU|$mCr$a7=3T?X;i;!7T?9x#LrOoMv{E)Ra`xv-@RgMTR{WV0-B%(XlHR()EV?g z9}YuZ`{AgqUWjVH8MVNjs1rDa8tSh~^8fXft z-5k_bZ$wRW7PWvosP_L_d8`6%qHt8dtf=u>?TTr>X*|jiE3XBwXoKx$E+V}0dp`WF1C1CK%T!74Zdr z5t#z@Gh7kWtF;>H2a(2RSJVQBVIiD=b#ON}!K6if{DmXG#zXDEE=;87|CKTrx0o;R z4~0{rwsJq}`Th$vaADGK#EVCc~BEpK)nwdqRw=*)h|Tt$ObFl z^9j$t3NBEf4tG!kBrD|x%!Z%wz?a4)lus}13;a92BA>cfX=fZp`5Dw_M*T8AZ!xaL z+*r4)FYs^4M`A_d*JinLzQEr(Pw<*k&lIKDn7LAkSZBGFnkCOo7GC z&jJm&n^8|iKhz7vkC8aa>X(_TP&>8GJc2s0n^yl6wF7UgK6wpxUeA9%GU`|nHBn2{ z3#Kz_qJgN6b5P%mHlo_?K}~SPyoh>?@1wqOJVBjtotnPDPuY#kZsrK|C!xU%GI~}1 zfW7e;_QNu@+!v5drdQkTKxNbds-q@oVCBtGm#8)BjoJ}4{wUOUzggxS)K1Q?&GR34 zCsUw-mZ4U@3ialTTgS&QANVqfdc3|xmA}LGn5Qm}C(gvKcn`Hx4S8m#VPDj^vFo{; zH4#=Nu7mY(K|P*-Jx)(3kh$x-0Xw383$_FG6a+VLFQjNxc`sD^t*H7Zs09{m=yq~4 z7AIbh(fBXwN4vs}oZV0_xTSt8IF2nT2yX22)?f$JbDOM*`~5(7)I6QInv5D;KuwUgr8~3cs0GZ%hWHTm<+E}t zcL^q=&S;nU9MwK|Yxe>gjdh97qTZl6+qj(@(bnzMA>_NI-^4*&0@tE;>LThAgm!UOL@j(6s^22icpEL=YxU@}L%0!Qxt&g}6OxL6cDZSEDB0f$H~{#ZRq1qMLgxv!E7K&aBmq z=U-dei~>EUJyG!hb3AGb=cAtMjaGgNHPB7ePCYW;Sb1=F_ku}+dhtY{#!qQ+q#4zn z=U)x7SV49(mzfvUu>dy0;+O=dqjq9BYJn%P4Bkbx&(XszEI%qPiJGSz>eU{N+S$+i zWOT+YP+QmA;<4x>o{Q=@AN8hOggW!3s87YUR=&~7x1z>5fZDN3sQxd_H>l5u_t*;k zAwAthi8UL?3R({!pM~@#@l8@X%HohBN%6FbkB;l)eUMHyYF$d z)mb+$nD`YzHWsmm_B&{kgEW%+FYx=A88jF~(%t-;l!5dQ4MOOUkW`OO|B!Snq}>(j z^j7=R6$L&umr);=vVW~ic1d)bA(xQ!q&r zGCEFE(H0|#*HS)=)R8#K>TlyK%O62LO9G!AdKu-T?boC#BprGzKOCK`&n}FlPY`W> zrZQ~|&VL>mpEa0ZJ?7A;kqxwj{36SjpuP}iTG`^##KWlnmHtEUg7v?lddi+q_K4J! za1iQ4O~*W` zaW_fNciX(r|q3uM29vLcPXvbsLR$EeFmyp3|c(|MUl7p?tU z%HNUB1_tG?J}5s;Jes&A?S|q#s}uSPoq&3`|5%%#hYj|FNwGJ9{O1ht1xd$db+V%f z?j^mU>`&TNCtuRqC18smQeKGimXv3~Dc1KfaW~=u#QuHO;ahA?L2=S$DpOf`TkAw0 zuLb3;i1iJDU$uBEunJ}KDLY7<9jjv<{K@*4#rULm8k3Zjg>|G}$0EMp1^#++Il(AW zG3&I7hB~U!@DSdiJT7JYloB|0<1riLCrZu{A19tqn+dqh>fU2x(jn@r&@P(%W7@p4 zaYFR(+j3Dbob=(CP9}iawG6WGAZ=`-}Be(JK9 z`r-HuULYMMAI73~;~3idpYz8mQg#N}PvLeO>=)FJvN|f$@fzvFk?f;Micy}P__FnD zXLUgq=d*t2iF=Zs6YHfH?ArMQKQn3I$JQY>mAS~5u#UgeFc$G>)c*wTH05<^pN+Ca z-QZmtRPjOnD0f_;R@wl$Y*3B`kmWn#J^Y@@st$7fU!wB z#!-KS)Q3LlNzW+jM2ez*Iq`n#bkry1BA+Ah3=z~LeMN(sr2eD9>@Pw{^8iKvp8k^HV zKR2sKp*TlET>+myS8j_BE)=uw`z<;DC z+fex<70IzB4kz^|UkuCIAP?1$qlpbv7vocxhm?tSI@VGaO{!&aQCv&?4p$xcbAjt0 znBV)IqFyxEPHI5PLWgyz<2r73S#J~OEd-vS@SIaugm;{22+ zq3r`wGx{#3>>OoH$xqX(a6SdENrTDjXomx_7Y#y585k%rHl~e^HRM;2?_}{7+IP3S z>c1oIOPfPj8q45^V-xv;v^`0A1Szop@u$QbfnX`9VjUBZ8;%S5|T7)#f`pf$EO-Y6z`ViV`2 zb1che{it0s$`8=td#l?=T_GFbKKWlLPo-pMf72G6lCqN2M_Stgy8b%G+CV8RPD)&d zd{0sm*Cg-g1dge~bmo3bvX*eoU?R-jK|3?~lke?bZs zQ}77i;D;j?4L%{*^wA{mh;K4zTGFhK$}8KX>iZ|chFG=xND84+hF5~kJI2UEQM(qaL7lCSYqup!AkPMc*kaYLA-%JT?0Q~H=$P% zqG(E6k^Z4oW>Qi{{EqUKGtV?NA4-BerDLE>A)f8jXllj`|OO=dm?Izkye4vo{2-$NQinn9XK*;k|s zq@5%k6-mkH8<#$5tt?Q%A4e(AO4(VpXF?shNPk(otCa1g&9@((ukWc`O6o>~C8*q5LXsD-nNgWhp6}N&aivH6?$6d?Nk- z1J+W|fFJ=Kbetl;fs~$nHBt>yY|;j+Z$q7qY{b8jdN9~#^kHXGE9$1w<_l}5wnr(~ zF^{r!*c|h-=+XN9rH&BNHS17=#$6dOGYx)09i<$BKYygGGPx9X*8PZ6(S|8Kx` zg&SW=y)NItdGV*^?HqgB`4ubH{qn`Dh;@I?yPsg)sFep|ted^2TkTC%e7+}%W{mPp znbkDfmtj_VpD+8SQenPB={9B0=c^Dl?cAO4pjp>PEZkJDobO3Sa=x&DY?h+)Vy9A_>xRih(AuS*wD2;^VA8C-16p(Oe z=@3vF-|z44hj+2w|9jRt^V$2^arWM4pL6ewEbm;2J^FTRe@x<7GdzxBu{jD4{;j>Y=;3JYVcPdu+WjzG0Pg6Tca z@13x~V+^L?Z}X-3*7P-Z<+06pW|$daCNoo+=};HUfDxG0;>9o{*Y`@1h@_yERTzdz z$xlHI=zC0#%dLDDYR0E93Esv8_y(Dg7t+G>LNPlg#Ar;1l`sn1Vj3KU@wvXYfJ8X1 zKsDT^0{jKl@hQ|Th%xUYcgTBX4K?oAZp;#&>u-+ zDG4<=fQj%tro+3afrYekOP3Or&xvuc1Zp7VQ7cvzwZzR)6X}8Za4@RgO4LNwS^3UZ ztiLKAC7=$^qwdue)W~n52J{e9;J>Jmr)ceNK`vChJZb_>QT4lHDjbSh>RFfxH(*9Q zhbn*7+V2uc+qe$%Vp<9+p*n11@xG{;k2mL_mU;!Q#;Z6EC%1LCEM+^-%TGSD*$8u! zAA?$f4X9hP+i!sr7)&4rwN%$IJ>EubwvhI2lSZNjRvI<4dZ?A_j_SA%s^byn6pTfF zfw=@#e>rNU{A)?5;cnEeIF9Pzl6lX{U!m@8NC#IhHAa%phH760wOJcld25U&|0!y7 zE=FB=HR{&>J>IHRjyFMJXH!`Ez6-Hg40;+v|jEyZ& z6KjXL@KcP#^}TOM#Knae3zwmmdNpb$J5e2H?im6YGz9-Y1}L)%U2C+1QQsPe9_BRk(mr)Q7iE~Y63ABA3gu4ZV3~hc6DM5#hj=HMXkIv>fTjC4Wt#S zgJGyW@+GR>Jaai}4{gFQJct_bSya9IrvD`gtw5X}Zu2EZ-P077kFP@&9HM5;oeiXGbS1=r(q6Qq?%iXfHSYFS6SrTeE0u$jRjKT%xE>!td zR0j_+H^%+UbzB(pldpujMg1^4PC?CdtHpO&{-WitVMaawZ%OE0M)h{LAQx&cFYB)c*9ge_ z7=izwW)jlRb(|E{K`P51@P6)1yAur_L9ZBQ%O8#SQum<;Ej>aXp``s;Dp zNkE$@#wxr*Em5NW?w)5t&9D^e`7Mvhu^qO@&ruy-M$PykYJksCn>uI!->7`_hkC5@ z4s;gwlSoFO1Zqj@p&B+uU9c@`hMiE4S6|dhO+wY1ZRLwmGhU0j;BHiZ$5AVA7PXfi zq9&SPkkg;d5*5u>=3rEVS*WG^2{q7tsDWL;RCpPq@Fi*`Q-AJmU2)W{tc>cXF{)i( z)Px2h1N3`iT*8}ZPDjmTE~);H` zGlcg(?!|?A{s#?Z!w^V4%4l z2tE(6E;hllX1GSp_AH-8&;NTQw6rf!D-rr7-(Ij8YU#hl zG`I{a;y#RnA>-Yx2uEEY73wL-jVZAtYG4gf_r5La!kth9>@%MAS7NkPoPpY{i%}i@ z2i4%Pm7lfv4bRtrY;TWum zvoRaqK+QDtEB69QfVmIP4Sf^c%;I1?^5Lk*F_py&q53I>TG48jZ;hI0chpMwhgpS5sFnD^ z+>TYqpF&+Q)g(87NL0s}Q61$+o+PgVY7gy1tDTRokI;E2E*_!Y6V|lTnwJ#KD-iO8}eCE^~PZ+&P1)$ zVoajv|7Q|f!jq^OT|{k~2N;h3pgM^2wfme;ipp0;&G;isi=9yIMx$mp5jCKBs1;m- zn!s|4uf=FR|654>gbz_2EuQM$T)Xfy@^4TLd+<`wX6uI<*f*F9mm^E*oiYE#MC5Z! zclAn`HBbX-hRLxN`a6^8PeMz088hNt)N>xj`%)LGk80S)@*PpPq(ABweTka+WOFvE zzeSc`g_^)d%WuaZ^8077{#v4g1S0T+dCh!=>L|`kXM~v+HN$ME=eU?zA9ZWGqVDxT zERJ7bQQV1|&~wxth&zk**T^!=as$YY+FT`2GpvHz#Z6K5W})uwd`yq4QT2btWOyEv z<0I6{#F^~|6p97Or^cdK8{6U+eiA83+(vca`^K39n~~3hx+UXK4Oikyyl(l)bKEBU z1$E(zm>Hj-+NGH5CQ<^ckgtu}E7P$K`gf4fV;44$KNMkZ)V-XDy5}=dGoFj-a0M2? zgQ%zG73xhH>s!|@H)`plQ7cvfb!)4m2Kb4U_eO5L-}AeKH`bhN6=tFCrrpK?U)sJm^V=?7`ni%NQ4=Q`HAPkynYhRN#wx^s9n7kHR8jlB|C{p z@HT2@Z%{LhyU-0FHEQoR=tF z#cim~bPjc)S6CMlEpjW-8g+|0quLKZwf_>exu>EAvJ$m&>ruC0+alIqiCqLD@c?S3 zH&GqFG()~~Xkrk##)#GJE8_M4g-%JE+oGL*&bdi{}MJ7 ziFcS2=YH>IZ~)cuN$iAIF%4G#!98vrP)j<|oQ|6LT-2ug!QyLCw_r1B^Pa%i7=v12 z{|yov;ZxKM{>3;LvDDqGl&HNCg~6ByRbId>hPq%`RQu|vTlfj4#-5l7$D?lX8q_WM z6}c6D?<@(;^cHHQ&ruyDTITLmW>h{JQ($$}h1#G7(g!tx&oMKOK@E5%>RxZb5Ilt1 zyr)pN=r$(R^B=U_ZH5%6B}$80%ABZ*(HIZwq6XR&k7F0C;o}2lh391)rQ?tf>ClqQ5+eWh5%%UHl01Zs4zzI1;slk5NnS z`^mizQeiIgMNqe_tvMJMlAn%wFnS{!4%=Z{EWF7La2CcQe{>V;A4cLNfe5^evGFg| zg`cDDZOCSKOOm4Mr$=qBJg7}s4b`re*}!aKwnXif_GUMXOTPDJ)?bOw3Fty2QTKY1 z38S!_Ezee@vZE*vSj~Yly)b-N)NoWAMFcb@65-evn zG&`d<33`~qmQ5|kWJ=X_N7d~TNMqTF)mchSJ1NZ0O>P8f8mNF}vHBhhC z`q&bCVpBYZ#W4Fe_Z6!R>K4pJO=J=30&6V30kf0eiuz2sh78p2{YxT$d8wKDIp9ftj^72^JXMxq*l z!B`jfVIxes!#%HEQ8S&3HSssBgi$-)Qg*;-@=LHPUce%lahLnAUrn(x`7bdm9>;?C z50>$h$g$f!mz}W!`6Z~w=N4APWPAAI12)C4aX+@e#(VjXh`14}WAS}%V56`<`Gcqn zm)-AH;0r8C{s4}{paZObVG`XvMKS$h_d;uIF2k0@Umj-t-;ro?#C6#CDEF28I_!gqf8~k5F{pdK4Rs6d zqh?&}7=IPTk*I;+#`c)&xEt6MOh*1Oro}kCjnZKzjKK0ISbtUch(Jp0f_j`rqT(}9 z4OU`iJcQ}-Ax2@slkQ_VA0{VX(`<|CXAr92uP_mQkLq_5rpBXw5@|@>!W0;M$~8!X z>aeioYho($?NJ>KL)D**n%Pp!fcsFJ>`%;&VW*u%Q1x1&CNc!okAD#fjc7e;LRo@#JdawD8>kEZjXr#XLHG{U-uJsJkBza&hoa&UmQRKuz|3l8w*5TawE=S<}mY^1HqF#v%hgqF4| z=EMQ0P4pdVq?=G3A4GL@)%*w5F2Q9tpp=+^d|qshB~SyNg__V-RQ)rU2d`ly`V(Do zBg==X*cw$Z1htFjT7EC8{F>$8p_VY+RcB^YyIiOX*FX)tJC?#PQ1$nqR`8H3_j{K~ z#3S&+47%njhN4EC1XUh|=`bg1g{q-CYK~FZ8&!XrxzNg2n|o39&Z7qQ3Il)tOLEZRgYj?^>T%qK+B2sy z72dhS`s-c<-*qETfy!q?&8Q@*VFR-RY9$6*{!7%JnP>h7wIUZ#EAbT7K9~)ni6%#_ zOj^u^Is7D4u@S0b2h@lMqDDFrb%EKa8E-~i;5=r*C#d!*?>n=j%8Q{^pgtDDPf;tn z2(?1XPgxN6YFIPV&=G5nZITEVS4fEhI%#Ev1@AC6jp5%#JvaF~X)kL*xgzC66hT;@d z`M0QnEk$j%pDlh4i;};JiS_)adg_)iH|m}g!o=7F)loN8$NexTj>JN^8a2bKs0;mN z#(m~iA{}Zailf>$LEXv@sCL89uO*vALLIC?-OF9(FR17BnB`BSHsJ-!zd;Qo_;1&) zD5{?_7#|y=CejMkuD9ig&7j7VVQBOk+ z)C|X?>VJ!x=`qyGJVp&L^Go+}o(pwLOJh>3>L-zcM03=L`=T0*N8OsQQF~%FYG9{O z9bB{geN0LIjhXC~tCtrwurijfkLte-YEKM6t(bo%32mxSXcB6L7NOcLL)G7nn&D~GO5MRU_!4!mlf85K(x`r#VyK?~?p83!oPp|So#lT) z-P7x+fyDmTy?_#9M)D=GBep~hXg{i6jCs#|ft7q(C12nc*6{hfWPU0(B%xc-6*aRN zD!_TDrCW~)a5HK}_M%>;f1oaO6?Nf2x6O#VWxQ2f{~9)*e*Ld9!Yye&2--w$`-Df|V$j^p!gVAHsM zpSP1lnGj##H>fu~|Nb|HTQ zFJYZ9U*H>1u7u9daW3&gI37Fr!+n9j@jk{@1Y#2Tyk%G>!sl(mTeubHC-w#Y^-7Z@ z&WAXg_~@j*z~6wj_zO`e2m&`WmC8d)kWR=4wj#W+AGT~e+0Feuc9{dpBSm<|A|X@5h-1R{8*9- z4Nx|1U?b|4e8loWY26G`qUuGWRwz5_>50bTSjozVp`MCym=zbH`aOtRffx*Y z{s;3<(-cULYEa2+f&Iw$M-A{k>Vi+L+>3PiRJfOTR#f}Ds1*uM@AFz?Y*hP>sFnN_ z)z8rMJpUT;cmjGs>_aw%_cv;!NuylFoTz(P)bcgV#;BEOkGen)vma{n4Z*579|L>E z49ej0ks18%f+YxOWKB^Q?t&Vj-zt7(`DNIV_(sd8&FJdoK(#A^8c;3Ngg(Z&I2JX) z$>vN{y>I;_+L2g_KVpJRZe;(#+T_pSD9n=C4RAT?<9RD;fDceB^UC63S=`LaqXyIt z_4p3LFdU7sa4IH3|11(?Ni0Kkm_Mt}E03kIu_~bA=TI}af!Xk$nIxN=NlCLZY9;HU zHf1Z+0DGX?k3h|Q90t+7H`OJ)8K@D>HkX^*P%n%l<~j2^YG9907kp!eW_R(lsCW+4 z9xIM|?E0Yg#)g1Ae`iRjqvxni5-W$xN1>K559&==5jBJP=J%)<%_>yAbEwVxzzogl z`pJcQDvF`rto2dvmr3}Qp8xwK^!N?R<(!XN;=R}%@1Ytt$?ZObX5d}&F<2Q7<#87X z&+9f_cGOIpqTV0hpayUPTjL$n9;%U#=U*2XMnW^WhreL*{BEW(=1tT+ypLMCe^H+S z849>1?uBYU9JP`wQTKR@mG42dJB6zE47Jkf3-bKOB~h}VYfuq&q1vdWY;F3jd_L-) zE<@dlEvO6bM729=<(Dn~2=$@##_~A}xpqZS?aCD5`A302 zjMkzqyv_2vQ4=_VK0J*Y_!-oaKSR|IE9?fC6g7ctsQ!xjEm7XAiJD0xRK?Dyr5cD@ zy6G0*iQ06>Q61ex)q8|m>IBiQeIC>RN~7vmvUoGpb^KjPsNqm6_y#rd<)|gvgSzl> z)TVlc+B_wSxNkB&P#1__)Xh8s)p34QydtW<8mRu-nY~=O-y7-@-e}YBGkY(qn@_I7)Rg#ACb^K|0fV&hNiE$ zFYsSPLQub=WwLxp%YTgNi1$GKF83Ac6}t%a3(1e>ZqxuzV>DjD2AI5r&-+Bre-{#U zaX)GWl9hBbsB5;umBf3ZW|*dwd(I1^I_`j4>fYuc)QpFtR$?YSL(Q_!u?gG-cg|GnxfaU*#%bU?Apb)CK3D-Uq8u z6TMj0?%M?)0h|gRrUq`ZTS+vCDK)K-&AIrG1!QTS*x;{xWEt`Kz>p+cPrvlcLPd< zQN%N$23iTVhkB#_O1271;~CV1lGJd&;6!0h^8Vf=^f`YGHPR9_-8Y;W_#^o@s2Q)S z<(`5)s5j;X)cfE$YAK7>cGklq%nWlL#?|w`IFR5|%L+D_ z+sxgl0Ug9tc*cBW^`eR0z+ET_s$Dedn^JvLy%wmI>tqf-G283D2T7Z<&u>{2S~@{xCMg0*&2cIR>>-PjMQCH{tnL z$BUb|-MRv6l7E1D{E9bqkJDuH5URuAW^Tq!P*1@k)Qjn=#X~=F?HZxVC!+><9JP`; zoBO;HSl3UY3W@Qk?`kK_kQT1PvZ#1hY>kU>4F!D`23=tE)JKcyGXzbdRJpyzTAYCtjO zJ=86DfqG06eCG0r%`B)}Rt(j?zQsR9^)noG3nrSgEWQZ!ep&Mw&wmh!^#pW*ji~%~ zbEmn-+;1KfL@7wX}~= zEAR@nbYXp5J`?)L7eTcvhMG}H)XdAGJ{4OISX~K=U^NB z4t1fU^!}ELsmV+y|Nb~i{%_(r2>e5u1q~eQh{a+AIW(#djv(S)$T!FD_3v-WTZNMZ zR}lQa#}ezX5_X|{3?8J?SlaExveteW@&4q$B|qExd5Vb`L}}bld2OpZl6)58-?RVt zvpdfy0bb2sY}5{}$EjlsXJ%qwQ}+JQqm`SEVyv?Vl+4 z*_6CCLNMn|(&MdcGWA1rjl>kRCQ+1vp9p3q-5L45`M*aEQn}TU9i6cRh#1j(J$9UlW`^aRcVi^SQ1eLa6 zEh z!9Jv?b6%j)B8&e(x*BJGDlaE?3rFJ@oNZ_`guITV z9GV?RYR-a`4GL!dl}R+?%uI#TG)!O}rlax$@^3hQqQNT8oSglrtK&IwzA^-kOy*K@ z4LGmT$5N}uhi2ecvrmXk<(xzLmv)W7`p2bW2hMK@=EHw!pf4PWty8@XTPaU@2F@_+ z_zJPOD&+iS5$;uS(`; zDvqF_3F%(g%0~Mol~$7PLi`r#b{4NitQfJ!m^ zOT9v|nExl%>26bvN|FAB4$p8lr(z4vuEdLz*YOeMD~X-?pv@H011z71I@dVA(4eUI zH|ffxU*J{FAYxC+XVJgEOv|$EATx$^TM9Cget%>o|0nUqSeSaZNWZkg^mzV*x|>M9 zBG!mH?~nYX^~K~6eoT2P(y8eyguK271n&Pl0^e~?CeW8N35DNU$FE3lqh2!lEyCG8a9!rFuUkJ;;SWqt zr`Jf&C9UK84?1)aUa=&i=s-t4>i5Q~fgF2=PInO-K)#)|y+HaSVwuR-pu7#PAg|*K zea6ouv6sMl3jfAyfst{~NWUgsnDWNfSt)C%#yV<~zfPTRTsH7?GO>ZAa#}xA$$vzC z7v~@J^EGEW>&Ji8D*Z~KjyUAU;$w?<7a+cwd|Hg1G;O2p%S*<7c~YFb#Dq#3h!V zjDg36_-oqavd%VQ4DHHuF0;C7TamLBWy6Vm%6ZuO{*3fR%63o|s#$gB{FhV5MS>q5 z{5}ylR#C1$DC!7tc$KL;(aQT%K7sgm7|ramaUQTfTjMM0y`laK9L>oeOuQGw{Xg*| z1r66z7=cMB&@qbqbK9cGclLPr4|6MZHN@u?evo)<+cahQ!m7 zKTUdb;NRa9s7vM~=l^$fB))(%1s%OV=8)c~3lW&extsJ6Ou?-6KQi1!`JE5?>tyK> z)ceyqS&VmeLl;r_j!ZCxZE>DeI6^)yXL&kXjvF{LQC8YI^O>qXn6d`cOGxZB`8b?6 zNtfYlL0rdgxQ_f<45EG#2D(`HzdPq=RM7A6?~eo|j#H@^Uczzs4Hl*D6VBpvq~iu> zcJi%pJh2AU*+}{_F&)W>Rp&fOTt{3kx{7=iWvJtSK&Gq}D)s}xXT-9Tp05DMGs+im z9^gFhLY~hqplnX!?JRyBx6ockWzLvD%Ka#8@haHOwde0YH2#WA8P4GpDBh0PUDCHd zXq2xraI#|LEXJB`M*C0Q72NL|347gLuNUyq2dwF z-sE-sj&EJk%V?d|x3V}aWkKq`KkibVo>*I}x5(-xwK};d`{;xE4{10+@Ba)WDq(ES zgEa2&zDFELtObt19+dryY4CIGL!3Y9cwcdjv^LMM23h`s+G76wB(~A$A&pj2@Q8F_T!X2I{fat9 z;vOtV**%$Zz00Pr5s&j-{0Shx9(wv7Gcl(mSZ9qrblYuO*O|Od3_> zY@t{_1kSvqTT*xzbwm>@O8u{~mBm~MUux{ai70DCFhAw> zh?OMYjdZY{|70Zo#z=xX!pINhtV8Syv96p0$?N!%vlsC!ob`wgwKjvvucJ-^@)<|G!5lGj2&)2?~y3 z40Yn!s{L%0-w``R`Z#9>>SUz+1nD0+lhA)dJ^wXG)Y1j8tX*gbl^3>MaAwE&x|8xu|xC~no)G-H_5!11c za|dTr@-3~CXwogLTy-iCAFc$)ebP-RtA7p=QQiAA9k{f?x%8Z&T!8B)D7p%PI*bnPg(s^_}J=aWq_SYx3;p` zc!aiIRP|5Wbm|aQp=a;*{NEI_*Y3F?ezQYqr_ElTZ`vQrbNb>>yV@niv;m`5Y&g+> zLFk73qwl2%kLuYwsz=YhQN8-L?cSwb-VLGiUWa{9F=WMoplKskmGPC>uyfUr`m?r{ z^$qpKpOr76Z_2CzRecF(T}$Z8v7zLMsPkDXBit8grUmr2y&bRY#ezEG# w%n8>=EWJMBo6Se^`szl6&9d^5|hL7PWb@ZHMuKOKo#_5c6? diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index 6e1402f34..64982d403 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -2,7 +2,7 @@ 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: 2025-01-31T12:13:03+00:00\n" +"POT-Creation-Date: 2025-02-02T12:48:57+00:00\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -87,9 +87,7 @@ msgstr "よく使う吹き出し用のアイコン画像を登録する事がで msgid "image" msgstr "画像" -#: src/admin/block-category-position.js:20 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:109 -#: inc/vk-blocks/admin/admin.php:109 +#: src/admin/block-category-position.js:20 inc/vk-blocks/admin/admin.php:109 msgid "Block Category Position Setting" msgstr "ブロックカテゴリー位置設定" @@ -102,21 +100,16 @@ msgid "Under the WordPress default blocks" msgstr "WordPress標準ブロックの下" #: src/admin/block-manager/index.js:51 src/admin/import-export/index.js:106 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:118 #: inc/vk-blocks/admin/admin.php:118 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:119 -#: inc/vk-blocks/admin/admin.php:119 +#: src/admin/import-export/index.js:115 inc/vk-blocks/admin/admin.php:119 msgid "Block Style Manager Setting" msgstr "ブロックスタイルマネージャー設定" -#: src/admin/breadcrumb.js:24 -#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:15 -#: inc/vk-blocks-pro/admin-pro/admin-pro.php:15 +#: src/admin/breadcrumb.js:24 inc/vk-blocks-pro/admin-pro/admin-pro.php:15 msgid "Breadcrumb Setting" msgstr "パンくずリスト設定" @@ -209,9 +202,7 @@ msgstr "(例) %s-block-style" #: 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:113 -#: inc/vk-blocks/admin/admin.php:113 +#: src/admin/import-export/index.js:52 inc/vk-blocks/admin/admin.php:113 msgid "Custom Block Style Setting" msgstr "カスタムブロックスタイル設定" @@ -260,7 +251,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:16 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:16 msgid "Custom CSS Setting" msgstr "カスタムCSS設定" @@ -372,7 +362,6 @@ msgid "Example:" 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:112 #: inc/vk-blocks/admin/admin.php:112 msgid "Custom Format Setting" msgstr "カスタム書式設定" @@ -461,15 +450,11 @@ msgstr "カスタムブロックバリエーション設定" msgid "Breadcrumb Separator Setting" msgstr "パンくずリストセパレーター設定" -#: src/admin/import-export/index.js:15 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:107 -#: inc/vk-blocks/admin/admin.php:107 +#: src/admin/import-export/index.js:15 inc/vk-blocks/admin/admin.php:107 msgid "License Key" msgstr "ライセンスキー" -#: src/admin/import-export/index.js:167 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:120 -#: inc/vk-blocks/admin/admin.php:120 +#: src/admin/import-export/index.js:167 inc/vk-blocks/admin/admin.php:120 msgid "Import Export Tool" msgstr "インポート・エクスポートツール" @@ -570,7 +555,7 @@ msgid "XXL" msgstr "XXL" #: src/admin/margin.js:51 src/blocks/_pro/accordion/edit.js:139 -#: src/blocks/_pro/outer/edit.js:1362 +#: src/blocks/_pro/outer/edit.js:1365 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 src/blocks/slider/edit-multiItem.js:198 #: src/blocks/slider/edit.js:329 @@ -579,7 +564,7 @@ msgid "PC" msgstr "PC" #: src/admin/margin.js:55 src/blocks/_pro/accordion/edit.js:122 -#: src/blocks/_pro/outer/edit.js:1346 +#: src/blocks/_pro/outer/edit.js:1349 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 src/blocks/slider/edit-multiItem.js:225 #: src/blocks/slider/edit.js:350 @@ -588,7 +573,7 @@ msgid "Tablet" msgstr "タブレット" #: src/admin/margin.js:59 src/blocks/_pro/accordion/edit.js:105 -#: src/blocks/_pro/outer/edit.js:1330 +#: src/blocks/_pro/outer/edit.js:1333 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 src/blocks/slider/edit-multiItem.js:254 #: src/blocks/slider/edit.js:371 @@ -596,8 +581,7 @@ msgstr "タブレット" msgid "Mobile" msgstr "モバイル" -#: src/admin/margin.js:72 dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:115 -#: inc/vk-blocks/admin/admin.php:115 +#: src/admin/margin.js:72 inc/vk-blocks/admin/admin.php:115 msgid "Common Margin Setting" msgstr "共通余白設定" @@ -685,7 +669,6 @@ msgid "Background color / Rounded / Border" msgstr " 背景あり / 角丸 / 枠線 " #: src/blocks/_pro/accordion/index.js:47 src/blocks/heading/edit.js:268 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:304 #: inc/vk-blocks/class-vk-blocks-global-settings.php:304 msgid "Plain" msgstr "装飾無し" @@ -714,7 +697,6 @@ msgstr "短い" #: src/blocks/balloon/edit.js:489 src/blocks/button/edit.js:330 #: src/blocks/faq/index.js:26 src/blocks/faq2/index.js:21 #: src/extensions/common/inline-font-size/inline.js:28 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:522 #: inc/vk-blocks/class-vk-blocks-global-settings.php:522 msgid "Normal" msgstr "標準" @@ -866,7 +848,7 @@ msgid "Height" msgstr "高さ" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:178 -#: src/blocks/_pro/outer/edit.js:833 src/blocks/balloon/edit.js:515 +#: src/blocks/_pro/outer/edit.js:836 src/blocks/balloon/edit.js:515 msgid "Width" msgstr "幅" @@ -1114,7 +1096,6 @@ msgid "Post Type Name" msgstr "投稿タイプ名" #: src/blocks/_pro/dynamic-text/edit.js:136 -#: 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 msgid "Ancestor Page Title" @@ -1417,7 +1398,7 @@ msgid "Padding (Top)" msgstr "余白 (上)" #: src/blocks/_pro/grid-column-item/edit.js:151 -#: src/blocks/_pro/outer/edit.js:836 +#: src/blocks/_pro/outer/edit.js:839 msgid "Padding (Left and Right)" msgstr "余白 (左右)" @@ -1426,28 +1407,28 @@ msgid "Padding (Bottom)" msgstr "余白 (下)" #: src/blocks/_pro/grid-column-item/edit.js:196 -#: src/blocks/_pro/grid-column/edit.js:96 src/blocks/_pro/outer/edit.js:1384 +#: src/blocks/_pro/grid-column/edit.js:96 src/blocks/_pro/outer/edit.js:1387 #: src/blocks/icon-outer/edit.js:183 src/blocks/icon/edit.js:176 #: src/utils/unit-options.js:6 msgid "px" msgstr "px" #: src/blocks/_pro/grid-column-item/edit.js:197 -#: src/blocks/_pro/grid-column/edit.js:100 src/blocks/_pro/outer/edit.js:1388 +#: src/blocks/_pro/grid-column/edit.js:100 src/blocks/_pro/outer/edit.js:1391 #: src/blocks/icon-outer/edit.js:187 src/blocks/icon/edit.js:180 #: src/utils/unit-options.js:10 msgid "em" msgstr "em" #: src/blocks/_pro/grid-column-item/edit.js:198 -#: src/blocks/_pro/grid-column/edit.js:104 src/blocks/_pro/outer/edit.js:1392 +#: src/blocks/_pro/grid-column/edit.js:104 src/blocks/_pro/outer/edit.js:1395 #: src/blocks/icon-outer/edit.js:191 src/blocks/icon/edit.js:184 #: src/utils/unit-options.js:14 msgid "rem" msgstr "rem" #: src/blocks/_pro/grid-column-item/edit.js:199 -#: src/blocks/_pro/grid-column/edit.js:108 src/blocks/_pro/outer/edit.js:1320 +#: src/blocks/_pro/grid-column/edit.js:108 src/blocks/_pro/outer/edit.js:1323 #: src/blocks/icon-outer/edit.js:195 src/blocks/icon/edit.js:188 #: src/utils/unit-options.js:18 msgid "vw" @@ -1558,8 +1539,6 @@ msgstr "カラムの角丸の大きさ" #: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:317 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:392 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:410 #: inc/vk-blocks/class-vk-blocks-global-settings.php:392 #: inc/vk-blocks/class-vk-blocks-global-settings.php:410 msgid "Border" @@ -1682,104 +1661,100 @@ msgstr "テキスト" msgid "Outer link" msgstr "Outerリンク" -#: src/blocks/_pro/outer/edit.js:1054 +#: src/blocks/_pro/outer/edit.js:1057 msgid "Lower Divider Level" msgstr "下部区切りレベル" -#: src/blocks/_pro/outer/edit.js:1137 +#: src/blocks/_pro/outer/edit.js:1140 msgid "Border Setting" msgstr "枠線の設定" -#: src/blocks/_pro/outer/edit.js:1142 +#: src/blocks/_pro/outer/edit.js:1145 msgid "Border will disappear when divider effect is applied." msgstr "枠線は区切りレベルを適用すると表示されなくなります。" -#: src/blocks/_pro/outer/edit.js:1148 +#: src/blocks/_pro/outer/edit.js:1151 msgid "Border type" msgstr "枠線の種類" -#: src/blocks/_pro/outer/edit.js:1156 src/blocks/_pro/step-item/edit.js:147 +#: src/blocks/_pro/outer/edit.js:1159 src/blocks/_pro/step-item/edit.js:147 #: src/blocks/_pro/timeline-item/edit.js:113 src/blocks/balloon/edit.js:577 #: src/blocks/button/edit.js:658 src/blocks/staff/edit.js:177 msgid "None" msgstr "なし" -#: src/blocks/_pro/outer/edit.js:1160 src/blocks/_pro/step-item/edit.js:118 +#: src/blocks/_pro/outer/edit.js:1163 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:448 #: inc/vk-blocks/class-vk-blocks-global-settings.php:448 msgid "Solid" msgstr "直線" -#: src/blocks/_pro/outer/edit.js:1164 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 +#: src/blocks/_pro/outer/edit.js:1167 #: inc/vk-blocks/class-vk-blocks-global-settings.php:456 msgid "Dotted" msgstr "点線" -#: src/blocks/_pro/outer/edit.js:1168 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:460 +#: src/blocks/_pro/outer/edit.js:1171 #: inc/vk-blocks/class-vk-blocks-global-settings.php:460 msgid "Dashed" msgstr "Dashed" -#: src/blocks/_pro/outer/edit.js:1172 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 +#: src/blocks/_pro/outer/edit.js:1175 #: inc/vk-blocks/class-vk-blocks-global-settings.php:464 msgid "Double" msgstr "二重線" -#: src/blocks/_pro/outer/edit.js:1176 +#: src/blocks/_pro/outer/edit.js:1179 msgid "Groove" msgstr "Groove" -#: src/blocks/_pro/outer/edit.js:1180 +#: src/blocks/_pro/outer/edit.js:1183 msgid "Ridge" msgstr "Ridge" -#: src/blocks/_pro/outer/edit.js:1184 +#: src/blocks/_pro/outer/edit.js:1187 msgid "Inset" msgstr "Inset" -#: src/blocks/_pro/outer/edit.js:1188 +#: src/blocks/_pro/outer/edit.js:1191 msgid "Outset" msgstr "Outset" -#: src/blocks/_pro/outer/edit.js:1200 +#: src/blocks/_pro/outer/edit.js:1203 msgid "Border width" msgstr "枠線の幅" -#: src/blocks/_pro/outer/edit.js:1212 src/blocks/icon-outer/edit.js:212 +#: src/blocks/_pro/outer/edit.js:1215 src/blocks/icon-outer/edit.js:212 #: src/blocks/icon/edit.js:205 msgid "Border radius" msgstr "枠線のRの大きさ" -#: src/blocks/_pro/outer/edit.js:1228 +#: src/blocks/_pro/outer/edit.js:1231 msgid "Container Inner Side Space Setting" msgstr "コンテナ内側のスペース設定" -#: src/blocks/_pro/outer/edit.js:1326 +#: src/blocks/_pro/outer/edit.js:1329 msgid "Min Height Setting" msgstr "最小高さ設定" -#: src/blocks/_pro/outer/edit.js:1378 +#: src/blocks/_pro/outer/edit.js:1381 #: src/components/advanced-unit-control/index.js:13 msgid "Unit Type" msgstr "単位" -#: src/blocks/_pro/outer/edit.js:1396 src/utils/unit-options.js:22 +#: src/blocks/_pro/outer/edit.js:1399 src/utils/unit-options.js:22 msgid "vh" msgstr "vh" -#: src/blocks/_pro/outer/edit.js:1400 src/utils/unit-options.js:26 +#: src/blocks/_pro/outer/edit.js:1403 src/utils/unit-options.js:26 msgid "svh" msgstr "svh" -#: src/blocks/_pro/outer/edit.js:1404 src/utils/unit-options.js:30 +#: src/blocks/_pro/outer/edit.js:1407 src/utils/unit-options.js:30 msgid "lvh" msgstr "vh" -#: src/blocks/_pro/outer/edit.js:1408 src/utils/unit-options.js:34 +#: src/blocks/_pro/outer/edit.js:1411 src/utils/unit-options.js:34 msgid "dvh" msgstr "dvh" @@ -1816,80 +1791,80 @@ msgstr "背景画像 ( タブレット )" msgid "Background Image Mobile" msgstr "背景画像 ( モバイル )" -#: src/blocks/_pro/outer/edit.js:711 +#: src/blocks/_pro/outer/edit.js:714 msgid "(PC)" msgstr "(PC)" -#: src/blocks/_pro/outer/edit.js:740 +#: src/blocks/_pro/outer/edit.js:744 msgid "(Tablet)" msgstr "(タブレット)" -#: src/blocks/_pro/outer/edit.js:759 +#: src/blocks/_pro/outer/edit.js:762 msgid "Enable Focal Point" msgstr "フォーカルポイントを有効にする" -#: src/blocks/_pro/outer/edit.js:766 +#: src/blocks/_pro/outer/edit.js:772 msgid "Focal Point Picker" msgstr "フォーカルピッカー" -#: src/blocks/_pro/outer/edit.js:769 +#: src/blocks/_pro/outer/edit.js:774 msgid "(Mobile)" msgstr "(モバイル)" -#: src/blocks/_pro/outer/edit.js:788 +#: src/blocks/_pro/outer/edit.js:791 msgid "Background image Position" msgstr "背景画像の位置" -#: src/blocks/_pro/outer/edit.js:796 +#: src/blocks/_pro/outer/edit.js:799 msgid "Repeat" msgstr "リピート" -#: src/blocks/_pro/outer/edit.js:800 +#: src/blocks/_pro/outer/edit.js:803 msgid "Cover" msgstr "カバー" -#: src/blocks/_pro/outer/edit.js:804 +#: src/blocks/_pro/outer/edit.js:807 msgid "Cover fixed (Not fixed on iPhone)" msgstr "カバー 固定(iPhoneでは固定されません)" -#: src/blocks/_pro/outer/edit.js:809 +#: src/blocks/_pro/outer/edit.js:812 msgid "This will not work on iPhone." msgstr "" -#: src/blocks/_pro/outer/edit.js:815 +#: src/blocks/_pro/outer/edit.js:818 msgid "Parallax (Non-guaranteed)" msgstr "パララックス(非保証)" -#: src/blocks/_pro/outer/edit.js:830 src/blocks/pr-content/edit.js:244 +#: src/blocks/_pro/outer/edit.js:833 src/blocks/pr-content/edit.js:244 #: src/blocks/slider-item/edit.js:167 msgid "Layout Setting" msgstr "レイアウト設定" -#: src/blocks/_pro/outer/edit.js:843 +#: src/blocks/_pro/outer/edit.js:846 msgid "Fit to the Content area" msgstr "コンテンツエリアに合わせる" -#: src/blocks/_pro/outer/edit.js:850 +#: src/blocks/_pro/outer/edit.js:853 msgid "Add padding to the Outer area" msgstr "アウターエリア内に余白を追加する" -#: src/blocks/_pro/outer/edit.js:857 +#: src/blocks/_pro/outer/edit.js:860 msgid "Remove padding from the Outer area" msgstr "アウターエリア内の余白を無くす" -#: src/blocks/_pro/outer/edit.js:871 +#: src/blocks/_pro/outer/edit.js:874 msgid "Padding (Top and Bottom)" msgstr "余白 (上下)" -#: src/blocks/_pro/outer/edit.js:879 +#: src/blocks/_pro/outer/edit.js:882 msgid "Use default padding" msgstr "標準の余白を使用" -#: src/blocks/_pro/outer/edit.js:886 +#: src/blocks/_pro/outer/edit.js:889 msgid "Do not use default padding" msgstr "標準の余白を使用しない" -#: src/blocks/_pro/outer/edit.js:900 +#: src/blocks/_pro/outer/edit.js:903 msgid "" "* If you select \"Do not use\" that, please set yourself it such as a spacer " "block." @@ -1897,58 +1872,56 @@ msgstr "" "*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してくださ" "い。" -#: src/blocks/_pro/outer/edit.js:908 +#: src/blocks/_pro/outer/edit.js:911 msgid "Divider Setting" msgstr "区切りの設定" -#: src/blocks/_pro/outer/edit.js:913 src/blocks/balloon/edit.js:446 +#: src/blocks/_pro/outer/edit.js:916 src/blocks/balloon/edit.js:446 msgid "Type" msgstr "タイプ" -#: src/blocks/_pro/outer/edit.js:921 +#: src/blocks/_pro/outer/edit.js:924 msgid "Tilt" msgstr "傾斜" -#: src/blocks/_pro/outer/edit.js:925 +#: src/blocks/_pro/outer/edit.js:928 msgid "Curve" msgstr "カーブ" -#: src/blocks/_pro/outer/edit.js:929 +#: src/blocks/_pro/outer/edit.js:932 msgid "Wave" msgstr "波状" -#: src/blocks/_pro/outer/edit.js:933 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:346 +#: src/blocks/_pro/outer/edit.js:936 #: inc/vk-blocks/class-vk-blocks-global-settings.php:346 msgid "Triangle" msgstr "三角" -#: src/blocks/_pro/outer/edit.js:937 +#: src/blocks/_pro/outer/edit.js:940 msgid "Large triangle" msgstr "大きい三角" -#: src/blocks/_pro/outer/edit.js:944 +#: src/blocks/_pro/outer/edit.js:947 msgid "Serrated" msgstr "ギザギザ" -#: src/blocks/_pro/outer/edit.js:948 +#: src/blocks/_pro/outer/edit.js:951 msgid "Book" msgstr "本" -#: src/blocks/_pro/outer/edit.js:952 +#: src/blocks/_pro/outer/edit.js:955 msgid "Pyramid" msgstr "ピラミッド" -#: src/blocks/_pro/outer/edit.js:959 +#: src/blocks/_pro/outer/edit.js:962 msgid "Settings for each device" msgstr "デバイス毎の設定" -#: src/blocks/_pro/outer/edit.js:972 +#: src/blocks/_pro/outer/edit.js:975 msgid "Upper Divider Level" msgstr "上部区切りレベル" #: src/blocks/_pro/post-category-badge/edit.js:108 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:135 #: inc/vk-blocks/admin/admin.php:135 msgid "Setting" msgstr "設定" @@ -2355,7 +2328,6 @@ msgid "Show hierarchy" msgstr "階層を表示" #: src/blocks/_pro/taxonomy/edit.js:54 -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: src/blocks/_pro/taxonomy/index.php:246 msgid "" @@ -2391,28 +2363,24 @@ msgstr "アラートスタイル" #: src/blocks/alert/edit.js:53 src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 src/blocks/pr-content/edit.js:171 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:484 #: inc/vk-blocks/class-vk-blocks-global-settings.php:484 msgid "Success" msgstr "Success" #: src/blocks/alert/edit.js:57 src/blocks/button/edit.js:696 #: src/blocks/pr-content/edit.js:175 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:480 #: inc/vk-blocks/class-vk-blocks-global-settings.php:480 msgid "Info" msgstr "Info" #: src/blocks/alert/edit.js:61 src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 src/blocks/pr-content/edit.js:179 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:488 #: inc/vk-blocks/class-vk-blocks-global-settings.php:488 msgid "Warning" msgstr "Warning" #: src/blocks/alert/edit.js:65 src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 src/blocks/pr-content/edit.js:183 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:492 #: inc/vk-blocks/class-vk-blocks-global-settings.php:492 msgid "Danger" msgstr "Danger" @@ -2534,7 +2502,6 @@ msgid "Rounded" msgstr "角丸2" #: src/blocks/balloon/edit.js:509 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:406 #: inc/vk-blocks/class-vk-blocks-global-settings.php:406 msgid "Circle" msgstr "正円" @@ -2647,7 +2614,6 @@ msgstr "大" #: src/blocks/button/edit.js:338 #: src/extensions/common/inline-font-size/inline.js:23 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:517 #: inc/vk-blocks/class-vk-blocks-global-settings.php:517 msgid "Small" msgstr "小" @@ -3715,13 +3681,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:527 #: inc/vk-blocks/class-vk-blocks-global-settings.php:527 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:532 #: inc/vk-blocks/class-vk-blocks-global-settings.php:532 msgid "Extra big" msgstr "特大" @@ -3871,7 +3835,6 @@ msgid "PC size" msgstr "PC" #: src/extensions/core/table/style.js:41 -#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 #: inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 msgid "You can scroll" msgstr "スクロールできます" @@ -4013,12 +3976,12 @@ msgstr "Vektor,Inc." msgid "https://vektor-inc.co.jp" msgstr "https://vektor-inc.co.jp" -#: dist/vk-blocks-pro/inc/admin-notices.php:28 inc/admin-notices.php:28 +#: inc/admin-notices.php:28 msgid "We've released VK Blocks Pro!" msgstr "VK Blocks Pro を公開しました!" #. translators: 1: opening a tag, 2: closing a tag -#: dist/vk-blocks-pro/inc/admin-notices.php:35 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 " @@ -4029,50 +3992,42 @@ msgstr "" "れています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみ" "てください。" -#: 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 +#: inc/admin-notices.php:39 inc/admin-notices.php:45 msgid "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/" msgstr "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/" -#: dist/vk-blocks-pro/inc/admin-notices.php:46 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 +#: 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 "プラグイン %s をインストール中" -#: 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 "プラグイン API で問題が発生しました。" #. 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." msgstr[0] "このプラグインは下記プラグインを必要としています:%1$s。" #. 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 " @@ -4085,7 +4040,6 @@ msgstr[0] "" "れらのプラグインは無償で利用可能です。" #. 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 " @@ -4096,7 +4050,6 @@ msgid_plural "" msgstr[0] "%1$sプラグインをインストールするための適切な権限がありません。" #. 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 " @@ -4109,14 +4062,12 @@ msgstr[0] "" "に更新する必要があります: %1$s。" #. 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." msgstr[0] "次のプラグインの更新が利用可能です:%1$s。" #. 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." @@ -4126,21 +4077,18 @@ msgid_plural "" msgstr[0] "%1$sプラグインを更新するための適切な権限がありません。" #. 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." msgstr[0] "必須プラグインが現在有効化されていません: %1$s。" #. 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." msgstr[0] "推奨プラグインが現在有効化されていません: %1$s。" #. 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 " @@ -4151,47 +4099,39 @@ msgid_plural "" msgstr[0] "%1$sプラグインを有効化するための適切な権限がありません。" #. 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] "プラグインのインストールを開始" -#: 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] "プラグインの更新を開始する" -#: 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] "プラグインの有効化を開始" -#: 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 "操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。" #. 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. " @@ -4201,71 +4141,57 @@ 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 "すべてのプラグインを正常にインストールし、有効化しました。 %1$s" #. 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 "FAQ ブロックの設定" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:83 #: inc/vk-blocks/admin/admin.php:83 msgid "Blocks setting" msgstr "Blocks 設定" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:84 #: inc/vk-blocks/admin/admin.php:84 msgctxt "label in admin menu" msgid "Blocks" msgstr "Blocks" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:100 #: inc/vk-blocks/admin/admin.php:100 msgid "Blocks Setting" msgstr "Blocks 設定" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:110 #: inc/vk-blocks/admin/admin.php:110 msgid "Balloon Block Setting" msgstr "吹き出しブロック設定" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:116 #: inc/vk-blocks/admin/admin.php:116 msgid "Load Separete Setting" msgstr "分割読み込み設定" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:27 -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:67 inc/vk-blocks/blocks.php:27 -#: inc/vk-blocks/blocks.php:67 +#: inc/vk-blocks/blocks.php:27 inc/vk-blocks/blocks.php:67 msgid "Blocks Layout" msgstr "ブロックレイアウト" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:40 -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:54 inc/vk-blocks/blocks.php:40 -#: inc/vk-blocks/blocks.php:54 +#: inc/vk-blocks/blocks.php:40 inc/vk-blocks/blocks.php:54 msgid "Blocks" msgstr "Blocks" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:81 inc/vk-blocks/blocks.php:81 +#: inc/vk-blocks/blocks.php:81 msgid "Deprecated Blocks" msgstr "非推奨ブロック" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "Dummy Text" msgstr "ダミーテキスト" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "" @@ -4277,273 +4203,234 @@ msgstr "" "ん。 先祖階層からのページリストの代わりにダミーテキストのリストを表示していま" "す。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "This message only display on the edit screen." msgstr "このメッセージは編集画面でのみ表示されます。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +#: inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +#: src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 msgid "" -"The following posts contain Page Content Blocks referencing non-public pages:" +"The following posts contain Page Content Blocks referencing non-public pages" msgstr "" "以下のページは非公開のページの参照している固定ページ本文ブロックを使用してい" "ます" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:55 +#: inc/vk-blocks/build/blocks/page-content/index.php:55 +#: src/blocks/page-content/index.php:55 +msgid "" +"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or " +"password protected page's content can no longer be displayed." +msgstr "" +"固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護" +"のコンテンツは表示されなくなりました。" + +#: inc/vk-blocks/build/blocks/page-content/index.php:56 +#: src/blocks/page-content/index.php:56 msgid "" -"From VK Blocks version 1.95.0 onwards, non-public page's content can no " -"longer be displayed.\n" "If you want to display non-public content in multiple locations, please " "create it as a Synced pattern(Reusable block) and place it in the desired " "locations instead of using Page Content block." msgstr "" -"VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなく" -"なりました。\n" "もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブ" -"ロック)を作成してこのブロックのかわりに配置してください。" +"ロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:78 -msgid "Post not found or not public." -msgstr "投稿がないか非公開です" +#: inc/vk-blocks/build/blocks/page-content/index.php:75 +#: src/blocks/page-content/index.php:75 +msgid "Post not found, not public, or password protected" +msgstr "投稿が存在しないか非公開かパスワード保護されています" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:151 -#: inc/vk-blocks/build/blocks/page-content/index.php:151 -#: src/blocks/page-content/index.php:151 +#: inc/vk-blocks/build/blocks/page-content/index.php:148 +#: src/blocks/page-content/index.php:148 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/post-category-badge/index.php:101 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:101 #: src/blocks/_pro/post-category-badge/index.php:101 msgid "Category Badge" msgstr "カテゴリーバッジ" #. translators: %s: taxonomy's label -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:104 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:104 #: src/blocks/_pro/post-category-badge/index.php:104 msgid "Display a list of assigned terms from the taxonomy: %s" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: src/blocks/_pro/taxonomy/index.php:95 msgid "Please select taxonomy" msgstr "タクソノミーを選択してください。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: src/blocks/_pro/taxonomy/index.php:110 msgid "Categories" msgstr "カテゴリー" #. translators: -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: src/blocks/_pro/taxonomy/index.php:199 msgid "All of %s" msgstr "全ての%s" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: src/blocks/_pro/taxonomy/index.php:243 msgid "VK Taxonomy Block" msgstr "VK タクソノミーブロック" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:308 #: inc/vk-blocks/class-vk-blocks-global-settings.php:308 msgid "Background fill lightgray" msgstr "背景塗り 灰色" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:312 #: inc/vk-blocks/class-vk-blocks-global-settings.php:312 msgid "Double border top and bottom black" msgstr "二重線 上下線 黒" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:316 #: inc/vk-blocks/class-vk-blocks-global-settings.php:316 msgid "Double border bottom black" msgstr "二重線 下線 黒" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:320 #: inc/vk-blocks/class-vk-blocks-global-settings.php:320 msgid "Solid border top and bottom black" msgstr "直線 上下 黒" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:324 #: inc/vk-blocks/class-vk-blocks-global-settings.php:324 msgid "Solid border bottom black" msgstr "直線 下線 黒" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:328 #: inc/vk-blocks/class-vk-blocks-global-settings.php:328 msgid "Dotted border bottom black" msgstr "点線 下線 黒" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:332 #: inc/vk-blocks/class-vk-blocks-global-settings.php:332 msgid "Both ends" msgstr "左右線" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:336 #: inc/vk-blocks/class-vk-blocks-global-settings.php:336 msgid "Brackets black" msgstr "括弧 黒" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:342 #: inc/vk-blocks/class-vk-blocks-global-settings.php:342 msgid "Arrow" msgstr "矢印" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:350 #: inc/vk-blocks/class-vk-blocks-global-settings.php:350 msgid "Check" msgstr "チェック" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:354 #: inc/vk-blocks/class-vk-blocks-global-settings.php:354 msgid "Check Square" msgstr "チェック(四角)" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:358 #: inc/vk-blocks/class-vk-blocks-global-settings.php:358 msgid "Check Circle" msgstr "チェック-丸" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:362 #: inc/vk-blocks/class-vk-blocks-global-settings.php:362 msgid "Handpoint" msgstr "指" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:366 #: inc/vk-blocks/class-vk-blocks-global-settings.php:366 msgid "Pencil" msgstr "鉛筆" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:370 #: inc/vk-blocks/class-vk-blocks-global-settings.php:370 msgid "Smile" msgstr "笑顔" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:374 #: inc/vk-blocks/class-vk-blocks-global-settings.php:374 msgid "Frown" msgstr "不満顔" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:378 #: inc/vk-blocks/class-vk-blocks-global-settings.php:378 msgid "Numbered Circle" msgstr "数字-丸" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:382 #: inc/vk-blocks/class-vk-blocks-global-settings.php:382 msgid "Numbered Square" msgstr "数字-四角" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:388 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:472 #: inc/vk-blocks/class-vk-blocks-global-settings.php:388 #: inc/vk-blocks/class-vk-blocks-global-settings.php:472 msgid "Border Top Bottom" msgstr "直線 上下" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:396 #: inc/vk-blocks/class-vk-blocks-global-settings.php:396 msgid "Border / Stripes" msgstr "枠線 / ストライプ" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:402 #: inc/vk-blocks/class-vk-blocks-global-settings.php:402 msgid "Rounded02" msgstr "角丸2" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:414 #: inc/vk-blocks/class-vk-blocks-global-settings.php:414 msgid "Photo frame" msgstr "フォトフレーム" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:418 #: inc/vk-blocks/class-vk-blocks-global-settings.php:418 msgid "Photo frame Tilt Right" msgstr "フォトフレーム傾き右" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:422 #: inc/vk-blocks/class-vk-blocks-global-settings.php:422 msgid "Photo frame Tilt Left" msgstr "フォトフレーム傾き左" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:426 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:476 #: inc/vk-blocks/class-vk-blocks-global-settings.php:426 #: inc/vk-blocks/class-vk-blocks-global-settings.php:476 msgid "Shadow" msgstr "シャドウ" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:430 #: inc/vk-blocks/class-vk-blocks-global-settings.php:430 msgid "Wave01" msgstr "流体シェイプ1" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:434 #: inc/vk-blocks/class-vk-blocks-global-settings.php:434 msgid "Wave02" msgstr "流体シェイプ2" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:438 #: inc/vk-blocks/class-vk-blocks-global-settings.php:438 msgid "Wave03" msgstr "流体シェイプ3" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:442 #: inc/vk-blocks/class-vk-blocks-global-settings.php:442 msgid "Wave04" msgstr "流体シェイプ4" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:452 #: inc/vk-blocks/class-vk-blocks-global-settings.php:452 msgid "Solid Roundcorner" msgstr "直線 角丸" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:468 #: inc/vk-blocks/class-vk-blocks-global-settings.php:468 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:286 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:286 msgid "Post" msgstr "投稿" #. translators: %s: 投稿タイプ名 -#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:290 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 msgid "There are no %ss." msgstr "該当の%sはありません。" -#: dist/vk-blocks-pro/inc/vk-css-optimize/config.php:13 #: inc/vk-css-optimize/config.php:13 msgid "VK Blocks " msgstr "VK Blocks" -#: dist/vk-blocks-pro/vk-blocks.php:99 vk-blocks.php:99 +#: vk-blocks.php:99 msgid "" "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks " "Plugin running." @@ -4551,26 +4438,26 @@ msgstr "" "VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しまし" "た。" -#: dist/vk-blocks-pro/vk-blocks.php:317 vk-blocks.php:316 +#: vk-blocks.php:316 msgid "License Key has no registered." msgstr "ライセンスキーが登録されていません。" -#: dist/vk-blocks-pro/vk-blocks.php:322 vk-blocks.php:321 +#: vk-blocks.php:321 msgid "The VK Blocks Pro license is invalid." msgstr "VK Blocks Pro のライセンスが無効です。" -#: dist/vk-blocks-pro/vk-blocks.php:346 vk-blocks.php:345 +#: vk-blocks.php:345 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:356 vk-blocks.php:355 +#: vk-blocks.php:355 msgid "Enter the license key" msgstr "ライセンスキーを入力" -#: dist/vk-blocks-pro/vk-blocks.php:359 vk-blocks.php:358 +#: vk-blocks.php:358 msgid "" "If this display does not disappear even after entering a valid license key, " "re-acquire the update." @@ -4578,144 +4465,99 @@ msgstr "" "有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてく" "ださい。" -#: dist/vk-blocks-pro/vk-blocks.php:360 vk-blocks.php:359 +#: vk-blocks.php:359 msgid "Re-acquisition of updates" msgstr "更新の再取得" -#: inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 -#: src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 -msgid "" -"The following posts contain Page Content Blocks referencing non-public pages" -msgstr "" -"以下のページは非公開のページの参照している固定ページ本文ブロックを使用してい" -"ます" - -#: inc/vk-blocks/build/blocks/page-content/index.php:55 -#: src/blocks/page-content/index.php:55 -msgid "" -"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or " -"password protected page's content can no longer be displayed.\n" -"If you want to display non-public content in multiple locations, please " -"create it as a Synced pattern(Reusable block) and place it in the desired " -"locations instead of using Page Content block." -msgstr "" -"固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護" -"のコンテンツは表示しないようになりました。\n" -"もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブ" -"ロック)を作成してこのブロックのかわりに配置してください。" - -#: inc/vk-blocks/build/blocks/page-content/index.php:78 -#: src/blocks/page-content/index.php:78 -msgid "Post not found, not public, or password protected" -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 "注釈や注意など4つのステータスがある色付きのボックスです。" -#: 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 "旧 FAQ" -#: 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 "FAQ 回答" -#: 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 "FAQ 質問" -#: 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 "新 FAQ" -#: 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 "" @@ -4725,25 +4567,21 @@ 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(not recommended)" 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 "" @@ -4751,54 +4589,46 @@ msgid "" "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 "Font Awesome のアイコンフォントを横並びに表示します" -#: 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 "Font Awesome のアイコンフォントを表示します" -#: 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 "PR Blocks (非推奨)" -#: 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" @@ -4812,14 +4642,12 @@ msgstr "" "ブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めし" "ません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。" -#: 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 "PR Content" -#: 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" @@ -4827,27 +4655,23 @@ msgid "" "This is PR content where you can place images, headlines, text, and buttons." msgstr "画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。" -#: 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 "スライダー内の1つのアイテムです。" -#: 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 "" @@ -4857,25 +4681,21 @@ 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 "" @@ -4883,14 +4703,12 @@ msgid "" "menu, etc." msgstr "スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/visual-embed/block.json #: inc/vk-blocks/build/blocks/visual-embed/block.json #: src/blocks/visual-embed/block.json msgctxt "block title" msgid "Visual Embed" msgstr "ビジュアル埋め込み" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/visual-embed/block.json #: inc/vk-blocks/build/blocks/visual-embed/block.json #: src/blocks/visual-embed/block.json msgctxt "block description" @@ -4901,168 +4719,144 @@ msgstr "" "エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができ" "ます。地図、動画、その他iframeベースのメディアに最適です。" -#: 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/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block title" msgid "Blog Card Excerpt" msgstr "ブログカード抜粋" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block description" msgid "Shows an excerpt retrieved from a URL." msgstr "URLから取得した抜粋を表示します。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block title" msgid "Blog Card Featured Image" msgstr "ブログカードアイキャッチ画像" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block description" msgid "Displays the featured image obtained from the URL." msgstr "URLから取得したアイキャッチ画像を表示します。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block title" msgid "Blog Card Site Logo" msgstr "ブログカードサイトロゴ" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block description" msgid "Displays the site logo image obtained from the URL." msgstr "URLから取得したサイトのロゴ画像を表示します。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block title" msgid "Blog Card Site Title" msgstr "ブログカードサイトタイトル" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block description" msgid "Displays the site title obtained from the URL." msgstr "URLから取得したサイトのタイトルを表示します。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block title" msgid "Blog Card Title" msgstr "ブログカードタイトル" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block description" msgid "Displays the title obtained from the URL." msgstr "URLから取得したタイトルを表示します。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block title" msgid "Blog Card" msgstr "ブログカード" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block description" msgid "Add a block that fetches and displays content from a URL." msgstr "URLからコンテンツを取得して表示するブロックを追加します。" -#: 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" @@ -5073,56 +4867,48 @@ 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 "VK ボタンブロックを横並びに表示します" -#: 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 "アイコンカード内の1つのアイテムです。" -#: 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" @@ -5130,42 +4916,36 @@ 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/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block title" msgid "Fixed display" msgstr "固定表示" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block description" msgid "Remains fixed on the screen at all times." 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 #, fuzzy @@ -5175,126 +4955,108 @@ msgctxt "block description" msgid "One item in a grid column block." msgstr "グリッドカラムブロック内の1つのアイテムです。" -#: 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 "アイコンカード内の1つのアイテムです。" -#: 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 "Outer" -#: 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" @@ -5302,14 +5064,12 @@ 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-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block title" msgid "Category Badge" msgstr "カテゴリーバッジ" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block description" @@ -5320,15 +5080,12 @@ msgstr "" "投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。" "タクソノミーとデザインの指定が可能です。" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: src/blocks/_pro/post-list-slider/block.json msgctxt "block title" msgid "Post List Slider" msgstr "投稿リストスライダー" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list-slider/block.json @@ -5339,49 +5096,42 @@ msgid "" "number of posts to display." 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-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block title" msgid "New Badge" msgstr "新着バッジ" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block description" msgid "Easily highlight your latest post." 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 "選択投稿リスト内の1つのアイテムです。" -#: 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" @@ -5389,42 +5139,36 @@ 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" @@ -5433,42 +5177,36 @@ msgid "" "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" @@ -5477,6 +5215,28 @@ msgid "" "explaining the order." msgstr "順番を説明する時に便利でシンプルなスケジュールなどを表示します。" +#~ msgid "" +#~ "The following posts contain Page Content Blocks referencing non-public " +#~ "pages:" +#~ msgstr "" +#~ "以下のページは非公開のページの参照している固定ページ本文ブロックを使用して" +#~ "います" + +#~ msgid "Post not found or not public." +#~ msgstr "投稿がないか非公開です" + +#~ msgid "" +#~ "The Page Content block from VK Blocks version 1.95.0 onwards, non-public " +#~ "or password protected page's content can no longer be displayed.\n" +#~ "If you want to display non-public content in multiple locations, please " +#~ "create it as a Synced pattern(Reusable block) and place it in the desired " +#~ "locations instead of using Page Content block." +#~ msgstr "" +#~ "固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保" +#~ "護のコンテンツは表示しないようになりました。\n" +#~ "もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブ" +#~ "ロック)を作成してこのブロックのかわりに配置してください。" + #~ msgid "Focal Point Picker (Mobile)" #~ msgstr "焦点ピッカー(モバイル)" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 0786313b1..37c23e97f 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-02-02T04:18:52+00:00\n" +"POT-Creation-Date: 2025-02-02T12:53:43+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" @@ -92,7 +92,6 @@ msgid "image" msgstr "" #: src/admin/block-category-position.js:20 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:109 #: inc/vk-blocks/admin/admin.php:109 msgid "Block Category Position Setting" msgstr "" @@ -107,20 +106,17 @@ 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:118 #: inc/vk-blocks/admin/admin.php:118 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:119 #: inc/vk-blocks/admin/admin.php:119 msgid "Block Style Manager Setting" msgstr "" #: src/admin/breadcrumb.js:24 -#: 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 "Breadcrumb Setting" msgstr "" @@ -213,7 +209,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:113 #: inc/vk-blocks/admin/admin.php:113 msgid "Custom Block Style Setting" msgstr "" @@ -257,7 +252,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:16 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:16 msgid "Custom CSS Setting" msgstr "" @@ -368,7 +362,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:112 #: inc/vk-blocks/admin/admin.php:112 msgid "Custom Format Setting" msgstr "" @@ -456,13 +449,11 @@ msgid "Breadcrumb Separator Setting" msgstr "" #: src/admin/import-export/index.js:15 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:107 #: inc/vk-blocks/admin/admin.php:107 msgid "License Key" msgstr "" #: src/admin/import-export/index.js:167 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:120 #: inc/vk-blocks/admin/admin.php:120 msgid "Import Export Tool" msgstr "" @@ -594,7 +585,6 @@ msgid "Mobile" msgstr "" #: src/admin/margin.js:72 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:115 #: inc/vk-blocks/admin/admin.php:115 msgid "Common Margin Setting" msgstr "" @@ -686,7 +676,6 @@ msgstr "" #: src/blocks/_pro/accordion/index.js:47 #: src/blocks/heading/edit.js:268 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:304 #: inc/vk-blocks/class-vk-blocks-global-settings.php:304 msgid "Plain" msgstr "" @@ -718,7 +707,6 @@ msgstr "" #: src/blocks/faq/index.js:26 #: src/blocks/faq2/index.js:21 #: src/extensions/common/inline-font-size/inline.js:28 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:522 #: inc/vk-blocks/class-vk-blocks-global-settings.php:522 msgid "Normal" msgstr "" @@ -1112,7 +1100,6 @@ msgid "Post Type Name" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:136 -#: 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 msgid "Ancestor Page Title" @@ -1556,8 +1543,6 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:317 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:392 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:410 #: inc/vk-blocks/class-vk-blocks-global-settings.php:392 #: inc/vk-blocks/class-vk-blocks-global-settings.php:410 msgid "Border" @@ -1715,25 +1700,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:448 #: inc/vk-blocks/class-vk-blocks-global-settings.php:448 msgid "Solid" msgstr "" #: src/blocks/_pro/outer/edit.js:1167 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 #: inc/vk-blocks/class-vk-blocks-global-settings.php:456 msgid "Dotted" msgstr "" #: src/blocks/_pro/outer/edit.js:1171 -#: 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 "Dashed" msgstr "" #: src/blocks/_pro/outer/edit.js:1175 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 #: inc/vk-blocks/class-vk-blocks-global-settings.php:464 msgid "Double" msgstr "" @@ -1933,7 +1914,6 @@ msgid "Wave" msgstr "" #: src/blocks/_pro/outer/edit.js:936 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:346 #: inc/vk-blocks/class-vk-blocks-global-settings.php:346 msgid "Triangle" msgstr "" @@ -1963,7 +1943,6 @@ msgid "Upper Divider Level" msgstr "" #: src/blocks/_pro/post-category-badge/edit.js:108 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:135 #: inc/vk-blocks/admin/admin.php:135 msgid "Setting" msgstr "" @@ -2359,7 +2338,6 @@ msgid "Show hierarchy" msgstr "" #: src/blocks/_pro/taxonomy/edit.js:54 -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: src/blocks/_pro/taxonomy/index.php:246 msgid "Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block." @@ -2394,7 +2372,6 @@ msgstr "" #: src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 #: src/blocks/pr-content/edit.js:171 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:484 #: inc/vk-blocks/class-vk-blocks-global-settings.php:484 msgid "Success" msgstr "" @@ -2402,7 +2379,6 @@ msgstr "" #: src/blocks/alert/edit.js:57 #: src/blocks/button/edit.js:696 #: src/blocks/pr-content/edit.js:175 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:480 #: inc/vk-blocks/class-vk-blocks-global-settings.php:480 msgid "Info" msgstr "" @@ -2411,7 +2387,6 @@ msgstr "" #: src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 #: src/blocks/pr-content/edit.js:179 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:488 #: inc/vk-blocks/class-vk-blocks-global-settings.php:488 msgid "Warning" msgstr "" @@ -2420,7 +2395,6 @@ msgstr "" #: src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 #: src/blocks/pr-content/edit.js:183 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:492 #: inc/vk-blocks/class-vk-blocks-global-settings.php:492 msgid "Danger" msgstr "" @@ -2543,7 +2517,6 @@ msgid "Rounded" msgstr "" #: src/blocks/balloon/edit.js:509 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:406 #: inc/vk-blocks/class-vk-blocks-global-settings.php:406 msgid "Circle" msgstr "" @@ -2650,7 +2623,6 @@ msgstr "" #: src/blocks/button/edit.js:338 #: src/extensions/common/inline-font-size/inline.js:23 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:517 #: inc/vk-blocks/class-vk-blocks-global-settings.php:517 msgid "Small" msgstr "" @@ -3667,13 +3639,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:527 #: inc/vk-blocks/class-vk-blocks-global-settings.php:527 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:532 #: inc/vk-blocks/class-vk-blocks-global-settings.php:532 msgid "Extra big" msgstr "" @@ -3819,7 +3789,6 @@ msgid "PC size" msgstr "" #: src/extensions/core/table/style.js:41 -#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 #: inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 msgid "You can scroll" msgstr "" @@ -3953,57 +3922,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 "" -#: 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." @@ -4011,7 +3969,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." @@ -4019,7 +3976,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." @@ -4027,7 +3983,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." @@ -4035,7 +3990,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." @@ -4043,7 +3997,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." @@ -4051,7 +4004,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." @@ -4059,7 +4011,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." @@ -4067,7 +4018,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." @@ -4075,1145 +4025,954 @@ 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:83 #: inc/vk-blocks/admin/admin.php:83 msgid "Blocks setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:84 #: 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:100 #: inc/vk-blocks/admin/admin.php:100 msgid "Blocks Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:110 #: inc/vk-blocks/admin/admin.php:110 msgid "Balloon Block Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:116 #: inc/vk-blocks/admin/admin.php:116 msgid "Load Separete Setting" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:27 -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:67 #: inc/vk-blocks/blocks.php:27 #: inc/vk-blocks/blocks.php:67 msgid "Blocks Layout" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:40 -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:54 #: inc/vk-blocks/blocks.php:40 #: inc/vk-blocks/blocks.php:54 msgid "Blocks" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:81 #: inc/vk-blocks/blocks.php:81 msgid "Deprecated Blocks" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "Dummy Text" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 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:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "This message only display on the edit screen." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 -msgid "The following posts contain Page Content Blocks referencing non-public pages:" +#: inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +#: src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 +msgid "The following posts contain Page Content Blocks referencing non-public pages" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:55 -msgid "" -"From VK Blocks version 1.95.0 onwards, non-public page's content can no longer be displayed.\n" -"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block." +#: inc/vk-blocks/build/blocks/page-content/index.php:55 +#: src/blocks/page-content/index.php:55 +msgid "The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:78 -msgid "Post not found or not public." +#: inc/vk-blocks/build/blocks/page-content/index.php:56 +#: src/blocks/page-content/index.php:56 +msgid "If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:151 -#: inc/vk-blocks/build/blocks/page-content/index.php:151 -#: src/blocks/page-content/index.php:151 +#: inc/vk-blocks/build/blocks/page-content/index.php:75 +#: src/blocks/page-content/index.php:75 +msgid "Post not found, not public, or password protected" +msgstr "" + +#: inc/vk-blocks/build/blocks/page-content/index.php:148 +#: src/blocks/page-content/index.php:148 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/post-category-badge/index.php:101 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:101 #: src/blocks/_pro/post-category-badge/index.php:101 msgid "Category Badge" msgstr "" #. translators: %s: taxonomy's label -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:104 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:104 #: src/blocks/_pro/post-category-badge/index.php:104 msgid "Display a list of assigned terms from the taxonomy: %s" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: src/blocks/_pro/taxonomy/index.php:95 msgid "Please select taxonomy" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: src/blocks/_pro/taxonomy/index.php:110 msgid "Categories" msgstr "" #. translators: -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: src/blocks/_pro/taxonomy/index.php:199 msgid "All of %s" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: src/blocks/_pro/taxonomy/index.php:243 msgid "VK Taxonomy Block" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:308 #: inc/vk-blocks/class-vk-blocks-global-settings.php:308 msgid "Background fill lightgray" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:312 #: inc/vk-blocks/class-vk-blocks-global-settings.php:312 msgid "Double border top and bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:316 #: inc/vk-blocks/class-vk-blocks-global-settings.php:316 msgid "Double border bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:320 #: inc/vk-blocks/class-vk-blocks-global-settings.php:320 msgid "Solid border top and bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:324 #: inc/vk-blocks/class-vk-blocks-global-settings.php:324 msgid "Solid border bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:328 #: inc/vk-blocks/class-vk-blocks-global-settings.php:328 msgid "Dotted border bottom black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:332 #: inc/vk-blocks/class-vk-blocks-global-settings.php:332 msgid "Both ends" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:336 #: inc/vk-blocks/class-vk-blocks-global-settings.php:336 msgid "Brackets black" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:342 #: inc/vk-blocks/class-vk-blocks-global-settings.php:342 msgid "Arrow" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:350 #: inc/vk-blocks/class-vk-blocks-global-settings.php:350 msgid "Check" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:354 #: inc/vk-blocks/class-vk-blocks-global-settings.php:354 msgid "Check Square" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:358 #: inc/vk-blocks/class-vk-blocks-global-settings.php:358 msgid "Check Circle" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:362 #: inc/vk-blocks/class-vk-blocks-global-settings.php:362 msgid "Handpoint" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:366 #: inc/vk-blocks/class-vk-blocks-global-settings.php:366 msgid "Pencil" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:370 #: inc/vk-blocks/class-vk-blocks-global-settings.php:370 msgid "Smile" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:374 #: inc/vk-blocks/class-vk-blocks-global-settings.php:374 msgid "Frown" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:378 #: inc/vk-blocks/class-vk-blocks-global-settings.php:378 msgid "Numbered Circle" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:382 #: inc/vk-blocks/class-vk-blocks-global-settings.php:382 msgid "Numbered Square" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:388 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:472 #: inc/vk-blocks/class-vk-blocks-global-settings.php:388 #: inc/vk-blocks/class-vk-blocks-global-settings.php:472 msgid "Border Top Bottom" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:396 #: inc/vk-blocks/class-vk-blocks-global-settings.php:396 msgid "Border / Stripes" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:402 #: inc/vk-blocks/class-vk-blocks-global-settings.php:402 msgid "Rounded02" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:414 #: inc/vk-blocks/class-vk-blocks-global-settings.php:414 msgid "Photo frame" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:418 #: inc/vk-blocks/class-vk-blocks-global-settings.php:418 msgid "Photo frame Tilt Right" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:422 #: inc/vk-blocks/class-vk-blocks-global-settings.php:422 msgid "Photo frame Tilt Left" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:426 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:476 #: inc/vk-blocks/class-vk-blocks-global-settings.php:426 #: inc/vk-blocks/class-vk-blocks-global-settings.php:476 msgid "Shadow" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:430 #: inc/vk-blocks/class-vk-blocks-global-settings.php:430 msgid "Wave01" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:434 #: inc/vk-blocks/class-vk-blocks-global-settings.php:434 msgid "Wave02" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:438 #: inc/vk-blocks/class-vk-blocks-global-settings.php:438 msgid "Wave03" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:442 #: inc/vk-blocks/class-vk-blocks-global-settings.php:442 msgid "Wave04" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:452 #: inc/vk-blocks/class-vk-blocks-global-settings.php:452 msgid "Solid Roundcorner" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:468 #: inc/vk-blocks/class-vk-blocks-global-settings.php:468 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:286 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:286 msgid "Post" msgstr "" #. translators: %s: 投稿タイプ名 -#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:290 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 msgid "There are no %ss." msgstr "" -#: dist/vk-blocks-pro/inc/vk-css-optimize/config.php:13 #: inc/vk-css-optimize/config.php:13 msgid "VK Blocks " msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:99 #: vk-blocks.php:99 msgid "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:317 #: vk-blocks.php:316 msgid "License Key has no registered." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:322 #: vk-blocks.php:321 msgid "The VK Blocks Pro license is invalid." msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:346 #: vk-blocks.php:345 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:356 #: vk-blocks.php:355 msgid "Enter the license key" msgstr "" -#: dist/vk-blocks-pro/vk-blocks.php:359 #: vk-blocks.php:358 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:360 #: vk-blocks.php:359 msgid "Re-acquisition of updates" msgstr "" -#: inc/vk-blocks/build/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 -#: src/blocks/page-content/class-vk-blocks-check-using-vk-page-content-block.php:131 -msgid "The following posts contain Page Content Blocks referencing non-public pages" -msgstr "" - -#: inc/vk-blocks/build/blocks/page-content/index.php:55 -#: src/blocks/page-content/index.php:55 -msgid "" -"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.\n" -"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block." -msgstr "" - -#: inc/vk-blocks/build/blocks/page-content/index.php:78 -#: src/blocks/page-content/index.php:78 -msgid "Post not found, not public, or password protected" -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(not recommended)" 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/visual-embed/block.json #: inc/vk-blocks/build/blocks/visual-embed/block.json #: src/blocks/visual-embed/block.json msgctxt "block title" msgid "Visual Embed" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/visual-embed/block.json #: inc/vk-blocks/build/blocks/visual-embed/block.json #: src/blocks/visual-embed/block.json msgctxt "block description" msgid "Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media." 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/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block title" msgid "Blog Card Excerpt" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block description" msgid "Shows an excerpt retrieved from a URL." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block title" msgid "Blog Card Featured Image" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block description" msgid "Displays the featured image obtained from the URL." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block title" msgid "Blog Card Site Logo" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block description" msgid "Displays the site logo image obtained from the URL." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block title" msgid "Blog Card Site Title" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block description" msgid "Displays the site title obtained from the URL." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block title" msgid "Blog Card Title" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block description" msgid "Displays the title obtained from the URL." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block title" msgid "Blog Card" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block description" msgid "Add a block that fetches and displays content from a URL." 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/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block title" msgid "Fixed display" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block description" msgid "Remains fixed on the screen at all times." 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 grid 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-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block title" msgid "Category Badge" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block description" msgid "Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design." msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: src/blocks/_pro/post-list-slider/block.json msgctxt "block title" msgid "Post List Slider" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list-slider/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list-slider/block.json @@ -5222,133 +4981,114 @@ 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/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-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block title" msgid "New Badge" msgstr "" -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block description" msgid "Easily highlight your latest post." 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/blocks/page-content/index.php b/src/blocks/page-content/index.php index 96d2e6bd7..ac7cf7cd6 100644 --- a/src/blocks/page-content/index.php +++ b/src/blocks/page-content/index.php @@ -52,11 +52,8 @@ function vk_blocks_register_block_page_content() { * @return string */ function vk_blocks_get_page_content_private_alert() { - $alert = __( - "The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed. -If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.", - 'vk-blocks-pro' - ); + $alert = __( "The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.", 'vk-blocks-pro' ); + $alert .= __( 'If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.', 'vk-blocks-pro' ); return $alert; } From 2afc66f6cf3a6cb69fba44c9fb848e328e6cf9b9 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Sun, 2 Feb 2025 22:21:09 +0900 Subject: [PATCH 50/53] [ Change version ] 1.95.0.1 --- vk-blocks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vk-blocks.php b/vk-blocks.php index e3ea37a6c..b4e5349f6 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,7 +3,7 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.95.0.0 + * Version: 1.95.0.1 * Stable tag: 1.94.2.2 * Requires at least: 6.4 * Author: Vektor,Inc. From c9e4ddee186ecdc3b8d778ec726f4a9dc6fa61f7 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Sun, 2 Feb 2025 22:57:29 +0900 Subject: [PATCH 51/53] =?UTF-8?q?[=20Change=20version=20]=201.95.0.2=20/?= =?UTF-8?q?=20=E7=BF=BB=E8=A8=B3=E4=BF=AE=E6=AD=A3?= 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-ja.l10n.php | 2 +- languages/vk-blocks-pro-ja.mo | Bin 94313 -> 94313 bytes languages/vk-blocks-pro-ja.po | 4 ++-- languages/vk-blocks-pro.pot | 4 ++-- vk-blocks.php | 2 +- 7 files changed, 8 insertions(+), 8 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 b205503a8..e8c56b980 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 b205503a8..e8c56b980 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index ba8e7ec3f..bd8d9290d 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,2 @@ NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページの参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非表示のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file +return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index 1ce8ec79742a57833cb7981d695a302fbd30ae86..a6c0fa81ab7534a8695b7544d1d009541e9b607a 100644 GIT binary patch delta 33 pcmaF)fc51A)`l&N7JO_^Ti3jt*1g@1k1^kbscF*o^-hetbO8(-4vPQ) delta 33 rcmV++0N(%U;05X61%R{xI1UErp{VDiy0<\n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-02-02T12:53:43+00:00\n" +"POT-Creation-Date: 2025-02-02T13:56:35+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" diff --git a/vk-blocks.php b/vk-blocks.php index b4e5349f6..9411bbe02 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,7 +3,7 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.95.0.1 + * Version: 1.95.0.2 * Stable tag: 1.94.2.2 * Requires at least: 6.4 * Author: Vektor,Inc. From ca20f17cd4f4396010f071a7b04fee35ce6f9d36 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Sun, 2 Feb 2025 23:39:42 +0900 Subject: [PATCH 52/53] =?UTF-8?q?[=20Change=20version=20]=201.95.0.3=20/?= =?UTF-8?q?=20=E7=BF=BB=E8=A8=B3=E8=AA=BF=E6=95=B4=20&=20update=20readme?= 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-ja.l10n.php | 2 +- languages/vk-blocks-pro-ja.mo | Bin 94313 -> 94307 bytes languages/vk-blocks-pro-ja.po | 2 +- languages/vk-blocks-pro.pot | 4 ++-- readme.txt | 3 +-- vk-blocks.php | 2 +- 8 files changed, 8 insertions(+), 9 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 e8c56b980..e9909e379 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 e8c56b980..e9909e379 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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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 Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"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":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"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":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"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":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"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.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"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":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"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":["先祖ページのタイトル"],"Parent 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":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"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.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"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":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"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":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"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":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"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":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," 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.":["吹き出しの配置を指定してください。"],"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":["アイコンの名前"],"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指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"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:":["ボタンの位置:"],"Wide":["幅広"],"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":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"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版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"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 title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"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 link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"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"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"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 greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"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":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"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 )"],"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":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"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":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"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":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"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) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"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":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"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.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"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":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"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(not recommended)":["見出し (非推奨)"],"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\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"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\u0004Fixed display":["固定表示"],"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\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"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\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"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\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"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\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"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 a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"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.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index bd8d9290d..a61acf8d7 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,2 @@ NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成してこの固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file +return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['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 Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','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'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','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'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','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'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','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.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','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'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','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'=>'先祖ページのタイトル','Parent 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'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','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.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','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'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','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'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','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'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','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'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' 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.'=>'吹き出しの配置を指定してください。','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'=>'アイコンの名前','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指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','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:'=>'ボタンの位置:','Wide'=>'幅広','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'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','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版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','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 title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','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 link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','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','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','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 greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','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'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','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 )','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'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','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'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','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'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','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) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','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 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','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.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','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'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis 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 titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index a6c0fa81ab7534a8695b7544d1d009541e9b607a..c1a2bee41169666ef80c9011182aad72db0abe23 100644 GIT binary patch delta 5226 zcmXZgdwkE=9mnzSS6$jf5OKdH5r64 z#dX*iH`w!!EdGq3L8R1CndCcZZrhhYeALUmMynYb4US6mxVh@|jm%)#rJh^Z~yzzfaS(5L=gd<55{64_|a z|7f1Z7SvxsC3fH91}%MWAaN(u`-P~L4Q5k#jKVzB3k$F>uC(|#Y6e$O?XIJ~bqzMa z|DX~MZRMU1MkO#3J7N*4-#1VzunCp;2^R<64GMZ8w6(JXK0};@%5WEI!2S08sKwQI znEJ1*{=+tIg-&2D^`}tpcW>)fvJa}CCs7G!VZ0Z3-YXQeDGs1A{RGwUYt-)jpT*(r zTzxy#N_0gHkYEl#ZN5}Y$9#OaSIpz)b<}u%B#AM;7ezq>$D;;LL%lf0;!-RiUSRPx z^A760|DqC#h|-KauPxTYOjLs7%^Xy_JbVgEFsP((mVyRc+}`&_Us{GN&wtlh!)CSV$> zz5+FaZP*ESn*Tt}q*ko6J}S{>s7=`sm0$wu{UNCKBe51vGP7d?m(esTl-V5fMbw3{ z(yTB)Kqa;ZHQ-_MoYh~m_zr55c^%!c>xWvQ=gr@s`uRgZK}&zqDn3Vj)4QmfFr<^4 zLB3gxxjzWFg9Mtnd)KWi-TB)_D75*6OVKu7#O>C_5 z{|yB#VV!tq2ULSpREHx_iRGXM%tIwM*Pbu6`f}7CqxUU7je760#n-S6@g3CO2sDliL`z&KO~(=0AP&0r4tScXdcdDK#`MYZ3FN^l=)0;f>@T{dr+cQ8=H zA1J6{*yC=g+M<>&5mldu+H6mwI(iwkq~)lku0pjti%Q@ss{Jji{|Plt!`|+_XjJjnx#z1Pv~i)x>SN-P_7%t}!Sl%qcJ zI*Zo_R@jWKc(5It<1ve?E&dVPQXla%-)n-sP*-ajhT~YX0F_`FCg3t0jlaVw*x={B zHxg%|Rv_3b)hX z6KX%r{VX;zpc@$M6~K zKg#{m_|W_TwF0SGE`fAZ|5>Q|i2((DjBM21IRiEDLe#IkH_dX?3v0}EsE*d765ouv z;%blfy+TYtouhYA_4ly=`nH)9WWhrKpRbQ{}E7x8Yn#5O(YA)6PH{3?}rAS*CWRbFc%NgU@PiC z7Eg5@R-%@y-ZXawWuu;-M-9*-*UfAqDuI5?Q4OoJ`iMOKmz-82c{R({VEnI|3ym_H}zZli- zDC)A0E#mHsrO=;3G)_mI>!qj$Z=#Ob7OOvqy43$-_0_0P@&I-0I?Qx`H`7qRKuS>U zUqkix9_kqGvHF8EIsd9SXAM3@4fw6a^=G-`8I9_&3x?oOb1W+1X{dgRQ3L%F)&5mf zg4<9lbpiDWLS{QtW^?|Pc^MUY@f}o$RTlpq_57U0-=Qv$&|;TZYt-?LLA@V`N^qdX z!>|)^E-InrsQ0&^`rR8)(2JL>qQ)A8|H2*1_NauC%web{oq#%~vn-x#E=8^28q~3_ zvieh~ey*Ta>PxfNJ$vAlxCb@7Cw254e&YqQ;|nS){;{?+JC%_Lg%!3caEHP;QO z6i#3YUPJX1Tk3}HhKl>5MoL0m-pQ!7%S26a5^8CREnbX1@#<24>cbb;P@y~V9n{<^ yP=DaIS$&n&??!cW2(=~`Q3HQ#-b4Knc!1N<-}PK-^2s%a2Kmu@KWpGGpZ zE44mq5g%OeJTJb1?`_6<4SlZ~KgK;+5bArYF(%CU36>LQh5OzT`~n+dQH1Z+$5L#J zD=`E&VmNNL=bu>o7mF`M_<`4%7j9C~4xYf+zpYCjD1-dv2s4FQGL6prE~yp4S@qp2HsiCKm|_3z=6xCxcW z7JL3@^9(kn{yHkLM;14V^1T$|uBi5fsFe*~rtma{1*is#F$v2pK8c#ab<}&eQQx`- z8{iYoT*6_f=YvrRjK)|jLiM{EwE|mFiJx+D;N79124T&eow0;C6_w#0)PM)<`EiSH z;34Y2vHD#t+zOq-snnlFwNGs6Rx%mY&kLv(&c*~U@VvJuXj2?SW%@bl#cxr&_o-Gc zjx^h&X4)M!KwonpYV&1aIu_thd&N9y-bRgAyETb1z86bD11F&d&O|jFXK@MU5ihp* zmU$o5?#VVTp(sosj>g(J3YFkQGZ&S3KIY5*_er{ zuSCsYJ9fa`<`vXT>clw1QHi!dZOSgF1pA`e4@JE{8lS)^W=>4tGMY|>GMi^ELtPl< zW~KQNDzSa20sm^AxB6Qa-$!k-kXU!@`lD9pRr6g`KYt1+XzBlE6ybF7}~+j zpuj9fT_6il?^U8U(_ZsDs^jlar>a&*ceA!a-7gdHSGWgt9D}q@u26tl;x};??nYh7 zF`a$ydCb8ta4QbNHF0i$i>OUkgSud1ySV!!50$`roQl<`Jrvp1^*#UM9fSI|xv1xbsHOfTYNa-yR`@fljW|JELC6Ky^40l~^unzTxtFJ))F?!$PGpKe~Exv^9#;A53QSU#O z$oW_1qo~l*7NQ1z1+|$rp*GERT!&FT-2gjLGv9}rzy+(ni|Vfi)n9{N&gQ7ZI-2pQ zPmt7$^RHb$hYDp>j_P=`c?30+8>pE-M0FgJcb zMvFHER@jEkc(4N_@r1=UEcSc*UQ6nuuo3n~U9FiIhU3jys02%~7p}w+_(z<8jeh2P z!*C921%d+4a^0rQ9-q;vj1q%iGyH`A~TxBEMwuF4eD zJunfqgugL&;!)xgI1npd@V)o(5{|&v2D^LX9O~26&vX-sK<$-SRH6ejx%<`eFe>zI zXQJW-s07|ZEnyYv7tE!yKK+^px~%U}qplyA{t&l)>zJXa=S|JlW-Myxt{8>M<|un! zgxdZksGB0dwz$NeZyLgyspD-_DAgV2G1L^U+lw`*xjwY#O^3QQ?v84gjv8nx>L$rY z4YUB&t^)NFs2cU&K~(?8hH_`BaFGff*gL477WYtzjTq*85jf5)G#8nxQFr1NEXEU9 zf&+%TUmCkiFUze!1}cFesQ$A9doUUGDRNME=S06ZIQwKWe*&WV@Ru4ORa#s@-1XdEninpbUGCbxZjMCKG>*Y4{cDA8|?J zoQ0^XtkU9>IF&eLyzf=v4AcQ_GQs_ifFe{PkrUlSvT+P?#ZPhIdH=HqJtw&V=Hnq= zs6rjc;>oVVov0;yW{SIla!}7Npay6))y-@&DuHqwi~mLa%FLMNKEWHP2_2A(?|n-_ z4Z7vHt7a*VBtD0_E4$>nrCao(TdB`bzanF%y8-87B5@UJ4_rkJ*gwzr*5Fc9;w@*m z_Qk08j$@$PK5nM(#oz#Jhci&;dIjqFTGTQ7!0Hd9F7>}#{SDM7d5k)ConLZ)H#1Sc zK<1*}FGKbBJJc!I_Y&t{4-Q+!d3)g+YQXO;4$pVTvm>g*1gwk0%<-s%r=vP9Mh)}} z)ce0iCAb~6QWsI5Ahdw96J!_p%Pk!YX3n%K})tD)$p>#HTFVep*xlxPzj})!%-_Y33W{8SUlfcfm*@! zsAFAi^`}w&Tt}@`r?0K>&>n;oxeF!&b@4=^2545caA0(xny&UF!JZ`IIO>xz0^df> zbu%i3Q#b%`p?Zp&?S}4wiuP~zI zHMdICAGqySUv2e!Q5_vYt;r=+`|r(%s6PUaaT?a1\n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-02-02T13:56:35+00:00\n" +"POT-Creation-Date: 2025-02-02T14:06:38+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" diff --git a/readme.txt b/readme.txt index 35ee807a0..5cf6a6bc2 100644 --- a/readme.txt +++ b/readme.txt @@ -109,11 +109,10 @@ e.g. == Changelog == = 1.95.0 = -[ Add function ][ Slider ] Added noreferrer, nofollow, and link description options to the link feature. [ Add function ][ Icon / Slider ] Added noreferrer, nofollow, and link description options to the link feature. -[ Editor Design Bug Fix ] [ Grid Column (Pro) ] Fixed an issue where the 'is-vertical' layout of grid column items was not displayed vertically. [ Add function ][ Core Table ] Add table cell vertical setting. [ Specification Change ][ Page Content ] Modify the specification so that the display is shown only when the referenced page is public. +[ Editor Design Bug Fix ] [ Grid Column (Pro) ] Fixed an issue where the 'is-vertical' layout of grid column items was not displayed vertically. = 1.94.2 = [ Bug fix / Specification Change ][ Visual Embed ] Strengthened validation for XSS protection and restricted the range of allowed URLs. diff --git a/vk-blocks.php b/vk-blocks.php index 9411bbe02..c779bcbb3 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,7 +3,7 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.95.0.2 + * Version: 1.95.0.3 * Stable tag: 1.94.2.2 * Requires at least: 6.4 * Author: Vektor,Inc. From 67fd3e43cc121613ff26a11a69c3cd78a2a23c29 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Mon, 3 Feb 2025 00:10:50 +0900 Subject: [PATCH 53/53] [ Change version ] 1.95.0.4 --- readme.txt | 2 +- vk-blocks.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 5cf6a6bc2..15dc32b26 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: Tags: Gutenberg,FAQ,alert Requires at least: 6.4 Tested up to: 6.7 -Stable tag: 1.94.2.2 +Stable tag: 1.95.0.4 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/vk-blocks.php b/vk-blocks.php index c779bcbb3..c21c20e53 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,8 +3,8 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.95.0.3 - * Stable tag: 1.94.2.2 + * Version: 1.95.0.4 + * Stable tag: 1.95.0.4 * Requires at least: 6.4 * Author: Vektor,Inc. * Author URI: https://vektor-inc.co.jp