From dff40c8c88aed05fbd47b571153e2a7a7d38d22e Mon Sep 17 00:00:00 2001 From: osmdik Date: Sat, 21 Oct 2023 08:42:18 +0900 Subject: [PATCH 01/12] add : parent page title --- readme.txt | 2 ++ src/blocks/_pro/dynamic-text/block.json | 4 +++ src/blocks/_pro/dynamic-text/edit.js | 38 ++++++++++++++++++++++++- src/blocks/_pro/dynamic-text/index.php | 19 +++++++++++++ 4 files changed, 62 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index fbf389cd2..f915c0fe5 100644 --- a/readme.txt +++ b/readme.txt @@ -102,6 +102,8 @@ e.g. == Changelog == +[ Add Function ][ Dynamic Text Block (Pro) ] Added option to display parent page title. + = 1.63.0 = [ Add Function ][ Blog Card (Pro) ] Add block variation function. [ Add filter ][ Post List (Pro) ] Add vk_blocks_post_list_query_args filter hook. diff --git a/src/blocks/_pro/dynamic-text/block.json b/src/blocks/_pro/dynamic-text/block.json index ce38e6c74..50a250e1d 100644 --- a/src/blocks/_pro/dynamic-text/block.json +++ b/src/blocks/_pro/dynamic-text/block.json @@ -21,6 +21,10 @@ "type": "boolean", "default": true }, + "parentPageHiddenOption": { + "type": "boolean", + "default": true + }, "customFieldName": { "type": "string", "default": null diff --git a/src/blocks/_pro/dynamic-text/edit.js b/src/blocks/_pro/dynamic-text/edit.js index 95ae22353..2df452cea 100644 --- a/src/blocks/_pro/dynamic-text/edit.js +++ b/src/blocks/_pro/dynamic-text/edit.js @@ -83,12 +83,14 @@ export default function DynamicTextEdit(props) { displayElement, tagName: TagName = '', ancestorPageHiddenOption, + parentPageHiddenOption, customFieldName, fieldType, isLinkSet, isLinkTarget, } = attributes; attributes.ancestorPageHiddenOption = ancestorPageHiddenOption; + attributes.parentPageHiddenOption = parentPageHiddenOption; attributes.isLinkSet = isLinkSet; attributes.isLinkTarget = isLinkTarget; @@ -121,6 +123,10 @@ export default function DynamicTextEdit(props) { editContent = ( {__('Ancestor Page Title', 'vk-blocks-pro')} ); + } else if (displayElement === 'parent-page' && !parentPageId) { + editContent = ( + {__('Parent Page Title', 'vk-blocks-pro')} + ); } else if (displayElement === 'custom-field' && !postType) { editContent = ( @@ -190,6 +196,13 @@ export default function DynamicTextEdit(props) { 'vk-blocks-pro' ), }, + { + value: 'parent-page', + label: __( + 'Page name in the parent hierarchy of the displayed page', + 'vk-blocks-pro' + ), + }, { value: 'custom-field', label: __('Custom Field', 'vk-blocks-pro'), @@ -221,7 +234,30 @@ export default function DynamicTextEdit(props) { )} )} - + {displayElement === 'parent-page' && ( + + + setAttributes({ + parentPageHiddenOption: v, + }) + } + /> + {parentPageHiddenOption && ( +
+ {__( + 'This block will not display on pages other than pages that have a parent hierarchy.', + 'vk-blocks-pro' + )} +
+ )} +
+ )} {displayElement === 'custom-field' && ( 'please-select', 'tagName' => 'div', 'ancestorPageHiddenOption' => null, + 'parentPageHiddenOption' => null, 'customFieldName' => null, 'fieldType' => 'text', 'isLinkSet' => false, @@ -116,6 +117,20 @@ function vk_blocks_dynamic_text_render_callback( $attributes, $content, $block ) $ancestor_post_title = get_post( $post->ID )->post_title; } $block_content .= $ancestor_post_title; + } elseif ( 'parent-page' === $attributes['displayElement'] ) { + $post = get_post(); + // 親ページがない(=先祖階層) && 親ページを非表示にするオプションが有効の場合は処理を終了. + if ( empty( $post->post_parent ) && $attributes['parentPageHiddenOption'] ) { + return; + } + + $parent_post_title = ''; + if ( ! empty( $post ) && ! empty( $post->post_parent ) ) { + $parent_post_title = get_post( $post->post_parent )->post_title; + } elseif ( ! empty( $post ) ){ + $parent_post_title = get_post( $post )->post_title; + } + $block_content .= $parent_post_title; } elseif ( 'custom-field' === $attributes['displayElement'] ) { $block_content .= vk_blocks_dynamic_text_custom_field_render( $attributes, $content, $block ); } @@ -169,6 +184,10 @@ function vk_blocks_register_block_dynamic_text() { 'type' => 'boolean', 'default' => true, ), + 'parentPageHiddenOption' => array( + 'type' => 'boolean', + 'default' => true, + ), 'customFieldName' => array( 'type' => 'string', 'default' => '', From 659a7b5bfc316352bb7e2b9323a69f403952860d Mon Sep 17 00:00:00 2001 From: osmdik Date: Sat, 21 Oct 2023 08:43:01 +0900 Subject: [PATCH 02/12] fix --- src/blocks/_pro/dynamic-text/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/_pro/dynamic-text/index.php b/src/blocks/_pro/dynamic-text/index.php index b8eb5b6c2..6dcc95f5f 100644 --- a/src/blocks/_pro/dynamic-text/index.php +++ b/src/blocks/_pro/dynamic-text/index.php @@ -127,7 +127,7 @@ function vk_blocks_dynamic_text_render_callback( $attributes, $content, $block ) $parent_post_title = ''; if ( ! empty( $post ) && ! empty( $post->post_parent ) ) { $parent_post_title = get_post( $post->post_parent )->post_title; - } elseif ( ! empty( $post ) ){ + } elseif ( ! empty( $post ) ) { $parent_post_title = get_post( $post )->post_title; } $block_content .= $parent_post_title; @@ -184,7 +184,7 @@ function vk_blocks_register_block_dynamic_text() { 'type' => 'boolean', 'default' => true, ), - 'parentPageHiddenOption' => array( + 'parentPageHiddenOption' => array( 'type' => 'boolean', 'default' => true, ), From 66f3ca8d066b2da3bde7e9bc45b6d56fe8f3292c Mon Sep 17 00:00:00 2001 From: osmdik Date: Sat, 21 Oct 2023 08:50:44 +0900 Subject: [PATCH 03/12] add : test --- test/phpunit/pro/test-dynamic-text.php | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/test/phpunit/pro/test-dynamic-text.php b/test/phpunit/pro/test-dynamic-text.php index edda84b54..81578b9a1 100644 --- a/test/phpunit/pro/test-dynamic-text.php +++ b/test/phpunit/pro/test-dynamic-text.php @@ -116,6 +116,36 @@ public function test_vk_blocks_dynamic_text_render_callback() { 'target_url' => get_permalink( $data['child_page_id'] ), 'correct' => 'ancestor_page', ), + // 親ページが無いときは何も返さない + array( + 'attributes' => array( + 'displayElement' => 'parent-page', + 'tagName' => 'h2', + 'parentPageHiddenOption' => true, + ), + 'target_url' => get_permalink( $data['ancestor_page_id'] ), + 'correct' => null, + ), + // 親ページのタイトル + array( + 'attributes' => array( + 'displayElement' => 'parent-page', + 'tagName' => 'h3', + 'parentPageHiddenOption' => false, + ), + 'target_url' => get_permalink( $data['parent_page_id'] ), + 'correct' => '

ancestor_page

', + ), + // 親ページのタイトル(先祖ページ) + array( + 'attributes' => array( + 'displayElement' => 'parent-page', + 'tagName' => 'span', + 'parentPageHiddenOption' => true, + ), + 'target_url' => get_permalink( $data['child_page_id'] ), + 'correct' => 'parent_page', + ), // カスタムフィールド - テキスト array( From dba0292d7daf6f0e45b7ba21e2daaef2c446f3b1 Mon Sep 17 00:00:00 2001 From: osmdik Date: Sat, 21 Oct 2023 08:58:29 +0900 Subject: [PATCH 04/12] fix : test --- test/phpunit/pro/test-dynamic-text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/phpunit/pro/test-dynamic-text.php b/test/phpunit/pro/test-dynamic-text.php index 81578b9a1..3916790d6 100644 --- a/test/phpunit/pro/test-dynamic-text.php +++ b/test/phpunit/pro/test-dynamic-text.php @@ -136,7 +136,7 @@ public function test_vk_blocks_dynamic_text_render_callback() { 'target_url' => get_permalink( $data['parent_page_id'] ), 'correct' => '

ancestor_page

', ), - // 親ページのタイトル(先祖ページ) + // 親ページのタイトル(先祖ページ有り) array( 'attributes' => array( 'displayElement' => 'parent-page', From 7fbaaf61bc6519182cd6f974b6eeee0e7846d310 Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Mon, 23 Oct 2023 17:55:12 +0900 Subject: [PATCH 05/12] =?UTF-8?q?fix:=20XSS=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/ancestor-page-list/edit.js | 27 +++++++++++++++++++------ src/blocks/ancestor-page-list/index.php | 10 ++++++++- 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/src/blocks/ancestor-page-list/edit.js b/src/blocks/ancestor-page-list/edit.js index 588cc536b..0894f9ed5 100644 --- a/src/blocks/ancestor-page-list/edit.js +++ b/src/blocks/ancestor-page-list/edit.js @@ -23,6 +23,14 @@ export default function PostListEdit(props) { const blockProps = useBlockProps(); + const matches = ancestorTitleTagName.match(/^(h[2-6]).*/); + setAttributes({ ancestorTitleTagName: matches[1] }); + + const sanitizedValue = ancestorTitleClassName?.replace( + /[^a-zA-Z0-9-_ ]/g, + '' + ); + setAttributes({ ancestorTitleClassName: sanitizedValue }); return ( <> @@ -42,9 +50,10 @@ export default function PostListEdit(props) { - setAttributes({ ancestorTitleTagName: value }) - } + onChange={(value) => { + const _matches = value.match(/^(h[2-6]).*/); + setAttributes({ ancestorTitleTagName: _matches[0] }); + }} options={[ { value: 'h2', @@ -75,9 +84,15 @@ export default function PostListEdit(props) { )} value={ancestorTitleClassName} className={`mt-0 mb-3`} - onChange={(value) => - setAttributes({ ancestorTitleClassName: value }) - } + onChange={(value) => { + const _sanitizedValue = value.replace( + /[^a-zA-Z0-9-_ ]/g, + '' + ); + setAttributes({ + ancestorTitleClassName: _sanitizedValue, + }); + }} /> '; From 0c83602fb21343f4170989c2ed08e285543dc90e Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Mon, 23 Oct 2023 17:55:36 +0900 Subject: [PATCH 06/12] lint --- src/blocks/ancestor-page-list/edit.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/blocks/ancestor-page-list/edit.js b/src/blocks/ancestor-page-list/edit.js index 0894f9ed5..39e7ddb7d 100644 --- a/src/blocks/ancestor-page-list/edit.js +++ b/src/blocks/ancestor-page-list/edit.js @@ -52,7 +52,9 @@ export default function PostListEdit(props) { value={ancestorTitleTagName} onChange={(value) => { const _matches = value.match(/^(h[2-6]).*/); - setAttributes({ ancestorTitleTagName: _matches[0] }); + setAttributes({ + ancestorTitleTagName: _matches[0], + }); }} options={[ { From ad29fa70951e7d5518aac5ff68c6081ebbe89bdc Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Mon, 23 Oct 2023 17:56:44 +0900 Subject: [PATCH 07/12] fix: phpcs --- src/blocks/ancestor-page-list/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/ancestor-page-list/index.php b/src/blocks/ancestor-page-list/index.php index d0b69f4ed..8e2631b39 100644 --- a/src/blocks/ancestor-page-list/index.php +++ b/src/blocks/ancestor-page-list/index.php @@ -50,7 +50,7 @@ function vk_blocks_get_ancestor_page_list_title( $attributes ) { $tag_name = $attributes['ancestorTitleTagName']; // h1 から h7 のいずれかから始まる文字列をマッチング - if (preg_match('/^(h[2-6])/', $tag_name, $matches)) { + if ( preg_match( '/^(h[2-6])/', $tag_name, $matches ) ) { $tag_name = $matches[1]; } else { $tag_name = ''; @@ -59,7 +59,7 @@ function vk_blocks_get_ancestor_page_list_title( $attributes ) { // Ancestor Title Class. $class = 'vk_ancestorPageList_title'; if ( ! empty( $attributes['ancestorTitleClassName'] ) ) { - $class .= ' ' . preg_replace("/[^A-Za-z0-9_\-\/ ]/", "", $attributes['ancestorTitleClassName']); + $class .= ' ' . preg_replace( '/[^A-Za-z0-9_\-\/ ]/', '', $attributes['ancestorTitleClassName'] ); } $title .= '<' . $tag_name . ' class="' . $class . '">'; From fc058c8f09405fd779ef097fe6a62321da58fd6f Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Mon, 23 Oct 2023 18:13:03 +0900 Subject: [PATCH 08/12] fix: readme --- readme.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.txt b/readme.txt index fbf389cd2..9ed87f9a4 100644 --- a/readme.txt +++ b/readme.txt @@ -102,6 +102,8 @@ e.g. == Changelog == +[ Bug fix ][ Page list from ancestor ] Fixed XSS issue. + = 1.63.0 = [ Add Function ][ Blog Card (Pro) ] Add block variation function. [ Add filter ][ Post List (Pro) ] Add vk_blocks_post_list_query_args filter hook. From f43afd83c92d3b9227250d2e2acd31070b38cd54 Mon Sep 17 00:00:00 2001 From: Taichi Maruyama Date: Mon, 23 Oct 2023 18:15:05 +0900 Subject: [PATCH 09/12] fix:readme --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index 9ed87f9a4..9d83f344a 100644 --- a/readme.txt +++ b/readme.txt @@ -102,6 +102,7 @@ e.g. == Changelog == + [ Bug fix ][ Page list from ancestor ] Fixed XSS issue. = 1.63.0 = From fa4201d25b251fee77172b6da6fe2ac6bde30c84 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Tue, 24 Oct 2023 15:30:30 +0900 Subject: [PATCH 10/12] =?UTF-8?q?Dynamic=20Text=20Block=20:=20=E8=A3=9C?= =?UTF-8?q?=E8=B6=B3=E6=96=87=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/_pro/dynamic-text/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/_pro/dynamic-text/edit.js b/src/blocks/_pro/dynamic-text/edit.js index 2df452cea..90e446b69 100644 --- a/src/blocks/_pro/dynamic-text/edit.js +++ b/src/blocks/_pro/dynamic-text/edit.js @@ -227,7 +227,7 @@ export default function DynamicTextEdit(props) { {ancestorPageHiddenOption && (
{__( - 'This block will not display on pages other than pages that have a parent hierarchy.', + 'This block is not displayed on pages without a parent page.', 'vk-blocks-pro' )}
From a457417737d6699f147b2c9d6ea48160d4c1ac5e Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 25 Oct 2023 01:14:20 +0900 Subject: [PATCH 11/12] =?UTF-8?q?=E7=BF=BB=E8=A8=B3=E3=82=A2=E3=83=83?= =?UTF-8?q?=E3=83=97=E3=83=87=E3=83=BC=E3=83=88?= 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.mo | Bin 73940 -> 78028 bytes languages/vk-blocks-pro-ja.po | 684 ++++++++++++------ languages/vk-blocks-pro-js.pot | 102 +-- languages/vk-blocks-pro.pot | 122 ++-- 6 files changed, 600 insertions(+), 312 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 5fb383f8a..2fdd037b4 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesomeカスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQ ブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"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.":[""],"Aspect ratio":[""],"Original":[""],"16:9":[""],"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.":["パターンを選択します。元のブロック設定はクリアされます。"],"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://ja.wordpress.org/team/handbook/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…":[""],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"端末毎に設定":[""],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"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":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"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":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"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":["my-variation"],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":["インサーターに表示されます。 インサーターについてさらに詳しく."],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":["https://ja.wordpress.org/support/article/adding-a-new-block/#%e3%82%a4%e3%83%b3%e3%82%b5%e3%83%bc%e3%82%bf%e3%83%bc%e3%81%a8%e3%81%af"],"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":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"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":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":[""],"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":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\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\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\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\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\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest content or products with the 'New Badge' feature.":["新着記事を強調するバッジです。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesomeカスタムリスト設定"],"Custom Block Variation 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":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQ ブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"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.":[""],"Aspect ratio":[""],"Original":[""],"16:9":[""],"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.":["パターンを選択します。元のブロック設定はクリアされます。"],"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://ja.wordpress.org/team/handbook/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…":[""],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"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":["表示されているページの親階層のページ名"],"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.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"端末毎に設定":[""],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"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":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"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":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"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.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"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":["my-variation"],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":["インサーターに表示されます。 インサーターについてさらに詳しく."],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":["https://ja.wordpress.org/support/article/adding-a-new-block/#%e3%82%a4%e3%83%b3%e3%82%b5%e3%83%bc%e3%82%bf%e3%83%bc%e3%81%a8%e3%81%af"],"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":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"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":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":[""],"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":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block 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\u0004New Badge":["新着バッジ"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"],"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\u0004Easily highlight your latest content or products with the 'New Badge' feature.":["新着記事を強調するバッジです。"]}}} \ 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 5fb383f8a..2fdd037b4 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesomeカスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Import Export Tool":["インポート エクスポート ツール"],"License Key":["ライセンスキー"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQ ブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"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.":[""],"Aspect ratio":[""],"Original":[""],"16:9":[""],"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.":["パターンを選択します。元のブロック設定はクリアされます。"],"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://ja.wordpress.org/team/handbook/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…":[""],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタム フィールド名が指定されていないためこのブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つページ以外の固定ページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"端末毎に設定":[""],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"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":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"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":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"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":["my-variation"],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":["インサーターに表示されます。 インサーターについてさらに詳しく."],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":["https://ja.wordpress.org/support/article/adding-a-new-block/#%e3%82%a4%e3%83%b3%e3%82%b5%e3%83%bc%e3%82%bf%e3%83%bc%e3%81%a8%e3%81%af"],"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":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"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":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":[""],"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":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\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\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\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\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\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest content or products with the 'New Badge' feature.":["新着記事を強調するバッジです。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイル設定を追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"Block style settings can be registered.":["ブロックスタイル設定を登録することができます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%sをエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["変更した設定が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替え"],"Invalid JSON file":["無効なJSONファイル"],"Unknown error":["不明なエラー"],"Import data confirmation":["インポートデータ確認"],"No import data":["インポートデータがありません"],"Import %s":["%sをインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["以下のデータは識別子が被っているためインポートしません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesomeカスタムリスト設定"],"Custom Block Variation 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":["余白"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQ ブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"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.":[""],"Aspect ratio":[""],"Original":[""],"16:9":[""],"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.":["パターンを選択します。元のブロック設定はクリアされます。"],"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://ja.wordpress.org/team/handbook/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…":[""],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認ください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"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":["表示されているページの親階層のページ名"],"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.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Custom Field Name":["カスタムフィールド名"],"Field Type":["フィールドタイプ"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["WYSIWYG"],"Setting up a link":["リンクを設定する"],"Open link new tab.":["リンクを別ウィンドウで開く"],"HTML element":["HTML 要素"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"端末毎に設定":[""],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Unit Type":["単位"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"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":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"Display type":["表示タイプ"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"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":["ラベル"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"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.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["丸抜き"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Please enter a title.":["見出しを入力してください。"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"Transparent":["透過"],"White":["白"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Accordion Setting":["アコーディオン設定"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコ―ディオン設定は管理画面の 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading style":["見出しスタイル"],"Plain":["装飾無し"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Fit to the Container area":["コンテナエリアに合わせる"],"Add padding to the Slider area":["スライダーアイテムエリア内に余白を追加する"],"Remove padding from the Slider area":["スライダーアイテムエリア内の余白を無くす"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.":["スライドをループする場合、配置されるスライド アイテムの数は、ビューごとに表示するアイテムの数の少なくとも 2 倍である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Full Wide":["全幅"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Link target":["リンクターゲット"],"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":["my-variation"],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":["インサーターに表示されます。 インサーターについてさらに詳しく."],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":["https://ja.wordpress.org/support/article/adding-a-new-block/#%e3%82%a4%e3%83%b3%e3%82%b5%e3%83%bc%e3%82%bf%e3%83%bc%e3%81%a8%e3%81%af"],"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":["特大"],"Top XL":["上 XL"],"Margin the block":["ブロックの余白"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"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":["アイコンを選択"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Setting":["設定"],"Blocks":["Blocks"],"Blocks Layout":["ブロックレイアウト"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":[""],"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":["見出し"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Post list":["投稿リスト"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block 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\u0004New Badge":["新着バッジ"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004One item in a grit column block.":["グリッドカラムブロック内の1つのアイテムです。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"],"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\u0004Easily highlight your latest content or products with the 'New Badge' feature.":["新着記事を強調するバッジです。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index 945b3ae538ee452ac7c1f31fc5b940f264006ff5..0ec198d5c1913392fd9b056890be5af912c75443 100644 GIT binary patch delta 22207 zcmbu`cXU)$qxbPMNeG=#LJei;3M8RQkq#ogN-r`=1_-2)LJ@IDg3^l&O_3%b2m<0z zL^>!%u?r#~B10&mfIM~(-tTYDj`H}r?)~GQwRS$cpWV)xNyIM>g`E60#B-r|$Rdj? zHQ2Js;~No{wLHYKnm1OiWxd(SvI^riEQtrOIG(~(yoSASaA(VEh?|it>k`t9Ri}$( zRl<76Ev#O~zP27~pvf3&bQ#^ocq~T4M3eTIbT)>QzsTfo#8RZUnDX~f1O5_A;15_3 z9bN4K6~+pd$Fd@cRHUE_I&n0z2-Yktfa@^~-@-h27}e2ndW0@*GreWXL%Lg5A=0HV8mpq}^})h8 z(3FqFP}1qBflWf)cq*30Md;B8HxtoP9Wn)9qDFcP)gY*cWtGJesFjJts@MsuV4^9X zZ`_FL?_JcHI*aP>SCe0$r#)e3Pu4$-g1TgADO=-a9FNnnIwwm@y#?#yJH{JWhjjVg z_KZ7W5z_rldIajQrK4760%}0dp|)Zn7Dr!i)?YI^N=8k*gj%u!ee8~lp*pT)j6$92 z7N~k{u_$&zE&U+W){H{6%P>wg&Kq8EU2%Q5}4bjqrEOkI_%rd)U<2 z*4V}P6sq1(<4DvVk3|h+25P`dQT?w(t%&ChQ{gabCZC%0B~-;9Q8T-b8epNmwq;QH z)ll{7qqee@$?t)>@laH|1Pp8iYM{?yZSHSPC!&#U$Go@)wZunIOLZKzS7%W-`~fx4 zyQs&rP(OQRN~8L5V&L&Z4XiDOV-M5-;!OVNfb9QxB2g4f#g^zpb#w^3sLQNqYm3~)Cyn4l6VU}dVcc^vTyhZ>P7Jw zYKE<_GCqM?k&&n+O)}+^OnxSoBY!&TMr%-8a~L(T4^izd8h=1-?H_~Kf6cVeV0%R6 zP!;PMTcDP{GwMwALk(oGNynJ30CmU;4Y5aB0X2|llYSgoJ*yj*!1Wk7ycj|H2&$iNO!@bym9U1|TUP=#z^Wc1 zs@NO@FA|d;WGalrI+RbrcDNa}_djAebPThsN3c9<0#BgwyPEV!lTJcy^$gV3yn$L# z&n_Z*9`_oLq6YK{YN@_P&Fp(r2S1_CMCqs57Ho<-^;1!Y>Pu9|KcM=(gE~|9Q2pc? zZuegp8L-DHM?@7X8*8HuMLs1puNH;@uxDqvkEvOsrLLJ(}sHfx;)C5kO^hMNGTtN-& z2UGqBs(na|ogaopxxZDOh&qf!HGCX3(zaM02cZttc%#?2)%bz&Dyn{PtbInDs4c0B zTEPyemFR*_bfc#tkr#+)sn?;FejBR65!4KhqXu@$c;4toE%A4#c6U)TEX?w03(BBY zrVgr~$4t5%K2Ew@9P599$P6+T;V8Fd?ZErk4Y!YA|1oH!WwpW1*c@kLdpv@TxN3B32YDF?pD>xgqB3@McnFy1reg_G?w5`jf1Z-5#=TU7h*CVvQOYsR1kG8t8GI%?pag+$cBYRrdkqE7X0 z48sGcfqjfROxI8y-p4LjG{yerGz2xnshAgMp##0B{uW_XT!yN50J*QnI%-F(Q>c+$ z#>#jbwF1S*+9NM*tb(c+i8{PZO?m+8MscW#j7BYWnn_PawR^$10E_AQUqK{{f;Ul* z-9gk$&lqoF2ht&__JF#eZqyUiVLvQ}G59Q|qxSws)C%O`K()ZUsF^>3+M=#lM9=>q zB9CG`)R>SHMU#wbHyd?^7NG{T7PWP6pa#4R8{yly z9dDxAuNlYs>qT&IoL%uA>W~DFw+B)aYm;t_TA^6fip(+PD~wxEH{6f;@#`q0t#HF9H_pl~vKy6S1=xEY|P+QS zpjLDZcEFvet@{(ZW6jC-;U0&>_53d)q9y+YwTBN-GYNUlKBXnFCg}>OdQYHMpgU^C z`l1e9jB&KdPesktgX(V%s@*GC7S~__J^%ZNXynIHhwlceVi;vwvQnsy%A-1}g_?0w zQ$EZXhgy1lrl|fn)WD{q9=F-3_rYSUflD!jU>)FxX7aA_Q`BL(fLh91s1Aar*eg&7 zHNcXn84+GEt3L;wCH&Gq$MpZnBT7l!nkFX-? zFHjx)$E1TY?EzOtZDD;>yT(`nTcDnb!KeX`K;17jll9l>o|y>?R5>TjIB`vh(R67q%4+p6_KT6tiYz(91uK%8ga%{ z`vy~RBZBcFQCrI4b)QJL+x>%7wj2FpjN06hG1vZKzg7iHWW2r&nO~V!c_bi zv#>h$o@RfTOu(+B&*CktIo{=jI7ZCjnaBRv2A5+y{094A)wz7l!ttmT$-&zA3$DT{ z^Z2fSNAMH;5o7T1d<}&Cul}OFM1wF71y7?oa$`Xphgz~MER1uo94Z%byOQQphl=0wL^8>8FhyG zVIdrbdS#C>dW>H5XlCn)sH3;AI37fG^f?y6Z%{Y9Y5Wa!gCMW{7n1_0fp$U-q`R@N zafmS%^*$Jl197^S^>0Gt5*bY~VxhgHeNiJHjOuul$xp=cq|-16=NrAK8!yJ@xE$-@ zS!{)c7TIT~E4C#)7dzmmi&+2GM9M7Y%LNWZ&2%4j#ADb4i!R}V28Ux^+=&|aRqTS! zrS>l*3D}bKHf)5q@ky-llKltHB#b7#4t1zcd5F{?67e#xO>B$mAOm&!x1&aU8+D2s zEVEC)3&)UNheNR#Z!O+gRx)S8HZU1+G#n^=OHIuIVs{Oqo4SSNm$#@Tk>G|)r zhA*5Hyn*U)(^`8#dDhv#ijBYq1=f4X>5zl*W2$C4{BhSu_U(N zV4s~qSb_9-41E7zL_`(VV;S6s#qqSszm96~0IOkz*X_UKwM8fC7>vMdEQKqLJ5l|7 zi0bzu>b>$i>V5?_(#}J~Nu)G3M^$_Z)ls5JPenCcj;gl>%i~e3jDDmh=mcV7Gezu|pa1cG^h@2*(8~$ht^1WdYuMwq_p$?u$b+8P>akud!EKAytdGJpxjKN#%_dqcW zCLM0lWsDKVipI*uYQ~ydSpQHO)*?fPuO4ctW}#-h5;fCf_!M5mHrQyZJ&^In$*7gg zMh$EQ7Qi=*yRZ=H!>9>=jJoed4-p5Es~CjWQ8W48RJe^=s$WrW!u)UA7QuX^OQ6cj zquNJdUaW^tVpA+Zhnc7WEb`ea`zorPXBUy_L{8v1?7iKxhA53`SYwBM!jEah&(kO>o+1gEa5xtf(EFiZ-yl?2KCrYK-F80+LFE4 z6i;DY4BKVD>s#Yvq^F>sj$Npke}%R1ib)rHTm7^D6^UrZ4N(nVL_N4$@@}a7c+`NWoAjHe{9}{8ftqoFckKGbQ1_{eW%T^_CejYapek-f&3vaS;7QDn zIjEW3GUsI5GKTG^ZXS${2E`2+Ti+ZzX9De@Cg zhbP`YQXbQkL4!gZdCcPgC0Bb5gD4%DOAOq zs3pH=(xHd!Z^_|Ul>BO_dW}%++MxzK1j8^5HQ;RQj`LCdeS>;|T{qtHn8?q@yQq;l z4%_C#%A~_kFO+(yj+&!BTsolkd?1#^WYiYUKn-NMNpD6C@DQrq8KdV05zXkn$p|}Q z?|Bu}%-Wzj8iZ;%8a0E-7?>f}COscjZ!fCeNes*wHNfjw5g(u?RPo(F{~oI~5j7lW zj7P1&M2y5Ks1CQF_VN(w#$Tfb{vB$dcd;pkzh}RyyQ2oM26e;DsCpmc9K43Xdj7{9 zwJSbjoQhdgn2VZOv17I^usZ2@tby}PdM7?Y`aEi;d5+ryjX=$~F=~SSP!kz}HE|-A z6JLe2OR*1@7D>>0H{H5`xCa3740mH7!n(eb`rFCR80T^yC) z8P#7e^yDWJM??*iuoh0j2KX9k6V9&4=YKHYu?R%k?co?ePc+{3nL$zOn z8o+Mj!4Fvf5HgOLjFYIn`rM>{Ms;}4q)VQ(J1UO_$ghu@NefiFo~Rq7q6RP#HNY9D z0cF)S$zMb_e}XTQL+1;Ve`KOHF!eQH1F-LNR>KB%pVL)|dmn1X@Bi5l2U zlm99fBmFw+#k2>tlBZDhFCqPSte=Sl_85y%Q1UZ-{!Oexy42?!Xl#n=e*>!CA>&5@+5dAyw8Ym?GrNOYy5CJY>HF|9d8*(kZ(_TT}x#s^b}`Gx8E@pnFg= ze-G>8ZH&aqr|qTfVT?fyG{dB`un6fz#>R(PV3G42M4W?N z@B!*^>GCzNSKNW!alr-J;I}vvCx2uA(J9|W`**%ya0B`MzU8l~_yDu<-AndFI{NJ` z8s=yHH6u3}TB-@C^z$aY6t&drumFC7+LCh^jyJFlYPuyM5-Vamla9d<(i2SnWaBHS zE#2cG@;H&NQ3EKOV|P>ob))834ZEVYW~|AdgSz2z)Bt@ZeE~IrpD+*Ry<)d7jH*{3 zYvWMVW9gYeWH^yEsE^N(tM-js8oQ%|{9zc3!%+i?Gv!lIXJkHVK(Cwh0c=J3460q3 zYxa_tN3CR4q`t?BBJvm+?d=R}5^CfxqE=)H>X5EQoqiwchWk(hIgMJ%J0=}|-JWq> zRK32&B+MW^4MXuyEX4h-knik@#ZWh_g-5Wl$-j$Qf$$slN|i!&Fdnr<&!O7QMXlg6 z)MI%HbrwRuw^yb*s@~(qju`m+Utc2X@M+XcM&Oe;9W}#GjNhYXls` zPb`EZQ0>x8dLE7-{fbEk-?Zx$MUNU*Ad(*&U@dHcd2tkKU@6A&7)$y&+=`b_H(GGZ z{?GMWPy@P$4Y1H{`$nx%hq4m#C3vaXj1&C}UqcHBk5IllK@iIa ztRz(WDAvT!jdxKKsd~pY5_RLosEKqo`MofR^x!+}ziu>)44G`4f(1#xXk2c59d+X! zsF@x%erED7ne;8xS$JS<`X761(~OHy{p|7((GtFk8sSCbRn!vQL>;1#pKPn58n#89 zg&sH*N8xNdih5u4`Pp^?YK4|#0=|b&VEte0_MQnu>XPvy>Ulkkk73ZSc7>+sBHbGs z;C56;*HCAr?{D@ye+p^>9e=m&fyGJpL#*lC#t*P=VMpNa`}c4? z=~hJ?fjz&9dMcWQ*-M>-8bAhWMY2#!ztp5RV0qH}F-p(>IU;)g3lz02YAj_ekJ`g3 z#z&2Hjg3(^Y>8#Di_vY$J*cPY1=Le9-{dcp+}~P8M0@`#YR`9|M*NW~;027p98>OK zUo^9FsQPtLH|T_VTKb^syHFoulTG;yRKH&18uaLm<|8r`_n>ZAwzwnk`+(Ef(Ad#9 z1oa`4f*H67J7U2SwojpEx*RpI)u?_qnf$jHg z&BGmm|NNeaI!vc<1lBESpXw#3`rl(Fb}nV#@Fcb+{W*5QQl;&~9fNuUzFnHhOJt`qV01*3NH&s-KA}--8;^UDS&7E9bD9;Uw&UJ5isee;OM`*!_(` zU4AI+}rcEDxgkxrut-J5+L5 z6L1-7CBmJKz~7qtqx$hIBccZ9Z~!)_Y(LktQA__B>IT78Y@4C#kHubi0{dV@Rr|%0 zj5-VNR8aCJxESGG~8mD`1STz^Ei%wturVc#$t7gKNoHS*y#?GARJ_O|FF_Nh<8 z>ZGS)72Jq={5~}0XHieZZIhq>QTypCg?cI;MXl5mSWVA=8WHXBQml+eP>*8{>M{Eb zb&8ABvh&NJ(zQ|Ljf`DTPm>EPVm#`5#B`$<)oul<-3F}4{jL2(G=Q&BOOvm*z0}Q( zX{dp1M0IcyHRIE$j{K(lcax5&V?XEhPy=d%dck!<)$f5Cm>UD%|5J$6B;y6t3t|iE zhWk+sE}HZ&ro2p~y_Aoj2GZWx3$=2?P|y2Vlb&Flh1!}GsEO?2^Ec4JAu{y*e}roI zsY#zPo-|&xvL`kIb>q4CJg&z!7#Yp;uZGFd_K3!z(o;~c z(rKurT7;U}D%6a9sFgWr@=v3K^mWukZlKfmYA-o>B`N26{qO+UCg)B9a2>JiPo-Xg8RYb%H7?p%$qD*5+l_YL+Xd{3B7I*c;U zGAjK-Mn}^?jZ!ImjP!@Z-IVFl%V#|K^RP6bH*xKut_{RHQU4tAZwPgX^PSXMMbNjM zKj`Bq=3Zqe_tK`J{{Fs|+_5BHH>LZq85MG`=9KAq)pe723}Fr(HX>aGPvJiDz9Bq( zh116iV zuDj%Iw4;2@<_n}LUuW{B<9+hBn0#gbK)tqDln_mR2W4^%rq9Eqb4=ZW#t2PgG>y8F zp%0(OO~K2!kMJ91xtG^O_@uTbQI>(D$(u>MHx4y*YY^8rVqH53RR}HyFpTg%@vdfq zM6Cx}{}&bG8bC)6UkgaLA)_?@_)ytL#5)k)Ce)*|e%!blVH+WebPS;iq0>X1ZKduK z($@$l2pvf~sjq(>YxN{D33cVCAeeM}LQ6snX?=-|LS4rRMakz+Kh^|HrDLN zs}Xto$>1xc^*x~wp&farF^I61u)>_bK)Xg{L{Q;HLOpUu;b80$DCMtLl;>W0w>wDl z9m9%a0Ov{fA-VT23z)W3iN8ZU9zVg6!L0u_D&;c`#^F3uSy{vNgR22I z8IQjNQp|)p)957kDoA=P>E}(`Q55K(T|7qK2I9ZxR>Z@m&Mq9n=Z}?1m`BCg4^^sc zDk&?JGJUzsz3NjIL|y_R_j-f8UL+ctyyDzk*XQI{B5yiY!|PbUl&Rcvh95i0JWk;N z%vLVf(^Lw_uLz?aYVa0y9He)XUxPLma4UJbdXYb$__yR&CtaVgli(xoUGh#6&%M64 zBc8y&Vw*^X;)HEf;%l2Vg~AZxx<(M3gdOCsBsj@;lkSauOr0;t*Y%W1hmk%nSHK-Yi&IB3dpb54+sBYa@;3)9y-roRf9 z->hC+%%V{d@;;?*Ey7AY|BWg5ip(T3MiM?DuO?~zBJl#@L-OtrbiGghuh<;VkQawK zLx;%QOxQ^}jnJPkhVU7oBjx`=7eUt{Y(ls}+;g8Fk5NHiHX>2K&2*vgDF*cm>3--Z z9fJBsWRd40d`z?lc@Kz>A$&_1M9>vR{h<_0RiMjpQ=T64+!%(RKZDg=Is3jC2H zRrmj#%K50&nD7WU(RG*5jj*0@#dP`x@qCnDCLK$h-%A45I#a&hq?H*4Q$1eM++J&d@nwxn~fXG~rtqw=4l{EVrS zOxl-Q85dD64burdxt}hbKa1ZL|GI)H=t3Av&Svs2(ODV7OQh?VMlYNC$H<#P{CUcK z=B9(OJN5FC|0wbM_@BRe=e=U;UB%z|{lhvRJQI(De@C z87lNLom3{j4)OB%G-aDqiR*|dSG*M+SH^VIm4HVGpHim+?OL0TQ7S(8^$6}c)B){?gfPnsK*rK}twnEVT-epAW|5PFjKW18xkK3Wk?C;t!f zMiBz{|B6T%3TmjLxvt}0Dn3EO|BzpdbS=VTgd&8+rtTo>93|*FOI}mr9}t?;t{dS^ zyU03W>XgMtP2NpC|FcLOB;2AP(^Ptr^hM%5QCEB7%ji6X4oi~0s7$V=q?==9%2%1T zfdYP1Hv>FitWDjulM_wNc{QLi_M1G?2eALyOif`i#)8Q~&PJ^a|FO`pvkT*@0 zxjrYJOsGY>=P3J?cpEH^N#tE7UV`8yt!p4=6CNcm@V{0l^J^uzx*Bg`KEht|B27b; zcPD*`h>XL%D0^*ATi84vQmk^dR)5OxFU+N0Tm1x(V^O$lFEwYr>PH zGcXH(Cg_@pPnmd9?*6x;lCIjAOyQ5F!fw*B#3xYJ0mDg01!~$qPLi(1jklAWO6WnI z1T1L=7frepb#$#E6fybV5??|7(7^MjQgc0S+>)Dtcc?g*j#d*th6U;5XY#7!E7+Jk zT}4UnAs$btPrMbOJz)@`9QB?y^@rO*Ol%bnVdS&x3PEGkkF*` z_@oTC_h7$Tc~ae!c(3(q5!N;#Id+V*Uv4{Z$^N?vrHzV@O-@R4Cd8+udr$P=Ucj9e zn;M^@etnY$baW)8r6jl}y5pSjNzRx+`@in%Oiy(srHx2VO$-bp%4#2F z&XfeVE6we6C()O;M{?OZ8__Ml}>yYhdB#{XkgyEqhD+293P*M;B=*=Fgi_BBmaAnDes532xYJ;@_R6S>2hBGu9PY-#{X|Z&Li&47amW zd*>sm?y(v1sqVN(eRGm4<_UKPW}iEvl)%uv)6)AC4aAtsNVoH;`1Ay~?@W3^P-B-f zHaRhoNxEWVIY(@uGtHgOIT)#v6XSMfq}ki3`E_X1%ihi?U&HZ79Qj7F{cdjU`)NWM zM_6ofiuWE(Ckx=_%bcAvq~IaiTLW*`4N0N=|pWC(uijv!}gV zv7_9aHjZ)X-&M_k(gJ7MJ}u7VRA;I?F?pOh)`3-wvihXBW8+6mbh_A@*yMzaM9!!y zojr_oTYY>7pW71}#WFZElG0q`7)kaEL<9!ZXY3+(_UE^>6`mP>5u|{?}K;6%!CjfaBs-0^Tl$Xo7`nh^Ie$LDcHMw zZV```G&Unuhs!)Af6dgD_Rr@gEy^0m!yW4iY>;#OC>EY2$lZd6j*C-MjLUthqMW(S zVznyq>CO?U$%#6y75}c}U$4^{NeUmsp9T@S~@ z&An^ZpDtLhZe;yN&bsxQ)vNEFy5R#yJzvk)FNKuxXKnUp@AYSI4g8$p&suQpz`mTB zt93ZKFg<@WNyisKPP7fi?r20W%l21asQM# ztmoBNG6P+%yf$mwl|^snY+mBcyk4<{^YZ>#|9rVuKQSpN=(UZ$^bbA>V-Np11FI7s zLFwLaca-q{d9%1T>D(7p|7}72*$V?}x#{mom#P#PEz7VmP_)(h#|iQFJU^+`|GLI3 z$N#WEzW2}X4(aL7UJ)4izZ@X?!LyKz2vWhXUd{;mc4W3l^OZ~$vN=+^;Od! z^{x1}Y-qJ>t2bO-`%Yj}W(Rg>sy}O%Kl|mt?!L_qTzhS!clFhg!E*SUWqtXsr3OEu z4~GAmROb52`wm=PxIw2lYgW$l+pbS}na19v%@N*tH!68+-3ar|xUoE_(AAgrT%Y~c zmA9w+GY@#jY>Du-zB$klp0zu$<2+bP{vO|wTMZqd*EVd<+48dQ{oDM}_{!{Q#B;~G z(w}vJ$HSks&!0WlpS?1$DYJ7nFU@&{VepXc_h&BiXLHh3Zf34b*%MQm&q4qPo>)9YjZAZkvKGpW*cfA(uND1*= zowq-*XuP`qp7dYK^Kj9&8?6gpA8ys%4XQV(U)|L(5NS|7rh&*Fx@Ww6zL(CyEbB_*AXS`q$-9yDI6|5c%- S)A1-3{ytOxtT4jqNcw+y>krNV delta 18644 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 E4}*MB%>V!Z diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index 5954f5c6d..6b13dd17c 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: VK Blocks Pro\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" -"POT-Creation-Date: 2023-09-25T09:42:23+00:00\n" -"PO-Revision-Date: 2023-09-25 18:44+0900\n" +"POT-Creation-Date: 2023-10-24T16:07:45+00:00\n" +"PO-Revision-Date: 2023-10-25 01:12+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: ja\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.3.1\n" "X-Poedit-Basepath: ../../..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: vk-blocks.php\n" @@ -43,7 +43,9 @@ msgstr "%sを削除しますか?" #: src/admin/custom-block-style/item/title-area/delete-button/index.js:63 #: src/admin/custom-format/add-item.js:152 #: src/admin/custom-format/delete-item-button.js:63 -#: src/admin/import-export/import-form.js:510 +#: src/admin/import-export/import-form.js:468 +#: src/extensions/common/custom-block-variation/block-variation-explorer/sidebar.js:55 +#: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/delete-button/index.js:32 msgid "Cancel" msgstr "キャンセル" @@ -51,6 +53,7 @@ msgstr "キャンセル" #: src/admin/custom-block-style/item/title-area/delete-button/index.js:75 #: src/admin/custom-format/delete-item-button.js:74 #: src/blocks/_pro/gridcolcard/edit-common.js:158 +#: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/delete-button/index.js:33 msgid "Delete" msgstr "削除" @@ -95,12 +98,15 @@ msgid "image" 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:117 #: inc/vk-blocks/admin/admin.php:117 msgid "Block Manager Setting" msgstr "ブロックマネージャー設定" #: src/admin/block-style-manager/index.js:27 -#: src/admin/import-export/index.js:115 inc/vk-blocks/admin/admin.php:118 +#: src/admin/import-export/index.js:115 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:118 +#: inc/vk-blocks/admin/admin.php:118 msgid "Block Style Manager Setting" msgstr "ブロックスタイルマネージャー設定" @@ -110,7 +116,8 @@ msgstr "ブロックスタイル ラベル(変更可能)" #: src/admin/custom-block-style/add-button/index.js:141 #: src/admin/custom-format/add-item.js:164 -#: src/admin/import-export/import-form.js:346 +#: src/admin/import-export/import-form.js:304 +#: src/extensions/common/custom-block-variation/create-variation/index.js:107 msgid "Add" msgstr "追加" @@ -132,6 +139,7 @@ msgstr "ブロックの検索" #: src/admin/custom-block-style/add-button/set-property-name.js:33 #: src/admin/custom-format/add-item.js:70 +#: src/extensions/common/custom-block-variation/create-variation/block-variation-form/variation-name/index.js:22 msgid "Please enter a string" msgstr "文字列を入力してください" @@ -146,6 +154,7 @@ msgstr "クラス名は必須項目です" #: src/admin/custom-block-style/add-button/set-property-name.js:64 #: src/admin/custom-format/add-item.js:87 +#: src/extensions/common/custom-block-variation/create-variation/block-variation-form/variation-name/index.js:39 msgid "Already registered" msgstr "すでに登録されています" @@ -166,7 +175,9 @@ 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 inc/vk-blocks/admin/admin.php:112 +#: src/admin/import-export/index.js:52 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:112 +#: inc/vk-blocks/admin/admin.php:112 msgid "Custom Block Style Setting" msgstr "カスタムブロックスタイル設定" @@ -209,11 +220,13 @@ msgstr "" "保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。" #: src/admin/custom-block-style/item/title-area/index.js:66 +#: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/index.js:88 msgid "Edit" msgstr "編集" #: src/admin/custom-css.js:20 src/admin/import-export/index.js:96 #: src/extensions/common/custom-css-extension/index.js:225 +#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:15 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:15 msgid "Custom CSS Setting" msgstr "カスタムCSS設定" @@ -239,6 +252,7 @@ msgid "Toolbar title (Changeable)" msgstr "ツールバー タイトル(変更可能)" #: src/admin/custom-format/add-item.js:74 +#: src/extensions/common/custom-block-variation/create-variation/block-variation-form/variation-name/index.js:26 msgid "" "Must begin with an alphabetic character and only alphanumeric characters and " "hyphens may be used." @@ -278,6 +292,9 @@ msgstr "改行しない" #: src/blocks/_pro/timeline-item/edit.js:71 src/blocks/border-box/edit.js:204 #: src/blocks/button/edit.js:666 src/blocks/icon/edit.js:292 #: src/blocks/staff/edit.js:199 +#: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:67 +#: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:85 +#: dist/vk-blocks-pro/inc/term-color/package/class.term-color.php:171 msgid "Color" msgstr "色" @@ -323,6 +340,7 @@ 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:111 #: inc/vk-blocks/admin/admin.php:111 msgid "Custom Format Setting" msgstr "カスタム書式設定" @@ -357,45 +375,45 @@ msgstr "エクスポート" msgid "Toggle all" msgstr "すべて切り替え" -#: src/admin/import-export/import-form.js:196 +#: src/admin/import-export/import-form.js:154 msgid "Invalid JSON file" msgstr "無効なJSONファイル" -#: src/admin/import-export/import-form.js:199 +#: src/admin/import-export/import-form.js:157 msgid "Unknown error" msgstr "不明なエラー" -#: src/admin/import-export/import-form.js:263 +#: src/admin/import-export/import-form.js:221 msgid "Import data confirmation" msgstr "インポートデータ確認" -#: src/admin/import-export/import-form.js:270 +#: src/admin/import-export/import-form.js:228 msgid "No import data" msgstr "インポートデータがありません" #. Import %s -#: src/admin/import-export/import-form.js:305 +#: src/admin/import-export/import-form.js:263 msgid "Import %s" msgstr "%sをインポート" -#: src/admin/import-export/import-form.js:332 +#: src/admin/import-export/import-form.js:290 msgid "Import method" msgstr "インポート方法" -#: src/admin/import-export/import-form.js:353 +#: src/admin/import-export/import-form.js:311 msgid "Override" msgstr "上書き" -#: src/admin/import-export/import-form.js:456 +#: src/admin/import-export/import-form.js:414 msgid "" "The following data will not be imported because the identifiers are covered." msgstr "以下のデータは識別子が被っているためインポートしません。" -#: src/admin/import-export/import-form.js:525 +#: src/admin/import-export/import-form.js:483 msgid "Import" msgstr "インポート" -#: src/admin/import-export/import-form.js:535 +#: src/admin/import-export/import-form.js:493 msgid "Import Success" msgstr "インポート成功" @@ -407,14 +425,18 @@ msgstr "Font Awesomeカスタムリスト設定" msgid "Custom Block Variation Setting" msgstr "カスタムブロックバリエーション設定" -#: src/admin/import-export/index.js:141 inc/vk-blocks/admin/admin.php:119 -msgid "Import Export Tool" -msgstr "インポート エクスポート ツール" - -#: src/admin/import-export/index.js:15 inc/vk-blocks/admin/admin.php:107 +#: 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:154 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:119 +#: inc/vk-blocks/admin/admin.php:119 +msgid "Import Export Tool" +msgstr "インポート エクスポート ツール" + #: src/admin/import-export/index.js:65 src/blocks/heading/edit.js:274 msgid "Margin Setting" msgstr "余白設定" @@ -521,7 +543,8 @@ msgstr "タブレット" msgid "Mobile" msgstr "モバイル" -#: src/admin/margin.js:64 inc/vk-blocks/admin/admin.php:114 +#: src/admin/margin.js:64 dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:114 +#: inc/vk-blocks/admin/admin.php:114 msgid "Common Margin Setting" msgstr "共通余白設定" @@ -554,10 +577,12 @@ msgid "Enable accordion and default close" msgstr "アコーディオン有効 / 初期状態で閉じる" #: src/admin/save-button.js:83 +#: src/extensions/common/custom-block-variation/block-variation-list/index.js:59 msgid "Save setting" msgstr "変更を保存" #: src/admin/save-button.js:88 +#: src/extensions/common/custom-block-variation/save-button/index.js:75 msgid "Save Success" msgstr "保存しました" @@ -609,6 +634,7 @@ msgstr "短い" #: src/blocks/button/edit.js:319 src/blocks/faq/index.js:26 #: src/blocks/faq2/index.js:21 src/blocks/slider/edit.js:494 #: src/extensions/common/inline-font-size/inline.js:28 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:465 #: inc/vk-blocks/class-vk-blocks-global-settings.php:493 msgid "Normal" msgstr "標準" @@ -710,9 +736,7 @@ msgstr "投稿件数を表示" #: src/blocks/_pro/blog-card-site-logo/edit.js:33 #: src/blocks/_pro/blog-card-site-title/edit.js:67 #: src/blocks/_pro/blog-card-title/edit.js:65 -#: src/blocks/_pro/blog-card/edit/index.js:115 -#, fuzzy -#| msgid "Setting" +#: src/blocks/_pro/blog-card/edit/index.js:131 msgid "Settings" msgstr "設定" @@ -814,46 +838,50 @@ msgstr "ホームへのリンクにする" msgid "Choose a pattern. The original block settings will be cleared." msgstr "パターンを選択します。元のブロック設定はクリアされます。" -#: src/blocks/_pro/blog-card/edit/index.js:109 +#: src/blocks/_pro/blog-card/edit/index.js:108 +#, fuzzy +#| msgid "Edit Lock" +msgid "Edit URL" +msgstr "編集ロック" + +#: src/blocks/_pro/blog-card/edit/index.js:125 msgid "Replace" msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:125 +#: src/blocks/_pro/blog-card/edit/index.js:141 msgid "Clear cache" msgstr "キャッシュクリア" -#: src/blocks/_pro/blog-card/edit/index.js:128 +#: src/blocks/_pro/blog-card/edit/index.js:144 msgid "" "If the data is old, please clear the cache. It is usually updated every hour." msgstr "" "データが古い場合はキャッシュクリアしてください。通常1時間で更新されます。" -#: src/blocks/_pro/blog-card/edit/index.js:159 +#: src/blocks/_pro/blog-card/edit/index.js:161 #: src/extensions/common/custom-block-variation/block-variation-explorer/index.js:20 msgid "Variation settings" msgstr "バリエーション設定" -#: src/blocks/_pro/blog-card/edit/index.js:162 +#: src/blocks/_pro/blog-card/edit/index.js:167 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:49 msgid "You can register the current block settings as block variations." msgstr "現在のブロック設定をブロックバリエーションとして登録できます。" -#: src/blocks/_pro/blog-card/edit/index.js:168 +#: src/blocks/_pro/blog-card/edit/index.js:173 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:54 -msgid "https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/" -msgstr "https://ja.wordpress.org/team/handbook/block-editor/reference-guides/block-api/block-variations/" +msgid "" +"https://developer.wordpress.org/block-editor/reference-guides/block-api/" +"block-variations/" +msgstr "" +"https://ja.wordpress.org/team/handbook/block-editor/reference-guides/block-" +"api/block-variations/" -#: src/blocks/_pro/blog-card/edit/index.js:175 +#: src/blocks/_pro/blog-card/edit/index.js:180 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:61 msgid "Learn more about block variations" msgstr "ブロックバリエーションについてさらに詳しく" -#: src/blocks/_pro/blog-card/edit/index.js:92 -#, fuzzy -#| msgid "Edit Lock" -msgid "Edit URL" -msgstr "編集ロック" - #: src/blocks/_pro/blog-card/edit/url-placeholder.js:23 msgid "Paste a link to the content you want to display on your site." msgstr "" @@ -952,7 +980,7 @@ msgid "Delete Image" msgstr "画像を削除" #: src/blocks/_pro/card-item/edit.js:217 -#: src/blocks/_pro/dynamic-text/edit.js:256 +#: src/blocks/_pro/dynamic-text/edit.js:292 msgid "URL" msgstr "URL" @@ -1034,15 +1062,16 @@ msgstr "この投稿を除く" msgid "Current page" msgstr "現在のページ" -#: src/blocks/_pro/dynamic-text/edit.js:110 +#: src/blocks/_pro/dynamic-text/edit.js:112 msgid "Please select display element from the Setting sidebar." msgstr "設定サイドバーから表示要素を選択してください。" -#: src/blocks/_pro/dynamic-text/edit.js:118 +#: src/blocks/_pro/dynamic-text/edit.js:120 msgid "Post Type Name" msgstr "投稿タイプ名" -#: src/blocks/_pro/dynamic-text/edit.js:122 +#: src/blocks/_pro/dynamic-text/edit.js:124 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 #: test/phpunit/pro/test-ancestor-page-list.php:89 @@ -1050,74 +1079,90 @@ msgstr "投稿タイプ名" msgid "Ancestor Page Title" msgstr "先祖ページのタイトル" -#: src/blocks/_pro/dynamic-text/edit.js:127 +#: src/blocks/_pro/dynamic-text/edit.js:128 +msgid "Parent Page Title" +msgstr "親ページのタイトル" + +#: src/blocks/_pro/dynamic-text/edit.js:133 msgid "Custom field" msgstr "カスタムフィールド" -#: src/blocks/_pro/dynamic-text/edit.js:133 +#: src/blocks/_pro/dynamic-text/edit.js:139 msgid "This block is not rendered because no custom field name is specified." msgstr "" "カスタム フィールド名が指定されていないためこのブロックは表示されません。" -#: src/blocks/_pro/dynamic-text/edit.js:163 +#: src/blocks/_pro/dynamic-text/edit.js:169 msgid "Display element settings" msgstr "表示要素の設定" -#: src/blocks/_pro/dynamic-text/edit.js:168 +#: src/blocks/_pro/dynamic-text/edit.js:174 msgid "Display element" msgstr "表示要素" -#: src/blocks/_pro/dynamic-text/edit.js:177 +#: src/blocks/_pro/dynamic-text/edit.js:183 msgid "Please Select" msgstr "選択してください" -#: src/blocks/_pro/dynamic-text/edit.js:181 +#: src/blocks/_pro/dynamic-text/edit.js:187 msgid "Post type name of the page being viewed" msgstr "表示中のページの投稿タイプ名" -#: src/blocks/_pro/dynamic-text/edit.js:188 +#: src/blocks/_pro/dynamic-text/edit.js:194 msgid "Page name in the ancestor hierarchy of the displayed page" msgstr "表示中の固定ページの先祖階層のページ名" -#: src/blocks/_pro/dynamic-text/edit.js:195 +#: src/blocks/_pro/dynamic-text/edit.js:201 +msgid "Page name in the parent hierarchy of the displayed page" +msgstr "表示されているページの親階層のページ名" + +#: src/blocks/_pro/dynamic-text/edit.js:208 msgid "Custom Field" msgstr "カスタムフィールド" -#: src/blocks/_pro/dynamic-text/edit.js:203 +#: src/blocks/_pro/dynamic-text/edit.js:216 msgid "Hide on Ancestor Hierarchy Pages" msgstr "先祖階層のページでは非表示にする" -#: src/blocks/_pro/dynamic-text/edit.js:216 +#: src/blocks/_pro/dynamic-text/edit.js:229 +msgid "This block is not displayed on pages without a parent page." +msgstr "このブロックは親階層を持たない固定ページには表示されません。" + +#: src/blocks/_pro/dynamic-text/edit.js:240 +msgid "Hide on Parent Hierarchy Pages" +msgstr "親階層のページでは非表示にする" + +#: src/blocks/_pro/dynamic-text/edit.js:253 msgid "" "This block will not display on pages other than pages that have a parent " "hierarchy." -msgstr "このブロックは親階層を持つページ以外の固定ページには表示されません。" +msgstr "このブロックは親階層を持つ固定ページ以外のページには表示されません。" -#: src/blocks/_pro/dynamic-text/edit.js:228 +#: src/blocks/_pro/dynamic-text/edit.js:264 msgid "Custom Field Name" msgstr "カスタムフィールド名" -#: src/blocks/_pro/dynamic-text/edit.js:235 +#: src/blocks/_pro/dynamic-text/edit.js:271 msgid "Field Type" msgstr "フィールドタイプ" -#: src/blocks/_pro/dynamic-text/edit.js:244 +#: src/blocks/_pro/dynamic-text/edit.js:280 msgid "text" msgstr "テキスト" -#: src/blocks/_pro/dynamic-text/edit.js:248 +#: src/blocks/_pro/dynamic-text/edit.js:284 msgid "textarea" msgstr "テキストエリア" -#: src/blocks/_pro/dynamic-text/edit.js:252 +#: src/blocks/_pro/dynamic-text/edit.js:288 msgid "wysiwyg" msgstr "WYSIWYG" -#: src/blocks/_pro/dynamic-text/edit.js:263 +#: src/blocks/_pro/dynamic-text/edit.js:299 msgid "Setting up a link" msgstr "リンクを設定する" -#: src/blocks/_pro/dynamic-text/edit.js:276 +#: src/blocks/_pro/dynamic-text/edit.js:312 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 src/blocks/button/edit.js:272 #: src/blocks/icon/edit.js:285 src/blocks/pr-blocks/edit.js:262 @@ -1138,27 +1183,27 @@ msgid "h1" msgstr "h1" #: src/blocks/_pro/dynamic-text/edit.js:47 -#: src/blocks/ancestor-page-list/edit.js:51 +#: src/blocks/ancestor-page-list/edit.js:62 msgid "h2" msgstr "h2" #: src/blocks/_pro/dynamic-text/edit.js:51 -#: src/blocks/ancestor-page-list/edit.js:55 +#: src/blocks/ancestor-page-list/edit.js:66 msgid "h3" msgstr "h3" #: src/blocks/_pro/dynamic-text/edit.js:55 -#: src/blocks/ancestor-page-list/edit.js:59 +#: src/blocks/ancestor-page-list/edit.js:70 msgid "h4" msgstr "h4" #: src/blocks/_pro/dynamic-text/edit.js:59 -#: src/blocks/ancestor-page-list/edit.js:63 +#: src/blocks/ancestor-page-list/edit.js:74 msgid "h5" msgstr "h5" #: src/blocks/_pro/dynamic-text/edit.js:63 -#: src/blocks/ancestor-page-list/edit.js:67 +#: src/blocks/ancestor-page-list/edit.js:78 msgid "h6" msgstr "h6" @@ -1319,6 +1364,8 @@ msgstr "カラムの角丸の大きさ" #: src/blocks/_pro/gridcolcard/edit-common.js:183 #: src/blocks/balloon/edit.js:310 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:339 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:353 #: inc/vk-blocks/class-vk-blocks-global-settings.php:367 #: inc/vk-blocks/class-vk-blocks-global-settings.php:381 msgid "Border" @@ -1410,6 +1457,8 @@ msgstr "アイコンカード設定" #: src/blocks/_pro/step-item/edit.js:82 src/blocks/border-box/edit.js:240 #: src/blocks/button/edit.js:749 src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:269 src/blocks/pr-content/edit.js:212 +#: 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 #: src/utils/font-awesome-new.js:166 msgid "Icon" msgstr "アイコン" @@ -1553,6 +1602,7 @@ msgid "Wave" msgstr "波状" #: src/blocks/_pro/outer/edit.js:562 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:293 #: inc/vk-blocks/class-vk-blocks-global-settings.php:321 msgid "Triangle" msgstr "三角" @@ -1589,21 +1639,25 @@ msgstr "なし" #: src/blocks/_pro/outer/edit.js:767 src/blocks/_pro/step-item/edit.js:118 #: src/blocks/_pro/timeline-item/edit.js:88 src/blocks/pr-content/edit.js:145 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:391 #: inc/vk-blocks/class-vk-blocks-global-settings.php:419 msgid "Solid" msgstr "直線" #: src/blocks/_pro/outer/edit.js:771 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:399 #: inc/vk-blocks/class-vk-blocks-global-settings.php:427 msgid "Dotted" msgstr "点線" #: src/blocks/_pro/outer/edit.js:775 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:403 #: inc/vk-blocks/class-vk-blocks-global-settings.php:431 msgid "Dashed" msgstr "Dashed" #: src/blocks/_pro/outer/edit.js:779 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:407 #: inc/vk-blocks/class-vk-blocks-global-settings.php:435 msgid "Double" msgstr "二重線" @@ -1762,7 +1816,7 @@ msgid "Ex,6:00AM" msgstr "例) 午前 6:00" #: src/blocks/_pro/step-item/edit.js:108 -#: src/blocks/_pro/table-of-contents-new/edit.js:135 +#: src/blocks/_pro/table-of-contents-new/edit.js:119 #: src/blocks/_pro/timeline-item/edit.js:74 src/blocks/icon-outer/edit.js:229 #: src/blocks/icon/edit.js:215 msgid "Style" @@ -1774,7 +1828,7 @@ msgid "Outlined" msgstr "アウトライン" #: src/blocks/_pro/step-item/edit.js:137 -#: src/blocks/_pro/table-of-contents-new/edit.js:145 +#: src/blocks/_pro/table-of-contents-new/edit.js:129 #: src/blocks/_pro/timeline-item/edit.js:103 src/blocks/heading/edit.js:264 #: src/blocks/slider/edit.js:703 src/blocks/staff/edit.js:173 msgid "Default" @@ -1793,40 +1847,40 @@ msgid "First Dot Number" msgstr "ステップの開始番号" #: src/blocks/_pro/table-of-contents-new/deprecated/0.59.1/save.js:19 -#: src/blocks/_pro/table-of-contents-new/edit.js:178 +#: src/blocks/_pro/table-of-contents-new/edit.js:162 #: src/blocks/_pro/table-of-contents-new/save.js:16 msgid "Table of Contents" msgstr "目次" -#: src/blocks/_pro/table-of-contents-new/edit.js:117 +#: src/blocks/_pro/table-of-contents-new/edit.js:101 msgid "Note on duplicating headings" msgstr "見出し複製時の注意" -#: src/blocks/_pro/table-of-contents-new/edit.js:122 +#: src/blocks/_pro/table-of-contents-new/edit.js:106 msgid "" "If you duplicate a heading, the table of contents block will not work " "properly, please reassign the ID." msgstr "" "見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。" -#: src/blocks/_pro/table-of-contents-new/edit.js:130 +#: src/blocks/_pro/table-of-contents-new/edit.js:114 #: src/components/column-layout-control/index.js:69 msgid "Display type" msgstr "表示タイプ" -#: src/blocks/_pro/table-of-contents-new/edit.js:149 +#: src/blocks/_pro/table-of-contents-new/edit.js:133 msgid "No frame" msgstr "枠無し" -#: src/blocks/_pro/table-of-contents-new/edit.js:156 +#: src/blocks/_pro/table-of-contents-new/edit.js:140 msgid "Default Display Status" msgstr "初期表示状態" -#: src/blocks/_pro/table-of-contents-new/edit.js:164 +#: src/blocks/_pro/table-of-contents-new/edit.js:148 msgid "OPEN" msgstr "OPEN" -#: src/blocks/_pro/table-of-contents-new/edit.js:168 +#: src/blocks/_pro/table-of-contents-new/edit.js:152 msgid "CLOSE" msgstr "CLOSE" @@ -1857,6 +1911,8 @@ msgid "" "Specified taxonomy does not exist. Please check your taxonomy settings to " "display or remove this block." msgstr "" +"指定されたタクソノミーが存在しません。 タクソノミーの設定を確認するかこのブ" +"ロックを削除してください。" #: src/blocks/_pro/taxonomy/edit.js:70 msgid "This block will not be displayed because this taxonomy has no term." @@ -1876,56 +1932,60 @@ msgstr "スタイル設定" #: src/blocks/alert/edit.js:25 src/blocks/button/edit.js:681 #: src/blocks/pr-content/edit.js:171 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:427 #: inc/vk-blocks/class-vk-blocks-global-settings.php:455 msgid "Success" msgstr "Success" #: src/blocks/alert/edit.js:29 src/blocks/button/edit.js:685 #: src/blocks/pr-content/edit.js:175 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:423 #: inc/vk-blocks/class-vk-blocks-global-settings.php:451 msgid "Info" msgstr "Info" #: src/blocks/alert/edit.js:33 src/blocks/button/edit.js:689 #: src/blocks/pr-content/edit.js:179 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:431 #: inc/vk-blocks/class-vk-blocks-global-settings.php:459 msgid "Warning" msgstr "Warning" #: src/blocks/alert/edit.js:37 src/blocks/button/edit.js:693 #: src/blocks/pr-content/edit.js:183 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:435 #: inc/vk-blocks/class-vk-blocks-global-settings.php:463 msgid "Danger" msgstr "Danger" -#: src/blocks/ancestor-page-list/edit.js:104 +#: src/blocks/ancestor-page-list/edit.js:100 +msgid "Add link to ancestor page title" +msgstr "先祖階層のページタイトルにリンクを追加" + +#: src/blocks/ancestor-page-list/edit.js:111 +msgid "If there is no child page, the block itself is not displayed" +msgstr "子ページがない場合、このブロック自体を表示しない" + +#: src/blocks/ancestor-page-list/edit.js:121 msgid "Don't display inactive grand child pages" msgstr "非アクティブな孫ページを表示しない" -#: src/blocks/ancestor-page-list/edit.js:30 +#: src/blocks/ancestor-page-list/edit.js:38 msgid "Ancestor Page List Setting" msgstr "先祖階層からのページリスト設定" -#: src/blocks/ancestor-page-list/edit.js:33 +#: src/blocks/ancestor-page-list/edit.js:41 msgid "Display Ancestor Page Title" msgstr "先祖階層のページタイトルを表示" -#: src/blocks/ancestor-page-list/edit.js:43 +#: src/blocks/ancestor-page-list/edit.js:51 msgid "Archive title tag" msgstr "アーカイブタイトルタグ" -#: src/blocks/ancestor-page-list/edit.js:72 +#: src/blocks/ancestor-page-list/edit.js:83 msgid "Ancestor page title class name" msgstr "先祖階層ページタイトルのクラス名" -#: src/blocks/ancestor-page-list/edit.js:83 -msgid "Add link to ancestor page title" -msgstr "先祖階層のページタイトルにリンクを追加" - -#: src/blocks/ancestor-page-list/edit.js:94 -msgid "If there is no child page, the block itself is not displayed" -msgstr "子ページがない場合、このブロック自体を表示しない" - #: src/blocks/balloon/edit.js:134 msgid " Image Border" msgstr "画像の線" @@ -2109,6 +2169,7 @@ msgstr "大" #: src/blocks/button/edit.js:327 #: src/extensions/common/inline-font-size/inline.js:23 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:460 #: inc/vk-blocks/class-vk-blocks-global-settings.php:488 msgid "Small" msgstr "小" @@ -2329,6 +2390,7 @@ msgid "Heading style" msgstr "見出しスタイル" #: src/blocks/heading/edit.js:268 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:251 #: inc/vk-blocks/class-vk-blocks-global-settings.php:279 msgid "Plain" msgstr "装飾無し" @@ -2908,8 +2970,12 @@ msgstr "カテゴリー" #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:148 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:175 -msgid "For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic" -msgstr "アイコンの名前は「dashicons-」を省いた英数字を入力してください。 例: embed-generic" +msgid "" +"For the icon name, please enter alphanumeric characters without \"dashicons-" +"\". Example: embed-generic" +msgstr "" +"アイコンの名前は「dashicons-」を省いた英数字を入力してください。 例: embed-" +"generic" #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:159 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:186 @@ -2953,8 +3019,12 @@ msgstr "スコープ (必須)" #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:84 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:106 -msgid "You can set where registered variations are displayed. You can call it from the displayed location." -msgstr "登録したバリエーションをどこに表示するかを設定できます。表示した場所から呼び出せます。" +msgid "" +"You can set where registered variations are displayed. You can call it from " +"the displayed location." +msgstr "" +"登録したバリエーションをどこに表示するかを設定できます。表示した場所から呼び" +"出せます。" #: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/delete-button/index.js:42 msgid "Are you sure you want to delete this variation?" @@ -2978,11 +3048,16 @@ msgstr "インサーター" #: src/extensions/common/custom-block-variation/utils.js:13 msgid "Displayed on the inserter. Learn more about inserters." -msgstr "インサーターに表示されます。 インサーターについてさらに詳しく." +msgstr "" +"インサーターに表示されます。 インサーターについてさらに詳しく." #: src/extensions/common/custom-block-variation/utils.js:20 -msgid "https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter" -msgstr "https://ja.wordpress.org/support/article/adding-a-new-block/#%e3%82%a4%e3%83%b3%e3%82%b5%e3%83%bc%e3%82%bf%e3%83%bc%e3%81%a8%e3%81%af" +msgid "" +"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-" +"inserter" +msgstr "" +"https://ja.wordpress.org/support/article/adding-a-new-block/" +"#%e3%82%a4%e3%83%b3%e3%82%b5%e3%83%bc%e3%82%bf%e3%83%bc%e3%81%a8%e3%81%af" #: src/extensions/common/custom-block-variation/utils.js:32 msgid "It will appear in the variation picker." @@ -3085,11 +3160,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:470 #: inc/vk-blocks/class-vk-blocks-global-settings.php:498 msgid "Big" msgstr "大" #: src/extensions/common/inline-font-size/inline.js:38 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:475 #: inc/vk-blocks/class-vk-blocks-global-settings.php:503 msgid "Extra big" msgstr "特大" @@ -3320,12 +3397,12 @@ msgstr "Vektor,Inc." msgid "https://vektor-inc.co.jp" msgstr "https://vektor-inc.co.jp" -#: inc/admin-notices.php:28 +#: dist/vk-blocks-pro/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 -#: inc/admin-notices.php:35 +#: 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 " @@ -3336,42 +3413,51 @@ msgstr "" "れています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみ" "てください。" -#: inc/admin-notices.php:39 inc/admin-notices.php:45 +#: 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 "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/" -#: inc/admin-notices.php:46 +#: dist/vk-blocks-pro/inc/admin-notices.php:46 inc/admin-notices.php:46 msgid "See more" msgstr "続きを見る" -#: inc/admin-notices.php:49 +#: 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 "プラグイン %s をインストール中" +#. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:76 #: inc/tgm-plugin-activation/tgm-config.php:76 msgid "Something went wrong with the plugin API." msgstr "プラグイン 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 " @@ -3384,6 +3470,7 @@ 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 " @@ -3394,6 +3481,7 @@ 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 " @@ -3406,12 +3494,14 @@ 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." @@ -3421,18 +3511,21 @@ 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 " @@ -3443,39 +3536,47 @@ 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. " @@ -3485,64 +3586,75 @@ 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:109 #: inc/vk-blocks/admin/admin.php:109 msgid "Balloon Block Setting" msgstr "吹き出しブロック設定" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:115 #: inc/vk-blocks/admin/admin.php:115 msgid "Load Separete Setting" msgstr "分割読み込み設定" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:134 #: inc/vk-blocks/admin/admin.php:134 msgid "Setting" msgstr "設定" -#: inc/vk-blocks/blocks.php:27 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:27 inc/vk-blocks/blocks.php:27 msgid "Blocks" msgstr "Blocks" -#: inc/vk-blocks/blocks.php:40 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:40 inc/vk-blocks/blocks.php:40 msgid "Blocks Layout" msgstr "ブロックレイアウト" -#: inc/vk-blocks/blocks.php:53 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:53 inc/vk-blocks/blocks.php:53 msgid "Deprecated Blocks" msgstr "非推奨ブロック" -#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: src/blocks/ancestor-page-list/index.php:83 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 +#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 +#: src/blocks/ancestor-page-list/index.php:91 #: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Dummy Text" msgstr "ダミーテキスト" -#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: src/blocks/ancestor-page-list/index.php:83 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 +#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 +#: src/blocks/ancestor-page-list/index.php:91 #: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "" "Because of the site editor have not child page that, the page list from " @@ -3553,39 +3665,46 @@ msgstr "" "ん。 先祖階層からのページリストの代わりにダミーテキストのリストを表示していま" "す。" -#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: src/blocks/ancestor-page-list/index.php:83 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 +#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 +#: src/blocks/ancestor-page-list/index.php:91 #: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "This message only display on the edit screen." msgstr "このメッセージは編集画面でのみ表示されます。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:123 #: inc/vk-blocks/build/blocks/page-content/index.php:123 #: src/blocks/page-content/index.php:123 #: test/phpunit/free/test-page-content.php:59 msgid "Edit this area" msgstr "このエリアを編集" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/index.php:87 #: inc/vk-blocks/build/blocks/_pro/archive-list/index.php:87 #: src/blocks/_pro/archive-list/index.php:87 msgid "Please select year" msgstr "選択してください" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/index.php:89 #: inc/vk-blocks/build/blocks/_pro/archive-list/index.php:89 #: src/blocks/_pro/archive-list/index.php:89 msgid "Please select month" msgstr "選択してください" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:42 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php: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:57 #: 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:186 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: src/blocks/_pro/taxonomy/index.php:199 #, fuzzy @@ -3594,157 +3713,187 @@ msgstr "カテゴリー" msgid "All of %s" msgstr "%s の記事." -#: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 -#: src/blocks/_pro/taxonomy/index.php:243 -#, fuzzy -#| msgid "Taxonomy Block Option" -msgid "VK Taxonomy Block" -msgstr "タクソノミーブロックオプション" - +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:255 #: inc/vk-blocks/class-vk-blocks-global-settings.php:283 msgid "Background fill lightgray" msgstr "背景塗り 灰色" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:259 #: inc/vk-blocks/class-vk-blocks-global-settings.php:287 msgid "Double border top and bottom black" msgstr "二重線 上下線 黒" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:263 #: inc/vk-blocks/class-vk-blocks-global-settings.php:291 msgid "Double border bottom black" msgstr "二重線 下線 黒" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:267 #: inc/vk-blocks/class-vk-blocks-global-settings.php:295 msgid "Solid border top and bottom black" msgstr "直線 上下 黒" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:271 #: inc/vk-blocks/class-vk-blocks-global-settings.php:299 msgid "Solid border bottom black" msgstr "直線 下線 黒" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:275 #: inc/vk-blocks/class-vk-blocks-global-settings.php:303 msgid "Dotted border bottom black" msgstr "点線 下線 黒" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:279 #: inc/vk-blocks/class-vk-blocks-global-settings.php:307 msgid "Both ends" msgstr "左右線" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:283 #: inc/vk-blocks/class-vk-blocks-global-settings.php:311 msgid "Brackets black" msgstr "括弧 黒" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:289 #: inc/vk-blocks/class-vk-blocks-global-settings.php:317 msgid "Arrow" msgstr "矢印" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:297 #: inc/vk-blocks/class-vk-blocks-global-settings.php:325 msgid "Check" msgstr "チェック" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:301 #: inc/vk-blocks/class-vk-blocks-global-settings.php:329 msgid "Check Square" msgstr "チェック(四角)" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:305 #: inc/vk-blocks/class-vk-blocks-global-settings.php:333 msgid "Check Circle" msgstr "チェック-丸" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:309 #: inc/vk-blocks/class-vk-blocks-global-settings.php:337 msgid "Handpoint" msgstr "指" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:313 #: inc/vk-blocks/class-vk-blocks-global-settings.php:341 msgid "Pencil" msgstr "鉛筆" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:317 #: inc/vk-blocks/class-vk-blocks-global-settings.php:345 msgid "Smile" msgstr "笑顔" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:321 #: inc/vk-blocks/class-vk-blocks-global-settings.php:349 msgid "Frown" msgstr "不満顔" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:325 #: inc/vk-blocks/class-vk-blocks-global-settings.php:353 msgid "Numbered Circle" msgstr "数字-丸" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:329 #: inc/vk-blocks/class-vk-blocks-global-settings.php:357 msgid "Numbered Square" msgstr "数字-四角" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:335 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:415 #: inc/vk-blocks/class-vk-blocks-global-settings.php:363 #: inc/vk-blocks/class-vk-blocks-global-settings.php:443 msgid "Border Top Bottom" msgstr "直線 上下" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:343 #: inc/vk-blocks/class-vk-blocks-global-settings.php:371 msgid "Border / Stripes" msgstr "枠線 / ストライプ" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:349 #: inc/vk-blocks/class-vk-blocks-global-settings.php:377 msgid "Rounded02" msgstr "角丸2" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:357 #: inc/vk-blocks/class-vk-blocks-global-settings.php:385 msgid "Photo frame" msgstr "フォトフレーム" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:361 #: inc/vk-blocks/class-vk-blocks-global-settings.php:389 msgid "Photo frame Tilt Right" msgstr "フォトフレーム傾き右" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:365 #: inc/vk-blocks/class-vk-blocks-global-settings.php:393 msgid "Photo frame Tilt Left" msgstr "フォトフレーム傾き左" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:369 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:419 #: inc/vk-blocks/class-vk-blocks-global-settings.php:397 #: inc/vk-blocks/class-vk-blocks-global-settings.php:447 msgid "Shadow" msgstr "シャドウ" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:373 #: inc/vk-blocks/class-vk-blocks-global-settings.php:401 msgid "Wave01" msgstr "流体シェイプ1" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:377 #: inc/vk-blocks/class-vk-blocks-global-settings.php:405 msgid "Wave02" msgstr "流体シェイプ2" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:381 #: inc/vk-blocks/class-vk-blocks-global-settings.php:409 msgid "Wave03" msgstr "流体シェイプ3" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:385 #: inc/vk-blocks/class-vk-blocks-global-settings.php:413 msgid "Wave04" msgstr "流体シェイプ4" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:395 #: inc/vk-blocks/class-vk-blocks-global-settings.php:423 msgid "Solid Roundcorner" msgstr "直線 角丸" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:411 #: inc/vk-blocks/class-vk-blocks-global-settings.php:439 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 "設定を保存しました。" -#: inc/vk-blocks/view/class-vk-blocks-postlist.php:253 +#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:253 +#: inc/vk-blocks/view/class-vk-blocks-postlist.php:254 msgid "Post" msgstr "投稿" #. translators: %s: 投稿タイプ名 -#: inc/vk-blocks/view/class-vk-blocks-postlist.php:257 +#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:257 +#: inc/vk-blocks/view/class-vk-blocks-postlist.php:258 msgid "There are no %ss." msgstr "該当の%sはありません。" +#: dist/vk-blocks-pro/inc/vk-css-optimize/config.php:12 #: inc/vk-css-optimize/config.php:12 msgid "VK Blocks " msgstr "VK Blocks" -#: vk-blocks.php:105 +#: dist/vk-blocks-pro/vk-blocks.php:105 vk-blocks.php:105 msgid "" "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks " "Plugin running." @@ -3752,26 +3901,26 @@ msgstr "" "VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しまし" "た。" -#: vk-blocks.php:305 +#: dist/vk-blocks-pro/vk-blocks.php:305 vk-blocks.php:305 msgid "License Key has no registered." msgstr "ライセンスキーが登録されていません。" -#: vk-blocks.php:310 +#: dist/vk-blocks-pro/vk-blocks.php:310 vk-blocks.php:310 msgid "The VK Blocks Pro license is invalid." msgstr "VK Blocks Pro のライセンスが無効です。" -#: vk-blocks.php:334 +#: dist/vk-blocks-pro/vk-blocks.php:334 vk-blocks.php:334 msgid "" "Please enter a valid license key for any of the following products on the " "settings screen." msgstr "" "設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。" -#: vk-blocks.php:344 +#: dist/vk-blocks-pro/vk-blocks.php:344 vk-blocks.php:344 msgid "Enter the license key" msgstr "ライセンスキーを入力" -#: vk-blocks.php:347 +#: dist/vk-blocks-pro/vk-blocks.php:347 vk-blocks.php:347 msgid "" "If this display does not disappear even after entering a valid license key, " "re-acquire the update." @@ -3779,99 +3928,124 @@ msgstr "" "有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてく" "ださい。" -#: vk-blocks.php:348 +#: dist/vk-blocks-pro/vk-blocks.php:348 vk-blocks.php:348 msgid "Re-acquisition of updates" msgstr "更新の再取得" +#: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 +#: src/blocks/_pro/taxonomy/index.php:243 +#, fuzzy +#| msgid "Taxonomy Block Option" +msgid "VK Taxonomy Block" +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 "" @@ -3881,21 +4055,25 @@ msgstr "" "質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できま" "す。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/flow/block.json #: inc/vk-blocks/build/blocks/flow/block.json src/blocks/flow/block.json msgctxt "block title" msgid "Flow" msgstr "フロー" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/flow/block.json #: inc/vk-blocks/build/blocks/flow/block.json src/blocks/flow/block.json msgctxt "block description" msgid "Displays a sequential description in time series." msgstr "時系列で順を追った説明を表示します。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/heading/block.json #: inc/vk-blocks/build/blocks/heading/block.json src/blocks/heading/block.json msgctxt "block title" msgid "Heading" msgstr "見出し" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/heading/block.json #: inc/vk-blocks/build/blocks/heading/block.json src/blocks/heading/block.json msgctxt "block description" msgid "" @@ -3903,46 +4081,54 @@ 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" @@ -3956,12 +4142,14 @@ 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" @@ -3969,23 +4157,27 @@ 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 "" @@ -3995,21 +4187,25 @@ 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 "" @@ -4017,144 +4213,84 @@ msgid "" "menu, etc." msgstr "スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: src/blocks/_pro/accordion-target/block.json msgctxt "block title" msgid "Accordion Target" msgstr "アコーディオン コンテンツ" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: src/blocks/_pro/accordion-target/block.json msgctxt "block description" msgid "This is the content area where you can add blocks freely." msgstr "コンテンツが長い時にコンテンツを折りたたんで隠して表示します。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: src/blocks/_pro/accordion-trigger/block.json msgctxt "block title" msgid "Accordion Trigger" msgstr "アコーディオン タイトル" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: src/blocks/_pro/accordion-trigger/block.json msgctxt "block description" msgid "This is the title area where you can freely add blocks." msgstr "自由にブロックを追加できるタイトルエリアです。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion/block.json #: inc/vk-blocks/build/blocks/_pro/accordion/block.json #: src/blocks/_pro/accordion/block.json msgctxt "block title" msgid "Accordion" msgstr "アコーディオン" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion/block.json #: inc/vk-blocks/build/blocks/_pro/accordion/block.json #: src/blocks/_pro/accordion/block.json msgctxt "block description" msgid "Collapses and hides content when the content is long." msgstr "自由にブロックを追加できるコンテンツエリアです。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/animation/block.json #: inc/vk-blocks/build/blocks/_pro/animation/block.json #: src/blocks/_pro/animation/block.json msgctxt "block title" msgid "Animation" msgstr "アニメーション" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/animation/block.json #: inc/vk-blocks/build/blocks/_pro/animation/block.json #: src/blocks/_pro/animation/block.json msgctxt "block description" msgid "Add animation to elements when scrolling the page." msgstr "ページをスクロールした時に要素に動きを加えます。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: src/blocks/_pro/archive-list/block.json msgctxt "block title" msgid "Archive list" msgstr "アーカイブリスト" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: src/blocks/_pro/archive-list/block.json msgctxt "block description" msgid "Displays a list of archives" msgstr "アーカイブリストを表示します" -#: 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 "ブログカードの抜粋" - -#: 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から取得した抜粋を表示します。" - -#: 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 "ブログカードのアイキャッチ画像" - -#: 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から取得したアイキャッチ画像を表示します。" - -#: 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 "ブログカードのサイトロゴ" - -#: 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から取得したサイトロゴ画像を表示します。" - -#: 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 "ブログカードのサイトタイトル" - -#: 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から取得したサイトタイトルを表示します。" - -#: 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 "ブログカードのタイトル" - -#: 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から取得したタイトルを表示します。" - -#: inc/vk-blocks/build/blocks/_pro/blog-card/block.json -#: src/blocks/_pro/blog-card/block.json -msgctxt "block title" -msgid "Blog Card" -msgstr "ブログカード" - -#: 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" @@ -4165,48 +4301,56 @@ 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" @@ -4214,132 +4358,154 @@ msgid "" "When a parent page is specified, a list of its child pages will be displayed." msgstr "親となる固定ページを指定するとその子ページの一覧を表示します。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: src/blocks/_pro/dynamic-text/block.json msgctxt "block title" msgid "Dynamic Text" msgstr "ダイナミックテキスト" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: src/blocks/_pro/dynamic-text/block.json msgctxt "block description" msgid "Display dynamic text" msgstr "動的テキストを表示します" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: src/blocks/_pro/grid-column-item/block.json msgctxt "block title" msgid "Grid Column Item" msgstr "グリッドカラムアイテム" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: src/blocks/_pro/grid-column-item/block.json msgctxt "block description" msgid "One item in a grit column block." msgstr "グリッドカラムブロック内の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" @@ -4347,12 +4513,14 @@ msgid "" "Set the background image, color, and border to show the layout and divisions." msgstr "背景の画像や色,枠線の設定しレイアウトや区切りを表示します。" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list/block.json msgctxt "block title" msgid "Post list" msgstr "投稿リスト" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list/block.json msgctxt "block description" @@ -4361,38 +4529,28 @@ msgid "" "number of posts to display." msgstr "投稿タイプ,分類,表示件数が設定して投稿リストを表示します。" -#: 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 "新着バッジ" - -#: 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 content or products with the 'New Badge' " -"feature." -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" @@ -4400,36 +4558,42 @@ 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" @@ -4438,36 +4602,42 @@ 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" @@ -4476,6 +4646,92 @@ msgid "" "explaining the order." msgstr "順番を説明する時に便利でシンプルなスケジュールなどを表示します。" +#: 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 "ブログカードの抜粋" + +#: 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から取得した抜粋を表示します。" + +#: 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 "ブログカードのアイキャッチ画像" + +#: 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から取得したアイキャッチ画像を表示します。" + +#: 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 "ブログカードのサイトロゴ" + +#: 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から取得したサイトロゴ画像を表示します。" + +#: 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 "ブログカードのサイトタイトル" + +#: 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から取得したサイトタイトルを表示します。" + +#: 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 "ブログカードのタイトル" + +#: 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から取得したタイトルを表示します。" + +#: inc/vk-blocks/build/blocks/_pro/blog-card/block.json +#: src/blocks/_pro/blog-card/block.json +msgctxt "block title" +msgid "Blog Card" +msgstr "ブログカード" + +#: 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からコンテンツを取り込んで表示するブロックを追加します。" + +#: 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 "新着バッジ" + +#: 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 content or products with the 'New Badge' " +"feature." +msgstr "新着記事を強調するバッジです。" + #~ msgid "Read more" #~ msgstr "続きを読む" diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index 4e2ae96d6..11df07e04 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -838,24 +838,24 @@ msgid "" "hour." msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:159 +#: src/blocks/_pro/blog-card/edit/index.js:161 #: src/extensions/common/custom-block-variation/block-variation-explorer/index.js:20 msgid "Variation settings" msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:162 +#: src/blocks/_pro/blog-card/edit/index.js:167 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:49 msgid "You can register the current block settings as block variations." msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:168 +#: src/blocks/_pro/blog-card/edit/index.js:173 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:54 msgid "" "https://developer.wordpress.org/block-editor/reference-guides/block-api/" "block-variations/" msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:175 +#: src/blocks/_pro/blog-card/edit/index.js:180 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:61 msgid "Learn more about block variations" msgstr "" @@ -961,7 +961,7 @@ msgid "Delete Image" msgstr "" #: src/blocks/_pro/card-item/edit.js:217 -#: src/blocks/_pro/dynamic-text/edit.js:256 +#: src/blocks/_pro/dynamic-text/edit.js:292 msgid "URL" msgstr "" @@ -1044,85 +1044,101 @@ msgstr "" msgid "Current page" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:110 +#: src/blocks/_pro/dynamic-text/edit.js:112 msgid "Please select display element from the Setting sidebar." msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:118 +#: src/blocks/_pro/dynamic-text/edit.js:120 msgid "Post Type Name" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:122 +#: src/blocks/_pro/dynamic-text/edit.js:124 msgid "Ancestor Page Title" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:127 -msgid "Custom field" +#: src/blocks/_pro/dynamic-text/edit.js:128 +msgid "Parent Page Title" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:133 +msgid "Custom field" +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:139 msgid "This block is not rendered because no custom field name is specified." msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:163 +#: src/blocks/_pro/dynamic-text/edit.js:169 msgid "Display element settings" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:168 +#: src/blocks/_pro/dynamic-text/edit.js:174 msgid "Display element" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:177 +#: src/blocks/_pro/dynamic-text/edit.js:183 msgid "Please Select" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:181 +#: src/blocks/_pro/dynamic-text/edit.js:187 msgid "Post type name of the page being viewed" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:188 +#: src/blocks/_pro/dynamic-text/edit.js:194 msgid "Page name in the ancestor hierarchy of the displayed page" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:195 +#: src/blocks/_pro/dynamic-text/edit.js:201 +msgid "Page name in the parent hierarchy of the displayed page" +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:208 msgid "Custom Field" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:203 +#: src/blocks/_pro/dynamic-text/edit.js:216 msgid "Hide on Ancestor Hierarchy Pages" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:216 +#: src/blocks/_pro/dynamic-text/edit.js:229 +msgid "This block is not displayed on pages without a parent page." +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:240 +msgid "Hide on Parent Hierarchy Pages" +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:253 msgid "" "This block will not display on pages other than pages that have a parent " "hierarchy." msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:228 +#: src/blocks/_pro/dynamic-text/edit.js:264 msgid "Custom Field Name" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:235 +#: src/blocks/_pro/dynamic-text/edit.js:271 msgid "Field Type" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:244 +#: src/blocks/_pro/dynamic-text/edit.js:280 msgid "text" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:248 +#: src/blocks/_pro/dynamic-text/edit.js:284 msgid "textarea" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:252 +#: src/blocks/_pro/dynamic-text/edit.js:288 msgid "wysiwyg" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:263 +#: src/blocks/_pro/dynamic-text/edit.js:299 msgid "Setting up a link" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:276 +#: src/blocks/_pro/dynamic-text/edit.js:312 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:272 @@ -1145,27 +1161,27 @@ msgid "h1" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:47 -#: src/blocks/ancestor-page-list/edit.js:51 +#: src/blocks/ancestor-page-list/edit.js:62 msgid "h2" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:51 -#: src/blocks/ancestor-page-list/edit.js:55 +#: src/blocks/ancestor-page-list/edit.js:66 msgid "h3" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:55 -#: src/blocks/ancestor-page-list/edit.js:59 +#: src/blocks/ancestor-page-list/edit.js:70 msgid "h4" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:59 -#: src/blocks/ancestor-page-list/edit.js:63 +#: src/blocks/ancestor-page-list/edit.js:74 msgid "h5" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:63 -#: src/blocks/ancestor-page-list/edit.js:67 +#: src/blocks/ancestor-page-list/edit.js:78 msgid "h6" msgstr "" @@ -1924,32 +1940,32 @@ msgstr "" msgid "Danger" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:104 +#: src/blocks/ancestor-page-list/edit.js:100 +msgid "Add link to ancestor page title" +msgstr "" + +#: src/blocks/ancestor-page-list/edit.js:111 +msgid "If there is no child page, the block itself is not displayed" +msgstr "" + +#: src/blocks/ancestor-page-list/edit.js:121 msgid "Don't display inactive grand child pages" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:30 +#: src/blocks/ancestor-page-list/edit.js:38 msgid "Ancestor Page List Setting" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:33 +#: src/blocks/ancestor-page-list/edit.js:41 msgid "Display Ancestor Page Title" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:43 +#: src/blocks/ancestor-page-list/edit.js:51 msgid "Archive title tag" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:72 -msgid "Ancestor page title class name" -msgstr "" - #: src/blocks/ancestor-page-list/edit.js:83 -msgid "Add link to ancestor page title" -msgstr "" - -#: src/blocks/ancestor-page-list/edit.js:94 -msgid "If there is no child page, the block itself is not displayed" +msgid "Ancestor page title class name" msgstr "" #: src/blocks/balloon/edit.js:134 diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 0dad66cee..7f1c6d8f8 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.62.0.0\n" +"Project-Id-Version: VK Blocks Pro 1.63.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: 2023-10-17T21:25:04+00:00\n" +"POT-Creation-Date: 2023-10-24T16:12:39+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: vk-blocks-pro\n" @@ -845,22 +845,22 @@ msgstr "" msgid "If the data is old, please clear the cache. It is usually updated every hour." msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:159 +#: src/blocks/_pro/blog-card/edit/index.js:161 #: src/extensions/common/custom-block-variation/block-variation-explorer/index.js:20 msgid "Variation settings" msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:162 +#: src/blocks/_pro/blog-card/edit/index.js:167 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:49 msgid "You can register the current block settings as block variations." msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:168 +#: src/blocks/_pro/blog-card/edit/index.js:173 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:54 msgid "https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/" msgstr "" -#: src/blocks/_pro/blog-card/edit/index.js:175 +#: src/blocks/_pro/blog-card/edit/index.js:180 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:61 msgid "Learn more about block variations" msgstr "" @@ -964,7 +964,7 @@ msgid "Delete Image" msgstr "" #: src/blocks/_pro/card-item/edit.js:217 -#: src/blocks/_pro/dynamic-text/edit.js:256 +#: src/blocks/_pro/dynamic-text/edit.js:292 msgid "URL" msgstr "" @@ -1045,15 +1045,15 @@ msgstr "" msgid "Current page" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:110 +#: src/blocks/_pro/dynamic-text/edit.js:112 msgid "Please select display element from the Setting sidebar." msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:118 +#: src/blocks/_pro/dynamic-text/edit.js:120 msgid "Post Type Name" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:122 +#: src/blocks/_pro/dynamic-text/edit.js:124 #: 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 @@ -1062,71 +1062,87 @@ msgstr "" msgid "Ancestor Page Title" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:127 -msgid "Custom field" +#: src/blocks/_pro/dynamic-text/edit.js:128 +msgid "Parent Page Title" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:133 +msgid "Custom field" +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:139 msgid "This block is not rendered because no custom field name is specified." msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:163 +#: src/blocks/_pro/dynamic-text/edit.js:169 msgid "Display element settings" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:168 +#: src/blocks/_pro/dynamic-text/edit.js:174 msgid "Display element" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:177 +#: src/blocks/_pro/dynamic-text/edit.js:183 msgid "Please Select" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:181 +#: src/blocks/_pro/dynamic-text/edit.js:187 msgid "Post type name of the page being viewed" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:188 +#: src/blocks/_pro/dynamic-text/edit.js:194 msgid "Page name in the ancestor hierarchy of the displayed page" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:195 +#: src/blocks/_pro/dynamic-text/edit.js:201 +msgid "Page name in the parent hierarchy of the displayed page" +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:208 msgid "Custom Field" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:203 +#: src/blocks/_pro/dynamic-text/edit.js:216 msgid "Hide on Ancestor Hierarchy Pages" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:216 +#: src/blocks/_pro/dynamic-text/edit.js:229 +msgid "This block is not displayed on pages without a parent page." +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:240 +msgid "Hide on Parent Hierarchy Pages" +msgstr "" + +#: src/blocks/_pro/dynamic-text/edit.js:253 msgid "This block will not display on pages other than pages that have a parent hierarchy." msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:228 +#: src/blocks/_pro/dynamic-text/edit.js:264 msgid "Custom Field Name" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:235 +#: src/blocks/_pro/dynamic-text/edit.js:271 msgid "Field Type" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:244 +#: src/blocks/_pro/dynamic-text/edit.js:280 msgid "text" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:248 +#: src/blocks/_pro/dynamic-text/edit.js:284 msgid "textarea" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:252 +#: src/blocks/_pro/dynamic-text/edit.js:288 msgid "wysiwyg" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:263 +#: src/blocks/_pro/dynamic-text/edit.js:299 msgid "Setting up a link" msgstr "" -#: src/blocks/_pro/dynamic-text/edit.js:276 +#: src/blocks/_pro/dynamic-text/edit.js:312 #: src/blocks/_pro/gridcolcard-item/edit.js:322 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:272 @@ -1149,27 +1165,27 @@ msgid "h1" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:47 -#: src/blocks/ancestor-page-list/edit.js:51 +#: src/blocks/ancestor-page-list/edit.js:62 msgid "h2" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:51 -#: src/blocks/ancestor-page-list/edit.js:55 +#: src/blocks/ancestor-page-list/edit.js:66 msgid "h3" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:55 -#: src/blocks/ancestor-page-list/edit.js:59 +#: src/blocks/ancestor-page-list/edit.js:70 msgid "h4" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:59 -#: src/blocks/ancestor-page-list/edit.js:63 +#: src/blocks/ancestor-page-list/edit.js:74 msgid "h5" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:63 -#: src/blocks/ancestor-page-list/edit.js:67 +#: src/blocks/ancestor-page-list/edit.js:78 msgid "h6" msgstr "" @@ -1937,32 +1953,32 @@ msgstr "" msgid "Danger" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:104 +#: src/blocks/ancestor-page-list/edit.js:100 +msgid "Add link to ancestor page title" +msgstr "" + +#: src/blocks/ancestor-page-list/edit.js:111 +msgid "If there is no child page, the block itself is not displayed" +msgstr "" + +#: src/blocks/ancestor-page-list/edit.js:121 msgid "Don't display inactive grand child pages" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:30 +#: src/blocks/ancestor-page-list/edit.js:38 msgid "Ancestor Page List Setting" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:33 +#: src/blocks/ancestor-page-list/edit.js:41 msgid "Display Ancestor Page Title" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:43 +#: src/blocks/ancestor-page-list/edit.js:51 msgid "Archive title tag" msgstr "" -#: src/blocks/ancestor-page-list/edit.js:72 -msgid "Ancestor page title class name" -msgstr "" - #: src/blocks/ancestor-page-list/edit.js:83 -msgid "Add link to ancestor page title" -msgstr "" - -#: src/blocks/ancestor-page-list/edit.js:94 -msgid "If there is no child page, the block itself is not displayed" +msgid "Ancestor page title class name" msgstr "" #: src/blocks/balloon/edit.js:134 @@ -3551,22 +3567,22 @@ msgid "Deprecated Blocks" msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: src/blocks/ancestor-page-list/index.php:83 +#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 +#: src/blocks/ancestor-page-list/index.php:91 #: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Dummy Text" msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: src/blocks/ancestor-page-list/index.php:83 +#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 +#: src/blocks/ancestor-page-list/index.php:91 #: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor." msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:83 -#: src/blocks/ancestor-page-list/index.php:83 +#: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 +#: src/blocks/ancestor-page-list/index.php:91 #: test/phpunit/pro/test-ancestor-page-list.php:173 msgid "This message only display on the edit screen." msgstr "" @@ -3774,13 +3790,13 @@ msgid "Setting saved." msgstr "" #: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:253 -#: inc/vk-blocks/view/class-vk-blocks-postlist.php:253 +#: inc/vk-blocks/view/class-vk-blocks-postlist.php:254 msgid "Post" msgstr "" #. translators: %s: 投稿タイプ名 #: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:257 -#: inc/vk-blocks/view/class-vk-blocks-postlist.php:257 +#: inc/vk-blocks/view/class-vk-blocks-postlist.php:258 msgid "There are no %ss." msgstr "" From 394e1af34b67ebf2cc1bad0bf61abaecba83d3eb Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 25 Oct 2023 01:24:37 +0900 Subject: [PATCH 12/12] [ Change version ] 1.64.0.0 --- readme.txt | 3 ++- vk-blocks.php | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 30ac44b56..703e246b8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: Tags: Gutenberg,FAQ,alert Requires at least: 6.1 Tested up to: 6.3 -Stable tag: 1.60.0.1 +Stable tag: 1.63.0.1 Requires PHP: 7.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -102,6 +102,7 @@ e.g. == Changelog == += 1.64.0 = [ Add Function ][ Dynamic Text Block (Pro) ] Added option to display parent page title. [ Bug fix ][ Page list from ancestor ] Fixed XSS issue. diff --git a/vk-blocks.php b/vk-blocks.php index 73b4da8cb..f559a859a 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.63.0.0 - * Stable tag: 1.60.0.1 + * Version: 1.64.0.0 + * Stable tag: 1.63.0.1 * Requires at least: 6.1 * Author: Vektor,Inc. * Author URI: https://vektor-inc.co.jp